From 72855d2dfbe6fc809111e47662f96ec79dd44a05 Mon Sep 17 00:00:00 2001 From: suvari Date: Sat, 11 Jun 2022 17:42:35 +0300 Subject: [PATCH] new packages: bencmark, grpc, warpinator and index --- network/misc/grpc/actions.py | 34 + .../python-grpcio-use-system-abseil.patch | 46 + network/misc/grpc/pspec.xml | 95 + network/misc/grpc/translations.xml | 8 + network/share/warpinator/actions.py | 23 + network/share/warpinator/pspec.xml | 70 + network/share/warpinator/translations.xml | 8 + pisi-index.xml | 617732 ++++++++------- pisi-index.xml.sha1sum | 2 +- pisi-index.xml.xz | Bin 878696 -> 875736 bytes pisi-index.xml.xz.sha1sum | 2 +- programming/tool/benchmark/actions.py | 28 + programming/tool/benchmark/pspec.xml | 55 + programming/tool/benchmark/translations.xml | 8 + 14 files changed, 309602 insertions(+), 308509 deletions(-) create mode 100644 network/misc/grpc/actions.py create mode 100644 network/misc/grpc/files/python-grpcio-use-system-abseil.patch create mode 100644 network/misc/grpc/pspec.xml create mode 100644 network/misc/grpc/translations.xml create mode 100644 network/share/warpinator/actions.py create mode 100644 network/share/warpinator/pspec.xml create mode 100644 network/share/warpinator/translations.xml create mode 100644 programming/tool/benchmark/actions.py create mode 100644 programming/tool/benchmark/pspec.xml create mode 100644 programming/tool/benchmark/translations.xml diff --git a/network/misc/grpc/actions.py b/network/misc/grpc/actions.py new file mode 100644 index 0000000000..e0f3765454 --- /dev/null +++ b/network/misc/grpc/actions.py @@ -0,0 +1,34 @@ +#!/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 cmaketools +from pisi.actionsapi import pisitools +from pisi.actionsapi import get + +def setup(): + shelltools.makedirs("build") + shelltools.cd("build") + + cmaketools.configure("DgRPC_INSTALL=ON \ + -DgRPC_ABSL_PROVIDER=package \ + -DgRPC_BACKWARDS_COMPATIBILITY_MODE=OFF \ + -DgRPC_CARES_PROVIDER=package \ + -DgRPC_PROTOBUF_PROVIDER=package \ + -DgRPC_RE2_PROVIDER=package \ + -DgRPC_SSL_PROVIDER=package \ + -DgRPC_ZLIB_PROVIDER=package \ + -DgRPC_BUILD_TESTS=$(usex test) \ + -DCMAKE_CXX_STANDARD=17", sourceDir="..") + +def build(): + cmaketools.make("-C build") + +def install(): + shelltools.cd("build") + cmaketools.install() + #cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + #pisitools.dodoc("LICENSE", "README.md") diff --git a/network/misc/grpc/files/python-grpcio-use-system-abseil.patch b/network/misc/grpc/files/python-grpcio-use-system-abseil.patch new file mode 100644 index 0000000000..0c8388d29b --- /dev/null +++ b/network/misc/grpc/files/python-grpcio-use-system-abseil.patch @@ -0,0 +1,46 @@ +diff --git a/setup.py b/setup.py +index 4d34c43..5826663 100644 +--- a/setup.py ++++ b/setup.py +@@ -29,6 +29,7 @@ from distutils import extension as _extension + from distutils import util + import os + import os.path ++import pathlib + import platform + import re + import shlex +@@ -155,6 +156,11 @@ BUILD_WITH_SYSTEM_CARES = _env_bool_value('GRPC_PYTHON_BUILD_SYSTEM_CARES', + # runtime, the shared library must be installed + BUILD_WITH_SYSTEM_RE2 = _env_bool_value('GRPC_PYTHON_BUILD_SYSTEM_RE2', 'False') + ++# Export this variable to use the system installation of abseil. You need to ++# have the header files installed (in /usr/include/absl) and during ++# runtime, the shared library must be installed ++BUILD_WITH_SYSTEM_ABSL = os.environ.get('GRPC_PYTHON_BUILD_SYSTEM_ABSL', False) ++ + # Export this variable to force building the python extension with a statically linked libstdc++. + # At least on linux, this is normally not needed as we can build manylinux-compatible wheels on linux just fine + # without statically linking libstdc++ (which leads to a slight increase in the wheel size). +@@ -297,6 +303,10 @@ if BUILD_WITH_SYSTEM_RE2: + CORE_C_FILES = filter(lambda x: 'third_party/re2' not in x, CORE_C_FILES) + RE2_INCLUDE = (os.path.join('/usr', 'include', 're2'),) + ++if BUILD_WITH_SYSTEM_ABSL: ++ CORE_C_FILES = filter(lambda x: 'third_party/abseil-cpp' not in x, CORE_C_FILES) ++ ABSL_INCLUDE = (os.path.join('/usr', 'include'),) ++ + EXTENSION_INCLUDE_DIRECTORIES = ((PYTHON_STEM,) + CORE_INCLUDE + ABSL_INCLUDE + + ADDRESS_SORTING_INCLUDE + CARES_INCLUDE + + RE2_INCLUDE + SSL_INCLUDE + UPB_INCLUDE + +@@ -326,6 +336,10 @@ if BUILD_WITH_SYSTEM_CARES: + EXTENSION_LIBRARIES += ('cares',) + if BUILD_WITH_SYSTEM_RE2: + EXTENSION_LIBRARIES += ('re2',) ++if BUILD_WITH_SYSTEM_ABSL: ++ EXTENSION_LIBRARIES += tuple( ++ lib.stem[3:] for lib in pathlib.Path('/usr').glob('lib*/libabsl_*.so') ++ ) + + DEFINE_MACROS = (('_WIN32_WINNT', 0x600),) + asm_files = [] diff --git a/network/misc/grpc/pspec.xml b/network/misc/grpc/pspec.xml new file mode 100644 index 0000000000..ceb7872fc0 --- /dev/null +++ b/network/misc/grpc/pspec.xml @@ -0,0 +1,95 @@ + + + + + grpc + The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) + + Kamil Atlı + suvari@pisilinux.org + + Apache + library + The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) + High performance, open source, general RPC framework that puts mobile and HTTP/2 first. + https://github.com/grpc/grpc/archive/refs/tags/v1.46.3.tar.gz + https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz + + re2c + ninja + cmake + cython3 + chrpath + re2-devel + php-devel + zlib-devel + gtest-devel + c-ares-devel + openssl-devel + protobuf-devel + benchmark-devel + abseil-cpp-devel + python3-setuptools + NetworkManager-devel + python3-pygobject3-devel + + + python-grpcio-use-system-abseil.patch + + + + + grpc + + xapp + gtk3 + polkit + libgcc + python3 + chrpath + protobuf + benchmark + abseil-cpp + NetworkManager + python3-pynacl + python3-protobuf + python3-zeroconf + python3-setuptools + python3-pygobject3 + python3-cryptography + python3-setproctitle + + + /usr/bin + /usr/share/grpc + /usr/lib/libgrpc* + /usr/lib/libgpr* + /usr/lib/libupb* + /usr/lib/libaddress* + + + + + grpc-devel + + openssl-devel + abseil-cpp-devel + grpc + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + + 2022-06-11 + 1.46.3 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/network/misc/grpc/translations.xml b/network/misc/grpc/translations.xml new file mode 100644 index 0000000000..51c3a18310 --- /dev/null +++ b/network/misc/grpc/translations.xml @@ -0,0 +1,8 @@ + + + + grpc + C tabanlı gRPC (C++, Python, Ruby, Objective-C, PHP, C#) + Mobil ve HTTP/2'yi ilk sıraya koyan yüksek performanslı, açık kaynak, genel RPC çerçevesi. + + diff --git a/network/share/warpinator/actions.py b/network/share/warpinator/actions.py new file mode 100644 index 0000000000..7043aac0ab --- /dev/null +++ b/network/share/warpinator/actions.py @@ -0,0 +1,23 @@ +#!/usr/bin/env 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 autotools +from pisi.actionsapi import pisitools +from pisi.actionsapi import shelltools +from pisi.actionsapi import mesontools +from pisi.actionsapi import get + +def setup(): + mesontools.configure("--libexecdir=/usr/lib") + +def build(): + mesontools.build() + +def install(): + mesontools.install() + + #shelltools.cd("..") + pisitools.dodoc("COPYING", "README.md") diff --git a/network/share/warpinator/pspec.xml b/network/share/warpinator/pspec.xml new file mode 100644 index 0000000000..087a2df865 --- /dev/null +++ b/network/share/warpinator/pspec.xml @@ -0,0 +1,70 @@ + + + + + warpinator + https://github.com/linuxmint/warpinator + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + library + Share files across the LAN + LAN file sender, send and receive files across the network + https://github.com/linuxmint/warpinator/archive/refs/tags/1.2.9.tar.gz + + meson + grpc-devel + xapp-devel + gtk3-devel + polkit-devel + python3-devel + NetworkManager-devel + python3-pygobject3-devel + + + + + warpinator + + gtk3 + grpc + xapp + polkit + python3 + python3-pynacl + NetworkManager + python3-protobuf + python3-zeroconf + python3-setuptools + python3-pygobject3 + python3-cryptography + python3-setproctitle + + + /usr/bin + /usr/libexec/warpinator + /usr/share/locale + /usr/lib/warpinator + /usr/share/warpinator/ + /usr/share/applications + /usr/share/polkit-1 + /usr/share/glib-2.0/schemas + /usr/share/icons + /etc/xdg/autostart/ + /usr/share/metainfo + /usr/share/doc + + + + + + 2022-06-11 + 1.2.9 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/network/share/warpinator/translations.xml b/network/share/warpinator/translations.xml new file mode 100644 index 0000000000..5bb52ad4e3 --- /dev/null +++ b/network/share/warpinator/translations.xml @@ -0,0 +1,8 @@ + + + + warpinator + Ağ üzerinden dosya paylaşın + LAN dosya gönderici, ağ üzerinden dosya gönderme ve alma. + + diff --git a/pisi-index.xml b/pisi-index.xml index b9e78817e8..323613fed8 100644 --- a/pisi-index.xml +++ b/pisi-index.xml @@ -142,6 +142,495 @@ kdepim-apps-libs-devel + + + brltty + https://brltty.app/ + + Kamil Atlı + suvari@pisilinux.org + + GPLv3 + accessibility + Braille display driver for Linux/Unix + Braille display driver for Linux/Unix + https://brltty.app/archive/brltty-6.4.tar.xz + + gpm + bzip2 + tcl-devel + atk-devel + dbus-devel + polkit-devel + glib2-devel + icu4c-devel + expat-devel + libXt-devel + libX11-devel + espeak-devel + espeak-ng-devel + cython + cython3 + elogind-devel + polkit-devel + python3-devel + ncurses-devel + libpcre2-devel + alsa-lib-devel + libXaw-devel + libXtst-devel + liblouis-devel + bluez-libs-devel + at-spi2-atk-devel + at-spi2-core-devel + speech-dispatcher-devel + + accessibility/brltty/pspec.xml + + + brltty + + gpm + tcl + expat + dbus + bzip2 + glib2 + polkit + icu4c + ncurses + libXt + libX11 + espeak + espeak-ng + libXaw + libXtst + libpcre2 + alsa-lib + liblouis + libXfixes + bluez-libs + at-spi2-core + speech-dispatcher + + + /etc + /usr/bin + /usr/libexec/brltty/udev-wrapper + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share + + + + brltty-devel + Development files for brltty + + brltty + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-25 + 6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-21 + 6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-12 + 6.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 6.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-21 + 5.6 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-23 + 5.6 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-06 + 5.6 + First Release + Kamil Atlı + suvari@pisilinux.org + + + + + + liblouis + http://liblouis.org/ + + Kamil Atlı + suvari@pisilinux.org + + GPLv3 + accessibility + Open-source braille translator and back-translator + Open-source braille translator and back-translator + https://github.com/liblouis/liblouis/releases/download/v3.19.0/liblouis-3.19.0.tar.gz + + python3-devel + libyaml-devel + + accessibility/liblouis/pspec.xml + + + liblouis + + libyaml + + + /etc + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share + + + + liblouis-devel + Development files for liblouis + + liblouis + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-25 + 3.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-02 + 3.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 3.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-20 + 3.9.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-23 + 3.7.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-11 + 3.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-06 + 3.5.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-05-06 + 3.5.0 + First Release + Kamil Atlı + suvari@pisilinux.org + + + + + + onboard + https://launchpad.net/onboard + + Berk Çakar + berk2238@hotmail.com + + GPLv3 + accessibility + On-screen keyboard useful on tablet PCs or for mobility impaired users + On-screen keyboard useful on tablet PCs or for mobility impaired users + https://launchpad.net/onboard/1.4/1.4.1/+download/onboard-1.4.1.tar.gz + + intltool + eudev-devel + python3-devel + libXtst-devel + dconf-devel + dbus-python + gtk3-devel + hunspell-devel + iso-codes-devel + libcanberra-devel + libxkbfile-devel + python-cairo-devel + python-pygobject-devel + python3-distutils-extra + + + 00-Fix-build-with-musl.patch + + accessibility/onboard/pspec.xml + + + onboard + On-screen keyboard useful on tablet PCs or for mobility impaired users + + gtk3 + cairo + dconf + eudev + glib2 + libXi + libX11 + libgcc + libXtst + libxkbfile + libcanberra + hunspell + + + /etc + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/onboard + /usr/share/sounds + + + + + 2021-10-25 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-25 + 1.4.1 + First release. + Berk Çakar + berk2238@hotmail.com + + + + + + orca + https://wiki.gnome.org/Projects/Orca + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2 + accessibility + Extensible screen reader that provides access to the desktop + Extensible screen reader that provides access to the desktop. + https://download.gnome.org/sources/orca/42/orca-42.1.tar.xz + + itstool + intltool + gtk3-devel + brltty-devel + python3-devel + liblouis-devel + gst-plugins-good + at-spi2-core-devel + python3-pygobject3-devel + gst-plugins-base-devel + gsettings-desktop-schemas-devel + xorg-app + python3-pyatspi + yelp-tools + dbus-python3 + speech-dispatcher-devel + python3-speech-dispatcher + + accessibility/orca/pspec.xml + + + orca + + gtk3 + brltty + liblouis + at-spi2-core + python3-pyatspi + gst-plugins-base + python3-speech-dispatcher + gsettings-desktop-schemas + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man/man1 + /etc + + + + + 2022-05-17 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-31 + 41.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-02 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 41.0 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-04 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-24 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-02 + 3.38.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-12 + 3.35.92 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 3.35.92 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 3.34.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-22 + 3.29.92 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-23 + 3.29.92 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-11 + 3.28.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-06 + 3.28.1 + First Release + Kamil Atlı + suvari@pisilinux.org + + + budgie-control-center @@ -190,6 +679,7 @@ samba-devel cyrus-sasl-devel udisks2-devel + libhandy-devel desktop/budgie/budgie-control-center/pspec.xml @@ -284,137 +774,6 @@ - - - budgie-screensaver - https://github.com/solus-project/budgie-desktop - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.budgie - Fork of GNOME Screensaver for Budgie 10. - Budgie Screensaver is a fork of gnome-screensaver intended for use with Budgie Desktop and is similar in purpose to other screensavers such as MATE Screensaver. - budgie - https://github.com/BuddiesOfBudgie/budgie-screensaver/releases/download/v5.0.1/budgie-screensaver-v5.0.1.tar.xz - - dbus-glib-devel - gnome-desktop-devel - pam-devel - elogind-devel - gsettings-desktop-schemas-devel - gtk3-devel - libseccomp-devel - intltool - glib2-devel - meson - - desktop/budgie/budgie-screensaver/pspec.xml - - - budgie-screensaver - - pam - dbus - gtk3 - cairo - glib2 - libX11 - elogind - dbus-glib - gdk-pixbuf - gnome-desktop - - - /etc/pam.d - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/doc - /usr/share/man - /usr/share/applications - - - - - 2022-06-03 - 5.0.1 - rebuild for gnome42 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-04-28 - 5.0.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-10-04 - 4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-05 - 4.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - budgie-desktop-view - https://github.com/BuddiesOfBudgie/budgie-desktop-view - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.budgie - Budgie Desktop View is the official Budgie desktop icons application / implementation. - Budgie Desktop View is the official Budgie desktop icons application / implementation. - https://github.com/BuddiesOfBudgie/budgie-desktop-view/releases/download/v1.2/budgie-desktop-view-v1.2.tar.xz - - glib2-devel - gtk3-devel - intltool - meson - vala-devel - - desktop/budgie/budgie-desktop-view/pspec.xml - - - budgie-desktop-view - - gtk3 - glib2 - gdk-pixbuf - - - /usr/bin - /etc/xdg - /usr/share/applications - /usr/share/doc - /usr/share/glib-2.0 - - - - - 2022-04-28 - 1.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - budgie-desktop @@ -457,7 +816,6 @@ gnome-settings-daemon-devel meson mesa-devel - gnome-bluetooth-devel desktop/budgie/budgie-desktop/pspec.xml @@ -544,6 +902,137 @@ + + + budgie-desktop-view + https://github.com/BuddiesOfBudgie/budgie-desktop-view + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.budgie + Budgie Desktop View is the official Budgie desktop icons application / implementation. + Budgie Desktop View is the official Budgie desktop icons application / implementation. + https://github.com/BuddiesOfBudgie/budgie-desktop-view/releases/download/v1.2/budgie-desktop-view-v1.2.tar.xz + + glib2-devel + gtk3-devel + intltool + meson + vala-devel + + desktop/budgie/budgie-desktop-view/pspec.xml + + + budgie-desktop-view + + gtk3 + glib2 + gdk-pixbuf + + + /usr/bin + /etc/xdg + /usr/share/applications + /usr/share/doc + /usr/share/glib-2.0 + + + + + 2022-04-28 + 1.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + budgie-screensaver + https://github.com/solus-project/budgie-desktop + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.budgie + Fork of GNOME Screensaver for Budgie 10. + Budgie Screensaver is a fork of gnome-screensaver intended for use with Budgie Desktop and is similar in purpose to other screensavers such as MATE Screensaver. + budgie + https://github.com/BuddiesOfBudgie/budgie-screensaver/releases/download/v5.0.1/budgie-screensaver-v5.0.1.tar.xz + + dbus-glib-devel + gnome-desktop-devel + pam-devel + elogind-devel + gsettings-desktop-schemas-devel + gtk3-devel + libseccomp-devel + intltool + glib2-devel + meson + + desktop/budgie/budgie-screensaver/pspec.xml + + + budgie-screensaver + + pam + dbus + gtk3 + cairo + glib2 + libX11 + elogind + dbus-glib + gdk-pixbuf + gnome-desktop + + + /etc/pam.d + /usr/bin + /usr/lib + /usr/libexec + /usr/share/locale + /usr/share/doc + /usr/share/man + /usr/share/applications + + + + + 2022-06-03 + 5.0.1 + rebuild for gnome42 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-04-28 + 5.0.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-10-04 + 4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-05 + 4.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + fluxbox @@ -623,4239 +1112,2342 @@ - xfce4-screensaver - https://docs.xfce.org/apps/screensaver/start + adobe-source-code-pro-fonts + http://www.gnome.org - fury - uglyside@yandex.ru + Pisi Linux Admins + admins@pisilinux.org - GPLv2 - LGPLv2 - LGPLv2.1 - app:utility - desktop.xfce.base - Xfce Screensaver. - xfce4-screensaver is a screen saver and locker that aims to have simple, sane, secure defaults and be well integrated with the desktop. - https://archive.xfce.org/src/apps/xfce4-screensaver/4.16/xfce4-screensaver-4.16.0.tar.bz2 - - xmlto - intltool - pam-devel - gtk3-devel - glib2-devel - libSM-devel - libICE-devel - libX11-devel - xfconf-devel - garcon-devel - libwnck3-devel - libglvnd-devel - dbus-glib-devel - libxklavier-devel - libXScrnSaver-devel - - desktop/xfce/base/xfce4-screensaver/pspec.xml + OFL + desktop.font + Monospaced font family for user interface and coding environments. + Source Code Pro is a set of OpenType fonts that have been designed to work well in user interface (UI) environments. + https://github.com/adobe-fonts/source-code-pro/archive/refs/tags/2.038R-ro/1.058R-it/1.018R-VAR.tar.gz + desktop/font/adobe-source-code-pro-fonts/pspec.xml - xfce4-screensaver - - pam - gtk3 - dbus - mesa - glib2 - pango - cairo - libX11 - xfconf - garcon - libXext - libwnck3 - libglvnd - dbus-glib - gdk-pixbuf - libxfce4ui - libxklavier - libXScrnSaver - + adobe-source-code-pro-fonts - /etc - /usr/bin - /usr/libexec - /usr/share - /usr/share/locale - /usr/share/man + /usr/share/fonts /usr/share/doc - - 2021-01-14 - 4.16.0 - Moved to base and version bump. - fury - uglyside@yandex.ru - - 2020-12-24 - 0.1.11 - Ver. bump - fury - uglyside@yandex.ru + 2021-06-05 + 2.038R + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com - libxfce4ui - https://www.xfce.org/ + amiri-fonts + https://www.amirifont.org - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Stefan Gronewold + groni@pisilinux.org - LGPLv2 - library - desktop.xfce.base - Xfce gui library - Xfce arayüz kitaplığı - libxfce4ui is a various GTK+ widgets for Xfce desktop environment. - libxfce4ui, Xfce masaüstü ortamı için çeşitli GTK+ eklentileri içeren kitaplıktır. - https://archive.xfce.org/src/xfce/libxfce4ui/4.17/libxfce4ui-4.17.6.tar.bz2 - - python3 - intltool - gtk3-devel - vala-devel - glib2-devel - libSM-devel - xfconf-devel - libxfce4util-devel - libX11-devel - libgtop-devel - desktop-file-utils - startup-notification-devel - gobject-introspection-devel - - desktop/xfce/base/libxfce4ui/pspec.xml + custom:OFL + data:font + desktop.font + Arabic TTF fonts + Arapça TTF yazı tipleri + Amiri is a classical Arabic typeface. + Amiri klasik bir Arap yazıdır. + https://github.com/khaledhosny/amiri-font/releases/download/0.111/amiri-0.111.zip + desktop/font/amiri-fonts/pspec.xml - libxfce4ui - - atk - gtk3 - glib2 - libSM - libICE - libX11 - xfconf - libgtop - libepoxy - gdk-pixbuf - libxfce4util - startup-notification - + amiri-fonts - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - libxfce4ui-devel - libxfce4ui geliştirme dosyaları - - libxfce4ui - gtk2-devel - gtk3-devel - xfconf-devel - libxfce4util-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc + /usr/share/doc + /usr/share/fonts/amiri + /usr/share/amiri-fonts - - 2022-04-03 - 4.17.6 + + 2018-07-31 + 0.111 + Rebuild for new Toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2018-05-08 + 0.111 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + cantarell-fonts + http://www.gnome.org + + Kamil Atlı + suvari@pisilinux.org + + GPLv2+ + desktop.font + GNOME Cantarell fonts + GNOME Cantarell fonts - required for GNOME 3 + https://download-fallback.gnome.org/sources/cantarell-fonts/0.303/cantarell-fonts-0.303.1.tar.xz + + meson + + desktop/font/cantarell-fonts/pspec.xml + + + cantarell-fonts + + /usr/share/fonts + /usr/share/fontconfig + /usr/share/doc + /usr/share/metainfo/org.gnome.cantarell.metainfo.xml + + + + + 2021-12-11 + 0.303.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2022-03-17 - 4.17.5 + + 2021-05-30 + 0.301 Version bump. + Kamil Atlı + suvari@pisilinux.org + + + + + + dejavu-fonts + http://www.dejavu-fonts.org + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + as-is + data:font + desktop.font + DejaVu yazıtipleri + DejaVu fonts + DejaVu fonts + DejaVu yazıtipleri + Les fontes DejaVu basées sur des fontes Bitstream avec des améliorations. + Contains DejaVu fonts that are based on Bitstream fonts, with improvements. + Bevat de DejaVu fonts die zijn gebasserd op de Bitstream fonts, met verbeteringen. + mirrors://sourceforge/dejavu/2.37/dejavu-fonts-2.37.tar.bz2 + + xorg-app-devel + fontforge + fontconfig-devel + perl-Font-TTF + perl-IO-String + unicode-ucd + giflib-devel + + desktop/font/dejavu-fonts/pspec.xml + + + dejavu-fonts + + /etc/fonts + /etc/X11/fontpath.d/dejavu + /usr/share/fonts + /usr/share/doc + + + + + 2022-04-02 + 2.37 + Rebuild for fontforge Mustafa Cinasal muscnsl@gmail.com - 2021-12-27 - 4.17.3 - Version bump. + 2020-01-18 + 2.37 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-12-10 - 4.17.2 - Version bump. + 2019-11-11 + 2.37 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-09-12 - 4.17.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-31 + 2.37 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org - 2021-06-29 - 4.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-02-28 + 2.37 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-09-18 + 2.34 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-11-18 - 4.15.3 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2014-01-27 + 2.34 + First release + Serdar Soytetir + kaptan@pisilinux.org - xfdesktop - https://www.xfce.org/ + droid-fonts + https://www.droidfonts.com/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Sezai Yeniay + sezaiyeniay@pisilinux.org - GPLv2 - library - app:gui - desktop.xfce.base - Xfce desktop manager - Xfce masaüstü yöneticisi - Tło pulpitu Xfce, ikony i menedżer menu administratora - The desktop manager sets the background image, provides a right-click menu to launch applications and can optionally show files (including application launchers) or iconified windows. It includes gradient support for background color, saturation support for background image, real multiscreen and xinerama support, and it provides a desktop menu editor - Xfce masaüstü yöneticisi arkaplan resmini belirler, uygulamaları başlatmak, simge durumuna küçültülmüş pencereleri veya dosya seçeneklerini göstermek için sağ tık menüsünü hazırlar. Arkaplan rengi için gradyan desteği, arkaplan resmi için doygunluk desteği, gerçek çoklu ekran ve xinerama desteği içerir. Ayrıca, masaüstü menü düzenleme aracını da bünyesinde barındırır. - xfdesktop4 ustawia obraz tła pulpitu, udostępnia menu pod prawym przyciskiem myszy do uruchamiania aplikacji oraz, opcjonalnie, może pokazywać pliki lub zminimalizowane okna. - https://archive.xfce.org/xfce/4.16/src/xfdesktop-4.16.0.tar.bz2 - - intltool - exo-devel - dbus-devel - gtk3-devel - pango-devel - cairo-devel - glib2-devel - libSM-devel - thunar-devel - garcon-devel - xfconf-devel - tumbler-devel - libX11-devel - libglade-devel - libwnck3-devel - libnotify-devel - libxfce4ui-devel - gdk-pixbuf-devel - xfce4-panel-devel - libxfce4util-devel - - desktop/xfce/base/xfdesktop/pspec.xml + Apache-2.0 + data:font + desktop.font + Droid, TrueType font ailesi + Droid is a TrueType font family intended for use on the small screens of mobile handsets + Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons + Android platformunda kullanılmak üzere oluşturulmuş font ailesi. + Droid is a font family created by Ascender Corporation for use by the Open Handset Alliance platform, Android. The font families, known simply as Droid, are Droid Sans, Droid Serif, and Droid Sans Mono. + Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/pardusarchives/droid_fonts_20100815.tar.gz + desktop/font/droid-fonts/pspec.xml - xfdesktop - - exo - gtk3 - dbus - glib2 - pango - cairo - thunar - garcon - xfconf - libX11 - libwnck3 - libnotify - gdk-pixbuf - libxfce4ui - libxfce4util - + droid-fonts - /usr/bin - /usr/share - /etc - /usr/share/locale - /usr/share/man + /etc/fonts + /usr/share/fonts /usr/share/doc - Crocus-Ancyrensis.jpg - Crocus-Ancyrensis.png - 2560x1440.png - xfce4-desktop.xml - xfce4-session.xml + 65-droid-fonts-sans-fontconfig.conf + 60-droid-fonts-sans-mono-fontconfig.conf + 59-droid-fonts-serif-fontconfig.conf + + 2019-11-05 + 0.0_20100821 + Rebuild remove Ahem.ttf + Pisi Linux Community + admin@pisilinux.org + - 2021-07-27 - 4.16.0 - Edited default configuration - Berk Çakar - berk2238@hotmail.com + 2018-07-31 + 0.0_20100821 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org - 2021-05-07 - 4.16.0 - Added crocus-ancyrensis photos - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2017-03-01 + 0.0_20100821 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-09-18 + 0.0_20100821 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-11-22 - 4.15.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-03-28 + 0.0_20100821 + First release + Alihan Öztürk + alihan@pisilinux.org - xfconf - https://www.xfce.org/ + exo-fonts-1 + https://fonts.google.com/specimen/Exo - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Blue Devil + bluedevil@sctzine.com - GPLv2 - library - desktop.xfce.base - Xfce multi channel setting library - Xfce çoklu ayar kitaplığı - Prosty system przechowywania i odpytywania konfiguracji - Xfconf is a hirerchical (tree-like) configuration system for the Xfce graphical desktop environment. - xfconf, Xfce masaüstü yöneticisi için yazılmış, ağaç tipi hiyerarşik yapılandırma sistemidir. - Xfconf jest prostym systemem przechowywania i odpytywania konfiguracji. - https://archive.xfce.org/xfce/4.16/src/xfconf-4.16.0.tar.bz2 - - python3 - intltool - vala-devel - python-six - glib2-devel - libxfce4util-devel - gobject-introspection-devel - - desktop/xfce/base/xfconf/pspec.xml + OFL + data:doc + desktop.font + Exo Font Family + Exo Yazıyüzü Ailesi + Exo is a contemporary geometric sans serif typeface that tries to convey a technological/futuristic feeling while keeping an elegant design. + exo-fonts paketi Google tarafından desteklenen çağdaş geometrik sans serif türü bir yazıyüzüdür. + https://sourceforge.net/projects/pisilinux/files/source/exo-font.tar.gz + desktop/font/exo-fonts-1/pspec.xml - xfconf - - glib2 - libxfce4util - gsettings-desktop-schemas - + exo-fonts-1 + Exo Font Family. - /usr/bin - /usr/lib - /usr/share - /usr/share/locale /usr/share/doc + /usr/share/fonts - - xfconf-devel - Xfconf development files - xfconf geliştirme dosyaları - Pliki nagłówkowe xfconf + + + 2020-08-30 + 1.0 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + fontconfig + http://fontconfig.org + + PisiLinux Community + admins@pisilinux.org + + MIT library - data:doc + desktop.font + A library for configuring and customizing font access + Yazıtiplerinin yapılandırılması ve özelleştirilmesi için bir kitaplık + Biblioteka do konfigurowania pospolitych czcionek - obsługa plików binarnych + Fontconfig est un librairie conçue pour fournir à tout le système accès à la possibilité de configurer, personnaliser et appliquer des fontes. + Fontconfig is a library designed to provide system-wide font configuration, customization and application access. + Fontconfig sistem genelindeki programlar için yazıtiplerinin ayarlanmasını, özelleştirilmesini ve programlar tarafından erişilmesini sağlar. + Fontconfig jest biblioteką do konfigurowania i dostosowywania do własnych potrzeb czcionek, które nie zależą od systemu X Window. Została zaprojektowana, aby znajdować czcionki w systemie i dobierać je do wymagań określanych przez aplikacje. + https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.13.94.tar.xz + + gperf + expat-devel + python3-devel + freetype-devel + libutil-linux-devel + + + use_legacy_lcdfilter_on_small_monospace.patch + fontconfig-2.8.0-sleep-less.patch + deprecated-user-conf.patch + + desktop/font/fontconfig/pspec.xml + + + fontconfig - glib2-devel - xfconf + expat + freetype + libutil-linux + + + /etc/fonts + /usr/bin + /usr/lib + /usr/share/doc + /var/cache/fontconfig + /usr/share + + + System.Package + System.PackageHandler + + + + fontconfig-devel + Development files for fontconfig + fontconfig için geliştirme dosyaları + Pliki nagłówkowe fontconfig + + fontconfig + libutil-linux-devel + freetype-devel + expat-devel /usr/include /usr/lib/pkgconfig - /usr/share/gtk-doc - - - - - 2022-05-28 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-17 - 4.15.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - thunar - https://www.xfce.org/ - - Alper Tekinalp - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:gui - desktop.xfce.base - Xfce file manager - Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant - https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.8.tar.bz2 - - python3-devel - intltool - atk-devel - exo-devel - gtk3-devel - dbus-devel - glib2-devel - pango-devel - cairo-devel - gconf-devel - libSM-devel - libICE-devel - libX11-devel - garcon-devel - xfconf-devel - libexif-devel - libpcre-devel - libpcre2-devel - libgudev-devel - libnotify-devel - gdk-pixbuf-devel - fontconfig-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - desktop-file-utils - libjpeg-turbo-devel - startup-notification-devel - gobject-introspection-devel - - desktop/xfce/base/thunar/pspec.xml - - - thunar - - atk - exo - gtk3 - python3 - dbus - glib2 - pango - cairo - libSM - libICE - libX11 - xfconf - libexif - libpcre - libgudev - libnotify - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/locale + /usr/lib32/pkgconfig + /usr/share/doc/fontconfig/fontconfig-devel.txt /usr/share/man - /usr/share/doc - thunar-devel - Thunar development files - library + fontconfig-32bit + 32-bit shared libraries for fontconfig + fontconfig için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + expat-32bit + freetype-32bit + libutil-linux-32bit + - gtk3-devel - glib2-devel - thunar + fontconfig + expat-32bit + freetype-32bit + libutil-linux-32bit - /usr/include - /usr/lib/pkgconfig - - - - thunar-docs - Thunar reference documents - data:doc - - thunar - - - /usr/share/gtk-doc + /usr/lib32 - 2022-04-03 - 4.17.8 + 2021-06-29 + 2.13.94 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-11-23 - 4.17.7 + 2021-06-03 + 2.13.93 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-10-24 - 4.17.6 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-05 + 2.13.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2021-09-27 - 4.17.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2019-11-09 + 2.13.1 + Version Bump symlinks fix + Pisi Linux Community + admin@pisilinux.org - 2021-09-12 - 4.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-30 + 2.13.0 + Rebuild for New Toolchain + Pisi Linux Community + admin@pisilinux.org - 2021-07-18 - 4.17.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-05-10 + 2.13.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2021-05-14 - 4.17.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-02-13 + 2.12.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2021-03-28 - 4.17.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-09 + 2.12.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2021-01-15 - 4.16.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-09 + 2.11.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-05-25 + 2.11.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org - 2020-11-19 - 4.15.2 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2014-05-17 + 2.11.1 + First release + Alihan Öztürk + alihan@pisilinux.org - xfce4-terminal - https://docs.xfce.org/apps/terminal/start + fontforge + http://fontforge.sourceforge.net/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPLv2 - app:gui - desktop.xfce.base - Terminal Emulator for Xfce. - xfce4-terminal is a modern, lightweight, and low memory cost terminal emulator with tabs and multiple windows for the Xfce desktop environment. It offers full-customization for the key bindings, the aspect, the colors, and more - https://archive.xfce.org/src/apps/xfce4-terminal/1.0/xfce4-terminal-1.0.4.tar.bz2 - - intltool - vte-devel - gtk3-devel - gnutls-devel - libXpm-devel - utempter-devel - libpcre2-devel - libxfce4ui-devel - - desktop/xfce/base/xfce4-terminal/pspec.xml - - - xfce4-terminal - - vte - gtk3 - cairo - glib2 - pango - libX11 - xfconf - libxfce4ui - gdk-pixbuf - libxfce4util - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-05-22 - 1.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-13 - 1.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-28 - 1.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-03 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-29 - 0.9.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-16 - 0.9.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-24 - 0.8.10 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-22 - 0.8.9.2 - First releasu For Beta. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfwm4 - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.base - Xfce window manager. - Xfce pencere yöneticisi - Menedżer okien dla projektu Xfce - The Xfce4 window manager manages the placement of application windows on the screen, provides beautiful window decorations, manages workspaces or virtual desktops, and natively supports multiscreen mode - Xfce4 pencere yöneticisi, uygulama pencerelerinin ekrana yerleştirmeyi sağlar, pencerelerin güzel görünmesini sağlar, çalışma alanlarını ve sanal masaüstlerini yönetir ve doğal olarak çoklu ekran kipini destekler. - Pakiet zawiera xfwm4, który jest menedżerem okiem do Xfce4. Jest on zaprojektowany do uruchamiania z resztą środowiska Xfce4. - https://archive.xfce.org/src/xfce/xfwm4/4.16/xfwm4-4.16.1.tar.bz2 - - intltool - gtk3-devel - libSM-devel - libX11-devel - libXpm-devel - libbsd-devel - libXres-devel - libwnck3-devel - libxfce4ui-devel - libXpresent-devel - - desktop/xfce/base/xfwm4/pspec.xml - - - xfwm4 - - gtk3 - glib2 - cairo - pango - libXi - xfconf - libX11 - libXres - libXext - libepoxy - libwnck3 - libXrandr - libXfixes - libxfce4ui - gdk-pixbuf - libXrender - libXdamage - libXpresent - libXinerama - libxfce4util - libXcomposite - startup-notification - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-01-15 - 4.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-21 - 4.15.1 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-power-manager - https://docs.xfce.org/xfce/xfce4-power-manager/start - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.base - A power manager for the Xfce desktop - Xfce masaüstü için bir güç yöneticisi - Menedżer zasilania dla środowiska Xfce - This software is a power manager for the Xfce desktop, Xfce power manager manages the power sources on the computer and the devices that can be controlled to reduce their power consumption(such as LCD brightness level, monitor sleep, CPU frequency scaling). In addition, xfce4-power-manager provides a set of freedesktop-compliant DBus interfaces to inform other applications about current power level so that they can adjust their power consumption - Xfce güç yöneticisi, kendi güç tüketimini azaltmak için bilgisayar güç kaynakları ve kontrol edilebilir aygıtları yönetir.(LCD parlaklık seviyesi, monitör uyku, CPU frekansı ölçekleme gibi) - Ten menedżer zasilania dla środowiska Xfce4, pozwala użytkownikom laptopów tworzyć profile zasilania dla dwóch różnych trybów: "zasilanie z baterii" i "zasilanie z sieci", jednocześnie wciąż pozwalając użytkownikom zmieniać ustawienia DPMS i częstotliwość CPU. - https://archive.xfce.org/src/xfce/xfce4-power-manager/4.16/xfce4-power-manager-4.16.0.tar.bz2 - - intltool - gtk3-devel - dbus-devel - glib2-devel - libSM-devel - libICE-devel - libX11-devel - xfconf-devel - upower-devel - freetype-devel - libglade-devel - libXrandr-devel - libnotify-devel - ConsoleKit-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - libXScrnSaver-devel - - desktop/xfce/base/xfce4-power-manager/pspec.xml - - - xfce4-power-manager - - atk - gtk3 - dbus - glib2 - cairo - pango - libSM - libX11 - libICE - xfconf - upower - libXext - harfbuzz - libnotify - libXrandr - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /etc/xdg - /usr/bin - /usr/sbin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-23 - 1.7.1 - First Release For Beta. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - exo - https://www.xfce.org/ - - Ayhan Yalcinsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - LGPLv2.1 + BSD app:console - library - desktop.xfce.base - Xfce extension library - Xfce eklenti kitaplığı - exo is an extension library to Xfce, developed by os-cillation. While Xfce comes with quite a few libraries that are targeted at desktop development, exo is targeted at application development. - exo, os-cillation tarafından geliştirilen Xfce eklenti kitaplığıdır. Xfce masaüstü ortamını hedefleyen az kitaplıkla gelirken, exo uygulama geliştirmeyi hedefliyor. - https://archive.xfce.org/src/xfce/exo/4.17/exo-4.17.1.tar.bz2 + app:gui + desktop.font + Font editor and converter + Postscript yazı tipi düzenleyici ve çevirici + FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats. + FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir. + fontforge + https://github.com/fontforge/fontforge/releases/download/20220308/fontforge-20220308.tar.xz + https://fontforge.github.io/cidmaps.tgz - intltool - perl-URI + git + cmake + libtool + xdg-utils gtk3-devel - glib2-devel - libX11-devel - libxfce4ui-devel - libxfce4util-devel + tiff-devel + libXi-devel + cairo-devel + pango-devel + libtool-ltdl + libpng-devel + libXft-devel + giflib-devel + python3-devel + libxml2-devel + freetype-devel + readline-devel + python3-sphinx + libspiro-devel + fontconfig-devel + shared-mime-info + desktop-file-utils + libjpeg-turbo-devel - desktop/xfce/base/exo/pspec.xml + desktop/font/fontforge/pspec.xml - exo + fontforge - atk gtk3 - glib2 + zlib + tiff cairo - gdk-pixbuf - libxfce4ui - libxfce4util + libXi + pango + glib2 + libX11 + libpng + libXft + giflib + potrace + python3 + libxml2 + freetype + readline + libspiro + libtool-ltdl + libjpeg-turbo - /etc/xdg/xfce4 - /usr/bin - /usr/lib - /usr/lib/xfce4 - /usr/share - /usr/share/locale - /usr/share/man + /usr/lib/libfontforge.so* + /usr/lib/python3.9/site-packages /usr/share/doc - - - - exo-devel - Development files for exo - exo geliştirme dosyaları - - exo - gtk2-devel - gtk3-devel - libxfce4util-devel - - - /usr/include - /usr/lib/pkgconfig - - - - exo-docs - Documentation for exo library - exo belgeleri - data:doc - - exo - - - /usr/share/gtk-doc + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/pixmaps + /usr/share/icons + /usr/share/appdata + /usr/share/fontforge + /usr/share/metainfo + /usr/share/applications + /usr/share/locale + + 2022-04-02 + 2.0.20220308 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 2.0.20190801 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-11 + 2.0.20190801 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-12-08 - 4.17.1 + 2019-10-26 + 2.0.20190801 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-29 - 4.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-31 + 2.0.20170731 + Rebuild for new Toolchain + Stefan Gronewold + groni@pisilinux.org - 2021-04-17 - 4.16.2 - Version bump. + 2018-03-26 + 2.0.20170731 + Version Bump Mustafa Cinasal muscnsl@gmail.com - 2021-03-28 - 4.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-02-28 + 2.0.20161005 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-06-09 + 2.0.20150824 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-11-19 - 4.15.2 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2015-08-28 + 2.0.20150824 + First release + Ertuğrul Erata + ertugrulerata@gmail.com - garcon - https://www.xfce.org/ + gnu-gs-fonts-std + https://www.ghostscript.com - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Sezai Yeniay + sezaiyeniay@pisilinux.org - LGPLv2 - library - desktop.xfce.base - Menu library for Xfce - Xfce menü kitaplığı - garcon is an implementation of the freedesktop.org menu specification replacing the former Xfce menu library libxfce4menu. It is based on GLib/GIO only and aims at covering the entire specification except for legacy menus. - garcon, Xfce'nin eski menü kitaplığı olan libxfce4menu'nun freedesktop.org menü standartlarına uygun hale getirilmiş, Xfce'nin yeni menü kitaplığıdır. Sadece GLib/GIO kullanılarak yazılmıştır ve eski menüler hariç tüm özellikleri kapsamayı amaçlamaktadır. - https://archive.xfce.org/src/xfce/garcon/4.17/garcon-4.17.0.tar.bz2 - - python3 - intltool - python-six - gtk3-devel - glib2-devel - freetype-devel - libxfce4ui-devel - libxfce4util-devel - gobject-introspection-devel - - desktop/xfce/base/garcon/pspec.xml + GPLv2 + data + desktop.font + Ghostscript standard fonts + Ghostscript standard yazıtipleri + Ces fontes ont été construites à partir des fontes URW distribuées avec ghostcript. Il n'y AUCUN changemen dans leur partie latine. + gnu-gs-fonts-std contains fonts that were made from the free URW fonts distributed with ghostcript. There are no changes in the latin part of them. + Bu yazıtipleri ghostscript ile birlikte dağıtılan özgür URW yazıtiplerinden türetilmiştir. Latin bölümünde hiçbir değişiklik yapılmamıştır. + mirrors://sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz + desktop/font/gnu-gs-fonts-std/pspec.xml - garcon - - gtk3 - glib2 - gdk-pixbuf - libxfce4ui - libxfce4util - gobject-introspection - + gnu-gs-fonts-std - /etc - /usr/lib - /usr/share - /usr/share/locale + /usr/share/fonts/default/ghostscript /usr/share/doc - - garcon-devel - garcon development files - garcon geliştirme dosyaları - - gobject-introspection-devel - gtk2-devel - gtk3-devel + + + 2020-02-12 + 8.11 + Rebuild for new Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 8.11 + Rebuild for new Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 8.11 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 8.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-23 + 8.11 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + harfbuzz + http://www.freedesktop.org/software/harfbuzz + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.font + OpenType text shaping engine + The Harfbuzz package contains an OpenType text shaping engine. + https://github.com/harfbuzz/harfbuzz/archive/4.3.0.tar.gz + + git + meson + cairo-devel glib2-devel - libxfce4ui-devel - garcon + icu4c-devel + graphite2-devel + freetype-devel + expat-devel + python-six + gtk-doc + docbook-xsl + gobject-introspection-devel + + desktop/font/harfbuzz/pspec.xml + + + harfbuzz + + cairo + glib2 + icu4c + libgcc + freetype + graphite2 - /usr/include - /usr/lib/pkgconfig + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/gir-1.0 - garcon-docs - garcon documentation files - garcon belgeleri + harfbuzz-devel - garcon + glib2-devel + icu4c-devel + graphite2-devel + freetype-devel + harfbuzz + + /usr/include/harfbuzz + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + harfbuzz-32bit + 32-bit shared libraries for harfbuzz + emul32 + emul32 + + icu4c-32bit + freetype-32bit + fontconfig-32bit + cairo-32bit + + + cairo-32bit + libgcc + glib2-32bit + icu4c-32bit + freetype-32bit + + + /usr/lib32 + + + + harfbuzz-docs + harfbuzz reference documents + data:doc /usr/share/gtk-doc - - 2022-05-15 - 4.17.0 + + 2022-05-25 + 4.3.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2021-12-13 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-27 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-03 + 2.8.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-26 + 2.7.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-23 + 2.7.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 2.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-31 + 2.3.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-13 + 2.0.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 1.8.3 + Rebuild and version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2018-01-29 + 1.7.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.4.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + - 2021-02-02 - 4.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-09 + 1.2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-12-24 - 0.8.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-05-02 + 1.2.6 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2020-11-19 - 0.7.1 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2015-04-06 + 1.2.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - libxfce4util - https://www.xfce.org/ + liberation-fonts + https://fedorahosted.org/liberation-fonts/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Sezai Yeniay + sezaiyeniay@pisilinux.org GPLv2 - library - desktop.xfce.base - Xfce basic utility library - Xfce için basit yardımcı uygulama kitaplığı - Libxfce4util is a basic utility non-GUI functions for Xfce desktop environment. - libxfce4util, grafik arayüz fonksiyonlarını içermeyen, Xfce masaüstü yöneticisi için yazılmış basit bir uygulama kitaplığıdır. - https://archive.xfce.org/src/xfce/libxfce4util/4.17/libxfce4util-4.17.2.tar.bz2 + data:font + desktop.font + Font collection similar to ones found in Microsoft Windows + Microsoft Windows fontlarına benzeyen bir dizi font ailesi + A set of fonts similar to Microsoft Windows fonts. There are three sets: Sans (a substitute for Arial, Albany, Helvetica, Nimbus Sans L, and Bitstream Vera Sans), Serif (a substitute for Times New Roman, Thorndale, Nimbus Roman, and Bitstream Vera Serif) and Mono (a substitute for Courier New, Cumberland, Courier, Nimbus Mono L, and Bitstream Vera Sans Mono). + liberation-fonts MS Windows fontlarına benzer bir yazı tipi ailesidir. Sans, serif ve mono olmak üzere 3 setten oluşur. + http://dev-www.libreoffice.org/src/cfbf1ac6f61bf6cf45342a0cc9381be5-liberation-fonts-ttf-2.00.0.tar.gz - python3 - gtk-doc - intltool - python-six - vala-devel - xdg-user-dirs - python3-pygobject3 - gobject-introspection-devel + fontforge - desktop/xfce/base/libxfce4util/pspec.xml + desktop/font/liberation-fonts/pspec.xml - libxfce4util - - glib2 - + liberation-fonts - /usr/sbin - /usr/lib - /usr/share - /usr/share/locale + /usr/share/fonts /usr/share/doc + + + 2018-07-31 + 2.00.0 + Rebuild for new toolchain. + Stefan Gronewold + groni@pisilinux.org + + + 2017-03-02 + 2.00.0 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.00.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 2.00.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + msttcorefonts + http://corefonts.sourceforge.net/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + Microsoft + data:font + desktop.font + Web için Microsoft'un TrueType çekirdek yazı tipleri + Microsoft's TrueType Schriftarten für den Gebrauch im Web + Microsoft's TrueType core fonts for the Web + Core fonts for the Web war ein Projekt von Microsoft mit dem Ziel, eine Reihe von Schriftarten für den Gebrauch im Internet zu standardisieren. Folgende Schriftarten werden von diesem Paket bereitgestellt: Andale Mono, Arial, Comic Sans MS, Courier New, Georgia, Impact, Times New Roman, Trebuched MS, Verdana, Webdings + Core fonts for the Web was a project begun by Microsoft to make a standard pack of fonts for the Internet. Fonts included in this package are: Andale Mono, Arial, Comic Sans MS, Courier New, Georgia, Impact, Times New Roman, Trebuched MS, Verdana, Webdings. + https://root.cern.ch/download/ttf/ttf_fonts.tar.gz + + fontconfig-devel + + desktop/font/msttcorefonts/pspec.xml + - libxfce4util-devel - Libxfce4util development files - libxfce4util geliştirme dosyaları - library - data:doc + msttcorefonts - glib2-devel - libxfce4util + fontconfig - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc + /usr/share/doc + /usr/share/fonts/msttcorefonts + + + + + 2021-12-04 + 1.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + noto-emoji-fonts + http://www.google.com/get/noto + + Sami BABAT + samibabat@gmail.com + + CUSTOM:SIL + data:font + desktop.font + Google Noto Emoji fonts + Google Noto Emoji yazı tipleri ve emojiler + noto-emoji-fonts, Google Noto Emoji fonts. + Google Noto Emoji yazı tipleri ve emoji + https://github.com/googlefonts/noto-emoji/archive/refs/tags/v2020-09-16-unicode13_1.tar.gz + desktop/font/noto-emoji-fonts/pspec.xml + + + noto-emoji-fonts + noto-emoji, Google Noto Emoji fonts + + /usr/share/fonts/noto/*.ttf + /usr/share/doc/noto-emoji-fonts/ + + + + + 2021-05-16 + 2020.09.6 + First release + Sami BABAT + samibabat@gmail.com + + + + + + noto-fonts + http://www.google.com/get/noto + + Osman Erkan + osman.erkan@pisilinux.org + + Apache + data:font + desktop.font + Google Noto TTF fonts + Google Noto TTF yazı tipleri + Noto fonts are open source. All Noto fonts are published under the SIL Open Font License, Version 1.1. Language data and some sample texts are from the Unicode CLDR project. + Tüm diller/karakterlerin desktelendiği yazı tipidir. + https://sourceforge.net/projects/pisilinux/files/source/noto-fonts-20190623.tar.xz + desktop/font/noto-fonts/pspec.xml + + + noto-fonts + + /etc/fonts + /usr/share/doc + /usr/share/fonts/noto + + + archlinux/66-noto-sans.conf + archlinux/66-noto-serif.conf + archlinux/66-noto-mono.conf + + + + noto-fonts-ttf-croscore + noto-fonts-ttf-croscore, Chrome OS core fonts + noto-fonts-ttf-croscore, Chrome OS için temel yazı tipleri + + /usr/share/fonts/TTF + + + + noto-fonts-extra + noto-fonts-ttf-croscore, Chrome OS core fonts Condensed SemiBold Medium Black Light + + /usr/share/fonts/noto/*-Condensed*.ttf + /usr/share/fonts/noto/*-SemiBold*.ttf + /usr/share/fonts/noto/*-SemiCondensed*.ttf + /usr/share/fonts/noto/*-Medium*.ttf + /usr/share/fonts/noto/*-Thin*.ttf + /usr/share/fonts/noto/*-Black*.ttf + /usr/share/fonts/noto/*-Light*.ttf + /usr/share/fonts/noto/*-Extra*.ttf + + + + + 2020-12-09 + 20190623 + Rebuild. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2020-02-07 + 20190623 + Rebuild for New Toolchain + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2019-11-09 + 20190623 + Rebuild for New Toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2018-07-31 + 20150929 + Rebuild for New Toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2017-03-05 + 20150929 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 20150929 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-12 + 20150929 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + noto-fonts-cjk + http://www.google.com/get/noto + + Osman Erkan + osman.erkan@pisilinux.org + + CUSTOM:SIL + data:font + desktop.font + Google Noto CJK fonts + Google Noto CJK yazı tipleri + noto-fonts-cjk, Google Noto CJK fonts. + Google Noto CJK yazı tipleri. + https://github.com/googlei18n/noto-cjk/archive/v1.004.tar.gz + desktop/font/noto-fonts-cjk/pspec.xml + + + noto-fonts-cjk + noto-fonts-cjk, Google Noto CJK fonts + + /usr/share/fonts/noto/*.ttc + /usr/share/doc/noto-fonts-cjk/ + + + + + 2018-07-31 + 0.0_20100919 + Rebuild for New Toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2017-03-05 + 0.0_20100919 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.0_20100919 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-22 + 0.0_20100919 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + open-sans-fonts + https://www.opensans.com/ + + Safa Arıman + safaariman@pisilinux.org + + Apache-2.0 + data:font + desktop.font + Open Sans is a humanist sans-serif typeface designed by Steve Matteson + Open Sans is a humanist sans-serif typeface designed by Steve Matteson + Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letter forms. + Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letter forms. + https://www.opensans.com/download/open-sans.zip + https://www.opensans.com/download/open-sans-condensed.zip + desktop/font/open-sans-fonts/pspec.xml + + + open-sans-fonts + + /usr/share/doc + /usr/share/fonts + + + + + 2020-03-20 + 1.10 + First release + Safa Arıman + safaariman@pisilinux.org + + + + + + Orkhun-fonts + http://turkcesivarken.com/ + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + OFL + data:font + desktop.font + Old Turkic fonts + Eski Türk alfabesi Yazıtipleri + Orkhun-fonts package contains old Turkic (Gokturks or Celestial Turks) fonts. + Orkhun-fonts paketi Göktürk Alfabesi'ne ait yazıtiplerini içermektedir. + https://sourceforge.net/projects/pisilinux/files/source/orkhun.tar.gz + desktop/font/Orkhun-fonts/pspec.xml + + + Orkhun-fonts + + /usr/share/fonts + /usr/share/doc + + + + + 2018-12-14 + 0.1 + First release + Sezai Yeniay + sezaiyeniay@pisilinux.org + + + + + + oxygen-fonts + https://projects.kde.org/projects/playground/artwork/oxygen-fonts + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + OFL + data:font + desktop.font + Oxygen font family + Oxygen yazı tipi ailesi + Oxygen font family is a desktop / GUI font family for integrated use with KDE. + Oxygen, KDE için bir masaüstü ve grafik kullanıcı arayüzü yazı tipi ailesidir. + http://download.kde.org/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz + + cmake + extra-cmake-modules + fontconfig-devel + qt5-base-devel + fontforge + + desktop/font/oxygen-fonts/pspec.xml + + + oxygen-fonts + + /usr/share/fonts + /usr/share/doc + /usr/lib - 2022-03-17 - 4.17.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2018-08-15 + 5.4.3 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org - 2021-07-21 - 4.17.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-31 + 5.4.3 + Rebuild for new toolchain. + Stefan Gronewold + groni@pisilinux.org - 2021-06-29 - 4.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-03-09 + 5.4.3 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-06-09 + 5.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-11-19 - 4.15.4 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2015-11-11 + 5.4.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - thunar-volman - https://docs.xfce.org/xfce/thunar/thunar-volman + sil-lateef-font + https://software.sil.org/lateef/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Stefan Gronewold + groni@pisilinux.org - GPLv2 - library - desktop.xfce.base - A extension for the Xfce Thunar File Manager - Xfce dosya yöneticisi Thunar için bir eklenti - thunar-volman is an extension for the Thunar File Manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digical camera, it will automatically spawn your preferred photo application and import the new pictures from your camera - thunar-volman çıkarılabilir sürücüler ve medyanın otomatik olarak yönetimini sağlayan, Xfce dosya yöneticisi Thunar için bir eklentidir.Örneğin, Thunar-Volman doğru şekilde kurulup yapılandırıldığında, sayısal kameranızdan resim almanızı sağlayacaktır. - https://archive.xfce.org/xfce/4.16/src/thunar-volman-4.16.0.tar.bz2 - - intltool - exo-devel - gtk3-devel - glib2-devel - xfconf-devel - thunar-devel - libgudev-devel - libnotify-devel - libxfce4ui-devel - libxfce4util-devel - - desktop/xfce/base/thunar-volman/pspec.xml + custom:OFL + data:font + desktop.font + OpenType Arabic font from SIL + Lateef is named after Shah Abdul Lateef Bhitai, the famous Sindhi mystic and poet. It is intended to be an appropriate style for use in Sindhi and other languages of southern Asia.. + https://software.sil.org/downloads/r/lateef/LateefGR-1.200.zip + desktop/font/sil-lateef-font/pspec.xml - thunar-volman - - exo - gtk3 - glib2 - pango - xfconf - libgudev - libnotify - libxfce4ui - libxfce4util - + sil-lateef-font - /usr/bin - /usr/share/ - /usr/share/locale - /usr/share/doc + /usr/share/doc + /usr/share/fonts/sil-lateef + /usr/share/sil-lateef/documentation + /usr/share/sil-lateef/web - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2018-07-31 + 1.200 + Rebuild for New Toolchain + Stefan Gronewold + groni@pisilinux.org - 2020-11-21 - 4.15.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2018-05-08 + 1.200 + First release + Stefan Gronewold + groni@pisilinux.org - xfce4-appfinder - https://www.xfce.org/ + terminus-font + http://terminus-font.sourceforge.net/ + + Sezai Yeniay + sezaiyeniay@pisilinux.org + + OFL + GPLv2 + data + desktop.font + Fixed width bitmap font. + Sabit boyutlu yazıtipi + La fonte Terminus est conçue pour travailler longtemps (8 heures ou plus par jour) devant l'ordinateur. + Terminus Font is a clean, fixed width bitmap font, designed for long (8 and more hours per day) work with computers. + Terminus yazıtipi bilgisayar karşısında uzun süreler (günde 8 saat ve fazlası) geçiren insanlar için tasarlanmıştır. + Die Terminus Schrift ist für lange Arbeitszeiten (8 Stunden und mehr pro Tag) ausgelegt + mirrors://sourceforge/terminus-font/terminus-font-4.49.1.tar.gz + + python3 + xorg-app + + desktop/font/terminus-font/pspec.xml + + + terminus-font + + /etc/fonts/conf.avail/75-yes-terminus.conf + /etc/fonts/conf.d/75-yes-terminus.conf + /usr/share/kbd/consolefonts + /usr/share/fonts/misc + /usr/share/doc + + + + + 2021-01-02 + 4.49.1 + Beta rebuild. + fury + uglyside@yandex.ru + + + + + + unicode-ucd + http://www.unicode.org/ucd PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - desktop.xfce.base - Xfce application finder - Xfce uygulama bulucu - Wyszukiwarka aplikacji dla środowiska Xfce - Xfce4-appfinder is a useful software that permits you to find every application in the system supporting desktop entry format - Xfce4-appfinder, kullanıcının sisteminde yüklü, masastünde doğrudan çalışabilen her uygulamayı bulmasını sağlayan, kullanışlı bir uygulama bulucudur. - Wyszukiwanie aplikacji dla środowiska graficznego Xfce4. Wyszukuje zainstalowane w systemie aplikacje. - https://archive.xfce.org/src/xfce/xfce4-appfinder/4.17/xfce4-appfinder-4.17.0.tar.bz2 - - intltool - gtk3-devel - glib2-devel - thunar-devel - garcon-devel - libXpm-devel - libxfce4ui-devel - - desktop/xfce/base/xfce4-appfinder/pspec.xml + MIT + desktop.font + Unicode Character Database + Unicode Karakter Veritabanı + The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. + Unicode karakter veritabanı, unicode karakter özelliklerini ve bilgilerini içeren birkaç veri dosyasından oluşur. + https://www.unicode.org/Public/zipped/12.1.0/UCD.zip + desktop/font/unicode-ucd/pspec.xml - xfce4-appfinder - - gtk3 - glib2 - xfconf - garcon - gdk-pixbuf - libxfce4ui - libxfce4util - + unicode-ucd - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc + /usr/share/unicode/ucd + /usr/share/doc + + copyright.html + - - 2021-09-23 - 4.17.0 + + 2020-01-18 + 12.1.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-02-02 - 4.16.1 - Version bump + + 2018-08-15 + 11.0.0 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com + + 2017-07-14 + 11.0.0 + Rebuild and Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2017-03-01 + 9.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2016-06-09 + 6.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2020-11-22 - 4.15.1 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2014-01-27 + 6.3.0 + First release + Serdar Soytetir + kaptan@pisilinux.org - xfce4-panel - https://www.xfce.org/ + zekton + http://www.myfonts.com/fonts/typodermic/zekton + + Osman Erkan + osman.erkan@pisilinux.org + + GPL + as-is + data:font + desktop.font + Zekton yazı fontu + Zekton yazı fontu + PiSiLinux için Zekton yazı fontu. + PiSiLinux için Zekton yazı fontu. + http://www.e17-stuff.org/CONTENT/content-files/50553-zekton.tar.gz + desktop/font/zekton/pspec.xml + + + zekton + + /usr/share/fonts/zekton + /usr/share/doc/zekton + + + + + 2021-12-04 + 061222 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + eog + https://wiki.gnome.org/Apps/EyeOfGnome Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - LGPLv2.1 - library + GPLv2 app:gui - desktop.xfce.base - Xfce panel - Xfce paneli - Panel środowiska graficznego Xfce - The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels - Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir. - Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania. - https://archive.xfce.org/src/xfce/xfce4-panel/4.17/xfce4-panel-4.17.1.tar.bz2 + desktop.gnome.addons + Eye of GNOME image viewer + GNOME resim gösterici + Eye of GNOME image viewer + GNOME resim gösterici + eog + mirrors://gnome/eog/42/eog-42.2.tar.xz - gtk-doc - intltool - vala-devel - gtk3-devel glib2-devel - cairo-devel - pango-devel - libSM-devel - docbook-xsl - libICE-devel - libX11-devel - libXpm-devel - python3-devel - gettext-devel - libwnck3-devel - freetype-devel + gtk3-devel + exempi-devel gdk-pixbuf-devel - fontconfig-devel - libdbusmenu-gtk3 - libdbusmenu-devel - icon-theme-hicolor - desktop-file-utils - startup-notification-devel + glib2-devel + gnome-desktop-devel gobject-introspection-devel - exo-devel - garcon-devel - xfconf-devel - libxfce4ui-devel - libxfce4util-devel + gsettings-desktop-schemas-devel + lcms2-devel + libexif-devel + libpeas-devel + libportal-devel + librsvg-devel + shared-mime-info + libX11-devel + desktop-file-utils + gettext-devel + gtk-doc + itstool + libjpeg-turbo-devel + meson + zlib-devel + libhandy-devel + appstream-glib-devel - desktop/xfce/base/xfce4-panel/pspec.xml + desktop/gnome/addons/eog/pspec.xml - xfce4-panel + eog - atk - exo gtk3 + zlib cairo - pango glib2 + lcms2 + exempi libX11 - garcon - xfconf - python3 - libXext - libwnck3 + libexif + libpeas + librsvg + libhandy + libportal gdk-pixbuf - libxfce4ui - libxfce4util - libdbusmenu-gtk3 + gnome-desktop + libjpeg-turbo + gobject-introspection - /etc/xdg /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc + /usr/lib/eog + /usr/share/applications + /usr/share/doc + /usr/share/eog + /usr/share/GConf + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + sleep + - xfce4-panel-devel - Development files for Xfce4 Panel - Xfce paneli geliştirme dosyaları - Pliki nagłówkowe dla xfce4-panel - library - data:doc + eog-devel + eog için geliştirme dosyaları - glib2-devel + eog gtk3-devel - libxfce4util-devel - xfce4-panel /usr/include /usr/lib/pkgconfig - /usr/share/gtk-doc - - 2022-05-23 - 4.17.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-28 - 4.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 4.16.3 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-05-14 - 4.16.3 + 2022-05-28 + 42.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-04-15 - 4.16.2 + 2021-12-05 + 41.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-02-02 - 4.16.1 + 2021-09-19 + 41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2021-08-14 + 40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2020-11-19 - 4.15.4 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2021-06-16 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - tumbler - https://docs.xfce.org/xfce/tumbler/start + eog-plugins + https://wiki.gnome.org/Apps/EyeOfGnome/Plugins Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org GPLv2 app:gui - desktop.xfce.base - A thumbnail service - Bir önizleme servisi - Tumbler is a thumbnail service for the filemanager of Xfce desktop environment. - Tumbler Xfce masaüstü ortamının dosya yöneticisi için bir önizleme servisidir. - https://archive.xfce.org/src/xfce/tumbler/4.17/tumbler-4.17.0.tar.bz2 + desktop.gnome.addons + A collection of plugins for the eog image viewer + eog resim görüntüleyici için bir eklenti koleksiyonu + A collection of plugins for the eog image viewer + eog resim görüntüleyici için bir eklenti koleksiyonu + eog-plugins + mirrors://gnome/eog-plugins/42/eog-plugins-42.1.tar.xz + meson + libchamplain-devel + clutter-gtk-devel + eog-devel + gsettings-desktop-schemas-devel + libexif-devel + libgdata-devel + libpeas-devel intltool - curl-devel - dbus-devel - glib2-devel - libpng-devel - libgsf-devel - freetype-devel - libopenraw-devel - gdk-pixbuf-devel - poppler-glib-devel - libxfce4util-devel - libjpeg-turbo-devel - gst-plugins-base-devel - ffmpegthumbnailer-devel + python3-devel - desktop/xfce/base/tumbler/pspec.xml + desktop/gnome/addons/eog-plugins/pspec.xml - tumbler - - curl - glib2 - cairo - libpng - libgsf - freetype - gstreamer - libopenraw - gdk-pixbuf - poppler-glib - libxfce4util - libjpeg-turbo - gst-plugins-base - ffmpegthumbnailer - - - /etc/xdg/tumbler/tumbler.rc - /usr/lib - /usr/share/ - /usr/share/locale - /usr/share/doc - - - - tumbler-devel - Development files for tumbler - tumbler için geliştirme dosyaları - - tumbler - glib2-devel - gobject-introspection-devel - - - /usr/include - /usr/lib/pkgconfig - - - - tumbler-doc - - /usr/share/gtk-doc/html/tumbler - /usr/share/gtk-doc/html/tumbler/index.html - - - - - 2022-02-02 - 4.17.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-14 - 4.16.0 - Rebuild. - fury - uglyside@yandex.ru - - - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-22 - 0.3.0 - First release For Beta. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-session - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - app:console - desktop.xfce.base - Xfce session manager - Xfce oturum yöneticisi - Menedżer sesji Xfce4 - The session manager allows the user to save sessions and restore them after login. It is capable of saving several different sessions. It comes with three splash screen engines. And at last it helps you to log out, reboot, and shutdown the system. - Xfce oturum yöneticisi, kullanıcıların oturumlarını kaydetmesine ve giriş yaptıktan sonra tekrar oturumu çağırmalarına izin verir. Birden fazla, farklı oturumları kaydetmede oldukça başarılıdır. Pakette üç tane örnek açılış teması var ve son olarak, sistemi kapatırken, yeniden başlatırken veya çıkarken kullanıcılara yardımcı olur. - Xfce4-session jest zgodny z "menedżerem sesji" X11 zaprojektowanym do użycia ze środowiskiem graficznym Xfce4. Podczas wylogowywania, menedżer sesji zapisuje wszystkie uruchomione aplikacje. Przy ponownym zalogowaniu, przywraca je z oknami na tych samych pozycjach. - https://archive.xfce.org/xfce/4.16/src/xfce4-session-4.16.0.tar.bz2 - - intltool - atk-devel - gtk3-devel - dbus-devel - glib2-devel - gconf-devel - pango-devel - cairo-devel - libSM-devel - xfconf-devel - libXpm-devel - libX11-devel - libICE-devel - polkit-devel - libwnck3-devel - xorg-app-devel - gdk-pixbuf-devel - fontconfig-devel - libxfce4ui-devel - libxfce4util-devel - - - mageia/0001-Export-XDG_CONFIG_HOME-and-XDG_CACHE_HOME.patch - mageia/xfce4-session-4.13.2-add-more-screen-lockers-to-xflock4.patch - mageia/xfce4-session-4.13.2-xinitrc.patch - - desktop/xfce/base/xfce4-session/pspec.xml - - - xfce4-session + eog-plugins atk + eog + cogl gtk3 - dbus - glib2 + mesa cairo - pango - libSM - libX11 - libICE - polkit - xfconf - libwnck3 - libxfce4ui - gdk-pixbuf - libxfce4util - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - /usr/share/man - - - mageia/xfce4-lightdm.conf - xfce-polkit-gnome-authentication-agent-1.desktop - - - - - 2021-01-29 - 4.16.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-21 - 4.15.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-dev-tools - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - desktop.xfce.base - Xfce developer tools - Xfce geliştirme araçları - Xfce4-dev-tools contains common tools required by Xfce developers and people that want to build Xfce from SVN. In addition, this package contains the Xfce developer's handbook. - Xfce4-dev-tools paketi, Xfce geliştiricileri ve SVN'den Xfce inşa edecek kullanıcılar için gerekli temel araçları içine alır. Buna ek olarak pakette Xfce geliştiricileri için el kitabı da yer almaktadır. - https://archive.xfce.org/src/xfce/xfce4-dev-tools/4.17/xfce4-dev-tools-4.17.0.tar.bz2 - - glib2-devel - - desktop/xfce/base/xfce4-dev-tools/pspec.xml - - - xfce4-dev-tools - glib2 - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2021-07-26 - 4.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-18 - 4.15.0 - First Release For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-settings - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.base - Xfce settings plugins - Xfce ayar yöneticisi - Graficzna aplikacja do zarządzania ustawieniami Xfce - Xfce4-settings is a configuration manager for Xfce desktop environment - Xfce4-settings, Xfce masaüstü yöneticisi için yazılmış ayar yöneticisidir. - Xfce4-settings jest interfejsem menedżera ustawień Xfce4. Wywodzi się z kilku różnych komponentów do konfiguracji niezależnych od aplikacji, ustawień wewnątrz xfconf. - https://archive.xfce.org/src/xfce/xfce4-settings/4.16/xfce4-settings-4.16.2.tar.bz2 - - intltool - exo-devel - gtk3-devel - dbus-devel - libXi-devel - glib2-devel - cairo-devel - pango-devel - xfconf-devel - upower-devel - colord-devel - garcon-devel - libX11-devel - libXpm-devel - libwnck3-devel - libXrandr-devel - libnotify-devel - libxfce4ui-devel - fontconfig-devel - gdk-pixbuf-devel - libXcursor-devel - libcanberra-devel - libxklavier-devel - libxfce4util-devel - xorg-input-libinput-devel - - desktop/xfce/base/xfce4-settings/pspec.xml - - - xfce4-settings - - atk - exo - gtk3 - dbus - cairo - pango libXi - glib2 + pango libX11 - garcon - upower - xfconf - upower - colord - libnotify + libdrm + clutter + libXext + libexif + libpeas + libsoup + libxml2 + wayland + harfbuzz + libgdata + libglvnd + json-glib + libXfixes libXrandr - libxfce4ui - fontconfig gdk-pixbuf - libXcursor - libxklavier - libxfce4util - network-manager-applet + libXdamage + clutter-gtk + libchamplain + libxkbcommon + libXcomposite + wayland-client + wayland-cursor + wayland-server + gnome-online-accounts + gobject-introspection - /etc /usr/bin - /usr/lib + /usr/lib /usr/share - /usr/share/locale - /usr/share/doc + /usr/share/locale - - System.Package - - - 2021-06-20 - 4.16.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-04-17 - 4.16.1 + 2022-04-24 + 42.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-12-24 - 4.16.0 - New release. - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2022-01-09 + 3.26.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2020-11-21 - 4.15.2 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - thunar-archive-plugin - https://docs.xfce.org/xfce/thunar/archive - + 2021-06-16 + 3.26.7 + First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - A plugin allows you to create and extract archive files - Arşiv dosyaları yaratmaya ve çıkatmaya yarayan bir eklenti - The Thunar Archive Plugin allows you to create and extract archive files using the file context menus in the Thunar file manager. - The Thunar Archive Plugin Thunar dosya yöneticisinin dosya içeriği menusunden arşiv dosyaları oluşturmaya ve çıkarmaya yarayan bir eklentidir. - https://archive.xfce.org/src/thunar-plugins/thunar-archive-plugin/0.5/thunar-archive-plugin-0.5.0.tar.bz2 - - intltool - exo-devel - gtk3-devel - glib2-devel - file-roller - thunar-devel - - desktop/xfce/addon/thunar-archive-plugin/pspec.xml - - - thunar-archive-plugin - - thunar - exo - gtk3 - glib2 - file-roller - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - /usr/libexec/thunar-archive-plugin - - - - - 2022-04-30 - 0.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-21 - 0.4.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - xfce4-clipman-plugin - https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin - - fury - uglyside@yandex.ru - - GPLv2 - app:gui - desktop.xfce.addon - Clipboard manager for the Xfce Panel. - Clipboard Manager for the Xfce Panel and as a standalone application (it is a bundle). It keeps the clipboard contents around (even after an application quits), it is able to handle text and images, and has a feature to execute actions on specific text selection by matching them against regexes. - https://archive.xfce.org/src/panel-plugins/xfce4-clipman-plugin/1.6/xfce4-clipman-plugin-1.6.2.tar.bz2 - - intltool - gtk3-devel - glib2-devel - libXpm-devel - xfconf-devel - libXtst-devel - qrencode-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-clipman-plugin/pspec.xml - - - xfce4-clipman-plugin - - gtk3 - glib2 - xfconf - libX11 - libXtst - qrencode - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-07-23 - 1.6.2 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-12-05 - 1.6.1 - First Release For Beta - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - thunar-sendto-clamtk - https://bitbucket.org/davem_/thunar-sendto-clamtk/src/master/ + gnome-photos + https://wiki.gnome.org/Apps/Photos Pisi Linux Admins admin@pisilinux.org - GPLv2 - data - desktop.xfce.addon - Right-click send-to ClamTk functionality within Thunar - Thunar içinden sağ tıklama ile ClamTk'ya göndermeyi sağlar - thunar-sendto-clamtk is a small package to add right-click send-to ClamTk functionality within Thunar. - thunar-sendto-clamtk Thunar içinden sağ tıklama ile ClamTk'ya göndermeyi sağlayan basit bir pakettir. - https://github.com/dave-theunsub/thunar-sendto-clamtk/archive/master.zip - desktop/xfce/addon/thunar-sendto-clamtk/pspec.xml + GPLv3 + app + desktop.gnome.addons + Access, organize, and share your photos on GNOME + Access, organize, and share your photos on GNOME + GNOME'de fotoğraflarınıza erişin, düzenleyin ve paylaşın + GNOME'de fotoğraflarınıza erişin, düzenleyin ve paylaşın + https://download.gnome.org/sources/gnome-photos/42/gnome-photos-42.0.tar.xz + + git + meson + itstool + yelp-tools + atk-devel + atk-devel + gegl-devel + gtk3-devel + cairo-devel + glib2-devel + grilo-devel + pango-devel + libpng-devel + tracker-devel + libgdata-devel + libhandy-devel + libdazzle-devel + libgexiv2-devel + gdk-pixbuf-devel + libgfbgraph-devel + geocode-glib-devel + libjpeg-turbo-devel + gnome-online-accounts-devel + gsettings-desktop-schemas-devel + + desktop/gnome/addons/gnome-photos/pspec.xml - thunar-sendto-clamtk + gnome-photos - clamav-gui + atk + atk + gegl + gtk3 + cairo + glib2 + grilo + pango + libpng + tracker + libgdata + libhandy + libdazzle + libgexiv2 + gdk-pixbuf + libgfbgraph + geocode-glib + libjpeg-turbo + gnome-online-accounts - /usr/share/man + /usr/bin + /usr/libexec + /usr/lib + /usr/share/applications + /usr/share/dbus-1 + /usr/share/help + /usr/share/icons + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/locale + /usr/share/metainfo /usr/share/doc - /usr/share/Thunar/sendto/thunar-sendto-clamtk.desktop + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2020-11-23 - 0.06 - First Release For Beta - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2021-06-02 + 40.0 + First release + Pisi Linux Admins + admin@pisilinux.org - xfce4-whiskermenu-plugin - https://docs.xfce.org/panel-plugins/xfce4-whiskermenu-plugin + gnome-tweaks + https://wiki.gnome.org/Apps/Tweaks - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - GPLv2 - app - desktop.xfce.addon - Alternate Xfce menu. - Whisker Menu is an alternate application launcher for Xfce. - https://archive.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/2.7/xfce4-whiskermenu-plugin-2.7.1.tar.bz2 + GPLv3 + library + desktop.gnome.addons + Graphical interface for advanced GNOME 3 settings (Tweak Tool) + Graphical interface for advanced GNOME 3 settings (Tweak Tool) + Gelişmiş GNOME 3 ayarları için grafik arayüz + Gelişmiş GNOME 3 ayarları için grafik arayüz + https://download.gnome.org/sources/gnome-tweaks/40/gnome-tweaks-40.10.tar.xz - cmake - exo-devel - gtk3-devel - cairo-devel - garcon-devel - xfconf-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - accountsservice-devel + meson + libhandy-devel + gnome-shell + gnome-desktop-devel + python3-pygobject3-devel + gnome-settings-daemon-devel + gsettings-desktop-schemas-devel - desktop/xfce/addon/xfce4-whiskermenu-plugin/pspec.xml + desktop/gnome/addons/gnome-tweaks/pspec.xml - xfce4-whiskermenu-plugin + gnome-tweaks + + /usr/bin + /usr/libexec + /usr/lib/python3.* + /usr/share/applications + /usr/share/icons + /usr/share/glib-2.0 + /usr/share/gnome-tweaks + /usr/share/locale + /usr/share/metainfo + /usr/share/doc + + + + + 2022-03-20 + 40.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 40.0 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-02 + 40.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libmanette + https://gnome.pages.gitlab.gnome.org/libmanette/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.addons + Simple GObject game controller library + Simple GObject game controller library + Basit GObject oyun kumandası kitaplığı + Basit GObject oyun kumandası kitaplığı + https://download.gnome.org/sources/libmanette/0.2/libmanette-0.2.6.tar.xz + + meson + vala-devel + glib2-devel + libevdev-devel + libgudev-devel + gobject-introspection-devel + + desktop/gnome/addons/libmanette/pspec.xml + + + libmanette - exo - gtk3 - cairo - glib2 - garcon - libgcc - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - accountsservice + glib2-devel + libevdev-devel + libgudev-devel /usr/bin /usr/lib - /usr/share + /usr/share/vala + /usr/share/doc + + + + libmanette-devel + Development files for libmanette + + libmanette + glib2-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + + 2021-06-08 + 0.2.6 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + tracker + https://gitlab.gnome.org/GNOME/tracker + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + desktop.gnome.addons + Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. + Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. + https://download.gnome.org/sources/tracker/3.3/tracker-3.3.1.tar.xz + + meson + gettext-devel + glib2-devel + vala-devel + asciidoc + dbus-devel + icu4c-devel + json-glib-devel + libsoup-devel + libsoup3-devel + libxml2-devel + sqlite-devel + NetworkManager-devel + bash-completion + gobject-introspection-devel + libxslt-devel + python3-pygobject3-devel + + desktop/gnome/addons/tracker/pspec.xml + + + tracker + + glib2 + icu4c + sqlite + libsoup + libsoup3 + libxml2 + json-glib + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/lib/tracker* + /usr/libexec /usr/share/locale /usr/share/man /usr/share/doc + /usr/share/tracker3 + /usr/share/bash-completion + /usr/share/dbus-1 + + + + tracker-devel + + tracker + glib2-devel + icu4c-devel + sqlite-devel + libxml2-devel + libsoup-devel + json-glib-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala - - 16x16.png - 22x22.png - 24x24.png - 32x32.png - 48x48.png - 64x64.png - 128x128.png - 256x256.png - logotype-pisi.svg - - - 2021-12-11 - 2.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-20 - 2.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-11-16 - 2.6.2 - Version bump. + 2022-06-01 + 3.3.1 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2021-10-14 - 2.6.1 + 2021-10-31 + 3.2.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-21 - 2.6.0 + 2021-09-18 + 3.2.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-04-15 - 2.5.3 - Ver. bump - fury - uglyside@yandex.ru + 2021-06-15 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2020-08-01 - 2.4.6 - First Beta build. - fury - uglyside@yandex.ru + 2021-05-28 + 3.1.1 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com - xfce-polkit - https://github.com/ncopa/xfce-polkit + xdg-user-dirs-gtk + https://www.gnome.org - fury - uglyside@yandex.ru - - GPLv2 - app:console - desktop.xfce.addon - A simple PolicyKit authentication agent for XFCE - A simple PolicyKit authentication agent for XFCE - https://codeload.github.com/ncopa/xfce-polkit/tar.gz/v0.3 - - python3 - intltool - glib2-devel - polkit-devel - libpcre2-devel - libxfce4ui-devel - - desktop/xfce/addon/xfce-polkit/pspec.xml - - - xfce-polkit - - gtk3 - glib2 - polkit - libpcre2 - libxfce4ui - - - /etc - /usr/libexec - /usr/share/doc - - - - - 2020-06-25 - 0.3 - Rebuild - fury - uglyside@yandex.ru - - - 2019-07-11 - 0.3 - First build. - fury - uglyside@yandex.ru - - - - - - xfce4-places-plugin - https://docs.xfce.org/panel-plugins/xfce4-places-plugin - - fury - uglyside@yandex.ru - - GPLv2 - library - desktop.xfce.addon - Quick access to folders, documents, and removable media - The plugin adds a small button to the panel. Clicking on it opens a menu, which shows: 1) System folders: home directory, trash, desktop, file system 2) Removable media 3) User-defined bookmarks 4) Recent Documents - https://archive.xfce.org/src/panel-plugins/xfce4-places-plugin/1.8/xfce4-places-plugin-1.8.1.tar.bz2 - - intltool - exo-devel - gtk3-devel - glib2-devel - libnotify-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - - - fix_missing_prototypes.patch - - desktop/xfce/addon/xfce4-places-plugin/pspec.xml - - - xfce4-places-plugin - - exo - gtk3 - glib2 - xfconf - libnotify - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-05-14 - 1.8.1 - Rebuild. - fury - uglyside@yandex.ru - - - - - - xfce4-smartbookmark-plugin - https://docs.xfce.org/panel-plugins/xfce4-smartbookmark-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - A plugin allows you to send requests directly to your browser to make search - Tarayıcınıza arama yapmak için direk istek göndermenizi sağlayan modül - xfce4-smartbookmark-plugin is a plugin allows you to send requests directly to your browser and perform a custom search. - xfce4-smartbookmark-plugin tarayıcınıza direkt istek göndermenizi ve arama yapmanızı sağlayan bir Xfce modülüdür. - https://archive.xfce.org/src/panel-plugins/xfce4-smartbookmark-plugin/0.5/xfce4-smartbookmark-plugin-0.5.1.tar.bz2 - - intltool - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-smartbookmark-plugin/pspec.xml - - - xfce4-smartbookmark-plugin - - gtk3 - glib2 - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share/doc - /usr/share/xfce4 - /usr/share/locale - - - - - 2020-06-25 - 0.5.1 - Rebuild. - fury - uglyside@yandex.ru - - - - - - xfce4-timer-plugin - https://docs.xfce.org/panel-plugins/xfce4-timer-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - Timer plugin for Xfce4 panel - Xfce4 uyarı eklentisi - With this plugin you can add timers (alarm or countdown) to your Xfce panel. You can display a warning window and/or run a custom command when alarm rings, repeat alarms etc. - Xfce4-timer-plugin, ayarladığınız zamanda bir pencere açarak sizi uyaran Xfce4 panel eklentisidir. - xfce4-panel - https://archive.xfce.org/src/panel-plugins/xfce4-timer-plugin/1.7/xfce4-timer-plugin-1.7.1.tar.bz2 - - intltool - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-timer-plugin/pspec.xml - - - xfce4-timer-plugin - - atk - gtk3 - glib2 - cairo - pango - harfbuzz - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2020-08-01 - 1.7.1 - Ver. bump - fury - uglyside@yandex.ru - - - - - - xfce4-pulseaudio-plugin - https://docs.xfce.org/panel-plugins/xfce4-pulseaudio-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - Xfce pulseaudio plugin - Xfce ses çıkışını denetleyen bir eklenti - Xfce4-pulseaudio-plugin is a panel plugin for controlling an audio output volume of the PulseAudio mixer - Xfce ses çıkışını denetleyen bir eklenti - https://archive.xfce.org/src/panel-plugins/xfce4-pulseaudio-plugin/0.4/xfce4-pulseaudio-plugin-0.4.3.tar.bz2 - - intltool - exo-devel - gtk3-devel - libXpm-devel - libX11-devel - libwnck3-devel - libnotify-devel - keybinder-devel - dbus-glib-devel - libxfce4ui-devel - xfce4-panel-devel - pulseaudio-libs-devel - - desktop/xfce/addon/xfce4-pulseaudio-plugin/pspec.xml - - - xfce4-pulseaudio-plugin - - exo - gtk3 - glib2 - xfconf - libX11 - libwnck3 - libnotify - keybinder - dbus-glib - gdk-pixbuf - libxfce4ui - xfce4-panel - pavucontrol - libxfce4util - pulseaudio-libs - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-08-17 - 0.4.3 - First release - fury - uglyside@yandex.ru - - - - - - xfce4-volumed-pulse - https://git.xfce.org/apps/xfce4-volumed-pulse/about/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org GPLv3 - app - desktop.xfce.addon - Fork of xfce4-volumed with support for PulseAudio - Xfce için bir ses tuşları kontrolü eklentisi - Basic daemon enabling the XF86 Volume keys and supporting synchronous volume notifications. - Bu temel eklenti, xf86 Ses tuşlarını etkinleştirmek ve senkronize ses bildirimlerini destekler - https://archive.xfce.org/src/apps/xfce4-volumed-pulse/0.2/xfce4-volumed-pulse-0.2.3.tar.bz2 + library + desktop.gnome.addons + Creates user dirs and asks to relocalize them + Creates user dirs and asks to relocalize them + Creates user dirs and asks to relocalize them + Creates user dirs and asks to relocalize them + https://download.gnome.org/sources/xdg-user-dirs-gtk/0.10/xdg-user-dirs-gtk-0.10.tar.xz - gst-plugins-base-devel - pulseaudio-libs-devel - gstreamer-devel - libnotify-devel - keybinder-devel - xfconf-devel - - desktop/xfce/addon/xfce4-volumed-pulse/pspec.xml - - - xfce4-volumed-pulse - - gst-plugins-base - pulseaudio-libs - gstreamer - libnotify - keybinder - xfconf - glib2 - gtk3 - - - /etc/xdg/autostart/ - /usr/bin/ - /usr/share/doc - - - - - 2021-08-17 - 0.2.3 - First release. - fury - uglyside@yandex.ru - - - - - - xfce4-notifyd - https://docs.xfce.org/apps/notifyd/start - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A notification deamon - Bir uyarı gösterici - The Xfce Notify Daemon (xfce4-notifyd for short) is a smallish program that implements the “server-side” portion of the Freedesktop desktop notifications specification. - Xfce Notify Daemon Freedesktop masaüstü uyarı sisteminin sunucu tarafını gerçekleştiren küçük bir uygulamadır. - https://archive.xfce.org/src/apps/xfce4-notifyd/0.6/xfce4-notifyd-0.6.2.tar.bz2 - - python3 intltool - libX11-devel - libXpm-devel - libICE-devel - libnotify-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel + gtk3-devel + glib2-devel + gnome-common + xdg-user-dirs - desktop/xfce/addon/xfce4-notifyd/pspec.xml + desktop/gnome/addons/xdg-user-dirs-gtk/pspec.xml - xfce4-notifyd + xdg-user-dirs-gtk - atk gtk3 glib2 - cairo - pango - libX11 - xfconf - harfbuzz - libnotify - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util /usr/bin + /etc /usr/lib - /usr/share /usr/share/locale - /usr/share/man /usr/share/doc - - 2020-12-23 - 0.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-06-25 - 0.6.1 - Ver. bump - fury - uglyside@yandex.ru + 2021-06-01 + 0.10 + First release + Pisi Linux Admins + admin@pisilinux.org - xfce4-datetime-plugin - https://docs.xfce.org/panel-plugins/xfce4-datetime-plugin + nautilus-admin + https://github.com/brunonova/nautilus-admin - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - GPLv2 + GPLv3 library - desktop.xfce.addon - This plugin shows the date and time in the panel - Panelde tarih ve zamanı gösteren eklenti - xfce4-datetime-plugin shows the date and time in the panel, and a calendar appears when you left-click on it. - xfce4-datetime-plugin panelde tarih ve zamanı gösterir ve sol tıladığınızda bir takvim açılır. - https://archive.xfce.org/src/panel-plugins/xfce4-datetime-plugin/0.8/xfce4-datetime-plugin-0.8.0.tar.bz2 + desktop.gnome.admin + Extension for Nautilus to do administrative operations + Extension for Nautilus to do administrative operations + Extension for Nautilus to do administrative operations + Extension for Nautilus to do administrative operations + https://github.com/brunonova/nautilus-admin/archive/refs/tags/v1.1.9.tar.gz - xfce4-panel-devel - intltool - libxfce4ui-devel + cmake + gettext-devel - desktop/xfce/addon/xfce4-datetime-plugin/pspec.xml + desktop/gnome/admin/nautilus-admin/pspec.xml - xfce4-datetime-plugin + nautilus-admin - xfce4-panel - gtk3 - glib2 - pango - libxfce4ui - libxfce4util + nautilus-python - /usr/lib - /usr/share/xfce4 + /usr/share/nautilus-python /usr/share/locale /usr/share/doc - 2020-06-25 - 0.8.0 - Rebuild. - fury - uglyside@yandex.ru + 2021-06-21 + 1.1.9 + First release + Pisi Linux Admins + admin@pisilinux.org - xfce4-sensors-plugin - https://docs.xfce.org/panel-plugins/xfce4-sensors-plugin + gnome-dictionary + https://wiki.gnome.org/Apps/Dictionary Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org GPLv2+ app:gui - desktop.xfce.addon - Sensors plugin for Xfce4 Panel - Xfce 4 paneli için algılayıcılar eklentisi. - Reads your hardware sensor values and displays them in your panel - Donanım algılayıcılarınızın okuduğu değerleri panelizde gösterir. Örneğin; ekran kartnızın ısısı, işlemcinizin ısısı, ... - https://archive.xfce.org/src/panel-plugins/xfce4-sensors-plugin/1.4/xfce4-sensors-plugin-1.4.3.tar.bz2 + desktop.gnome.apps + A dictionary application for GNOME + Gnome için bir sözlük uygulaması + A dictionary application for GNOME + Gnome için bir sözlük uygulaması + gnome-dictionary + mirrors://gnome/gnome-dictionary/40/gnome-dictionary-40.0.tar.xz - acpi - acpid - acpica - intltool - gtk3-devel - libnotify-devel - lm_sensors-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-sensors-plugin/pspec.xml - - - xfce4-sensors-plugin - - gtk3 - cairo - pango - glib2 - libnotify - lm_sensors - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - - 2022-04-01 - 1.4.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-16 - 1.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-30 - 1.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-26 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 1.3.92 - Rebuild. - fury - uglyside@yandex.ru - - - - - - thunar-vcs-plugin - https://docs.xfce.org/xfce/thunar/thunar-vcs-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - An SVN integration and GIT integration to Thunar - Thunar için svn ve git entegrasyonu sağlar - The Thunar VCS Plugin adds Subversion and GIT actions to the context menu of thunar. This gives a SVN integration and GIT integration to Thunar. - thunar-vcs-plugin, Thunar için Subversion ve Git entegrasyonu sağlayan bir modüldür. - https://archive.xfce.org/src/thunar-plugins/thunar-vcs-plugin/0.2/thunar-vcs-plugin-0.2.0.tar.bz2 - - intltool - exo-devel - thunar-devel - subversion-devel - - desktop/xfce/addon/thunar-vcs-plugin/pspec.xml - - - thunar-vcs-plugin - - apr - exo - atk - gtk3 - cairo - pango - glib2 - thunar - harfbuzz - subversion - gdk-pixbuf - libxfce4util - - - /usr/libexec - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2020-12-05 - 0.2.0 - First Release For Beta - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-mailwatch-plugin - https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app - desktop.xfce.addon - A mailbox plugin for Xfce4 - Xfce4 için posta kutusu eklentisi - A mailbox watch/check plugin for the Xfce4 panel - xfce4-mailwatch-plugin,Xfce4 paneline yerleşen posta kutusu uygulamasıdır. - https://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/1.3/xfce4-mailwatch-plugin-1.3.0.tar.bz2 - - intltool - exo-devel - gtk3-devel - gnutls-devel - openssl-devel - libgcrypt-devel - gdk-pixbuf-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - - desktop/xfce/addon/xfce4-mailwatch-plugin/pspec.xml - - - xfce4-mailwatch-plugin - - exo - gtk3 - gnutls - openssl - libgcrypt - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2020-12-06 - 1.3.0 - First Beta release. - fury - uglyside@yandex.ru - - - - - - gigolo - https://www.uvena.de/gigolo/ - - Merve Yüzbaşıoğlu - admins@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A frontend to easily manage connections to remote filesystems using GIO/GVfs - GIO/GVfs kullanarak uzak dosya sistemleri için bağlantıları yönetme arayüzü - Gigolo allows you to quickly connect/mount local and remote filesystems and manage bookmarks of such. - Gigolo, yerel ve uzak dosya sistemlerinin kolayca bağlanmasını ve yönetilmesini sağlayan bir arayüzdür. - https://archive.xfce.org/src/apps/gigolo/0.5/gigolo-0.5.2.tar.bz2 - - intltool - gtk3-devel - glib2-devel + appstream-glib-devel desktop-file-utils - - desktop/xfce/addon/gigolo/pspec.xml - - - gigolo - - gvfs - gtk3 - dbus - glib2 - libX11 - gvfs-fuse - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-03-31 - 0.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-21 - 0.5.1 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfburn - https://docs.xfce.org/apps/xfburn - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A simple CD/DVD burning tool - Basit bir CD/DVD yazma aracı - Xfburn is a simple CD/DVD burning tool based on libburnia libraries. - Xfburn libburnia kitaplıklarını kullanan basit bir CD/DVD yazma aracıdır. - https://archive.xfce.org/src/apps/xfburn/0.6/xfburn-0.6.2.tar.bz2 - - libxfce4ui-devel - gstreamer-devel - libisofs-devel - libgudev-devel - librsvg-devel - libburn-devel - gtk3-devel - dbus-devel - exo-devel - intltool - gst-plugins-base-devel - - desktop/xfce/addon/xfburn/pspec.xml - - - xfburn - - gst-plugins-base - libxfce4util - libxfce4ui - gdk-pixbuf - gstreamer - libisofs - libgudev - libburn - glib2 - gtk3 - exo - desktop-file-utils - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - /usr/share/man/man1 - - - - - 2021-08-11 - 0.6.2 - First Release For Beta - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-screenshooter - https://docs.xfce.org/apps/screenshooter/start - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A plugin allows you to capture the entire screen - Ekran görüntüsü alma eklentisi - This application allows you to capture the entire screen, the active window or a selected region. - xfce4-screenshooter ekranın bir kısmının, tamamının ya da sadece aktif pencerenin ekran görüntüsünü almanızı sağlar. - https://archive.xfce.org/src/apps/xfce4-screenshooter/1.9/xfce4-screenshooter-1.9.10.tar.bz2 - - python3 - intltool - exo-devel - libSM-devel - libX11-devel - libsoup-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-screenshooter/pspec.xml - - - xfce4-screenshooter - - exo - gtk3 - glib2 - cairo - pango - libSM - libICE - libX11 - libxml2 - libXext - libsoup - libXfixes - gdk-pixbuf - libxfce4ui - fontconfig - xfce4-panel - libxfce4util - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-03-23 - 1.9.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-09 - 1.9.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-23 - 1.9.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 1.9.7 - Rebuild. - fury - uglyside@yandex.ru - - - - - - catfish - https://docs.xfce.org/apps/catfish/start - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.xfce.addon - Versatile file searching tool - Versatile file searching tool - Çok yönlü dosya arama aracı - Çok yönlü dosya arama aracı - https://archive.xfce.org/src/apps/catfish/4.16/catfish-4.16.3.tar.bz2 - - intltool - xdg-utils - gtk3-devel - dbus-python3 - python3-xdg - xfconf-devel - python3-pexpect - python3-cairo-devel - python3-ptyprocess - python3-pygobject3-devel - python3-distutils-extra - - desktop/xfce/addon/catfish/pspec.xml - - - catfish - - xdg-utils - gtk3 - dbus-python3 - python3-xdg - xfconf - python3-pexpect - python3-cairo - python3-ptyprocess - python3-pygobject3 - python3-distutils-extra - - - /usr/bin - /usr/lib/python3.* - /usr/share - /usr/share/locale - /usr/share/icons - /usr/share/metainfo - /usr/share/applications - /usr/share/pixmaps - /usr/share/doc - - - - - 2021-10-24 - 4.16.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-27 - 4.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-21 - 4.16.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-02 - 4.16.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - parole - https://docs.xfce.org/apps/parole/start - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A modern simple media player - Basit ve modern bir medya oynatıcı - Parole is a modern simple media player based on the GStreamer framework and written to fit well in the Xfce desktop. Parole is designed with simplicity, speed and resource usage in mind. - Parole GStreamer üzerine Xfce masaüstüne iyi uyum sağlayacak şekilde yazılmış basit ve modern bir medya oynatıcıdır. Basitlik, hız ve kaynak kullanımı göz önünde tutularak yazılmıştır. - https://archive.xfce.org/src/apps/parole/4.16/parole-4.16.0.tar.bz2 - - gtk-doc - intltool - gtk3-devel - python-six - glib2-devel docbook-xsl - xfconf-devel - taglib-devel - libxslt-devel - libnotify-devel - gstreamer-devel - dbus-glib-devel - libxfce4ui-devel - libxfce4util-devel - gst-plugins-base-devel - - desktop/xfce/addon/parole/pspec.xml - - - parole - - gtk3 - dbus - glib2 - cairo - taglib - xfconf - libX11 - gstreamer - dbus-glib - libnotify - gdk-pixbuf - libxfce4ui - libxfce4util - gst-plugins-base - gst-plugins-good - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - parole-devel - Development files for parole - parole için geliştirme dosyaları - - parole - glib2-devel - gtk3-devel - libxfce4util-devel - - - /usr/include - /usr/share/gtk-doc - - - - - 2021-01-17 - 4.16.0 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-21 - 1.0.5 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-dict - https://docs.xfce.org/apps/xfce4-dict/start - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - A client program to query different dictionaries - Değişik sözlüklerden sorgular yapmayı sağlayan bir istemci - xfce4-dict allows you to search different kinds of dictionary services for words or phrases and shows you the result. - xfce4-dict değişik sözlüklerden kelime ya da deyimler aramanızı sağlar ve size gösterir. - https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.4.tar.bz2 - - xfce4-panel-devel - intltool - libxfce4ui-devel - - desktop/xfce/addon/xfce4-dict/pspec.xml - - - xfce4-dict - - gtk3 - glib2 - pango - libX11 - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2020-12-23 - 0.8.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 0.8.3 - Rebuild. - fury - uglyside@yandex.ru - - - - - - xfce4-wavelan-plugin - https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - This plugin is used to display stats from a wireless lan interface - Kablosuz LAN arayüzü durumunu görüntülemek için kullanılan bir eklenti - xfce4-wavelan-plugin shows signal quality as percentage.This plugin is quite easy to use. - xfce4-wavelan-plugin, sinyal kalitesini yüzde olarak gösterir.Kullanımı oldukça kolay bir eklentidir. - https://archive.xfce.org/src/panel-plugins/xfce4-wavelan-plugin/0.6/xfce4-wavelan-plugin-0.6.1.tar.bz2 - - intltool - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-wavelan-plugin/pspec.xml - - - xfce4-wavelan-plugin - - atk - gtk3 - glib2 - cairo - pango - gdk-pixbuf - fontconfig - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2020-06-25 - 0.6.1 - Rebuild. - fury - uglyside@yandex.ru - - - - - - xfce4-diskperf-plugin - https://docs.xfce.org/panel-plugins/xfce4-diskperf-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - BSD-2 - app:gui - desktop.xfce.addon - A disk usage and performance panel plugin for Xfce - Xfce disk bilgisi eklentisi - A disk usage and performance panel plugin for Xfce. - xfce4-diskperf-plugin, disk performansı ve kullanımı hakkında bilgi veren Xfce4 paneli eklentisidir. - xfce4-panel - https://archive.xfce.org/src/panel-plugins/xfce4-diskperf-plugin/2.7/xfce4-diskperf-plugin-2.7.0.tar.bz2 - - xfce4-panel-devel - intltool - libxfce4ui-devel - - desktop/xfce/addon/xfce4-diskperf-plugin/pspec.xml - - - xfce4-diskperf-plugin - - gtk3 - glib2 - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/share/doc - /usr/share/locale - /usr/share/xfce4 - /usr/lib - - - - - 2022-04-01 - 2.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-04 - 2.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 2.6.2 - Rebuild. - fury - uglyside@yandex.ru - - - - - - xfce4-panel-profiles - https://docs.xfce.org/apps/xfce4-panel-profiles/start - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.xfce.addon - A simple application to manage Xfce panel layouts. - Xfce4 Paneli için bir kullanıcı değiştirme modülü - With the modular Xfce Panel, a multitude of panel layouts can be created. This tool makes it possible to backup, restore, import, and export these panel layouts. - xfce4-panel-profiles, Xfce4 Paneli için bir kullanıcı değiştirme modülüdür. Mevcut oturumu açık bırakarak başka bir kullanıcıyla yeni bir oturum açılmasına izin verir. - https://archive.xfce.org/src/apps/xfce4-panel-profiles/1.0/xfce4-panel-profiles-1.0.13.tar.bz2 - - intltool - python3-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-panel-profiles/pspec.xml - - - xfce4-panel-profiles - - gtk3 - cairo - python3 - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-04-10 - 1.0.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-17 - 1.0.12 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-06-25 - 1.0.10 - Ver. bump - fury - uglyside@yandex.ru - - - - - - ristretto - https://docs.xfce.org/apps/ristretto/start - - Engin Manap - enginmanap@comu.edu.tr - - GPLv2 - app:gui - desktop.xfce.addon - Image viewer for Xfce - Xfce için resim göstericisi - Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment. - Ristretto, Xfce masaüstü ortamı için hızlı ve hafif bir resim görüntüleyicisidir. - https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-0.12.2.tar.bz2 - - intltool - gtk3-devel - xfconf-devel - libgsf-devel - libexif-devel - tumbler-devel - libxfce4ui-devel - gdk-pixbuf-devel - poppler-glib-devel - libxfce4util-devel - libjpeg-turbo-devel - - desktop/xfce/addon/ristretto/pspec.xml - - - ristretto - - gtk3 - file - glib2 - cairo - pango - xfconf - libX11 - libexif - gdk-pixbuf - libxfce4ui - libxfce4util - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2022-01-15 - 0.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-26 - 0.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-11 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-21 - 0.11.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-21 - 0.10.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - thunar-shares-plugin - https://docs.xfce.org/xfce/thunar/thunar-shares-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - Thunar Shares Plugin - Samba kullanarak hızlı bir şekilde dizin paylaşmanıza izin veren bir eklenti - The Thunar Shares Plugin (thunar-shares-plugin) allows you to quickly share a folder using Samba from Thunar (the XFCE file manager) without requiring root access. - thunar-shares-plugin, root yetkileri gerektirmeden Samba kullanarak Thunar'dan hızlı bir şekilde dizin paylaşmanıza izin verir. - https://archive.xfce.org/src/thunar-plugins/thunar-shares-plugin/0.3/thunar-shares-plugin-0.3.1.tar.bz2 - - intltool - gtk3-devel - glib2-devel - samba-devel - thunar-devel - - desktop/xfce/addon/thunar-shares-plugin/pspec.xml - - - thunar-shares-plugin - - thunar - glib2 - gtk3 - samba - - - /usr/lib - /usr/share/locale - /usr/share/doc - - - - - 2020-12-05 - 0.3.1 - First Release For Beta - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - orage - https://github.com/balena/orage - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - app:gui - desktop.xfce.addon - A calendar for Xfce - Xfce için takvim - Orage is a time-managing application for the Xfce desktop environment. - Orage, Xfce masaüstü yöneticisi için yapılmış zaman yönetimi uygulamasıdır. - https://archive.xfce.org/src/apps/orage/4.16/orage-4.16.0.tar.bz2 - - gettext - intltool - db-devel - gtk3-devel - libSM-devel - libICE-devel - popt-devel - libical-devel - dbus-glib-devel - libnotify-devel - gdk-pixbuf-devel - xfce4-panel-devel - libxfce4ui-devel - libxfce4util-devel - - desktop/xfce/addon/orage/pspec.xml - - - orage - - atk - dbus - gtk3 - libSM - popt - cairo - glib2 - pango - libICE - libX11 - libical - harfbuzz - freetype - dbus-glib - libnotify - libxfce4ui - gdk-pixbuf - fontconfig - xfce4-panel - libxfce4util - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-03-23 - 4.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-21 - 4.12.1 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-xkb-plugin - https://docs.xfce.org/panel-plugins/xfce4-xkb-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - BSD-2 - app:gui - desktop.xfce.addon - A plugin to switch keyboard layouts for the Xfce4 panel - Klavye yerleşimini değiştirmek için Xfce4 panel eklentisi - A plugin for the Xfce4 panel displaying keyboard layout. The plugin may be used as an indicator for the current layout and to switch layouts. - xfce4-xkb-plugin ile Xfce4 panelinden klavye yerleşimini bir iki tıklamayla değiştirebilir, uygulama veya pencere içinde de farklı klavye yerleşimi kullanabilirsiniz. Ayrıca klavye geçiş kısayollarını destekler. - https://archive.xfce.org/src/panel-plugins/xfce4-xkb-plugin/0.8/xfce4-xkb-plugin-0.8.2.tar.bz2 - - intltool - gtk3-devel - garcon-devel - libX11-devel - libICE-devel - librsvg-devel - libwnck3-devel - libxfce4ui-devel - xfce4-panel-devel - libxklavier-devel - - desktop/xfce/addon/xfce4-xkb-plugin/pspec.xml - - - xfce4-xkb-plugin - - atk - gtk3 - glib2 - pango - cairo - xfconf - garcon - librsvg - harfbuzz - libwnck3 - gdk-pixbuf - libxfce4ui - xfce4-panel - libxklavier - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-01-17 - 0.8.2 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-06-25 - 0.8.1 - Rebuild. - fury - uglyside@yandex.ru - - - 2019-07-28 - 0.8.1 - Ver. bump - fury - uglyside@yandex.ru - - - 2015-03-05 - 0.5.6 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-08-26 - 0.5.4.3 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2012-08-26 - 0.5.4.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xfce4-systemload-plugin - https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - BSD-2 - app:gui - desktop.xfce.addon - Xfce4 system load plugin - Xfce4 sistem çağrı eklentisi - Xfce4-systemload-plugin is a plugin which displays the current CPU load, the memory in use, the swap space and the system uptime in the Xfce panel. - Xfce4-systemload-plugin, Xfce panelinde o anki işlemci yükü, bellek ve swap alanı kullanımını gösteren bir eklentidir. - xfce4-panel - https://archive.xfce.org/src/panel-plugins/xfce4-systemload-plugin/1.3/xfce4-systemload-plugin-1.3.1.tar.bz2 - - intltool - xfconf-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-systemload-plugin/pspec.xml - - - xfce4-systemload-plugin - - gtk3 - glib2 - xfconf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-03-31 - 1.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-11 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 1.2.3 - Rebuild. - fury - uglyside@yandex.ru - - - - - - xfce4-genmon-plugin - https://docs.xfce.org/panel-plugins/xfce4-genmon-plugin - - fury - uglyside@yandex.ru - - LGPLv2.1 - library - desktop.xfce.addon - Display cyclically run script or program output onto the panel - This plugin cyclically spawns the indicated script/program, captures its output (stdout) and displays the resulting string into the panel. The string can also contain markup to displayed an image, a bar, a button and a personalized tooltip. - https://archive.xfce.org/src/panel-plugins/xfce4-genmon-plugin/4.1/xfce4-genmon-plugin-4.1.1.tar.bz2 - - intltool - gtk3-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-genmon-plugin/pspec.xml - - - xfce4-genmon-plugin - - gtk3 - glib2 - pango - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-01-24 - 4.1.1 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-12-24 - 4.1.0 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-06-25 - 4.0.2 - Rebuild. - fury - uglyside@yandex.ru - - - - - - thunar-media-tags-plugin - https://docs.xfce.org/xfce/thunar/media-tags - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.xfce.addon - Thunar media tags plugin - Thunar çoklu ortam bilgi eklentisi - The Thunar Media Tags Plugin (thunar-media-tags-plugin) adds special features for media files to the Thunar File Manager. - Thunar - https://archive.xfce.org/src/thunar-plugins/thunar-media-tags-plugin/0.3/thunar-media-tags-plugin-0.3.0.tar.bz2 - - gettext - intltool - exo-devel - thunar-devel - taglib-devel - libxml2-devel - libxfce4ui-devel - libxfce4util-devel - - desktop/xfce/addon/thunar-media-tags-plugin/pspec.xml - - - thunar-media-tags-plugin - - exo - atk - gtk3 - glib2 - thunar - taglib - - - /usr/lib - /usr/share/locale - /usr/share/doc - - - - - 2020-11-21 - 0.3.0 - Rebuild.For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-docklike-plugin - https://docs.xfce.org/panel-plugins/xfce4-docklike-plugin/start - - fury - uglyside@yandex.ru - - GPLv3 - library - desktop.xfce.addon - A Dock-like Taskbar Plugin for XFCE. - A modern, docklike, minimalist taskbar for XFCE. - https://archive.xfce.org/src/panel-plugins/xfce4-docklike-plugin/0.4/xfce4-docklike-plugin-0.4.0.tar.bz2 - - intltool - gtk3-devel - cairo-devel - libX11-devel - libwnck3-devel - xfce4-dev-tools - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-docklike-plugin/pspec.xml - - - xfce4-docklike-plugin - - atk - gtk3 - cairo - glib2 - pango - libX11 - libgcc - harfbuzz - libwnck3 - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-09-28 - 0.4.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-07-23 - 0.3.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-04-02 - 0.2.0 - First release from David Keogh. - fury - uglyside@yandex.ru - - - - - - xfce4-mixer - http://git.xfce.org/apps/xfce4-mixer - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL-2 - app:gui - desktop.xfce.addon - Xfce sound mixer application. - Xfce ses ayar uygulaması - Mikser dźwięku dla Xfce - Xfce4-mixer is a volume control application for the Xfce Desktop Environment. It provides both a volume control plugin for the Xfce Panel and a standalone mixer application. It supports all audio systems supported by GStreamer project. - Xfce4-mixer, Xfce Masaüstü Ortamı için yazılmış bir ses ayar uygulamasıdır. Hem panel eklentisi olarak, hem de kendi penceresinde bağımsız olarak kullanılabilen bir uygulamadır. GStreamer projesinin desteklediği tüm ses sistemlerini destekler. - Jest to nakładka na ustawienia miksera, dostarczana ze środowiskiem graficznym Xfce. Spełnia to samo zadanie, co inne nakładki ale jest zintegrowana z Xfce4 jako wtyczka dla panelu Xfce - https://gitlab.xfce.org/apps/xfce4-mixer/-/archive/765725029751bb93a927692fdcda3e3743d0e6e7/xfce4-mixer-765725029751bb93a927692fdcda3e3743d0e6e7.tar.bz2 - - intltool - gtk3-devel - cairo-devel - xfconf-devel gettext-devel - alsa-lib-devel - libunique-devel - keybinder-devel - gstreamer-devel - xfce4-dev-tools - gdk-pixbuf-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel - pulseaudio-libs-devel - gst-plugins-base-devel + gobject-introspection-devel + gtk3-devel + itstool + libxslt-devel + meson - - Fix_obvious_build_errors.patch - - desktop/xfce/addon/xfce4-mixer/pspec.xml + desktop/gnome/apps/gnome-dictionary/pspec.xml - xfce4-mixer + gnome-dictionary gtk3 cairo glib2 - xfconf - alsa-lib - gstreamer - keybinder - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - pulseaudio-libs + pango /usr/bin - /usr/lib/xfce4/panel/plugins - /usr/share/locale - /usr/share/pixmaps /usr/share/applications - /usr/share/xfce4 + /usr/share/dbus-1 /usr/share/doc - /usr/share/man + /usr/share/gdict-1.0 + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo - - 2022-04-14 - 4.15.0 - Rebuild. - fury - uglyside@yandex.ru - - 2021-08-17 - 4.15.0 - First Beta release. - fury - uglyside@yandex.ru + 2021-06-10 + 40.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - xfce4-taskmanager - https://docs.xfce.org/apps/xfce4-taskmanager + alacarte + https://gitlab.gnome.org/GNOME/alacarte Pisi Linux Admins admin@pisilinux.org - GPLv2 - service - desktop.xfce.addon - Easy to use task manager - Easy to use task manager - Kullanımı kolay görev yöneticisi - Kullanımı kolay görev yöneticisi - https://archive.xfce.org/src/apps/xfce4-taskmanager/1.5/xfce4-taskmanager-1.5.4.tar.bz2 + LGPLv3 + library + desktop.gnome.apps + Menu editor for gnome + Menu editor for gnome + Gnome için menü düzenleyici + Gnome için menü düzenleyici + https://download.gnome.org/sources/alacarte/3.44/alacarte-3.44.1.tar.xz intltool gtk3-devel - cairo-devel - glib2-devel - libX11-devel - libXmu-devel - xfconf-devel - libxfce4ui-devel + docbook-xsl + gnome-common + libxslt-devel + python3-devel + gnome-menus-devel + python3-cairo-devel + python3-pygobject3-devel - desktop/xfce/addon/xfce4-taskmanager/pspec.xml + desktop/gnome/apps/alacarte/pspec.xml - xfce4-taskmanager - - gtk3 - cairo - glib2 - libX11 - libXmu - xfconf - libxfce4ui - + alacarte /usr/bin - /usr/share + /usr/lib/python* + /usr/share/alacarte /usr/share/locale - /usr/share/icons + /usr/share/applications + /usr/share/icons + /usr/share/man /usr/share/doc - 2022-05-31 - 1.5.4 + 2022-03-22 + 3.44.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2022-05-24 - 1.5.3 + 2021-11-23 + 3.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-04-10 - 1.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-10-24 + 3.36.0 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org - 2021-02-07 - 1.5.0 + 2021-06-03 + 3.36.0 First release Pisi Linux Admins admin@pisilinux.org @@ -4864,1235 +3456,287 @@ - xfce4-battery-plugin - https://docs.xfce.org/panel-plugins/xfce4-battery-plugin + baobab + https://wiki.gnome.org/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org GPLv2 - LGPLv2 library - desktop.xfce.addon - Battery monitor panel plugin for Xfce4 - Xfce4 için pil izleme paneli eklentisi - A battery monitor panel plugin for Xfce4, compatible with APM and ACPI, for Linux and *BSD. - Xfce4 için bir pil izleme paneli eklentisidir, Linux ve *BSD için APM ve ACPI ile uyumludur. - https://archive.xfce.org/src/panel-plugins/xfce4-battery-plugin/1.1/xfce4-battery-plugin-1.1.3.tar.bz2 + desktop.gnome.apps + A graphical directory tree analyzer + A graphical directory tree analyzer + Bir grafik dizin ağacı analizörü + Bir grafik dizin ağacı analizörü + https://download.gnome.org/sources/baobab/42/baobab-42.0.tar.xz - intltool - gtk3-devel - libxfce4ui-devel - xfce4-panel-devel - libxfce4util-devel + meson + itstool + vala-devel + yelp-tools + gtk4-devel + cairo-devel + glib2-devel + pango-devel + librsvg-devel + libadwaita-devel + libhandy-devel + appstream-glib-devel + gobject-introspection-devel + gsettings-desktop-schemas-devel - desktop/xfce/addon/xfce4-battery-plugin/pspec.xml + desktop/gnome/apps/baobab/pspec.xml - xfce4-battery-plugin + baobab - gtk3 + gtk4 + cairo glib2 - libxfce4ui - xfce4-panel - libxfce4util + pango + libhandy + libadwaita - /usr/lib - /usr/share + /usr/bin + /usr/share/applications + /usr/share/dbus-1 + /usr/share/icons + /usr/share/glib-2.0 /usr/share/locale + /usr/share/help + /usr/share/metainfo + /usr/share/man /usr/share/doc + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2020-06-25 - 1.1.3 - Rebuild - fury - uglyside@yandex.ru + 2021-06-01 + 40.0 + First release + Pisi Linux Admins + admin@pisilinux.org - mousepad - https://git.xfce.org/apps/mousepad/about/ + dconf-editor + http://live.gnome.org/dconf - PisiLinux Community - admins@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org GPLv2 app:gui - desktop.xfce.addon - A simple text editor for Xfce - Xfce için küçük bir yazı düzenleyici - Mousepad aims to be an easy-to-use and fast editor. Our target is an editor for quickly editing text files, not a development environment or an editor with a huge bunch of plugins. On the other hand we try to use the latest Gtk+ features available, which means that if Gtk adds something new in a major release that is useful for the editor, we will likely bump the Gtk dependency and integrate this new feature in Mousepad. - Mousepad, Xfce için yazılmış bir metin düzenleyicisidir. - https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.9.tar.bz2 + desktop.gnome.apps + Gui editor for dconf; simple low-level configuration system + dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. + https://download.gnome.org/sources/dconf-editor/3.38/dconf-editor-3.38.3.tar.xz - intltool - gtk3-devel - dbus-devel + meson + dconf-devel glib2-devel - gspell-devel - xfconf-devel - enchant2-devel libxml2-devel - gtksourceview4-devel + gtk3-devel + pango-devel + docbook-xsl + libepoxy-devel + at-spi2-core-devel + vala-devel + libxslt + intltool + gtk-doc - desktop/xfce/addon/mousepad/pspec.xml + desktop/gnome/apps/dconf-editor/pspec.xml - mousepad + dconf-editor - atk - gtk3 - cairo + dconf glib2 - pango - gspell - harfbuzz - xfconf - libxml2 - enchant2 - gdk-pixbuf - gtksourceview4 + gtk3 /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc + /usr/share/applications + /usr/share/bash-completion + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo - - 2022-04-03 - 0.5.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-11-26 - 0.5.8 + 2021-05-24 + 3.38.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-24 - 0.5.7 + 2020-01-31 + 3.34.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-08-27 - 0.5.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2019-07-13 + 3.27.3 + Rebuild. + erkan IŞIK + erkanisik@pisilinux.org - 2021-05-14 - 0.5.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-10 - 0.5.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-02 - 0.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-24 - 0.5.1 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-11-21 - 0.4.90 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-notes-plugin - https://docs.xfce.org/panel-plugins/xfce4-notes-plugin - - Alper Tekinalp - admins@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - Notes plugin provides you a quick way you had do with Post-It's - Panel için not eklenti - The notes plugin provides you a quick way to paste text, to write down a list of things, to leave a note to your friend, or whatever you had do with Post-It's. - xfce4-notes-plugin panelde kullanabileceğiniz Post-itlerle yapabileceğiniz herşeyi yapmanıza imkan sağlayan bir eklentidir. - https://archive.xfce.org/src/panel-plugins/xfce4-notes-plugin/1.9/xfce4-notes-plugin-1.9.0.tar.bz2 - - gtk3-devel - gettext-devel - git - intltool - libunique-devel - libxfce4ui-devel - vala-devel - xfce4-dev-tools - xfce4-panel-devel - - desktop/xfce/addon/xfce4-notes-plugin/pspec.xml - - - xfce4-notes-plugin - - gtk3 - cairo - glib2 - pango - libX11 - xfconf - libunique - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-02-04 - 1.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 1.8.1 + 2018-08-30 + 3.27.3 Rebuild. - fury - uglyside@yandex.ru + Mustafa Cinasal + muscnsl@gmail.com - - - - - xfce4-verve-plugin - https://docs.xfce.org/panel-plugins/xfce4-verve-plugin - - fury - uglyside@yandex.ru - - GPLv2 - library - desktop.xfce.addon - Command line for Xfce panel. - The Verve panel plugin is a comfortable command line plugin for the Xfce panel. - https://archive.xfce.org/src/panel-plugins/xfce4-verve-plugin/2.0/xfce4-verve-plugin-2.0.1.tar.bz2 - - intltool - exo-devel - gtk3-devel - glib2-devel - xfconf-devel - libpcre-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-verve-plugin/pspec.xml - - - xfce4-verve-plugin - - gtk3 - glib2 - xfconf - libX11 - libpcre - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-04-10 - 2.0.1 - First Beta build. - fury - uglyside@yandex.ru - - - - - - xfdashboard - http://goodies.xfce.org/projects/applications/xfdashboard/start - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app:gui - desktop.xfce.addon - GNOME shell like dashboard for Xfce - GNOME shell like dashboard for Xfce - Xfce için gösterge tablosu gibi GNOME kabuğu - Xfce için gösterge tablosu gibi GNOME kabuğu - xfdashboard - https://github.com/gmc-holle/xfdashboard/archive/0.9.90.tar.gz - - intltool - valgrind - cogl-devel - gtk3-devel - cairo-devel - glib2-devel - pango-devel - garcon-devel - libX11-devel - xfconf-devel - clutter-devel - gettext-devel - xfce4-dev-tools - python3-devel - libwnck3-devel - gdk-pixbuf-devel - libXdamage-devel - libxfce4ui-devel - libXinerama-devel - libxfce4util-devel - libXcomposite-devel - - desktop/xfce/addon/xfdashboard/pspec.xml - - - xfdashboard - - cogl - gtk3 - cairo - glib2 - pango - garcon - libX11 - xfconf - clutter - libwnck3 - gdk-pixbuf - libXdamage - libxfce4ui - libXinerama - libxfce4util - libXcomposite - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/icons - /usr/share/doc - - - - xfdashboard-devel - Development files for xfdashboard - - xfdashboard - gtk3-devel - glib2-devel - garcon-devel - xfconf-devel - clutter-devel - libwnck3-devel - libxfce4ui-devel - libxfce4util-devel - - - /usr/include - /usr/lib/pkgconfig - - - - 2022-03-27 - 0.9.90 - Version bump. + 2018-01-07 + 3.27.1 + Version Bump Mustafa Cinasal muscnsl@gmail.com - 2021-10-02 - 0.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2017-03-30 + 3.16.1 + Release Bump + Kamil Atlı + suvari@pisilinux.org - 2021-09-23 - 0.9.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-09 + 3.16.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2021-05-01 - 0.9.3 + 2015-08-12 + 3.16.1 First release - Pisi Linux Admins - admin@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - xfce4-time-out-plugin - https://docs.xfce.org/panel-plugins/xfce4-time-out-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL-2 - library - desktop.xfce.addon - A module allows to take periodical breaks from the computer - Periyodik bir şekilde bilgisayardan kopmayı sağlayan bir eklenti - This plugin makes it possible to take periodical breaks from the computer every X minutes. During breaks it locks your screen. It optionally allows you to postpone breaks for a certain time. - Bu, X dakika aralıklarla bilgisayardan kopmalara izin veren bir modüldür. Kopmalar sırasında ekran kilitlenir. Seçimli olarak kırılmaları ertelemeye izin verir. - https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.1/xfce4-time-out-plugin-1.1.2.tar.bz2 - - intltool - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-time-out-plugin/pspec.xml - - - xfce4-time-out-plugin - - gtk3 - cairo - glib2 - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-10-17 - 1.1.2 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-07-07 - 1.1.1 - Ver. bump - fury - uglyside@yandex.ru - - - - - - keybinder - https://lazka.github.io/pgi-docs/Keybinder-3.0/index.html + devhelp + https://wiki.gnome.org/Apps/Notes PisiLinux Community admins@pisilinux.org - X11 - app:console - desktop.xfce.addon - keybinder is a library for registering global keyboard shortcuts. - evrensel klavye kısayolları kayıtları için bir kütüphane. - keybinder is a library for registering global keyboard shortcuts. Keybinder works with GTK-based applications using the X Window System. - Keybinder evrensel klavye kısayolları kayıtları için bir kütüphane ler içerir. Keybinder X Pencere Sistemi kullanarak GTK tabanlı uygulamalar ile çalışır. - https://codeload.github.com/kupferlauncher/keybinder/tar.gz/keybinder-3.0-v0.3.2 - - gtk-doc - gtk3-devel - gnome-common - gobject-introspection-devel - - desktop/xfce/addon/keybinder/pspec.xml - - - keybinder - - gtk3 - glib2 - libX11 - gobject-introspection - - - /usr/lib/ - /usr/share - /usr/share/doc - - - - keybinder-devel - Development files for keybinder - keybinder için geliştirme dosyaları - - keybinder - gtk3-devel - - - /usr/include/ - /usr/lib/pkgconfig - - - - - 2020-11-21 - 0.3.2 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - thunarx-python - https://goodies.xfce.org/projects/bindings/thunarx-python - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - GPLv2 - library - desktop.xfce.addon - Thunarx Python bindings - Thunarx Python bağlayıcıları - thunarx-python is Python binding for Thunar - thunarx-python Thunar için Python bağlayıcıları içeren bir kitaplıktır. - https://archive.xfce.org/src/bindings/thunarx-python/0.5/thunarx-python-0.5.2.tar.bz2 - - gtk3-devel - thunar-devel - python3-devel - python-gtk-devel - python3-pygobject3-devel - python-pygobject3-devel - - desktop/xfce/addon/thunarx-python/pspec.xml - - - thunarx-python - - gtk3 - glib2 - thunar - python3 - - - /usr/lib - /usr/share/doc - /usr/share/gtk-doc - - - - - 2021-10-24 - 0.5.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-20 - 0.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-05 - 0.5.1 - First Release For Beta - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfce4-weather-plugin - https://docs.xfce.org/panel-plugins/xfce4-weather-plugin - - fury - uglyside@yandex.ru - - GPLv2 - plugin - desktop.xfce.addon - A weather plugin for the Xfce desktop environment - Originally written by Bob Schlärmann, this panel plugin shows information about your local weather in the panel, using forecast data provided by met.no. - https://archive.xfce.org/src/panel-plugins/xfce4-weather-plugin/0.11/xfce4-weather-plugin-0.11.0.tar.bz2 - - intltool - gtk3-devel - upower-devel - libxml2-devel - libsoup-devel - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-weather-plugin/pspec.xml - - - xfce4-weather-plugin - - gtk3 - glib2 - pango - upower - xfconf - libxml2 - libsoup - gdk-pixbuf - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-02-13 - 0.11.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-06 - 0.10.2 - First Beta release. - fury - uglyside@yandex.ru - - - - - - xfce4-mount-plugin - https://docs.xfce.org/panel-plugins/xfce4-mount-plugin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.addon - A mount/umount utility - Bir bağlama(mount)/koparma(umount) modülü - xfce4-mount-plugin is a mount/umount utility for the panel. - xfce4-mount-plugin Xfce için bir bağlama(mount)/koparma(umount) modülüdür. - https://archive.xfce.org/src/panel-plugins/xfce4-mount-plugin/1.1/xfce4-mount-plugin-1.1.5.tar.bz2 - - intltool - libxfce4ui-devel - xfce4-panel-devel - - desktop/xfce/addon/xfce4-mount-plugin/pspec.xml - - - xfce4-mount-plugin - - atk - gtk3 - glib2 - cairo - pango - gdk-pixbuf - fontconfig - libxfce4ui - xfce4-panel - libxfce4util - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-01-17 - 1.1.5 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-06-25 - 1.1.3 - Rebuild. - fury - uglyside@yandex.ru - - - - - - gtk-style-xfce - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.xfce.lookandfeel - GTK+ Xfce theme engine - GTK+ Xfce tema motoru - Gtk2-engines-xfce is a GTK+ engine for Xfce desktop environment. - Gtk2-engines-xfce, Xfce masaüstü yöneticisi için hazırlanmış GTK+ tema motorudur. - http://archive.xfce.org/xfce/4.12/src/gtk-xfce-engine-2.10.0.tar.bz2 - - xfce4-dev-tools - gtk2-devel - - desktop/xfce/lookandfeel/gtk-style-xfce/pspec.xml - - - gtk-style-xfce - - atk - gtk2 - gtk3 - cairo - pango - gdk-pixbuf - fontconfig - - - /usr/lib - /usr/share/themes - /usr/share/doc - - - - - 2020-11-21 - 2.10.0 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - icon-theme-xfce4 - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - data - desktop.xfce.lookandfeel - Xfce icon theme - Xfce simge teması - Icon theme Rodent for the Xfce Desktop Environment. - Bu paket, Xfce masaüstü ortamı için Rodent simge temasını içerir. - http://archive.xfce.org/src/art/xfce4-icon-theme/4.4/xfce4-icon-theme-4.4.3.tar.bz2 - - intltool - icon-theme-hicolor - - desktop/xfce/lookandfeel/icon-theme-xfce4/pspec.xml - - - icon-theme-xfce4 - - icon-theme-hicolor - - - /usr/lib - /usr/lib/pkgconfig - /usr/share - /usr/share/doc - - - - - 2020-11-23 - 4.4.3 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xfwm4-themes - https://www.xfce.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - data - desktop.xfce.lookandfeel - Xfce window manager themes - Xfwm pencere yöneticisi temaları - Xfce4-themes is a set of additional themes for the Xfwm window manager. - Bu paket, Xfce masaüstü yönetici pencereleri için ek temalar içerir. - http://archive.xfce.org/src/art/xfwm4-themes/4.10/xfwm4-themes-4.10.0.tar.bz2 - desktop/xfce/lookandfeel/xfwm4-themes/pspec.xml - - - xfwm4-themes - - xfwm4 - - - /usr/share - /usr/share/doc - - - - - 2020-11-21 - 4.10.0 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - lumina-desktop - https://lumina-desktop.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - BSD app:gui - desktop.lumina - The Lumina Desktop Environment is a lightweight system interface designed for use on any Unix-like operating system. - UNIX benzeri sistemlerde kullanım için tasarlanmış sistem arayüzlü hafif bir Masaüstü ortamıdır. - The Lumina Desktop Environment is a lightweight system interface designed for use on any Unix-like operating system. - UNIX benzeri sistemlerde kullanım için tasarlanmış sistem arayüzlü hafif bir Masaüstü ortamıdır.. - lumina-desktop - https://github.com/lumina-desktop/lumina/archive/v1.6.0.tar.gz + desktop.gnome.apps + API documentation browser + API Belgelendirme Tarayıcısı + API documentation browser + API Belgelendirme Tarayıcısı + mirrors://gnome/devhelp/41/devhelp-41.2.tar.xz - git - libxcb-devel - xcb-util-devel - libXcursor-devel - libXdamage-devel - libXrender-devel - xcb-util-wm-devel + amtk-devel desktop-file-utils - libXcomposite-devel - xcb-util-image-devel - qt5-linguist - qt5-svg-devel - qt5-base-devel - qt5-x11extras-devel - qt5-multimedia-devel - qt5-declarative-devel - - - show_only_lumina.patch - lumina_default_settings_for_Pisi.patch - - desktop/lumina/lumina-desktop/pspec.xml - - - lumina-desktop - A Lightweight QT5 Desktop for FreeBSD - - libgcc - libxcb - qt5-svg - qt5-base - xcb-util - libXcursor - libXdamage - xcb-util-wm - qt5-x11extras - qt5-multimedia - xcb-util-image - fluxbox - - - /usr/lib/qt5/plugins/styles/liblthemeengine-style.so - /usr/lib/qt5/plugins/platformthemes/liblthemeengine.so - /usr/share/icons/hicolor/scalable/apps/Lumina-DE.png - /usr/share/icons/hicolor/scalable/apps/lumina-desktop.png - /usr/share/icons/hicolor/scalable/apps/Insight-FileManager.png - /usr/share/lumina-desktop/syntax_rules/*.syntax - /usr/share/lumina-desktop/syntax_rules/README.md - /usr/bin/lumina-desktop - /usr/bin/start-lumina-desktop - /usr/bin/lte - /usr/share/lumina-desktop/*.ogg - /usr/share/lumina-desktop/colors - /etc/luminaDesktop.conf.dist - /usr/share/doc/lumina-desktop - /usr/share/lumina-desktop/*.conf - /usr/share/lumina-desktop/themes - /usr/share/lumina-desktop/menu-scripts - /usr/share/applications/lumina-support.desktop - /usr/share/xsessions/Lumina-DE.desktop - /usr/share/lumina-desktop/i18n/lumina-desktop* - /usr/share/lumina-desktop/fluxbox* - /usr/share/lumina-desktop/globs2 - /usr/share/lumina-desktop/*.jpg - /usr/share/man - - - Crocus-Ancyrensis.jpg - - - - lumina-archiver - Archive manager for Lumina Desktop - - libgcc - qt5-svg - qt5-base - - - /usr/bin/lumina-archiver - /usr/share/applications/lumina-archiver.desktop - /usr/share/lumina-desktop/i18n/l-archiver* - - - - lumina-mediaplayer - Media player for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-mediaplayer - /usr/share/applications/lumina-mediaplayer.desktop - /usr/share/applications/lumina-mediaplayer-pandora.desktop - /usr/share/lumina-desktop/i18n/l-mediap* - - - - lumina-photo - Image viewer for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-photo - /usr/share/applications/lumina-photo.desktop - /usr/share/lumina-desktop/i18n/l-photo* - - - - lumina-lthemeengine - Theme engine for Lumina Desktop - - qt5-base - - - /usr/bin/lthemeengine - /usr/bin/lthemeengine-sstest - /usr/share/applications/lthemeengine.desktop - /usr/share/lthemeengine/colors/*.conf - /usr/share/lthemeengine/qss/ - /usr/share/lthemeengine/desktop_qss/* - /usr/share/lthemeengine/desktop_qss/*.gss - - - pisi_black.svg - pisi_white.svg - pisilogo.png - - - - lumina-material-design-dark - Material-design-dark theme for Lumina Desktop - - qt5-base - - - /usr/share/icons/material-design-dark - - - - lumina-material-design-light - Material-design-light theme for Lumina Desktop - - qt5-base - - - /usr/share/icons/material-design-light - - - - lumina-open - Application launcher for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-open - /usr/share/lumina-desktop/i18n/lumina-open* - - - - lumina-config - Configuration for Lumina Desktop - - libxcb - qt5-x11extras - - - /usr/bin/lumina-config - /usr/share/applications/lumina-config.desktop - /usr/share/lumina-desktop/i18n/lumina-config* - - - - lumina-fm - File Manager for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-fm - /usr/share/applications/lumina-fm.desktop - /usr/share/lumina-desktop/i18n/lumina-fm* - - - - lumina-screenshot - Screenshot Tool for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-screenshot - /usr/share/applications/lumina-screenshot.desktop - /usr/share/lumina-desktop/i18n/l-screenshot* - - - - lumina-search - Search Tool for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-search - /usr/share/applications/lumina-search.desktop - /usr/share/lumina-desktop/i18n/lumina-search* - - - - lumina-info - Info tool for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-info - /usr/share/applications/lumina-info.desktop - /usr/share/lumina-desktop/i18n/lumina-info* - - - - lumina-xconfig - Monitor Configuration Tool for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-xconfig - /usr/share/applications/lumina-xconfig.desktop - /usr/share/lumina-desktop/i18n/lumina-xconfig* - - - - lumina-fileinfo - File Information Tool for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-fileinfo - /usr/share/applications/lumina-fileinfo.desktop - /usr/share/lumina-desktop/i18n/l-fileinfo* - - - - lumina-textedit - Text Editor for Lumina Desktop - - qt5-base - - - /usr/bin/lumina-textedit - /usr/share/applications/lumina-textedit.desktop - /usr/share/lumina-desktop/i18n/l-te* - - - - - 2021-05-01 - 1.6.0 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-07-13 - 1.5.0 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2017-03-09 - 1.2.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gspell - https://wiki.gnome.org/Projects/gspell - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.gnome.base - GTK+ Spell Checker Library - GTK imla denetimi kitaplığı - A flexible API to implement the spell checking in a GTK+ application - GTK uygulamalarında imla denetimi uygulamları için esnek bir API - mirrors://gnome/gspell/1.10/gspell-1.10.0.tar.xz - - enchant2-devel gettext-devel + gobject-introspection-devel glib2-devel gtk3-devel - gobject-introspection-devel - iso-codes-devel - python3-devel - vala-devel + itstool + gtk-doc + meson + gsettings-desktop-schemas-devel + webkit2gtk-devel - desktop/gnome/base/gspell/pspec.xml + desktop/gnome/apps/devhelp/pspec.xml - gspell + devhelp - atk - cairo - enchant2 - gdk-pixbuf - glib2 + amtk gtk3 - harfbuzz - icu4c + glib2 pango + webkit2gtk - /usr/share - /usr/lib /usr/bin + /usr/lib/libdevhelp* + /usr/lib/gedit + /usr/lib/girepository-1.0 + /usr/share/applications + /usr/share/dbus-1 + /usr/share/devhelp + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo - gspell-devel - Development files for gspell - gspell için geliştirme dosyaları + devhelp-devel + Development files for devhelp + devhelp için geliştirme dosyaları - gspell - enchant2-devel - gtk3-devel + devhelp glib2-devel - icu4c-devel + gtk3-devel + webkit2gtk-devel + gsettings-desktop-schemas-devel /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + 2021-10-01 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2022-04-19 - 1.10.0 + 2021-08-27 + 40.1 Version bump. Mustafa Cinasal muscnsl@gmail.com 2021-06-03 - 1.9.1 + 40.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -6101,194 +3745,111 @@ - gnome-doc-utils - http://live.gnome.org/GnomeDocUtils + epiphany + https://gitlab.gnome.org/GNOME/epiphany - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org GPLv2 - LGPLv2.1 - library - desktop.gnome.base - A collection of documentation utilities for the Gnome project - Gnome projesi için döküman araçları takımı - gnome-doc-utils is a collection of documentation utilities for the Gnome project - gnome-doc-utils Gnome projesinde kullanılan belgelendirme araçlarını içermektedir. - http://ftp.acc.umu.se/pub/GNOME/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.10.tar.xz - - gawk - intltool - pkgconfig - gettext-devel - docbook-xml - libxslt-devel - - - do-not-update-scrollkeeper-database.patch - - desktop/gnome/base/gnome-doc-utils/pspec.xml - - - gnome-doc-utils - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/omf - /usr/bin - /usr/share/xml - /usr/share/gnome - /usr/share/xml2po - /usr/share/aclocal - /usr/share/pkgconfig - /usr/share/locale - /usr/share/gnome-doc-utils - - - - - 2020-11-19 - 0.20.10 - Rebuild.For Beta System - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - gamin - http://www.gnome.org/~veillard/gamin/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.gnome.base - File alteration monitor library - Dosya değişim izleme kitaplığı - Gamin is a file and directory monitoring system defined to be a subset of the FAM (File Alteration Monitor) system. This is a serviceprovided by a library which allows to detect when a file or a directory has been modified. - Gamin bir dosya ve klasör izleme kitaplığıdır. FAM (Dosya değişim izleyicisi) sisteminin bir alt kolu olarak tanımlanmaktadır. Bir dosyanın veya bir klasörün değiştiğini anlamamıza yarayan bir kitaplığıdır. - mirrors://gnome/gamin/0.1/gamin-0.1.10.tar.bz2 - - glib2-devel - - - 18_gam_server_deadlocks.patch - explicitly-link-with-python.patch - fix-deprecated-const-01.patch - fix-deprecated-const-02.patch - fix-deprecated-const-03.patch - fix-deprecated-const-04.patch - - desktop/gnome/base/gamin/pspec.xml - - - gamin - File alteration monitor library - - glib2 - - - /usr/libexec - /usr/lib - /usr/share/doc - - - - gamin-devel - Development files for gamin - gamin için geliştirme dosyaları - gamin-devel, gamin için geliştirme dosyalarını içerir. - - gamin - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-02-26 - 0.1.10 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2016-02-25 - 0.1.10 - Rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2014-05-22 - 0.1.10 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-01-25 - 0.1.10 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2012-10-02 - 0.1.10 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - yelp-tools - https://github.com/GNOME/yelp-tools - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 app:gui - desktop.gnome.base - Tools for creating Yelp documentation - Mate için Çeşitli ağ araçları arayüzü uygulaması. - mirrors://gnome/yelp-tools/42/yelp-tools-42.0.tar.xz + desktop.gnome.apps + Intuitive GNOME web browser. + Epiphany is a GNOME web browser based on the WebKit rendering engine. + https://download.gnome.org/sources/epiphany/42/epiphany-42.2.tar.xz - meson + glib2-devel itstool + NetworkManager-devel + avahi-glib-devel + gcr-devel + gnome-desktop-devel + json-glib-devel + libdazzle-devel + libhandy-devel + libnotify-devel + libsecret-devel + libsoup-gnome + libwnck3-devel libxslt-devel - yelp-xsl-devel - python3-lxml + nettle-devel + nss-devel + webkit2gtk-devel + libportal-devel + libsoup-devel + libarchive-devel + appstream-glib-devel + gmp-devel + meson + desktop-file-utils - desktop/gnome/base/yelp-tools/pspec.xml + desktop/gnome/apps/epiphany/pspec.xml - yelp-tools + epiphany - itstool - yelp-xsl - python3-lxml + atk + cairo + gcr + gdk-pixbuf + glib2 + gmp + gtk3 + json-glib + libdazzle + libsecret + libsoup + libxml2 + nettle + pango + sqlite + webkit2gtk + libhandy + libportal + libarchive - /usr/share/doc /usr/bin - /usr/share/aclocal - /usr/share/yelp-tools + /usr/lib + /usr/libexec + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/epiphany + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo + + 2022-04-22 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-24 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 41.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + - 2022-03-21 - 42.0 + 2021-12-16 + 41.1 Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -6301,184 +3862,22 @@ muscnsl@gmail.com - 2021-05-24 - 40.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 3.38.0 + 2021-08-13 + 40.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-02-13 - 3.32.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - librest - http://www.gtk.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.gnome.base - A helper library for RESTful services. - This library was designed to make it easier to access web services that claim to be "RESTful". - http://ftp.acc.umu.se/pub/GNOME/sources/rest/0.8/rest-0.8.1.tar.xz - - gtk-doc - python-six - libsoup-devel - libsoup-gnome - - desktop/gnome/base/librest/pspec.xml - - - librest - - glib2 - libxml2 - libsoup - libsoup-gnome - - - /usr/share - /usr/lib - /usr/bin - - - - librest-devel - Development files for librest - librest için geliştirme dosyaları - - libsoup-devel - librest - glib2-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2020-02-08 - 0.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-30 - 0.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 0.8.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - 2015-03-18 - 0.7.92 - Release bump - Kamil Atlı - suvari@pisilinux.org + 2021-06-08 + 40.2 + Version bump + Berk Çakar + berk2238@hotmail.com - 2015-03-18 - 0.7.92 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - gmime3 - http://spruce.sourceforge.net/gmime - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome.base - Utilities for creating and parsing messages using MIME - GMime is a C/C++ library which may be used for the creation and parsing of messages using the Multipurpose Internet Mail Extension (MIME) - https://download.gnome.org/sources/gmime/3.2/gmime-3.2.7.tar.xz - - glib2-devel - gpgme-devel - zlib-devel - libidn2-devel - gobject-introspection-devel - vala-devel - gtk-doc - - desktop/gnome/base/gmime3/pspec.xml - - - gmime3 - - zlib - glib2 - gpgme - libidn2 - libassuan - libgpg-error - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - - - - gmime3-devel - - gmime3 - glib2-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - gmime3-docs - data:doc - - /usr/share/doc - /usr/share/gtk-doc - - - - - 2021-05-27 - 3.2.7 + 2021-06-07 + 3.38.5 First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -6487,79 +3886,1604 @@ - yelp - https://wiki.gnome.org/Apps/Yelp + evolution + https://gitlab.gnome.org/GNOME/evolution + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + LGPLv3 + app:gui + desktop.gnome.apps + Integrated mail, addressbook and calendaring for GNOME. + The Evolution package contains an integrated mail, calendar and address book suite designed for the GNOME environment. + https://download.gnome.org/sources/evolution/3.44/evolution-3.44.2.tar.xz + + gnome-desktop-devel + libcanberra-gtk3-devel + evolution-data-server-devel + gspell-devel + gnome-autoar-devel + libarchive-devel + intltool + itstool + docbook-xsl + cmark-devel + geocode-glib-devel + NetworkManager-devel + yelp-tools + libgdata-devel + webkit2gtk-devel + enchant2-devel + libgweather-devel + libnotify-devel + clutter-gtk-devel + geoclue-devel + geocode-glib-devel + libseccomp-devel + openldap-server + cmake + + desktop/gnome/apps/evolution/pspec.xml + + + evolution + + atk + gcr + nss + gtk3 + nspr + cairo + glib2 + pango + gspell + sqlite + libical + libsoup + libxml2 + enchant2 + libnotify + cmark + geocode-glib + libsecret + gdk-pixbuf + webkit2gtk + libcanberra + libgweather + gnome-autoar + gnome-desktop + openldap-client + evolution-data-server + + + /usr/bin + /usr/lib/evolution-data-server + /usr/lib/evolution + /usr/libexec + /usr/share/GConf + /usr/share/applications + /usr/share/doc + /usr/share/evolution + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/help + /usr/share/locale + /usr/share/man + /usr/share/metainfo + + + + evolution-devel + + evolution + gtk3-devel + glib2-devel + gnome-desktop-devel + evolution-data-server-devel + webkit2gtk-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-27 + 3.44.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-07 + 3.42.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-05 + 3.42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-29 + 3.42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-17 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-13 + 3.40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-10 + 3.40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 3.40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-05 + 3.40.1 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gedit + http://projects.gnome.org/gedit/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Default text editor for GNOME + GNOME için öntanımlı metin editörü + gedit is a small and lightweight text editor for the GNOME environment. + gedit, GNOME ortamı için küçük ve hafif bir metin editörüdür. + mirrors://gnome/gedit/42/gedit-42.1.tar.xz + + desktop-file-utils + gettext-devel + git + glib2-devel + gobject-introspection-devel + gsettings-desktop-schemas-devel + gspell-devel + gtk-doc + gtk3-devel + gtksourceview4-devel + iso-codes + itstool + libpeas-devel + libsoup-devel + libxml2-devel + meson + python3-devel + python3-pygobject3-devel + tepl-devel + vala-devel + yelp-tools + which + + desktop/gnome/apps/gedit/pspec.xml + + + gedit + + atk + amtk + cairo + gdk-pixbuf + glib2 + gtk3 + gtksourceview4 + gobject-introspection + gspell + libpeas + pango + tepl + libxml2 + + + /usr/bin + /usr/lib/gedit + /usr/lib/python3.* + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/gedit + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/vala + + + + gedit-devel + Development files for gedit + gedit için geliştirme dosyaları + + gedit + glib2-devel + gtk3-devel + libpeas-devel + tepl-devel + gtksourceview4-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-27 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 40.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-01 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gedit-plugins + https://wiki.gnome.org/Apps/Gedit/ShippedPlugins + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Plugins for gedit + gedit için eklentiler + Collection of plugins for the gedit Text Editor + gedit metin editörü için eklentiler + mirrors://gnome/gedit-plugins/42/gedit-plugins-42.1.tar.xz + + atk-devel + cairo-devel + gedit-devel + gettext-devel + gtksourceview3-devel + glib2-devel + itstool + libpeas-devel + meson + python3-devel + python3-pygobject3-devel + vala-devel + vte-devel + yelp-tools + + desktop/gnome/apps/gedit-plugins/pspec.xml + + + gedit-plugins + + gtk3 + gedit + glib2 + libpeas + gtksourceview4 + + + /usr/lib + /usr/share/doc + /usr/share/gedit + /usr/share/glib-2.0 + /usr/share/help + /usr/share/locale + /usr/share/man + /usr/share/metainfo + + + + + 2022-05-27 + 42.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-02 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + ghex + https://wiki.gnome.org/Apps/Ghex + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + A simple binary editor for the Gnome desktop + Gnome masaüstü için basit bir ikili(binary) düzenleyici + A simple binary editor for the Gnome desktop + Gnome masaüstü için basit bir ikili(binary) düzenleyici + mirrors://gnome/ghex/42/ghex-42.2.tar.xz + + gobject-introspection-devel + desktop-file-utils + gettext-devel + gtk3-devel + gtk4-devel + itstool + meson + + desktop/gnome/apps/ghex/pspec.xml + + + ghex + + atk + cairo + gtk3 + gtk4 + glib2 + pango + + + /usr/bin + /usr/lib/gtkhex-* + /usr/lib/libgtkhex* + /usr/lib/girepository-1.0/Hex-4.typelib + /usr/share/applications + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + + + ghex-devel + Development files for ghex + ghex için geliştirme dosyaları + + ghex + gtk3-devel + gtk4-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-04-27 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-05 + 3.41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-24 + 3.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-07 + 3.18.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gitg + https://wiki.gnome.org/Apps/Gitg Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org GPLv2 app:gui - desktop.gnome.base - Help viewer for GNOME desktop - Gnome için Yardım görüntüleyici - Yelp is a help viewer which serves as a DocBook viewer, a man page viewer, and an info page viewer. - Yelp DocBook, man sayfaları ve info sayfaları için bir yardım belgeleri görüntüleyicidir. - mirrors://gnome/yelp/42/yelp-42.1.tar.xz + desktop.gnome.apps + GTK+ graphical interface for the git revision control system + Git sürüm kontrol sistemi için bir GTK tabanlı bir arayüz + GTK+ graphical interface for the git revision control system + Git sürüm kontrol sistemi için bir GTK tabanlı bir arayüz + gitg + mirrors://gnome/gitg/41/gitg-41.tar.xz - itstool - gtk-doc - intltool - xz-devel + gettext-devel + glib2-devel + gspell-devel + gtksourceview4-devel + gobject-introspection-devel + gsettings-desktop-schemas-devel gtk3-devel - sqlite-devel - libxslt-devel - libxml2-devel - libhandy-devel - enchant2-devel - yelp-xsl-devel + gtksourceview3-devel + gtkspell3-devel + json-glib-devel + meson + libdazzle-devel + libgee-devel + libgit2-glib-devel + libpeas-devel + libsecret-devel + libsoup-devel + python3-devel + vala-devel webkit2gtk-devel - python-pyliblzma - libseccomp-devel - desktop/gnome/base/yelp/pspec.xml + desktop/gnome/apps/gitg/pspec.xml - yelp + gitg - xz gtk3 - bzip2 + cairo glib2 - sqlite + pango + libgee + libpeas libsoup - libhandy + gspell + json-glib + gtksourceview4 libxml2 - libxslt - webkit2gtk + gtkspell3 + libdazzle + libsecret + gdk-pixbuf + libgit2-glib + gtksourceview3 + gobject-introspection - /usr/lib - /usr/share/doc /usr/bin - /usr/share/yelp* - /usr/share/glib-2.0 + /usr/lib/girepository-1.0 + /usr/lib/gitg + /usr/lib/lib*.so* + /usr/lib/python3* /usr/share/applications - /usr/share/metainfo + /usr/share/gitg /usr/share/icons - /usr/share/locale + /usr/share/glib-2.0 + /usr/share/man + /usr/share/metainfo + /usr/share/doc + /usr/share/glade + /usr/share/locale - yelp-devel - Development files for yelp + gitg-devel + Development files for gitg + devhelp için geliştirme dosyaları - yelp + gitg + gtk3-devel + glib2-devel + libgee-devel + libdazzle-devel + libgit2-glib-devel /usr/include - /usr/share/gtk-doc + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2021-12-28 + 41 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 3.32.1 + Rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-07-11 + 3.32.1 + Rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-06-08 + 3.32.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-applets + https://www.gnome.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app + desktop.gnome.apps + Small applications for the GNOME Panel + Small applications for the GNOME Panel + GNOME Paneli için küçük uygulamalar + GNOME Paneli için küçük uygulamalar + https://download.gnome.org/sources/gnome-applets/3.44/gnome-applets-3.44.0.tar.xz + + itstool + atk-devel + gtk3-devel + cairo-devel + glib2-devel + libSM-devel + pango-devel + libICE-devel + libX11-devel + polkit-devel + upower-devel + cpupowertools + libgtop-devel + libxml2-devel + tracker-devel + harfbuzz-devel + libwnck3-devel + libnotify-devel + gdk-pixbuf-devel + libgweather4-devel + gnome-panel-devel + wireless-tools-devel + gnome-settings-daemon-devel + + desktop/gnome/apps/gnome-applets/pspec.xml + + + gnome-applets + + atk + gtk3 + cairo + glib2 + libSM + pango + libICE + libX11 + polkit + upower + libgtop + libxml2 + tracker + harfbuzz + libwnck3 + libnotify + gdk-pixbuf + libgweather4 + cpupowertools + gnome-panel + wireless-tools + + + /usr/bin + /etc + /usr/lib + /usr/share/dbus-1 + /usr/share/help + /usr/share/icons + /usr/share/glib-2.0 + /usr/share/gnome-applets + /usr/share/locale + /usr/share/polkit-1 + /usr/share/doc + + + + + 2022-03-21 + 3.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-09 + 3.41.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gnome-builder + https://gitlab.gnome.org/GNOME/gnome-builder + + Pisi Linux Admins + admins@pisilinux.org + + GPLv3 + app:gui + desktop.gnome.apps + An IDE for writing GNOME-based software. + Builder is an IDE for GNOME and a tool to help writing GNOME-based applications. + https://download.gnome.org/sources/gnome-builder/42/gnome-builder-42.1.tar.xz + + appstream-glib-devel + gobject-introspection-devel + gspell-devel + mm-common + vala-devel + python3-sphinx + python3-sphinx_rtd_theme + cairo-devel + llvm-clang-devel + llvm + devhelp-devel + enchant2-devel + flatpak-devel + gtksourceview4-devel + gtk3-devel + json-glib-devel + libdazzle-devel + libgit2-glib-devel + glib2-devel + ostree-devel + libpeas-devel + libxml2-devel + vte-devel + webkit2gtk-devel + sysprof-devel + python3-pygobject3-devel + glade-devel + libportal-devel + meson + jsonrpc-glib-devel + template-glib-devel + libpcre2-devel + elogind-devel + gtk4-devel + libhandy-devel + cmark-devel + + + include-locale_h.patch + + desktop/gnome/apps/gnome-builder/pspec.xml + + + gnome-builder + + vte + cmark + glade + ctags + gspell + cairo + ostree + libpeas + flatpak + sysprof + devhelp + libgit2 + valgrind + libpcre2 + enchant2 + libportal + libdazzle + json-glib + mm-common + llvm-clang + python3-jedi + python-lxml + libgit2-glib + jsonrpc-glib + template-glib + gtksourceview4 + appstream-glib + flatpak-builder + llvm-clang + libhandy + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gtksourceview-4 + /usr/share/gnome-builder + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + + + gnome-builder-devel + Development files for gnome-builder + + gnome-builder + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-21 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-07 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-17 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 41.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-25 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-14 + 3.40.2 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-calculator + https://wiki.gnome.org/Apps/Calculator + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + A desktop calculator for GNOME + gnome-calculator is an application that solves mathematical equations. + mirrors://gnome/gnome-calculator/42/gnome-calculator-42.1.tar.xz + + desktop-file-utils + itstool + gtk4-devel + gettext-devel + glib2-devel + gtksourceview4-devel + meson + mpfr-devel + libgee-devel + libmpc-devel + libsoup-devel + libhandy-devel + libxml2-devel + vala-devel + libadwaita-devel + gtksourceview5-devel + + desktop/gnome/apps/gnome-calculator/pspec.xml + + + gnome-calculator + + atk + glib2 + gtk4 + mpfr + libgee + libmpc + libsoup + libxml2 + libhandy + gtksourceview4 + libadwaita + gtksourceview5 + + + /usr/bin + /usr/lib/libgcalc* + /usr/lib/libgci* + /usr/lib/gnome-calculator-search-provider + /usr/lib/girepository-1.0 + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/vala + + + + gnome-calculator-devel + + gnome-calculator + gtk3-devel + glib2-devel + libgee-devel + + + /usr/lib/pkgconfig + /usr/include + /usr/share/gir-1.0 + + + + + 2022-05-28 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-06 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-01 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-calendar + https://wiki.gnome.org/Apps/Calendar + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Simple and beautiful calendar application designed to fit GNOME 3 + GNOME 3 için tasarlanmış basit ve güzel bir takvim uygulaması + Simple and beautiful calendar application designed to fit GNOME 3 + GNOME 3 için tasarlanmış basit ve güzel bir takvim uygulaması + gnome-calendar + mirrors://gnome/gnome-calendar/42/gnome-calendar-42.1.tar.xz + + appstream-devel + desktop-file-utils + evolution-data-server-devel + geoclue-devel + geocode-glib-devel + gettext-devel + gnome-online-accounts-devel + gsettings-desktop-schemas-devel + geocode-glib-devel + gtk-doc + gtk4-devel + libgweather4-devel + graphene-devel + libadwaita-devel + libdazzle-devel + libhandy-devel + libical-devel + libsoup-devel + meson + python-pygobject3-devel + + desktop/gnome/apps/gnome-calendar/pspec.xml + + + gnome-calendar + + cairo + evolution-data-server + gnome-online-accounts + geoclue + glib2 + gtk4 + libical + libsoup + libhandy + libdazzle + libgweather4 + pango + graphene + libadwaita + + + /usr/bin + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + + + + 2022-04-27 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-11 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-06 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-08 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-characters + https://wiki.gnome.org/Design/Apps/CharacterMap + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Character map application for GNOME + GNOME için karakter haritası uygulaması + Character map application for GNOME + GNOME için karakter haritası uygulaması + gnome-characters + mirrors://gnome/gnome-characters/42/gnome-characters-42.0.tar.xz + + desktop-file-utils + gettext-devel + gjs-devel + gobject-introspection-devel + gtk3-devel + gtk4-devel + appstream-glib-devel + libhandy-devel + libunistring-devel + meson + libadwaita-devel + + desktop/gnome/apps/gnome-characters/pspec.xml + + + gnome-characters + + gtk3 + glib2 + pango + libunistring + + + /usr/bin + /usr/lib/org.gnome.Characters + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + /usr/share/org.gnome.Characters + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-09 + 40.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-clocks + https://wiki.gnome.org/Apps/Clocks + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Clock application designed for GNOME 3 + GNOME 3 için tasarlanmış saat uygulaması + Clock application designed for GNOME 3 + GNOME 3 için tasarlanmış saat uygulaması + gnome-clocks + mirrors://gnome/gnome-clocks/42/gnome-clocks-42.0.tar.xz + + appstream-glib-devel + desktop-file-utils + gettext-devel + geocode-glib-devel + geoclue-devel + glib2-devel + gnome-desktop-devel + gobject-introspection-devel + gsound-devel + gtk4-devel + itstool + libadwaita-devel + libgweather4-devel + libcanberra-gtk3-devel + libgweather-devel + libseccomp-devel + libhandy-devel + meson + vala-devel + gtk4-update-icon-cache + + desktop/gnome/apps/gnome-clocks/pspec.xml + + + gnome-clocks + + gtk4 + glib2 + gsound + geoclue + libhandy + libgweather + geocode-glib + gnome-desktop + libadwaita + libgweather4 + + + /usr/bin + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-17 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-09 + 40.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-contacts + https://gitlab.gnome.org/GNOME/gnome-contacts + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Contacts Manager for GNOME + Contacts is GNOME's integrated address book. Contacts organizes your contacts information from all your online and offline sources, providing a centralized place for managing your contacts. + https://download.gnome.org/sources/gnome-contacts/42/gnome-contacts-42.0.tar.xz + + folks-devel + glib2-devel + vala-devel + cheese-devel + geocode-glib-devel + gnome-desktop-devel + libchamplain-devel + libnotify-devel + libhandy-devel + meson + desktop-file-utils + gnome-online-accounts-devel + appstream-glib-devel + gtk4-devel + libportal-devel + libadwaita-devel + + desktop/gnome/apps/gnome-contacts/pspec.xml + + + gnome-contacts + + atk + gtk4 + cairo + glib2 + pango + folks + cheese + libgee + libhandy + gdk-pixbuf + gnome-desktop + wayland-server + libportal + libadwaita + evolution-data-server + gnome-online-accounts + + + /usr/bin + /usr/libexec + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/man + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/gnome-shell + /usr/share/locale + /usr/share/metainfo + + + + + 2022-03-22 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-29 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-19 + 40.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 40.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-disk-utility + https://gitlab.gnome.org/GNOME/gnome-disk-utility + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Disk Management Utility for GNOME + GNOME libraries and applications for dealing with storage devices + https://download.gnome.org/sources/gnome-disk-utility/42/gnome-disk-utility-42.0.tar.xz + + glib2-devel + gnome-settings-daemon-devel + libcanberra-gtk3-devel + libdvdread-devel + libnotify-devel + libpwquality-devel + libsecret-devel + udisks2-devel + libxslt-devel + libhandy-devel + xz-devel + meson + elogind-devel + + desktop/gnome/apps/gnome-disk-utility/pspec.xml + + + gnome-disk-utility + + xz + atk + gtk3 + cairo + glib2 + pango + elogind + udisks2 + libhandy + libnotify + libsecret + gdk-pixbuf + libdvdread + libpwquality + libcanberra-gtk3 + + + /etc/xdg/autostart + /usr/bin + /usr/libexec + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/man + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-12 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 40.1 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-font-viewer + https://gitlab.gnome.org/GNOME/gnome-font-viewer + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Utility for previewing fonts for GNOME + Gnome için yazı tipi önizleme aracı + Utility for previewing fonts for GNOME + Gnome için yazı tipi önizleme aracı + gnome-font-viewer + mirrors://gnome/gnome-font-viewer/42/gnome-font-viewer-42.0.tar.xz + + appstream-glib-devel + desktop-file-utils + fontconfig-devel + freetype-devel + glib2-devel + gtk4-devel + libhandy-devel + harfbuzz-devel + gnome-desktop-devel + gettext-devel + meson + graphene-devel + libadwaita-devel + + desktop/gnome/apps/gnome-font-viewer/pspec.xml + + + gnome-font-viewer + + cairo + fontconfig + freetype + gdk-pixbuf + gnome-desktop + gtk4 + glib2 + pango + harfbuzz + libhandy + graphene + libadwaita + + + /usr/bin + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + /usr/share/thumbnailers + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-10 + 40.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-maps + https://gitlab.gnome.org/GNOME/gnome-maps + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + GNOME Maps application + Maps is a map application for GNOME. + https://download.gnome.org/sources/gnome-maps/42/gnome-maps-42.2.tar.xz + + libchamplain-devel + meson + clutter-gtk-devel + geoclue-devel + geocode-glib-devel + libgee-devel + folks-devel + gobject-introspection-devel + gjs-devel + appstream-glib-devel + libhandy-devel + librest-devel + libgweather4-devel + desktop-file-utils + + desktop/gnome/apps/gnome-maps/pspec.xml + + + gnome-maps + + folks + glib2 + libgee + librest + libxml2 + geocode-glib + libchamplain + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-maps + /usr/share/icons + /usr/share/locale + /usr/share/metainfo - 2022-03-27 - 42.1 + 2022-05-28 + 42.2 Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -6572,43 +5496,287 @@ muscnsl@gmail.com - 2021-09-25 + 2021-10-31 41.1 Version bump. Mustafa Cinasal muscnsl@gmail.com + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-13 + 40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-19 + 40.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + 2021-07-10 40.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-06-14 + + 2021-06-13 40.2 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-multi-writer + https://gitlab.gnome.org/GNOME/gnome-multi-writer + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Write an ISO file to multiple USB devices at once + GNOME MultiWriter can be used to write an ISO file to multiple USB devices simultaneously. + https://download.gnome.org/sources/gnome-multi-writer/3.35/gnome-multi-writer-3.35.90.tar.xz + + meson + gtk3-devel + libgusb-devel + udisks2-devel + polkit-devel + libgudev-devel + appstream-glib-devel + libcanberra-gtk3-devel + + desktop/gnome/apps/gnome-multi-writer/pspec.xml + + + gnome-multi-writer + + gtk3 + glib2 + polkit + libgusb + udisks2 + libgudev + libcanberra + libcanberra-gtk3 + + + /usr/bin + /usr/libexec + /usr/share/applications + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + /usr/share/polkit-1 + + + + + 2021-08-24 + 3.35.90 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-music + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Music player and management application for GNOME + Gnome için müzik çalar uygulaması + Music player and management application for GNOME + Gnome için müzik çalar uygulaması + gnome-music + mirrors://gnome/gnome-music/42/gnome-music-42.0.tar.xz + + appstream-glib-devel + desktop-file-utils + gettext-devel + git + itstool + gnome-online-accounts-devel + python3-pygobject3-devel + grilo-devel + gtk4-devel + libdazzle-devel + libmediaart-devel + libsoup-devel + meson + python3-cairo-devel + tracker-devel + python3-devel + avahi-ui-gtk3-devel + avahi-devel + avahi-glib-devel + gstreamer-devel + gperf + yelp-tools + lua-devel + libgdata-devel + totem-pl-parser-devel + liboauth-devel + gom-devel + libdmapsharing-devel + gst-plugins-base-devel + grilo-plugins-devel + tracker-miners + libhandy-devel + libadwaita-devel + + desktop/gnome/apps/gnome-music/pspec.xml + + + gnome-music + + gtk4 + cairo + glib2 + pango + libhandy + gdk-pixbuf + + + /usr/bin + /usr/lib/org.gnome.Music + /usr/lib/python3.* + /usr/share/applications + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + /usr/share/org.gnome.Music + + + + + 2022-03-21 + 42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2021-10-24 + 41.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-05-24 - 40.0 + 2021-09-19 + 41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-03-01 - 3.38.3 + 2021-06-14 + 40.1.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-29 - 3.34.0 + 2021-06-10 + 40.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-nettool + https://gitlab.gnome.org/GNOME/gnome-nettool + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Network information tool for GNOME + GNOME için ağ bilgi aracı + Network information tool for GNOME + GNOME için ağ bilgi aracı + gnome-nettool + mirrors://gnome/gnome-nettool/42/gnome-nettool-42.0.tar.xz + + desktop-file-utils + gtk3-devel + intltool + itstool + libgtop-devel + meson + yelp-tools + gnome-common + autoconf-archive + + desktop/gnome/apps/gnome-nettool/pspec.xml + + + gnome-nettool + + gtk3 + cairo + glib2 + pango + libgtop + gdk-pixbuf + + + /usr/bin + /usr/share/applications + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-nettool + /usr/share/help + /usr/share/icons + /usr/share/appdata/gnome-nettool.appdata.xml + /usr/share/locale + + + + + 2022-04-06 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 3.8.1 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -6617,441 +5785,293 @@ - libsecret - https://wiki.gnome.org/Projects/Libsecret + gnome-notes + https://wiki.gnome.org/Apps/Notes PisiLinux Community admins@pisilinux.org GPLv2 app:gui - desktop.gnome.base - The libsecret package contains a GObject based library - The libsecret package contains a GObject based library for accessing the Secret Service API. - https://ftp.gnome.org/pub/gnome/sources/libsecret/0.20/libsecret-0.20.5.tar.xz + desktop.gnome.apps + Simple Note Viewer + Basit bir not görüntüyeci + Write out notes, every detail matters + GNOME için basit bir note görüntüleyici. + mirrors://gnome/bijiben/40/bijiben-40.1.tar.xz - meson - gtk-doc - vala-devel - libxslt-devel - libgcrypt-devel + desktop-file-utils + gettext-devel + git glib2-devel - xmlto - intltool - python-six - gi-docgen - gobject-introspection-devel + gtk3-devel + itstool + libxml2-devel + meson + vala-devel + yelp-tools + gnome-online-accounts-devel + json-glib-devel + curl-devel + evolution-data-server-devel + libhandy-devel + tracker-devel + webkit2gtk-devel - desktop/gnome/base/libsecret/pspec.xml + desktop/gnome/apps/gnome-notes/pspec.xml - libsecret + gnome-notes - libxslt - libgcrypt + cairo + curl + evolution-data-server + gnome-online-accounts + gtk3 glib2 - xmlto + json-glib + libxml2 + libical + libhandy + pango + tracker + webkit2gtk - /usr/share - /usr/lib /usr/bin + /usr/lib + /usr/libexec + /usr/share/applications + /usr/share/bijiben + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/mime + + + + + 2021-06-03 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-panel + https://wiki.gnome.org/Projects/GnomePanel + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + desktop.gnome.apps + Panel of GNOME Flashback + Panel of GNOME Flashback + Panel of GNOME Flashback + Panel of GNOME Flashback + https://download.gnome.org/sources/gnome-panel/3.44/gnome-panel-3.44.0.tar.xz + + itstool + gtk-doc + atk-devel + gtk3-devel + cairo-devel + dconf-devel + yelp-tools + glib2-devel + pango-devel + libX11-devel + gdm-devel + polkit-devel + elogind-devel + libical-devel + libsoup-devel + libxml2-devel + harfbuzz-devel + libwnck3-devel + libXrandr-devel + libsecret-devel + gdk-pixbuf-devel + gnome-menus-devel + libgweather4-devel + gnome-desktop-devel + evolution-data-server-devel + + desktop/gnome/apps/gnome-panel/pspec.xml + + + gnome-panel + + atk + gtk3 + cairo + dconf + glib2 + pango + libX11 + libgdm + polkit + elogind + libical + libsoup + libxml2 + harfbuzz + libwnck3 + libXrandr + libsecret + gdk-pixbuf + gnome-menus + libgweather4 + gnome-desktop + evolution-data-server + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/help + /usr/share/icons + /usr/share/glib-2.0 + /usr/share/gnome-panel + /usr/share/locale + /usr/share/man + /usr/share/doc - libsecret-devel - Development files for libsecret - libsecret için geliştirme dosyaları + gnome-panel-devel + Development files for gnome-panel - libsecret + gnome-panel + gtk3-devel glib2-devel - libgcrypt-devel /usr/include /usr/lib/pkgconfig + + gnome-panel-docs + Development files for gnome-panel + + gnome-panel + + + /usr/share/gtk-doc + + - - 2022-03-21 - 0.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-02 - 0.20.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 0.20.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 0.20.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-07-13 - 0.18.8 - version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-08-03 - 0.18.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-05-22 - 0.18.6 - Version Bump. + 2022-03-21 + 3.44.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-03-02 - 0.18.5 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.18 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - file-roller - http://fileroller.sourceforge.net - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.base - GNOME archive manager - GNOME arşiv yöneticisi - File-manager is a archive manager that create, modify and extract various archive formats with compression support - File-roller çeşitli arşiv dosyalarını sıkıştırma desteği ile oluşturan, açan, düzenleyen bir arşiv yönetim uygulamasıdır. - file-roller - mirrors://gnome/file-roller/3.42/file-roller-3.42.0.tar.xz - - zip - unzip - p7zip - unrar - meson - gtk3-devel - zstd-devel - gconf-devel - intltool - itstool - yelp-tools - squashfs-tools - libnotify-devel - libhandy-devel - nautilus-devel - json-glib-devel - libarchive-devel - appstream-glib-devel - - desktop/gnome/base/file-roller/pspec.xml - - - file-roller - - atk - gtk3 - file - glib2 - cairo - pango - gconf - libhandy - nautilus - json-glib - libnotify - gdk-pixbuf - libarchive - - - /usr/share/doc - /usr/bin - /usr/share/help - /usr/share/icons - /usr/share/GConf - /usr/share/metainfo - /usr/share/dbus-1 - /usr/share/pixmaps - /usr/lib/nautilus - /usr/share/file-roller - /usr/share/applications - /usr/share/locale - /usr/share/glib-2.0/schemas - /usr/libexec/file-roller - - - - - 2022-03-21 + 2021-10-24 3.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-05-24 - 3.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-05 - 3.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-08-01 - 3.32.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 3.26.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 3.26.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - 2017-03-30 - 3.10.2.1 - Release bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-09-07 - 3.10.2.1 - First Release - Ergün Salman - poyraz76@pisilinux.org - - - - - - gsettings-desktop-schemas - https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas - - Berk Çakar - berk2238@hotmail.com - - LGPLv2.1 - desktop.gnome - gsettings-desktop-schemas contains a collection of GSettings schemas for -settings shared by various components of a desktop. - GNOME masaüstü ortamı için GSettings şemalarının koleksiyonu - gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. - Gnome masaüstünün çeşitli bileşenleri tarafından paylaşılan ayarlar için GSettings şemalarının bir koleksiyonudur. - https://download.gnome.org/sources/gsettings-desktop-schemas/42/gsettings-desktop-schemas-42.0.tar.xz - - meson - glib2-devel - gobject-introspection-devel - - desktop/gnome/base/gsettings-desktop-schemas/pspec.xml - - - gsettings-desktop-schemas - gsettings-desktop-schemas contains a collection of GSettings schemas for -settings shared by various components of a desktop. - - /usr/lib/girepository-1.0 - /usr/share/GConf/ - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/glib-2.0/schemas - /usr/share/locale - - - - gsettings-desktop-schemas-devel - gsettings-desktop-schemas contains a collection of GSettings schemas for -settings shared by various components of a desktop. - gsettings-desktop-schemas için geliştirme dosyaları - - gsettings-desktop-schemas - - - /usr/include - /usr/share/pkgconfig/ - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-06 - 3.38.0 - Version bump. - Berk Çakar - berk2238@hotmail.com - - - 2020-01-31 - 3.34.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-23 - 3.34.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-13 - 3.33.1 - version bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-12-03 - 3.10.1 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - libhandy0 - https://source.puri.sm/Librem5/libhandy - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - desktop.gnome.base - Library full of GTK+ widgets for mobile phones - libhandy0 provides GTK+ widgets and GObjects to ease developing applications for mobile phones. - https://source.puri.sm/Librem5/libhandy/-/archive/v0.0.13/libhandy-v0.0.13.tar.bz2 - - gtk3-devel - glib2-devel - meson - vala-devel - gobject-introspection-devel - - desktop/gnome/base/libhandy0/pspec.xml - - - libhandy0 - Library full of GTK+ widgets for mobile phones - - gtk3 - glib2 - atk - cairo - pango - gdk-pixbuf - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/libhandy-0.0.so - /usr/lib/libhandy-0.0.so.0 - /usr/share/doc - - - - libhandy0-devel - Development files for libhandy0 - - libhandy0 - gtk3-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2021-07-26 - 0.0.13 + 2021-07-17 + 3.41.2 Rebuild Berk Çakar berk2238@hotmail.com - 2021-04-06 - 0.0.13 + 2021-05-31 + 3.41.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gnome-recipes + https://gitlab.gnome.org/GNOME/recipes + + Pisi Linux Admins + admins@pisilinux.org + + GPLv3 + app:gui + desktop.gnome.apps + Recipe management application for GNOME + GNOME Recipes is an easy-to-use application that will help you to discover what to cook today, tomorrow, rest of the week and for your special occasions. + https://download.gnome.org/sources/gnome-recipes/2.0/gnome-recipes-2.0.4.tar.xz + + gnome-online-accounts-devel + gnome-autoar-devel + gspell-devel + libsoup-devel + libcanberra-devel + librest-devel + json-glib-devel + itstool + meson + + desktop/gnome/apps/gnome-recipes/pspec.xml + + + gnome-recipes + + gtk3 + cairo + glib2 + pango + gspell + librest + libsoup + json-glib + gdk-pixbuf + libcanberra + gnome-online-accounts + + + /usr/bin + /usr/share/applications + /usr/share/appdata + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-recipes + /usr/share/gnome-shell + /usr/share/icons + /usr/share/help + /usr/share/locale + /usr/share/metainfo + /usr/share/mime + + + + + 2022-02-06 + 2.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 2.0.2 First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -7060,166 +6080,131 @@ settings shared by various components of a desktop. - gnome-backgrounds - https://gitlab.gnome.org/GNOME/gnome-backgrounds + gnome-screenshot + https://gitlab.gnome.org/GNOME/gnome-screenshot - Pisi Linux Admins - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv2 - desktop.gnome.base - Default wallpaper set for GNOME. - This module contains a set of backgrounds packaged with the GNOME desktop. - https://download.gnome.org/sources/gnome-backgrounds/42/gnome-backgrounds-42.0.tar.xz + app:gui + desktop.gnome.apps + A screenshot utility for GNOME + Gnome için ekran görüntüsü yakalma uygulaması + A screenshot utility for GNOME + Gnome için ekran görüntüsü yakalma uygulaması + gnome-screenshot + mirrors://gnome/gnome-screenshot/41/gnome-screenshot-41.0.tar.xz + gettext-devel + appstream-glib-devel meson + glib2-devel + gtk3-devel + libcanberra-gtk3-devel + libhandy-devel + libX11-devel + libXext - desktop/gnome/base/gnome-backgrounds/pspec.xml + desktop/gnome/apps/gnome-screenshot/pspec.xml - gnome-backgrounds + gnome-screenshot + + gtk3 + cairo + glib2 + libX11 + libXext + libhandy + gdk-pixbuf + - /usr/share/locale - /usr/share/doc - /usr/share/pixmaps - /usr/share/backgrounds - /usr/share/gnome-background-properties + /usr/bin + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo - - 2022-03-22 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-09-11 + 2021-11-14 41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-05-27 - 40.1 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com + 2021-06-14 + 40.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - gnome-settings-daemon - https://gitlab.gnome.org/GNOME/gnome-settings-daemon + gnome-system-monitor - Pisi Linux Admins - admin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv2 - desktop.gnome - The GNOME Settings Daemon is responsible for setting various parameters of a -GNOME Session and the applications that run under it. - The GNOME Settings Daemon is responsible for setting various parameters of a GNOME Session and the applications that run under it. - https://download.gnome.org/sources/gnome-settings-daemon/42/gnome-settings-daemon-42.2.tar.xz + app:gui + desktop.gnome.apps + Process and resource monitor + Sistem süreçleri ve kaynak izleyici + Process and resource monitor + Sistem süreçleri ve kaynak izleyici + gnome-system-monitor + mirrors://gnome/gnome-system-monitor/42/gnome-system-monitor-42.0.tar.xz - colord-devel - elogind-devel - fontconfig-devel - gcr-devel - geoclue-devel - geocode-glib-devel - gnome-desktop-devel - lcms2-devel - libcanberra-devel - libcanberra-gtk3-devel - libgweather4-devel - libnotify-devel + libgtop-devel + gtk3-devel + gtkmm3-devel + libhandy-devel librsvg-devel - libwacom-devel - pulseaudio - pulseaudio-libs-devel - upower-devel - xorg-input-wacom-devel - alsa-lib-devel - cups-devel - libmm-glib-devel - libseccomp-devel - nss-devel - libnma-devel + libxml2-devel + desktop-file-utils + gettext-devel + itstool meson - vala-devel - libXfixes-devel - desktop/gnome/base/gnome-settings-daemon/pspec.xml + desktop/gnome/apps/gnome-system-monitor/pspec.xml - gnome-settings-daemon - The GNOME Settings Daemon is responsible for setting various parameters of a -GNOME Session and the applications that run under it. + gnome-system-monitor - gcr - nss - cups - gcr - gtk3 - nspr cairo - lcms2 - glib2 - libXi - pango - colord - libX11 - upower - geoclue - polkit - libXext - alsa-lib - libgudev - libwacom - libnotify - fontconfig gdk-pixbuf - libmm-glib - libcanberra - geocode-glib - gnome-desktop - NetworkManager - wayland-client - pulseaudio-libs - libcanberra-gtk3 - libgweather4 + gtk3 + glib2 + glibmm + gtkmm3 + libgcc + libgtop + librsvg + libhandy + libsigc++ + pango - /etc - /lib - /usr/lib/gnome-settings-daemon-42 - /usr/libexec - /usr/share/GConf - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-settings-daemon - /usr/share/locale - /usr/share/polkit-1 - - - - gnome-settings-daemon-devel - - gnome-settings-daemon - - - /usr/include - /usr/lib/pkgconfig + /usr/bin + /usr/lib + /usr/share + /usr/share/locale - 2022-06-01 - 42.2 + 2022-03-21 + 42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -7232,534 +6217,332 @@ GNOME Session and the applications that run under it. muscnsl@gmail.com - 2021-08-17 - 40.0.1 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com + 2021-06-14 + 40.1 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - gnome-bluetooth3 - https://gitlab.gnome.org/GNOME/gnome-bluetooth + gnome-terminal + https://wiki.gnome.org/Apps/Terminal Pisi Linux Admins - admins@pisilinux.org + admin@pisilinux.org - GPLv2 - desktop.gnome.base - gnome-bluetooth is a fork of bluez-gnome focused on integration with GNOME. - gnome-bluetooth is collection of widgets for applications that want -to select Bluetooth devices. It is also used by GNOME session -components such as the Settings and gnome-shell. - gnome-bluetooth - https://download.gnome.org/sources/gnome-bluetooth/3.34/gnome-bluetooth-3.34.5.tar.xz + GPLv3 + library + desktop.gnome.apps + The GNOME Terminal Emulator + The GNOME Terminal Emulator + GNOME Terminal Emülatörü + GNOME Terminal Emülatörü + https://download.gnome.org/sources/gnome-terminal/3.44/gnome-terminal-3.44.1.tar.xz - intltool - itstool - gobject-introspection-devel - glib2-devel - gtk3-devel - libnotify-devel - dconf-devel - gvfs - bluez-libs-devel - eudev-devel - libcanberra-devel - libcanberra-gtk3-devel - libXi-devel meson + itstool + atk-devel + vte-devel + gtk3-devel + yelp-tools + cairo-devel + dconf-devel + glib2-devel + pango-devel + libX11-devel + libpcre2-devel + harfbuzz-devel + nautilus-devel + gdk-pixbuf-devel + gnome-shell + libutil-linux-devel + gsettings-desktop-schemas-devel - desktop/gnome/base/gnome-bluetooth3/pspec.xml + desktop/gnome/apps/gnome-terminal/pspec.xml - gnome-bluetooth3 + gnome-terminal atk + vte gtk3 - eudev + cairo + dconf glib2 - libnotify - libcanberra - libcanberra-gtk3 + pango + libX11 + harfbuzz + nautilus + gdk-pixbuf + libutil-linux /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/locale + /usr/lib + /usr/libexec /usr/share/applications - /usr/share/gnome-bluetooth - - - - gnome-bluetooth3-devel - Development files for gnome-bluetooth - development - - gnome-bluetooth - gtk3-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-06-03 - 3.34.5 - Duplicated for budgie desktop - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-05-28 - 3.34.5 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libgweather4 - https://gitlab.gnome.org/GNOME/libgweather - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - programming.misc - libgweather is a library to access weather information from online -services for numerous locations. - libgweather is a library to access weather information from online services for numerous locations. - https://download.gnome.org/sources/libgweather/4.0/libgweather-4.0.0.tar.xz - - geocode-glib-devel - gtk3-devel - libsoup-devel - glib2-devel - intltool - python3-pygobject3-devel - glade-devel - gtk-doc - gobject-introspection-devel - meson - gi-docgen - vala-devel - - desktop/gnome/base/libgweather4/pspec.xml - - - libgweather4 - libgweather is a library to access weather information from online -services for numerous locations. - - geocode-glib - gtk3 - libsoup - libxml2 - glib2 - - - /etc/gconf - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/libgweather-4 - /usr/share/glib-2.0 - /usr/share/vala + /usr/share/dbus-1 /usr/share/icons - /usr/share/glade - - - - libgweather4-devel - - libgweather4 - gtk3-devel - glib2-devel - libsoup-devel - libxml2-devel - geocode-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-03-21 - 4.0.0 - First release for Pisi Linux - Mustafa Cinasal - muscnsl@gmail.com - - - - - - libwacom - http://sourceforge.net/projects/linuxwacom/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.base - This project manages the libraries, configuration, and diagnostic tools for Wacom tablets running under Linux. - This project manages the libraries, configuration, and diagnostic tools for Wacom tablets running under Linux. It also maintains updated Linux kernel drivers and Xorg/XFree86 XInput drivers. - https://github.com/linuxwacom/libwacom/releases/download/libwacom-1.12/libwacom-1.12.tar.bz2 - - glib2-devel - python3-devel - libgudev-devel - eudev-devel - - desktop/gnome/base/libwacom/pspec.xml - - - libwacom - - glib2 - libgudev - - - /usr/share - /lib/udev - /usr/lib - /usr/bin - - - - libwacom-devel - Development files for libwacom - libwacom için geliştirme dosyaları - - glib2-devel - libwacom - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-04 - 1.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 1.10 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-13 - 0.33 - Version Bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-07-31 - 0.27 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 0.27 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-13 - 0.23 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-08 - 0.18 - First Release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libgweather - https://gitlab.gnome.org/GNOME/libgweather - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - programming.misc - libgweather is a library to access weather information from online -services for numerous locations. - libgweather is a library to access weather information from online services for numerous locations. - https://download.gnome.org/sources/libgweather/40/libgweather-40.0.tar.xz - - geocode-glib-devel - gtk3-devel - libsoup-devel - glib2-devel - intltool - python3-pygobject3-devel - glade-devel - gtk-doc - gobject-introspection-devel - meson - vala-devel - - desktop/gnome/base/libgweather/pspec.xml - - - libgweather - libgweather is a library to access weather information from online -services for numerous locations. - - geocode-glib - gtk3 - libsoup - libxml2 - glib2 - - - /etc/gconf - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/libgweather /usr/share/glib-2.0 - /usr/share/vala - /usr/share/icons - /usr/share/glade - - - - libgweather-devel - - libgweather - gtk3-devel - glib2-devel - libsoup-devel - libxml2-devel - geocode-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-03-22 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-23 - 40.0 - Version bump. - Berk Çakar - berk2238@hotmail.com - - - 2021-04-06 - 3.36.2 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-video-effects - https://gitlab.gnome.org/GNOME/gnome-video-effects - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - Collection of GStreamer effects for GNOME - The GNOME Video Effects package contains a collection of GStreamer effects. - https://download.gnome.org/sources/gnome-video-effects/0.5/gnome-video-effects-0.5.0.tar.xz - - intltool - gettext-devel - meson - - desktop/gnome/base/gnome-video-effects/pspec.xml - - - gnome-video-effects - - gst-plugins-good - gst-plugins-bad - frei0r-plugins - - - /usr/share/gnome-video-effects - /usr/share/doc - - - - gnome-video-effects-devel - - gnome-video-effects - - - /usr/share/pkgconfig - - - - - 2021-05-28 - 0.5.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - yelp-xsl - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - data - desktop.gnome.base - Yelp XSLT Stylesheets - Yelp XSL biçim dosyaları - Package of yelp-xsl contains XSL stylesheets that are used by the yelp help browser. - yelp-xsl paketi, yelp yardım görüntüleyicisi tarafından kullanılan XSL biçim dosyalarını taşır. - mirrors://gnome/yelp-xsl/42/yelp-xsl-42.0.tar.xz - - libxml2-devel - itstool - - desktop/gnome/base/yelp-xsl/pspec.xml - - - yelp-xsl - + /usr/share/gnome-shell /usr/share/locale + /usr/share/help + /usr/share/metainfo /usr/share/doc - /usr/share/yelp-xsl - - - - yelp-xsl-devel - Development files for yelp-xsl - yelp-xsl paketi için geliştirme dosyaları - - yelp-xsl - - - /usr/share/pkgconfig + /usr/share/man - 2022-03-21 - 42.0 + 2022-05-28 + 3.44.1 Version bump. Mustafa Cinasal muscnsl@gmail.com 2021-12-05 - 41.1 + 3.42.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-18 - 41.0 + 2021-10-31 + 3.42.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-14 - 40.2 + 2021-09-22 + 3.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-05-24 - 40.0 + 2021-07-10 + 3.40.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-03-01 - 3.38.3 + 2021-06-14 + 3.40.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-13 - 3.34.2 + 2021-06-02 + 3.40.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gnome-text-editor + https://gitlab.gnome.org/GNOME/gnome-text-editor + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + desktop.gnome.apps + Text Editor is a simple text editor that focus on session management. + Text Editor is a simple text editor that focus on session management. + Metin Düzenleyici, oturum yönetimine odaklanan basit bir metin düzenleyicidir. + Metin Düzenleyici, oturum yönetimine odaklanan basit bir metin düzenleyicidir. + https://download.gnome.org/sources/gnome-text-editor/42/gnome-text-editor-42.1.tar.xz + + meson + itstool + gtk4-devel + glib2-devel + icu4c-devel + pango-devel + libpcre-devel + enchant2-devel + libadwaita-devel + desktop-file-utils + gtksourceview5-devel + appstream-glib-devel + + desktop/gnome/apps/gnome-text-editor/pspec.xml + + + gnome-text-editor + + gtk4 + glib2 + icu4c + pango + libpcre + enchant2 + libadwaita + gtksourceview5 + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2022-04-22 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-07 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-30 + 41.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gnome-todo + https://git.gnome.org/browse/gnome-todo + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Personal task manager for GNOME + Gnome için kişisel görev yöneticisi + Personal task manager for GNOME + Gnome için kişisel görev yöneticisi + gnome-todo + https://gitlab.gnome.org/GNOME/gnome-todo/-/archive/ac1d540de63e2540b4eb8a642054862b5793b40a/gnome-todo-ac1d540de63e2540b4eb8a642054862b5793b40a.tar.bz2 + + git + meson + itstool + gtk-doc + gtk4-devel + glib2-devel + fribidi-devel + libsass-devel + librest-devel + gettext-devel + libpeas-devel + graphene-devel + libportal-devel + appstream-devel + json-glib-devel + gdk-pixbuf-devel + libadwaita-devel + icon-theme-adwaita + python-pygobject3-devel + gnome-online-accounts-devel + gnome-themes-extra-community + evolution-data-server-devel + + desktop/gnome/apps/gnome-todo/pspec.xml + + + gnome-todo + + gtk4 + glib2 + cairo + pango + fribidi + libical + libpeas + librest + libsass + graphene + json-glib + libportal + gdk-pixbuf + libadwaita + icon-theme-adwaita + evolution-data-server + gnome-online-accounts + gobject-introspection + gnome-themes-extra-community + + + /usr/bin + /usr/lib/gnome-todo + /usr/lib/girepository-1.0 + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-todo + /usr/share/icons + /usr/share/help + /usr/share/locale + /usr/share/metainfo + /usr/share/vala/vapi + /usr/lib/libadwaita-1.so* + + + + gnome-todo-devel + gnome-todo için geliştirme dosyaları + + gtk4-devel + gnome-todo + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-05-30 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-21 + 41.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 3.28.1 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -7768,53 +6551,1734 @@ services for numerous locations. - gnome-online-miners - https://gitlab.gnome.org/GNOME/gnome-online-miners + gnome-weather + https://gitlab.gnome.org/GNOME/gnome-weather + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Access current weather conditions and forecasts for GNOME + A small application that allows you to monitor the current weather conditions for your city, or anywhere in the world. + https://download.gnome.org/sources/gnome-weather/42/gnome-weather-42.0.tar.xz + + glib2-devel + gjs-devel + gtk4-devel + libgweather4-devel + libadwaita-devel + geoclue-devel + libhandy-devel + meson + desktop-file-utils + appstream-glib-devel + + desktop/gnome/apps/gnome-weather/pspec.xml + + + gnome-weather + + gjs + + + /usr/bin + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/org.gnome.Weather + /usr/share/gnome-shell + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 40.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnote + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Note-taking application + Not alma uygulaması + Note-taking application + Not alma uygulaması + gnote + mirrors://gnome/gnote/42/gnote-42.0.tar.xz + + meson + boost-devel + desktop-file-utils + gettext-devel + gspell-devel + gtkmm3-devel + gtk2-devel + intltool + itstool + libsecret-devel + libxml2-devel + libxslt-devel + libpcre-devel + + desktop/gnome/apps/gnote/pspec.xml + + + gnote + + atk + gtk3 + atkmm + cairo + glib2 + pango + glibmm + gspell + gtkmm3 + libgcc + cairomm + libxml2 + libxslt + pangomm + enchant2 + harfbuzz + libsecret + libsigc++ + gdk-pixbuf + libutil-linux + + + /usr/bin + /usr/lib/libgnote* + /usr/lib/gnote + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/gnote + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo + + + + + 2022-03-28 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-09 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-31 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-26 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-18 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gssdp + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Resource discovery and announcement over SSDP + SSDP üzerinden kaynak keşfi ve duyuru + Resource discovery and announcement over SSDP + SSDP üzerinden kaynak keşfi ve duyuru + gssdp + mirrors://gnome/gssdp/1.4/gssdp-1.4.0.1.tar.xz + + glib2-devel + gobject-introspection-devel + gtk3-devel + gtk4-devel + gtk-doc + libsoup-devel + meson + vala-devel + gi-docgen + + desktop/gnome/apps/gssdp/pspec.xml + + + gssdp + + gtk4 + glib2 + libsoup + + + /usr/bin + /usr/lib/libgssdp* + /usr/lib/girepository-1.0 + /usr/share/doc + /usr/share/vala + + + + gssdp-devel + gssdp için geliştirme dosyaları + + gssdp + glib2-devel + libsoup-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-05-30 + 1.4.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 1.4.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-14 + 1.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 1.2.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gupnp + http://www.gupnp.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + A framework for creating UPnP devices and control points + UPnP cihazları ve kontrol noktaları oluşturmak için bir çerçeve + A framework for creating UPnP devices and control points + UPnP cihazları ve kontrol noktaları oluşturmak için bir çerçeve + gupnp + mirrors://gnome/gupnp/1.4/gupnp-1.4.3.tar.xz + + meson + gtk-doc + vala-devel + gssdp-devel + libsoup-devel + libxml2-devel + gobject-introspection-devel + + desktop/gnome/apps/gupnp/pspec.xml + + + gupnp + + glib2 + gssdp + libsoup + libxml2 + libutil-linux + + + /usr/bin + /usr/lib/libgupnp* + /usr/lib/girepository-1.0 + /usr/share/doc + /usr/share/man + /usr/share/vala + + + + gupnp-devel + gupnp için geliştirme dosyaları + + gupnp + glib2-devel + gssdp-devel + libsoup-devel + libxml2-devel + libutil-linux-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-05-30 + 1.4.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-14 + 1.4.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-08 + 1.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-07 + 1.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-14 + 1.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 1.2.7 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gupnp-av + http://www.gupnp.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + A collection of helpers for building UPnP AV applications + UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu + A collection of helpers for building UPnP AV applications + UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu + gupnp-av + mirrors://gnome/gupnp-av/0.14/gupnp-av-0.14.1.tar.xz + + meson + glib2-devel + gtk-doc + gobject-introspection-devel + libxml2-devel + libsoup-devel + vala-devel + + desktop/gnome/apps/gupnp-av/pspec.xml + + + gupnp-av + + glib2 + libxml2 + + + /usr/bin + /usr/lib/libgupnp* + /usr/lib/girepository-1.0 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/gupnp-av + /usr/share/vala + + + + gupnp-av-devel + gupnp-av için geliştirme dosyaları + + gupnp-av + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-06-03 + 0.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-22 + 0.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 0.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 0.12.11 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gupnp-dlna + http://www.gupnp.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + A collection of helpers for building UPnP AV applications + UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu + A collection of helpers for building UPnP AV applications + UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu + gupnp-dlna + mirrors://gnome/gupnp-dlna/0.12/gupnp-dlna-0.12.0.tar.xz + + meson + glib2-devel + gobject-introspection-devel + gssdp-devel + gstreamer-devel + gst-plugins-base-devel + gupnp-devel + gupnp-av-devel + libxml2-devel + gtk-doc + vala-devel + + desktop/gnome/apps/gupnp-dlna/pspec.xml + + + gupnp-dlna + + glib2 + libxml2 + gstreamer + gst-plugins-base + + + /usr/bin + /usr/lib/libgupnp-dlna* + /usr/lib/girepository-1.0 + /usr/lib/gupnp-dlna + /usr/share/doc + /usr/share/gtk-doc + /usr/share/gupnp-dlna-2.0 + /usr/share/vala + + + + gupnp-dlna-devel + gupnp-dlna için geliştirme dosyaları + + gupnp-dlna + glib2-devel + gstreamer-devel + gst-plugins-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-09-18 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 0.10.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lollypop + https://gitlab.gnome.org/World/lollypop + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + desktop.gnome.apps + Music player for GNOME + Music player for GNOME + GNOME için müzik çalar + GNOME için müzik çalar + https://adishatz.org/lollypop/lollypop-1.4.22.tar.xz + + meson + itstool + intltool + gtk3-devel + dbus-python3 + libsoup-devel + libhandy-devel + python3-devel + desktop-file-utils + appstream-glib-devel + python3-pygobject3-devel + gobject-introspection-devel + + desktop/gnome/apps/lollypop/pspec.xml + + + lollypop + + gtk3 + pango + libnotify + libhandy + libsoup + gdk-pixbuf + dbus-python3 + python3-cairo + python3-pillow + appstream-glib + gst-plugins-base + gst-plugins-good + python3-pygobject3 + gobject-introspection + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share/applications + /usr/share/dbus-1 + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/icons + /usr/share/lollypop + /usr/share/metainfo + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-10-24 + 1.4.22 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-19 + 1.4.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.4.20 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + nautilus-python + https://wiki.gnome.org/Projects/NautilusPython Pisi Linux Admins admin@pisilinux.org GPLv2 - desktop.gnome.base - GNOME Online Miners - crawls through your online content - GNOME Online Miners provides a set of crawlers that go through your online content and index them locally in Tracker - https://download.gnome.org/sources/gnome-online-miners/3.34/gnome-online-miners-3.34.0.tar.xz + app + desktop.gnome.apps + Python bindings for the Nautilus Extension API + Python bindings for the Nautilus Extension API + Python bindings for the Nautilus Extension API + Python bindings for the Nautilus Extension API + https://download.gnome.org/sources/nautilus-python/1.2/nautilus-python-1.2.3.tar.xz - intltool - libxslt-devel - docbook-xsl + gtk-doc + yelp-tools + gtk3-devel glib2-devel - libgdata-devel - grilo-devel - tracker-devel - libgfbgraph-devel - gnome-online-accounts-devel - autoconf-archive + python3-devel + nautilus-devel + python3-pygobject3-devel - tracker3-support.patch + gcc10.patch - desktop/gnome/base/gnome-online-miners/pspec.xml + desktop/gnome/apps/nautilus-python/pspec.xml - gnome-online-miners + nautilus-python + gtk3 glib2 + python3 + nautilus /usr/lib - /usr/share/dbus-1 /usr/share/doc - /usr/libexec + /usr/share/gtk-doc + + + + nautilus-python-devel + Development files for nautilus-python + + nautilus-python + + + /usr/lib/pkgconfig + + 2021-09-17 + 1.2.3 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + - 2021-06-06 - 3.34.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com + 2021-06-21 + 1.2.3 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + polari + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Internet Relay Chat client for GNOME + GNOME için İnternet Aktarmalı Sohbet istemcisi + Internet Relay Chat client for GNOME + GNOME için İnternet Aktarmalı Sohbet istemcisi + polari + mirrors://gnome/polari/42/polari-42.0.tar.xz + + appstream-glib-devel + meson + gtk4-devel + gjs-devel + gobject-introspection-devel + telepathy-glib-devel + glib2-devel + desktop-file-utils + itstool + yelp-tools + gettext-devel + + desktop/gnome/apps/polari/pspec.xml + + + polari + + gjs + gtk4 + glib2 + telepathy-glib + telepathy-logger + telepathy-mission-control + gobject-introspection + + + /usr/bin + /usr/lib/polari + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/metainfo + /usr/share/polari + /usr/share/telepathy + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-12 + 40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 3.38.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + rygel + https://wiki.gnome.org/Projects/Rygel + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + A collection of UPnP/DLNA services + UPnP/DLNA hizmetleri koleksiyonu + A collection of UPnP/DLNA services + UPnP/DLNA hizmetleri koleksiyonu + rygel + mirrors://gnome/rygel/0.40/rygel-0.40.4.tar.xz + + desktop-file-utils + dbus-glib-devel + docbook-xsl + gettext-devel + gobject-introspection-devel + gstreamer-devel + gst-editing-services-devel + gtk-doc + gtk3-devel + gupnp-devel + libgee-devel + libmediaart-devel + libsoup-devel + libunistring-devel + meson + sqlite-devel + tracker-devel + tracker-miners + vala-devel + gupnp-av-devel + gupnp-dlna-devel + + desktop/gnome/apps/rygel/pspec.xml + + + rygel + + gtk3 + glib2 + gssdp + gupnp + libgee + sqlite + libsoup + libxml2 + tracker + gupnp-av + gstreamer + gupnp-dlna + libmediaart + libunistring + gst-plugins-base + gst-editing-services + + + /usr/bin + /usr/libexec + /etc/rygel.conf + /usr/lib + /usr/share + /usr/share/locale + + + + rygel-devel + rygel için geliştirme dosyaları + + rygel + libgee-devel + gupnp-av-devel + gstreamer-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-06-03 + 0.40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-22 + 0.40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-13 + 0.40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-09 + 0.40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 0.40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-22 + 0.40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + simple-scan + https://launchpad.net/simple-scan + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Simple scanning utility + Basit tarayıcı (scanning) uygulması + Simple scanning utility + Basit tarayıcı (scanning) uygulması + simple-scan + mirrors://gnome/simple-scan/42/simple-scan-42.1.tar.xz + + meson + sane-backends-devel + gettext-devel + itstool + appstream-glib-devel + desktop-file-utils + vala-devel + colord-devel + colord-gtk-devel + gobject-introspection-devel + gtk3-devel + libhandy-devel + zlib-devel + libgudev-devel + webp-devel + + + 40.0-add-control-optional-deps.patch + + desktop/gnome/apps/simple-scan/pspec.xml + + + simple-scan + + gtk3 + zlib + cairo + glib2 + libgusb + libhandy + gdk-pixbuf + sane-backends + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + + + + + 2022-04-19 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-24 + 40.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-31 + 40.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-23 + 40.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 40.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + sysprof + https://wiki.gnome.org/Apps/Sysprof + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + desktop.gnome.apps + Kernel based performance profiler + Kernel based performance profiler + Çekirdek tabanlı performans profili oluşturucu + Çekirdek tabanlı performans profili oluşturucu + https://download.gnome.org/sources/sysprof/3.44/sysprof-3.44.0.tar.xz + + meson + itstool + gtk3-devel + yelp-tools + glib2-devel + polkit-devel + elogind-devel + libunwind-devel + libdazzle-devel + json-glib-devel + + desktop/gnome/apps/sysprof/pspec.xml + + + sysprof + + gtk3 + cairo + glib2 + pango + polkit + libgcc + libunwind + libdazzle + json-glib + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share + /usr/share/locale + /usr/share/metainfo + /usr/share/doc + + + + sysprof-devel + Development files for sysprof + + sysprof + gtk3-devel + glib2-devel + polkit-devel + libdazzle-devel + json-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-03-21 + 3.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-04 + 3.42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-22 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-08 + 3.40.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + totem + https://wiki.gnome.org/Apps/Videos + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.apps + Movie player for GNOME + GNOME için film oynatıcı + Movie player for GNOME + GNOME için film oynatıcı + totem + mirrors://gnome/totem/42/totem-42.0.tar.xz + + cairo-devel + clutter-devel + clutter-gst-devel + clutter-gtk-devel + gnome-desktop-devel + gsettings-desktop-schemas-devel + gstreamer-devel + gst-plugins-base-devel + gtk3-devel + libpeas-devel + totem-pl-parser-devel + gst-plugins-good + gettext-devel + gtk-doc + itstool + python3-devel + meson + vala + appstream-glib-devel + grilo-devel + grilo-plugins-devel + desktop-file-utils + python3-pylint + python3-pygobject3-devel + libhandy-devel + + + 3.38.0-gst-inspect-sandbox.patch + + desktop/gnome/apps/totem/pspec.xml + + + totem + + atk + cogl + gtk3 + cairo + glib2 + grilo + pango + libX11 + clutter + libpeas + libhandy + gstreamer + gdk-pixbuf + clutter-gst + clutter-gtk + gnome-desktop + totem-pl-parser + gst-plugins-base + gobject-introspection + + + /usr/bin + /usr/lib/totem-gallery-thumbnailer + /usr/lib/libtotem* + /usr/lib/girepository-1.0 + /usr/lib/totem + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/GConf + /usr/share/glib-2.0 + /usr/share/gtk-doc + /usr/share/help + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/thumbnailers + /usr/share/totem + + + + totem-devel + totem için geliştirme dosyaları + + totem + gtk3-devel + glib2-devel + totem-pl-parser-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 3.38.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-21 + 3.38.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 3.38.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gnome-desktop + https://gitlab.gnome.org/GNOME/gnome-desktop + + PisiLinux Community + admins@pisilinux.org + + GPL + library + desktop.gnome.base + Library with common API for various GNOME modules + Library with common API for various GNOME modules + Library with common API for various GNOME modules + Library with common API for various GNOME modules + https://download.gnome.org/sources/gnome-desktop/42/gnome-desktop-42.2.tar.xz + + meson + itstool + gtk-doc + docbook-xsl + gtk3-devel + gtk4-devel + bubblewrap + eudev-devel + glib2-devel + libX11-devel + iso-codes-devel + libxkbfile-devel + gdk-pixbuf-devel + xkeyboard-config + fontconfig-devel + libseccomp-devel + libxkbcommon-devel + gobject-introspection-devel + gsettings-desktop-schemas-devel + + desktop/gnome/base/gnome-desktop/pspec.xml + + + gnome-desktop + + gtk3 + gtk4 + cairo + eudev + dbus + glib2 + libX11 + iso-codes + gdk-pixbuf + libseccomp + libxkbcommon + xkeyboard-config + gsettings-desktop-schemas + + + /usr/lib + /usr/libexec + /usr/share + /usr/share/locale + /usr/share/doc + + + + gnome-desktop-devel + Development files for gnome-desktop + + gnome-desktop + dbus-devel + gtk3-devel + gtk4-devel + iso-codes-devel + eudev-devel + glib2-devel + gdk-pixbuf-devel + libseccomp-devel + libxkbcommon-devel + gsettings-desktop-schemas-devel + + + /usr/include + /usr/lib/pkgconfig + + + + gnome-desktop-docs + Development files for gnome-desktop + + gnome-desktop + + + /usr/share/gtk-doc + + + + + 2022-06-02 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-27 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-11 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-07 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-02 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-20 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-18 + 40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-12 + 3.34.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + accountsservice + http://www.freedesktop.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv3 + library + desktop.gnome.base + D-Bus Service to Manipulate User Account Information + accountsservice server provides a set of D-Bus interfaces for querying and manipulating user account information. + https://www.freedesktop.org/software/accountsservice/accountsservice-0.6.55.tar.xz + + meson + xmlto + intltool + gtk-doc + python-six + dbus-devel + glib2-devel + polkit-devel + docbook-xsl + libxslt-devel + gobject-introspection-devel + + desktop/gnome/base/accountsservice/pspec.xml + + + accountsservice + + polkit + shadow + glib2 + + + /usr/libexec + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/polkit-1 + /usr/share/vala/vapi + /etc/dbus-1/system.d + /usr/share/locale + /var/lib/AccountsService/ + + + + accountsservice-docs + accountsservice reference documents + data:doc + + accountsservice + + + /usr/share/gtk-doc + + + + accountsservice-devel + accountsservice için geliştirme dosyaları + accountsservice için geliştirme dosyaları + + accountsservice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-04-26 + 0.6.55 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 0.6.55 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-13 + 0.6.55 + Version Bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-08-13 + 0.6.50 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 0.6.45 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 0.6.43 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.6.40 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-11 + 0.6.40 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + dconf + http://live.gnome.org/dconf + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:console + desktop.gnome.base + Simple low-level configuration system + Düşük seviyeli yapılandırma sistemi + dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. + FIXME + http://ftp.acc.umu.se/pub/gnome/sources/dconf/0.40/dconf-0.40.0.tar.xz + + meson + ninja + vala-devel + dbus-devel + glib2-devel + docbook-xsl + libxslt + intltool + gtk-doc + bash-completion + + desktop/gnome/base/dconf/pspec.xml + + + dconf + + dbus + glib2 + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/libexec + + + + dconf-devel + Development files for dconf + + dconf + dbus-devel + glib2-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + + + + dconf-docs + Reference files for dconf + data:doc + + dconf + + + /usr/share/gtk-doc + + + + + 2021-05-24 + 0.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 0.35.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 0.34.0 + Version bump + Erkn IŞIK + erkanisik@pisilinux.org + + + 2019-07-13 + 0.32.0 + Rebuild + Erkn IŞIK + erkanisik@pisilinux.org + + + 2018-07-31 + 0.27.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 0.27.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-01 + 0.26.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.24.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-12 + 0.24.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com @@ -7998,50 +8462,423 @@ services for numerous locations. - gnome-menus - https://gitlab.gnome.org/GNOME/gnome-menus + file-roller + http://fileroller.sourceforge.net - Pisi Linux Admins - admin@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - LGPLv3 - app + GPLv2 + app:gui desktop.gnome.base - GNOME menu specifications - GNOME menu specifications - GNOME menu specifications - GNOME menu specifications - https://gitlab.gnome.org/GNOME/gnome-menus/-/archive/3.36.0/gnome-menus-3.36.0.tar.gz + GNOME archive manager + GNOME arşiv yöneticisi + File-manager is a archive manager that create, modify and extract various archive formats with compression support + File-roller çeşitli arşiv dosyalarını sıkıştırma desteği ile oluşturan, açan, düzenleyen bir arşiv yönetim uygulamasıdır. + file-roller + mirrors://gnome/file-roller/3.42/file-roller-3.42.0.tar.xz + zip + unzip + p7zip + unrar + meson + gtk3-devel + zstd-devel + gconf-devel intltool - glib2-devel - gnome-common - python3-devel - gobject-introspection-devel + itstool + yelp-tools + squashfs-tools + libnotify-devel + libhandy-devel + nautilus-devel + json-glib-devel + libarchive-devel + appstream-glib-devel - desktop/gnome/base/gnome-menus/pspec.xml + desktop/gnome/base/file-roller/pspec.xml - gnome-menus + file-roller + + atk + gtk3 + file + glib2 + cairo + pango + gconf + libhandy + nautilus + json-glib + libnotify + gdk-pixbuf + libarchive + + + /usr/share/doc + /usr/bin + /usr/share/help + /usr/share/icons + /usr/share/GConf + /usr/share/metainfo + /usr/share/dbus-1 + /usr/share/pixmaps + /usr/lib/nautilus + /usr/share/file-roller + /usr/share/applications + /usr/share/locale + /usr/share/glib-2.0/schemas + /usr/libexec/file-roller + + + + + 2022-03-21 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 3.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-05 + 3.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-08-01 + 3.32.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 3.26.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 3.26.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-30 + 3.10.2.1 + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-09-07 + 3.10.2.1 + First Release + Ergün Salman + poyraz76@pisilinux.org + + + + + + folks + https://wiki.gnome.org/Projects/Folks + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + desktop.gnome.base + Library to aggregates people into metacontacts + Library to aggregates people into metacontacts + https://download.gnome.org/sources/folks/0.15/folks-0.15.5.tar.xz + + evolution-data-server-devel + readline-devel + glib2-devel + intltool + libgee-devel + libxml2-devel + telepathy-glib-devel + readline-devel + meson + python3-dbusmock + gobject-introspection-devel + vala-devel + + desktop/gnome/base/folks/pspec.xml + + + folks + Library to aggregates people into metacontacts + + evolution-data-server + libgee + libxml2 + telepathy-glib + glib2 + readline + + + /usr/bin + /usr/lib/folks + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/share/GConf + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/locale + + + + folks-devel + Development files for folks + + folks + evolution-data-server-devel + libgee-devel + telepathy-glib-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2022-03-23 + 0.15.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-18 + 0.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-19 + 0.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-21 + 0.14.0 + First release. + Berk Çakar + berk2238@hotmail.com + + + + + + gamin + http://www.gnome.org/~veillard/gamin/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.gnome.base + File alteration monitor library + Dosya değişim izleme kitaplığı + Gamin is a file and directory monitoring system defined to be a subset of the FAM (File Alteration Monitor) system. This is a serviceprovided by a library which allows to detect when a file or a directory has been modified. + Gamin bir dosya ve klasör izleme kitaplığıdır. FAM (Dosya değişim izleyicisi) sisteminin bir alt kolu olarak tanımlanmaktadır. Bir dosyanın veya bir klasörün değiştiğini anlamamıza yarayan bir kitaplığıdır. + mirrors://gnome/gamin/0.1/gamin-0.1.10.tar.bz2 + + glib2-devel + + + 18_gam_server_deadlocks.patch + explicitly-link-with-python.patch + fix-deprecated-const-01.patch + fix-deprecated-const-02.patch + fix-deprecated-const-03.patch + fix-deprecated-const-04.patch + + desktop/gnome/base/gamin/pspec.xml + + + gamin + File alteration monitor library glib2 - /etc + /usr/libexec /usr/lib - /usr/share - /usr/share/gir-1.0 - /usr/share/desktop-directories - /usr/share/locale /usr/share/doc - gnome-menus-devel - Development files for gnome-menus + gamin-devel + Development files for gamin + gamin için geliştirme dosyaları + gamin-devel, gamin için geliştirme dosyalarını içerir. - gnome-menus + gamin + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-02-26 + 0.1.10 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2016-02-25 + 0.1.10 + Rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2014-05-22 + 0.1.10 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-01-25 + 0.1.10 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-10-02 + 0.1.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gconf + https://developer.gnome.org/gconf/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.base + Gnome Configuration System + Gnome Konfigürasyon Sistemi + gconf is a Gnome Configuration System. + gconf, Gnome Konfigürasyon Sistemidir. + mirrors://gnome/GConf/3.2/GConf-3.2.6.tar.xz + glib2-devel + gtk-doc + gettext-devel + gobject-introspection-devel + libxml2-devel + dbus-devel + dbus-glib-devel + polkit-devel + openldap-client + gtk3-devel + intltool + python-lxml + python-six + + + 01_xml-gettext-domain.patch + gconf-reload.patch + gconf-3.2.6-gsettings-data-convert-paths.patch + gconf-3.2.6-mconvert-crasher.patch + gconf-3.2.6-spew-console-error.patch + + desktop/gnome/base/gconf/pspec.xml + + + gconf + + dbus + glib2 + polkit + libxml2 + dbus-glib + openldap-client + + + /etc/dbus-1/system.d + /etc/gconf + /etc/xdg/autostart + /usr/bin + /usr/lib/libgconf* + /usr/lib/GConf + /usr/lib/gio + /usr/lib/girepository-1.0 + /usr/share/dbus-1 + /usr/share/doc + /usr/share/GConf + /usr/share/aclocal + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/man + /usr/share/polkit-1/actions + /usr/share/sgml/gconf + + + System.PackageHandler + + + gconf2.path + + + + gconf-docs + GConf reference documents + data:doc + + gconf + + + /usr/share/gtk-doc + + + + gconf-devel + Development files for gconf + gconf için geliştirme dosyaları + + gconf + glib2-devel + dbus-devel + python-lxml /usr/include @@ -8049,12 +8886,909 @@ services for numerous locations. + + 2020-01-13 + 3.2.6 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2018-09-16 + 3.2.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-01 + 3.2.6 + Rebuild for new toolchain. + Alihan Öztürk + alihan@pisilinux.org + - 2021-03-28 - 3.36.0 + 2016-05-05 + 3.2.6 First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + gcr + https://gitlab.gnome.org/GNOME/gcr + + Osman Erkan + osman.erkan@pisilinux.org + + LGPLv2 + library + desktop.gnome.base + The Gcr package contains libraries used for displaying certificates and accessing key stores. + The Gcr package contains libraries used for displaying certificates and accessing key stores. It also provides the viewer for crypto files on the GNOME Desktop. + https://download.gnome.org/sources/gcr/3.41/gcr-3.41.0.tar.xz + + meson + gnupg + intltool + gtk-doc + gtk3-devel + vala-devel + glib2-devel + libxslt-devel + p11-kit-devel + python-six + openssh + libsecret-devel + libgcrypt-devel + gobject-introspection-devel + + desktop/gnome/base/gcr/pspec.xml + + + gcr + + gtk3 + cairo + glib2 + pango + p11-kit + openssh + libsecret + libgcrypt + gdk-pixbuf + gobject-introspection + + + /etc + /usr/bin + /usr/lib/libgcr* + /usr/lib/libgck* + /usr/lib/girepository-1.0 + /usr/libexec + /usr/share/applications + /usr/share/dbus-1 + /usr/share/doc + /usr/share/GConf + /usr/share/gcr-3 + /usr/share/gir-1.0 + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/locale + /usr/share/mime + /usr/share/vala + + + 10-gcr.conf + + + + gcr-devel + Development files for gcr + gcr için geliştirme dosyaları + + glib2-devel + gtk3-devel + p11-kit-devel + gobject-introspection-devel + gcr + + + /usr/include + /usr/lib/pkgconfig + + + + gcr-docs + gcr reference documents + data:doc + + gcr + + + /usr/share/gtk-doc + + + + + 2021-09-30 + 3.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 3.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-07 + 3.28.1 + Rebuild. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-07-13 + 3.28.1 + Version bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-09-16 + 3.28.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-21 + 3.28.0 + Release bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-30 + 3.20.0 + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-05-17 + 3.20.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gdm + https://gitlab.gnome.org/GNOME/gdm + Pisi Linux Admins - admin@pisilinux.org + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + GNOME Graphical Display Manager + GNOME ekran yöneticisi + A graphical login manager for your desktop, integrated within the GNOME desktop environment + GDM, yerel veya uzak makinelerde farklı oturumlar açmayı sağlar. + https://download.gnome.org/sources/gdm/42/gdm-42.0.tar.xz + + dconf-devel + gettext-devel + itstool + accountsservice-devel + elogind-devel + glib2-devel + gtk3-devel + iso-codes-devel + libSM-devel + libcanberra-devel + libcanberra-gtk3-devel + nss-devel + pam-devel + audit-devel + upower-devel + libdaemon-devel + gobject-introspection-devel + meson + + + 0000-Force-Xorg-use-on-the-login-screen.patch + 0002-Xsession-Don-t-start-ssh-agent-by-default.patch + 0003-enable-elogind-build.patch + + desktop/gnome/base/gdm/pspec.xml + + + gdm + + pam + gtk3 + glib2 + libX11 + libXau + libxcb + elogind + libXdmcp + gdk-pixbuf + libcanberra + accountsservice + libcanberra-gtk3 + audit + keyutils + libgudev + libgdm + + + /etc + /lib + /usr/bin + /usr/lib/sysusers.d + /usr/libexec + /usr/sbin + /usr/share/dconf + /usr/share/doc + /usr/share/gdm + /usr/share/gnome-session + /usr/share/help + /usr/share/locale + + + lxdm + sddm + lightdm + + + System.Service + System.Package + + + gdm.sysusers + + + + gdm-devel + + gdm + glib2-devel + elogind-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + libgdm + + glib2 + elogind + + + /usr/lib/girepository-1.0 + /usr/lib/libgdm.so* + /usr/share/glib-2.0 + + + + + 2022-03-22 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-12 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-21 + 41.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-24 + 40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-17 + 40.0 + Seperate libgdm + Berk Çakar + berk2238@hotmail.com + + + 2021-06-09 + 40.0 + Rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-06-05 + 40.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + geocode-glib + https://gitlab.gnome.org/GNOME/geocode-glib + + Pisi Linux Admins + admins@pisilinux.org + + GPLv1 + programming.misc + geocode-glib is a convenience library for the geocoding and reverse geocoding + geocode-glib is a convenience library for the geocoding (finding longitude, +and latitude from an address) and reverse geocoding (finding an address from +coordinates). It uses Nominatim service to achieve that. It also caches +(reverse-)geocoding requests for faster results and to avoid unnecessary server +load. + https://download.gnome.org/sources/geocode-glib/3.26/geocode-glib-3.26.2.tar.xz + + meson + json-glib-devel + libsoup-devel + gtk-doc + gobject-introspection-devel + + desktop/gnome/base/geocode-glib/pspec.xml + + + geocode-glib + + json-glib + libsoup + glib2 + + + /usr/share/locale + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/gtk-doc + /usr/share/icons + + + + geocode-glib-devel + Development files for geocode-glib + + geocode-glib + + + /usr/include + /usr/lib/pkgconfig/geocode-glib-1.0.pc + /usr/share/gir-1.0/GeocodeGlib-1.0.gir + + + + + 2021-04-06 + 3.26.2 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gjs + https://gitlab.gnome.org/GNOME/gjs + + Pisi Linux Admins + admins@pisilinux.org + + MIT + library + desktop.gnome.base + JavaScript bindings for GNOME + JavaScript bindings for GNOME + https://download.gnome.org/sources/gjs/1.72/gjs-1.72.0.tar.xz + + spidermonkey-devel + meson + gobject-introspection-devel + dbus-glib-devel + readline-devel + cairo-devel + systemtap-sdt-devel + + desktop/gnome/base/gjs/pspec.xml + + + gjs + + cairo + glib2 + libX11 + libffi + libgcc + readline + spidermonkey + gobject-introspection + + + /usr/bin + /usr/lib/gjs + /usr/lib/lib*.so* + /usr/share/gjs-1.0 + /usr/share/doc + + + + gjs-devel + Development files for gjs + + gjs + cairo-devel + glib2-devel + libffi-devel + spidermonkey-devel + gobject-introspection-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-03-22 + 1.72.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-11 + 1.70.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-19 + 1.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 1.68.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-06 + 1.68.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 1.68.1 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gmime3 + http://spruce.sourceforge.net/gmime + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.base + Utilities for creating and parsing messages using MIME + GMime is a C/C++ library which may be used for the creation and parsing of messages using the Multipurpose Internet Mail Extension (MIME) + https://download.gnome.org/sources/gmime/3.2/gmime-3.2.7.tar.xz + + glib2-devel + gpgme-devel + zlib-devel + libidn2-devel + gobject-introspection-devel + vala-devel + gtk-doc + + desktop/gnome/base/gmime3/pspec.xml + + + gmime3 + + zlib + glib2 + gpgme + libidn2 + libassuan + libgpg-error + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + + + + gmime3-devel + + gmime3 + glib2-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + gmime3-docs + data:doc + + /usr/share/doc + /usr/share/gtk-doc + + + + + 2021-05-27 + 3.2.7 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-backgrounds + https://gitlab.gnome.org/GNOME/gnome-backgrounds + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + Default wallpaper set for GNOME. + This module contains a set of backgrounds packaged with the GNOME desktop. + https://download.gnome.org/sources/gnome-backgrounds/42/gnome-backgrounds-42.0.tar.xz + + meson + + desktop/gnome/base/gnome-backgrounds/pspec.xml + + + gnome-backgrounds + + /usr/share/locale + /usr/share/doc + /usr/share/pixmaps + /usr/share/backgrounds + /usr/share/gnome-background-properties + + + + + 2022-03-22 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-11 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 40.1 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-bluetooth + https://gitlab.gnome.org/GNOME/gnome-bluetooth + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + gnome-bluetooth is a fork of bluez-gnome focused on integration with GNOME. + gnome-bluetooth is collection of widgets for applications that want +to select Bluetooth devices. It is also used by GNOME session +components such as the Settings and gnome-shell. + https://download.gnome.org/sources/gnome-bluetooth/42/gnome-bluetooth-42.1.tar.xz + + intltool + itstool + gobject-introspection-devel + glib2-devel + gtk3-devel + libnotify-devel + dconf-devel + gvfs + bluez-libs-devel + eudev-devel + libcanberra-devel + libcanberra-gtk3-devel + libXi-devel + meson + gtk4-devel + gsound-devel + upower-devel + libadwaita-devel + + desktop/gnome/base/gnome-bluetooth/pspec.xml + + + gnome-bluetooth + + atk + gtk4 + eudev + glib2 + libnotify + libcanberra + libcanberra-gtk3 + gsound + upower + libadwaita + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/locale + /usr/share/applications + /usr/share/gnome-bluetooth-3.0 + + + + gnome-bluetooth-devel + Development files for gnome-bluetooth + + gnome-bluetooth + gtk4-devel + glib2-devel + libadwaita-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-06-10 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.34.5 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-bluetooth3 + https://gitlab.gnome.org/GNOME/gnome-bluetooth + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + gnome-bluetooth is a fork of bluez-gnome focused on integration with GNOME. + gnome-bluetooth is collection of widgets for applications that want +to select Bluetooth devices. It is also used by GNOME session +components such as the Settings and gnome-shell. + gnome-bluetooth + https://download.gnome.org/sources/gnome-bluetooth/3.34/gnome-bluetooth-3.34.5.tar.xz + + intltool + itstool + gobject-introspection-devel + glib2-devel + gtk3-devel + libnotify-devel + dconf-devel + gvfs + bluez-libs-devel + eudev-devel + libcanberra-devel + libcanberra-gtk3-devel + libXi-devel + meson + + desktop/gnome/base/gnome-bluetooth3/pspec.xml + + + gnome-bluetooth3 + + atk + gtk3 + eudev + glib2 + libnotify + libcanberra + libcanberra-gtk3 + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/locale + /usr/share/applications + /usr/share/gnome-bluetooth + + + + gnome-bluetooth3-devel + Development files for gnome-bluetooth + development + + gnome-bluetooth3 + gtk3-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-06-03 + 3.34.5 + Duplicated for budgie desktop. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-05-28 + 3.34.5 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-color-manager + https://gitlab.gnome.org/GNOME/gnome-color-manager + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + Color profile manager for the GNOME desktop + GNOME Color Manager is a session framework that makes it easy to manage, install and generate color profiles in the GNOME desktop. + https://download.gnome.org/sources/gnome-color-manager/3.36/gnome-color-manager-3.36.0.tar.xz + + meson + appstream-glib-devel + libcanberra-devel + libcanberra-gtk3-devel + desktop-file-utils + shared-color-profiles + colord-devel + colord-gtk-devel + libexif-devel + exiv2-devel + vte-devel + itstool + gtk4-update-icon-cache + + desktop/gnome/base/gnome-color-manager/pspec.xml + + + gnome-color-manager + + gtk3 + cairo + glib2 + lcms2 + pango + colord + gdk-pixbuf + + + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/icons + /usr/share/applications + /usr/share/help + /usr/share/gnome-color-manager + /usr/share/man + /usr/share/metainfo + + + + + 2021-05-27 + 3.36.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com @@ -8138,62 +9872,1116 @@ services for numerous locations. - geocode-glib - https://gitlab.gnome.org/GNOME/geocode-glib + gnome-control-center + https://gitlab.gnome.org/GNOME/gnome-control-center Pisi Linux Admins admins@pisilinux.org - GPLv1 - programming.misc - geocode-glib is a convenience library for the geocoding and reverse geocoding - geocode-glib is a convenience library for the geocoding (finding longitude, -and latitude from an address) and reverse geocoding (finding an address from -coordinates). It uses Nominatim service to achieve that. It also caches -(reverse-)geocoding requests for faster results and to avoid unnecessary server -load. - https://download.gnome.org/sources/geocode-glib/3.26/geocode-glib-3.26.2.tar.xz + GPLv2 + app:gui + desktop.gnome.base + GNOME's main interface to configure various aspects of the desktop + GNOME Settings is GNOME's main interface for configuration of various aspects of your desktop. + https://download.gnome.org/sources/gnome-control-center/42/gnome-control-center-42.2.tar.xz + gcr-devel + glib2-devel + gsettings-desktop-schemas-devel + intltool meson - json-glib-devel - libsoup-devel - gtk-doc - gobject-introspection-devel + polkit-devel + python3-devel + ModemManager-devel + accountsservice-devel + colord-gtk-devel + gnome-bluetooth-devel + gnome-desktop-devel + gnome-menus-devel + gnome-online-accounts-devel + NetworkManager-devel + gnome-settings-daemon-devel + grilo-devel + ibus-devel + libSM-devel + libXxf86misc-devel + libgtop-devel + libhandy-devel + libpwquality-devel + mit-kerberos-devel + e2fsprogs-devel + libnma-devel + pulseaudio-libs-devel + samba-devel + upower-devel + vala-devel + clutter-gtk-devel + libxml2-devel + libX11-devel + gtk3-devel + cups-devel + libgudev-devel + libwacom-devel + clutter-devel + libsecret-devel + libcanberra-devel + udisks2-devel + gsound-devel + libsoup-devel + cheese-devel + libseccomp-devel + libmm-glib-devel + docbook-xsl + gettext-devel + openssh + cyrus-sasl-devel + gnutls-devel + libadwaita-devel - desktop/gnome/base/geocode-glib/pspec.xml + desktop/gnome/base/gnome-control-center/pspec.xml - geocode-glib + gnome-control-center - json-glib - libsoup + gcr + atk + cups + gtk4 + gtk3 + ibus + cairo glib2 + libXi + pango + samba + grilo + cheese + colord + gsound + libX11 + libnma + polkit + upower + gnutls + libadwaita + libgtop + libsoup + libxml2 + udisks2 + libepoxy + libgudev + libhandy + libwacom + libsecret + colord-gtk + fontconfig + gdk-pixbuf + libmm-glib + cyrus-sasl + libpwquality + mit-kerberos + gnome-desktop + NetworkManager + wayland-server + accountsservice + gnome-bluetooth + pulseaudio-libs + gnome-online-accounts - /usr/share/locale + /usr/bin /usr/lib - /usr/libexec + /usr/libexec + /usr/share/locale + /usr/share/man /usr/share/doc - /usr/share/gtk-doc + /usr/share/applications + /usr/share/gnome-control-center /usr/share/icons + /usr/share/glib-2.0 + /usr/share/dbus-1 + /usr/share/metainfo + /usr/share/gettext + /usr/share/gnome-shell + /usr/share/bash-completion + /usr/share/pixmaps + /usr/share/polkit-1 + /usr/share/sounds - geocode-glib-devel - Development files for geocode-glib + gnome-control-center-devel - geocode-glib + gnome-control-center - /usr/include - /usr/lib/pkgconfig/geocode-glib-1.0.pc - /usr/share/gir-1.0/GeocodeGlib-1.0.gir + /usr/share/pkgconfig + + + + + 2022-05-27 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-14 + 41.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-04 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-29 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 40.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-doc-utils + http://live.gnome.org/GnomeDocUtils + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + desktop.gnome.base + A collection of documentation utilities for the Gnome project + Gnome projesi için döküman araçları takımı + gnome-doc-utils is a collection of documentation utilities for the Gnome project + gnome-doc-utils Gnome projesinde kullanılan belgelendirme araçlarını içermektedir. + http://ftp.acc.umu.se/pub/GNOME/sources/gnome-doc-utils/0.20/gnome-doc-utils-0.20.10.tar.xz + + gawk + intltool + pkgconfig + gettext-devel + docbook-xml + libxslt-devel + + + do-not-update-scrollkeeper-database.patch + + desktop/gnome/base/gnome-doc-utils/pspec.xml + + + gnome-doc-utils + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/omf + /usr/bin + /usr/share/xml + /usr/share/gnome + /usr/share/xml2po + /usr/share/aclocal + /usr/share/pkgconfig + /usr/share/locale + /usr/share/gnome-doc-utils - 2021-04-06 - 3.26.2 + 2020-11-19 + 0.20.10 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + gnome-initial-setup + https://gitlab.gnome.org/GNOME/gnome-initial-setup + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + GNOME Initial Setup application. + After acquiring or installing a new system there are a few essential things to set up before use. gnome-initial-setup aims to provide a simple, easy, and safe way to prepare a new system. + https://download.gnome.org/sources/gnome-initial-setup/42/gnome-initial-setup-42.2.tar.xz + + git + glib2-devel + gettext-devel + NetworkManager-devel + accountsservice-devel + cheese-devel + libgweather4-devel + webkit2gtk-devel + gnome-online-accounts-devel + gdm-devel + libpwquality-devel + vala-devel + mit-kerberos-devel + libnma-devel + polkit-devel + librest-devel + libsecret-devel + ibus-devel + iso-codes-devel + geoclue-devel + pango-devel + libhandy-devel + geocode-glib-devel + meson + gnome-desktop-devel + libseccomp-devel + e2fsprogs-devel + + desktop/gnome/base/gnome-initial-setup/pspec.xml + + + gnome-initial-setup + + libgdm + gtk3 + ibus + cairo + glib2 + pango + cheese + libnma + polkit + geoclue + librest + libhandy + json-glib + libsecret + fontconfig + gdk-pixbuf + webkit2gtk + geocode-glib + libgweather4 + libpwquality + mit-kerberos + gnome-desktop + NetworkManager + accountsservice + gnome-online-accounts + + + /etc + /usr/libexec/gnome-initial-setup* + /usr/share/applications + /usr/share/gnome-session + /usr/share/gnome-shell + /usr/share/polkit-1 + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/locale + + + + + 2022-05-27 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-11 + 41.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-02 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-17 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-14 + 40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-16 + 40.3 + Rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2021-07-13 + 40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-21 + 40.1 + First release. + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-menus + https://gitlab.gnome.org/GNOME/gnome-menus + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + app + desktop.gnome.base + GNOME menu specifications + GNOME menu specifications + GNOME menu specifications + GNOME menu specifications + https://gitlab.gnome.org/GNOME/gnome-menus/-/archive/3.36.0/gnome-menus-3.36.0.tar.gz + + intltool + glib2-devel + gnome-common + python3-devel + gobject-introspection-devel + + desktop/gnome/base/gnome-menus/pspec.xml + + + gnome-menus + + glib2 + + + /etc + /usr/lib + /usr/share + /usr/share/gir-1.0 + /usr/share/desktop-directories + /usr/share/locale + /usr/share/doc + + + + gnome-menus-devel + Development files for gnome-menus + + gnome-menus + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-03-28 + 3.36.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gnome-online-accounts + https://gitlab.gnome.org/GNOME/gnome-online-accounts + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + desktop.gnome.base + Single sign-on framework for GNOME + The GNOME Online Accounts package contains a framework used to access the user's online accounts. + https://download.gnome.org/sources/gnome-online-accounts/3.44/gnome-online-accounts-3.44.0.tar.xz + + docbook-xsl + gettext-devel + glib2-devel + libxslt-devel + vala-devel + gtk3-devel + gobject-introspection-devel + gcr-devel + gtk3-devel + json-glib-devel + libnotify-devel + libsecret-devel + libsoup-devel + mit-kerberos-devel + e2fsprogs-devel + librest-devel + telepathy-glib-devel + webkit2gtk-devel + + desktop/gnome/base/gnome-online-accounts/pspec.xml + + + gnome-online-accounts + + gcr + atk + gtk3 + cairo + glib2 + pango + p11-kit + libxml2 + libsoup + librest + libsecret + json-glib + gdk-pixbuf + webkit2gtk + mit-kerberos + harfbuzz + + + /usr/libexec + /usr/lib/girepository-1.0 + /usr/lib/gnome-online-accounts + /usr/lib/goa-1.0 + /usr/lib/libgoa* + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/dbus-1 + /usr/share/glib-2.0 + /usr/share/locale + /usr/share/gnome-online-accounts + + + + gnome-online-accounts-devel + + gtk3-devel + glib2-devel + gnome-online-accounts + + + /usr/lib/pkgconfig + /usr/include + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2022-03-30 + 3.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-16 + 3.43.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.40.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-online-miners + https://gitlab.gnome.org/GNOME/gnome-online-miners + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + desktop.gnome.base + GNOME Online Miners - crawls through your online content + GNOME Online Miners provides a set of crawlers that go through your online content and index them locally in Tracker + https://download.gnome.org/sources/gnome-online-miners/3.34/gnome-online-miners-3.34.0.tar.xz + + intltool + libxslt-devel + docbook-xsl + glib2-devel + libgdata-devel + grilo-devel + tracker-devel + libgfbgraph-devel + gnome-online-accounts-devel + autoconf-archive + + + tracker3-support.patch + + desktop/gnome/base/gnome-online-miners/pspec.xml + + + gnome-online-miners + + glib2 + + + /usr/lib + /usr/share/dbus-1 + /usr/share/doc + /usr/libexec + + + + + 2021-06-06 + 3.34.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-session + https://gitlab.gnome.org/GNOME/gnome-session + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + GNOME session manager + GNOME oturum yöneticisi + gnome-session manages X11-compliant sessions with ConsoleKit daemon and starts GNOME core services + gnome-session, ConsoleKit ile birlikte X11-uyumlu oturumları yönetir ve temel GNOME servislerini başlatır. + https://download.gnome.org/sources/gnome-session/42/gnome-session-42.0.tar.xz + + glib2-devel + intltool + xmlto + elogind-devel + gnome-desktop-devel + gtk3-devel + json-glib-devel + libXtst-devel + libSM-devel + startup-notification-devel + upower-devel + libseccomp-devel + xtrans + meson + + + 0001-revert-autostart-app-Strip-blacklisted-variables-fro.patch + include-profile-env-variables.patch + no-systemd-dep.patch + support-elogind.patch + + desktop/gnome/base/gnome-session/pspec.xml + + + gnome-session + + gtk3 + glib2 + libSM + libICE + libX11 + libepoxy + libglvnd + json-glib + gnome-desktop + libXcomposite + elogind + + + /usr/bin + /usr/libexec + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/wayland-sessions + /usr/share/gnome-session + /usr/share/xsessions + /usr/share/glib-2.0 + /usr/share/GConf + + + + + 2022-03-22 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-12 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-26 + 40.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 40.1.1 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-settings-daemon + https://gitlab.gnome.org/GNOME/gnome-settings-daemon + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + desktop.gnome + The GNOME Settings Daemon is responsible for setting various parameters of a +GNOME Session and the applications that run under it. + The GNOME Settings Daemon is responsible for setting various parameters of a GNOME Session and the applications that run under it. + https://download.gnome.org/sources/gnome-settings-daemon/42/gnome-settings-daemon-42.2.tar.xz + + colord-devel + elogind-devel + fontconfig-devel + gcr-devel + geoclue-devel + geocode-glib-devel + gnome-desktop-devel + lcms2-devel + libcanberra-devel + libcanberra-gtk3-devel + libgweather4-devel + libnotify-devel + librsvg-devel + libwacom-devel + pulseaudio + pulseaudio-libs-devel + upower-devel + xorg-input-wacom-devel + alsa-lib-devel + cups-devel + libmm-glib-devel + libseccomp-devel + nss-devel + libnma-devel + meson + vala-devel + libXfixes-devel + + desktop/gnome/base/gnome-settings-daemon/pspec.xml + + + gnome-settings-daemon + The GNOME Settings Daemon is responsible for setting various parameters of a +GNOME Session and the applications that run under it. + + gcr + nss + cups + gcr + gtk3 + nspr + cairo + lcms2 + glib2 + libXi + pango + colord + libX11 + upower + geoclue + polkit + libXext + alsa-lib + libgudev + libwacom + libnotify + fontconfig + gdk-pixbuf + libmm-glib + libcanberra + geocode-glib + gnome-desktop + NetworkManager + wayland-client + pulseaudio-libs + libcanberra-gtk3 + libgweather4 + + + /etc + /lib + /usr/lib/gnome-settings-daemon-42 + /usr/libexec + /usr/share/GConf + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/gnome-settings-daemon + /usr/share/locale + /usr/share/polkit-1 + + + + gnome-settings-daemon-devel + + gnome-settings-daemon + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-01 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 40.0.1 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-shell + https://gitlab.gnome.org/GNOME/gnome-shell + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + GNOME Shell is the defining technology of the GNOME40 user experience + GNOME40 kullanıcı tecrübesinin belirleyici teknolojisi + GNOME Shell is the defining technology of the GNOME40 user experience. It provides core interface functions like switching to windows and launching applications. + gnome-shell, GNOME40 kullanıcı tecrübesinin belirleyici teknolojisidir. Pencereler arası geçiş ve uygulama çalıştırma gibi temel işlevleri sağlar. + https://download.gnome.org/sources/gnome-shell/42/gnome-shell-42.2.tar.xz + + at-spi2-atk-devel + evolution-data-server-devel + folks-devel + gcr-devel + gjs-devel + gnome-bluetooth-devel + gnome-control-center-devel + gnome-desktop-devel + libseccomp-devel + gnome-menus-devel + gsettings-desktop-schemas-devel + gstreamer-devel + gtk4-devel + ibus-devel + json-glib-devel + libcanberra-devel + libcroco-devel + libsecret-devel + libsoup-devel + libX11-devel + libxml2-devel + mutter-devel + libnma-devel + polkit-devel + pulseaudio-libs-devel + pipewire-devel + sassc + startup-notification-devel + telepathy-logger-devel + gnome-autoar-devel + libarchive-devel + gobject-introspection-devel + libxslt-devel + python3-devel + glib2-devel + gettext-devel + elogind-devel + network-manager-applet + meson + vulkan-devel + vulkan-headers + mesa-devel + + desktop/gnome/base/gnome-shell/pspec.xml + + + gnome-shell + + atk + gcr + gjs + gtk3 + gtk4 + cairo + glib2 + pango + libX11 + mutter + polkit + libical + graphene + json-glib + libXfixes + libsecret + gdk-pixbuf + at-spi2-atk + gnome-autoar + gnome-desktop + NetworkManager + wayland-server + pulseaudio-libs + network-manager-applet + evolution-data-server + gobject-introspection + libgdm + + + /etc + /usr/bin + /usr/libexec + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/applications + /usr/share/glib-2.0 + /usr/share/gnome-shell + /usr/share/dbus-1 + /usr/share/GConf + /usr/share/icons + /usr/share/bash-completion + /usr/share/metainfo + /usr/share/xdg-desktop-portal + /usr/share/gnome-control-center + + + + + 2022-05-29 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-11 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-13 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-05 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-19 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 40.3 + Rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2021-07-12 + 40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-12 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-26 + 40.1 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gnome-shell-extensions + https://gitlab.gnome.org/GNOME/gnome-shell-extensions + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + A collection of extensions providing additional and optional functionality to GNOME Shell + GNOME Shell Extensions is a collection of extensions providing additional and optional functionality to GNOME Shell + https://download.gnome.org/sources/gnome-shell-extensions/42/gnome-shell-extensions-42.2.tar.xz + + libgtop-devel + sassc + meson + + desktop/gnome/base/gnome-shell-extensions/pspec.xml + + + gnome-shell-extensions + + /usr/share/doc + /usr/share/gnome-shell + /usr/share/xsessions + /usr/share/glib-2.0 + /usr/share/locale + + + + + 2022-05-29 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-13 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-19 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 40.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-12 + 40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 40.1 First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -8273,6 +11061,137 @@ load. + + + gnome-video-effects + https://gitlab.gnome.org/GNOME/gnome-video-effects + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.gnome.base + Collection of GStreamer effects for GNOME + The GNOME Video Effects package contains a collection of GStreamer effects. + https://download.gnome.org/sources/gnome-video-effects/0.5/gnome-video-effects-0.5.0.tar.xz + + intltool + gettext-devel + meson + + desktop/gnome/base/gnome-video-effects/pspec.xml + + + gnome-video-effects + + gst-plugins-good + gst-plugins-bad + frei0r-plugins + + + /usr/share/gnome-video-effects + /usr/share/doc + + + + gnome-video-effects-devel + + gnome-video-effects + + + /usr/share/pkgconfig + + + + + 2021-05-28 + 0.5.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + grilo + https://gitlab.gnome.org/GNOME/grilo + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + library + desktop.gnome.base + Grilo is a framework for browsing and searching media content from various sources using a single API. + Grilo is a framework for browsing and searching media content from various sources using a single API. + https://download.gnome.org/sources/grilo/0.3/grilo-0.3.14.tar.xz + + eudev-devel + gettext-devel + glib2-devel + gobject-introspection-devel + meson + gtk3-devel + libxml2-devel + libsoup-devel + liboauth-devel + totem-pl-parser-devel + meson + vala-devel + + desktop/gnome/base/grilo/pspec.xml + + + grilo + + gtk3 + glib2 + libsoup + liboauth + totem-pl-parser + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/share/man + /usr/share/doc + /usr/share/locale + + + + grilo-devel + Development files for grilo + + grilo + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/vala + /usr/share/gir-1.0 + + + + + 2021-10-05 + 0.3.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 0.3.13 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + grilo-plugins @@ -8380,81 +11299,189 @@ load. - grilo - https://gitlab.gnome.org/GNOME/grilo + gsettings-desktop-schemas + https://gitlab.gnome.org/GNOME/gsettings-desktop-schemas - Pisi Linux Admins - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com LGPLv2.1 - library - desktop.gnome.base - Grilo is a framework for browsing and searching media content from various sources using a single API. - Grilo is a framework for browsing and searching media content from various sources using a single API. - https://download.gnome.org/sources/grilo/0.3/grilo-0.3.14.tar.xz + desktop.gnome + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. + GNOME masaüstü ortamı için GSettings şemalarının koleksiyonu + gsettings-desktop-schemas contains a collection of GSettings schemas for settings shared by various components of a desktop. + Gnome masaüstünün çeşitli bileşenleri tarafından paylaşılan ayarlar için GSettings şemalarının bir koleksiyonudur. + https://download.gnome.org/sources/gsettings-desktop-schemas/42/gsettings-desktop-schemas-42.0.tar.xz - eudev-devel - gettext-devel - glib2-devel - gobject-introspection-devel meson - gtk3-devel - libxml2-devel - libsoup-devel - liboauth-devel - totem-pl-parser-devel - meson - vala-devel + glib2-devel + gobject-introspection-devel - desktop/gnome/base/grilo/pspec.xml + desktop/gnome/base/gsettings-desktop-schemas/pspec.xml - grilo - - gtk3 - glib2 - libsoup - liboauth - totem-pl-parser - + gsettings-desktop-schemas + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. - /usr/bin /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/man + /usr/share/GConf/ /usr/share/doc - /usr/share/locale + /usr/share/gir-1.0 + /usr/share/glib-2.0/schemas + /usr/share/locale - grilo-devel - Development files for grilo + gsettings-desktop-schemas-devel + gsettings-desktop-schemas contains a collection of GSettings schemas for +settings shared by various components of a desktop. + gsettings-desktop-schemas için geliştirme dosyaları - grilo + gsettings-desktop-schemas + + + /usr/include + /usr/share/pkgconfig/ + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-06 + 3.38.0 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2020-01-31 + 3.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-23 + 3.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-13 + 3.33.1 + version bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-12-03 + 3.10.1 + First Release + Kamil Atlı + suvari@pisilinux.org + + + + + + gspell + https://wiki.gnome.org/Projects/gspell + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.gnome.base + GTK+ Spell Checker Library + GTK imla denetimi kitaplığı + A flexible API to implement the spell checking in a GTK+ application + GTK uygulamalarında imla denetimi uygulamları için esnek bir API + mirrors://gnome/gspell/1.10/gspell-1.10.0.tar.xz + + enchant2-devel + gettext-devel glib2-devel - libxml2-devel + gtk3-devel + gobject-introspection-devel + iso-codes-devel + python3-devel + vala-devel + + desktop/gnome/base/gspell/pspec.xml + + + gspell + + atk + cairo + enchant2 + gdk-pixbuf + glib2 + gtk3 + harfbuzz + icu4c + pango + + + /usr/share + /usr/lib + /usr/bin + + + + gspell-devel + Development files for gspell + gspell için geliştirme dosyaları + + gspell + enchant2-devel + gtk3-devel + glib2-devel + icu4c-devel /usr/include /usr/lib/pkgconfig - /usr/share/vala - /usr/share/gir-1.0 - 2021-10-05 - 0.3.14 + 2022-04-19 + 1.10.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-05-28 - 0.3.13 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com + 2021-06-03 + 1.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org @@ -8861,1770 +11888,6 @@ load. - - - gnome-shell - https://gitlab.gnome.org/GNOME/gnome-shell - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - GNOME Shell is the defining technology of the GNOME40 user experience - GNOME40 kullanıcı tecrübesinin belirleyici teknolojisi - GNOME Shell is the defining technology of the GNOME40 user experience. It provides core interface functions like switching to windows and launching applications. - gnome-shell, GNOME40 kullanıcı tecrübesinin belirleyici teknolojisidir. Pencereler arası geçiş ve uygulama çalıştırma gibi temel işlevleri sağlar. - https://download.gnome.org/sources/gnome-shell/42/gnome-shell-42.2.tar.xz - - at-spi2-atk-devel - evolution-data-server-devel - folks-devel - gcr-devel - gjs-devel - gnome-bluetooth-devel - gnome-control-center-devel - gnome-desktop-devel - libseccomp-devel - gnome-menus-devel - gsettings-desktop-schemas-devel - gstreamer-devel - gtk4-devel - ibus-devel - json-glib-devel - libcanberra-devel - libcroco-devel - libsecret-devel - libsoup-devel - libX11-devel - libxml2-devel - mutter-devel - libnma-devel - polkit-devel - pulseaudio-libs-devel - pipewire-devel - sassc - startup-notification-devel - telepathy-logger-devel - gnome-autoar-devel - libarchive-devel - gobject-introspection-devel - libxslt-devel - python3-devel - glib2-devel - gettext-devel - elogind-devel - network-manager-applet - meson - vulkan-devel - vulkan-headers - mesa-devel - - desktop/gnome/base/gnome-shell/pspec.xml - - - gnome-shell - - atk - gcr - gjs - gtk3 - gtk4 - cairo - glib2 - pango - libX11 - mutter - polkit - libical - graphene - json-glib - libXfixes - libsecret - gdk-pixbuf - at-spi2-atk - gnome-autoar - gnome-desktop - NetworkManager - wayland-server - pulseaudio-libs - network-manager-applet - evolution-data-server - gobject-introspection - libgdm - - - /etc - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/applications - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/dbus-1 - /usr/share/GConf - /usr/share/icons - /usr/share/bash-completion - /usr/share/metainfo - /usr/share/xdg-desktop-portal - /usr/share/gnome-control-center - - - - - 2022-05-29 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-11 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-13 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-05 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-19 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 40.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 40.3 - Rebuild. - Berk Çakar - berk2238@hotmail.com - - - 2021-07-12 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-12 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 40.1 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-shell-extensions - https://gitlab.gnome.org/GNOME/gnome-shell-extensions - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - A collection of extensions providing additional and optional functionality to GNOME Shell - GNOME Shell Extensions is a collection of extensions providing additional and optional functionality to GNOME Shell - https://download.gnome.org/sources/gnome-shell-extensions/42/gnome-shell-extensions-42.2.tar.xz - - libgtop-devel - sassc - meson - - desktop/gnome/base/gnome-shell-extensions/pspec.xml - - - gnome-shell-extensions - - /usr/share/doc - /usr/share/gnome-shell - /usr/share/xsessions - /usr/share/glib-2.0 - /usr/share/locale - - - - - 2022-05-29 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-13 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-19 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 40.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-12 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 40.1 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gdm - https://gitlab.gnome.org/GNOME/gdm - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - GNOME Graphical Display Manager - GNOME ekran yöneticisi - A graphical login manager for your desktop, integrated within the GNOME desktop environment - GDM, yerel veya uzak makinelerde farklı oturumlar açmayı sağlar. - https://download.gnome.org/sources/gdm/42/gdm-42.0.tar.xz - - dconf-devel - gettext-devel - itstool - accountsservice-devel - elogind-devel - glib2-devel - gtk3-devel - iso-codes-devel - libSM-devel - libcanberra-devel - libcanberra-gtk3-devel - nss-devel - pam-devel - audit-devel - upower-devel - libdaemon-devel - gobject-introspection-devel - meson - - - 0000-Force-Xorg-use-on-the-login-screen.patch - 0002-Xsession-Don-t-start-ssh-agent-by-default.patch - 0003-enable-elogind-build.patch - - desktop/gnome/base/gdm/pspec.xml - - - gdm - - pam - gtk3 - glib2 - libX11 - libXau - libxcb - elogind - libXdmcp - gdk-pixbuf - libcanberra - accountsservice - libcanberra-gtk3 - audit - keyutils - libgudev - libgdm - - - /etc - /lib - /usr/bin - /usr/lib/sysusers.d - /usr/libexec - /usr/sbin - /usr/share/dconf - /usr/share/doc - /usr/share/gdm - /usr/share/gnome-session - /usr/share/help - /usr/share/locale - - - lxdm - sddm - lightdm - - - System.Service - System.Package - - - gdm.sysusers - - - - gdm-devel - - gdm - glib2-devel - elogind-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - libgdm - - glib2 - elogind - - - /usr/lib/girepository-1.0 - /usr/lib/libgdm.so* - /usr/share/glib-2.0 - - - - - 2022-03-22 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-12 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-21 - 41.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-24 - 40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-17 - 40.0 - Seperate libgdm - Berk Çakar - berk2238@hotmail.com - - - 2021-06-09 - 40.0 - Rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-06-05 - 40.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libchamplain - https://gitlab.gnome.org/GNOME/libchamplain - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome.base - A library aimed to provide a Clutter widget to display rasterized maps - libchamplain is a Gtk widget displaying zoomable and pannable maps that can be loaded from various network sources. - https://download.gnome.org/sources/libchamplain/0.12/libchamplain-0.12.20.tar.xz - - gtk3-devel - clutter-gtk-devel - glib2-devel - sqlite-devel - gobject-introspection-devel - vala-devel - libsoup-devel - meson - - desktop/gnome/base/libchamplain/pspec.xml - - - libchamplain - - cogl - gtk3 - cairo - glib2 - pango - sqlite - clutter - libsoup - gdk-pixbuf - clutter-gtk - - - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/doc - - - - libchamplain-devel - Development files for libchamplain - - libchamplain - gtk3-devel - cairo-devel - glib2-devel - sqlite-devel - clutter-devel - libsoup-devel - clutter-gtk-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/vala - /usr/share/gir-1.0 - - - - - 2021-06-13 - 0.12.20 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libhandy - https://gitlab.gnome.org/GNOME/libhandy - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - desktop.gnome.base - Library full of GTK+ widgets for mobile phones - Library full of GTK+ widgets for mobile phones - Cep telefonları için GTK + gereçleriyle dolu kitaplık - Cep telefonları için GTK + gereçleriyle dolu kitaplık - https://download.gnome.org/sources/libhandy/1.6/libhandy-1.6.2.tar.xz - - meson - vala-devel - glade-devel - gtk3-devel - glib2-devel - gobject-introspection-devel - - desktop/gnome/base/libhandy/pspec.xml - - - libhandy - - atk - gtk3 - cairo - glade - glib2 - pango - fribidi - gdk-pixbuf - - - /usr/bin - /usr/lib - /usr/share/gir-1.0 - /usr/share/glade - /usr/share/locale - /usr/share/man - /usr/share/vala - /usr/share/doc - - - - libhandy-devel - Development files for libhandy - - libhandy - gtk3-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-23 - 1.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-12 - 1.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 1.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 1.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-23 - 1.2.1 - First release. - Pisi Linux Admins - admin@pisilinux.org - - - - - - gconf - https://developer.gnome.org/gconf/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.gnome.base - Gnome Configuration System - Gnome Konfigürasyon Sistemi - gconf is a Gnome Configuration System. - gconf, Gnome Konfigürasyon Sistemidir. - mirrors://gnome/GConf/3.2/GConf-3.2.6.tar.xz - - glib2-devel - gtk-doc - gettext-devel - gobject-introspection-devel - libxml2-devel - dbus-devel - dbus-glib-devel - polkit-devel - openldap-client - gtk3-devel - intltool - python-lxml - python-six - - - 01_xml-gettext-domain.patch - gconf-reload.patch - gconf-3.2.6-gsettings-data-convert-paths.patch - gconf-3.2.6-mconvert-crasher.patch - gconf-3.2.6-spew-console-error.patch - - desktop/gnome/base/gconf/pspec.xml - - - gconf - - dbus - glib2 - polkit - libxml2 - dbus-glib - openldap-client - - - /etc/dbus-1/system.d - /etc/gconf - /etc/xdg/autostart - /usr/bin - /usr/lib/libgconf* - /usr/lib/GConf - /usr/lib/gio - /usr/lib/girepository-1.0 - /usr/share/dbus-1 - /usr/share/doc - /usr/share/GConf - /usr/share/aclocal - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/man - /usr/share/polkit-1/actions - /usr/share/sgml/gconf - - - System.PackageHandler - - - gconf2.path - - - - gconf-docs - GConf reference documents - data:doc - - gconf - - - /usr/share/gtk-doc - - - - gconf-devel - Development files for gconf - gconf için geliştirme dosyaları - - gconf - glib2-devel - dbus-devel - python-lxml - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-13 - 3.2.6 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2018-09-16 - 3.2.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-01 - 3.2.6 - Rebuild for new toolchain. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-05 - 3.2.6 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - gnome-desktop - https://gitlab.gnome.org/GNOME/gnome-desktop - - PisiLinux Community - admins@pisilinux.org - - GPL - library - desktop.gnome.base - Library with common API for various GNOME modules - Library with common API for various GNOME modules - Library with common API for various GNOME modules - Library with common API for various GNOME modules - https://download.gnome.org/sources/gnome-desktop/42/gnome-desktop-42.2.tar.xz - - meson - itstool - gtk-doc - docbook-xsl - gtk3-devel - gtk4-devel - bubblewrap - eudev-devel - glib2-devel - libX11-devel - iso-codes-devel - libxkbfile-devel - gdk-pixbuf-devel - xkeyboard-config - fontconfig-devel - libseccomp-devel - libxkbcommon-devel - gobject-introspection-devel - gsettings-desktop-schemas-devel - - desktop/gnome/base/gnome-desktop/pspec.xml - - - gnome-desktop - - gtk3 - gtk4 - cairo - eudev - dbus - glib2 - libX11 - iso-codes - gdk-pixbuf - libseccomp - libxkbcommon - xkeyboard-config - gsettings-desktop-schemas - - - /usr/lib - /usr/libexec - /usr/share - /usr/share/locale - /usr/share/doc - - - - gnome-desktop-devel - Development files for gnome-desktop - - gnome-desktop - dbus-devel - gtk3-devel - gtk4-devel - iso-codes-devel - eudev-devel - glib2-devel - gdk-pixbuf-devel - libseccomp-devel - libxkbcommon-devel - gsettings-desktop-schemas-devel - - - /usr/include - /usr/lib/pkgconfig - - - - gnome-desktop-docs - Development files for gnome-desktop - - gnome-desktop - - - /usr/share/gtk-doc - - - - - 2022-06-02 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-27 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-11 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-07 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-02 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-20 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 40.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-18 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-12 - 3.34.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnome-session - https://gitlab.gnome.org/GNOME/gnome-session - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - GNOME session manager - GNOME oturum yöneticisi - gnome-session manages X11-compliant sessions with ConsoleKit daemon and starts GNOME core services - gnome-session, ConsoleKit ile birlikte X11-uyumlu oturumları yönetir ve temel GNOME servislerini başlatır. - https://download.gnome.org/sources/gnome-session/42/gnome-session-42.0.tar.xz - - glib2-devel - intltool - xmlto - elogind-devel - gnome-desktop-devel - gtk3-devel - json-glib-devel - libXtst-devel - libSM-devel - startup-notification-devel - upower-devel - libseccomp-devel - xtrans - meson - - - 0001-revert-autostart-app-Strip-blacklisted-variables-fro.patch - include-profile-env-variables.patch - no-systemd-dep.patch - support-elogind.patch - - desktop/gnome/base/gnome-session/pspec.xml - - - gnome-session - - gtk3 - glib2 - libSM - libICE - libX11 - libepoxy - libglvnd - json-glib - gnome-desktop - libXcomposite - elogind - - - /usr/bin - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/wayland-sessions - /usr/share/gnome-session - /usr/share/xsessions - /usr/share/glib-2.0 - /usr/share/GConf - - - - - 2022-03-22 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-12 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-26 - 40.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 40.1.1 - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - gjs - https://gitlab.gnome.org/GNOME/gjs - - Pisi Linux Admins - admins@pisilinux.org - - MIT - library - desktop.gnome.base - JavaScript bindings for GNOME - JavaScript bindings for GNOME - https://download.gnome.org/sources/gjs/1.72/gjs-1.72.0.tar.xz - - spidermonkey-devel - meson - gobject-introspection-devel - dbus-glib-devel - readline-devel - cairo-devel - systemtap-sdt-devel - - desktop/gnome/base/gjs/pspec.xml - - - gjs - - cairo - glib2 - libX11 - libffi - libgcc - readline - spidermonkey - gobject-introspection - - - /usr/bin - /usr/lib/gjs - /usr/lib/lib*.so* - /usr/share/gjs-1.0 - /usr/share/doc - - - - gjs-devel - Development files for gjs - - gjs - cairo-devel - glib2-devel - libffi-devel - spidermonkey-devel - gobject-introspection-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-03-22 - 1.72.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-11 - 1.70.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-19 - 1.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 1.68.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-06 - 1.68.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 1.68.1 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-control-center - https://gitlab.gnome.org/GNOME/gnome-control-center - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.base - GNOME's main interface to configure various aspects of the desktop - GNOME Settings is GNOME's main interface for configuration of various aspects of your desktop. - https://download.gnome.org/sources/gnome-control-center/42/gnome-control-center-42.2.tar.xz - - gcr-devel - glib2-devel - gsettings-desktop-schemas-devel - intltool - meson - polkit-devel - python3-devel - ModemManager-devel - accountsservice-devel - colord-gtk-devel - gnome-bluetooth-devel - gnome-desktop-devel - gnome-menus-devel - gnome-online-accounts-devel - NetworkManager-devel - gnome-settings-daemon-devel - grilo-devel - ibus-devel - libSM-devel - libXxf86misc-devel - libgtop-devel - libhandy-devel - libpwquality-devel - mit-kerberos-devel - e2fsprogs-devel - libnma-devel - pulseaudio-libs-devel - samba-devel - upower-devel - vala-devel - clutter-gtk-devel - libxml2-devel - libX11-devel - gtk3-devel - cups-devel - libgudev-devel - libwacom-devel - clutter-devel - libsecret-devel - libcanberra-devel - udisks2-devel - gsound-devel - libsoup-devel - cheese-devel - libseccomp-devel - libmm-glib-devel - docbook-xsl - gettext-devel - openssh - cyrus-sasl-devel - gnutls-devel - libadwaita-devel - - desktop/gnome/base/gnome-control-center/pspec.xml - - - gnome-control-center - - gcr - atk - cups - gtk4 - gtk3 - ibus - cairo - glib2 - libXi - pango - samba - grilo - cheese - colord - gsound - libX11 - libnma - polkit - upower - gnutls - libadwaita - libgtop - libsoup - libxml2 - udisks2 - libepoxy - libgudev - libhandy - libwacom - libsecret - colord-gtk - fontconfig - gdk-pixbuf - libmm-glib - cyrus-sasl - libpwquality - mit-kerberos - gnome-desktop - NetworkManager - wayland-server - accountsservice - gnome-bluetooth - pulseaudio-libs - gnome-online-accounts - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/applications - /usr/share/gnome-control-center - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/dbus-1 - /usr/share/metainfo - /usr/share/gettext - /usr/share/gnome-shell - /usr/share/bash-completion - /usr/share/pixmaps - /usr/share/polkit-1 - /usr/share/sounds - - - - gnome-control-center-devel - - gnome-control-center - - - /usr/share/pkgconfig - - - - - 2022-05-27 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-14 - 41.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-04 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-29 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 40.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - accountsservice - http://www.freedesktop.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv3 - library - desktop.gnome.base - D-Bus Service to Manipulate User Account Information - accountsservice server provides a set of D-Bus interfaces for querying and manipulating user account information. - https://www.freedesktop.org/software/accountsservice/accountsservice-0.6.55.tar.xz - - meson - xmlto - intltool - gtk-doc - python-six - dbus-devel - glib2-devel - polkit-devel - docbook-xsl - libxslt-devel - gobject-introspection-devel - - desktop/gnome/base/accountsservice/pspec.xml - - - accountsservice - - polkit - shadow - glib2 - - - /usr/libexec - /usr/lib - /usr/share/doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/polkit-1 - /usr/share/vala/vapi - /etc/dbus-1/system.d - /usr/share/locale - /var/lib/AccountsService/ - - - - accountsservice-docs - accountsservice reference documents - data:doc - - accountsservice - - - /usr/share/gtk-doc - - - - accountsservice-devel - accountsservice için geliştirme dosyaları - accountsservice için geliştirme dosyaları - - accountsservice - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-04-26 - 0.6.55 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 0.6.55 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-13 - 0.6.55 - Version Bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-08-13 - 0.6.50 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 0.6.45 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 0.6.43 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.6.40 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-11 - 0.6.40 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gcr - https://gitlab.gnome.org/GNOME/gcr - - Osman Erkan - osman.erkan@pisilinux.org - - LGPLv2 - library - desktop.gnome.base - The Gcr package contains libraries used for displaying certificates and accessing key stores. - The Gcr package contains libraries used for displaying certificates and accessing key stores. It also provides the viewer for crypto files on the GNOME Desktop. - https://download.gnome.org/sources/gcr/3.41/gcr-3.41.0.tar.xz - - meson - gnupg - intltool - gtk-doc - gtk3-devel - vala-devel - glib2-devel - libxslt-devel - p11-kit-devel - python-six - openssh - libsecret-devel - libgcrypt-devel - gobject-introspection-devel - - desktop/gnome/base/gcr/pspec.xml - - - gcr - - gtk3 - cairo - glib2 - pango - p11-kit - openssh - libsecret - libgcrypt - gdk-pixbuf - gobject-introspection - - - /etc - /usr/bin - /usr/lib/libgcr* - /usr/lib/libgck* - /usr/lib/girepository-1.0 - /usr/libexec - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/GConf - /usr/share/gcr-3 - /usr/share/gir-1.0 - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/locale - /usr/share/mime - /usr/share/vala - - - 10-gcr.conf - - - - gcr-devel - Development files for gcr - gcr için geliştirme dosyaları - - glib2-devel - gtk3-devel - p11-kit-devel - gobject-introspection-devel - gcr - - - /usr/include - /usr/lib/pkgconfig - - - - gcr-docs - gcr reference documents - data:doc - - gcr - - - /usr/share/gtk-doc - - - - - 2021-09-30 - 3.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 3.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-07 - 3.28.1 - Rebuild. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-07-13 - 3.28.1 - Version bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-09-16 - 3.28.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-21 - 3.28.0 - Release bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-30 - 3.20.0 - Release bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-05-17 - 3.20.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gnome-initial-setup - https://gitlab.gnome.org/GNOME/gnome-initial-setup - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - GNOME Initial Setup application. - After acquiring or installing a new system there are a few essential things to set up before use. gnome-initial-setup aims to provide a simple, easy, and safe way to prepare a new system. - https://download.gnome.org/sources/gnome-initial-setup/42/gnome-initial-setup-42.2.tar.xz - - git - glib2-devel - gettext-devel - NetworkManager-devel - accountsservice-devel - cheese-devel - libgweather4-devel - webkit2gtk-devel - gnome-online-accounts-devel - gdm-devel - libpwquality-devel - vala-devel - mit-kerberos-devel - libnma-devel - polkit-devel - librest-devel - libsecret-devel - ibus-devel - iso-codes-devel - geoclue-devel - pango-devel - libhandy-devel - geocode-glib-devel - meson - gnome-desktop-devel - libseccomp-devel - e2fsprogs-devel - - desktop/gnome/base/gnome-initial-setup/pspec.xml - - - gnome-initial-setup - - libgdm - gtk3 - ibus - cairo - glib2 - pango - cheese - libnma - polkit - geoclue - librest - libhandy - json-glib - libsecret - fontconfig - gdk-pixbuf - webkit2gtk - geocode-glib - libgweather4 - libpwquality - mit-kerberos - gnome-desktop - NetworkManager - accountsservice - gnome-online-accounts - - - /etc - /usr/libexec/gnome-initial-setup* - /usr/share/applications - /usr/share/gnome-session - /usr/share/gnome-shell - /usr/share/polkit-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/locale - - - - - 2022-05-27 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-11 - 41.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-02 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-17 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-14 - 40.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-16 - 40.3 - Rebuild. - Berk Çakar - berk2238@hotmail.com - - - 2021-07-13 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-21 - 40.1 - First release. - Berk Çakar - berk2238@hotmail.com - - - libbonobo @@ -10741,201 +12004,74 @@ load. - gnome-bluetooth - https://gitlab.gnome.org/GNOME/gnome-bluetooth + libchamplain + https://gitlab.gnome.org/GNOME/libchamplain Pisi Linux Admins admins@pisilinux.org - GPLv2 + LGPLv2.1 + library desktop.gnome.base - gnome-bluetooth is a fork of bluez-gnome focused on integration with GNOME. - gnome-bluetooth is collection of widgets for applications that want -to select Bluetooth devices. It is also used by GNOME session -components such as the Settings and gnome-shell. - https://download.gnome.org/sources/gnome-bluetooth/42/gnome-bluetooth-42.0.tar.xz + A library aimed to provide a Clutter widget to display rasterized maps + libchamplain is a Gtk widget displaying zoomable and pannable maps that can be loaded from various network sources. + https://download.gnome.org/sources/libchamplain/0.12/libchamplain-0.12.20.tar.xz - intltool - itstool - gobject-introspection-devel - glib2-devel gtk3-devel - libnotify-devel - dconf-devel - gvfs - bluez-libs-devel - eudev-devel - libcanberra-devel - libcanberra-gtk3-devel - libXi-devel - meson - gtk4-devel - gsound-devel - upower-devel - libadwaita-devel - - desktop/gnome/base/gnome-bluetooth/pspec.xml - - - gnome-bluetooth - - atk - gtk4 - eudev - glib2 - libnotify - libcanberra - libcanberra-gtk3 - gsound - upower - libadwaita - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/locale - /usr/share/applications - /usr/share/gnome-bluetooth-3.0 - - - - gnome-bluetooth-devel - Development files for gnome-bluetooth - - gnome-bluetooth - gtk4-devel + clutter-gtk-devel glib2-devel - libadwaita-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 3.34.5 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-online-accounts - https://gitlab.gnome.org/GNOME/gnome-online-accounts - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - desktop.gnome.base - Single sign-on framework for GNOME - The GNOME Online Accounts package contains a framework used to access the user's online accounts. - https://download.gnome.org/sources/gnome-online-accounts/3.44/gnome-online-accounts-3.44.0.tar.xz - - docbook-xsl - gettext-devel - glib2-devel - libxslt-devel + sqlite-devel + gobject-introspection-devel vala-devel - gtk3-devel - gobject-introspection-devel - gcr-devel - gtk3-devel - json-glib-devel - libnotify-devel - libsecret-devel libsoup-devel - mit-kerberos-devel - e2fsprogs-devel - librest-devel - telepathy-glib-devel - webkit2gtk-devel + meson - desktop/gnome/base/gnome-online-accounts/pspec.xml + desktop/gnome/base/libchamplain/pspec.xml - gnome-online-accounts + libchamplain - gcr - atk + cogl gtk3 cairo glib2 pango - p11-kit - libxml2 + sqlite + clutter libsoup - librest - libsecret - json-glib gdk-pixbuf - webkit2gtk - mit-kerberos - harfbuzz + clutter-gtk - /usr/libexec /usr/lib/girepository-1.0 - /usr/lib/gnome-online-accounts - /usr/lib/goa-1.0 - /usr/lib/libgoa* - /usr/share/man + /usr/lib/lib*.so* /usr/share/doc - /usr/share/icons - /usr/share/dbus-1 - /usr/share/glib-2.0 - /usr/share/locale - /usr/share/gnome-online-accounts - gnome-online-accounts-devel + libchamplain-devel + Development files for libchamplain + libchamplain gtk3-devel + cairo-devel glib2-devel - gnome-online-accounts + sqlite-devel + clutter-devel + libsoup-devel + clutter-gtk-devel - /usr/lib/pkgconfig /usr/include + /usr/lib/pkgconfig + /usr/share/vala /usr/share/gir-1.0 - /usr/share/vala - - 2022-03-30 - 3.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-16 - 3.43.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-05-28 - 3.40.0 + 2021-06-13 + 0.12.20 First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -11087,529 +12223,6 @@ components such as the Settings and gnome-shell. - - - folks - https://wiki.gnome.org/Projects/Folks - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - desktop.gnome.base - Library to aggregates people into metacontacts - Library to aggregates people into metacontacts - https://download.gnome.org/sources/folks/0.15/folks-0.15.5.tar.xz - - evolution-data-server-devel - readline-devel - glib2-devel - intltool - libgee-devel - libxml2-devel - telepathy-glib-devel - readline-devel - meson - python3-dbusmock - gobject-introspection-devel - vala-devel - - desktop/gnome/base/folks/pspec.xml - - - folks - Library to aggregates people into metacontacts - - evolution-data-server - libgee - libxml2 - telepathy-glib - glib2 - readline - - - /usr/bin - /usr/lib/folks - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/GConf - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/locale - - - - folks-devel - Development files for folks - - folks - evolution-data-server-devel - libgee-devel - telepathy-glib-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2022-03-23 - 0.15.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-18 - 0.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-19 - 0.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-21 - 0.14.0 - First release. - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-color-manager - https://gitlab.gnome.org/GNOME/gnome-color-manager - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.gnome.base - Color profile manager for the GNOME desktop - GNOME Color Manager is a session framework that makes it easy to manage, install and generate color profiles in the GNOME desktop. - https://download.gnome.org/sources/gnome-color-manager/3.36/gnome-color-manager-3.36.0.tar.xz - - meson - appstream-glib-devel - libcanberra-devel - libcanberra-gtk3-devel - desktop-file-utils - shared-color-profiles - colord-devel - colord-gtk-devel - libexif-devel - exiv2-devel - vte-devel - itstool - gtk4-update-icon-cache - - desktop/gnome/base/gnome-color-manager/pspec.xml - - - gnome-color-manager - - gtk3 - cairo - glib2 - lcms2 - pango - colord - gdk-pixbuf - - - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/icons - /usr/share/applications - /usr/share/help - /usr/share/gnome-color-manager - /usr/share/man - /usr/share/metainfo - - - - - 2021-05-27 - 3.36.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - dconf - http://live.gnome.org/dconf - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:console - desktop.gnome.base - Simple low-level configuration system - Düşük seviyeli yapılandırma sistemi - dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. - FIXME - http://ftp.acc.umu.se/pub/gnome/sources/dconf/0.40/dconf-0.40.0.tar.xz - - meson - ninja - vala-devel - dbus-devel - glib2-devel - docbook-xsl - libxslt - intltool - gtk-doc - bash-completion - - desktop/gnome/base/dconf/pspec.xml - - - dconf - - dbus - glib2 - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/libexec - - - - dconf-devel - Development files for dconf - - dconf - dbus-devel - glib2-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - - - - dconf-docs - Reference files for dconf - data:doc - - dconf - - - /usr/share/gtk-doc - - - - - 2021-05-24 - 0.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 0.35.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 0.34.0 - Version bump - Erkn IŞIK - erkanisik@pisilinux.org - - - 2019-07-13 - 0.32.0 - Rebuild - Erkn IŞIK - erkanisik@pisilinux.org - - - 2018-07-31 - 0.27.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 0.27.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-01 - 0.26.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.24.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-12 - 0.24.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - nautilus - https://gitlab.gnome.org/GNOME/nautilus - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3 - app:gui - desktop.gnome.base - A file browser for GNOME - Nautilus is a file manager that allows to browse directories, preview files and launch applications. - https://download.gnome.org/sources/nautilus/42/nautilus-42.2.tar.xz - - gettext-devel - glib2-devel - libxslt-devel - gobject-introspection-devel - exempi-devel - gnome-autoar-devel - libarchive-devel - gnome-desktop-devel - gtk3-devel - libexif-devel - libgexiv2-devel - libnotify-devel - libseccomp-devel - libxml2-devel - gst-plugins-base-devel - tracker-devel - tracker-miners - harfbuzz-devel - libhandy-devel - libportal-devel - meson - appstream-glib-devel - - desktop/gnome/base/nautilus/pspec.xml - - - nautilus - - atk - gtk3 - cairo - glib2 - pango - tracker - tracker-miners - libhandy - gstreamer - libgexiv2 - libportal - gdk-pixbuf - gnome-autoar - gnome-desktop - gst-plugins-base - desktop-file-utils - - - /usr/bin - /usr/lib/nautilus - /usr/lib/lib*.so* - /usr/lib/girepository-1.0 - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/applications - /usr/share/icons - /usr/share/nautilus - /usr/share/dbus-1 - /usr/share/glib-2.0 - /usr/share/tracker3 - /usr/share/gnome-shell - /usr/share/metainfo - - - - nautilus-devel - Development files for nautilus - - nautilus - gtk3-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-27 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-12 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-30 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-17 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 40.1 - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - libgnomekbd - https://gitlab.gnome.org/GNOME/libgnomekbd - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv3 - library - desktop.gnome.base - Keyboard management library - Keyboard management library - Keyboard management library - Keyboard management library - https://download.gnome.org/sources/libgnomekbd/3.26/libgnomekbd-3.26.1.tar.xz - - atk-devel - gtk3-devel - cairo-devel - glib2-devel - dconf-devel - pango-devel - libX11-devel - python3-devel - harfbuzz-devel - gdk-pixbuf-devel - libxklavier-devel - gobject-introspection-devel - - desktop/gnome/base/libgnomekbd/pspec.xml - - - libgnomekbd - - atk - gtk3 - cairo - glib2 - pango - libX11 - harfbuzz - gdk-pixbuf - libxklavier - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/GConf - /usr/share/glib-2.0 - /usr/share/libgnomekbd - /usr/share/locale - /usr/share/doc - - - - libgnomekbd-devel - Development files for libgnomekbd - - libgnomekbd - gtk3-devel - glib2-devel - libxklavier-devel - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - - 2021-09-23 - 3.26.1 - Rebuild - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-09 - 3.6.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - libgnome-keyring @@ -11731,84 +12344,875 @@ components such as the Settings and gnome-shell. - zenity - https://help.gnome.org/users/zenity/stable/ + libgnomekbd + https://gitlab.gnome.org/GNOME/libgnomekbd + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + library + desktop.gnome.base + Keyboard management library + Keyboard management library + Keyboard management library + Keyboard management library + https://download.gnome.org/sources/libgnomekbd/3.26/libgnomekbd-3.26.1.tar.xz + + atk-devel + gtk3-devel + cairo-devel + glib2-devel + dconf-devel + pango-devel + libX11-devel + python3-devel + harfbuzz-devel + gdk-pixbuf-devel + libxklavier-devel + gobject-introspection-devel + + desktop/gnome/base/libgnomekbd/pspec.xml + + + libgnomekbd + + atk + gtk3 + cairo + glib2 + pango + libX11 + harfbuzz + gdk-pixbuf + libxklavier + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/GConf + /usr/share/glib-2.0 + /usr/share/libgnomekbd + /usr/share/locale + /usr/share/doc + + + + libgnomekbd-devel + Development files for libgnomekbd + + libgnomekbd + gtk3-devel + glib2-devel + libxklavier-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + + 2021-09-23 + 3.26.1 + Rebuild + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-09 + 3.6.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libgweather + https://gitlab.gnome.org/GNOME/libgweather + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + programming.misc + libgweather is a library to access weather information from online +services for numerous locations. + libgweather is a library to access weather information from online services for numerous locations. + https://download.gnome.org/sources/libgweather/40/libgweather-40.0.tar.xz + + geocode-glib-devel + gtk3-devel + libsoup-devel + glib2-devel + intltool + python3-pygobject3-devel + glade-devel + gtk-doc + gobject-introspection-devel + meson + vala-devel + + desktop/gnome/base/libgweather/pspec.xml + + + libgweather + libgweather is a library to access weather information from online +services for numerous locations. + + geocode-glib + gtk3 + libsoup + libxml2 + glib2 + + + /etc/gconf + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/libgweather + /usr/share/glib-2.0 + /usr/share/vala + /usr/share/icons + /usr/share/glade + + + + libgweather-devel + + libgweather + gtk3-devel + glib2-devel + libsoup-devel + libxml2-devel + geocode-glib-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-03-22 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-23 + 40.0 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2021-04-06 + 3.36.2 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + libgweather4 + https://gitlab.gnome.org/GNOME/libgweather + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + programming.misc + libgweather is a library to access weather information from online +services for numerous locations. + libgweather is a library to access weather information from online services for numerous locations. + https://download.gnome.org/sources/libgweather/4.0/libgweather-4.0.0.tar.xz + + geocode-glib-devel + gtk3-devel + libsoup-devel + glib2-devel + intltool + python3-pygobject3-devel + glade-devel + gtk-doc + gobject-introspection-devel + meson + gi-docgen + vala-devel + + desktop/gnome/base/libgweather4/pspec.xml + + + libgweather4 + libgweather is a library to access weather information from online +services for numerous locations. + + geocode-glib + gtk3 + libsoup + libxml2 + glib2 + + + /etc/gconf + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/libgweather-4 + /usr/share/glib-2.0 + /usr/share/vala + /usr/share/icons + /usr/share/glade + + + + libgweather4-devel + + libgweather4 + gtk3-devel + glib2-devel + libsoup-devel + libxml2-devel + geocode-glib-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-03-21 + 4.0.0 + First release for Pisi Linux + Mustafa Cinasal + muscnsl@gmail.com + + + + + + libhandy + https://gitlab.gnome.org/GNOME/libhandy Pisi Linux Admins admin@pisilinux.org LGPLv2 - app:gui + library desktop.gnome.base - A rewrite of gdialog - Zenity enables you to create the following types of simple dialog: - - Zenity is the GNOME port of dialog which allows you to display dialog boxes from the commandline and shell scripts. - Zenity enables you to create the following types of simple dialog: - - zenity - http://ftp.gnome.org/pub/gnome/sources/zenity/3.42/zenity-3.42.1.tar.xz + Library full of GTK+ widgets for mobile phones + Library full of GTK+ widgets for mobile phones + Cep telefonları için GTK + gereçleriyle dolu kitaplık + Cep telefonları için GTK + gereçleriyle dolu kitaplık + https://download.gnome.org/sources/libhandy/1.6/libhandy-1.6.2.tar.xz meson - itstool - python3 + vala-devel + glade-devel gtk3-devel glib2-devel - gnome-common - libnotify-devel - gdk-pixbuf-devel + gobject-introspection-devel - desktop/gnome/base/zenity/pspec.xml + desktop/gnome/base/libhandy/pspec.xml - zenity + libhandy + atk gtk3 + cairo + glade glib2 pango - libX11 - libnotify + fribidi gdk-pixbuf /usr/bin - /usr/share - /usr/share/help + /usr/lib + /usr/share/gir-1.0 + /usr/share/glade + /usr/share/locale + /usr/share/man + /usr/share/vala + /usr/share/doc + + + + libhandy-devel + Development files for libhandy + + libhandy + gtk3-devel + + + /usr/include + /usr/lib/pkgconfig + + 2022-04-23 + 1.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2022-04-27 - 3.42.1 + 2021-11-12 + 1.5.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-07 - 3.32.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2021-09-21 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-07-13 - 3.32.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2021-06-23 + 1.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-30 - 3.26.0 + 2021-05-24 + 1.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-23 + 1.2.1 + First release. + Pisi Linux Admins + admin@pisilinux.org + + + + + + libhandy0 + https://source.puri.sm/Librem5/libhandy + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + desktop.gnome.base + Library full of GTK+ widgets for mobile phones + libhandy0 provides GTK+ widgets and GObjects to ease developing applications for mobile phones. + https://source.puri.sm/Librem5/libhandy/-/archive/v0.0.13/libhandy-v0.0.13.tar.bz2 + + gtk3-devel + glib2-devel + meson + vala-devel + gobject-introspection-devel + + desktop/gnome/base/libhandy0/pspec.xml + + + libhandy0 + Library full of GTK+ widgets for mobile phones + + gtk3 + glib2 + atk + cairo + pango + gdk-pixbuf + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/libhandy-0.0.so + /usr/lib/libhandy-0.0.so.0 + /usr/share/doc + + + + libhandy0-devel + Development files for libhandy0 + + libhandy0 + gtk3-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2021-07-26 + 0.0.13 Rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-04-06 + 0.0.13 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + libpeas + https://wiki.gnome.org/Projects/Libpeas + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.gnome.base + A gobject-based plugins engine + Gobject tabanlı eklenti motoru + libpeas is a gobject-based plugins engine, and is targetted at giving every application the chance to assume its own extensibility. + mirrors://gnome/libpeas/1.32/libpeas-1.32.0.tar.xz + + meson + vala-devel + gtk-doc + gi-docgen + gtk3-devel + glade-devel + docbook-xsl + glib2-devel + python3-devel + python3-pygobject3-devel + python3-pygobject3-devel + gobject-introspection-devel + + desktop/gnome/base/libpeas/pspec.xml + + + libpeas + + gtk3 + glib2 + python3 + gobject-introspection + + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/gir-1.0 + /usr/share/locale + + + + libpeas-devel + Development files for libpeas + + gtk3-devel + glib2-devel + gobject-introspection-devel + libpeas + + + /usr/include + /usr/lib/pkgconfig + + + + libpeas-doc + Document files for libpeas + + libpeas + + + /usr/share/doc/libpeas-* + + + + + 2022-03-21 + 1.32.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 1.30.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.24.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + librest + http://www.gtk.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.gnome.base + A helper library for RESTful services. + This library was designed to make it easier to access web services that claim to be "RESTful". + http://ftp.acc.umu.se/pub/GNOME/sources/rest/0.8/rest-0.8.1.tar.xz + + gtk-doc + python-six + libsoup-devel + libsoup-gnome + + desktop/gnome/base/librest/pspec.xml + + + librest + + glib2 + libxml2 + libsoup + libsoup-gnome + + + /usr/share + /usr/lib + /usr/bin + + + + librest-devel + Development files for librest + librest için geliştirme dosyaları + + libsoup-devel + librest + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2020-02-08 + 0.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-30 + 0.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 0.8.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2015-03-18 + 0.7.92 + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2015-03-18 + 0.7.92 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libsecret + https://wiki.gnome.org/Projects/Libsecret + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.base + The libsecret package contains a GObject based library + The libsecret package contains a GObject based library for accessing the Secret Service API. + https://ftp.gnome.org/pub/gnome/sources/libsecret/0.20/libsecret-0.20.5.tar.xz + + meson + gtk-doc + vala-devel + libxslt-devel + libgcrypt-devel + glib2-devel + xmlto + intltool + python-six + gi-docgen + gobject-introspection-devel + + desktop/gnome/base/libsecret/pspec.xml + + + libsecret + + libxslt + libgcrypt + glib2 + xmlto + + + /usr/share + /usr/lib + /usr/bin + + + + libsecret-devel + Development files for libsecret + libsecret için geliştirme dosyaları + + libsecret + glib2-devel + libgcrypt-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-03-21 + 0.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-02 + 0.20.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 0.20.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 0.20.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-07-13 + 0.18.8 + version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-08-03 + 0.18.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-22 + 0.18.6 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 0.18.5 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.18 + Release Bump Pisi Linux Community admin@pisilinux.org - 2017-12-24 - 3.26.0 + 2014-06-14 + 0.18 First release + PisiLinux Community + admins@pisilinux.org + + + + + + libwacom + http://sourceforge.net/projects/linuxwacom/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.base + This project manages the libraries, configuration, and diagnostic tools for Wacom tablets running under Linux. + This project manages the libraries, configuration, and diagnostic tools for Wacom tablets running under Linux. It also maintains updated Linux kernel drivers and Xorg/XFree86 XInput drivers. + https://github.com/linuxwacom/libwacom/releases/download/libwacom-1.12/libwacom-1.12.tar.bz2 + + glib2-devel + python3-devel + libgudev-devel + eudev-devel + + desktop/gnome/base/libwacom/pspec.xml + + + libwacom + + glib2 + libgudev + + + /usr/share + /lib/udev + /usr/lib + /usr/bin + + + + libwacom-devel + Development files for libwacom + libwacom için geliştirme dosyaları + + glib2-devel + libwacom + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-04 + 1.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 1.10 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-13 + 0.33 + Version Bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-07-31 + 0.27 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 0.27 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-13 + 0.23 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-08 + 0.18 + First Release Osman Erkan osman.erkan@pisilinux.org @@ -12026,98 +13430,139 @@ components such as the Settings and gnome-shell. - libpeas - https://wiki.gnome.org/Projects/Libpeas + nautilus + https://gitlab.gnome.org/GNOME/nautilus - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - GPLv2 - library + GPLv3 + app:gui desktop.gnome.base - A gobject-based plugins engine - Gobject tabanlı eklenti motoru - libpeas is a gobject-based plugins engine, and is targetted at giving every application the chance to assume its own extensibility. - mirrors://gnome/libpeas/1.32/libpeas-1.32.0.tar.xz + A file browser for GNOME + Nautilus is a file manager that allows to browse directories, preview files and launch applications. + https://download.gnome.org/sources/nautilus/42/nautilus-42.2.tar.xz - meson - vala-devel - gtk-doc - gi-docgen - gtk3-devel - glade-devel - docbook-xsl + gettext-devel glib2-devel - python3-devel - python3-pygobject3-devel - python3-pygobject3-devel + libxslt-devel gobject-introspection-devel + exempi-devel + gnome-autoar-devel + libarchive-devel + gnome-desktop-devel + gtk3-devel + libexif-devel + libgexiv2-devel + libnotify-devel + libseccomp-devel + libxml2-devel + gst-plugins-base-devel + tracker-devel + tracker-miners + harfbuzz-devel + libhandy-devel + libportal-devel + meson + appstream-glib-devel - desktop/gnome/base/libpeas/pspec.xml + desktop/gnome/base/nautilus/pspec.xml - libpeas + nautilus + atk gtk3 + cairo glib2 - python3 - gobject-introspection + pango + tracker + tracker-miners + libhandy + gstreamer + libgexiv2 + libportal + gdk-pixbuf + gnome-autoar + gnome-desktop + gst-plugins-base + desktop-file-utils - /usr/share - /usr/lib + /usr/bin + /usr/lib/nautilus + /usr/lib/lib*.so* + /usr/lib/girepository-1.0 + /usr/libexec + /usr/share/locale /usr/share/man /usr/share/doc - /usr/bin - /usr/share/gir-1.0 - /usr/share/locale + /usr/share/applications + /usr/share/icons + /usr/share/nautilus + /usr/share/dbus-1 + /usr/share/glib-2.0 + /usr/share/tracker3 + /usr/share/gnome-shell + /usr/share/metainfo - libpeas-devel - Development files for libpeas + nautilus-devel + Development files for nautilus + nautilus gtk3-devel glib2-devel - gobject-introspection-devel - libpeas /usr/include - /usr/lib/pkgconfig - - - - libpeas-doc - Document files for libpeas - - libpeas - - - /usr/share/doc/libpeas-* + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + 2022-05-27 + 42.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-12 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-30 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2022-03-21 - 1.32.0 + 2021-09-17 + 41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-05-24 - 1.30.0 + 2021-06-14 + 40.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-29 - 1.24.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2021-05-27 + 40.1 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com @@ -12294,76 +13739,385 @@ components such as the Settings and gnome-shell. - gnome-icon-theme-symbolic - http://www.gnome.org + yelp + https://wiki.gnome.org/Apps/Yelp - Pisi Linux Admins - admin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPLv3 - library - desktop.gnome.lookandfeel - GNOME icon theme, symbolic icons - GNOME icon theme, symbolic icons - GNOME icon theme, symbolic icons - GNOME icon theme, symbolic icons - https://download.gnome.org/sources/gnome-icon-theme-symbolic/3.12/gnome-icon-theme-symbolic-3.12.0.tar.xz + GPLv2 + app:gui + desktop.gnome.base + Help viewer for GNOME desktop + Gnome için Yardım görüntüleyici + Yelp is a help viewer which serves as a DocBook viewer, a man page viewer, and an info page viewer. + Yelp DocBook, man sayfaları ve info sayfaları için bir yardım belgeleri görüntüleyicidir. + mirrors://gnome/yelp/42/yelp-42.1.tar.xz + itstool + gtk-doc intltool - gtk2-devel + xz-devel gtk3-devel - icon-theme-hicolor - icon-naming-utils-devel + sqlite-devel + libxslt-devel + libxml2-devel + libhandy-devel + enchant2-devel + yelp-xsl-devel + webkit2gtk-devel + python-pyliblzma + libseccomp-devel - desktop/gnome/lookandfeel/gnome-icon-theme-symbolic/pspec.xml + desktop/gnome/base/yelp/pspec.xml - gnome-icon-theme-symbolic + yelp + + xz + gtk3 + bzip2 + glib2 + sqlite + libsoup + libhandy + libxml2 + libxslt + webkit2gtk + - /usr/share/icons - /usr/share/pkgconfig + /usr/lib /usr/share/doc + /usr/bin + /usr/share/yelp* + /usr/share/glib-2.0 + /usr/share/applications + /usr/share/metainfo + /usr/share/icons + /usr/share/locale + + + + yelp-devel + Development files for yelp + + yelp + + + /usr/include + /usr/share/gtk-doc + + 2022-03-27 + 42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-05 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-25 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-10 + 40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 3.38.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-06-02 - 3.12.0 + 2020-02-29 + 3.34.0 First release - Pisi Linux Admins - admin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - pisilinux-gnome40-backgrounds - http://www.pisilinux.org/ + yelp-tools + https://github.com/GNOME/yelp-tools - Pisi Linux Admins - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - CC0 - desktop.gnome.lookandfeel - Default wallpaper set for Pisi Linux GNOME40. - Default wallpaper set for Pisi Linux GNOME40. - https://sourceforge.net/projects/pisilinux/files/source/pisilinux-gnome40-backgrounds.tar.gz - desktop/gnome/lookandfeel/pisilinux-gnome40-backgrounds/pspec.xml + GPLv2 + app:gui + desktop.gnome.base + Tools for creating Yelp documentation + Mate için Çeşitli ağ araçları arayüzü uygulaması. + mirrors://gnome/yelp-tools/42/yelp-tools-42.0.tar.xz + + meson + itstool + libxslt-devel + yelp-xsl-devel + python3-lxml + + desktop/gnome/base/yelp-tools/pspec.xml - pisilinux-gnome40-backgrounds + yelp-tools + + itstool + yelp-xsl + python3-lxml + - /usr/share/backgrounds - /usr/share/gnome-background-properties + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/share/yelp-tools + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 40.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 3.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-06-10 - 1.0.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com + 2020-02-13 + 3.32.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + yelp-xsl + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + data + desktop.gnome.base + Yelp XSLT Stylesheets + Yelp XSL biçim dosyaları + Package of yelp-xsl contains XSL stylesheets that are used by the yelp help browser. + yelp-xsl paketi, yelp yardım görüntüleyicisi tarafından kullanılan XSL biçim dosyalarını taşır. + mirrors://gnome/yelp-xsl/42/yelp-xsl-42.0.tar.xz + + libxml2-devel + itstool + + desktop/gnome/base/yelp-xsl/pspec.xml + + + yelp-xsl + + /usr/share/locale + /usr/share/doc + /usr/share/yelp-xsl + + + + yelp-xsl-devel + Development files for yelp-xsl + yelp-xsl paketi için geliştirme dosyaları + + yelp-xsl + + + /usr/share/pkgconfig + + + + + 2022-03-21 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-05 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 3.38.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 3.34.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + zenity + https://help.gnome.org/users/zenity/stable/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.gnome.base + A rewrite of gdialog + Zenity enables you to create the following types of simple dialog: + + Zenity is the GNOME port of dialog which allows you to display dialog boxes from the commandline and shell scripts. + Zenity enables you to create the following types of simple dialog: + + zenity + http://ftp.gnome.org/pub/gnome/sources/zenity/3.42/zenity-3.42.1.tar.xz + + meson + itstool + python3 + gtk3-devel + glib2-devel + gnome-common + libnotify-devel + gdk-pixbuf-devel + + desktop/gnome/base/zenity/pspec.xml + + + zenity + + gtk3 + glib2 + pango + libX11 + libnotify + gdk-pixbuf + + + /usr/bin + /usr/share + /usr/share/help + + + + + 2022-04-27 + 3.42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-07 + 3.32.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2019-07-13 + 3.32.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-30 + 3.26.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-12-24 + 3.26.0 + First release + Osman Erkan + osman.erkan@pisilinux.org @@ -12453,6 +14207,49 @@ components such as the Settings and gnome-shell. + + + gnome-icon-theme-symbolic + http://www.gnome.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + desktop.gnome.lookandfeel + GNOME icon theme, symbolic icons + GNOME icon theme, symbolic icons + GNOME icon theme, symbolic icons + GNOME icon theme, symbolic icons + https://download.gnome.org/sources/gnome-icon-theme-symbolic/3.12/gnome-icon-theme-symbolic-3.12.0.tar.xz + + intltool + gtk2-devel + gtk3-devel + icon-theme-hicolor + icon-naming-utils-devel + + desktop/gnome/lookandfeel/gnome-icon-theme-symbolic/pspec.xml + + + gnome-icon-theme-symbolic + + /usr/share/icons + /usr/share/pkgconfig + /usr/share/doc + + + + + 2021-06-02 + 3.12.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + gnome-themes-extra-community @@ -12504,857 +14301,31 @@ components such as the Settings and gnome-shell. - baobab - https://wiki.gnome.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.gnome.apps - A graphical directory tree analyzer - A graphical directory tree analyzer - Bir grafik dizin ağacı analizörü - Bir grafik dizin ağacı analizörü - https://download.gnome.org/sources/baobab/42/baobab-42.0.tar.xz - - meson - itstool - vala-devel - yelp-tools - gtk4-devel - cairo-devel - glib2-devel - pango-devel - librsvg-devel - libadwaita-devel - libhandy-devel - appstream-glib-devel - gobject-introspection-devel - gsettings-desktop-schemas-devel - - desktop/gnome/apps/baobab/pspec.xml - - - baobab - - gtk4 - cairo - glib2 - pango - libhandy - libadwaita - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/locale - /usr/share/help - /usr/share/metainfo - /usr/share/man - /usr/share/doc - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-01 - 40.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - sysprof - https://wiki.gnome.org/Apps/Sysprof - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.apps - Kernel based performance profiler - Kernel based performance profiler - Çekirdek tabanlı performans profili oluşturucu - Çekirdek tabanlı performans profili oluşturucu - https://download.gnome.org/sources/sysprof/3.44/sysprof-3.44.0.tar.xz - - meson - itstool - gtk3-devel - yelp-tools - glib2-devel - polkit-devel - elogind-devel - libunwind-devel - libdazzle-devel - json-glib-devel - - desktop/gnome/apps/sysprof/pspec.xml - - - sysprof - - gtk3 - cairo - glib2 - pango - polkit - libgcc - libunwind - libdazzle - json-glib - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share - /usr/share/locale - /usr/share/metainfo - /usr/share/doc - - - - sysprof-devel - Development files for sysprof - - sysprof - gtk3-devel - glib2-devel - polkit-devel - libdazzle-devel - json-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-03-21 - 3.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-04 - 3.42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-22 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-08 - 3.40.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - gupnp-av - http://www.gupnp.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - A collection of helpers for building UPnP AV applications - UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu - A collection of helpers for building UPnP AV applications - UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu - gupnp-av - mirrors://gnome/gupnp-av/0.14/gupnp-av-0.14.0.tar.xz - - meson - glib2-devel - gtk-doc - gobject-introspection-devel - libxml2-devel - libsoup-devel - vala-devel - - desktop/gnome/apps/gupnp-av/pspec.xml - - - gupnp-av - - glib2 - libxml2 - - - /usr/bin - /usr/lib/libgupnp* - /usr/lib/girepository-1.0 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/gupnp-av - /usr/share/vala - - - - gupnp-av-devel - gupnp-av için geliştirme dosyaları - - gupnp-av - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-22 - 0.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 0.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 0.12.11 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-font-viewer - https://gitlab.gnome.org/GNOME/gnome-font-viewer - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Utility for previewing fonts for GNOME - Gnome için yazı tipi önizleme aracı - Utility for previewing fonts for GNOME - Gnome için yazı tipi önizleme aracı - gnome-font-viewer - mirrors://gnome/gnome-font-viewer/42/gnome-font-viewer-42.0.tar.xz - - appstream-glib-devel - desktop-file-utils - fontconfig-devel - freetype-devel - glib2-devel - gtk4-devel - libhandy-devel - harfbuzz-devel - gnome-desktop-devel - gettext-devel - meson - graphene-devel - libadwaita-devel - - desktop/gnome/apps/gnome-font-viewer/pspec.xml - - - gnome-font-viewer - - cairo - fontconfig - freetype - gdk-pixbuf - gnome-desktop - gtk4 - glib2 - pango - harfbuzz - libhandy - graphene - libadwaita - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - /usr/share/thumbnailers - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-10 - 40.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - polari - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Internet Relay Chat client for GNOME - GNOME için İnternet Aktarmalı Sohbet istemcisi - Internet Relay Chat client for GNOME - GNOME için İnternet Aktarmalı Sohbet istemcisi - polari - mirrors://gnome/polari/42/polari-42.0.tar.xz - - appstream-glib-devel - meson - gtk4-devel - gjs-devel - gobject-introspection-devel - telepathy-glib-devel - glib2-devel - desktop-file-utils - itstool - yelp-tools - gettext-devel - - desktop/gnome/apps/polari/pspec.xml - - - polari - - gjs - gtk4 - glib2 - telepathy-glib - telepathy-logger - telepathy-mission-control - gobject-introspection - - - /usr/bin - /usr/lib/polari - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - /usr/share/polari - /usr/share/telepathy - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-12 - 40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 3.38.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - rygel - https://wiki.gnome.org/Projects/Rygel - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - A collection of UPnP/DLNA services - UPnP/DLNA hizmetleri koleksiyonu - A collection of UPnP/DLNA services - UPnP/DLNA hizmetleri koleksiyonu - rygel - mirrors://gnome/rygel/0.40/rygel-0.40.3.tar.xz - - desktop-file-utils - dbus-glib-devel - docbook-xsl - gettext-devel - gobject-introspection-devel - gstreamer-devel - gst-editing-services-devel - gtk-doc - gtk3-devel - gupnp-devel - libgee-devel - libmediaart-devel - libsoup-devel - libunistring-devel - meson - sqlite-devel - tracker-devel - tracker-miners - vala-devel - gupnp-av-devel - gupnp-dlna-devel - - desktop/gnome/apps/rygel/pspec.xml - - - rygel - - gtk3 - glib2 - gssdp - gupnp - libgee - sqlite - libsoup - libxml2 - tracker - gupnp-av - gstreamer - gupnp-dlna - libmediaart - libunistring - gst-plugins-base - gst-editing-services - - - /usr/bin - /usr/libexec - /etc/rygel.conf - /usr/lib - /usr/share - /usr/share/locale - - - - rygel-devel - rygel için geliştirme dosyaları - - rygel - libgee-devel - gupnp-av-devel - gstreamer-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-22 - 0.40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-13 - 0.40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-09 - 0.40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 0.40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-22 - 0.40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gupnp-dlna - http://www.gupnp.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - A collection of helpers for building UPnP AV applications - UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu - A collection of helpers for building UPnP AV applications - UPnP AV uygulamaları oluşturmak için yardımcılar koleksiyonu - gupnp-dlna - mirrors://gnome/gupnp-dlna/0.12/gupnp-dlna-0.12.0.tar.xz - - meson - glib2-devel - gobject-introspection-devel - gssdp-devel - gstreamer-devel - gst-plugins-base-devel - gupnp-devel - gupnp-av-devel - libxml2-devel - gtk-doc - vala-devel - - desktop/gnome/apps/gupnp-dlna/pspec.xml - - - gupnp-dlna - - glib2 - libxml2 - gstreamer - gst-plugins-base - - - /usr/bin - /usr/lib/libgupnp-dlna* - /usr/lib/girepository-1.0 - /usr/lib/gupnp-dlna - /usr/share/doc - /usr/share/gtk-doc - /usr/share/gupnp-dlna-2.0 - /usr/share/vala - - - - gupnp-dlna-devel - gupnp-dlna için geliştirme dosyaları - - gupnp-dlna - glib2-devel - gstreamer-devel - gst-plugins-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-09-18 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 0.10.5 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-music - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Music player and management application for GNOME - Gnome için müzik çalar uygulaması - Music player and management application for GNOME - Gnome için müzik çalar uygulaması - gnome-music - mirrors://gnome/gnome-music/42/gnome-music-42.0.tar.xz - - appstream-glib-devel - desktop-file-utils - gettext-devel - git - itstool - gnome-online-accounts-devel - python3-pygobject3-devel - grilo-devel - gtk4-devel - libdazzle-devel - libmediaart-devel - libsoup-devel - meson - python3-cairo-devel - tracker-devel - python3-devel - avahi-ui-gtk3-devel - avahi-devel - avahi-glib-devel - gstreamer-devel - gperf - yelp-tools - lua-devel - libgdata-devel - totem-pl-parser-devel - liboauth-devel - gom-devel - libdmapsharing-devel - gst-plugins-base-devel - grilo-plugins-devel - tracker-miners - libhandy-devel - libadwaita-devel - - desktop/gnome/apps/gnome-music/pspec.xml - - - gnome-music - - gtk4 - cairo - glib2 - pango - libhandy - gdk-pixbuf - - - /usr/bin - /usr/lib/org.gnome.Music - /usr/lib/python3.* - /usr/share/applications - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - /usr/share/org.gnome.Music - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 41.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-19 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-10 - 40.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-disk-utility - https://gitlab.gnome.org/GNOME/gnome-disk-utility + pisilinux-gnome40-backgrounds + http://www.pisilinux.org/ Pisi Linux Admins admins@pisilinux.org - GPLv2 - app:gui - desktop.gnome.apps - Disk Management Utility for GNOME - GNOME libraries and applications for dealing with storage devices - https://download.gnome.org/sources/gnome-disk-utility/42/gnome-disk-utility-42.0.tar.xz - - glib2-devel - gnome-settings-daemon-devel - libcanberra-gtk3-devel - libdvdread-devel - libnotify-devel - libpwquality-devel - libsecret-devel - udisks2-devel - libxslt-devel - libhandy-devel - xz-devel - meson - elogind-devel - - desktop/gnome/apps/gnome-disk-utility/pspec.xml + CC0 + desktop.gnome.lookandfeel + Default wallpaper set for Pisi Linux GNOME40. + Default wallpaper set for Pisi Linux GNOME40. + https://sourceforge.net/projects/pisilinux/files/source/pisilinux-gnome40-backgrounds.tar.gz + desktop/gnome/lookandfeel/pisilinux-gnome40-backgrounds/pspec.xml - gnome-disk-utility - - xz - atk - gtk3 - cairo - glib2 - pango - elogind - udisks2 - libhandy - libnotify - libsecret - gdk-pixbuf - libdvdread - libpwquality - libcanberra-gtk3 - + pisilinux-gnome40-backgrounds - /etc/xdg/autostart - /usr/bin - /usr/libexec - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/man - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/locale - /usr/share/metainfo + /usr/share/backgrounds + /usr/share/gnome-background-properties - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-12 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-06-13 - 40.1 - First release for Pisi Linux. + 2021-06-10 + 1.0.0 + First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -13362,13919 +14333,126 @@ components such as the Settings and gnome-shell. - gnome-dictionary - https://wiki.gnome.org/Apps/Dictionary + glibmm + https://www.gtkmm.org/en/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - app:gui - desktop.gnome.apps - A dictionary application for GNOME - Gnome için bir sözlük uygulaması - A dictionary application for GNOME - Gnome için bir sözlük uygulaması - gnome-dictionary - mirrors://gnome/gnome-dictionary/40/gnome-dictionary-40.0.tar.xz - - appstream-glib-devel - desktop-file-utils - docbook-xsl - gettext-devel - gobject-introspection-devel - gtk3-devel - itstool - libxslt-devel - meson - - desktop/gnome/apps/gnome-dictionary/pspec.xml - - - gnome-dictionary - - gtk3 - cairo - glib2 - pango - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/gdict-1.0 - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - - 2021-06-10 - 40.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-calculator - https://wiki.gnome.org/Apps/Calculator - - Pisi Linux Community + PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - desktop.gnome.apps - A desktop calculator for GNOME - gnome-calculator is an application that solves mathematical equations. - mirrors://gnome/gnome-calculator/42/gnome-calculator-42.1.tar.xz - - desktop-file-utils - itstool - gtk4-devel - gettext-devel - glib2-devel - gtksourceview4-devel - meson - mpfr-devel - libgee-devel - libmpc-devel - libsoup-devel - libhandy-devel - libxml2-devel - vala-devel - libadwaita-devel - gtksourceview5-devel - - desktop/gnome/apps/gnome-calculator/pspec.xml - - - gnome-calculator - - atk - glib2 - gtk4 - mpfr - libgee - libmpc - libsoup - libxml2 - libhandy - gtksourceview4 - libadwaita - gtksourceview5 - - - /usr/bin - /usr/lib/libgcalc* - /usr/lib/libgci* - /usr/lib/gnome-calculator-search-provider - /usr/lib/girepository-1.0 - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/vala - - - - gnome-calculator-devel - - gnome-calculator - gtk3-devel - glib2-devel - libgee-devel - - - /usr/lib/pkgconfig - /usr/include - /usr/share/gir-1.0 - - - - - 2022-05-28 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-06 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-01 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-clocks - https://wiki.gnome.org/Apps/Clocks - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Clock application designed for GNOME 3 - GNOME 3 için tasarlanmış saat uygulaması - Clock application designed for GNOME 3 - GNOME 3 için tasarlanmış saat uygulaması - gnome-clocks - mirrors://gnome/gnome-clocks/42/gnome-clocks-42.0.tar.xz - - appstream-glib-devel - desktop-file-utils - gettext-devel - geocode-glib-devel - geoclue-devel - glib2-devel - gnome-desktop-devel - gobject-introspection-devel - gsound-devel - gtk4-devel - itstool - libadwaita-devel - libgweather4-devel - libcanberra-gtk3-devel - libgweather-devel - libseccomp-devel - libhandy-devel - meson - vala-devel - gtk4-update-icon-cache - - desktop/gnome/apps/gnome-clocks/pspec.xml - - - gnome-clocks - - gtk4 - glib2 - gsound - geoclue - libhandy - libgweather - geocode-glib - gnome-desktop - libadwaita - libgweather4 - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-17 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-09 - 40.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-screenshot - https://gitlab.gnome.org/GNOME/gnome-screenshot - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - A screenshot utility for GNOME - Gnome için ekran görüntüsü yakalma uygulaması - A screenshot utility for GNOME - Gnome için ekran görüntüsü yakalma uygulaması - gnome-screenshot - mirrors://gnome/gnome-screenshot/41/gnome-screenshot-41.0.tar.xz - - gettext-devel - appstream-glib-devel - meson - glib2-devel - gtk3-devel - libcanberra-gtk3-devel - libhandy-devel - libX11-devel - libXext - - desktop/gnome/apps/gnome-screenshot/pspec.xml - - - gnome-screenshot - - gtk3 - cairo - glib2 - libX11 - libXext - libhandy - gdk-pixbuf - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - - 2021-11-14 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnote - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Note-taking application - Not alma uygulaması - Note-taking application - Not alma uygulaması - gnote - mirrors://gnome/gnote/42/gnote-42.0.tar.xz + LGPLv2.1 + library + desktop.gnome2 + C++ interface for glib2 + glib2 kitaplığı için C++ programlama dili arayüzü + Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. + Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance. + Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır. + mirrors://gnome/glibmm/2.66/glibmm-2.66.4.tar.xz meson - boost-devel - desktop-file-utils - gettext-devel - gspell-devel - gtkmm3-devel - gtk2-devel - intltool - itstool - libsecret-devel - libxml2-devel - libxslt-devel - libpcre-devel + libsigc++-devel + glib2-devel + mm-common + perl-XML-Parser - desktop/gnome/apps/gnote/pspec.xml + desktop/gnome2/glibmm/pspec.xml - gnote + glibmm - atk - gtk3 - atkmm - cairo glib2 - pango - glibmm - gspell - gtkmm3 libgcc - cairomm - libxml2 - libxslt - pangomm - enchant2 - harfbuzz - libsecret libsigc++ - gdk-pixbuf - libutil-linux - - - /usr/bin - /usr/lib/libgnote* - /usr/lib/gnote - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/gnote - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - - 2022-03-28 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-09 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-26 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-18 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gssdp - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Resource discovery and announcement over SSDP - SSDP üzerinden kaynak keşfi ve duyuru - Resource discovery and announcement over SSDP - SSDP üzerinden kaynak keşfi ve duyuru - gssdp - mirrors://gnome/gssdp/1.4/gssdp-1.4.0.1.tar.xz - - glib2-devel - gobject-introspection-devel - gtk3-devel - gtk4-devel - gtk-doc - libsoup-devel - meson - vala-devel - gi-docgen - - desktop/gnome/apps/gssdp/pspec.xml - - - gssdp - - gtk4 - glib2 - libsoup - - - /usr/bin - /usr/lib/libgssdp* - /usr/lib/girepository-1.0 - /usr/share/doc - /usr/share/vala - - - - gssdp-devel - gssdp için geliştirme dosyaları - - gssdp - glib2-devel - libsoup-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-30 - 1.4.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 1.4.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-14 - 1.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 1.2.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - epiphany - https://gitlab.gnome.org/GNOME/epiphany - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Intuitive GNOME web browser. - Epiphany is a GNOME web browser based on the WebKit rendering engine. - https://download.gnome.org/sources/epiphany/42/epiphany-42.2.tar.xz - - glib2-devel - itstool - NetworkManager-devel - avahi-glib-devel - gcr-devel - gnome-desktop-devel - json-glib-devel - libdazzle-devel - libhandy-devel - libnotify-devel - libsecret-devel - libsoup-gnome - libwnck3-devel - libxslt-devel - nettle-devel - nss-devel - webkit2gtk-devel - libportal-devel - libsoup-devel - libarchive-devel - appstream-glib-devel - gmp-devel - meson - desktop-file-utils - - desktop/gnome/apps/epiphany/pspec.xml - - - epiphany - - atk - cairo - gcr - gdk-pixbuf - glib2 - gmp - gtk3 - json-glib - libdazzle - libsecret - libsoup - libxml2 - nettle - pango - sqlite - webkit2gtk - libhandy - libportal - libarchive - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/epiphany - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - - 2022-04-22 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-24 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 41.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-16 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-08 - 40.2 - Version bump - Berk Çakar - berk2238@hotmail.com - - - 2021-06-07 - 3.38.5 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - totem - https://wiki.gnome.org/Apps/Videos - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Movie player for GNOME - GNOME için film oynatıcı - Movie player for GNOME - GNOME için film oynatıcı - totem - mirrors://gnome/totem/42/totem-42.0.tar.xz - - cairo-devel - clutter-devel - clutter-gst-devel - clutter-gtk-devel - gnome-desktop-devel - gsettings-desktop-schemas-devel - gstreamer-devel - gst-plugins-base-devel - gtk3-devel - libpeas-devel - totem-pl-parser-devel - gst-plugins-good - gettext-devel - gtk-doc - itstool - python3-devel - meson - vala - appstream-glib-devel - grilo-devel - grilo-plugins-devel - desktop-file-utils - python3-pylint - python3-pygobject3-devel - libhandy-devel - - - 3.38.0-gst-inspect-sandbox.patch - - desktop/gnome/apps/totem/pspec.xml - - - totem - - atk - cogl - gtk3 - cairo - glib2 - grilo - pango - libX11 - clutter - libpeas - libhandy - gstreamer - gdk-pixbuf - clutter-gst - clutter-gtk - gnome-desktop - totem-pl-parser - gst-plugins-base - gobject-introspection - - - /usr/bin - /usr/lib/totem-gallery-thumbnailer - /usr/lib/libtotem* - /usr/lib/girepository-1.0 - /usr/lib/totem - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/GConf - /usr/share/glib-2.0 - /usr/share/gtk-doc - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/thumbnailers - /usr/share/totem - - - - totem-devel - totem için geliştirme dosyaları - - totem - gtk3-devel - glib2-devel - totem-pl-parser-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 3.38.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-21 - 3.38.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 3.38.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-maps - https://gitlab.gnome.org/GNOME/gnome-maps - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - GNOME Maps application - Maps is a map application for GNOME. - https://download.gnome.org/sources/gnome-maps/42/gnome-maps-42.2.tar.xz - - libchamplain-devel - meson - clutter-gtk-devel - geoclue-devel - geocode-glib-devel - libgee-devel - folks-devel - gobject-introspection-devel - gjs-devel - appstream-glib-devel - libhandy-devel - librest-devel - libgweather4-devel - desktop-file-utils - - desktop/gnome/apps/gnome-maps/pspec.xml - - - gnome-maps - - folks - glib2 - libgee - librest - libxml2 - geocode-glib - libchamplain - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-maps - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - - 2022-05-28 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-05 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 40.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-19 - 40.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-10 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 40.2 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-todo - https://git.gnome.org/browse/gnome-todo - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Personal task manager for GNOME - Gnome için kişisel görev yöneticisi - Personal task manager for GNOME - Gnome için kişisel görev yöneticisi - gnome-todo - https://gitlab.gnome.org/GNOME/gnome-todo/-/archive/ac1d540de63e2540b4eb8a642054862b5793b40a/gnome-todo-ac1d540de63e2540b4eb8a642054862b5793b40a.tar.bz2 - - git - meson - itstool - gtk-doc - gtk4-devel - glib2-devel - fribidi-devel - libsass-devel - librest-devel - gettext-devel - libpeas-devel - graphene-devel - libportal-devel - appstream-devel - json-glib-devel - gdk-pixbuf-devel - libadwaita-devel - icon-theme-adwaita - python-pygobject3-devel - gnome-online-accounts-devel - gnome-themes-extra-community - evolution-data-server-devel - - desktop/gnome/apps/gnome-todo/pspec.xml - - - gnome-todo - - gtk4 - glib2 - cairo - pango - fribidi - libical - libpeas - librest - libsass - graphene - json-glib - libportal - gdk-pixbuf - libadwaita - icon-theme-adwaita - evolution-data-server - gnome-online-accounts - gobject-introspection - gnome-themes-extra-community - - - /usr/bin - /usr/lib/gnome-todo - /usr/lib/girepository-1.0 - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-todo - /usr/share/icons - /usr/share/help - /usr/share/locale - /usr/share/metainfo - /usr/share/vala/vapi - /usr/lib/libadwaita-1.so* - - - - gnome-todo-devel - gnome-todo için geliştirme dosyaları - - gtk4-devel - gnome-todo - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-30 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-21 - 41.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 3.28.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-terminal - https://wiki.gnome.org/Apps/Terminal - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.apps - The GNOME Terminal Emulator - The GNOME Terminal Emulator - GNOME Terminal Emülatörü - GNOME Terminal Emülatörü - https://download.gnome.org/sources/gnome-terminal/3.44/gnome-terminal-3.44.1.tar.xz - - meson - itstool - atk-devel - vte-devel - gtk3-devel - yelp-tools - cairo-devel - dconf-devel - glib2-devel - pango-devel - libX11-devel - libpcre2-devel - harfbuzz-devel - nautilus-devel - gdk-pixbuf-devel - gnome-shell - libutil-linux-devel - gsettings-desktop-schemas-devel - - desktop/gnome/apps/gnome-terminal/pspec.xml - - - gnome-terminal - - atk - vte - gtk3 - cairo - dconf - glib2 - pango - libX11 - harfbuzz - nautilus - gdk-pixbuf - libutil-linux - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/applications - /usr/share/dbus-1 - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/locale - /usr/share/help - /usr/share/metainfo - /usr/share/doc - /usr/share/man - - - - - 2022-05-28 - 3.44.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-05 - 3.42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 3.42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-22 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-10 - 3.40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 3.40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 3.40.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - ghex - https://wiki.gnome.org/Apps/Ghex - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - A simple binary editor for the Gnome desktop - Gnome masaüstü için basit bir ikili(binary) düzenleyici - A simple binary editor for the Gnome desktop - Gnome masaüstü için basit bir ikili(binary) düzenleyici - mirrors://gnome/ghex/42/ghex-42.2.tar.xz - - gobject-introspection-devel - desktop-file-utils - gettext-devel - gtk3-devel - gtk4-devel - itstool - meson - - desktop/gnome/apps/ghex/pspec.xml - - - ghex - - atk - cairo - gtk3 - gtk4 - glib2 - pango - - - /usr/bin - /usr/lib/gtkhex-* - /usr/lib/libgtkhex* - /usr/lib/girepository-1.0/Hex-4.typelib - /usr/share/applications - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - ghex-devel - Development files for ghex - ghex için geliştirme dosyaları - - ghex - gtk3-devel - gtk4-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-04-27 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-05 - 3.41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-24 - 3.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-07 - 3.18.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-recipes - https://gitlab.gnome.org/GNOME/recipes - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3 - app:gui - desktop.gnome.apps - Recipe management application for GNOME - GNOME Recipes is an easy-to-use application that will help you to discover what to cook today, tomorrow, rest of the week and for your special occasions. - https://download.gnome.org/sources/gnome-recipes/2.0/gnome-recipes-2.0.4.tar.xz - - gnome-online-accounts-devel - gnome-autoar-devel - gspell-devel - libsoup-devel - libcanberra-devel - librest-devel - json-glib-devel - itstool - meson - - desktop/gnome/apps/gnome-recipes/pspec.xml - - - gnome-recipes - - gtk3 - cairo - glib2 - pango - gspell - librest - libsoup - json-glib - gdk-pixbuf - libcanberra - gnome-online-accounts - - - /usr/bin - /usr/share/applications - /usr/share/appdata - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-recipes - /usr/share/gnome-shell - /usr/share/icons - /usr/share/help - /usr/share/locale - /usr/share/metainfo - /usr/share/mime - - - - - 2022-02-06 - 2.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 2.0.2 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-panel - https://wiki.gnome.org/Projects/GnomePanel - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.apps - Panel of GNOME Flashback - Panel of GNOME Flashback - Panel of GNOME Flashback - Panel of GNOME Flashback - https://download.gnome.org/sources/gnome-panel/3.44/gnome-panel-3.44.0.tar.xz - - itstool - gtk-doc - atk-devel - gtk3-devel - cairo-devel - dconf-devel - yelp-tools - glib2-devel - pango-devel - libX11-devel - gdm-devel - polkit-devel - elogind-devel - libical-devel - libsoup-devel - libxml2-devel - harfbuzz-devel - libwnck3-devel - libXrandr-devel - libsecret-devel - gdk-pixbuf-devel - gnome-menus-devel - libgweather4-devel - gnome-desktop-devel - evolution-data-server-devel - - desktop/gnome/apps/gnome-panel/pspec.xml - - - gnome-panel - - atk - gtk3 - cairo - dconf - glib2 - pango - libX11 - libgdm - polkit - elogind - libical - libsoup - libxml2 - harfbuzz - libwnck3 - libXrandr - libsecret - gdk-pixbuf - gnome-menus - libgweather4 - gnome-desktop - evolution-data-server - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/help - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/gnome-panel - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - gnome-panel-devel - Development files for gnome-panel - - gnome-panel - gtk3-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - gnome-panel-docs - Development files for gnome-panel - - gnome-panel - - - /usr/share/gtk-doc - - - - - 2022-03-21 - 3.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-17 - 3.41.2 - Rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-05-31 - 3.41.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - gnome-weather - https://gitlab.gnome.org/GNOME/gnome-weather - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Access current weather conditions and forecasts for GNOME - A small application that allows you to monitor the current weather conditions for your city, or anywhere in the world. - https://download.gnome.org/sources/gnome-weather/42/gnome-weather-42.0.tar.xz - - glib2-devel - gjs-devel - gtk4-devel - libgweather4-devel - libadwaita-devel - geoclue-devel - libhandy-devel - meson - desktop-file-utils - appstream-glib-devel - - desktop/gnome/apps/gnome-weather/pspec.xml - - - gnome-weather - - gjs - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/org.gnome.Weather - /usr/share/gnome-shell - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 40.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gedit - http://projects.gnome.org/gedit/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Default text editor for GNOME - GNOME için öntanımlı metin editörü - gedit is a small and lightweight text editor for the GNOME environment. - gedit, GNOME ortamı için küçük ve hafif bir metin editörüdür. - mirrors://gnome/gedit/42/gedit-42.1.tar.xz - - desktop-file-utils - gettext-devel - git - glib2-devel - gobject-introspection-devel - gsettings-desktop-schemas-devel - gspell-devel - gtk-doc - gtk3-devel - gtksourceview4-devel - iso-codes - itstool - libpeas-devel - libsoup-devel - libxml2-devel - meson - python3-devel - python3-pygobject3-devel - tepl-devel - vala-devel - yelp-tools - which - - desktop/gnome/apps/gedit/pspec.xml - - - gedit - - atk - amtk - cairo - gdk-pixbuf - glib2 - gtk3 - gtksourceview4 - gobject-introspection - gspell - libpeas - pango - tepl - libxml2 - - - /usr/bin - /usr/lib/gedit - /usr/lib/python3.* - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/gedit - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/vala - - - - gedit-devel - Development files for gedit - gedit için geliştirme dosyaları - - gedit - glib2-devel - gtk3-devel - libpeas-devel - tepl-devel - gtksourceview4-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-27 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 40.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-01 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-contacts - https://gitlab.gnome.org/GNOME/gnome-contacts - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Contacts Manager for GNOME - Contacts is GNOME's integrated address book. Contacts organizes your contacts information from all your online and offline sources, providing a centralized place for managing your contacts. - https://download.gnome.org/sources/gnome-contacts/42/gnome-contacts-42.0.tar.xz - - folks-devel - glib2-devel - vala-devel - cheese-devel - geocode-glib-devel - gnome-desktop-devel - libchamplain-devel - libnotify-devel - libhandy-devel - meson - desktop-file-utils - gnome-online-accounts-devel - appstream-glib-devel - gtk4-devel - libportal-devel - libadwaita-devel - - desktop/gnome/apps/gnome-contacts/pspec.xml - - - gnome-contacts - - atk - gtk4 - cairo - glib2 - pango - folks - cheese - libgee - libhandy - gdk-pixbuf - gnome-desktop - wayland-server - libportal - libadwaita - evolution-data-server - gnome-online-accounts - - - /usr/bin - /usr/libexec - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/man - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/gnome-shell - /usr/share/locale - /usr/share/metainfo - - - - - 2022-03-22 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-29 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-19 - 40.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 40.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gedit-plugins - https://wiki.gnome.org/Apps/Gedit/ShippedPlugins - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Plugins for gedit - gedit için eklentiler - Collection of plugins for the gedit Text Editor - gedit metin editörü için eklentiler - mirrors://gnome/gedit-plugins/42/gedit-plugins-42.1.tar.xz - - atk-devel - cairo-devel - gedit-devel - gettext-devel - gtksourceview3-devel - glib2-devel - itstool - libpeas-devel - meson - python3-devel - python3-pygobject3-devel - vala-devel - vte-devel - yelp-tools - - desktop/gnome/apps/gedit-plugins/pspec.xml - - - gedit-plugins - - gtk3 - gedit - glib2 - libpeas - gtksourceview4 /usr/lib /usr/share/doc - /usr/share/gedit - /usr/share/glib-2.0 - /usr/share/help - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - - 2022-05-27 - 42.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - evolution - https://gitlab.gnome.org/GNOME/evolution - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - LGPLv3 - app:gui - desktop.gnome.apps - Integrated mail, addressbook and calendaring for GNOME. - The Evolution package contains an integrated mail, calendar and address book suite designed for the GNOME environment. - https://download.gnome.org/sources/evolution/3.44/evolution-3.44.2.tar.xz - - gnome-desktop-devel - libcanberra-gtk3-devel - evolution-data-server-devel - gspell-devel - gnome-autoar-devel - libarchive-devel - intltool - itstool - docbook-xsl - cmark-devel - geocode-glib-devel - NetworkManager-devel - yelp-tools - libgdata-devel - webkit2gtk-devel - enchant2-devel - libgweather-devel - libnotify-devel - clutter-gtk-devel - geoclue-devel - geocode-glib-devel - libseccomp-devel - openldap-server - cmake - - desktop/gnome/apps/evolution/pspec.xml - - - evolution - - atk - gcr - nss - gtk3 - nspr - cairo - glib2 - pango - gspell - sqlite - libical - libsoup - libxml2 - enchant2 - libnotify - cmark - geocode-glib - libsecret - gdk-pixbuf - webkit2gtk - libcanberra - libgweather - gnome-autoar - gnome-desktop - openldap-client - evolution-data-server - - - /usr/bin - /usr/lib/evolution-data-server - /usr/lib/evolution - /usr/libexec - /usr/share/GConf - /usr/share/applications - /usr/share/doc - /usr/share/evolution - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/help - /usr/share/locale - /usr/share/man - /usr/share/metainfo - evolution-devel + glibmm-devel + Development files for glibmm + glibmm için geliştirme dosyaları - evolution - gtk3-devel + glibmm glib2-devel - gnome-desktop-devel - evolution-data-server-devel - webkit2gtk-devel + libsigc++-devel /usr/include - /usr/lib/pkgconfig + /usr/lib/glibmm-* + /usr/lib/giomm-* + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/glibmm-* - 2022-05-27 - 3.44.2 + 2022-05-04 + 2.66.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2022-01-07 - 3.42.3 + 2021-10-06 + 2.66.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-12-05 - 3.42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-29 - 3.42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-17 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 3.40.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-10 - 3.40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 3.40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-05 - 3.40.1 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - devhelp - https://wiki.gnome.org/Apps/Notes - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - API documentation browser - API Belgelendirme Tarayıcısı - API documentation browser - API Belgelendirme Tarayıcısı - mirrors://gnome/devhelp/41/devhelp-41.2.tar.xz - - amtk-devel - desktop-file-utils - gettext-devel - gobject-introspection-devel - glib2-devel - gtk3-devel - itstool - gtk-doc - meson - gsettings-desktop-schemas-devel - webkit2gtk-devel - - desktop/gnome/apps/devhelp/pspec.xml - - - devhelp - - amtk - gtk3 - glib2 - pango - webkit2gtk - - - /usr/bin - /usr/lib/libdevhelp* - /usr/lib/gedit - /usr/lib/girepository-1.0 - /usr/share/applications - /usr/share/dbus-1 - /usr/share/devhelp - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - devhelp-devel - Development files for devhelp - devhelp için geliştirme dosyaları - - devhelp - glib2-devel - gtk3-devel - webkit2gtk-devel - gsettings-desktop-schemas-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-10-01 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-27 - 40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 40.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - alacarte - https://gitlab.gnome.org/GNOME/alacarte - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv3 - library - desktop.gnome.apps - Menu editor for gnome - Menu editor for gnome - Gnome için menü düzenleyici - Gnome için menü düzenleyici - https://download.gnome.org/sources/alacarte/3.44/alacarte-3.44.1.tar.xz - - intltool - gtk3-devel - docbook-xsl - gnome-common - libxslt-devel - python3-devel - gnome-menus-devel - python3-cairo-devel - python3-pygobject3-devel - - desktop/gnome/apps/alacarte/pspec.xml - - - alacarte - - /usr/bin - /usr/lib/python* - /usr/share/alacarte - /usr/share/locale - /usr/share/applications - /usr/share/icons - /usr/share/man - /usr/share/doc - - - - - 2022-03-22 - 3.44.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-23 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 3.36.0 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-03 - 3.36.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - lollypop - https://gitlab.gnome.org/World/lollypop - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - desktop.gnome.apps - Music player for GNOME - Music player for GNOME - GNOME için müzik çalar - GNOME için müzik çalar - https://adishatz.org/lollypop/lollypop-1.4.22.tar.xz - - meson - itstool - intltool - gtk3-devel - dbus-python3 - libsoup-devel - libhandy-devel - python3-devel - desktop-file-utils - appstream-glib-devel - python3-pygobject3-devel - gobject-introspection-devel - - desktop/gnome/apps/lollypop/pspec.xml - - - lollypop - - gtk3 - pango - libnotify - libhandy - libsoup - gdk-pixbuf - dbus-python3 - python3-cairo - python3-pillow - appstream-glib - gst-plugins-base - gst-plugins-good - python3-pygobject3 - gobject-introspection - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/applications - /usr/share/dbus-1 - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/icons - /usr/share/lollypop - /usr/share/metainfo - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-10-24 - 1.4.22 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-19 - 1.4.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.4.20 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnome-text-editor - https://gitlab.gnome.org/GNOME/gnome-text-editor - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - desktop.gnome.apps - Text Editor is a simple text editor that focus on session management. - Text Editor is a simple text editor that focus on session management. - Metin Düzenleyici, oturum yönetimine odaklanan basit bir metin düzenleyicidir. - Metin Düzenleyici, oturum yönetimine odaklanan basit bir metin düzenleyicidir. - https://download.gnome.org/sources/gnome-text-editor/42/gnome-text-editor-42.1.tar.xz - - meson - itstool - gtk4-devel - glib2-devel - icu4c-devel - pango-devel - libpcre-devel - enchant2-devel - libadwaita-devel - desktop-file-utils - gtksourceview5-devel - appstream-glib-devel - - desktop/gnome/apps/gnome-text-editor/pspec.xml - - - gnome-text-editor - - gtk4 - glib2 - icu4c - pango - libpcre - enchant2 - libadwaita - gtksourceview5 - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2022-04-22 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-07 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-30 - 41.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnome-system-monitor - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Process and resource monitor - Sistem süreçleri ve kaynak izleyici - Process and resource monitor - Sistem süreçleri ve kaynak izleyici - gnome-system-monitor - mirrors://gnome/gnome-system-monitor/42/gnome-system-monitor-42.0.tar.xz - - libgtop-devel - gtk3-devel - gtkmm3-devel - libhandy-devel - librsvg-devel - libxml2-devel - desktop-file-utils - gettext-devel - itstool - meson - - desktop/gnome/apps/gnome-system-monitor/pspec.xml - - - gnome-system-monitor - - cairo - gdk-pixbuf - gtk3 - glib2 - glibmm - gtkmm3 - libgcc - libgtop - librsvg - libhandy - libsigc++ - pango - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.1 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-builder - https://gitlab.gnome.org/GNOME/gnome-builder - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3 - app:gui - desktop.gnome.apps - An IDE for writing GNOME-based software. - Builder is an IDE for GNOME and a tool to help writing GNOME-based applications. - https://download.gnome.org/sources/gnome-builder/42/gnome-builder-42.1.tar.xz - - appstream-glib-devel - gobject-introspection-devel - gspell-devel - mm-common - vala-devel - python3-sphinx - python3-sphinx_rtd_theme - cairo-devel - llvm-clang-devel - llvm - devhelp-devel - enchant2-devel - flatpak-devel - gtksourceview4-devel - gtk3-devel - json-glib-devel - libdazzle-devel - libgit2-glib-devel - glib2-devel - ostree-devel - libpeas-devel - libxml2-devel - vte-devel - webkit2gtk-devel - sysprof-devel - python3-pygobject3-devel - glade-devel - libportal-devel - meson - jsonrpc-glib-devel - template-glib-devel - libpcre2-devel - elogind-devel - gtk4-devel - libhandy-devel - cmark-devel - - - include-locale_h.patch - - desktop/gnome/apps/gnome-builder/pspec.xml - - - gnome-builder - - vte - cmark - glade - ctags - gspell - cairo - ostree - libpeas - flatpak - sysprof - devhelp - libgit2 - valgrind - libpcre2 - enchant2 - libportal - libdazzle - json-glib - mm-common - llvm-clang - python3-jedi - python-lxml - libgit2-glib - jsonrpc-glib - template-glib - gtksourceview4 - appstream-glib - flatpak-builder - llvm-clang - libhandy - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gtksourceview-4 - /usr/share/gnome-builder - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - gnome-builder-devel - Development files for gnome-builder - - gnome-builder - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-21 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-07 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-17 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 41.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-25 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-14 - 3.40.2 - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - dconf-editor - http://live.gnome.org/dconf - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Gui editor for dconf; simple low-level configuration system - dconf is a low-level configuration system. Its main purpose is to provide a backend to GSettings on platforms that don't already have configuration storage systems. - https://download.gnome.org/sources/dconf-editor/3.38/dconf-editor-3.38.3.tar.xz - - meson - dconf-devel - glib2-devel - libxml2-devel - gtk3-devel - pango-devel - docbook-xsl - libepoxy-devel - at-spi2-core-devel - vala-devel - libxslt - intltool - gtk-doc - - desktop/gnome/apps/dconf-editor/pspec.xml - - - dconf-editor - - dconf - glib2 - gtk3 - - - /usr/bin - /usr/share/applications - /usr/share/bash-completion - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - - - - 2021-05-24 - 3.38.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 3.34.3 + 2.66.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-07-13 - 3.27.3 - Rebuild. - erkan IŞIK - erkanisik@pisilinux.org - - - 2018-08-30 - 3.27.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 3.27.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-30 - 3.16.1 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 3.16.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-12 - 3.16.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gnome-calendar - https://wiki.gnome.org/Apps/Calendar - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Simple and beautiful calendar application designed to fit GNOME 3 - GNOME 3 için tasarlanmış basit ve güzel bir takvim uygulaması - Simple and beautiful calendar application designed to fit GNOME 3 - GNOME 3 için tasarlanmış basit ve güzel bir takvim uygulaması - gnome-calendar - mirrors://gnome/gnome-calendar/42/gnome-calendar-42.1.tar.xz - - appstream-devel - desktop-file-utils - evolution-data-server-devel - geoclue-devel - geocode-glib-devel - gettext-devel - gnome-online-accounts-devel - gsettings-desktop-schemas-devel - geocode-glib-devel - gtk-doc - gtk4-devel - libgweather4-devel - graphene-devel - libadwaita-devel - libdazzle-devel - libhandy-devel - libical-devel - libsoup-devel - meson - python-pygobject3-devel - - desktop/gnome/apps/gnome-calendar/pspec.xml - - - gnome-calendar - - cairo - evolution-data-server - gnome-online-accounts - geoclue - glib2 - gtk4 - libical - libsoup - libhandy - libdazzle - libgweather4 - pango - graphene - libadwaita - - - /usr/bin - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - - 2022-04-27 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-11 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-06 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-08 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gupnp - http://www.gupnp.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - A framework for creating UPnP devices and control points - UPnP cihazları ve kontrol noktaları oluşturmak için bir çerçeve - A framework for creating UPnP devices and control points - UPnP cihazları ve kontrol noktaları oluşturmak için bir çerçeve - gupnp - mirrors://gnome/gupnp/1.4/gupnp-1.4.3.tar.xz - - meson - gtk-doc - vala-devel - gssdp-devel - libsoup-devel - libxml2-devel - gobject-introspection-devel - - desktop/gnome/apps/gupnp/pspec.xml - - - gupnp - - glib2 - gssdp - libsoup - libxml2 - libutil-linux - - - /usr/bin - /usr/lib/libgupnp* - /usr/lib/girepository-1.0 - /usr/share/doc - /usr/share/man - /usr/share/vala - - - - gupnp-devel - gupnp için geliştirme dosyaları - - gupnp - glib2-devel - gssdp-devel - libsoup-devel - libxml2-devel - libutil-linux-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-30 - 1.4.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-14 - 1.4.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-08 - 1.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-07 - 1.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-14 - 1.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 1.2.7 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-notes - https://wiki.gnome.org/Apps/Notes - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Simple Note Viewer - Basit bir not görüntüyeci - Write out notes, every detail matters - GNOME için basit bir note görüntüleyici. - mirrors://gnome/bijiben/40/bijiben-40.1.tar.xz - - desktop-file-utils - gettext-devel - git - glib2-devel - gtk3-devel - itstool - libxml2-devel - meson - vala-devel - yelp-tools - gnome-online-accounts-devel - json-glib-devel - curl-devel - evolution-data-server-devel - libhandy-devel - tracker-devel - webkit2gtk-devel - - desktop/gnome/apps/gnome-notes/pspec.xml - - - gnome-notes - - cairo - curl - evolution-data-server - gnome-online-accounts - gtk3 - glib2 - json-glib - libxml2 - libical - libhandy - pango - tracker - webkit2gtk - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/applications - /usr/share/bijiben - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/mime - - - - - 2021-06-03 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-characters - https://wiki.gnome.org/Design/Apps/CharacterMap - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Character map application for GNOME - GNOME için karakter haritası uygulaması - Character map application for GNOME - GNOME için karakter haritası uygulaması - gnome-characters - mirrors://gnome/gnome-characters/42/gnome-characters-42.0.tar.xz - - desktop-file-utils - gettext-devel - gjs-devel - gobject-introspection-devel - gtk3-devel - gtk4-devel - appstream-glib-devel - libhandy-devel - libunistring-devel - meson - libadwaita-devel - - desktop/gnome/apps/gnome-characters/pspec.xml - - - gnome-characters - - gtk3 - glib2 - pango - libunistring - - - /usr/bin - /usr/lib/org.gnome.Characters - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - /usr/share/org.gnome.Characters - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-09 - 40.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gitg - https://wiki.gnome.org/Apps/Gitg - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - GTK+ graphical interface for the git revision control system - Git sürüm kontrol sistemi için bir GTK tabanlı bir arayüz - GTK+ graphical interface for the git revision control system - Git sürüm kontrol sistemi için bir GTK tabanlı bir arayüz - gitg - mirrors://gnome/gitg/41/gitg-41.tar.xz - - gettext-devel - glib2-devel - gspell-devel - gtksourceview4-devel - gobject-introspection-devel - gsettings-desktop-schemas-devel - gtk3-devel - gtksourceview3-devel - gtkspell3-devel - json-glib-devel - meson - libdazzle-devel - libgee-devel - libgit2-glib-devel - libpeas-devel - libsecret-devel - libsoup-devel - python3-devel - vala-devel - webkit2gtk-devel - - desktop/gnome/apps/gitg/pspec.xml - - - gitg - - gtk3 - cairo - glib2 - pango - libgee - libpeas - libsoup - gspell - json-glib - gtksourceview4 - libxml2 - gtkspell3 - libdazzle - libsecret - gdk-pixbuf - libgit2-glib - gtksourceview3 - gobject-introspection - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/gitg - /usr/lib/lib*.so* - /usr/lib/python3* - /usr/share/applications - /usr/share/gitg - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/man - /usr/share/metainfo - /usr/share/doc - /usr/share/glade - /usr/share/locale - - - - gitg-devel - Development files for gitg - devhelp için geliştirme dosyaları - - gitg - gtk3-devel - glib2-devel - libgee-devel - libdazzle-devel - libgit2-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2021-12-28 - 41 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 3.32.1 - Rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-07-11 - 3.32.1 - Rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-06-08 - 3.32.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - nautilus-python - https://wiki.gnome.org/Projects/NautilusPython - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app - desktop.gnome.apps - Python bindings for the Nautilus Extension API - Python bindings for the Nautilus Extension API - Python bindings for the Nautilus Extension API - Python bindings for the Nautilus Extension API - https://download.gnome.org/sources/nautilus-python/1.2/nautilus-python-1.2.3.tar.xz - - gtk-doc - yelp-tools - gtk3-devel - glib2-devel - python3-devel - nautilus-devel - python3-pygobject3-devel - - - gcc10.patch - - desktop/gnome/apps/nautilus-python/pspec.xml - - - nautilus-python - - gtk3 - glib2 - python3 - nautilus - - - /usr/lib - /usr/share/doc - /usr/share/gtk-doc - - - - nautilus-python-devel - Development files for nautilus-python - - nautilus-python - - - /usr/lib/pkgconfig - - - - - 2021-09-17 - 1.2.3 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-21 - 1.2.3 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - gnome-applets - https://www.gnome.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - desktop.gnome.apps - Small applications for the GNOME Panel - Small applications for the GNOME Panel - GNOME Paneli için küçük uygulamalar - GNOME Paneli için küçük uygulamalar - https://download.gnome.org/sources/gnome-applets/3.44/gnome-applets-3.44.0.tar.xz - - itstool - atk-devel - gtk3-devel - cairo-devel - glib2-devel - libSM-devel - pango-devel - libICE-devel - libX11-devel - polkit-devel - upower-devel - cpupowertools - libgtop-devel - libxml2-devel - tracker-devel - harfbuzz-devel - libwnck3-devel - libnotify-devel - gdk-pixbuf-devel - libgweather4-devel - gnome-panel-devel - wireless-tools-devel - gnome-settings-daemon-devel - - desktop/gnome/apps/gnome-applets/pspec.xml - - - gnome-applets - - atk - gtk3 - cairo - glib2 - libSM - pango - libICE - libX11 - polkit - upower - libgtop - libxml2 - tracker - harfbuzz - libwnck3 - libnotify - gdk-pixbuf - libgweather4 - cpupowertools - gnome-panel - wireless-tools - - - /usr/bin - /etc - /usr/lib - /usr/share/dbus-1 - /usr/share/help - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/gnome-applets - /usr/share/locale - /usr/share/polkit-1 - /usr/share/doc - - - - - 2022-03-21 - 3.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-09 - 3.41.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - gnome-multi-writer - https://gitlab.gnome.org/GNOME/gnome-multi-writer - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Write an ISO file to multiple USB devices at once - GNOME MultiWriter can be used to write an ISO file to multiple USB devices simultaneously. - https://download.gnome.org/sources/gnome-multi-writer/3.35/gnome-multi-writer-3.35.90.tar.xz - - meson - gtk3-devel - libgusb-devel - udisks2-devel - polkit-devel - libgudev-devel - appstream-glib-devel - libcanberra-gtk3-devel - - desktop/gnome/apps/gnome-multi-writer/pspec.xml - - - gnome-multi-writer - - gtk3 - glib2 - polkit - libgusb - udisks2 - libgudev - libcanberra - libcanberra-gtk3 - - - /usr/bin - /usr/libexec - /usr/share/applications - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - /usr/share/polkit-1 - - - - - 2021-08-24 - 3.35.90 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gnome-nettool - https://gitlab.gnome.org/GNOME/gnome-nettool - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Network information tool for GNOME - GNOME için ağ bilgi aracı - Network information tool for GNOME - GNOME için ağ bilgi aracı - gnome-nettool - mirrors://gnome/gnome-nettool/42/gnome-nettool-42.0.tar.xz - - desktop-file-utils - gtk3-devel - intltool - itstool - libgtop-devel - meson - yelp-tools - gnome-common - autoconf-archive - - desktop/gnome/apps/gnome-nettool/pspec.xml - - - gnome-nettool - - gtk3 - cairo - glib2 - pango - libgtop - gdk-pixbuf - - - /usr/bin - /usr/share/applications - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-nettool - /usr/share/help - /usr/share/icons - /usr/share/appdata/gnome-nettool.appdata.xml - /usr/share/locale - - - - - 2022-04-06 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 3.8.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - simple-scan - https://launchpad.net/simple-scan - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.apps - Simple scanning utility - Basit tarayıcı (scanning) uygulması - Simple scanning utility - Basit tarayıcı (scanning) uygulması - simple-scan - mirrors://gnome/simple-scan/42/simple-scan-42.1.tar.xz - - meson - sane-backends-devel - gettext-devel - itstool - appstream-glib-devel - desktop-file-utils - vala-devel - colord-devel - colord-gtk-devel - gobject-introspection-devel - gtk3-devel - libhandy-devel - zlib-devel - libgudev-devel - webp-devel - - - 40.0-add-control-optional-deps.patch - - desktop/gnome/apps/simple-scan/pspec.xml - - - simple-scan - - gtk3 - zlib - cairo - glib2 - libgusb - libhandy - gdk-pixbuf - sane-backends - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - - - - - 2022-04-19 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-24 - 40.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 40.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-23 - 40.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - nautilus-admin - https://github.com/brunonova/nautilus-admin - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.admin - Extension for Nautilus to do administrative operations - Extension for Nautilus to do administrative operations - Extension for Nautilus to do administrative operations - Extension for Nautilus to do administrative operations - https://github.com/brunonova/nautilus-admin/archive/refs/tags/v1.1.9.tar.gz - - cmake - gettext-devel - - desktop/gnome/admin/nautilus-admin/pspec.xml - - - nautilus-admin - - nautilus-python - - - /usr/share/nautilus-python - /usr/share/locale - /usr/share/doc - - - - - 2021-06-21 - 1.1.9 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - gnome-tweaks - https://wiki.gnome.org/Apps/Tweaks - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.addons - Graphical interface for advanced GNOME 3 settings (Tweak Tool) - Graphical interface for advanced GNOME 3 settings (Tweak Tool) - Gelişmiş GNOME 3 ayarları için grafik arayüz - Gelişmiş GNOME 3 ayarları için grafik arayüz - https://download.gnome.org/sources/gnome-tweaks/40/gnome-tweaks-40.10.tar.xz - - meson - libhandy-devel - gnome-shell - gnome-desktop-devel - python3-pygobject3-devel - gnome-settings-daemon-devel - gsettings-desktop-schemas-devel - - desktop/gnome/addons/gnome-tweaks/pspec.xml - - - gnome-tweaks - - /usr/bin - /usr/libexec - /usr/lib/python3.* - /usr/share/applications - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/gnome-tweaks - /usr/share/locale - /usr/share/metainfo - /usr/share/doc - - - - - 2022-03-20 - 40.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 40.0 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-02 - 40.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - eog - https://wiki.gnome.org/Apps/EyeOfGnome - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.addons - Eye of GNOME image viewer - GNOME resim gösterici - Eye of GNOME image viewer - GNOME resim gösterici - eog - mirrors://gnome/eog/42/eog-42.2.tar.xz - - glib2-devel - gtk3-devel - exempi-devel - gdk-pixbuf-devel - glib2-devel - gnome-desktop-devel - gobject-introspection-devel - gsettings-desktop-schemas-devel - lcms2-devel - libexif-devel - libpeas-devel - libportal-devel - librsvg-devel - shared-mime-info - libX11-devel - desktop-file-utils - gettext-devel - gtk-doc - itstool - libjpeg-turbo-devel - meson - zlib-devel - libhandy-devel - appstream-glib-devel - - desktop/gnome/addons/eog/pspec.xml - - - eog - - gtk3 - zlib - cairo - glib2 - lcms2 - exempi - libX11 - libexif - libpeas - librsvg - libhandy - libportal - gdk-pixbuf - gnome-desktop - libjpeg-turbo - gobject-introspection - - - /usr/bin - /usr/lib/eog - /usr/share/applications - /usr/share/doc - /usr/share/eog - /usr/share/GConf - /usr/share/glib-2.0 - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - sleep - - - - eog-devel - eog için geliştirme dosyaları - - eog - gtk3-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-28 - 42.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-05 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-19 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-14 - 40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 40.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gnome-photos - https://wiki.gnome.org/Apps/Photos - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - desktop.gnome.addons - Access, organize, and share your photos on GNOME - Access, organize, and share your photos on GNOME - GNOME'de fotoğraflarınıza erişin, düzenleyin ve paylaşın - GNOME'de fotoğraflarınıza erişin, düzenleyin ve paylaşın - https://download.gnome.org/sources/gnome-photos/42/gnome-photos-42.0.tar.xz - - git - meson - itstool - yelp-tools - atk-devel - atk-devel - gegl-devel - gtk3-devel - cairo-devel - glib2-devel - grilo-devel - pango-devel - libpng-devel - tracker-devel - libgdata-devel - libhandy-devel - libdazzle-devel - libgexiv2-devel - gdk-pixbuf-devel - libgfbgraph-devel - geocode-glib-devel - libjpeg-turbo-devel - gnome-online-accounts-devel - gsettings-desktop-schemas-devel - - desktop/gnome/addons/gnome-photos/pspec.xml - - - gnome-photos - - atk - atk - gegl - gtk3 - cairo - glib2 - grilo - pango - libpng - tracker - libgdata - libhandy - libdazzle - libgexiv2 - gdk-pixbuf - libgfbgraph - geocode-glib - libjpeg-turbo - gnome-online-accounts - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/applications - /usr/share/dbus-1 - /usr/share/help - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/locale - /usr/share/metainfo - /usr/share/doc - - - - - 2022-03-21 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 40.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - tracker - https://gitlab.gnome.org/GNOME/tracker - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - desktop.gnome.addons - Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. - Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. - https://download.gnome.org/sources/tracker/3.3/tracker-3.3.1.tar.xz - - meson - gettext-devel - glib2-devel - vala-devel - asciidoc - dbus-devel - icu4c-devel - json-glib-devel - libsoup-devel - libsoup3-devel - libxml2-devel - sqlite-devel - NetworkManager-devel - bash-completion - gobject-introspection-devel - libxslt-devel - python3-pygobject3-devel - - desktop/gnome/addons/tracker/pspec.xml - - - tracker - - glib2 - icu4c - sqlite - libsoup - libsoup3 - libxml2 - json-glib - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/lib/tracker* - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/tracker3 - /usr/share/bash-completion - /usr/share/dbus-1 - - - - tracker-devel - - tracker - glib2-devel - icu4c-devel - sqlite-devel - libxml2-devel - libsoup-devel - json-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2022-06-01 - 3.3.1 + 2020-01-12 + 2.62.0 Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 3.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 3.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 3.1.1 - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - xdg-user-dirs-gtk - https://www.gnome.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.gnome.addons - Creates user dirs and asks to relocalize them - Creates user dirs and asks to relocalize them - Creates user dirs and asks to relocalize them - Creates user dirs and asks to relocalize them - https://download.gnome.org/sources/xdg-user-dirs-gtk/0.10/xdg-user-dirs-gtk-0.10.tar.xz - - intltool - gtk3-devel - glib2-devel - gnome-common - xdg-user-dirs - - desktop/gnome/addons/xdg-user-dirs-gtk/pspec.xml - - - xdg-user-dirs-gtk - - gtk3 - glib2 - - - /usr/bin - /etc - /usr/lib - /usr/share/locale - /usr/share/doc - - - - - 2021-06-01 - 0.10 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libmanette - https://gnome.pages.gitlab.gnome.org/libmanette/ - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2.1 - library - desktop.gnome.addons - Simple GObject game controller library - Simple GObject game controller library - Basit GObject oyun kumandası kitaplığı - Basit GObject oyun kumandası kitaplığı - https://download.gnome.org/sources/libmanette/0.2/libmanette-0.2.6.tar.xz - - meson - vala-devel - glib2-devel - libevdev-devel - libgudev-devel - gobject-introspection-devel - - desktop/gnome/addons/libmanette/pspec.xml - - - libmanette - - glib2-devel - libevdev-devel - libgudev-devel - - - /usr/bin - /usr/lib - /usr/share/vala - /usr/share/doc - - - - libmanette-devel - Development files for libmanette - - libmanette - glib2-devel - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - - 2021-06-08 - 0.2.6 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - eog-plugins - https://wiki.gnome.org/Apps/EyeOfGnome/Plugins - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.gnome.addons - A collection of plugins for the eog image viewer - eog resim görüntüleyici için bir eklenti koleksiyonu - A collection of plugins for the eog image viewer - eog resim görüntüleyici için bir eklenti koleksiyonu - eog-plugins - mirrors://gnome/eog-plugins/42/eog-plugins-42.1.tar.xz - - meson - libchamplain-devel - clutter-gtk-devel - eog-devel - gsettings-desktop-schemas-devel - libexif-devel - libgdata-devel - libpeas-devel - intltool - python3-devel - - desktop/gnome/addons/eog-plugins/pspec.xml - - - eog-plugins - - atk - eog - cogl - gtk3 - mesa - cairo - glib2 - libXi - pango - libX11 - libdrm - clutter - libXext - libexif - libpeas - libsoup - libxml2 - wayland - harfbuzz - libgdata - libglvnd - json-glib - libXfixes - libXrandr - gdk-pixbuf - libXdamage - clutter-gtk - libchamplain - libxkbcommon - libXcomposite - wayland-client - wayland-cursor - wayland-server - gnome-online-accounts - gobject-introspection - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - - - - - 2022-04-24 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-09 - 3.26.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 3.26.7 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - at-spi2-core - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - service - desktop.misc - Protocol definitions and daemons for D-Bus at-spi - D-Bus at-spi için protokol tanımları ve hizmetleri - at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. - at-spi2-core, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. - mirrors://gnome/at-spi2-core/2.44/at-spi2-core-2.44.1.tar.xz - - meson - gtk-doc - intltool - python-six - dbus-devel - glib2-devel - docbook-xsl - libXi-devel - libX11-devel - libXtst-devel - libxslt-devel - gettext-devel - gobject-introspection-devel - - desktop/misc/at-spi2-core/pspec.xml - - - at-spi2-core - - libXtst - libX11 - dbus - glib2 - - - /etc - /usr/lib - /usr/share/doc - /usr/share/dbus-1 - /usr/share/defaults/at-spi2 - /usr/libexec - /usr/share/gir-1.0 - /usr/share/locale - - - - at-spi2-core-32bit - 32-bit shared libraries for at-spi2-core - emul32 - emul32 - - dbus-32bit - glib2-32bit - libXi-32bit - libX11-32bit - libXtst-32bit - - - dbus-32bit - glib2-32bit - libXi-32bit - libX11-32bit - - - /usr/lib32 - - - - at-spi2-core-docs - at-spi2-core reference documents - data:doc - - at-spi2-core - - - /usr/share/gtk-doc - - - - at-spi2-core-devel - at-spi2-core için geliştirme dosyaları - at-spi2-core için geliştirme dosyaları - - at-spi2-core - dbus-devel - glib2-devel - libXi-devel - libX11-devel - libXtst-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2022-04-22 - 2.44.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2.42.0 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-19 - 2.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-10 - 2.40.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-02 - 2.40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-02 - 2.34.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 2.34.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-21 - 2.30.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-30 - 2.30.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-26 - 2.28.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 2.28.0 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-07 - 2.28.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-19 - 2.28.0 - Version Bump Pisi Linux Community admin@pisilinux.org - 2018-01-17 - 2.26.2 - Version Bump + 2018-09-16 + 2.54.1 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2017-02-13 - 2.20.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.18.3 - Release Bump + 2018-01-08 + 2.54.1 + Version Bump. Pisi Linux Community admin@pisilinux.org - - 2016-05-25 - 2.18.3 - Release Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-01-26 - 2.18.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - ayatana-ido - https://github.com/AyatanaIndicators/ayatana-ido - - fury - uglyside@yandex.ru - - LGPL-3 - library - desktop.misc - Ayatana Indicator Display Objects. - The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop. - https://github.com/AyatanaIndicators/ayatana-ido/archive/refs/tags/0.9.1.tar.gz - - cmake - gtk-doc - gtk3-devel - vala-devel - gobject-introspection-devel - - desktop/misc/ayatana-ido/pspec.xml - - - ayatana-ido - - gtk3 - glib2 - cairo - pango - gdk-pixbuf - - - /usr/lib - /usr/share - - - - ayatana-ido-devel - - glib2-devel - gtk3-devel - ayatana-ido - - - /usr/include/ - /usr/lib/pkgconfig - - - - - 2022-04-14 - 0.9.1 - Version bump - fury - uglyside@yandex.ru - - - 2022-01-18 - 0.9.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-10-13 - 0.8.2 - First build - fury - uglyside@yandex.ru - - - - - - volumeicon - https://github.com/Maato/volumeicon - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - desktop.misc - A lightweight volume control applet with support for global keybindings. - Volume Icon aims to be a lightweight volume control that sits in your systray. - http://nullwise.com/files/volumeicon/volumeicon-0.5.1.tar.gz - - intltool - gtk3-devel - glib2-devel - gettext-devel - alsa-lib-devel - libnotify-devel - - - turkish_translation.patch - ru_translation.patch - ukranian_translation.patch - notify_cflags_set.patch - languas_list.patch - - desktop/misc/volumeicon/pspec.xml - - - volumeicon - - gtk3 - glib2 - cairo - libX11 - alsa-lib - libnotify - gdk-pixbuf - - - /usr/bin/volumeicon - /usr/share - /usr/share/locale - - - - - 2022-05-02 - 0.5.1 - First build. - fury - uglyside@yandex.ru - - - - - - shared-mime-info - http://freedesktop.org/wiki/Software/shared-mime-info - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - data - desktop.misc - The shared MIME info database - Paylaşımlı MIME veritabanı tanımlamaları - shared-mim-info est un paquet contenant un grand nombre de types MIME communs, créés en fusionnant les bases de données KDE et GNOME existantes et en les convertissant au nouveau format, ainsi qu'un logiciel pour mettre à jour cette base en fonction des spécifications de share-mime-info. - shared-mime-info is a package containing a large number of common MIME types, created by converting the existing KDE and GNOME databases to the new format and merging them together, and software for updating the database based on the share-mime-info specification. - Bu pakette büyük miktarda dosya türü bilgisi bulunur. Bu bilgiler mevcut KDE ve GNOME veritabanlarının yeni biçime dönüştürülerek birleştirilmesinden oluşmuştur. Ayrıca, pakette bu veritabanını güncelleyen bir uygulama da bulunmaktadır. - https://gitlab.freedesktop.org/xdg/shared-mime-info/-/archive/2.2/shared-mime-info-2.2.tar.bz2 - https://gitlab.freedesktop.org/xdg/xdgmime/-/archive/95e31875b257058e482342095c72050e4ed56ae3/xdgmime-95e31875b257058e482342095c72050e4ed56ae3.tar.bz2 - - libxml2-devel - glib2-devel - intltool - itstool - xmlto - meson - - desktop/misc/shared-mime-info/pspec.xml - - - shared-mime-info - - libxml2 - glib2 - - - /etc/X11/xinit - /usr/bin - /usr/share/applications - /usr/share/mime - /usr/share/gettext/its - /usr/share/pkgconfig - /usr/share/locale/ - /usr/share/doc - /usr/share/man - - - System.PackageHandler - System.Package - - - update-mime-database.sh - defaults.list - mimeapps.list - mimetypefixes.xml - - - - - 2022-05-07 - 2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-15 - 2.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-28 - 2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-19 - 2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-16 - 1.15 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2019-11-06 - 1.15 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-12-31 - 1.10 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 1.9 - Rebuild New T. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-17 - 1.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 1.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-05 - 1.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - desktop-file-utils - http://www.freedesktop.org/software/desktop-file-utils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.misc - Command line utilities to work with desktop menu entries - Masaüstü menü girdilerini yönetmek için komut satırı araçları - desktop files are used to describe an application for inclusion in GNOME or KDE menus. This package contains desktop-file-validate which checks whether a .desktop file complies with the specification and desktop-file-install which installs a desktop file to the standard directory, optionally fixing it up in the process. - http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.26.tar.xz - - glib2-devel - - desktop/misc/desktop-file-utils/pspec.xml - - - desktop-file-utils - - glib2 - - - /usr/bin - /usr/share/doc - /usr/share/man/man1/ - /usr/share/emacs/site-lisp/desktop-entry-mode.el - - - System.PackageHandler - - - - - 2021-09-22 - 0.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-16 - 0.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 - 0.23 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-18 - 0.23 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-13 - 0.23 - version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-09-07 - 0.21 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xdg-user-dirs - http://freedesktop.org/wiki/Software/xdg-user-dirs - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - desktop.misc - Utilities to handle user data directories - Kullanıcı veri dizinlerini idare etmek için yardımcı uygulamalar - xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. - xdg-user-dirs, masaüstü ve müzik klasörleri gibi belli başlı kullanıcı dizinlerini yönetmek için bir araçtır. Ayrıca dosya adlarının yerelleştirilmesini de (ör. metin çevirileri) idare eder. - http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.17.tar.gz - - gettext-devel - docbook-xsl - libxml2-devel - libxslt-devel - - - defaults.patch - tr17.patch - xdg-user-dirs-0.15-libiconv.patch - - desktop/misc/xdg-user-dirs/pspec.xml - - - xdg-user-dirs - - /etc/X11 - /etc/xdg - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/man - - - xdg-user-dirs.sh - - - - - 2021-01-29 - 0.17 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-08 - 0.17 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 0.17 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 0.17 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-18 - 0.17 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-17 - 0.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 0.15 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-01 - 0.15 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - azfontviewer - http://azsky2.html.xdomain.jp/soft/azfontviewer.html - - fury - uglyside@yandex.ru - - MIT - app:gui - desktop.misc - A font viewer that directly reads and previews font files. - A font viewer that directly reads and previews font files. It uses new mlk gui toolchain. - https://gitlab.com/azelpg/azfontviewer/-/archive/v1.0.2/azfontviewer-v1.0.2.tar.bz2 - - zlib-devel - libX11-devel - libpng-devel - libXext-devel - freetype-devel - libXcursor-devel - fontconfig-devel - - desktop/misc/azfontviewer/pspec.xml - - - azfontviewer - - zlib - libpng - libX11 - libXext - freetype - libXcursor - fontconfig - - - /usr/bin - /usr/share - - - - - 2021-12-11 - 1.0.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-25 - 1.0.1 - First build - fury - uglyside@yandex.ru - - - - - - lightdm - https://github.com/CanonicalLtd/lightdm - - Berk Çakar - berk2238@hotmail.com - - GPL2 - app - desktop.misc - LightDM is a cross-desktop display manager. - LightDM Qt istemci kitaplığı. - LightDM is a cross-desktop display manager. - lightdm, LightDM Qt istemci kitaplıklarını içerir. - lightdm - https://github.com/CanonicalLtd/lightdm/releases/download/1.30.0/lightdm-1.30.0.tar.xz - - itstool - intltool - python3-devel - libxklavier-devel - gobject-introspection-devel - pam-devel - libgcrypt-devel - gtk3-devel - libxml2-devel - dbus-glib-devel - libxcb-devel - libXdmcp-devel - qt5-base-devel - vala-devel - libpcre-devel - accountsservice-devel - audit-devel - - - lightdm-default-config.patch - - desktop/misc/lightdm/pspec.xml - - - lightdm - - pam - audit - glib2 - libX11 - libxcb - libXdmcp - libgcrypt - libxklavier - - - /etc - /usr/bin - /usr/lib/liblightdm-gobject-1.so* - /usr/libexec - /usr/lib/lightdm/lightdm-guest-session - /usr/lib/tmpfiles.d - /usr/lib/girepository-1.0 - /usr/share/accountsservice - /usr/share/bash-completion - /usr/share/dbus-1 - /usr/share/gtk-doc - /usr/share/help - /usr/share/locale - /usr/share/man - /usr/share/polkit-1 - - - gdm - lxdm - sddm - - - System.Service - System.Package - - - - lightdm-devel - LightDM is a cross-desktop display manager. - development - - lightdm - glib2-devel - libX11-devel - libxklavier-devel - - - /usr/include/lightdm-gobject-1 - /usr/lib/pkgconfig/liblightdm-gobject-1.pc - /usr/share/gir-1.0 - /usr/share/vala - - - - liblightdm-qt5 - Qt5 library for LightDM. - lightdm - - libgcc - lightdm - qt5-base - - - /usr/lib/liblightdm-qt5-3.so* - - - - liblightdm-qt5-devel - LightDM is a cross-desktop display manager. - development - - liblightdm-qt5 - qt5-base-devel - - - /usr/include/lightdm-qt5-3 - /usr/lib/pkgconfig/liblightdm-qt5-3.pc - - - - - 2022-06-03 - 1.30.0 - Rebuild for qt5 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-06-05 - 1.30.0 - Rebuild. - Berk Çakar - berk2238@hotmail.com - - - 2021-05-04 - 1.30.0 - First Release. - Berk Çakar - berk2238@hotmail.com - - - - - - pisi-lightdm-greeter - https://github.com/ayhanyalcinsoy/pisi-lightDM-greeter - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - LGPLv3 - desktop.misc - Qt5 greeter for LightDM - LightDM için Qt tabanlı bir giriş ekranı - Qt5 greeter for LightDM - LightDM için Qt tabanlı bir giriş ekranı - lightdm - https://github.com/ayhanyalcinsoy/pisi-lightDM-greeter/archive/refs/tags/v0.97.5.tar.gz - - lightdm-devel - liblightdm-qt5-devel - qt5-base-devel - extra-cmake-modules - qt5-webengine-devel - qt5-x11extras-devel - qt5-linguist - libXcursor-devel - libXrandr-devel - - desktop/misc/pisi-lightdm-greeter/pspec.xml - - - pisi-lightdm-greeter - - libX11 - libgcc - qt5-base - libXrandr - libXcursor - qt5-webengine - qt5-x11extras - liblightdm-qt5 - lightdm - - - /usr/bin - /etc - /usr/share/local - /usr/share/icons - /usr/share/xgreeters - /usr/share/doc - /usr/share/lightdm - - - - - 2022-01-22 - 0.97.5 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-06-04 - 0.97.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-30 - 0.97.4 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - sddm - https://github.com/sddm/sddm - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.misc - QML based X11 and Wayland display manager - QML tabanlı X11 ve Wayland ekran yöneticisi. - KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings - https://github.com/sddm/sddm/releases/download/v0.19.0/sddm-0.19.0.tar.xz - https://github.com/sebo28/Sweet-Cat/archive/v0.1.tar.gz - - docutils - pam-devel - qt5-linguist - libxcb-devel - dejavu-fonts - elogind-devel - qt5-base-devel - python-docutils - fontconfig-devel - libxkbfile-devel - extra-cmake-modules - qt5-graphicaleffects - qt5-declarative-devel - qt5-quickcontrols2-devel - - - sddm-0.19.0-consolidate-1.patch - 0002-sddm-fix-build.patch - - desktop/misc/sddm/pspec.xml - - - sddm - - pam - libgcc - libxcb - elogind - qt5-base - fontconfig - dejavu-fonts - qt5-declarative - qt5-quickcontrols2 - qt5-graphicaleffects - - - /etc - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - gdm - lightdm - lxdm - mdm - gdm - slim - - - System.Service - System.Package - - - sddm.conf - 10-backlight.rules - - - - - 2022-05-17 - 0.19.0 - conf file move to /usr/lib/sddm/sddm.conf.d - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-02-27 - 0.19.0 - fix deps - Kamil Atlı - suvari@pisilinux.org - - - 2021-08-10 - 0.19.0 - fix deps - Kamil Atlı - suvari@pisilinux.org - - - 2021-06-04 - 0.19.0 - Rebuild. - Berk Çakar - berk2238@hotmail.com - - - 2021-01-09 - 0.19.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-07 - 0.19.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 0.18.1 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-10-29 - 0.18.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-10-12 - 0.18.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-02-22 - 0.18.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-18 - 0.14.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 0.14.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 0.14.0 - Rebuild. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-19 - 0.14.0 - Rebuild. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-05 - 0.14.0 - Rebuild. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 0.14.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-09-07 - 0.13.0 - Add conflict list - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-08-14 - 0.13.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-07-15 - 0.13.0 - Fix session authorization issue and add rules - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-18 - 0.13.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dunst - https://dunst-project.org/ - - fury - uglyside@yandex.ru - - BSD-3-Clause - service - desktop.misc - Lightweight and customizable notification daemon. - Dunst is a lightweight replacement for the notification daemons provided by most desktop environments. It’s very customizable, isn’t dependent on any toolkits, and therefore fits into those window manager centric setups we all love to customize to perfection. - https://github.com/dunst-project/dunst/archive/refs/tags/v1.8.1.tar.gz - - dbus-devel - glib2-devel - cairo-devel - pango-devel - libX11-devel - libXrandr-devel - libnotify-devel - libXinerama-devel - libXScrnSaver-devel - wayland-devel - wayland-cursor - wayland-client - wayland-protocols-devel - - desktop/misc/dunst/pspec.xml - - - dunst - - dbus - glib2 - cairo - pango - libX11 - libXext - libXrandr - libnotify - gdk-pixbuf - libXinerama - libXScrnSaver - wayland-cursor - wayland-client - - - /etc/dunst/dunstrc - /usr/bin - /usr/share/dbus-1 - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 1.8.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-11 - 1.7.3 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-02 - 1.7.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-02 - 1.7.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-13 - 1.6.1 - First build - fury - uglyside@yandex.ru - - - - - - at-spi2-atk - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - service - desktop.misc - Protocol definitions and daemons for D-Bus at-spi - at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. - mirrors://gnome/at-spi2-atk/2.38/at-spi2-atk-2.38.0.tar.xz - - meson - at-spi2-core-devel - glib2-devel - atk-devel - libX11-devel - dbus-devel - libXtst-devel - libxml2-devel - - desktop/misc/at-spi2-atk/pspec.xml - - - at-spi2-atk - - atk - dbus - glib2 - at-spi2-core - - - /usr/lib - /usr/share/doc - - - - at-spi2-atk-32bit - 32-bit shared libraries for at-spi2-atk - emul32 - emul32 - - at-spi2-core-32bit - atk-32bit - dbus-32bit - glib2-32bit - libxml2-32bit - - - atk-32bit - dbus-32bit - glib2-32bit - at-spi2-core-32bit - - - /usr/lib32 - - - - at-spi2-atk-devel - at-spi2-atk için geliştirme dosyaları - at-spi2-atk için geliştirme dosyaları - - at-spi2-atk - glib2-devel - at-spi2-core-devel - - - /usr/lib32/pkgconfig - /usr/lib/pkgconfig - /usr/include - - - - - 2022-04-27 - 2.38.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2.38.0 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-02 - 2.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 2.34.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-21 - 2.30.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-26 - 2.26.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 2.26.2 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-19 - 2.26.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-17 - 2.26.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-28 - 2.22.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.18.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.18.1 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-01-26 - 2.18.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - picom - https://github.com/yshui/picom/ - - fury - uglyside@yandex.ru - - MIT - MPL-2 - app - desktop.misc - A compositor for X11. - This is forked from the original Compton because it seems to have become unmaintained. - https://github.com/yshui/picom/archive/refs/tags/v9.1.tar.gz - - cmake - meson - uthash - asciidoc - dbus-devel - mesa-devel - libev-devel - pixman-devel - libxcb-devel - libX11-devel - libpcre-devel - libxslt-devel - libglvnd-devel - libXext-devel - libconfig-devel - xcb-util-image-devel - xcb-util-renderutil-devel - - - config.patch - - desktop/misc/picom/pspec.xml - - - picom - - dbus - mesa - libev - libX11 - libxcb - pixman - libpcre - libglvnd - libconfig - xcb-util-image - xcb-util-renderutil - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2021-04-14 - 9.1 - First build. - fury - uglyside@yandex.ru - - - - - - lightdm-gtk-greeter - https://github.com/Xubuntu/lightdm-gtk-greeter - - Berk Çakar - berk2238@hotmail.com - - GPLv2 - app:gui - desktop.misc - Login screen using the LightDM framework. - Login screen using the LightDM framework. - https://github.com/Xubuntu/lightdm-gtk-greeter/archive/refs/tags/lightdm-gtk-greeter-2.0.8.tar.gz - - gtk3-devel - cairo-devel - gdk-pixbuf-devel - libxklavier-devel - exo-devel - xfce4-dev-tools - gobject-introspection-devel - lightdm-devel - - desktop/misc/lightdm-gtk-greeter/pspec.xml - - - lightdm-gtk-greeter - - lightdm - gtk3 - cairo - glib2 - libX11 - gdk-pixbuf - libxklavier - - - /usr/bin/lightdm-gtk-greeter - /usr/share/locale - /etc - /usr/share - - - - - 2021-04-20 - 2.0.8 - First release. - Berk Çakar - berk2238@hotmail.com - - - - - - pisi-appstream-data - https://github.com/pisilinux/pisi-appstream-data - - Pisi Linux Admins - admins@pisilinux.org - - CC-BY-SA 3.0 - data - desktop.misc - Appstream data for Pisi GNU/Linux - Appstream data for Pisi GNU/Linux in order to be used in applications such as GNOME Software, KDE Discover etc. - https://github.com/pisilinux/pisi-appstream-data/archive/refs/tags/20210710.tar.gz - - appstream-glib-devel - - desktop/misc/pisi-appstream-data/pspec.xml - - - pisi-appstream-data - - /usr/share/app-info/xmls - /usr/share/app-info/icons - - - - - 2021-07-10 - 20210710 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - cairo-dock - https://glx-dock.org/ - - Ali Cengiz Kurt - alicengizkurt@gmail.com - - GPLv3 - LGPLv2 - app:gui - desktop.misc - Cairo-Dock, masaüstünüz için güzel, hafif ve kullanışlı bir arayüzdür, avantajlı bir şekilde sistem panelinizi değiştirebilir! - Schöner Dock (Startleiste für Programme) mit vielen Animationen - A pretty, light and convenient interface to your desktop, able to replace advantageously your system panel. - Ładny, lekki i wygodny interfejs dla twojego pulpitu. - Cairo-Dock, masaüstünüz için güzel, hafif ve kullanışlı bir arayüzdür, avantajlı bir şekilde sistem panelinizi değiştirebilir! Çoklu bağlantı noktaları, görev çubuğu, başlatıcılar ve birçok kullanışlı uygulama içerir. - cairo/glx-dock ist eine auf dem Desktop angezeigte hoch konfigurierbare animierte Programmstart-Leiste, die sich am Dock von MacOS-X anlehnt. - Cairo-Dock is a pretty, light and convenient interface to your desktop, able to replace advantageously your system panel! It features multi-docks, taskbar, launchers and a lot of useful applets. - Posiada wiele przydatnych apletów, które mogą być oderwane od stacji dokującej jak widżety pulpitu. Dostępne jest też do pobrania wiele gotowych do wykorzystania motywów. - cairo-dock - https://launchpad.net/cairo-dock-core/3.4/3.4.1/+download/cairo-dock-3.4.1.tar.gz - - cmake - gtk3-devel - curl-devel - cairo-devel - pango-devel - glib2-devel - libX11-devel - libxml2-devel - libXtst-devel - wayland-devel - librsvg-devel - gtkglext-devel - libglvnd-devel - mesa-glu-devel - gtkglext-devel - libXrandr-devel - dbus-glib-devel - dbus-glib-devel - libXrender-devel - libXinerama-devel - libXcomposite-devel - - desktop/misc/cairo-dock/pspec.xml - - - cairo-dock - - gtk3 - curl - cairo - glib2 - pango - libX11 - wayland - libxml2 - librsvg - libXtst - mesa-glu - libglvnd - dbus-glib - libXrandr - gdk-pixbuf - libXrender - libXinerama - libXcomposite - wayland-client - - - /usr/bin - /usr/lib/cairo-dock - /usr/share/cairo-dock - /usr/share/applications - /usr/share/pixmaps - /etc - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/lib/libgldi.so* - - - - cairo-dock-devel - - curl-devel - dbus-devel - gtk3-devel - cairo-devel - glib2-devel - libX11-devel - libXtst-devel - librsvg-devel - libxml2-devel - wayland-devel - libglvnd-devel - mesa-glu-devel - dbus-glib-devel - libXrandr-devel - libXrender-devel - libXcomposite-devel - cairo-dock - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-31 - 3.4.1 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - xdg-utils - https://www.freedesktop.org/wiki/Software/xdg-utils - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - desktop.misc - Utilitaires de bureaux communs. - Common desktop utilities - Ortak masaüstü komutları - Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. - https://portland.freedesktop.org/download/xdg-utils-1.1.3.tar.gz - - xmlto - docbook-xsl - util-linux - libxslt - lynx - - - 0001_better_pcmanfm_check.patch - - desktop/misc/xdg-utils/pspec.xml - - - xdg-utils - - /usr/bin - /usr/share/man - - - - - 2020-01-07 - 1.1.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-25 - 1.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 1.1.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-17 - 1.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-05 - 1.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - 2017-02-17 - 1.1.0_20140207 - Release Bump + 2.50.0 + Version Bump. Pisi Linux Community admin@pisilinux.org 2016-06-09 - 1.1.0_20140207 + 2.44.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-02-16 - 1.1.0_20140207 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - startup-notification - http://www.freedesktop.org/software/startup-notification/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.misc - Application startup notification and feedback library - Uygulama başlangıç duyurusu ve geribildirim sistemi - startup-notification est un exemple d'implémentation de notification de démarrage (indiquant à l'environnement bureautique qu'une application a fini de démarrer). - startup-notification is a sample implementation of startup notification (telling the desktop environment when an app is done starting up). - startup-notification, bir program başlatıldığında bunu masaüstü ortamına bildirir. - http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz - - libX11-devel - libxcb-devel - xcb-util-devel - - desktop/misc/startup-notification/pspec.xml - - - startup-notification - - libX11 - libxcb - xcb-util - - - /usr/lib - /usr/share/doc - - - - startup-notification-devel - Development files for startup-notification - startup-notification için geliştirme dosyaları - - startup-notification - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/*/*.txt - - - - - 2020-02-02 - 0.12 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.12 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 0.12 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 0.12 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - nitrogen - https://github.com/l3ib/nitrogen - - fury - uglyside@yandex.ru - - GPL-2 - app - desktop.misc - Background browser and setter for X windows. - pass - https://github.com/l3ib/nitrogen/archive/5fe0018ddc6abccd119215d4222941940ada53a6.zip - - gtk2-devel - gtkmm-devel - libX11-devel - libXinerama-devel - - desktop/misc/nitrogen/pspec.xml - - - nitrogen - - gtk2 - atkmm - glib2 - gtkmm - glibmm - libX11 - libgcc - pangomm - libsigc++ - libXinerama - - - /usr/bin/nitrogen - /usr/share - /usr/share/locale - /usr/share/man/man1 - - - - - 2021-12-12 - 2021.03.31 - First build from git. - fury - uglyside@yandex.ru - - - - - - diodon - https://github.com/diodon-dev/diodon - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - desktop.misc - Clipboard manager. - Aiming to be the best integrated clipboard manager for the Unity desktop. - https://launchpad.net/diodon/trunk/1.12.0/+download/diodon-1.12.0.tar.xz - - cmake - meson - gtk3-devel - vala-devel - glib2-devel - libpeas-devel - libxslt-devel - zeitgeist-devel - xorg-server-xvfb - desktop-file-utils - ayatana-libappindicator-devel - - desktop/misc/diodon/pspec.xml - - - diodon - - gtk3 - glib2 - libX11 - libXtst - libpeas - zeitgeist - gdk-pixbuf - ayatana-libappindicator - - - /etc/xdg - /etc/apport - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - - - - diodon-devel - - diodon - glib2-devel - gtk3-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-02-04 - 1.12.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-13 - 1.11.1 - First build - fury - uglyside@yandex.ru - - - - - - ayatana-libindicator - https://github.com/AyatanaIndicators/libayatana-indicator - - fury - uglyside@yandex.ru - - GPL-3 - library - desktop.misc - Ayatana Indicators Shared Library. - The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop. - https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.9.0.tar.gz - - cmake - gtk3-devel - glib2-devel - python3-devel - ayatana-ido-devel - - desktop/misc/ayatana-libindicator/pspec.xml - - - ayatana-libindicator - - gtk3 - glib2 - gdk-pixbuf - ayatana-ido - - - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share - - - - ayatana-libindicator-devel - - gtk3-devel - glib2-devel - ayatana-ido-devel - ayatana-libindicator - - - /usr/include/ - /usr/lib/pkgconfig - - - - - 2022-01-18 - 0.9.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-10-13 - 0.8.4 - First build - fury - uglyside@yandex.ru - - - - - - grim - https://github.com/emersion/grim - - Idris Kalp - idriskalp@gmail.com - - MIT - app:console - desktop.misc - Screenshot utility for Wayland. - Wayland için ekran görüntüsü yardımcı programı. - grim is a tool to take screenshots on Wayland sessions. - grim, Wayland oturumlarında ekran görüntüsü almak için bir araçtır. - https://github.com/emersion/grim/releases/download/v1.4.0/grim-1.4.0.tar.gz - - meson - ninja - libpng-devel - pixman-devel - wayland-devel - wayland-client - bash-completion - libjpeg-turbo-devel - wayland-protocols-devel - - desktop/misc/grim/pspec.xml - - - grim - - libpng - pixman - libjpeg-turbo - wayland-client - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-02-22 - 1.4.0 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - packagekit - https://www.freedesktop.org/software/PackageKit/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - desktop.misc - A system designed to make installation and updates of packages easier. - PackageKit is a system designed to make installing and updating software on your computer easier. The primary design goal is to unify all the software graphical tools used in different distributions, and use some of the latest technology like PolicyKit. - http://www.freedesktop.org/software/PackageKit/releases/PackageKit-1.1.5.tar.xz - - sqlite-devel - gtk3-devel - gtk2-devel - intltool - polkit-devel - python3-devel - elogind-devel - gobject-introspection-devel - - desktop/misc/packagekit/pspec.xml - - - packagekit - - atk - gtk2 - gtk3 - cairo - glib2 - pango - sqlite - freetype - harfbuzz - fontconfig - gdk-pixbuf - - - /var - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/doc - /usr/share/gtk-doc - /usr/share/bash-completion - /usr/share/dbus-1 - /usr/share/PackageKit - /usr/share/polkit-1 - - - pisi.conf - - - - packagekit-devel - Development files for packagekit - - packagekit - glib2-devel - sqlite-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-06-05 - 1.1.5 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - ayatana-libappindicator - https://github.com/AyatanaIndicators/libayatana-appindicator - - fury - uglyside@yandex.ru - - LGPL-3 - library - desktop.misc - A library to allow applications to export a menu into the Unity Menu bar. - A library to allow applications to export a menu into the Unity Menu bar. - https://github.com/AyatanaIndicators/libayatana-appindicator/archive/refs/tags/0.5.90.tar.gz - - cmake - gtk-doc - gtk3-devel - vala-devel - python3-devel - libdbusmenu-gtk3 - libdbusmenu-devel - python3-pygobject3-devel - ayatana-libindicator-devel - gobject-introspection-devel - - desktop/misc/ayatana-libappindicator/pspec.xml - - - ayatana-libappindicator - - atk - gtk3 - glib2 - cairo - pango - gdk-pixbuf - libdbusmenu-gtk3 - libdbusmenu-glib - ayatana-libindicator - - - /usr/lib - /usr/share - /usr/share/doc - - - - ayatana-libappindicator-devel - - ayatana-libappindicator - gtk3-devel - libdbusmenu-gtk - libdbusmenu-glib - libdbusmenu-devel - ayatana-libindicator-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-01-18 - 0.5.90 - Version bump - fury - uglyside@yandex.ru - - - 2021-10-13 - 0.5.5 - First build - fury - uglyside@yandex.ru - - - - - - gromit-mpx - https://github.com/bk138/gromit-mpx - - fury - uglyside@yandex.ru - - GPL-2 - app - desktop.misc - Gromit-MPX is a multi-pointer GTK3 port of the original Gromit desktop annotation tool. - It enables graphical annotations with several pointers at once and is A LOT faster than its predecessor since it uses the XCOMPOSITE extension where available. - https://github.com/bk138/gromit-mpx/archive/refs/tags/1.4.2.tar.gz - - cmake - gtk3-devel - libXi-devel - libX11-devel - libdbusmenu-devel - ayatana-libappindicator-devel - - desktop/misc/gromit-mpx/pspec.xml - - - gromit-mpx - - gtk3 - cairo - glib2 - libXi - libX11 - gdk-pixbuf - ayatana-libappindicator - - - /usr/bin - /etc/gromit-mpx - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 1.4.2 - Version bump. - fury - uglyside@yandex.ru - - - 2022-02-05 - 1.4.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-26 - 1.4 - First build. - fury - uglyside@yandex.ru - - - - - - lxdm - http://lxde.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - LGPLv2 - app:gui - desktop.misc - LXDE Display Manager - LXDE Ekran Yöneticisi - LXDM is the future display manager of LXDE. - LXDM, LXDE için bir ekran yöneticisidir. - mirrors://sourceforge/lxdm/lxdm-0.5.3.tar.xz - https://sourceforge.net/projects/pisilinux/files/source/lxdm-pisilinux-theme2.zip - - intltool - iso-codes-devel - gtk3-devel - gettext-devel - pam-devel - elogind-devel - cairo-devel - pango-devel - dbus-devel - glib2-devel - libX11-devel - libxcb-devel - gdk-pixbuf-devel - at-spi2-atk-devel - at-spi2-core-devel - - - onscreenkeyboard.patch - customization-for-pisilinux.patch - lxdm-0.5.3-upstream-fixes.patch - - desktop/misc/lxdm/pspec.xml - - - lxdm - - pam - gtk3 - cairo - pango - glib2 - gdk-pixbuf - libX11 - libxcb - elogind - - - /etc - /usr/sbin - /usr/bin - /usr/libexec - /usr/share/locale - /usr/share - /etc/conf.d/xdm - - - pisi-lightdm-greeter - lightdm - sddm - mdm - gdm - slim - - - System.Service - - - lxdm.desktop - lxdm - - - - - 2021-12-07 - 0.5.3 - Added new pisilinux theme - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-04 - 0.5.3 - LXDM rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-02-11 - 0.5.3 - Added new pisilinux theme - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-02-10 - 0.5.3 - Added new pisilinux theme - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-04-21 - 0.5.3 - Rebuild at-spi2. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-18 - 0.5.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-07 - 0.5.3 - Rebuild revert - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-10 - 0.5.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 0.5.3 - set default session KDE5 - Ayhan Yalçınsoy - ayhanyalcinsoy@gmail.com - - - 2017-11-19 - 0.5.3 - set default session KDE5 - Ayhan Yalçınsoy - ayhanyalcinsoy@gmail.com - - - 2017-09-23 - 0.5.3 - set background and icon - Ayhan Yalçınsoy - ayhanyalcinsoy@gmail.com - - - 2017-05-06 - 0.5.3 - Fix service start on virtual machine - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-09-29 - 0.5.1 - Fix service start on virtual machine - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-08-23 - 0.5.1 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - grub-customizer - https://launchpad.net/grub-customizer/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - desktop.misc - A graphical grub2 settings manager - A graphical grub2 settings manager - A graphical grub2 settings manager - A graphical grub2 settings manager - https://launchpad.net/grub-customizer/5.1/5.1.0/+download/grub-customizer_5.1.0.tar.gz - - cmake - gtk3-devel - atkmm-devel - glib2-devel - glibmm-devel - gtkmm3-devel - cairomm-devel - openssl-devel - pangomm-devel - libsigc++-devel - libarchive-devel - - desktop/misc/grub-customizer/pspec.xml - - - grub-customizer - - gtk3 - atkmm - glib2 - glibmm - gtkmm3 - libgcc - cairomm - openssl - pangomm - libsigc++ - libarchive - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/info - /usr/share/doc - - - grub.cfg - - - - - 2019-06-29 - 5.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - flat-remix-gtk - https://github.com/daniruiz/Flat-Remix-GTK - - Pisi Linux Community - admins@pisilinux.org - - GPL-3.0 - desktop.lookandfeel - Flat Remix GTK theme is a pretty simple gtk window theme - Flat Remix GTK theme is a pretty simple gtk window theme inspired on material design following a modern design using \"flat\" colors with high contrasts and sharp borders - https://github.com/daniruiz/flat-remix-gtk/archive/20220427.tar.gz - desktop/lookandfeel/flat-remix-gtk/pspec.xml - - - flat-remix-GTK - - /usr/share/themes/Flat-Remix-Dark-* - /usr/share/themes/Flat-Remix-Darkest-* - /usr/share/themes/Flat-Remix-Light* - - - - flat-remix-GTK-black - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Black* - /usr/share/themes/Flat-Remix-LibAdwaita-Black* - - - - flat-remix-GTK-blue - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Blue* - /usr/share/themes/Flat-Remix-LibAdwaita-Blue* - - - - flat-remix-GTK-brown - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Brown* - /usr/share/themes/Flat-Remix-LibAdwaita-Brown* - - - - flat-remix-GTK-cyan - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Cyan* - /usr/share/themes/Flat-Remix-LibAdwaita-Cyan* - - - - flat-remix-GTK-green - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Green* - /usr/share/themes/Flat-Remix-LibAdwaita-Green* - - - - flat-remix-GTK-grey - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Grey* - /usr/share/themes/Flat-Remix-LibAdwaita-Grey* - - - - flat-remix-GTK-magenta - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Magenta* - /usr/share/themes/Flat-Remix-LibAdwaita-Magenta* - - - - flat-remix-GTK-orange - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Orange* - /usr/share/themes/Flat-Remix-LibAdwaita-Orange* - - - - flat-remix-GTK-red - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Red* - /usr/share/themes/Flat-Remix-LibAdwaita-Red* - - - - flat-remix-GTK-teal - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Teal* - /usr/share/themes/Flat-Remix-LibAdwaita-Teal* - - - - flat-remix-GTK-violet - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Violet* - /usr/share/themes/Flat-Remix-LibAdwaita-Violet* - - - - flat-remix-GTK-white - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-White* - /usr/share/themes/Flat-Remix-LibAdwaita-White* - - - - flat-remix-GTK-yellow - - flat-remix-GTK - - - /usr/share/themes/Flat-Remix-GTK-Yellow* - /usr/share/themes/Flat-Remix-LibAdwaita-Yellow* - - - - - 2022-04-27 - 20220427 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gtk-theme-Qogir - https://github.com/vinceliuice/Qogir-theme/ - - Pisi Linux Community - admins@pisilinux.org - - GPL-3.0 - desktop.lookandfeel - Qogir is a flat Design theme for GTK - Qogir is a flat Design theme for GTK 3, GTK 2 and Gnome-Shell which supports GTK 3 and GTK 2 based desktop environments like Gnome, Unity, Budgie, Cinnamon Pantheon, XFCE, Mate, etc. - https://github.com/vinceliuice/Qogir-theme/archive/refs/tags/2021-12-25.tar.gz - - gnome-shell - - desktop/lookandfeel/gtk-theme-Qogir/pspec.xml - - - gtk-theme-Qogir - - /usr/share/themes/Qogir - /usr/share/themes/Qogir-dark - /usr/share/themes/Qogir-light - /usr/share/doc - - - - - 2022-01-22 - 2021.12.25 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-31 - 2018.11.12 - First Release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - artwork-pisilinux-release - https://pisilinux.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - public-domain - CCPL-Attribution-ShareAlike-3.0 - CCPL-Attribution-3.0 - data - desktop.lookandfeel - Artwork for Pisi Linux releases - Pisi Linux sürümleri için sanatsal içerik - This package contains additional artwork (like wallpapers) intended for Pisi Linux releases. - Bu paket Pisi Linux sürümleri için hazırlanmış sanatsal çalışmalar içerir. - http://source.pisilinux.org/1.0/artwork-pisilinux-release-1.2.tar.xz - http://source.pisilinux.org/1.0/sample-files-20130323.tar.xz - desktop/lookandfeel/artwork-pisilinux-release/pspec.xml - - - artwork-pisilinux-release - - /usr/share/wallpapers - - - - example-content - Example files for Pisi Linux - Pisi Linux ile beraber dağıtılan örnek dosyalar - - /usr/share/example-content - /etc/X11/Xsession.d - /etc/X11/xinit/xinitrc.d/35-example-content.sh - - - 35-example-content.sh - - - - - 2018-10-21 - 1.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.2 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-21 - 1.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - icon-theme-numix-light - https://numixproject.github.io/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - data - desktop.lookandfeel - Circle is an icon theme for Linux from the Numix project - Circle is an icon theme for Linux from the Numix project - http://ppa.launchpad.net/numix/ppa/ubuntu/pool/main/n/numix-icon-theme/numix-icon-theme_0.3+929~201712251402~ubuntu17.04.1.tar.xz - desktop/lookandfeel/icon-theme-numix-light/pspec.xml - - - icon-theme-numix-light - - /usr/share/icons/Numix-Light - - - - - 2018-08-31 - 17.04.05 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 17.04.05 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-01 - 16.09.07 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - papirus-icon-theme - https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/ - - Mustafa Cinasal - muscnsl@gmail.com - - any - library - desktop.lookandfeel - Papirus simge teması - Papirus simge teması - Papirus simge teması - Papirus simge teması - https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/20200102.tar.gz - desktop/lookandfeel/papirus-icon-theme/pspec.xml - - - papirus-icon-theme - - /usr/share/icons - /usr/share/doc - - - - - 2020-01-02 - 20200102 - Ver. up - fury - uglyside@yandex.ru - - - 2018-08-31 - 20180501 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-01 - 20180501 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-31 - 20180401 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - icon-theme-milky - https://pisilinux.org - - Pisi Gnu/Linux Community - admin@pisilinux.org - - GPLv3 - data - desktop.lookandfeel - Icon theme designed for pisilinux GTK theme - Icon theme designed for pisilinux GTK theme - http://source.pisilinux.org/milky/milky-2.0.tar.bz2 - desktop/lookandfeel/icon-theme-milky/pspec.xml - - - icon-theme-milky - - /usr/share/icons - /usr/share/doc - - - 16x16.png - 16x16.png - 22x22.png - 22x22.png - 32x32.png - 32x32.png - 48x48.png - 48x48.png - 64x64.png - 64x64.png - 128x128.png - 128x128.png - 256x256.png - 256x256.png - logotype-pisi.svg - logotype-pisi.svg - - - - - 2021-04-11 - 1.0 - fixed start-here icons - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-01 - 1.0 - First Release. - Pisi Gnu/Linux Community - admin@pisilinux.org - - - - - - gtk2-engines-murrine - https://github.com/GNOME/murrine - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.lookandfeel - GTK+ Murrine theme engine - GTK+ Murrine tema motoru - The Murrine engine is a cairo-based GTK+ theming tool. It's very fast compared to clearlooks-cairo. Murrine includes animations and a unique style. - Murrine motoru, Cairo tabanlı GTK+ tema aracıdır. Clearlooks temasına göre çok daha hızlıdır. Aynı zamanda canlandırmalar, benzersiz biçemler içerir. - mirrors://gnome/murrine/0.98/murrine-0.98.2.tar.xz - - gtk2-devel - glib2-devel - cairo-devel - pango-devel - pixman-devel - gdk-pixbuf-devel - intltool - - desktop/lookandfeel/gtk2-engines-murrine/pspec.xml - - - gtk2-engines-murrine - - gtk2 - glib2 - cairo - pango - pixman - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/gtk-engines - - - - - 2018-09-16 - 0.98.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 0.98.2 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-12-12 - 0.98.2 - First release - Pisi Linux Community - admin@pisilinux.org - - - - - - icon-theme-faenza - http://gnome-look.org/content/show.php/Faenza?content=128143 - - Pisi Gnu/Linux Community - admin@pisilinux.org - - GPLv3 - data - desktop.lookandfeel - Icon theme designed for Equinox GTK theme - Icon theme designed for Equinox GTK theme - http://ppa.launchpad.net/tiheum/equinox/ubuntu/pool/main/f/faenza-icon-theme/faenza-icon-theme_1.3.1.tar.gz - desktop/lookandfeel/icon-theme-faenza/pspec.xml - - - icon-theme-faenza - - /usr/share/icons - /usr/share/doc - - - icons/22.png - icons/24.png - icons/32.png - icons/48.png - icons/64.png - icons/96.png - icons/22.png - icons/24.png - icons/32.png - icons/48.png - icons/64.png - icons/96.png - icons/22.png - icons/24.png - icons/32.png - icons/48.png - icons/64.png - icons/96.png - icons/scalable.svg - icons/scalable.svg - icons/scalable.svg - - - - - 2018-08-31 - 1.3.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.3.1 - Rebuild with new toolchain. - Pisi Gnu/Linux Community - admin@pisilinux.org - - - 2016-07-26 - 1.3.1 - First Release - Pisi Gnu/Linux Community - admin@pisilinux.org - - - - - - gtk-theme-greybird - https://github.com/shimmerproject/Greybird - - Pisi Gnu/Linux Community - admin@pisilinux.org - - GPLv2 - CC-BY-SA - desktop.lookandfeel - Desktop Suite for Xfce. - GTK Theme Suite - Greybird. - https://github.com/shimmerproject/Greybird/archive/v3.22.12.tar.gz - - meson - sassc - gtk3-devel - glib2-devel - librsvg-devel - gdk-pixbuf-devel - - desktop/lookandfeel/gtk-theme-greybird/pspec.xml - - - gtk-theme-greybird - - gtk2-engines-murrine - - - /usr/share/themes - /usr/share/doc - - - - - 2020-11-03 - 3.22.12 - Ver. bump - fury - uglyside@yandex.ru - - - 2018-08-31 - 3.22.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 3.22.2 - Rebuild with new toolchain - Pisi Gnu/Linux Community - admin@pisilinux.org - - - 2016-09-08 - 1.5.3 - First Release - Pisi Gnu/Linux Community - admin@pisilinux.org - - - - - - pisilinux-theme-maia - http://www.pisilinux.org/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.lookandfeel - PisiLinux için görsel çalışmaları. - PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı. - https://github.com/alihanozturk/pisilinux-theme-maia/archive/0.3.tar.gz - - extra-cmake-modules - qt5-base-devel - plasma-framework-devel - - - wallpaper.patch - - desktop/lookandfeel/pisilinux-theme-maia/pspec.xml - - - pisilinux-theme-maia - PisiLinux için görsel çalışmaları. - - /usr/share - /usr/share/color-schemes - /usr/share/icons - /usr/share/kservices5 - /usr/share/plasma - /usr/share/sddm - /usr/share/wallpapers - /usr/share/doc - - - - - 2018-08-15 - 0.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.3 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-08-21 - 0.3 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-09 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-19 - 0.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-20 - 0.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - icon-theme-elementary-xfce - https://github.com/shimmerproject/elementary-xfce - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - data - desktop.lookandfeel - Elementary Look for XFCE. - Elementary icons forked from upstream, extended and maintained for Xfce. - https://github.com/shimmerproject/elementary-xfce/archive/v0.15.2.tar.gz - - librsvg - optipng - inkscape - gtk3-devel - - desktop/lookandfeel/icon-theme-elementary-xfce/pspec.xml - - - icon-theme-elementary-xfce - - /usr/share/icons - /usr/share/doc - - - - - 2021-10-13 - 0.15.2 - First build - fury - uglyside@yandex.ru - - - - - - gtk-theme-mediterranean - http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - desktop.lookandfeel - Great themes for GTK2 and GTK3 - GTK2 ve GTK3 için güzel temalar - Themes for GTK2 and GTK3. - GTK2 ve GTK3 için yazılmış tema paketleri. - https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz - desktop/lookandfeel/gtk-theme-mediterranean/pspec.xml - - - gtk-theme-mediterranean - - gtk2-engines-murrine - gdk-pixbuf - - - /usr/share/themes/MediterraneanDark - /usr/share/themes/MediterraneanWhite - /usr/share/themes/MediterraneanLightDarkest - - - - gtk-theme-mediterranean-others - - gtk2-engines-murrine - gdk-pixbuf - - - /usr/share/themes - - - - - 2018-08-31 - 2.03 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 2.03 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-06 - 2.03 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pisilinux-gtk - http://www.pisilinux.org - - Ergün Salman - poyraz76@pisilinux.org - - custom - library - desktop.lookandfeel - pisilinux-gtk - Gtk uygulamaları için tema ve yapılandırma - https://sourceforge.net/projects/pisi-source/files/pisilinux-gtk-0.1.tar.gz - desktop/lookandfeel/pisilinux-gtk/pspec.xml - - - pisilinux-gtk - - /usr/share/themes/* - - - - - 2018-08-31 - 0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 0.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-09-10 - 0.1 - New Package - Ergün Salman - poyraz76@pisilinux.org - - - - - - icon-theme-adwaita - https://gitlab.gnome.org/GNOME/adwaita-icon-theme - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.lookandfeel - Adwaita icon theme - Adwaita icon theme - https://download.gnome.org/sources/adwaita-icon-theme/42/adwaita-icon-theme-42.0.tar.xz - - intltool - gtk2-devel - gtk3-devel - docbook-xsl - shared-mime-info - librsvg-devel - - desktop/lookandfeel/icon-theme-adwaita/pspec.xml - - - icon-theme-adwaita - Adwaita icon theme - - /usr/share - /usr/share/doc - /usr/share/icons/Adwaita - /usr/lib/pkgconfig - - - 16x16.png - 16x16.png - 22x22.png - 24x24.png - 24x24.png - 32x32.png - 32x32.png - 48x48.png - 48x48.png - 64x64.png - 96x96.png - scalable.svg - - - - - 2022-06-01 - 42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-11 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 40.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-08 - 3.38.0 - v.bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-01-18 - 3.34.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-30 - 3.34.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-14 - 3.32.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-17 - 3.31.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-11-30 - 3.31.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 3.26.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 3.22 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-07 - 3.20 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - icon-theme-nitrux-kde - https://github.com/Nitrux/nitrux-icon-theme - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - data - desktop.lookandfeel - Nitrux Look for KDE - Nitrux Look for KDE - https://launchpad.net/~nitrux-team/+archive/ubuntu/nitrux-artwork/+files/nitrux-icon-theme-kde_3.5.3.tar.gz - desktop/lookandfeel/icon-theme-nitrux-kde/pspec.xml - - - icon-theme-nitrux-kde - - /usr/share/icons/Nitrux - - - - - 2018-08-31 - 3.5.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 3.5.3 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-01 - 3.5.3 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - geany-colorschemes - https://github.com/geany/geany-themes - - fury - uglyside@yandex.ru - - various - data - desktop.lookandfeel - Geany-themes is a collection of color schemes for the Geany IDE/editor. - Geany-themes is a collection of color schemes for the Geany IDE/editor, either written originally by the Geany community or ported from color schemes for other editors. - https://github.com/geany/geany-themes/archive/0f29c77e8c596900b9b8cf552498bdb317449cae.zip - desktop/lookandfeel/geany-colorschemes/pspec.xml - - - geany-colorschemes - - gtksourceview3 - - - /usr/share/geany/colorschemes - /usr/share/doc - - - - - 2020-12-06 - 0.1 - First build - fury - uglyside@yandex.ru - - - - - - icon-theme-hicolor - https://www.freedesktop.org/wiki/Software/icon-theme/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - desktop.lookandfeel - Default icon theme - Temel simge teması - Hicolor icon theme contains the basic directories and files needed for icon theme support. - Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. - https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.17.tar.xz - desktop/lookandfeel/icon-theme-hicolor/pspec.xml - - - icon-theme-hicolor - - /usr/share/doc - /usr/share/icons - - - - - 2020-01-16 - 0.17 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 0.17 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-13 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-09 - 0.15 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gtk-theme-arc - https://github.com/horst3180/arc-theme - - Pisi Linux Community - admins@pisilinux.org - - GPL-3.0 - desktop.lookandfeel - Arc is a flat theme with a subtle color scheme and transparency in select parts of the window, like GTK Header Bars and the Nautilus sidebar. - The Arc theme supports GTK3 and GTK2 based desktop environments, including GNOME Shell (of course) and the standard Ubuntu Unity desktop.It also works just dandy with lightweight Budgie and elementary’s Pantheon desktops and should work fine on Cinnamon. - https://launchpad.net/~noobslab/+archive/ubuntu/themes/+files/arc-theme_16.04~xenial~NoobsLab.com.tar.gz - desktop/lookandfeel/gtk-theme-arc/pspec.xml - - - gtk-theme-arc - - gtk2-engines-murrine - - - /usr/share/themes/Arc - - - - gtk-theme-arc-solid - - gtk2-engines-murrine - - - /usr/share/themes/Arc-Solid - - - - gtk-theme-arc-dark - - gtk2-engines-murrine - - - /usr/share/themes/Arc-Dark - - - - gtk-theme-arc-dark-solid - - gtk2-engines-murrine - - - /usr/share/themes/Arc-Dark-Solid - - - - - 2018-08-31 - 1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.0 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-11 - 1.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - pisilinux-splash - https://github.com/sebo28/pisilinux.splash - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - app - desktop.lookandfeel - pisilinux splash - pisilinux splash - pisilinux splash - pisilinux splash - https://github.com/sebo28/pisilinux.splash/archive/v0.1.tar.gz - https://github.com/sebo28/Sweet-Cat_Animated/archive/v0.1.tar.gz - - metadata.json - - desktop/lookandfeel/pisilinux-splash/pspec.xml - - - pisilinux-splash - - /usr/share - /usr/share/locale - - - - - 2020-12-07 - 0.1 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2019-10-31 - 0.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - icon-theme-numix - https://github.com/numixproject/numix-icon-theme - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - data - desktop.lookandfeel - Circle is an icon theme for Linux from the Numix project - Circle is an icon theme for Linux from the Numix project - http://ppa.launchpad.net/numix/ppa/ubuntu/pool/main/n/numix-icon-theme/numix-icon-theme_0.3+929~201712251402~ubuntu17.04.1.tar.xz - desktop/lookandfeel/icon-theme-numix/pspec.xml - - - icon-theme-numix - - /usr/share/icons/Numix - - - - - 2018-08-31 - 17.04.05 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 17.04.05 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-01 - 16.09.07 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - adwaita-qt - https://github.com/FedoraQt/adwaita-qt - - fury - uglyside@yandex.ru - - GPLv2 - LGPLv2.1 - data - desktop.lookandfeel - A style to bend Qt applications to look like they belong into GNOME Shell. - A native style to bend Qt4 and Qt5 applications to look like they belong into GNOME Shell. - https://github.com/FedoraQt/adwaita-qt/archive/refs/tags/1.4.1.tar.gz - - cmake - qt5-base-devel - qt5-x11extras-devel - - desktop/lookandfeel/adwaita-qt/pspec.xml - - - adwaita-qt - - libgcc - libxcb - qt5-base - qt5-x11extras - - - /usr/lib - /usr/share/doc - - - - adwaita-qt-devel - - adwaita-qt - qt5-base - - - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include - - - - - 2022-01-18 - 1.4.1 - Version bump - fury - uglyside@yandex.ru - - - 2021-09-27 - 1.4.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-06-05 - 1.3.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-18 - 1.3.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-03-24 - 1.2.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-02 - 1.2.0 - Beta rebuild. - fury - uglyside@yandex.ru - - - - - - iconcan - https://pisilinux.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv3 - app:gui - desktop.lookandfeel - Icon etiketi için görseller - Icon etiketi için görseller - Icon etiketine ait görselleri barındıran uygulama. - Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. - lang-tr - https://master.dl.sourceforge.net/project/pisilinux/source/iconcan-1.0.2.tar.xz - desktop/lookandfeel/iconcan/pspec.xml - - - iconcan - - /usr/share/pixmaps - - - - - 2022-05-26 - 1.0.2 - add new icons - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-13 - 1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 1.0.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-04 - 1.0.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - pisilinux-theme-damadamas - http://www.pisilinux.org/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.lookandfeel - PisiLinux için görsel çalışmaları. - PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı. - https://github.com/sonakinci41/DamaDamas-icon-theme/archive/0.7.tar.gz - - extra-cmake-modules - qt5-base-devel - plasma-framework-devel - - desktop/lookandfeel/pisilinux-theme-damadamas/pspec.xml - - - pisilinux-theme-damadamas - PisiLinux için görsel çalışmaları. - - /usr/share - /usr/share/color-schemes - /usr/share/icons - /usr/share/kservices5 - /usr/share/plasma - /usr/share/sddm - /usr/share/wallpapers - /usr/share/doc - - - logotype-pisi_64.svg - logotype-pisi_512.svg - logotype-pisi_512.svg - - - - - 2021-04-11 - 0.7 - fixed start-here icons - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-01 - 0.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gtk-theme-albatross - https://github.com/shimmerproject/Albatross - - Pisi Linux Community - admins@pisilinux.org - - GPL.v2 - desktop.lookandfeel - Albatross is a modern theme for the XFCE-Desktop - Albatross is a modern theme for the XFCE-Desktop - https://github.com/shimmerproject/Albatross/archive/v1.7.4.tar.gz - desktop/lookandfeel/gtk-theme-albatross/pspec.xml - - - gtk-theme-albatross - - gtk2-engines-murrine - - - /usr/share/themes - /usr/share/doc - - - - - 2018-08-31 - 1.7.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.7.4 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-01 - 1.7.4 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kvantum - https://github.com/tsujan/Kvantum - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - desktop.lookandfeel - Kvantum is an SVG-based theme engine for Qt4/Qt5, KDE and LXQt. - Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur. - https://github.com/tsujan/Kvantum/releases/download/V0.20.2/Kvantum-0.20.2.tar.xz - - libX11-devel - qt5-linguist - qt5-svg-devel - qt5-base-devel - icon-theme-hicolor - qt5-designer-devel - kwindowsystem-devel - qt5-x11extras-devel - qt5-assistant-devel - - desktop/lookandfeel/kvantum/pspec.xml - - - kvantum - - libgcc - libX11 - qt5-svg - qt5-base - kwindowsystem - qt5-x11extras - - - /usr/bin - /usr/lib - /usr/share - /usr/share/Kvantum - /usr/share/doc - - - - - 2021-09-19 - 0.20.2 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2021-03-14 - 0.19.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2021-03-05 - 0.18.0 - First Beta build - PisiLinux Community - admins@pisilinux.org - - - - - - gtk-theme-bluebird - https://github.com/shimmerproject/Bluebird - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - CC-BY-SA 3.0 - desktop.lookandfeel - GTK Theme Suite - Bluebird for the XFCE-Desktop - GTK Theme Suite - Bluebird for the XFCE-Desktop - https://github.com/shimmerproject/Bluebird/archive/v1.2.tar.gz - desktop/lookandfeel/gtk-theme-bluebird/pspec.xml - - - gtk-theme-bluebird - - gtk2-engines-murrine - - - /usr/share/themes - /usr/share/doc - - - - - 2018-08-31 - 1.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.2 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-01 - 1.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - gtk-theme-orion - https://github.com/shimmerproject/Orion - - Pisi Linux Community - admins@pisilinux.org - - GPL-3.0 - desktop.lookandfeel - Orion is a modern light theme for Gnome. It supports Gnome, Unity, XFCE and Openbox. - The theme is compatible with GTK 3.6 and 3.8. It also includes a GTK 2.0 theme using Murrine engine. - https://github.com/shimmerproject/Orion/archive/v1.5.tar.gz - desktop/lookandfeel/gtk-theme-orion/pspec.xml - - - gtk-theme-orion - - gtk2-engines-murrine - - - /usr/share/themes - /usr/share/doc - - - - - 2018-08-31 - 1.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.5 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-10 - 1.5 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - icon-theme-compass-kde - https://launchpad.net/~nitrux-team - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - data - desktop.lookandfeel - Compass Icon Theme for KDE - Compass Icon Theme for KDE - https://launchpad.net/~nitrux-team/+archive/ubuntu/nitrux-artwork/+files/compass-icon-theme-kde_1.3.8.tar.gz - desktop/lookandfeel/icon-theme-compass-kde/pspec.xml - - - icon-theme-compass-kde - - /usr/share/icons - - - - - 2018-08-31 - 1.3.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.3.8 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-01 - 1.3.8 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - menu-cache - https://www.lxde.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - freedesktop.org desktop menus for LXDE - Library used to read freedesktop.org menus - lxqt - https://github.com/lxde/menu-cache/archive/1.1.0.tar.gz - - gtk-doc - glib2-devel - libfm-extra-devel - qt5-base-devel - - - menu-cache-1.1.0-0001-Support-gcc10-compilation.patch - - desktop/lxqt/menu-cache/pspec.xml - - - menu-cache - Development headers for libfm-qt - - glib2 - libfm-extra - - - /usr/lib - /usr/libexec - /usr/share - - - - menu-cache-devel - Development files for menu-cache - - glib2-devel - menu-cache - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-04-26 - 1.1.0 - fixed build for gcc10 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 1.1.0 - Rebuild for qt5.15.1 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-12 - 1.1.0 - Rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 1.1.0 - Rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 1.1.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 1.1.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 1.1.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libqtxdg - https://github.com/lxqt/libqtxdg - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - library - desktop.lxqt - Library providing freedesktop.org specs implementations for Qt. - Library providing freedesktop.org specs implementations for Qt. - lxqt - https://github.com/lxqt/libqtxdg/releases/download/3.9.0/libqtxdg-3.9.0.tar.xz - - libgcc - cmake - qt5-assistant-devel - qt5-base-devel - qt5-xmlpatterns-devel - qt5-svg-devel - gtk3-devel - xdg-user-dirs - lxqt-build-tools - - desktop/lxqt/libqtxdg/pspec.xml - - - libqtxdg - - libgcc - qt5-base - - - /usr/bin - /usr/lib - /usr/share/ - - - lxqt-l10n - - - lxqt-l10n - - - - libqtxdg-devel - Development headers for libqtxdg - - libqtxdg - qt5-base-devel - qt5-svg-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-19 - 3.9.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 3.8.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 3.7.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 3.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 3.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 3.4.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 3.3.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 3.3.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 3.3.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 3.2.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 3.2.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 3.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 3.1.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pavucontrol-qt - https://github.com/lxqt/pavucontrol-qt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - Qt port of volume control pavucontrol. - Qt port of volume control pavucontrol - lxqt - https://github.com/lxqt/pavucontrol-qt/releases/download/1.1.0/pavucontrol-qt-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libgcc - liblxqt-devel - qt5-linguist - libqtxdg-devel - pulseaudio-libs-devel - glib2-devel - xdg-user-dirs - lxqt-build-tools - - desktop/lxqt/pavucontrol-qt/pspec.xml - - - pavucontrol-qt - - glib2 - libgcc - qt5-base - pulseaudio-libs - - - /usr/bin - /usr/share/applications - /usr/share/pavucontrol-qt/translations - /usr/share/doc - - - - - 2022-04-19 - 1.1.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.4.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.4.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.3.0 + 2015-07-21 + 2.44.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - - - liblxqt - https://github.com/lxqt/liblxqt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - library - desktop.lxqt - Common base library for LXQt components. - Çoğu lxqt bileşenleri için ortak temel kitaplıklar. - Core utility library for all LXDE-Qt components - liblxqt çoğu lxde-qt bileşenleri için ortak temel kitaplıklar içerir. - lxqt - https://github.com/lxqt/liblxqt/releases/download/1.1.0/liblxqt-1.1.0.tar.xz - - cmake - glibc-devel - kwindowsystem-devel - libX11-devel - libgcc - libqtxdg-devel - pkgconfig - qt5-base-devel - qt5-linguist - polkit-qt-devel - qt5-qdbusviewer - qt5-x11extras-devel - libXScrnSaver-devel - lxqt-build-tools - - desktop/lxqt/liblxqt/pspec.xml - - - liblxqt - - kwindowsystem - libgcc - libqtxdg - qt5-base - qt5-x11extras - libX11 - libXScrnSaver - - - /usr/bin - /usr/lib - /usr/share - - - - liblxqt-devel - Development headers for liblxqt - - liblxqt - qt5-base-devel - qt5-x11extras-devel - libqtxdg-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-19 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-04-08 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 0.15.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - featherpad - https://github.com/tsujan/FeatherPad - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.lxqt - FeatherPad is a lightweight Qt5 plain-text editor for Linux - FeatherPad is a lightweight Qt5 plain-text editor for Linux - featherpad - https://github.com/tsujan/FeatherPad/releases/download/V1.1.1/FeatherPad-1.1.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - qt5-svg-devel - hunspell-devel - - desktop/lxqt/featherpad/pspec.xml - - - featherpad - - libX11 - libgcc - qt5-svg - hunspell - qt5-base - qt5-x11extras - - - /usr/bin - /usr/share/doc - /usr/share/applications - /usr/share/featherpad - /usr/share/icons - /usr/share/metainfo/featherpad.metainfo.xml - - - featherpad.desktop - - - - - 2022-04-19 - 1.1.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.18.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.13.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.11.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.9.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-qtplugin - https://lxqt.github.io/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - LXQt platform integration for Qt - Qt için LXQt platform entegrasyonu. - LXDE-Qt platform integration plugin for Qt - Qt için LXDE-Qt platform entegrasyon eklentisi. - lxqt - https://github.com/lxqt/lxqt-qtplugin/releases/download/1.1.0/lxqt-qtplugin-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libdbusmenu-qt-devel - libgcc - liblxqt-devel - libqtxdg-devel - qt5-base-devel - qt5-linguist - lxqt-build-tools - libfm-qt-devel - menu-cache-devel - libexif-devel - - desktop/lxqt/lxqt-qtplugin/pspec.xml - - - lxqt-qtplugin - - libgcc - qt5-base - libdbusmenu-qt - libqtxdg - - - /usr/lib - /usr/share - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 0.15.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.0 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.0 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - screengrab - https://github.com/lxqt/screengrab - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - Crossplatform tool for fast making screenshots. - An application for creating screenshots. ScreenGrab uses the Qt framework and thus, it is independent from any desktop environment. - lxqt - https://github.com/lxqt/screengrab/releases/download/2.4.0/screengrab-2.4.0.tar.xz - - cmake - libgcc - kwindowsystem-devel - liblxqt-devel - qt5-linguist - libqtxdg-devel - lxqt-build-tools - - desktop/lxqt/screengrab/pspec.xml - - - screengrab - - libX11 - libgcc - libxcb - libqtxdg - qt5-base - kwindowsystem - qt5-x11extras - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/icons - /usr/share/metainfo - /usr/share/screengrab - /usr/share/doc - - - - - 2022-05-05 - 2.4.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-notificationd - https://github.com/lxqt/lxqt-notificationd - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - LXQt notification daemon and library. - LXQt bildirim artalan süreci ve kütüphanesi. - Notification daemon - LXQt bildirim artalan süreci ve kitaplıklarını içerir. - lxqt - https://github.com/lxqt/lxqt-notificationd/releases/download/1.1.0/lxqt-notificationd-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libgcc - liblxqt-devel - libqtxdg-devel - qt5-base-devel - qt5-linguist - lxqt-build-tools - - desktop/lxqt/lxqt-notificationd/pspec.xml - - - lxqt-notificationd - - kwindowsystem - libgcc - liblxqt - libqtxdg - qt5-base - - - /usr/bin - /usr/share/ - /etc/autostart - - - - - 2022-04-22 - 1.1.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-themes - https://lxqt.github.io/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - data - desktop.lxqt - LXQt themes, graphics and icons. - LXQt tema, grafik ve simgeleri - LXQt themes, graphics and icons - LXQt tema, grafik ve simgeleri - lxqt - https://github.com/lxqt/lxqt-themes/releases/download/1.1.0/lxqt-themes-1.1.0.tar.xz - - cmake - kwindowsystem-devel - liblxqt-devel - qt5-linguist - lxqt-build-tools - - - themes.patch - - desktop/lxqt/lxqt-themes/pspec.xml - - - lxqt-themes - - noto-fonts - - - /etc - /usr/bin - /usr/share - /usr/share/doc - /usr/share/man - /usr/share/themes/lxqt - - - start-here-light.svg - start-here-dark.svg - Crocus-Ancyrensis.jpg - Crocus-Ancyrensis-2.jpg - - - - - 2022-04-19 - 1.1.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-04-08 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.0 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.0 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.0 - added felis_catus wallpaper - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-openssh-askpass - https://github.com/lxqt/lxqt-openssh-askpass - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app - desktop.lxqt - LXQt openssh password prompt - LXQt parola uygulaması - LXQt openssh password prompt - LXQt parola uygulaması - lxqt - https://github.com/lxqt/lxqt-openssh-askpass/releases/download/1.1.0/lxqt-openssh-askpass-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libqtxdg-devel - liblxqt-devel - lxqt-config - qt5-base-devel - qt5-linguist - lxqt-build-tools - - desktop/lxqt/lxqt-openssh-askpass/pspec.xml - - - lxqt-openssh-askpass - - libgcc - liblxqt - qt5-base - - - /usr/bin - /usr/share - - - - - 2022-04-22 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-build-tools - https://github.com/lxqt/lxqt-build-tools - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - Various packaging tools and scripts for LXQt applications. - Various packaging tools and scripts for LXQt applications - lxqt - https://github.com/lxqt/lxqt-build-tools/releases/download/0.11.0/lxqt-build-tools-0.11.0.tar.xz - - cmake - glib2-devel - qt5-linguist - qt5-base-devel - - desktop/lxqt/lxqt-build-tools/pspec.xml - - - lxqt-build-tools - - /usr/bin - /usr/share/cmake - /usr/share/doc - - - - - 2022-04-19 - 0.11.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 0.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.9.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-12-19 - 0.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 0.7.0 - rebuild qt5. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.6.0 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-01-18 - 0.6.0 - rebuild for qt5.14.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-09-15 - 0.6.0 - rebuild for qt5.13.1 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.6.0 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-03-01 - 0.6.0 - Release bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.6.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.5.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.5.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-07 - 0.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 0.4.0 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-panel - https://lxqt.github.io/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - Desktop panel - LXQt masaüstü paneli. - The LXQt desktop panel - lxqt-panel, LXQt masaüstü panelidir. - lxqt - https://github.com/lxqt/lxqt-panel/releases/download/1.1.0/lxqt-panel-1.1.0.tar.xz - - cmake - glib2-devel - kguiaddons-devel - kwindowsystem-devel - libX11-devel - libXcomposite-devel - libXdamage-devel - libdbusmenu-qt-devel - libgcc - liblxqt-devel - libqtxdg-devel - libxkbcommon-devel - lm_sensors-devel - lxqt-globalkeys-devel - pulseaudio-libs-devel - alsa-lib-devel - qt5-linguist - solid-devel - libsysstat-devel - libstatgrab - libxcb-devel - xcb-util-devel - xcb-util-image-devel - libXrender-devel - libXtst-devel - libXScrnSaver-devel - desktop-file-utils - lxqt-build-tools - - desktop/lxqt/lxqt-panel/pspec.xml - - - lxqt-panel - - solid - libgcc - libxcb - libXtst - liblxqt - alsa-lib - libqtxdg - qt5-svg - qt5-base - xcb-util - libsysstat - lm_sensors - libstatgrab - libxkbcommon - kwindowsystem - qt5-x11extras - libdbusmenu-qt - xcb-util-image - lxqt-globalkeys - pulseaudio-libs - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - /usr/share/man - - - panel.conf - - - - lxqt-panel-devel - Development headers for lxqt-panel - - lxqt-panel - - - /usr/include - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 0.17.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 0.15.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-10-25 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-06-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-26 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-globalkeys - https://github.com/lxqt/lxqt-globalkeys - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - Daemon used to register global keyboard shortcuts - Global klavye kısayollarını kaydetmek için kullanılan araç. - LXQt daemon and library for global keyboard shortcuts registration. - Global klavye kısayolları kaydı için LXQT kütüphane ve araçları. - lxqt - https://github.com/lxqt/lxqt-globalkeys/releases/download/1.1.0/lxqt-globalkeys-1.1.0.tar.xz - - cmake - libgcc - qt5-linguist - libX11-devel - libqtxdg-devel - qt5-base-devel - kwindowsystem-devel - liblxqt-devel - lxqt-build-tools - - desktop/lxqt/lxqt-globalkeys/pspec.xml - - - lxqt-globalkeys - Development headers for libqtxdg - - libX11 - libgcc - liblxqt - qt5-base - - - /usr/bin - /usr/lib/liblxqt-globalkeys* - /usr/share - /etc - - - - lxqt-globalkeys-devel - Development headers for lxqt-globalkeys - - lxqt-globalkeys - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-22 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-01-22 - 1.0.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lximage-qt - https://lxqt.github.io/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - Image viewer and screenshot tool. - Resim görüntüleyici ve ekran görüntüsü aracı. - Image viewer and screenshot tool. - lximage-qt, Resim görüntüleyici ve ekran görüntüsü aracıdır. - lxqt - https://github.com/lxqt/lximage-qt/releases/download/1.1.0/lximage-qt-1.1.0.tar.xz - - glib2-devel - cmake - qt5-base-devel - qt5-svg-devel - binutils - qt5-x11extras-devel - qt5-linguist - libexif-devel - libX11-devel - libfm-qt-devel - qt5-qdbusviewer - menu-cache-devel - kwindowsystem-devel - lxqt-build-tools - - desktop/lxqt/lximage-qt/pspec.xml - - - lximage-qt - - glib2 - libX11 - libgcc - libexif - qt5-svg - libfm-qt - qt5-base - libXfixes - qt5-x11extras - - - /usr/share/ - /usr/bin - - - - - 2022-04-22 - 1.1.0 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.7.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.7.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.7.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libfm - https://github.com/lxde/libfm - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL-2 - library - desktop.lxde - Library for file management. - libfm is a LXDE library for file management. - mirrors://sourceforge/pcmanfm/libfm-1.3.2.tar.xz - - intltool - atk-devel - gtk3-devel - glib2-devel - cairo-devel - pango-devel - udisks2-devel - libexif-devel - gettext-devel - dbus-glib-devel - gdk-pixbuf-devel - fontconfig-devel - menu-cache-devel - libfm-extra-devel - - desktop/lxqt/libfm/pspec.xml - - - libfm - - atk - gtk3 - glib2 - cairo - pango - udisks2 - libexif - dbus-glib - gdk-pixbuf - fontconfig - menu-cache - libfm-extra - - - /etc/xdg - /usr/bin - /usr/lib/libfm.so* - /usr/lib/libfm-gtk3.so* - /usr/lib/libfm/modules/ - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - libfm-devel - - libfm - gtk3-devel - glib2-devel - - - /usr/include/libfm-1.0 - /usr/include/libfm - /usr/lib/pkgconfig/libfm-gtk3.pc - /usr/lib/pkgconfig/libfm.pc - - - - libfm-extra - Core library of PCManFM file manager. - - glib2 - - - /usr/lib/libfm-extra.so - /usr/lib/libfm-extra.so.4 - /usr/lib/libfm-extra.so.4.1.3 - - - - libfm-extra-devel - - glib2-devel - libfm-extra - - - /usr/include/libfm/fm-extra.h - /usr/include/libfm/fm-version.h - /usr/include/libfm/fm-xml-file.h - /usr/include/libfm-1.0/fm-extra.h - /usr/include/libfm-1.0/fm-version.h - /usr/include/libfm-1.0/fm-xml-file.h - /usr/lib/pkgconfig/libfm-extra.pc - - - - - 2022-04-14 - 1.3.2 - Rebuild with gtk+3 - fury - uglyside@yandex.ru - - - 2021-04-26 - 1.3.2 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-06 - 1.3.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxmenu-data - https://www.lxde.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - data - desktop.lxqt - freedesktop.org application menu definition files - lxqt-menu-data is freedesktop.org application menu definition files - lxqt - https://github.com/lxde/lxmenu-data/archive/0.1.5.tar.gz - - intltool - perl-Locale-gettext - gettext-devel - - desktop/lxqt/lxmenu-data/pspec.xml - - - lxmenu-data - - /etc - /usr/share/desktop-directories - /usr/share/doc/ - - - - - 2020-04-06 - 0.1.5 - Rebuild New T. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.1.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.1.5 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-sudo - https://github.com/lxqt/lxqt-sudo - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1 - app:gui - desktop.lxqt - Python binding of terminal widget for Qt - Lxqt yetkili kullanıcı aracı - LXQt privilege program (lxsu). - lxqt - https://github.com/lxqt/lxqt-sudo/releases/download/1.1.0/lxqt-sudo-1.1.0.tar.xz - - cmake - kwindowsystem-devel - liblxqt-devel - libqtxdg-devel - qt5-base-devel - qt5-linguist - lxqt-build-tools - - desktop/lxqt/lxqt-sudo/pspec.xml - - - lxqt-sudo - - libgcc - liblxqt - qt5-base - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-31 - 0.13.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qterminal - https://github.com/lxqt/qterminal - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.lxqt - QT5-based multitab terminal emulator. - QT5-based multitab terminal emulator. - lxqt - https://github.com/lxqt/qterminal/releases/download/1.1.0/qterminal-1.1.0.tar.xz - - cmake - qt5-base-devel - qt5-linguist - libxcb-devel - libX11-devel - qtermwidget5-devel - qt5-x11extras-devel - lxqt-config - qt5-svg-devel - kwindowsystem-devel - lxqt-build-tools - - desktop/lxqt/qterminal/pspec.xml - - - qterminal - - libX11 - libgcc - qt5-base - qtermwidget5 - qt5-x11extras - - - /usr/share - /usr/share/doc - /usr/share/qterminal/translations - /usr/bin - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.9.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.9.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.9.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.8.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-powermanagement - https://lxqt.github.io/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - LXQt power management daemon. - LXQt güç yönetimi art alan süreci. - Daemon use for power management and auto-suspend. - Güç yönetimi ve otomatik askıya için kullanılır. - lxqt - https://github.com/lxqt/lxqt-powermanagement/releases/download/1.1.0/lxqt-powermanagement-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libgcc - liblxqt-devel - libqtxdg-devel - lxqt-globalkeys-devel - libxcb-devel - qt5-base-devel - qt5-linguist - qt5-svg-devel - solid-devel - upower-devel - kidletime-devel - lxqt-build-tools - - desktop/lxqt/lxqt-powermanagement/pspec.xml - - - lxqt-powermanagement - - libgcc - liblxqt - qt5-base - qt5-svg - solid - libqtxdg - kidletime - kwindowsystem - lxqt-globalkeys - - - /usr/bin - /usr/share/ - /etc/autostart - - - - - 2022-04-25 - 1.1.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-config - https://github.com/lxqt/lxqt-config - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - library - desktop.lxqt - Common base library for LXQt components. - Çoğu lxqt bileşenleri için ortak temel kitaplıklar. - Core utility library for all LXDE-Qt components - liblxqt çoğu lxde-qt bileşenleri için ortak temel kitaplıklar içerir. - lxqt - https://github.com/lxqt/lxqt-config/releases/download/1.1.0/lxqt-config-1.1.0.tar.xz - - cmake - libgcc - pkgconfig - zlib-devel - glibc-devel - libXi-devel - libX11-devel - qt5-base-devel - qt5-linguist - qt5-qdbusviewer - qt5-svg-devel - libXcursor-devel - libkscreen-devel - qt5-x11extras-devel - kwindowsystem-devel - xorg-input-libinput-devel - eudev-devel - libqtxdg-devel - liblxqt-devel - lxqt-build-tools - - desktop/lxqt/lxqt-config/pspec.xml - - - lxqt-config - - zlib - libXi - libX11 - libgcc - libxcb - liblxqt - qt5-svg - qt5-base - libXfixes - libXcursor - libkscreen - qt5-x11extras - eudev - libXi - libqtxdg - pisi-timedate - xsettingsd - - - /usr/bin - /usr/lib - /usr/lib64 - /usr/share - /etc/menus - - - - - 2022-04-19 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-01 - 0.17.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libstatgrab - https://libstatgrab.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL - library - desktop.lxqt - libstatgrab is a library that provides cross platform access to statistics about the system on which it's run. - Çalışan sistem hakkında istatistiklere erişimi sağlayan bir kütüphanedir. - libstatgrab is a library for accessing information from the system for statistical purposes. - libstatgrab, çalışan sistem hakkında istatistiklere erişimi sağlayan kitaplıkları içerir. - lxqt - https://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/libstatgrab/libstatgrab-0.92.tar.gz - - ncurses-devel - - desktop/lxqt/libstatgrab/pspec.xml - - - libstatgrab - - ncurses - - - /usr/bin - /usr/share/ - /usr/lib - /usr/include - - - - - 2020-04-06 - 0.92 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.91 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.91 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-policykit - https://github.com/lxqt/lxqt-policykit - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - Policykit agent - Policykit agent. - The LXQt policykit authentication agent - LXQt policykit doğrulama aracı. - lxqt - https://github.com/lxqt/lxqt-policykit/releases/download/1.1.0/lxqt-policykit-1.1.0.tar.xz - - cmake - glib2-devel - kwindowsystem-devel - libgcc - liblxqt-devel - libqtxdg-devel - polkit-devel - polkit-qt-devel - qt5-linguist - lxqt-build-tools - elogind - - desktop/lxqt/lxqt-policykit/pspec.xml - - - lxqt-policykit - - libgcc - liblxqt - polkit-qt - qt5-base - - - /usr/bin - /usr/libexec - /usr/share/doc - /usr/share/lxqt/translations - /etc/autostart - /usr/share/man - - - - - 2022-04-22 - 1.1.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libsysstat - https://github.com/lxqt/libsysstat - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - library - desktop.lxqt - Library used to query system info and statistics - Sistem bilgisi ve istatistik sorgulamak için kullanılan kütüphane. - Library to query system statistics (net, resource usage, ...) - Sistem bilgisi ve istatistik sorgulamak için kullanılan temel kitaplıklar içerir. - lxqt - https://github.com/lxqt/libsysstat/releases/download/0.4.6/libsysstat-0.4.6.tar.xz - - cmake - libgcc - qt5-base-devel - qt5-linguist - lxqt-build-tools - - desktop/lxqt/libsysstat/pspec.xml - - - libsysstat - Development headers for lxqt-globalkeys - - libgcc - qt5-base - - - /usr/lib - /usr/share/ - - - - libsysstat-devel - Development headers for libsysstat - - libsysstat - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-19 - 0.4.6 - rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 0.4.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.4.5 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.4.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.4.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.4.2 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.4.2 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.4.1 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.4.1 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.4.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.4.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-archiver - https://github.com/lxqt/lxqt-archiver - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.lxqt - A simple and lightweight Qt file archiver. - A simple and lightweight Qt file archiver. - lxqt - https://github.com/lxqt/lxqt-archiver/releases/download/0.6.0/lxqt-archiver-0.6.0.tar.xz - - glib2-devel - qt5-linguist - libexif-devel - json-glib-devel - extra-cmake-modules - qt5-x11extras-devel - menu-cache-devel - libfm-qt-devel - lxqt-build-tools - - desktop/lxqt/lxqt-archiver/pspec.xml - - - lxqt-archiver - - glib2 - libgcc - libfm-qt - qt5-base - json-glib - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/lxqt-archiver - /usr/share/applications - /usr/share/icons - /usr/share/doc - - - lxqt-archiver.desktop - - - - - 2022-04-25 - 0.6.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 0.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.4.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 0.2.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-26 - 0.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.0.96 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.0.96 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-03-20 - 0.0.96 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pcmanfm-qt - https://github.com/lxqt/pcmanfm-qt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - The LXQt file manager, Qt port of PCManFM - LXQt dosya yöneticisi, PCManFM Qt portu. - File manager and desktop icon manager (Qt port of PCManFM and libfm) - Dosya yöneticisi ve masaüstü simgesi yöneticisi (Qt PCManFM port ve libfm). - lxqt - https://github.com/lxqt/pcmanfm-qt/releases/download/1.1.0/pcmanfm-qt-1.1.0.tar.xz - - cairo-devel - cmake - glib2-devel - libfm-qt-devel - libgcc - liblxqt-devel - libqtxdg-devel - menu-cache-devel - libxcb-devel - libkexiv2-devel - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - kwindowsystem-devel - libexif-devel - udisks2-devel - lxqt-build-tools - - desktop/lxqt/pcmanfm-qt/pspec.xml - - - pcmanfm-qt - - glib2 - libgcc - libxcb - libfm-qt - qt5-base - qt5-x11extras - breeze-icons - gvfs - udisks2 - menu-cache - - - /etc - /usr/bin - /usr/lib - /usr/share/ - - - settings.conf - pcmanfm-qt-desktop-pref.desktop - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-30 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 0.15.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-runner - https://lxqt.github.io/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - The LXQt application launcher - LXQt uygulama başlatıcısı. - Tool used to launch programs quickly by typing their names - Aracı adlarını yazarak hızlıca programları başlatmak için kullanılır. - lxqt - https://github.com/lxqt/lxqt-runner/releases/download/1.1.0/lxqt-runner-1.1.0.tar.xz - - cmake - glib2-devel - kwindowsystem-devel - libgcc - libXScrnSaver-devel - liblxqt-devel - libqtxdg-devel - lxqt-globalkeys-devel - qt5-base-devel - qt5-linguist - qt5-script-devel - qt5-svg-devel - muparser-devel - lxqt-build-tools - - desktop/lxqt/lxqt-runner/pspec.xml - - - lxqt-runner - - kwindowsystem - libgcc - liblxqt - libqtxdg - lxqt-globalkeys - qt5-base - muparser - - - /usr/bin - /usr/share/ - /etc/autostart - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libfm-qt - https://github.com/lxqt/libfm-qt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - library - desktop.lxqt - Core library of PCManFM file manager - libfm is a Core library of PCManFM file manager - lxqt - https://github.com/lxqt/libfm-qt/releases/download/1.1.0/libfm-qt-1.1.0.tar.xz - - cmake - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - lxqt-build-tools - menu-cache-devel - libexif-devel - glib2-devel - - desktop/lxqt/libfm-qt/pspec.xml - - - libfm-qt - - glib2 - libgcc - libxcb - qt5-base - menu-cache - qt5-x11extras - libexif - - - /usr/lib - /usr/share/cmake - /usr/share/mime - /usr/share/libfm-qt - - - - libfm-qt-devel - Development headers for libfm-qt - - qt5-base-devel - qt5-x11extras-devel - libfm-qt - - - /usr/include/libfm-qt - /usr/lib/pkgconfig - - - - - 2022-04-19 - 1.1.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-04-16 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 0.15.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.1 - rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-26 - 0.12.0 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-wallet - https://github.com/lxqt/lxqt_wallet - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - app:gui - desktop.lxqt - Qt-based wallet manager - Qt tabanlı cüzdan yöneticisi - Qt-based wallet manager - Qt tabanlı cüzdan yöneticisi - lxqt - https://github.com/lxqt/lxqt_wallet/releases/download/3.2.2/lxqt-wallet-3.2.2.tar.xz - - cmake - qt5-base-devel - qt5-linguist - libsecret-devel - libgcrypt-devel - kwallet-devel - knotifications-devel - - desktop/lxqt/lxqt-wallet/pspec.xml - - - lxqt-wallet - - libgcc - libgcrypt - kwallet - libsecret - qt5-base - - - /usr/lib/liblxqt-wallet.* - /usr/share/doc - /usr/bin - /usr/share/lxqt/translations - - - - lxqt-wallet-devel - - qt5-base-devel - lxqt-wallet - - - /usr/include/lxqt - /usr/lib/pkgconfig/lxqt-wallet.pc - - - - - 2021-04-26 - 3.2.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 3.2.1 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-09-17 - 3.2.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-06 - 3.1.0 - Rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 3.1.0 - Rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 3.1.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 3.1.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 3.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 3.1.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-admin - https://github.com/lxde/lxqt-admin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app - desktop.lxqt - LXQt system administration tool - LXQt sistem yönetim araçları. - LXQt system administration tool - LXQt sistem yönetim araçlarını içerir. - lxqt - https://github.com/lxqt/lxqt-admin/releases/download/1.1.0/lxqt-admin-1.1.0.tar.xz - - cmake - glib2-devel - polkit-qt-devel - kwindowsystem-devel - libgcc - liblxqt-devel - qt5-base-devel - qt5-linguist - lxqt-build-tools - - desktop/lxqt/lxqt-admin/pspec.xml - - - lxqt-admin - - libgcc - liblxqt - qt5-base - - - /usr/bin - /usr/share - - - - - 2022-04-22 - 1.1.0 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qlipper - https://github.com/pvanek/qlipper - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2+ - apps - desktop.lxqt - Lightweight and cross-platform clipboard history applet. - Hafif, çapraz platform bir pano uygulaması - Lightweight and cross-platform clipboard history applet. - Hafif, çapraz platform bir pano uygulaması - qlipper - https://github.com/pvanek/qlipper/archive/5.1.2.tar.gz - - cmake - qt5-base-devel - qt5-linguist - - desktop/lxqt/qlipper/pspec.xml - - - qlipper - - libX11 - libgcc - qt5-base - - - /usr/bin - /usr/lib - /usr/share - - - - - 2021-04-26 - 5.1.2 - rebuild for qt5.15.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 5.1.2 - rebuild for qt5.15.1 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-06 - 5.1.2 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 5.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 5.1.1 - rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 5.1.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 5.0.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-26 - 5.0.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qps - https://github.com/lxqt/qps - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - Qt Process Manager - Qt tabanlı bir Süreç Yöneticisi - Qt Process Manager - Qt tabanlı bir Süreç Yöneticisi - qps - https://github.com/lxqt/qps/releases/download/2.5.0/qps-2.5.0.tar.xz - - cmake - qt5-base-devel - qt5-x11extras-devel - libXrender-devel - qt5-linguist - kwindowsystem-devel - liblxqt-devel - lxqt-build-tools - - desktop/lxqt/qps/pspec.xml - - - qps - - qt5-base - libgcc - liblxqt - - - /usr/bin/qps - /usr/lib - /usr/share - - - - - 2022-04-25 - 2.5.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 2.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 2.3.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 2.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 2.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 2.0.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 1.10.20 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 1.10.20 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 1.10.19 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 1.10.18 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 1.10.18 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 1.10.18 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 1.10.17 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - obconf-qt - https://github.com/lxqt/obconf-qt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - This is a Qt port of ObConf, configurator of OpenBox window manager. - Pencere yöneticisi yapılandırma (Openbox için). - This is a Qt port of ObConf, configurator of OpenBox window manager. - Bu bir obconf Qt portudur, OpenBox pencere yöneticisi yapılandırıcı. - lxqt - https://github.com/lxqt/obconf-qt/releases/download/0.16.2/obconf-qt-0.16.2.tar.xz - - cmake - icon-theme-hicolor - liblxqt-devel - openbox-devel - qt5-linguist - kwindowsystem-devel - lxqt-build-tools - - desktop/lxqt/obconf-qt/pspec.xml - - - obconf-qt - - glib2 - libX11 - libgcc - libxml2 - qt5-base - qt5-x11extras - openbox - - - /usr/bin - /usr/share - - - - - 2022-04-19 - 0.16.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 0.16.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.16.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-about - https://github.com/lxqt/lxqt-about - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app:gui - desktop.lxqt - LXQt about dialog. - LXQt hakkında bilgi. - About dialog of LXDE-Qt - LXDE-Qt hakkında bilgi içerir. - lxqt - https://github.com/lxqt/lxqt-about/releases/download/1.1.0/lxqt-about-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libgcc - liblxqt-devel - qt5-linguist - libqtxdg-devel - lxqt-build-tools - - desktop/lxqt/lxqt-about/pspec.xml - - - lxqt-about - - libgcc - liblxqt - libqtxdg - qt5-base - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/lxqt/translations - /usr/share/doc - - - - - 2022-04-22 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.17.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5-14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5-13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-26 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - xdg-desktop-portal-lxqt - https://github.com/lxqt/xdg-desktop-portal-lxqt - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL - library - desktop.lxqt - A backend implementation for xdg-desktop-portal using Qt/KF5/libfm-qt - A backend implementation for xdg-desktop-portal using Qt/KF5/libfm-qt - lxqt - https://github.com/lxqt/xdg-desktop-portal-lxqt/releases/download/0.2.0/xdg-desktop-portal-lxqt-0.2.0.tar.xz - - cmake - qt5-base-devel - qt5-x11extras-devel - libfm-qt-devel - kwindowsystem-devel - glib2-devel - menu-cache-devel - libexif-devel - - desktop/lxqt/xdg-desktop-portal-lxqt/pspec.xml - - - xdg-desktop-portal-lxqt - - libgcc - libfm-qt - qt5-base - kwindowsystem - - - /usr/lib - /usr/share/applications - /usr/share/cmake - /usr/share/dbus-1 - /usr/share/xdg-desktop-portal - - - - - 2022-04-26 - 0.2.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxqt-session - https://github.com/lxqt/lxqt-session - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPL2 - app - desktop.lxqt - LXQt session - LXQt oturumu. - An alternative session manager ported from the original razor-session - Orjinal razor-sessiondan taşınan bir alternatif oturum yöneticisidir. - lxqt - https://github.com/lxqt/lxqt-session/releases/download/1.1.0/lxqt-session-1.1.0.tar.xz - - cmake - kwindowsystem-devel - libX11-devel - libgcc - liblxqt-devel - libqtxdg-devel - qt5-linguist - qt5-x11extras-devel - xdg-user-dirs - lxqt-build-tools - libgudev-devel - - desktop/lxqt/lxqt-session/pspec.xml - - - lxqt-session - - eudev - kwindowsystem - libX11 - libgcc - liblxqt - libqtxdg - qt5-base - qt5-x11extras - procps - pisilinux-theme-damadamas - - - /usr/bin - /usr/lib - /usr/share/ - /etc - - - - - 2022-04-25 - 1.1.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-01-22 - 1.0.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-14 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-04 - 0.17.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-11-05 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.1 - rebuild for qt5.14.2 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-08-16 - 0.14.1 - rebuild for qt5.13.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-28 - 0.14.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-27 - 0.14.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-01-02 - 0.13.0 - Rebuild for qt - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-11-28 - 0.13.0 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-31 - 0.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 0.12.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lxsession - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app - desktop.lxde - LXDE session manager. - lxsession is the default X11 session manager of LXDE. - mirrors://sourceforge/lxde/lxsession-0.5.5.tar.xz - - intltool - vala-devel - gtk3-devel - glib2-devel - polkit-devel - elogind-devel - gettext-devel - libnotify-devel - gdk-pixbuf-devel - - - Avoid_costly_lsb_release_invocation.patch - - desktop/lxde/lxsession/pspec.xml - - - lxsession - - gtk3 - glib2 - cairo - polkit - libX11 - gdk-pixbuf - - - /etc/xdg - /usr/bin - /usr/libexec - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 0.5.5 - First build. - fury - uglyside@yandex.ru - - - - - - lxinput - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - desktop.lxde - LXDE keyboard and mouse configuration tool. - lxinput is tool for LXDE keyboard and mouse configuration. - mirrors://sourceforge/lxde/lxinput-0.3.5.tar.xz - - intltool - gtk3-devel - libX11-devel - - desktop/lxde/lxinput/pspec.xml - - - lxinput - - gtk3 - glib2 - libX11 - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 0.3.5 - First build. - fury - uglyside@yandex.ru - - - - - - lxterminal - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - desktop.lxde - Lightweight terminal emulator. - Lxterminal is a Lightweight vte-based tabbed terminal emulator for LXDE. - mirrors://sourceforge/lxde/lxterminal-0.4.0.tar.xz - - intltool - vte-devel - gtk3-devel - gnutls-devel - libpcre2-devel - gdk-pixbuf-devel - - desktop/lxde/lxterminal/pspec.xml - - - lxterminal - - vte - gtk3 - glib2 - pango - libX11 - gdk-pixbuf - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 0.4.0 - First build. - fury - uglyside@yandex.ru - - - - - - lxde-common - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-2 - data - desktop - LXDE Session default configuration files. - lxde-common provides LXDE Session default configuration files and nuoveXT2 iconset. - mirrors://sourceforge/lxde/lxde-common-0.99.2.tar.xz - - intltool - - desktop/lxde/lxde-common/pspec.xml - - - lxde-common - - gtk3 - lxpanel - pcmanfm - openbox - lxsession - - - /etc - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 0.99.2 - First build. - fury - uglyside@yandex.ru - - - - - - lxmenu-data - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - LGPL-2.1 - data - desktop.lxde - Menu data files for LXDE. - lxmenu-data provides files needed for LXDE application menus. - mirrors://sourceforge/lxde/lxmenu-data-0.1.5.tar.xz - - intltool - - desktop/lxde/lxmenu-data/pspec.xml - - - lxmenu-data - - /etc - /usr/share/desktop-directories - /usr/share/doc - - - - - 2022-04-14 - 0.1.5 - First build. - fury - uglyside@yandex.ru - - - - - - lxappearance - http://wiki.lxde.org/en/LXAppearance - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - desktop.lxde - A new feature-rich GTK+ theme switcher. - LXAppearance is a new GTK+ theme switcher developed for project LXDE. - mirrors://sourceforge/lxde/lxappearance-0.6.3.tar.xz - - intltool - dbus-devel - gtk3-devel - libX11-devel - dbus-glib-devel - gdk-pixbuf-devel - - desktop/lxde/lxappearance/pspec.xml - - - lxappearance - - dbus - gtk3 - glib2 - libX11 - gdk-pixbuf - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - lxappearance-devel - - gtk3-devel - lxappearance - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-14 - 0.6.3 - First build. - fury - uglyside@yandex.ru - - - - - - lxrandr - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - desktop.lxde - LXDE GUI interface to RandR extention. - lxrandr is a LXDE GUI interface to RandR extention. - mirrors://sourceforge/lxde/lxrandr-0.3.2.tar.xz - - intltool - gtk3-devel - libXrandr-devel - - desktop/lxde/lxrandr/pspec.xml - - - lxrandr - - gtk3 - glib2 - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 0.3.2 - First build. - fury - uglyside@yandex.ru - - - - - - pcmanfm - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - desktop.lxde - LXDE default file manager. - PCMan File Manager is an extremly fast and lightweight file manager for LXDE. - mirrors://sourceforge/pcmanfm/pcmanfm-1.3.2.tar.xz - - intltool - gtk3-devel - pango-devel - cairo-devel - gdk-pixbuf-devel - libfm-devel - libfm-extra-devel - - desktop/lxde/pcmanfm/pspec.xml - - - pcmanfm - - atk - gtk3 - glib2 - pango - cairo - libX11 - gdk-pixbuf - libfm - libfm-extra - - - /etc - /usr/bin - /usr/include - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 1.3.2 - First build. - fury - uglyside@yandex.ru - - - - - - lxpanel - https://www.lxde.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - desktop.lxde - Lightweight X11 desktop panel for LXDE. - lxpanel is a lightweight X11 desktop panel for LXDE. - mirrors://sourceforge/lxde/lxpanel-0.10.1.tar.xz - - intltool - atk-devel - gtk3-devel - curl-devel - cairo-devel - pango-devel - libxml2-devel - alsa-lib-devel - libwnck3-devel - keybinder-devel - fontconfig-devel - menu-cache-devel - gdk-pixbuf-devel - wireless-tools-devel - libfm-devel - libfm-extra-devel - - - Correct_panel_size_under_GTK3.patch - Correct_icon_grid_width_under_GTK3.patch - lxpanel-0.10.1-volume-plugin-fix-mouse-scrolling.patch - - desktop/lxde/lxpanel/pspec.xml - - - lxpanel - - atk - gtk3 - curl - glib2 - cairo - pango - libX11 - libxml2 - alsa-lib - libwnck3 - keybinder - menu-cache - gdk-pixbuf - fontconfig - lxmenu-data - wireless-tools - libfm - libfm-extra - network-manager-applet - - - /etc/xdg/lxpanel - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - lxpanel-devel - - lxpanel - gtk3-devel - glib2-devel - libfm-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-14 - 0.10.1 - First build. - fury - uglyside@yandex.ru - - - librsvg @@ -27601,5569 +14779,236 @@ components such as the Settings and gnome-shell. - glibmm - https://www.gtkmm.org/en/ + kmag + https://apps.kde.org/kmag/ PisiLinux Community admins@pisilinux.org - LGPLv2.1 - library - desktop.gnome2 - C++ interface for glib2 - glib2 kitaplığı için C++ programlama dili arayüzü - Glibmm est l'interface officielle C++ pour la librairie IHM populaire GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. - Glibmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks and a comprehensive set of widgets that are easily extensible via inheritance. - Glibmm, ünlü GUI kitaplığı GTK+ için resmi C++ arayüzüdür. Önemli özelliklerinin arasında tip bağımsız çağırmalar ve miras ile genişleyebilen uyumlu parçacıklar vardır. - mirrors://gnome/glibmm/2.66/glibmm-2.66.4.tar.xz - - meson - libsigc++-devel - glib2-devel - mm-common - perl-XML-Parser - - desktop/gnome2/glibmm/pspec.xml - - - glibmm - - glib2 - libgcc - libsigc++ - - - /usr/lib - /usr/share/doc - - - - glibmm-devel - Development files for glibmm - glibmm için geliştirme dosyaları - - glibmm - glib2-devel - libsigc++-devel - - - /usr/include - /usr/lib/glibmm-* - /usr/lib/giomm-* - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/glibmm-* - - - - - 2022-05-04 - 2.66.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-06 - 2.66.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 2.66.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 2.62.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 2.54.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-08 - 2.54.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.50.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.44.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-21 - 2.44.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libmatekbd - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - library - desktop.mate - GNOME keybord configration library - Mate klavye kontrol kütüphanesi - libgnomekbd contains a GNOME library that manages keyboard layout settings and its panel applet. - Bu paket klavye ayarlarını yöneten bir Mate kütüphanesi ve onun panel programcığını içerir. - http://pub.mate-desktop.org/releases/1.26/libmatekbd-1.26.0.tar.xz - - intltool - gtk3-devel - mate-common - libICE-devel - python3-devel - libxklavier-devel - desktop-file-utils - gobject-introspection-devel - gsettings-desktop-schemas-devel - - desktop/mate/libmatekbd/pspec.xml - - - libmatekbd - - gtk3 - cairo - glib2 - pango - libX11 - gdk-pixbuf - libxklavier - - - /usr/share/doc - /usr/bin - /usr/share/glib-2.0 - /usr/share/gir-1.0 - /usr/share/libmatekbd - /usr/share/locale - /usr/lib/libmatekbd* - /usr/lib/girepository-1.0 - /etc/mateconf/schemas/ - - - - libmatekbd-devel - libmatekbd için geliştirme dosyaları - libmatekbd için geliştirme dosyaları - - gtk3-devel - glib2-devel - libxklavier-devel - libmatekbd - - - /usr/lib/pkgconfig - /usr/include/libmatekbd - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-terminal - https://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - MATE terminal emulator application - mate-terminal, masaüstü için terminal uygulaması. - mate-terminal, masaüstü için terminal uygulaması. - utilities-terminal - http://pub.mate-desktop.org/releases/1.26/mate-terminal-1.26.0.tar.xz - - intltool - itstool - python3-devel - libpcre2-devel - gnutls-devel - vte-devel - glib2-devel - gtk3-devel - dconf-devel - libSM-devel - mate-common - - desktop/mate/mate-terminal/pspec.xml - - - mate-terminal - - atk - vte - gtk3 - cairo - pango - dconf - glib2 - libSM - libICE - libX11 - gdk-pixbuf - - - /usr/share/doc - /usr/bin - /usr/share/omf - /usr/share/man - /usr/share/help - /usr/share/mate - /usr/share/metainfo - /usr/share/glib-2.0 - /usr/share/applications - /usr/share/locale - /usr/share/mate-terminal - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - marco - https://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - GPLv2 app:gui - desktop.mate - GTK+ based window manager - GTK+ tabanlı pencere yöneticisi - Marco is a small window manager, using GTK+ to do everything. - Marco herşeyi yapmak için GTK+ kullanan, küçük bir pencere yöneticisidir. - http://pub.mate-desktop.org/releases/1.26/marco-1.26.0.tar.xz - - window.png - mini-window.png - stock_delete.png - stock_maximize.png - stock_minimize.png - + desktop.kde.accessibility + A screen magnifier + A screen magnifier + KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc. + KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc. + kmag + https://download.kde.org/stable/release-service/21.12.3/src/kmag-21.12.3.tar.xz - zenity - itstool - intltool - gtk3-devel - yelp-devel - libSM-devel - libgtop-devel - libXdamage-devel - gdk-pixbuf-devel - libcanberra-devel - libcanberra-gtk3-devel - startup-notification-devel - mate-common - mate-desktop-devel - - desktop/mate/marco/pspec.xml - - - marco - - atk - gtk3 - cairo - glib2 - libSM - pango - libICE - libX11 - libXext - libgtop - libXrandr - libXfixes - gdk-pixbuf - libXcursor - libXrender - libXdamage - libcanberra - libXinerama - libXcomposite - libcanberra-gtk3 - startup-notification - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/mate - /usr/share/help - /usr/share/marco - /usr/share/themes - /usr/share/glib-2.0 - /usr/share/locale - /usr/share/mate-control-center - /usr/share/applications/marco.desktop - - - - marco-devel - marco development files - marco için geliştirme dosyaları - - gtk3-devel - marco - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-31 - 1.24.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-29 - 1.22.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-system-monitor - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.mate - Process and resource monitor - Process viewer and system resource monitor for MATE - utilities-system-monitor - http://pub.mate-desktop.org/releases/1.26/mate-system-monitor-1.26.0.tar.xz - - dbus-glib-devel - gtk3-devel - glibmm-devel - gtkmm3-devel - libgtop-devel - librsvg-devel - libwnck3-devel - libxml2-devel - polkit-devel - mate-common - intltool - itstool - python3-devel - - desktop/mate/mate-system-monitor/pspec.xml - - - mate-system-monitor - - gtk3 - cairo - glib2 - pango - glibmm - gtkmm3 - libgcc - librsvg - libxml2 - libgtop - libwnck3 - libsigc++ - gdk-pixbuf - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/omf - /usr/share/help - /usr/share/mate - /usr/share/pixmaps - /usr/share/polkit-1 - /usr/share/metainfo - /usr/share/glib-2.0 - /usr/share/applications - /usr/share/locale - - - side.png - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-session-manager - https://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - app:gui - desktop.mate - MATE Session Manager - MATE session manager, as well as a configuration program to choose applications starting on login. - mate-session-properties - https://pub.mate-desktop.org/releases/1.26/mate-session-manager-1.26.0.tar.xz - - xmlto - xtrans - intltool - mesa-devel - gtk3-devel - libSM-devel - mate-common - python3-devel - libglvnd-devel - libepoxy-devel - libXcomposite-devel - libXtst-devel - dbus-glib-devel - pangox-compat-devel - - desktop/mate/mate-session-manager/pspec.xml - - - mate-session-manager - - dbus - gtk3 - cairo - glib2 - libSM - libICE - libX11 - libXau - libglvnd - libXtst - libXext - mesa - libepoxy - libXcomposite - dbus-glib - gdk-pixbuf - libXrender - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/xsessions - /usr/share/glib-2.0/ - /usr/share/mate-session - /usr/share/applications - /usr/share/locale - /usr/share/mate-session-manager/ - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-09 - 1.25.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-utils - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - MATE utility programs - The mate-utils package contains a set of small "desk accessory" utility applications for MATE, such as a dictionary, a disk usage analyzer, a screenshot tool and others. - system-search - http://pub.mate-desktop.org/releases/1.26/mate-utils-1.26.0.tar.xz - - itstool - intltool - mesa-devel - popt-devel - yelp-tools - libX11-devel - libXmu-devel - udisks2-devel - libgtop-devel - e2fsprogs-devel - libcanberra-devel - libcanberra-gtk3-devel - mate-common - mate-panel-devel - - desktop/mate/mate-utils/pspec.xml - - - mate-utils - - atk - gtk3 - zlib - cairo - glib2 - pango - libSM - libICE - libX11 - libgtop - libXext - udisks2 - gdk-pixbuf - mate-panel - libcanberra - libcanberra-gtk3 - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/omf - /usr/share/help - /usr/share/icons - /usr/share/mate* - /usr/share/dbus-1 - /usr/share/metainfo - /usr/share/pixmaps - /usr/share/glib-2.0 - /usr/share/applications - /usr/share/locale - - - - mate-utils-devel - mate-utils için geliştirme dosyaları - mate-utils için geliştirme dosyaları - - gtk3-devel - mate-utils - - - /usr/include - /usr/lib/pkgconfig - - - - mate-utils-gtk-doc - mate-utils için dosyalar - - mate-utils - - - /usr/share/gtk-doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-08 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-31 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-desktop - http://www.mate-desktop.org - - Ayhan Yalçınsoy - Ayhan Yalçınsoy - - MIT - GPLv2+ - LGPLv2+ - app:gui - desktop.mate - Basic Mate libraries and dialogs - Mate masaüstü - mate-desktop contains basic Mate libraries and information applications. - mate-desktop, Mate kullanıcı ortamının paylaşımlı bileşenlerini içeren temel pakettir. - desktop - http://pub.mate-desktop.org/releases/1.26/mate-desktop-1.26.0.tar.xz - - gtk-doc - intltool - iso-codes - python-six - gtk3-devel - dconf-devel - mate-common - libX11-devel - librsvg-devel - iso-codes-devel - libXrandr-devel - gdk-pixbuf-devel - startup-notification-devel - gobject-introspection-devel - - desktop/mate/mate-desktop/pspec.xml - - - mate-desktop - - atk - gtk3 - dconf - glib2 - cairo - pango - libX11 - libXrandr - gdk-pixbuf - startup-notification - network-manager-applet - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/help - /usr/share/glib-2.0 - /usr/share/gir-1.0 - /usr/share/icons - /usr/share/doc - /usr/share/mate-about - /usr/share/backgrounds - /usr/share/applications - /usr/share/locale - /usr/share/libmate-desktop - - - System.Package - - - - mate-desktop-devel - - gtk3-devel - dconf-devel - startup-notification-devel - mate-desktop - - - /usr/include - /usr/lib/pkgconfig - - - - mate-desktop-doc - mate-desktop için döküman belgeleri. - mate-desktop için döküman belgeleri. - - mate-desktop - - - /usr/share/gtk-doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-14 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - engrampa - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Engrampa is an archive manager for the MATE environment. - Engrampa is an archive manager for the MATE environment. This means that you can create and modify archives; view the content of an archive; view and modify a file contained in the archive; extract files from the archive. - engrampa - http://pub.mate-desktop.org/releases/1.26/engrampa-1.26.0.tar.xz - - gtk3-devel - caja-devel - mate-common - libSM-devel - intltool - itstool - json-glib-devel - python3-devel - - desktop/mate/engrampa/pspec.xml - - - engrampa - - file - gtk3 - caja - cairo - glib2 - pango - gdk-pixbuf - json-glib - - - /usr/lib/ - /usr/share/doc - /usr/share/man - /usr/share/omf - /usr/bin - /usr/share/mate - /usr/share/help - /usr/share/icons - /usr/share/dbus-1 - /usr/share/pixmaps - /usr/share/glib-2.0 - /usr/share/engrampa - /usr/share/caja - /usr/share/metainfo - /usr/share/applications - /usr/share/locale - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-panel - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.mate - GNOME panel - Mate paneli - GNOME panel is located in the edge of screen that provides contains widgets such as application launcher, cpu monitor and workspace switcher. - Mate paneli ekranın kenarlarında bulunur ve programcıkları (işlemci yükü, program başlatıcısı, çalışma alanı değiştiricisi gibi) barındırmayı sağlar. - mate-panel - http://pub.mate-desktop.org/releases/1.26/mate-panel-1.26.2.tar.xz - - gtk3-devel - libSM-devel - mate-common - librsvg-devel - libwnck3-devel - mate-menus-devel - libcanberra-devel - mate-desktop-devel - libmateweather-devel - gobject-introspection-devel - yelp-tools - intltool - itstool - - - pisilinux_layout.patch - - desktop/mate/mate-panel/pspec.xml - - - mate-panel - - atk - gtk3 - cairo - glib2 - pango - libSM - libICE - libX11 - librsvg - libwnck3 - libXrandr - mate-menus - gdk-pixbuf - mate-desktop - libmateweather - wayland-client - - - /usr/lib - /usr/share/doc - /usr/share/omf - /usr/bin - /usr/share/man - /usr/share/mate - /usr/share/help - /usr/share/icons - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/glib-2.0 - /usr/libexec/ - /usr/share/mate-panel - /usr/share/locale - /usr/share/applications - - - - mate-panel-devel - mate-panel için geliştirme dosyaları. - mate-panel için geliştirme dosyaları. - - gtk3-devel - glib2-devel - mate-panel - - - /usr/include - /usr/lib/pkgconfig - - - - mate-panel-doc - mate-panel için döküman belgeleri. - mate-panel için döküman belgeleri. - - mate-panel - - - /usr/share/gtk-doc - - - - - 2022-01-28 - 1.26.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-25 - 1.26.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-02 - 1.25.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-20 - 1.25.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-14 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-settings-daemon - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - service - desktop.mate - System settings daemon for MATE desktop - gnome-settings-daemon shares MATE specific settings with other applications via DBus connection. - http://pub.mate-desktop.org/releases/1.26/mate-settings-daemon-1.26.0.tar.xz - - intltool - nss-devel - dbus-devel - gtk3-devel - dconf-devel - glib2-devel - libSM-devel - polkit-devel - libnotify-devel - dbus-glib-devel - libcanberra-devel - pulseaudio-libs-devel - libcanberra-gtk3-devel - mate-common - libmatekbd-devel - libmatemixer-devel - mate-desktop-devel - - desktop/mate/mate-settings-daemon/pspec.xml - - - mate-settings-daemon - - nss - dbus - gtk3 - nspr - cairo - dconf - glib2 - libXi - libX11 - polkit - dbus-glib - libnotify - fontconfig - gdk-pixbuf - libmatekbd - libxklavier - libmatemixer - mate-desktop - pulseaudio-libs - libcanberra-gtk3 - - - /etc - /usr/lib - /usr/share/doc - /usr/share/man/ - /usr/share/icons - /usr/share/dbus-1 - /usr/lib/mate-settings-daemon - /usr/share/glib-2.0 - /usr/share/polkit-1 - /usr/share/locale - /usr/share/mate-settings-daemon - /usr/share/mate-control-center - - - - mate-settings-daemon-devel - mate-settings-daemon için geliştirme dosyaları - mate-settings-daemon için geliştirme dosyaları - - mate-settings-daemon - dbus-devel - glib2-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-31 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2013-10-18 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - caja-admin - https://github.com/infirit/caja-admin - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Caja Admin is a simple Python extension for the Caja file manager. - Caja-admin Caja dosya yöneticisi için içerik menüsünde bazı yetkili kullanıcı eylemleri sunar - Caja Admin is a simple Python extension for the Caja file manager that adds some administrative actions to the right-click menu. - Caja-admin Caja dosya yöneticisi için içerik menüsünde bazı yetkili kullanıcı eylemleri sunar - https://github.com/infirit/caja-admin/archive/0.0.5.tar.gz - - tr.po - - - meson - python3-devel - python-caja extra-cmake-modules + kdoctools-devel + ki18n-devel + kio-devel + kxmlgui-devel - - added_tr.patch - - desktop/mate/caja-admin/pspec.xml + desktop/kde/accessibility/kmag/pspec.xml - caja-admin + kmag - python-caja - mate-terminal + kio + libqaccessibilityclient + icon-theme-hicolor - /usr/share/caja-python - /usr/share/doc - /usr/share/locale - /usr/share/polkit-1 + /usr - - 2021-09-07 - 0.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 0.0.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - 2020-03-18 - 0.0.1 + 2022-04-17 + 21.12.3 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-applet-dock - https://github.com/ubuntu-mate/mate-dock-applet - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - app:gui - desktop.mate - Application dock for the MATE panel - MATE paneli için uygulama rıhtımı - Application dock for the MATE panel - MATE paneli için uygulama rıhtımı - dock - https://github.com/ubuntu-mate/mate-dock-applet/archive/21.10.0.tar.gz - - autoconf-archive - python3-devel - libwnck3-devel - bamf-devel - gettext-devel - python3-cairo-devel - python3-pillow - - desktop/mate/mate-applet-dock/pspec.xml - - - mate-applet-dock - - bamf - python3 - python3-xlib - python3-xdg - python3-pillow - libwnck3 - python3-cairo - - - /usr/lib/mate-applets - /usr/share/doc - /usr/share/dbus-1 - /usr/share/glib-2.0 - /usr/share/mate-panel - /usr/share/locale - - - - - 2021-10-02 - 21.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 20.04.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-13 - 20.04.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-screensaver - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Replaces xscreensaver, integrating with the MATE desktop. - Replaces xscreensaver, integrating with the MATE desktop. - mate-screensaver, Mate masaüstü için ekrankoruyucu uygulamasıdır. - preferences-desktop-screensaver - http://pub.mate-desktop.org/releases/1.26/mate-screensaver-1.26.1.tar.xz - - dbus-glib-devel - gtk3-devel - libX11-devel - libXScrnSaver-devel - libXinerama-devel - libXmu-devel - libXtst-devel - libXxf86vm-devel - libmatekbd-devel - libnotify-devel - mate-common - mate-desktop-devel - mate-menus-devel - mesa-devel - pam-devel - xorg-proto - xmlto - intltool - libglvnd-devel - autoconf-archive - - desktop/mate/mate-screensaver/pspec.xml - - - mate-screensaver - - pam - dbus - gtk3 - mesa - cairo - glib2 - pango - libX11 - libglvnd - libXext - dbus-glib - libnotify - mate-menus - gdk-pixbuf - libmatekbd - libXxf86vm - libxklavier - mate-desktop - libXScrnSaver - - - /etc/ - /usr/lib/ - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/dbus-1 - /usr/share/pixmaps - /usr/share/glib-2.0 - /usr/libexec/ - /usr/share/backgrounds - /usr/share/applications - /usr/share/locale - /usr/share/mate-screensaver - /usr/share/desktop-directories - /usr/share/mate-background-properties - - - logotype-pisi.svg - - - - - 2021-11-16 - 1.26.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-23 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-polkit - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - app:gui - library - desktop.mate - Authentication agent for polkit - polkit için kimlik denetim yardımcısı - mate-polkit package provides an authentication agent for polkit that integrates well with the Mate desktop environment. - mate-polkit paketi Mate masaüstü ortamı ile bütünleşmiş bir kimlik denetim yardımcısı sağlar. - http://pub.mate-desktop.org/releases/1.24/mate-polkit-1.24.0.tar.xz - - intltool - gtk3-devel - mate-common - pango-devel - polkit-devel - elogind-devel - libappindicator-devel - - desktop/mate/mate-polkit/pspec.xml - - - mate-polkit - - gtk3 - glib2 - polkit - elogind - gdk-pixbuf - libappindicator - - - /usr/lib - /etc/xdg/autostart - /usr/share - - - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-themes - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - data - desktop.mate - MATE Desktop themes - Mate temaları - mate-themes, mate masaüstü temalarını barındırır. - mate-themes, mate masaüstü temalarını barındırır. - https://pub.mate-desktop.org/releases/themes/3.22/mate-themes-3.22.23.tar.xz - - mate-common - gtk2-devel - mate-icon-theme - gdk-pixbuf-devel - - desktop/mate/mate-themes/pspec.xml - - - mate-themes - - mate-common - mate-icon-theme - icon-naming-utils - - - /usr/share/doc - /usr/share/icons - /usr/share/themes - /usr/share/locale - - - logotype-pisi.svg - 48x48.png - 48x48.png - 48x48.png - 48x48.png - 48x48.png - - - - - 2021-09-20 - 3.22.23 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-07 - 3.22.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 3.22.21 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-25 - 3.22.21 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-brisk-menu - https://github.com/getsolus/brisk-menu - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.mate - Mate Brisk Menus - Modern, efficient menu for the MATE Desktop Environment. - https://github.com/getsolus/brisk-menu/releases/download/v0.6.2/brisk-menu-v0.6.2.tar.xz - - meson - gtk3-devel - libnotify-devel - mate-panel-devel - mate-menus-devel - libnotify-devel - - desktop/mate/mate-brisk-menu/pspec.xml - - - mate-brisk-menu - - gtk3 - glib2 - libX11 - libnotify - mate-menus - mate-panel - - - /usr/lib - /usr/share/dbus-1 - /usr/share/doc - /usr/share/mate-panel - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/locale - - - - - 2021-09-07 - 0.6.2 - Rebuild - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2021-04-21 - 0.6.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-tweak - https://github.com/ubuntu-mate/mate-tweak - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Tweak tool for MATE (fork of MintDesktop) - Tweak tool for MATE (fork of MintDesktop) - https://github.com/ubuntu-mate/mate-tweak/archive/21.04.3.tar.gz - - python3-devel - python3-setuptools - python3-distutils-extra - intltool - - desktop/mate/mate-tweak/pspec.xml - - - mate-tweak - - python3 - python3-setproctitle - python3-distro - python3-psutil - python3-pygobject3 - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/polkit-1 - /usr/share/man - /usr/share/locale - /usr/share/doc - - - - - 2021-10-24 - 21.04.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-07 - 21.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 20.04.0 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-03-23 - 20.04.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-notification-daemon - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.mate - Mate notification daemon - Mate masaüstü bilgilendirme hizmeti - mate-notification-daemon is the server implementation of the Mate desktop notification specification. - mate-notification-daemon Mate projesinin masaüstü bilgilendirme hizmeti uygulamasını içerir. - mate-notification-properties - http://pub.mate-desktop.org/releases/1.26/mate-notification-daemon-1.26.0.tar.xz - - intltool - python3-devel - libwnck3-devel - libnotify-devel - libcanberra-devel - libcanberra-gtk3-devel - mate-common - mate-panel-devel - mate-desktop-devel - libxml2-devel - - desktop/mate/mate-notification-daemon/pspec.xml - - - mate-notification-daemon - - atk - gtk3 - cairo - glib2 - pango - libX11 - libwnck3 - libnotify - gdk-pixbuf - libcanberra-gtk3 - mate-panel - mate-desktop - libxml2 - - - /usr/lib - /usr/bin - /usr/share/man/ - /usr/share/icons - /usr/share/dbus-1 - /usr/libexec - /usr/share/glib-2.0 - /usr/share/locale - /usr/share/applications - /usr/share/mate-panel - /usr/share/mate-notification-daemon - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-31 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - caja - https://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - app:gui - desktop.mate - Default file manager for the Mate desktop. - Mate masasütü için öntanımlı dosya yöneticisi - Caja is a file manager that allows to browse directories, preview files and launch applications. - Caja; dizinlerde gezinmeyi, dosyaları gözatmayı ve uygulamalar başlatmayı sağlayan bir dosya yöneticisidir. - system-file-manager - http://pub.mate-desktop.org/releases/1.26/caja-1.26.0.tar.xz - - intltool - pango-devel - cairo-devel - libSM-devel - gettext-devel - mate-common - exempi-devel - python3-devel - libxml2-devel - libexif-devel - autoconf-archive - libnotify-devel - dbus-glib-devel - mate-desktop-devel - startup-notification-devel - gobject-introspection-devel - - desktop/mate/caja/pspec.xml - - - caja - - atk - gtk3 - pango - cairo - glib2 - libSM - libICE - libX11 - exempi - libexif - libxml2 - libnotify - gdk-pixbuf - mate-desktop - gvfs-archive - gvfs-afp - gvfs-afc - gvfs-fuse - gvfs-gphoto2 - gvfs-mtp - gvfs-smb - - - /usr/lib/libcaja* - /usr/lib/girepository-1.0 - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/caja - /usr/share/doc - /usr/share/metainfo - /usr/share/icons - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/pixmaps - /usr/share/glib-2.0 - /usr/share/locale - /usr/share/applications - - - - caja-devel - caja için geliştirme dosyaları - caja için geliştirme dosyaları - - gtk3-devel - glib2-devel - caja - - - /usr/include - /usr/lib/pkgconfig - - - - caja-doc - caja için döküman belgeleri. - caja için döküman belgeleri. - - caja - - - /usr/share/gtk-doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-30 - 1.25.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-06 - 1.25.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-23 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-media - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3.0 - app:gui - desktop.mate - MATE media programs - This package contains a few media utilities for the MATE desktop, including a volume control. - multimedia-volume-control - http://pub.mate-desktop.org/releases/1.26/mate-media-1.26.0.tar.xz - - gtk3-devel - libxml2-devel - libcanberra-devel - libcanberra-gtk3-devel - mate-common - mate-panel-devel - libmatemixer-devel - mate-desktop-devel - intltool - - desktop/mate/mate-media/pspec.xml - - - mate-media - - gtk3 - cairo - glib2 - pango - libxml2 - gdk-pixbuf - mate-panel - libcanberra - libmatemixer - mate-desktop - libcanberra-gtk3 - - - /usr/share/doc - /usr/share/man - /usr/share/omf - /usr/bin - /usr/share/help - /usr/share/mate - /usr/share/icons - /usr/share/dbus-1 - /usr/share/sounds - /usr/lib - /usr/share/mate-2.0 - /usr/share/glib-2.0 - /usr/share/mate-media - /usr/share/mate-panel - /etc/xdg/autostart/ - /usr/share/applications - /usr/share/locale - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-31 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-icon-theme - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - data - desktop.mate - Mate icon theme - Mate simge teması - mate-icon-theme package contains the default icon theme used by the Mate desktop. - mate-icon-theme paketi, Mate masaüstü tarafından kullanılan öntanımlı simge temasını içerir. - https://pub.mate-desktop.org/releases/1.26/mate-icon-theme-1.26.0.tar.xz - - intltool - mate-common - icon-naming-utils-devel - - desktop/mate/mate-icon-theme/pspec.xml - - - mate-icon-theme - - mate-common - icon-naming-utils - - - /usr/share/doc - /usr/share/icons - /usr/share/locale - - - 16x16.png - 22x22.png - 24x24.png - 32x32.png - 48x48.png - 16x16.png - 22x22.png - 24x24.png - 32x32.png - 48x48.png - scalable.svg - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2013-09-10 - 1.6.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libmateweather - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - library - desktop.mate - libmateweather - libmateweather - libmateweather is a collection of documentation utilities for the Mate project. - libmateweather Mate Projesi'nin bir parçasıdır. - http://pub.mate-desktop.org/releases/1.26/libmateweather-1.26.0.tar.xz - - intltool - gtk3-devel - mate-common - libsoup-devel - libxml2-devel - timezone - - desktop/mate/libmateweather/pspec.xml - - - libmateweather - - gtk3 - glib2 - libsoup - libxml2 - gdk-pixbuf - - - /usr/share/doc - /usr/share/locale - /usr/share/icons - /usr/share/libmateweather - /usr/share/glib-2.0 - /usr/lib/libmateweather.so* - /usr/lib/libmateweather - - - - libmateweather-devel - libmateweather için geliştirme dosyaları - - gtk3-devel - glib2-devel - libsoup-devel - libxml2-devel - gdk-pixbuf-devel - libmateweather - - - /usr/lib/pkgconfig - /usr/include/libmateweather - - - - libmateweather-doc - libmateweather için döküman belgeleri. - libmateweather için döküman belgeleri. - - libmateweather - - - /usr/share/gtk-doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - caja-extensions - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Mate file manager eklentileri - Caja eklentileri - caja-extensions, Mate file manager eklentileri. - caja-extensions, Caja eklentileri. - http://pub.mate-desktop.org/releases/1.26/caja-extensions-1.26.0.tar.xz - - python3 - caja-devel - gtk3-devel - dbus-glib-devel - intltool - gssdp-devel - gupnp-devel - mate-common - mate-desktop-devel - - desktop/mate/caja-extensions/pspec.xml - - - caja-extensions - - caja - gtk3 - glib2 - gssdp - gupnp - dbus-glib - gdk-pixbuf - mate-desktop - - - /usr/lib/caja - /usr/lib/caja-sendto - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/glib-2.0/ - /usr/share/caja - /usr/share/locale - /usr/share/caja-extensions - - - - caja-extensions-devel - Development files for caja-extensions - Caja eklentileri için geliştirme dosyaları - - gtk3-devel - glib2-devel - caja-extensions - - - /usr/include - /usr/lib/pkgconfig - - - - caja-extensions-doc - caja-extensions için belgeler - caja-extensions için belgeler - - caja-extensions - - - /usr/share/gtk-doc/ - - - - - 2022-06-02 - 1.26.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - bamf - https://launchpad.net/bamf - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3+ - app:gui - desktop.mate - Application matching framework - Application matching framework - https://launchpadlibrarian.net/396415087/bamf-0.5.4.tar.gz - - glib2-devel - libwnck3-devel - libX11-devel - libgtop-devel - gnome-common - vala-devel - gtk-doc - libxslt-devel - python-lxml - python-six - python3-devel - gobject-introspection-devel - - - bamf-no-gtester_py3.patch - - desktop/mate/bamf/pspec.xml - - - bamf - - gtk3 - glib2 - libX11 - libgtop - libwnck3 - gdk-pixbuf - startup-notification - - - /usr/lib/libbamf3* - /usr/lib/bamf - /usr/lib/girepository-1.0 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/upstart - /usr/share/vala - /usr/lib/systemd/user/bamfdaemon.service - - - - bamf-devel - - glib2-devel - bamf - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-06-29 - 0.5.4 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-13 - 0.5.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-netbook - http://mate-desktop.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Basit bir pencere yönetim aracı - Basit bir pencere yönetim aracı - A simple window management tool. - Basit bir pencere yönetim aracı uygulaması. - mate-netbook - http://pub.mate-desktop.org/releases/1.24/mate-netbook-1.24.0.tar.xz - - intltool - gtk3-devel - glib2-devel - libwnck3-devel - libXtst-devel - libfakekey-devel - mate-panel-devel - - desktop/mate/mate-netbook/pspec.xml - - - mate-netbook - - atk - gtk3 - cairo - glib2 - pango - libX11 - libwnck3 - libfakekey - gdk-pixbuf - mate-panel - - - /usr/bin - /usr/lib/mate-netbook - /usr/share/doc - /usr/share/dbus-1 - /usr/share/MateConf - /usr/share/glib-2.0 - /etc/xdg/autostart - /usr/share/mate-panel - /usr/share/locale - /usr/share/man - - - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-user-share - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - library - desktop.mate - User level public file sharing via WebDAV or ObexFTP - mate-user-share is a small package that binds together various free software projects to bring easy to use user-level file sharing to the masses. - mate-file-share-properties - http://pub.mate-desktop.org/releases/1.26/mate-user-share-1.26.0.tar.xz - - gtk3-devel - caja-devel - libnotify-devel - libcanberra-devel - libcanberra-gtk3-devel - dbus-glib-devel - intltool - itstool - - desktop/mate/mate-user-share/pspec.xml - - - mate-user-share - - gtk3 - caja - glib2 - pango - libX11 - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/doc - /usr/share/help - /usr/share/icons - /usr/share/caja - /usr/share/glib-2.0 - /etc/xdg/autostart - /usr/share/locale - /usr/share/applications - /usr/share/mate-user-share - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-power-manager - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Mate için güç yöneticisi - Mate için güç yöneticisi - Power management tool for the MATE desktop. - mate-power-manager - http://pub.mate-desktop.org/releases/1.26/mate-power-manager-1.26.0.tar.xz - - gtk3-devel - dbus-glib-devel - cairo-devel - glib2-devel - mate-common - upower-devel - libnotify-devel - mate-panel-devel - mesa-devel - popt-devel - polkit-devel - libcanberra-devel - libcanberra-gtk3-devel - intltool - itstool - libsecret-devel - - desktop/mate/mate-power-manager/pspec.xml - - - mate-power-manager - - dbus - gtk3 - cairo - glib2 - pango - libX11 - upower - libXext - libsecret - dbus-glib - libnotify - libXrandr - gdk-pixbuf - mate-panel - libcanberra - libcanberra-gtk3 - - - /usr/share/doc - /usr/share/man - /usr/share/omf - /usr/bin - /usr/share/help - /usr/share/mate* - /usr/share/icons - /usr/share/dbus-1 - /usr/lib - /usr/share/polkit-1 - /usr/share/glib-2.0 - /etc/xdg/autostart/ - /usr/share/applications - /usr/share/locale - - - - - 2021-09-25 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-03 - 1.24.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - icon-naming-utils - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - data - desktop.mate - Mate icon theme - mate-icon-theme package contains the default icon theme used by the Mate desktop. - https://sources.archlinux.org/other/icon-naming-utils/icon-naming-utils-0.8.90.tar.gz - - perl-XML-Simple - - - remove-legacy-calc.patch - - desktop/mate/icon-naming-utils/pspec.xml - - - icon-naming-utils - - /usr/lib - /usr/share/doc - /usr/share/icon-naming-utils - /usr/share/dtds - - - - icon-naming-utils-devel - - icon-naming-utils - - - /usr/share/pkgconfig - - - - - 2020-06-29 - 0.8.90 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-13 - 0.8.90 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mozo - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - library - desktop.mate - Mozo menu editor for MATE - Easy MATE menu editing tool. - mozo - http://pub.mate-desktop.org/releases/1.26/mozo-1.26.1.tar.xz - - mate-common - mate-menus-devel - python3-pygobject3-devel - python3-devel - intltool - - desktop/mate/mozo/pspec.xml - - - mozo - - mate-panel - - - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man/ - /usr/share/mozo - /usr/share/icons - /usr/share/locale - /usr/share/applications - - - - - 2021-11-15 - 1.26.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 1.26.0 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-14 - 1.25.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pluma - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.mate - Mate metin editörü - mate masaüstü için metin editörü. - accessories-text-editor - http://pub.mate-desktop.org/releases/1.26/pluma-1.26.0.tar.xz - - intltool - itstool - libxml2-devel - gtk3-devel - enchant2-devel - libSM-devel - mate-common - iso-codes-devel - libpeas-devel - python3-devel - python3-pygobject3-devel - gtksourceview4-devel - - desktop/mate/pluma/pspec.xml - - - pluma - - atk - gtk3 - cairo - glib2 - libSM - pango - libICE - libX11 - libpeas - libxml2 - enchant2 - gdk-pixbuf - gtksourceview4 - gobject-introspection - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/omf - /usr/share/help - /usr/share/mate - /usr/share/pluma - /usr/share/glib-2.0 - /usr/share/gir-1.0 - /usr/share/metainfo - /usr/share/applications - /usr/share/locale - - - - pluma-devel - pluma için geliştirme dosyaları - - libpeas-devel - gtksourceview4-devel - pluma - - - /usr/include/pluma - /usr/lib/pkgconfig - - - - pluma-gtk-doc - pluma-gtk-doc için dosyalar - - pluma - - - /usr/share/gtk-doc/html/pluma/ - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-05 - 1.25.3 - v.bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-07-03 - 1.25.0 - v.bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-control-center - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - app:gui - desktop.mate - The MATE Desktop configuration tool - Mate yapılandırma araçları - mate-control-center is Mate's main interface for configuration of various aspects of your Mate desktop. - mate-control-center Mate masaüstünüzün çeşitli ayarlarını değiştiren, Mate'in ana arayüzüdür. - preferences-desktop - http://pub.mate-desktop.org/releases/1.26/mate-control-center-1.26.0.tar.xz - - itstool - intltool - gtk3-devel - libSM-devel - dconf-devel - polkit-devel - librsvg-devel - dbus-glib-devel - libcanberra-devel - desktop-file-utils - libXScrnSaver-devel - libappindicator-devel - accountsservice-devel - libcanberra-gtk3-devel - marco-devel - mate-common - mate-menus-devel - libmatekbd-devel - mate-desktop-devel - mate-settings-daemon-devel - - desktop/mate/mate-control-center/pspec.xml - - - mate-control-center - - atk - gtk3 - marco - libXi - libSM - polkit - libICE - librsvg - glib2 - cairo - pango - libX11 - libxml2 - freetype - dbus-glib - dconf - harfbuzz - mate-menus - fontconfig - libXcursor - gdk-pixbuf - libmatekbd - libxklavier - libcanberra - mate-desktop - libXScrnSaver - libappindicator - accountsservice - libcanberra-gtk3 - startup-notification - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/omf - /usr/bin - /usr/share/mime - /usr/share/mate - /usr/sbin - /usr/share/help - /etc/xdg/menus - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/polkit-1 - /usr/share/thumbnailers - /usr/share/mate-time-admin - /usr/share/applications - /usr/share/locale - /usr/share/desktop-directories - /usr/share/mate-control-center - - - - mate-control-center-devel - - gtk3-devel - glib2-devel - librsvg-devel - mate-menus-devel - mate-desktop-devel - mate-control-center - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-17 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-31 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-indicator-applet - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - LGPLv2+ - library - desktop.mate - A small applet to display information from various applications consistently in the panel. - A small applet to display information from various applications consistently in the panel. The indicator applet exposes Ayatana Indicators in the MATE Panel. - http://pub.mate-desktop.org/releases/1.26/mate-indicator-applet-1.26.0.tar.xz - - intltool - gtk3-devel - mate-common - mate-panel-devel - libindicator-devel - - desktop/mate/mate-indicator-applet/pspec.xml - - - mate-indicator-applet - - atk - gtk3 - glib2 - libX11 - mate-panel - libindicator - - - /usr/share/doc - /usr/share/icons - /usr/share/dbus-1 - /usr/lib - /usr/share/mate-panel - /usr/share/locale - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-applets - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - library - desktop.mate - Applets for MATE panel. - Applets for the MATE Desktop and Panel - http://pub.mate-desktop.org/releases/1.26/mate-applets-1.26.0.tar.xz - - libgtop-devel - libxml2-devel - libICE-devel - libSM-devel - upower-devel - libwnck3-devel - libnotify-devel - mate-common - mate-settings-daemon-devel - mate-notification-daemon - mate-panel-devel - libmateweather-devel - polkit-devel - gtksourceview3-devel - wireless-tools-devel - NetworkManager-devel - intltool - itstool - libnl-devel - cpupowertools - - desktop/mate/mate-applets/pspec.xml - - - mate-applets - - atk - gtk3 - libnl - cairo - glib2 - pango - libX11 - polkit - upower - libgtop - libxml2 - libwnck3 - dbus-glib - libnotify - gdk-pixbuf - mate-panel - cpupowertools - gtksourceview3 - libmateweather - wireless-tools - - - /usr/lib - /etc/sound - /etc/dbus-1 - /usr/share/doc - /usr/share/omf - /usr/bin - /usr/share/help - /usr/share/mate - /usr/share/icons - /usr/share/dbus-1 - /usr/share/pixmaps - /usr/share/MateConf - /usr/share/polkit-1 - /usr/share/glib-2.0 - /usr/share/mate-2.0 - /usr/share/man/ - /usr/share/mate-panel - /usr/share/locale - /usr/share/mate-applets - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-06 - 1.25.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-20 - 1.25.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-14 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - eom - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Eye of MATE, an image viewer for MATE - Mate için resim görüntüleyicisi - This is the Eye of MATE, an image viewer program. It is meant to be a fast and functional image viewer. - eom, resim görüntüleyicisidir. - eom - http://pub.mate-desktop.org/releases/1.26/eom-1.26.0.tar.xz - - zlib-devel - gobject-introspection-devel - libpeas-devel - libxml2-devel - gtk3-devel - imagemagick-devel - lcms2-devel - mate-common - exempi-devel - libexif-devel - librsvg-devel - dbus-glib-devel - mate-desktop-devel - libjpeg-turbo-devel - intltool - itstool - - desktop/mate/eom/pspec.xml - - - eom - - atk - gtk3 - zlib - glib2 - lcms2 - cairo - exempi - libX11 - libexif - libpeas - librsvg - libxml2 - gdk-pixbuf - mate-desktop - libjpeg-turbo - gobject-introspection - - - /usr/bin - /usr/lib/ - /usr/share/doc - /usr/share/man - /usr/share/omf - /usr/share/eom - /usr/share/help - /usr/share/mate - /usr/share/icons - /usr/share/glib-2.0 - /usr/share/gir-1.0 - /usr/share/metainfo - /usr/share/applications - /usr/share/locale - - - - eom-devel - Eye of MATE development files - eom için geliştirme dosyaları - - gtk3-devel - glib2-devel - eom - - - /usr/include/ - /usr/lib/pkgconfig/ - - - - eom-doc - Eye of MATE documentation files - eom için döküman belgeleri. - - eom - - - /usr/share/gtk-doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-backgrounds - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - data - desktop.mate - Default wallpapers for the Mate desktop - Mate masaüstü için öntanımlı duvar kağıtları - gnome-backgrounds contains default wallpapers for the Mate desktop. - mate-backgrounds, Mate masaüstü için öntanımlı duvar kağıtlarını içerir. - http://pub.mate-desktop.org/releases/1.26/mate-backgrounds-1.26.0.tar.xz - - nature/1.jpg - nature/2.jpg - nature/3.jpg - nature/4.jpg - nature/5.jpg - nature/6.jpg - nature/7.jpg - nature/8.jpg - - - intltool - mate-common - - - mate-backgrounds-add-image.patch - - desktop/mate/mate-backgrounds/pspec.xml - - - mate-backgrounds - - /usr/share/doc - /usr/share/pixmaps - /usr/share/locale - /usr/share/backgrounds - /usr/share/mate-background-properties - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-03 - 1.24.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-sensors-applet - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - library - desktop.mate - Display readings from hardware sensors in your MATE panel. - MATE Sensors Applet is an applet for the MATE Panel to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings under Linux.on. - http://pub.mate-desktop.org/releases/1.26/mate-sensors-applet-1.26.0.tar.xz - - gtk3-devel - mate-common - libnotify-devel - mate-panel-devel - lm_sensors-devel - libxslt-devel - intltool - itstool - - desktop/mate/mate-sensors-applet/pspec.xml - - - mate-sensors-applet - - gtk3 - cairo - glib2 - libnotify - mate-panel - gdk-pixbuf - lm_sensors - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/help - /usr/share/mate - /usr/share/icons - /usr/share/dbus-1 - /usr/share/pixmaps - /usr/share/glib-2.0 - /usr/share/mate-panel - /usr/share/locale - /usr/share/mate-sensors-applet - - - - mate-sensors-applet-devel - mate-sensors-applet için geliştirme dosyaları - mate-sensors-applet için geliştirme dosyaları - - mate-sensors-applet - - - /usr/include - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-common - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3+ - library - desktop.mate - Common files for development of Mate packages - Mate uygulamalarının geliştirmede kullandığı yaygın dosyalar - maate-common package contains aclocal macros, makefile headers and documents tools in order to build Mate sources. - mate-common, MATE ortamı için autoconf, automake ve libtool uzantısıdır. - http://pub.mate-desktop.org/releases/1.26/mate-common-1.26.0.tar.xz - desktop/mate/mate-common/pspec.xml - - - mate-common - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/share/mate-common - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-03 - 1.24.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libindicator - https://launchpad.net/libindicator - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:console - desktop.mate - A set of symbols and convience functions that all indicators would like to use. - Libary with a set of symbols and convience functions that all indicators would like to use (GTK+ 2 library) - https://launchpadlibrarian.net/116625186/libindicator-12.10.1.tar.gz - - dbus-glib-devel - gtk2-devel - gtk3-devel - gdk-pixbuf-devel - python3-devel - - - configure.patch - libindicator-12.10.1-glib262-g_define_type_with_private.patch - - desktop/mate/libindicator/pspec.xml - - - libindicator - - gtk3 - glib2 - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/libindicator - /etc/X11/Xsession.d/80indicator-debugging - - - - libindicator-devel - libindicator için geliştirme dosyalrı - libindicator için geliştirme dosyalrı - - gtk3-devel - libindicator - - - /usr/include/ - /usr/lib/pkgconfig - - - - libindicator-gtk2 - - gtk2 - - - /usr/lib/libindicator.so* - /usr/lib/indicator-loader - - - - libindicator-gtk2-devel - libindicator için geliştirme dosyalrı - - gtk2-devel - libindicator-gtk2 - - - /usr/lib/pkgconfig/indicator-0.4.pc - - - - - 2021-07-04 - 12.10.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 12.10.1 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-13 - 12.10.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-menus - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.mate - Mate Menus - Mate menüleri - mate-menus has got desktop-directories, Mate menus library and its python bindings. - mate-menus, Mate masaüstü dizinlerini, kitaplıklarını ve python bağlayıcılarını içerir. - http://pub.mate-desktop.org/releases/1.26/mate-menus-1.26.0.tar.xz - - intltool - mate-common - python3-devel - gobject-introspection-devel - - desktop/mate/mate-menus/pspec.xml - - - mate-menus - - glib2 - - - /usr/lib - /usr/share/doc - /etc/xdg/menus - /usr/share/mate - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/mate-menus - - - - mate-menus-devel - mate-menus için geliştirme dosyaları - mate-menus için geliştirme dosyaları - - glib2-devel - mate-menus - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.25.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-23 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-29 - 1.22.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libmatemixer - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - LGPLv2+ - library - desktop.mate - Mixer library for MATE Desktop - Mixer library for MATE Desktop - http://pub.mate-desktop.org/releases/1.26/libmatemixer-1.26.0.tar.xz - - intltool - mate-common - pulseaudio-libs-devel - alsa-lib-devel - gtk-doc - python-six - autoconf-archive - - desktop/mate/libmatemixer/pspec.xml - - - libmatemixer - - glib2 - alsa-lib - pulseaudio-libs - - - /usr/share/doc - /usr/share/gtk-doc - /usr/share/locale - /usr/lib/libmatemixer.so* - /usr/lib/libmatemixer - - - - libmatemixer-devel - libmatekbd için geliştirme dosyaları - - glib2-devel - libmatemixer - - - /usr/lib/pkgconfig - /usr/include/mate-mixer - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - atril - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Atril is a document viewer for the MATE desktop - Atril is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript. - atril - http://pub.mate-desktop.org/releases/1.26/atril-1.26.0.tar.xz - - tiff-devel - gtk3-devel - libXt-devel - libglade-devel - libjpeg-turbo-devel - cairo-devel - mate-common - libsecret-devel - libspectre-devel - poppler-glib-devel - gobject-introspection-devel - yelp-tools - libgxps-devel - caja-devel - webkit2gtk-devel - intltool - itstool - gtk-doc - python-six - djvu-devel - texlive-bin-devel - t1lib-devel - - desktop/mate/atril/pspec.xml - - - atril - - atk - caja - tiff - gtk3 - zlib - cairo - djvu - glib2 - pango - t1lib - libSM - libICE - libgxps - libxml2 - libsecret - gdk-pixbuf - libspectre - webkit2gtk - texlive-bin - poppler-glib - - - /usr/lib - /usr/share/omf - /usr/share/man - /usr/bin - /usr/share/doc - /usr/share/help - /usr/share/atril - /usr/share/mate* - /usr/share/icons - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/glib-2.0 - /usr/share/caja - /usr/share/metainfo - /usr/share/thumbnailers - /usr/share/applications - /usr/share/locale - - - - atril-devel - Atril development files - - gtk3-devel - glib2-devel - atril - - - /usr/include - /usr/lib/pkgconfig - - - - atril-doc - Atril documentation files. - - atril - - - /usr/share/gtk-doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-05 - 1.25.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-caja - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - library - desktop.mate - Python binding for Mate CAJA - These are unstable bindings for the caja extension library. - https://pub.mate-desktop.org/releases/1.26/python-caja-1.26.0.tar.xz - - python3-devel - mate-common - python3-pygobject3-devel - caja-devel - intltool - - desktop/mate/python-caja/pspec.xml - - - python-caja - - gtk3 - caja - glib2 - python3 - - - /usr/lib - /usr/share/locale - /usr/share/caja - /usr/share/doc - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-17 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.1 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mate-calc - http://www.mate-desktop.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv3 - app:gui - desktop.mate - Calculator for the Mate desktop environment - Mate için hesap makinesi - mate-calc, Mate masaüstü için hesap makinesi. - mate-calc, Mate masaüstü için hesap makinesi. - accessories-calculator - http://pub.mate-desktop.org/releases/1.26/mate-calc-1.26.0.tar.xz - - intltool - itstool - mpfr-devel - libmpc-devel - gtk3-devel - libxml2-devel - mate-common - - desktop/mate/mate-calc/pspec.xml - - - mate-calc - - atk - gtk3 - mpfr - libmpc - glib2 - pango - libxml2 - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/help - /usr/share/glib-2.0 - /usr/share/mate-calc - /usr/share/applications - /usr/share/metainfo - /usr/share/locale - - - - - 2021-09-07 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 1.25.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.22.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - history-manager - https://github.com/PisiLinuxNew/history-manager/ - - Metehan Özbek - admin@pisilinux.org - - GPLv2 - app:gui - desktop.pisilinux - KDE5 port of History Manager Tool - Pisi Geçmiş Yöneticisi uygulaması - History manager is a graphical interface to pisi snapshot facilities. - Pisi ile yapılan işlem geçmişini gösterme, sistemi belirli noktaya döndürme, yeni görüntü alma gibi geçmiş yönetimi işlemleri yapmayı sağlayan araç. - https://github.com/PisiLinuxNew/history-manager/archive/refs/tags/history-manager-0.2.9.tar.gz - - python-qt5-devel - pypolkit - qt5-base-devel - python-setuptools - qt5-linguist - - desktop/pisilinux/history-manager/pspec.xml - - - history-manager - - python-qt5 - pypolkit - - - /usr/bin - /usr/share/locale - /usr/lib/python* - /usr/share - - - - - 2022-06-01 - 0.2.9 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-03-18 - 0.2.8.1b - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-16 - 0.2.8.1b - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 0.2.8.0b - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-17 - 0.2.8.0b - fixed window title issue for other desktops. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-04-08 - 0.2.8.0b - Release bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-18 - 0.2.8.0b - First release - Metehan Özbek - admin@pisilinux.org - - - - - - mevlana - https://pisilinux.org - - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org - - GPLv3 - app:gui - desktop.pisilinux - A cursor theme for Pisi GNU/Linux - Pisi GNU/Linux için bir imleç teması - A cursor theme for Pisi GNU/Linux - Pisi GNU/Linux için bir imleç teması - mevlana - https://sourceforge.net/projects/pisilinux/files/source/Mevlana.tar.gz - desktop/pisilinux/mevlana/pspec.xml - - - mevlana - - /usr/share/icons - - - - - 2021-04-22 - 0.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - package-manager - https://www.pisilinux.org + kmouth + https://apps.kde.org/kmouth/ PisiLinux Community admins@pisilinux.org GPLv2 app:gui - desktop.pisilinux - PiSi graphical user interface - PiSi kullanıcı grafik arayüzü - PiSi est une interface graphique permettant d'effectuer l'installation, la suppression et la mise à jour de paquet PiSi depuis un environnement graphique. - Package Manager is PiSi's easy-to-use graphical user interface. - PiSi paket yöneticisine ait paket kurma, kaldırma ve güncelleme gibi işlerin grafik ortamda yapılabilmesini sağlayan PiSi grafik arayüzü. - https://github.com/PisiLinuxNew/package-manager/archive/refs/tags/PM4.2.7.2.tar.gz + desktop.kde.accessibility + A speech synthesizer frontend + A speech synthesizer frontend + KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mutal people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks. + KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mutal people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks. + kmouth + https://download.kde.org/stable/release-service/21.12.3/src/kmouth-21.12.3.tar.xz - docutils - python-docutils - python-qt5-devel - python-sip - intltool - qt5-linguist + extra-cmake-modules + kdoctools-devel + ki18n-devel + kio-devel + kxmlgui-devel + qt5-speech-devel - desktop/pisilinux/package-manager/pspec.xml + desktop/kde/accessibility/kmouth/pspec.xml - package-manager + kmouth - pisi - python-qt5 - python-sip - pisilinux-desktop-services - iconcan + kio + libqaccessibilityclient + icon-theme-hicolor + qt5-speech + + /usr + /etc + + + + + 2022-04-17 + 21.12.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kde-servicemenu-rootactions + http://www.kde-apps.org/content/show.php?content=48411 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.addon + Root actions servicemenu for Dolphin + Dolphin için yetkili kullanıcı eylemleri menüsü + kde-servicemenu-rootactions is an addon for KDE4 that provides a convenient way to perform several actions as root from the right-click context menu in Dolphin file manager. + kde-servicemenu-rootactions, Dolphin dosya yöneticisinin içerik menüsü üzerinden yetkili kullanıcı işlemlerinin gerçekleştirilebilmesini sağlayan bir eklentidir. + dolphin + https://sourceforge.net/projects/pisilinux/files/source/rootactions_servicemenu_2.9.1.tar.gz + desktop/kde/addon/kde-servicemenu-rootactions/pspec.xml + + + kde-servicemenu-rootactions /usr/bin - /usr/share - /usr/share/applications/ - /usr/share/icons + /usr/share/kservices5 /usr/share/doc - - 2022-06-01 - 4.2.7.2 - some improvements - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-05-24 - 4.2.7.1 - fixed update button functions - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-05-06 - 4.2.7.1 - added install/remove actions to installed tab - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-04-26 - 4.2.7.1 - fixed desktop entry and group icons - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-04-15 - 4.2.7 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-05-25 - 4.2.6 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2020-04-04 - 4.2.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-20 - 4.2.3 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2020-01-20 - 4.2.2 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-12-06 - 4.2.2 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-09-29 - 4.2.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-02-03 - 4.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-16 - 4.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 4.1.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-24 - 4.2.0 - fixed source - Kamil Atlı - suvari@pisilinux.org - - - 2018-02-11 - 4.1.9 - fixed icons issue. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-01-13 - 4.1.8 - fixed icons issue. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-09-01 - 4.1.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-08 - 4.1.7 - Version Bump, add new builddep. - Kamil Atlı - suvari@pisilinux.org - - - 2016-08-09 - 4.1.6 - Release Bump - Metehan Özbek - admin@pisilinux.org - - 2016-08-08 - 4.1.5 - Release Bump - Metehan Özbek - admin@pisilinux.org + 2018-10-19 + 2.9.1 + Rebuild + Kamil Atlı + suvari@pisilinux.org - 2016-08-06 - 4.1.3 - Release Bump - Metehan Özbek - admin@pisilinux.org + 2018-08-11 + 2.9.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com - 2016-07-01 - 4.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-05-28 - 4.1.1 - ported pyqt5 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pisilinux-welcome - https://pisilinux.org - - Metehan Özbek - mthnzbk@gmail.com - - GPLv3 - app:gui - desktop.pisilinux - Pisi Linux Welcome Application - Pisi Linux Hoşgeldin Uygulaması - Pisi Linux Welcome Application - Hoşgeldin uygulaması, bilgisayarınız ilk defa açıldığında sizi karşılar. - pisilinux-welcome - https://github.com/PisiLinuxNew/pisilinux-welcome/archive/v1.7.tar.gz - - python3-qt5 - qt5-linguist - python3-devel - python3-setuptools - - desktop/pisilinux/pisilinux-welcome/pspec.xml - - - pisilinux-welcome - - python3-qt5 - - - /etc - /usr/share/doc - /usr/bin - /usr/share - /usr/share/icons - /usr/share/pisilinux-welcome - /usr/share/applications - /usr/lib/python3*/site-packages - /usr/share/welcome/languages - - - - - 2022-03-13 - 1.7 - version bump + 2.9.1 + Version Bump Mustafa Cinasal muscnsl@gmail.com - - 2021-11-07 - 1.6 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-20 - 1.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-07 - 1.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.4 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2019-02-19 - 1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-18 - 1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-03 - 1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-17 - 1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-08 - 1.0 - New version - Osman Erkan - osman.erkan@yandex.com - - - 2017-05-28 - 1.0b - rebuild - Metehan Özbek - mthnzbk@gmail.com - - - 2016-08-26 - 1.0b - ek buton - Metehan Özbek - mthnzbk@gmail.com - - - 2016-07-30 - 1.0b - hatalar düzeltilmiş. - Metehan Özbek - mthnzbk@gmail.com - - 2016-07-29 - 1.0b - güncellendi - Metehan Özbek - mthnzbk@gmail.com - - - 2016-05-17 - 1.0a - first - Metehan Özbek - mthnzbk@gmail.com - - - - - - kaptan - https://pisilinux.org - - Metehan Özbek - mthnzbk@gmail.com - - GPLv3 - app:gui - desktop.pisilinux - Kaptan, Pisi Linux workspace configuration wizard - Pisi Linux Kaptan - Pisi Linux Kaptan - Kaptan lets you configure your workspace on first login. - Kaptan, bilgisayarınız ilk defa açıldığında çalışma ortamınızı kişiselleştirmenize yardımcı olur. - Kaptan, el asistente de inicio de Pisi Linux que le ayudará a personalizar su entorno de trabajo. - kaptan - https://github.com/PisiLinuxNew/kaptan/archive/refs/tags/7.4.3.tar.gz - - python3-setuptools - python3-qt5-devel - python3-devel - qt5-linguist - - desktop/pisilinux/kaptan/pspec.xml - - - kaptan - - python3-qt5 - - - /usr/bin - /usr/share/kaptan - /usr/lib/python3*/site-packages - /usr/share/applications - /usr/share/icons - /usr/share/doc - /usr/share/kaptan/languages - /etc - - - - - 2021-10-24 - 7.4.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-03 - 7.4.3 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-05-30 - 7.4.0 - Rebuild. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-10-19 - 7.3.2 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-10-19 - 7.3.1 - fix pisilinux.org links. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-02-03 - 7.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-16 - 7.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 7.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-07 - 7.2 - auto start closed. - Kamil Atlı - suvari@pisilinux.org - - - 2018-02-07 - 7.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-05 - 7.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-03 - 7.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 6.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) + 2016-05-23 + 2.9 + Release bump + Stefan Gronewold groni@pisilinux.org - - 2016-08-09 - 5.0 - Release Bump - Metehan Özbek - mthnzbk@gmail.com + + 2016-04-10 + 2.9 + First release + Stefan Gronewold + groni@pisilinux.org - - 2016-07-20 - 5.1.2 - Release Bump - Metehan Özbek - mthnzbk@gmail.com - - - 2016-06-09 - 5.1.1 - Release Bump + + + + + kde-thumbnailer-epub + http://kde-apps.org/content/show.php/KDE+ePub+Thumbnailer?content=151210 + Pisi Linux Community admin@pisilinux.org - - - 2016-05-29 - 5.1.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-17 - 5.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-17 - 5.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - service-manager - https://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.pisilinux - System Service configuration GUI - Servis yönetim arayüzü - Le gestionnaire de Service est utilisé pour administrer les services lancés dans Pisi Linux. - This system service configuration software is developed for Pisi Linux. It provides managing system services. - Servis yöneticisi, Pisi Linux'da çalışan sunucu ve servislerin yönetilmesini sağlar - https://github.com/PisiLinuxNew/service-manager/archive/service-manager-3.1.2.tar.gz - - pisilinux-desktop-services - docutils - python-docutils - python-qt5-devel - - - Icons_display_fix.patch - - desktop/pisilinux/service-manager/pspec.xml - - - service-manager - - python-qt5 - pisilinux-desktop-services - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/applications - - - - - 2021-11-28 - 3.1.2 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-12-06 - 3.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 3.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-11 - 3.1.1 - fixed icons and window title issues - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-08-24 - 3.1.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-03 - 3.1.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - pisilinux-desktop-services - https://www.pisilinux.org - - pisilinux Community - admins@pisilinux.org GPLv2 library - desktop.pisilinux - Pisi Linux Desktop Services - Pisi Linux Masaüstü Hizmetleri - pisilinux-desktop-services is a wrapper python module for integrating various desktop environments using PyQt. - pisilinux-desktop-services, Pisi Linux Uygulamalarının farklı masaüstü ortamları ile bütünleşik bir şekilde çalışmasını sağlayan bir Python modülüdür. - https://github.com/PisiLinuxNew/pds/archive/refs/tags/pds-2.1.2.tar.gz + desktop.kde.addon + A KDE thumbnail generator for the ePub file format. + A KDE thumbnail generator for the ePub file format. + https://sourceforge.net/projects/pisilinux/files/source/kde-thumbnailer-epub-1.1.tar.gz - python-qt5-devel + qt5-base-devel + karchive-devel + kio-devel + extra-cmake-modules - desktop/pisilinux/pisilinux-desktop-services/pspec.xml + desktop/kde/addon/kde-thumbnailer-epub/pspec.xml - pisilinux-desktop-services + kde-thumbnailer-epub - python-qt5 + qt5-base + kio + karchive + libgcc /usr/lib - /usr/share/ + /usr/lib/qt5 + /usr/share + /usr/share/doc - - 2022-06-01 - 2.1.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-06-08 - 2.1.1 - Rebuild Gonme - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-21 - 2.1.1 - Version bump - Sami BABAT - samibabat@gmail.com - - - 2020-03-15 - 2.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 2.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 2.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - 2017-09-01 - 2.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-08 - 2.0.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-03 - 2.0.0 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-28 - 2.0.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pisiplayer - https://pisilinux.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3 - app:gui - desktop.pisilinux - Video Player - Video Player for Pisi Linux - pisiplayer - https://github.com/mthnzbk/pisi-player/archive/0.9.tar.gz - - python3-setuptools - python3-devel - python3-qt5 - - desktop/pisilinux/pisiplayer/pspec.xml - - - pisiplayer - - python3-qt5 - python3-sip - python3-youtube_dl - - - /usr/bin - /usr/lib/pisiplayer - /usr/lib/python3*/site-packages - /usr/share/applications - /usr/share/icons - /usr/share/doc - - - - - 2021-11-07 - 0.9 - Rebuild py3 - Pisi Linux Admins - admins@pisilinux.org - - - 2019-04-22 - 0.9 - Rebuild. + 2018-11-13 + 1.1 + Rebuild Ertuğrul Erata ertugrulerata@gmail.com - - 2017-05-28 - 0.9 - rebuild - Pisi Linux Admins - admins@pisilinux.org + + 2018-08-11 + 1.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com - - 2016-07-04 - 0.9 + + 2016-08-04 + 1.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-05-23 + 1.0 First release - Metehan Özbek - admins@pisilinux.org - - - - - - plasma-applet-thermal-monitor - https://github.com/kotelnik/plasma-applet-thermal-monitor - Stefan Gronewold groni@pisilinux.org - - GPL - desktop.kde.addon - Plasma 5 applet for monitoring CPU, GPU and other available temperature sensors. - Shows temperature of various available sensors including CPU, GPU (lmsensors and nvidia-smi if appliable) and HDD (using udisks2 d-bus backend). - https://github.com/kotelnik/plasma-applet-thermal-monitor/archive/v1.2.9.tar.gz - - extra-cmake-modules - plasma-workspace-devel - qt5-base-devel - qt5-graphicaleffects - - desktop/kde/addon/plasma-applet-thermal-monitor/pspec.xml - - - plasma-applet-thermal-monitor - Plasma 5 applet for monitoring CPU, GPU and other available temperature sensors. - - plasma-workspace - qt5-base - qt5-graphicaleffects - - - /usr/share - /usr/share/locale - /usr/share/kservices5 - /usr/share/plasma - /usr/share/metainfo - /usr/share/doc - - - - - 2019-04-20 - 1.2.9 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 1.2.7 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - 2016-11-13 - 1.2.7 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - plasma-applet-rssnow - https://github.com/Misenko/rssnow-plasma5-applet - - Stefan Gronewold - groni@pisilinux.org - - GPL - desktop.kde.addon - Show news from various sources - Show news from various sources - https://github.com/groni/Sources/raw/master/rssnow-plasma5-applet.tar.gz - - extra-cmake-modules - plasma-workspace-devel - qt5-base-devel - - desktop/kde/addon/plasma-applet-rssnow/pspec.xml - - - plasma-applet-rssnow - Show news from various sources - - plasma-workspace - qt5-base - - - /usr/share - /usr/share/kservices5 - /usr/share/plasma - - - - - 2019-04-20 + 2016-03-14 1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-11-13 - 1.0 - First Release + First release Stefan Gronewold groni@pisilinux.org @@ -33309,345 +15154,6 @@ components such as the Settings and gnome-shell. - - - plasma-applet-weather-widget - https://www.linux-apps.com/content/show.php/Weather+Widget?content=169572 - - Stefan Gronewold - groni@pisilinux.org - - GPL - desktop.kde.addon - Plasmoid for showing weather information from yr.no and Open Weather Map servers. - Plasmoid for showing weather information from yr.no and Open Weather Map servers. - https://github.com/kotelnik/plasma-applet-weather-widget/archive/v1.6.7.tar.gz - - extra-cmake-modules - plasma-workspace-devel - qt5-base-devel - glibc-devel - - desktop/kde/addon/plasma-applet-weather-widget/pspec.xml - - - plasma-applet-weather-widget - Plasmoid for showing weather information from yr.no and Open Weather Map servers. - - plasma-workspace - qt5-base - qt5-graphicaleffects - - - /usr/share - /usr/lib/qt5 - /usr/share/doc - - - - - 2018-08-11 - 1.6.7 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-11-23 - 1.6.7 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kde-servicemenu-rootactions - http://www.kde-apps.org/content/show.php?content=48411 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.addon - Root actions servicemenu for Dolphin - Dolphin için yetkili kullanıcı eylemleri menüsü - kde-servicemenu-rootactions is an addon for KDE4 that provides a convenient way to perform several actions as root from the right-click context menu in Dolphin file manager. - kde-servicemenu-rootactions, Dolphin dosya yöneticisinin içerik menüsü üzerinden yetkili kullanıcı işlemlerinin gerçekleştirilebilmesini sağlayan bir eklentidir. - dolphin - https://sourceforge.net/projects/pisilinux/files/source/rootactions_servicemenu_2.9.1.tar.gz - desktop/kde/addon/kde-servicemenu-rootactions/pspec.xml - - - kde-servicemenu-rootactions - - /usr/bin - /usr/share/kservices5 - /usr/share/doc - - - - - 2018-10-19 - 2.9.1 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-11 - 2.9.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-28 - 2.9.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-05-23 - 2.9 - Release bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-04-10 - 2.9 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - snorenotify - https://github.com/KDE/snorenotify - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv3 - app - desktop.kde.addon - Multi-platform Qt5 notification framework - Snorenotify is a multi platform Qt notification framework. Using a plugin system it is possible to create notifications with many different notification systems on Windows, Unix and Mac. - http://download.kde.org/stable/snorenotify/0.7.0/src/snorenotify-0.7.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-linguist - qt5-quickcontrols2-devel - qt5-multimedia-devel - qt5-websockets-devel - - desktop/kde/addon/snorenotify/pspec.xml - - - snorenotify - Multi-platform Qt5 notification framework - - libgcc - qt5-base - qt5-multimedia - qt5-websockets - qt5-declarative - - - /usr/bin - /usr/lib/qt5 - /usr/lib/libsnore* - /usr/share/applications - /usr/share/locale - /usr/share/icons - /usr/share/doc - - - - snorenotify-devel - Devel files for snorenotify - - snorenotify - qt5-base-devel - - - /usr/lib/cmake - /usr/include - - - - - 2018-11-13 - 0.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 0.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 0.7.0 - Release bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-24 - 0.7.0 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-02-04 - 0.7.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kde-thumbnailer-epub - http://kde-apps.org/content/show.php/KDE+ePub+Thumbnailer?content=151210 - - Pisi Linux Community - admin@pisilinux.org - - GPLv2 - library - desktop.kde.addon - A KDE thumbnail generator for the ePub file format. - A KDE thumbnail generator for the ePub file format. - https://sourceforge.net/projects/pisilinux/files/source/kde-thumbnailer-epub-1.1.tar.gz - - qt5-base-devel - karchive-devel - kio-devel - extra-cmake-modules - - desktop/kde/addon/kde-thumbnailer-epub/pspec.xml - - - kde-thumbnailer-epub - - qt5-base - kio - karchive - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2018-11-13 - 1.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 1.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-08-04 - 1.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-05-23 - 1.0 - First release - Stefan Gronewold - groni@pisilinux.org - - - 2016-03-14 - 1.0 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - plasma-applet-system-panel - https://github.com/Musikolo/plasma5-applets-system-panel - - Stefan Gronewold - groni@pisilinux.org - - GPL - desktop.kde.addon - Plasma5 applet that displays a panel with a set of system actions - Plasma5 applet that displays a panel with a set of system actions - https://github.com/Musikolo/plasma5-applets-system-panel/archive/v1.3.0.tar.gz - - extra-cmake-modules - plasma-workspace-devel - qt5-base-devel - glibc-devel - qt5-declarative-devel - - desktop/kde/addon/plasma-applet-system-panel/pspec.xml - - - plasma-applet-system-panel - Plasma5 applet that displays a panel with a set of system actions - - plasma-workspace - qt5-base - libgcc - - - /usr/share - /usr/lib/qt5 - /usr/share/doc - - - - - 2018-08-11 - 1.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-11-23 - 1.3 - First Release - Stefan Gronewold - groni@pisilinux.org - - - plasma-applet-distrowatcher @@ -33793,7 +15299,27548 @@ components such as the Settings and gnome-shell. - kunitconversion + plasma-applet-rssnow + https://github.com/Misenko/rssnow-plasma5-applet + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.addon + Show news from various sources + Show news from various sources + https://github.com/groni/Sources/raw/master/rssnow-plasma5-applet.tar.gz + + extra-cmake-modules + plasma-workspace-devel + qt5-base-devel + + desktop/kde/addon/plasma-applet-rssnow/pspec.xml + + + plasma-applet-rssnow + Show news from various sources + + plasma-workspace + qt5-base + + + /usr/share + /usr/share/kservices5 + /usr/share/plasma + + + + + 2019-04-20 + 1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-11-13 + 1.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + plasma-applet-system-panel + https://github.com/Musikolo/plasma5-applets-system-panel + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.addon + Plasma5 applet that displays a panel with a set of system actions + Plasma5 applet that displays a panel with a set of system actions + https://github.com/Musikolo/plasma5-applets-system-panel/archive/v1.3.0.tar.gz + + extra-cmake-modules + plasma-workspace-devel + qt5-base-devel + glibc-devel + qt5-declarative-devel + + desktop/kde/addon/plasma-applet-system-panel/pspec.xml + + + plasma-applet-system-panel + Plasma5 applet that displays a panel with a set of system actions + + plasma-workspace + qt5-base + libgcc + + + /usr/share + /usr/lib/qt5 + /usr/share/doc + + + + + 2018-08-11 + 1.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-11-23 + 1.3 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + plasma-applet-thermal-monitor + https://github.com/kotelnik/plasma-applet-thermal-monitor + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.addon + Plasma 5 applet for monitoring CPU, GPU and other available temperature sensors. + Shows temperature of various available sensors including CPU, GPU (lmsensors and nvidia-smi if appliable) and HDD (using udisks2 d-bus backend). + https://github.com/kotelnik/plasma-applet-thermal-monitor/archive/v1.2.9.tar.gz + + extra-cmake-modules + plasma-workspace-devel + qt5-base-devel + qt5-graphicaleffects + + desktop/kde/addon/plasma-applet-thermal-monitor/pspec.xml + + + plasma-applet-thermal-monitor + Plasma 5 applet for monitoring CPU, GPU and other available temperature sensors. + + plasma-workspace + qt5-base + qt5-graphicaleffects + + + /usr/share + /usr/share/locale + /usr/share/kservices5 + /usr/share/plasma + /usr/share/metainfo + /usr/share/doc + + + + + 2019-04-20 + 1.2.9 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 1.2.7 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-11-13 + 1.2.7 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + plasma-applet-weather-widget + https://www.linux-apps.com/content/show.php/Weather+Widget?content=169572 + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.addon + Plasmoid for showing weather information from yr.no and Open Weather Map servers. + Plasmoid for showing weather information from yr.no and Open Weather Map servers. + https://github.com/kotelnik/plasma-applet-weather-widget/archive/v1.6.7.tar.gz + + extra-cmake-modules + plasma-workspace-devel + qt5-base-devel + glibc-devel + + desktop/kde/addon/plasma-applet-weather-widget/pspec.xml + + + plasma-applet-weather-widget + Plasmoid for showing weather information from yr.no and Open Weather Map servers. + + plasma-workspace + qt5-base + qt5-graphicaleffects + + + /usr/share + /usr/lib/qt5 + /usr/share/doc + + + + + 2018-08-11 + 1.6.7 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-11-23 + 1.6.7 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + snorenotify + https://github.com/KDE/snorenotify + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv3 + app + desktop.kde.addon + Multi-platform Qt5 notification framework + Snorenotify is a multi platform Qt notification framework. Using a plugin system it is possible to create notifications with many different notification systems on Windows, Unix and Mac. + http://download.kde.org/stable/snorenotify/0.7.0/src/snorenotify-0.7.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-linguist + qt5-quickcontrols2-devel + qt5-multimedia-devel + qt5-websockets-devel + + desktop/kde/addon/snorenotify/pspec.xml + + + snorenotify + Multi-platform Qt5 notification framework + + libgcc + qt5-base + qt5-multimedia + qt5-websockets + qt5-declarative + + + /usr/bin + /usr/lib/qt5 + /usr/lib/libsnore* + /usr/share/applications + /usr/share/locale + /usr/share/icons + /usr/share/doc + + + + snorenotify-devel + Devel files for snorenotify + + snorenotify + qt5-base-devel + + + /usr/lib/cmake + /usr/include + + + + + 2018-11-13 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-20 + 0.7.0 + Release bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-24 + 0.7.0 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-02-04 + 0.7.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + colord-kde + http://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.admin + Colord support for KDE + KDE support for colord including KDE Daemon module and System Settings module. + mirrors://kde/stable/colord-kde/0.5.0/src/colord-kde-0.5.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + glibc-devel + libXext-devel + libICE-devel + libX11-devel + libxcb-devel + libXrandr-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kiconthemes-devel + gettext-devel + ki18n-devel + kservice-devel + kcmutils-devel + kio-devel + knotifications-devel + plasma-framework-devel + kwidgetsaddons-devel + kwindowsystem-devel + kitemviews-devel + lcms2-devel + extra-cmake-modules + + desktop/kde/admin/colord-kde/pspec.xml + + + colord-kde + + qt5-base + qt5-x11extras + kconfig + kconfigwidgets + libX11 + ki18n + lcms2 + libgcc + kservice + libXrandr + kcoreaddons + kdbusaddons + kwidgetsaddons + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2019-09-17 + 0.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 0.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-20 + 0.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-13 + 0.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-14 + 0.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 0.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-24 + 0.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-11-13 + 0.5.0 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + grub2-editor + https://github.com/maz-1/grub2-editor + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.admin + A KDE Control Module for configuring the GRUB2 bootloader + Grub2 bootloader yapılandırmak için bir KDE Kontrol Modülü + This port has some extra features compared to original grub2-editor: + All initialize jobs are merged into the same action, so password are only asked once on startup. Add password protection setup(only tested on archlinux). + Sorunsuz KDE Sistem Ayarları entegre, bu Grub2 yapılandırmasını yönetmek için merkezi bir yerdir. En önemlisi birçok Grub2 yapılandırma seçenekleri, destekler. + https://github.com/maz-1/grub2-editor/archive/0.8.1.tar.gz + + extra-cmake-modules + gettext-devel + grub2 + os-prober + GraphicsMagick-devel + imagemagick-devel + kauth-devel + kconfigwidgets-devel + kcoreaddons-devel + kdoctools-devel + ki18n-devel + kio-devel + qca2-qt5-devel + qt5-base-devel + solid-devel + + + grub2.patch + + desktop/kde/admin/grub2-editor/pspec.xml + + + grub2-editor + A KDE Control Module for configuring the GRUB2 bootloader + + qt5-base + kio + kauth + ki18n + solid + libgcc + imagemagick + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /etc/grub.d/grub_rmecho.sh + /etc/dbus-1 + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2021-08-29 + 0.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 0.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 0.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-17 + 0.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-29 + 0.8.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-20 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-24 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-14 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 0.7.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-23 + 0.7.0 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2017-01-23 + 0.7.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + akonadi + https://userbase.kde.org/Akonadi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.applications + PIM (Personal Information Management) Storage Service + PIM (Kişisel Bilgi Yönetimi) Depolama Servisi + akonadi is an extensible cross-desktop storage service for PIM data and meta data providing concurrent read, write, and query access. + Akonadi, PIM verisi ve meta veriler için eşzamanlı okuma, yazma ve sorgulama yapma imkanı sağlayan, masaüstü ortamından bağımsız, genişletilebilir bir depolama servisidir. + akonadi + mirrors://kde/stable/release-service/22.04.1/src/akonadi-22.04.1.tar.xz + + qt5-base-devel + qt5-designer-devel + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + ki18n-devel + kiconthemes-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + sqlite-devel + shared-mime-info + mariadb-client + mariadb-server + postgresql-server + libxslt-devel + boost-devel + kitemmodels-devel + kio-devel + kaccounts-integration-devel + libaccounts-qt5-devel + extra-cmake-modules + libaccounts-glib-devel + xz-devel + + desktop/kde/applications/akonadi/pspec.xml + + + akonadi + app:console + + kio + sqlite + libgcc + ki18n + kcrash + kconfig + kxmlgui + libxml2 + qt5-base + kitemmodels + kcoreaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + mariadb-client + mariadb-server + postgresql-server + libaccounts-qt5 + kaccounts-integration + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-postgresql + + + /etc + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/mime + /usr/share + /usr/share/doc/ + + + + akonadi-devel + Development files for akonadi + akonadi için geliştirme dosyaları + + akonadi + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-11 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-06 + 18.12.3 + Fix deps. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + akonadi-calendar + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Akonadi calendar integration + Calendar integration for Akonadi. + mirrors://kde/stable/release-service/22.04.1/src/akonadi-calendar-22.04.1.tar.xz + + qt5-base-devel + ki18n-devel + kcodecs-devel + kdoctools-devel + boost-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmailtransport-devel + akonadi-devel + extra-cmake-modules + kdesignerplugin + akonadi-mime-devel + kmime-devel + cyrus-sasl-devel + kcontacts-devel + kidentitymanagement-devel + kcalendarcore-devel + kcalutils-devel + akonadi-contacts-devel + prison-devel + grantleetheme-devel + grantlee-qt5-devel + knotifications-devel + + desktop/kde/applications/akonadi-calendar/pspec.xml + + + akonadi-calendar + + qt5-base + ki18n + kcodecs + kio + kmime + libgcc + kconfig + kxmlgui + kcalendarcore + kcalutils + kcontacts + akonadi + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + kjobwidgets + kconfigwidgets + kmailtransport + kwidgetsaddons + kidentitymanagement + akonadi-mime + akonadi-contacts + prison + knotifications + grantleetheme + grantlee-qt5 + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/bin + + + + akonadi-calendar-devel + Development files for akonadi-calendar + + qt5-base-devel + akonadi-calendar + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-16 + 17.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-02 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + akonadi-calendar-tools + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + CLI tools to manage akonadi calendars + CLI tools to manage akonadi calendars + http://download.kde.org/stable/release-service/22.04.1/src/akonadi-calendar-tools-22.04.1.tar.xz + + boost-devel + akonadi-devel + akonadi-calendar-devel + extra-cmake-modules + kdesignerplugin + kdoctools-devel + qt5-base-devel + kcompletion-devel + kxmlgui-devel + kitemmodels-devel + kcontacts-devel + kcalendarcore-devel + kdelibs4-support-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + akonadi-contacts-devel + kcalutils-devel + libkdepim-devel + calendarsupport-devel + kmime-devel + kidentitymanagement-devel + akonadi-notes-devel + + desktop/kde/applications/akonadi-calendar-tools/pspec.xml + + + akonadi-calendar-tools + CLI tools to manage akonadi calendars + + ki18n + libgcc + akonadi + kconfig + kcalendarcore + qt5-base + kcalutils + kcoreaddons + calendarsupport + akonadi-calendar + kdelibs4-support + akonadi-notes + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-14 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-31 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + akonadi-contacts + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Libraries and daemons to implement Contact Management in Akonadi. + Libraries and daemons to implement Contact Management in Akonadi. + mirrors://kde/stable/release-service/22.04.1/src/akonadi-contacts-22.04.1.tar.xz + + qt5-base-devel + qt5-webengine-devel + libical-devel + ki18n-devel + prison-devel + gettext-devel + kdoctools-devel + boost-devel + akonadi-devel + extra-cmake-modules + kdesignerplugin + kmime-devel + kcontacts-devel + kcalendarcore-devel + kitemmodels-devel + kemoticons-devel + kinit-devel + ktextwidgets-devel + kiconthemes-devel + grantleetheme-devel + kunitconversion-devel + grantlee-qt5-devel + kcmutils-devel + + desktop/kde/applications/akonadi-contacts/pspec.xml + + + akonadi-contacts + + qt5-base + ki18n + kcodecs + kmime + kio + akonadi + prison + libgcc + kconfig + kxmlgui + kjobwidgets + kservice + kcmutils + kcompletion + kcontacts + qt5-webengine + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + grantlee-qt5 + grantleetheme + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + akonadi-contacts-devel + Development files for akonadi-contacts + + qt5-base-devel + akonadi-contacts + grantleetheme-devel + grantlee-qt5-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + First Release. + Stefan Gronewold + groni@pisilinux.org + + + + + + akonadi-import-wizard + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + CLI tools to manage akonadi calendars + Import data from other mail clients to KMail + http://download.kde.org/stable/release-service/22.04.1/src/akonadi-import-wizard-22.04.1.tar.xz + + boost-devel + akonadi-devel + akonadi-calendar-devel + extra-cmake-modules + kdesignerplugin + kdoctools-devel + qt5-base-devel + qt5-keychain-devel + kcompletion-devel + kxmlgui-devel + kitemmodels-devel + kcontacts-devel + kcalendarcore-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + akonadi-contacts-devel + kcalutils-devel + libkdepim-devel + calendarsupport-devel + kmime-devel + kidentitymanagement-devel + kmailtransport-devel + akonadi-mime-devel + cyrus-sasl-devel + mailcommon-devel + messagelib-devel + pimcommon-devel + kimap-devel + libkleo-devel + gpgme-devel + gpgme-qt5-devel + mailimporter-devel + ffmpeg-devel + libXScrnSaver-devel + + desktop/kde/applications/akonadi-import-wizard/pspec.xml + + + akonadi-import-wizard + Import data from other mail clients to KMail + + ki18n + kcrash + libgcc + akonadi + kconfig + kwallet + kxmlgui + qt5-base + qt5-keychain + kcontacts + libkdepim + pimcommon + mailcommon + messagelib + kcompletion + kcoreaddons + kdbusaddons + mailimporter + kmailtransport + kwidgetsaddons + kidentitymanagement + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + /usr/lib + + + + akonadi-import-wizard-devel + Development files for akonadi-import-wizard + + akonadi-import-wizard + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-31 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + akonadi-mime + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Libraries and daemons to implement basic email handling + Libraries and daemons to implement basic email handling + mirrors://kde/stable/release-service/22.04.1/src/akonadi-mime-22.04.1.tar.xz + + qt5-base-devel + boost-devel + ki18n-devel + kdoctools-devel + kitemmodels-devel + gettext-devel + akonadi-devel + extra-cmake-modules + kxmlgui-devel + libxslt-devel + extra-cmake-modules + kmime-devel + kio-devel + shared-mime-info + + desktop/kde/applications/akonadi-mime/pspec.xml + + + akonadi-mime + + qt5-base + ki18n + akonadi + libgcc + kio + kmime + kconfig + kxmlgui + kcoreaddons + kdbusaddons + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + akonadi-mime-devel + Development files for akonadi-mime + + qt5-base-devel + akonadi-mime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-17 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + First Release. + Stefan Gronewold + groni@pisilinux.org + + + + + + akonadi-notes + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Libraries and daemons to implement management of notes in Akonadi + Libraries and daemons to implement management of notes in Akonadi + mirrors://kde/stable/release-service/22.04.1/src/akonadi-notes-22.04.1.tar.xz + + qt5-base-devel + boost-devel + ki18n-devel + kdoctools-devel + kitemmodels-devel + gettext-devel + akonadi-devel + extra-cmake-modules + kxmlgui-devel + libxslt-devel + extra-cmake-modules + kmime-devel + shared-mime-info + + desktop/kde/applications/akonadi-notes/pspec.xml + + + akonadi-notes + + qt5-base + ki18n + akonadi + libgcc + kio + kmime + kconfig + kxmlgui + kcoreaddons + kdbusaddons + kwidgetsaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + akonadi-notes-devel + Development files for akonadi-notes + + qt5-base-devel + akonadi-notes + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + First Release. + Stefan Gronewold + groni@pisilinux.org + + + + + + akonadi-search + https://kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.applications + Libraries and daemons to implement searching in Akonadi + Libraries and daemons to implement searching in Akonadi + akonadi + mirrors://kde/stable/release-service/22.04.1/src/akonadi-search-22.04.1.tar.xz + + qt5-base-devel + kcrash-devel + kconfig-devel + ki18n-devel + akonadi-devel + kcontacts-devel + kmime-devel + kjobwidgets-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kcalendarcore-devel + libical-devel + kdesignerplugin + kcompletion-devel + boost-devel + kcmutils-devel + krunner-devel + xapian-core-devel + kdoctools-devel + extra-cmake-modules + akonadi-mime-devel + + desktop/kde/applications/akonadi-search/pspec.xml + + + akonadi-search + app:console + + qt5-base + ki18n + kmime + libgcc + kcodecs + kconfig + kcalendarcore + kcontacts + kcoreaddons + xapian-core + krunner + kcompletion + kconfigwidgets + kwidgetsaddons + akonadi + akonadi-mime + + + /etc/akonadi + /etc/xdg + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/config + /usr/share/mime + /usr/share/kde4 + /usr/share/doc/ + /usr/share/akonadi + /usr/share/kservices5 + /usr/share/locale + /usr/share + + + + akonadi-search-devel + Development files for akonadi + + akonadi-search + qt5-base-devel + ki18n-devel + kmime-devel + kcodecs-devel + kconfig-devel + kcalendarcore-devel + kcontacts-devel + kcoreaddons-devel + xapian-core-devel + kcmutils-devel + krunner-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + akonadiconsole + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Akonadi management and debugging console + Akonadi management and debugging console + http://download.kde.org/stable/release-service/22.04.1/src/akonadiconsole-22.04.1.tar.xz + + akonadi-contacts-devel + akonadi-devel + akonadi-calendar-devel + pimcommon-devel + akonadi-mime-devel + calendarsupport-devel + extra-cmake-modules + kimap-devel + kcalendarcore-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcontacts-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kitemmodels-devel + kmime-devel + kpimtextedit-devel + ktextwidgets-devel + kwidgetsaddons-devel + kxmlgui-devel + kio-devel + kitemviews-devel + akonadi-search-devel + libkdepim-devel + libkleo-devel + messagelib-devel + qt5-base-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + kemoticons-devel + kinit-devel + kunitconversion-devel + kidentitymanagement-devel + cyrus-sasl-devel + gpgme-devel + gpgme-qt5-devel + ffmpeg-devel + libXScrnSaver-devel + + desktop/kde/applications/akonadiconsole/pspec.xml + + + akonadiconsole + Akonadi management and debugging console + + akonadi + akonadi-contacts + akonadi-mime + calendarsupport + kcalendarcore + qt5-base + ki18n + kmime + kcrash + libgcc + kconfig + kxmlgui + kcontacts + libkdepim + kitemviews + messagelib + kcompletion + kcoreaddons + kdbusaddons + kitemmodels + kpimtextedit + ktextwidgets + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + /usr/lib + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-27 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + akregator + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + A KDE blogging client + Akregator helps you to keep informed about new stories on websites like KDE Dot News and Planet KDE blogs. The technology used is RSS and many sites support it. + http://download.kde.org/stable/release-service/22.04.1/src/akregator-22.04.1.tar.xz + + boost-devel + extra-cmake-modules + kblog-devel + kdesignerplugin + kdoctools-devel + kio-devel + ktexteditor-devel + python-devel + qt5-base-devel + qt5-webengine-devel + grantlee-qt5-devel + kcmutils-devel + knotifyconfig-devel + akonadi-mime-devel + akonadi-devel + kitemmodels-devel + grantleetheme-devel + kcontacts-devel + kontactinterface-devel + libkdepim-devel + akonadi-contacts-devel + libkleo-devel + gpgme-devel + gpgme-qt5-devel + messagelib-devel + pimcommon-devel + kimap-devel + kmime-devel + cyrus-sasl-devel + kpimtextedit-devel + ksyndication-devel + ffmpeg-devel + knotifyconfig-devel + knotifications-devel + kuserfeedback-devel + libXScrnSaver-devel + + desktop/kde/applications/akregator/pspec.xml + + + akregator + A Feed Reader by KDE + + kio + ki18n + kcrash + kparts + libgcc + kcodecs + kconfig + kxmlgui + kcmutils + kservice + qt5-base + libkdepim + pimcommon + messagelib + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + kpimtextedit + ksyndication + ktextwidgets + grantleetheme + knotifyconfig + qt5-webengine + kconfigwidgets + knotifications + kwidgetsaddons + kontactinterface + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-09 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-08 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + analitza + https://projects.kde.org/projects/kde/kdeedu/analitza + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + desktop.kde.edu + A KDE library for mathematical features + Matematiksel özellikler için bir KDE kitaplığı + analitza is a library to add mathematical features to programs. + analitza, programlara matematiksel özellikler eklemek için bir kitaplıktır. + hi32-app-kalgebra + mirrors://kde/stable/release-service/22.04.1/src/analitza-22.04.1.tar.xz + + cmake + eigen3 + mesa-devel + qt5-svg-devel + extra-cmake-modules + qt5-declarative-devel + qt5-linguist + + desktop/kde/applications/analitza/pspec.xml + + + analitza + + mesa + libgcc + qt5-svg + qt5-base + qt5-declarative + + + /usr/lib + /usr/share/doc + /usr/share/libanalitza/ + /usr/share/locale + + + + analitza-devel + Development files for analitza + analitza için geliştirme dosyaları + + analitza + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ark + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + desktop.kde.utils + KDE Archiving Tool + Ark is a program for managing various archive formats within the KDE environment. + mirrors://kde/stable/release-service/22.04.1/src/ark-22.04.1.tar.xz + + qt5-base-devel + rar + lzop + unrar + p7zip + xz-devel + lzo-devel + zlib-devel + zstd-devel + kparts-devel + libzip-devel + karchive-devel + kconfig-devel + kcrash-devel + kio-devel + kpty-devel + khtml-devel + xz-devel + kdbusaddons-devel + kdoctools-devel + docbook-xsl + libarchive-devel + extra-cmake-modules + kitemmodels-devel + + desktop/kde/applications/ark/pspec.xml + + + ark + + qt5-base + zlib + libzip + libarchive + karchive + kcrash + kconfig + kio + unrar + kpty + khtml + ki18n + libgcc + kxmlgui + kservice + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + kwidgetsaddons + kparts + kconfigwidgets + kitemmodels + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/locale + /usr/lib + /usr/share/icons + /usr/share/man + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-07 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + artikulate + https://projects.kde.org/projects/kde/kdeedu/artikulate + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + LGPLv3 + FDLv1.2 + app:gui + desktop.kde.edu + Improve your pronunciation by listening to native speakers + Artikulate, Improve your pronunciation by listening to native speakers. + artikulate + mirrors://kde/stable/release-service/22.04.1/src/artikulate-22.04.1.tar.xz + + boost-devel + cmake + extra-cmake-modules + kdoctools-devel + ki18n + kcrash-devel + libgcc + kconfig-devel + kirigami-devel + kxmlgui-devel + qt5-base-devel + knewstuff-devel + kcoreaddons-devel + kdeclarative-devel + qt5-gstreamer-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + qt5-multimedia-devel + + desktop/kde/applications/artikulate/pspec.xml + + + artikulate + + ki18n + kcrash + kirigami + libgcc + kconfig + kxmlgui + karchive + qt5-base + knewstuff + kcoreaddons + kdeclarative + qt5-gstreamer + kconfigwidgets + kwidgetsaddons + qt5-declarative + qt5-xmlpatterns + qt5-multimedia + + + /etc + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + audiocd-kio + https://www.kde.org/applications/multimedia/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.applications + Kioslave for accessing audio CDs + Kioslave for accessing audio CDs + https://download.kde.org/stable/release-service/22.04.1/src/audiocd-kio-22.04.1.tar.xz + + cdparanoia-devel + flac-devel + gettext-devel + kconfig-devel + kdelibs4-support-devel + kdoctools-devel + kio-devel + lame-devel + libkcompactdisc-devel + libvorbis-devel + qt5-base-devel + ki18n-devel + qt5-phonon-devel + extra-cmake-modules + libogg-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libkcddb + kcmutils-devel + + desktop/kde/applications/audiocd-kio/pspec.xml + + + audiocd-kio + Kioslave for accessing audio CDs + + cdparanoia + flac + lame + libkcompactdisc + libvorbis + qt5-base + qt5-phonon + kio + ki18n + libgcc + libogg + kconfig + kcmutils + kcompletion + kcoreaddons + kconfigwidgets + kdelibs4-support + libkcddb + + + /etc/xdg + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + audiocd-kio-devel + Development files for audiocd-kio + + audiocd-kio + qt5-base-devel + + + /usr/include + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.11.80 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-09 + 16.08.2_20161106 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + baloo-widgets + https://www.kde.org + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/release-service/22.04.1/src/baloo-widgets-22.04.1.tar.xz + + baloo-devel + extra-cmake-modules + kconfig-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kfilemetadata-devel + kinit-devel + kio-devel + ki18n-devel + kitemmodels-devel + kunitconversion-devel + qt5-base-devel + + desktop/kde/applications/baloo-widgets/pspec.xml + + + baloo-widgets + Development files for baloo-widgets + + baloo + kconfig + kcoreaddons + kfilemetadata + ki18n + kio + kwidgetsaddons + libgcc + qt5-base + + + /etc + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/locale + + + + baloo-widgets-devel + Development files for baloo-widgets + + baloo-widgets + qt5-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + blinken + https://www.kde.org/applications/education/blinken/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + FDL + GPL + LGPL + gui + desktop.kde.edu + Blinken - Memory Enhancement Game + Hafıza geliştirme oyunu. + Blinken is based on an electronic game released in 1978, which challenges players to remember sequences of increasing length. On the face of the device, there are 4 different color buttons, each one with their own distinctive sound. + Hafıza geliştirme oyunu. + mirrors://kde/stable/release-service/22.04.1/src/blinken-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kxmlgui-devel + qt5-svg-devel + qt5-base-devel + qt5-phonon-devel + + desktop/kde/applications/blinken/pspec.xml + + + blinken + Blinken - Memory Enhancement Game + + kcrash + kconfig + kcoreaddons + kdbusaddons + kguiaddons + ki18n + kxmlgui + libgcc + qt5-base + qt5-phonon + qt5-svg + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + blogilo + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + A KDE blogging client + Blogilo is an fully-featured blogging client. It allows local creation and editing of blog posts. Various blogging APIs are supported for publishing. + https://github.com/KDE/blogilo/archive/v17.08.3.tar.gz + + qt5-base + boost-devel + extra-cmake-modules + kblog-devel + kdesignerplugin + kdoctools-devel + kio-devel + ktexteditor-devel + python-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + qt5-webengine-devel + kdelibs4-support-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + ksyndication-devel + libkdepim-devel + akonadi-devel + akonadi-contacts-devel + akonadi-mime-devel + kcontacts-devel + pimcommon-devel + kimap-devel + kmime-devel + cyrus-sasl-devel + kpimtextedit-devel + messagelib-devel + syntax-highlighting-devel + libkgapi-devel + + desktop/kde/applications/blogilo/pspec.xml + + + blogilo + A KDE blogging client + + qt5-base + kio + kblog + ki18n + kcrash + libgcc + kconfig + kwallet + kxmlgui + qt5-base + pimcommon + messagelib + kcompletion + kcoreaddons + kdbusaddons + ktexteditor + kpimtextedit + ktextwidgets + qt5-webengine + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2018-10-18 + 17.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-02 + 17.08.3 + Release bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-19 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-03 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + bomber + https://www.kde.org/applications/games/bomber/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.games + A single player arcade game + Bomber is a single player arcade game. The player is invading various cities in a plane that is decreasing in height. + mirrors://kde/stable/release-service/22.04.1/src/bomber-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcrash-devel + + desktop/kde/applications/bomber/pspec.xml + + + bomber + + ki18n + libgcc + kcrash + kconfig + kxmlgui + qt5-base + qt5-phonon + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share/appdata + /usr/share/applications + /usr/share + /usr/share/bomber + /usr/share/config.kcfg + /usr/share/icons + /usr/share/doc + /usr/share/kxmlgui5 + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + calendarsupport + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.applications + Calendar support library + Calendar support library + mirrors://kde/stable/release-service/22.04.1/src/calendarsupport-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kmime-devel + ki18n-devel + kcodecs-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + kcalutils-devel + kcalendarcore-devel + kidentitymanagement-devel + kholidays-devel + akonadi-calendar-devel + kcontacts-devel + pimcommon-devel + kimap-devel + cyrus-sasl-devel + akonadi-mime-devel + akonadi-contacts-devel + akonadi-notes-devel + kguiaddons-devel + + desktop/kde/applications/calendarsupport/pspec.xml + + + calendarsupport + Calendar support library + + kio + ki18n + kmime + libgcc + akonadi + kcodecs + kconfig + kcalendarcore + qt5-base + kcalutils + kholidays + pimcommon + kguiaddons + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + kwidgetsaddons + akonadi-calendar + kidentitymanagement + + + /etc + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/kservicetypes5 + /usr/share/locale + + + + calendarsupport-devel + Development files for calendarsupport + + calendarsupport + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-19 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-22 + 16.04.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + cantor + http://edu.kde.org/cantor + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.edu + A KDE frontend to mathematical softwares + Matematiksel uygulamalar için bir KDE önyüzü + Cantor is an application that lets you use your favorite mathematical applications from within a nice KDE-integrated Worksheet Interface. It offers assistant dialogs for common tasks and allows you to share your worksheets with others. + Cantor; Sage, Maxima, R and KAlgebra gibi uygulamalara arayüz sağlayarak kullanımı kolaylaştırmayı amaçlar. Çok kullanılan işler için dialoglar sağlar ve çalışmalarınızı başkalarıyla paylaşabilmenize olanak tanır. + cantor + mirrors://kde/stable/release-service/22.04.1/src/cantor-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-mysql + qt5-sql-postgresql + qt5-assistant-devel + mesa-devel + qt5-svg-devel + qt5-xmlpatterns-devel + qt5-webengine-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + ktexteditor-devel + knewstuff-devel + kpty-devel + analitza-devel + libqalculate-devel + cln-devel + libspectre-devel + python-devel + python3-devel + R-devel + luajit-devel + syntax-highlighting-devel + poppler-qt5-devel + karchive-devel + + desktop/kde/applications/cantor/pspec.xml + + + cantor + + R + cln + kio + kpty + ki18n + kparts + kcrash + libgcc + python + luajit + python3 + kconfig + kxmlgui + analitza + karchive + kservice + libspectre + knewstuff + kcompletion + kcoreaddons + kiconthemes + ktexteditor + ktextwidgets + libqalculate + kconfigwidgets + kwidgetsaddons + qt5-base + qt5-xmlpatterns + + + /etc + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + + cantor-devel + Development files for cantor + cantor için geliştirme dosyaları + + cantor + + + /usr/include + /usr/share/kde5/apps/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-17 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dolphin + https://projects.kde.org/projects/kde/applications/dolphin + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.applications + KDE File Manager + Dolphin is the File Manager for KDE. + mirrors://kde/stable/release-service/22.04.1/src/dolphin-22.04.1.tar.xz + + baloo-devel + baloo-widgets-devel + kfilemetadata-devel + extra-cmake-modules + kactivities-devel + kbookmarks-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + knewstuff-devel + knotifications-devel + kparts-devel + ktextwidgets-devel + solid-devel + qt5-base-devel + qt5-phonon-devel + kio-extras-devel + libxml2-devel + docbook-xsl + kuserfeedback-devel + + + dolphin-17.04.0-allow-root.patch + + desktop/kde/applications/dolphin/pspec.xml + + + dolphin + + qt5-base + kfilemetadata + baloo + baloo-widgets + knewstuff + kio + ki18n + solid + kparts + libgcc + kcodecs + kcrash + kconfig + kxmlgui + kcmutils + kservice + kbookmarks + kitemviews + qt5-phonon + kactivities + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + dolphin-devel + + dolphin + qt5-base-devel + qt5-phonon-devel + kio-devel + kcmutils-devel + knewstuff-devel + kinit-devel + kactivities-devel + baloo-devel + baloo-widgets-devel + kfilemetadata-devel + kparts-devel + ktexteditor-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + + + /usr/include + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dolphin-plugins + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.sdk + Extra dolphin plugins + Dolphin eklentileri. + This package contains plugins that offer integration in Dolphin with the following version control systems: + Dolphin için VCS (Version Control System) eklentileri. + mirrors://kde/stable/release-service/22.04.1/src/dolphin-plugins-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + dolphin-devel + kio-devel + kdelibs4-support-devel + extra-cmake-modules + + desktop/kde/applications/dolphin-plugins/pspec.xml + + + dolphin-plugins + + qt5-base + dolphin + kio + ki18n + libgcc + kconfig + kxmlgui + kservice + ktexteditor + kwidgetsaddons + kcompletion + kcoreaddons + ktextwidgets + kdelibs4-support + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + dragonplayer + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.multimedia + Multimedia player + a multimedia player where the focus is on simplicity, instead of features. + mirrors://kde/stable/release-service/22.04.1/src/dragon-22.04.1.tar.xz + + qt5-base-devel + qt5-phonon-devel + kdoctools-devel + kio-devel + kcrash-devel + kparts-devel + docbook-xsl + kdbusaddons-devel + knotifications-devel + extra-cmake-modules + + desktop/kde/applications/dragonplayer/pspec.xml + + + dragonplayer + + qt5-base + qt5-phonon + kio + ki18n + solid + libgcc + kcrash + kconfig + kxmlgui + kservice + qt5-phonon + kcoreaddons + kdbusaddons + kjobwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kparts + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + eventviews + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.applications + Library for creating events. + Library for creating events. + mirrors://kde/stable/release-service/22.04.1/src/eventviews-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + libkdepim-devel + kcontacts-devel + kcalendarcore-devel + kcalutils-devel + calendarsupport-devel + kmime-devel + kidentitymanagement-devel + akonadi-calendar-devel + akonadi-contacts-devel + kdiagram-devel + kholidays-devel + kguiaddons-devel + kiconthemes-devel + + desktop/kde/applications/eventviews/pspec.xml + + + eventviews + Library for creating events. + + ki18n + libgcc + akonadi + kcodecs + kconfig + kcalendarcore + kdiagram + kservice + qt5-base + kcalutils + kcontacts + libkdepim + kguiaddons + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kconfigwidgets + kwidgetsaddons + calendarsupport + akonadi-calendar + + + /etc + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/kservicetypes5 + /usr/share/locale + + + + eventviews-devel + Development files for eventviews. + + eventviews + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-22 + 16.04.0 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + ffmpegthumbs + https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.multimedia + ffmpeg based thumbnailer for KDE + KDE için ffmpeg tabanlı önizleme + FFmpeg-based thumbnail creator for video files + Video dosyaları için FFmpeg tabanlı önizleme oluşturur. + mirrors://kde/stable/release-service/22.04.1/src/ffmpegthumbs-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kio-devel + ki18n-devel + kconfig-devel + taglib-devel + ffmpeg-devel + + desktop/kde/applications/ffmpegthumbs/pspec.xml + + + ffmpegthumbs + + kio + ki18n + kconfig + ffmpeg + taglib + libgcc + qt5-base + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + filelight + http://utils.kde.org/projects/filelight + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + View disk usage information + View disk usage information + Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. + Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. + filelight + mirrors://kde/stable/release-service/22.04.1/src/filelight-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-script-devel + kdoctools-devel + extra-cmake-modules + kio-devel + kparts-devel + solid-devel + kxmlgui-devel + kcoreaddons-devel + ki18n-devel + mesa-devel + docbook-xsl + + desktop/kde/applications/filelight/pspec.xml + + + filelight + + qt5-svg + qt5-base + kparts + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gpgmepp + https://projects.kde.org/gpgmepp + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPLv2 + desktop.kde.applications + C++ bindings/wrapper for gpgme + gpgme için C++ bağlayıcısı + C++ bindings/wrapper for gpgme + gpgme için C++ bağlayıcısı + https://github.com/KDE/gpgmepp/archive/v16.08.3.tar.gz + + boost-devel + qt5-base-devel + gpgme-devel + extra-cmake-modules + + desktop/kde/applications/gpgmepp/pspec.xml + + + gpgmepp + + libgcc + qt5-base + gpgme + + + /usr/lib + /usr/share/doc + + + + gpgmepp-devel + + gpgmepp + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-07 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-20 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-04 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-18 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-14 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-11 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 16.08.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-18 + 16.08.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-18 + 16.08.3 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-08 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + granatier + https://www.kde.org/applications/games/granatier/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + A Bomberman game + Bombalama macera oyunu + Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. + granatier, oyuncunun yüksekliği her turda azalan bir uçak içinde şehirlere hücum ettiği tek kişilik bir macera oyunudur. + granatier + mirrors://kde/stable/release-service/22.04.1/src/granatier-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kwidgetsaddons-devel + ki18n-devel + kxmlgui-devel + knewstuff-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/granatier/pspec.xml + + + granatier + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + knewstuff + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + grantlee-editor + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Editor for Grantlee themes + Editor for Grantlee themes + mirrors://kde/stable/release-service/22.04.1/src/grantlee-editor-22.04.1.tar.xz + + qt5-webengine-devel + kcrash-devel + extra-cmake-modules + kdbusaddons-devel + kdoctools-devel + kxmlgui-devel + qt5-base-devel + ktexteditor-devel + kwallet-devel + knewstuff-devel + karchive-devel + pimcommon-devel + messagelib-devel + grantleetheme-devel + akonadi-mime-devel + kpimtextedit-devel + libkdepim-devel + syntax-highlighting-devel + libkleo-devel + kparts-devel + gpgme-devel + gpgme-qt5-devel + cyrus-sasl-devel + akonadi-devel + kitemmodels-devel + kcontacts-devel + akonadi-contacts-devel + kimap-devel + kmime-devel + grantlee-qt5-devel + ffmpeg-devel + libXScrnSaver-devel + + desktop/kde/applications/grantlee-editor/pspec.xml + + + grantlee-editor + Editor for Grantlee themes + + kio + ki18n + kmime + kcrash + libgcc + kconfig + kxmlgui + karchive + qt5-base + kcontacts + knewstuff + pimcommon + messagelib + kcompletion + kcoreaddons + kdbusaddons + kpimtextedit + qt5-webengine + kconfigwidgets + kwidgetsaddons + akonadi-contacts + syntax-highlighting + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-04 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + grantleetheme + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.applications + Library for Grantlee theming support + Library for Grantlee theming support + mirrors://kde/stable/release-service/22.04.1/src/grantleetheme-22.04.1.tar.xz + + qt5-base-devel + boost-devel + ki18n-devel + kiconthemes-devel + extra-cmake-modules + kguiaddons-devel + grantlee-qt5-devel + knewstuff-devel + + desktop/kde/applications/grantleetheme/pspec.xml + + + grantleetheme + + qt5-base + ki18n + libgcc + kconfig + kxmlgui + knewstuff + kguiaddons + kcoreaddons + kiconthemes + grantlee-qt5 + kwidgetsaddons + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/mkspecs/ + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/dbus-1 + /usr/share/config.kcfg + /usr/share/kf5 + /usr/share/config + /usr/share/akonadi + /usr/share + /usr/share/akonadicontact/grantleetheme/default + /usr/share/locale + + + + grantleetheme-devel + Development package for grantleetheme libraries + Contains development tools and header files for grantleetheme + + qt5-base-devel + boost-devel + ki18n-devel + grantleetheme + + + /usr/lib/cmake + /usr/include + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-25 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gwenview + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + library + desktop.kde.graphics + An image viewer + Resim görüntüleyici + Gwenview is an easy to use image viewer + Gwenview, kullanımı kolay bir resim görüntüleyicisidir. + gwenview + mirrors://kde/stable/release-service/22.04.1/src/gwenview-22.04.1.tar.xz + + exiv2-devel + qt5-base-devel + qt5-svg-devel + qt5-x11extras-devel + qt5-phonon-devel + tiff-devel + purpose-devel + cfitsio-devel + libkipi-devel + kdoctools-devel + kio-devel + kactivities-devel + kded-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + baloo-devel + libkdcraw-devel + libpng-devel + zlib-devel + mesa-devel + docbook-xsl + extra-cmake-modules + lcms2-devel + libX11-devel + kparts-devel + tiff-devel + purpose-devel + cfitsio-devel + libraw-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kwindowsystem-devel + + desktop/kde/applications/gwenview/pspec.xml + + + gwenview + + qt5-base + exiv2-libs + solid + kactivities + libkipi + libkdcraw + kded + tiff + purpose + cfitsio + kio + ki18n + lcms2 + kparts + libX11 + libgcc + libpng + kconfig + kxmlgui + qt5-svg + kservice + baloo + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + ktextwidgets + libjpeg-turbo + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + kfilemetadata + kguiaddons + libraw + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-31 + 21.12.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 17.08.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + incidenceeditor + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.applications + KDE PIM incidence editor. + KDE PIM incidence editor. + http://download.kde.org/stable/release-service/22.04.1/src/incidenceeditor-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + kmime-devel + kldap-devel + cyrus-sasl-devel + calendarsupport-devel + kidentitymanagement-devel + akonadi-calendar-devel + kcalendarcore-devel + kcontacts-devel + eventviews-devel + kcalutils-devel + kdiagram-devel + kmailtransport-devel + libkdepim-devel + akonadi-mime-devel + akonadi-contacts-devel + pimcommon-devel + kimap-devel + kiconthemes-devel + + desktop/kde/applications/incidenceeditor/pspec.xml + + + incidenceeditor + KDE PIM incidence editor. + + kio + ki18n + kldap + kmime + kimap + libgcc + akonadi + kcodecs + kconfig + kxmlgui + kdiagram + kservice + kcalutils + kcontacts + libkdepim + pimcommon + eventviews + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + kpimtextedit + ktextwidgets + akonadi-mime + kcalendarcore + kconfigwidgets + kmailtransport + kwidgetsaddons + calendarsupport + akonadi-contacts + akonadi-calendar + kidentitymanagement + qt5-base + + + /etc/xdg + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/locale + + + + incidenceeditor-devel + Development files for incidenceeditor. + + incidenceeditor + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-14 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-07 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-10 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-22 + 16.04.0 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + kaccounts-integration + https://projects.kde.org/projects/kdereview/kaccounts-integration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + mirrors://kde/stable/release-service/22.04.1/src/kaccounts-integration-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcmutils-devel + ki18n-devel + kcoreaddons-devel + kdbusaddons-devel + libaccounts-qt5-devel + libaccounts-glib-devel + signon-devel + gettext-devel + kdoctools-devel + kdeclarative-devel + kio-devel + kconfig-devel + kwallet-devel + + desktop/kde/applications/kaccounts-integration/pspec.xml + + + kaccounts-integration + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + + ki18n + libgcc + signon + qt5-base + kcoreaddons + kdbusaddons + kdeclarative + kconfigwidgets + libaccounts-qt5 + qt5-declarative + kio + kconfig + kwallet + + + /usr/share + /usr/share/kservices5 + /usr/share/doc + /usr/lib/qt5 + /usr/lib/libkaccounts.so* + + + + kaccounts-integration-devel + Development files for kaccounts-integration + + kaccounts-integration + libaccounts-qt5-devel + + + /usr/include + /usr/lib/cmake/KAccounts + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kaccounts-providers + https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + mirrors://kde/stable/release-service/22.04.1/src/kaccounts-providers-22.04.1.tar.xz + + extra-cmake-modules + intltool + kaccounts-integration-devel + qt5-declarative-devel + qt5-webengine-devel + qt5-base-devel + kcoreaddons-devel + libaccounts-qt5-devel + libaccounts-glib-devel + kio-devel + ki18n-devel + kdeclarative-devel + kpackage-devel + signon-devel + + desktop/kde/applications/kaccounts-providers/pspec.xml + + + kaccounts-providers + Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + + kaccounts-integration + libaccounts-glib + libgcc + kio + ki18n + kpackage + kcoreaddons + kdeclarative + qt5-declarative + qt5-webengine + qt5-base + + + /etc + /usr/share + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kaddressbook + https://kontact.kde.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + KDE contact manager + Kişilerinizi kolayca yönetin + KAddressBook reborn to make your data available to all your applications + KAddressBook, kişilerinizi kolayca yönetmenizi sağlar. Bir e-posta gönderirken veya bir toplantı daveti oluştururken kolayca kişileri seçmenize olanak tanıyan Kontact'ın geri kalanıyla derinlemesine entegre edilmiştir. + mirrors://kde/stable/release-service/22.04.1/src/kaddressbook-22.04.1.tar.xz + + kinit-devel + kimap-devel + kparts-devel + kcrash-devel + prison-devel + akonadi-devel + libkleo-devel + kcmutils-devel + qt5-base-devel + libkdepim-devel + pimcommon-devel + kdoctools-devel + kemoticons-devel + mailcommon-devel + messagelib-devel + kdbusaddons-devel + cyrus-sasl-devel + kitemmodels-devel + grantlee-qt5-devel + akonadi-mime-devel + kpimtextedit-devel + grantleetheme-devel + extra-cmake-modules + akonadi-search-devel + kunitconversion-devel + kontactinterface-devel + akonadi-contacts-devel + kidentitymanagement-devel + kuserfeedback-devel + gpgme-devel + gpgme-qt5-devel + + desktop/kde/applications/kaddressbook/pspec.xml + + + kaddressbook + KDE contact manager + + ki18n + kcrash + kparts + libgcc + akonadi + kconfig + kxmlgui + kcmutils + qt5-base + kcontacts + libkdepim + pimcommon + kcompletion + kcoreaddons + kiconthemes + kitemmodels + grantleetheme + akonadi-search + kconfigwidgets + kwidgetsaddons + akonadi-contacts + kontactinterface + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + kaddressbook-devel + Development files for kaddressbook + + kaddressbook + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-06 + 18.12.3 + Fix Dependency. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-09 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-04 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-07 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kalarm + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Personal alarm scheduler + KAlarm is a personal alarm message, audio, command and email scheduler + http://download.kde.org/stable/release-service/22.04.1/src/kalarm-22.04.1.tar.xz + + akonadi-contacts-devel + akonadi-devel + akonadi-mime-devel + extra-cmake-modules + kauth-devel + kcalendarcore-devel + kcalutils-devel + kcmutils-devel + kcodecs-devel + kcompletion-devel + kconfig-devel + kconfigwidgets + kdbusaddons-devel + kdelibs4-support-devel + kdoctools-devel + kguiaddons-devel + kholidays-devel + ki18n-devel + kiconthemes-devel + kidentitymanagement-devel + kio-devel + kjobwidgets-devel + kmime-devel + knotifications-devel + kpimtextedit-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libX11-devel + libkdepim-devel + libxslt-devel + mailcommon-devel + pimcommon-devel + qt5-base-devel + qt5-phonon-devel + qt5-x11extras-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kitemmodels-devel + kcontacts-devel + messagelib-devel + kimap-devel + cyrus-sasl-devel + libkleo-devel + gpgme-devel + kmailtransport-devel + kidletime-devel + knotifyconfig-devel + + desktop/kde/applications/kalarm/pspec.xml + + + kalarm + Personal alarm scheduler + + kio + kauth + ki18n + kmime + libgcc + akonadi + kcodecs + kconfig + kxmlgui + kcalendarcore + kservice + kcalutils + kcontacts + kholidays + libkdepim + pimcommon + kguiaddons + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + kjobwidgets + akonadi-mime + kpimtextedit + ktextwidgets + kwindowsystem + kconfigwidgets + kmailtransport + knotifications + kwidgetsaddons + akonadi-contacts + kdelibs4-support + kidentitymanagement + qt5-base + kidletime + knotifyconfig + + + /etc/dbus-1 + /etc/xdg + /usr/lib + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-09 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-04 + 17.04.2 + Version bummp. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-27 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kalzium + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + desktop.kde.applications + Periodic Table of Elements + Periodic Table of Elements + Elementlerin periyodik tablosu + Elementlerin periyodik tablosu + https://download.kde.org/stable/release-service/22.04.1/src/kalzium-22.04.1.tar.xz + + cmake + eigen3 + ocaml + kio-devel + khtml-devel + ki18n-devel + kinit-devel + kconfig-devel + kxmlgui-devel + qt5-svg-devel + qt5-base-devel + kitemmodels-devel + kemoticons-devel + kplotting-devel + kitemviews-devel + kdoctools-devel + qt5-script-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kdesignerplugin + kconfigwidgets-devel + kwidgetsaddons-devel + kunitconversion-devel + kdelibs4-support-devel + extra-cmake-modules + + desktop/kde/applications/kalzium/pspec.xml + + + kalzium + + kio + khtml + ki18n + kconfig + kxmlgui + qt5-svg + qt5-base + kplotting + kitemviews + qt5-script + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kunitconversion + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/doc + + + + kalzium-devel + Development files for kalzium + + kalzium + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-27 + 18.12.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kamera + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + Webcam support for KDE + KDE için web kamera desteği + Kamera is a plugin for KDE to use webcam. + Kamera, KDE için bir web kamera eklentisidir. + mirrors://kde/stable/release-service/22.04.1/src/kamera-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + ki18n-devel + kconfig-devel + kdoctools-devel + libgphoto2-devel + + desktop/kde/applications/kamera/pspec.xml + + + kamera + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-base + libgphoto2 + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kanagram + https://www.kde.org/applications/education/kanagram/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A letter order game + Bir harf sıralama oyunu + Kanagram is a game based on anagrams of words: the puzzle is solved when the letters of the scrambled word are put back in the correct order. There is no limit on either time taken, or the amount of attempts to solve the word. + Kanagram, anagramlar üzerine bir oyundur. Dağınık yerleştirilmiş harfleri birleştirerek kelimeyi bulun. Zaman veya deneme sınırı yoktur. + kanagram + mirrors://kde/stable/release-service/22.04.1/src/kanagram-22.04.1.tar.xz + + qt5-base-devel + qt5-declarative + kdoctools-devel + knewstuff-devel + kdeclarative-devel + ki18n-devel + kio-devel + kcrash-devel + sonnet-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kxmlgui + kwidgetsaddons-devel + extra-cmake-modules + libkeduvocdocument-devel + qt5-multimedia-devel + + desktop/kde/applications/kanagram/pspec.xml + + + kanagram + + ki18n + libgcc + sonnet + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdeclarative + qt5-multimedia + kconfigwidgets + qt5-declarative + libkeduvocdocument + + + /etc/xdg + /usr/share + /usr/bin + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kapman + https://www.kde.org/applications/games/kapman/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Pac-Man clone + Pac-Man klonu + Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. + Kapman dünyaca ünlü Pac-Man'in bir türevidir. Labirent içinde hayaletlerle köşe kapmaca oynayarak bölümleri geçmeye çalıştığınız oyunda eğer hayaletlere yakalanırsanız bir hakkınızı kaybediyorsunuz. Eğer bir enerji nesnesi alırsanız bu kez siz bir kaç saniyeliğine hayaletleri yiyebiliyorsunuz. + kapman + mirrors://kde/stable/release-service/22.04.1/src/kapman-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwindowsystem-devel + ki18n-devel + kinit-devel + kunitconversion-devel + kitemmodels-devel + kemoticons-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + kdesignerplugin + libkdegames-devel + qt5-declarative-devel + + desktop/kde/applications/kapman/pspec.xml + + + kapman + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kapptemplate + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + Application template generator + Uygulama şablon oluşturucu. + KAppTemplate is a shell script that will create the necessary framework to develop several types of applications, including applications based on the KDE development platform. + Kapptemplate, çeşitli uygulamaları geliştirmek için gerekli olabilecek şablonlar oluşturmayı sağlar. + mirrors://kde/stable/release-service/22.04.1/src/kapptemplate-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + gettext + kcoreaddons-devel + kconfigwidgets-devel + kcompletion-devel + karchive-devel + kio-devel + ki18n-devel + kdoctools-devel + + desktop/kde/applications/kapptemplate/pspec.xml + + + kapptemplate + + qt5-base + kio + ki18n + libgcc + kconfig + karchive + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kate + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.applications + Advanced Text Editor + Plasma library and runtime components based upon KF5 and Qt5 + https://download.kde.org/stable/release-service/22.04.1/src/kate-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + kactivities-devel + kconfig-devel + kcrash-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kjobwidgets-devel + kparts-devel + ktexteditor-devel + kwindowsystem-devel + kxmlgui-devel + knewstuff-devel + threadweaver-devel + kitemmodels-devel + plasma-framework-devel + syntax-highlighting-devel + kuserfeedback-devel + kwallet-devel + kguiaddons-devel + kdbusaddons-devel + + + kate-17.04.0-allow-root.patch + kwrite-17.04.0-allow-root.patch + e002696b.patch + 36ede44f.patch + + desktop/kde/applications/kate/pspec.xml + + + kate + + qt5-base + libgcc + libgit2 + knewstuff + ki18n + kconfig + kded + kguiaddons + kactivities + kjobwidgets + kitemmodels + kio + kcrash + kparts + ktexteditor + kwindowsystem + kxmlgui + plasma-framework + kwallet + kservice + kbookmarks + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + threadweaver + kconfigwidgets + knotifications + kwidgetsaddons + kuserfeedback + syntax-highlighting + kio + kconfig + kwallet + + + /usr/share + /etc/xdg + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2022-05-25 + 22.04.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-21 + 17.12.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-04 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + katomic + https://www.kde.org/applications/games/katomic/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Sokoban like logic game + Sokoban benzeri mantık oyunu + KAtomic is both fun and educational game built around molecular geometry. + KAtomic moleküler geometri hakkında hem eğlenceli hem de eğitici bir oyundur. + katomic + mirrors://kde/stable/release-service/22.04.1/src/katomic-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/katomic/pspec.xml + + + katomic + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + knewstuff + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kblackbox + https://www.kde.org/applications/games/kblackbox/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Blackbox logic game + Blackbox mantık oyunu + KBlackBox is a game of hide and seek played on a grid of boxes. The computer has hidden several balls within this box. By shooting beams into the box and observing where they emerge it is possible to deduce the positions of the hidden balls. + KBlackBox yan yana dizilmiş kutularla oynanan bir saklambaç oyunudur. Bilgisayarın sakladığı topları kutuları lazerle kontrol ederek bulabilirsiniz. + kblackbox + mirrors://kde/stable/release-service/22.04.1/src/kblackbox-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kguiaddons-devel + kiconthemes-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + ktextwidgets-devel + kunitconversion-devel + + desktop/kde/applications/kblackbox/pspec.xml + + + kblackbox + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + karchive + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kblocks + https://www.kde.org/applications/games/kblocks/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Falling blocks game + Tetris + KBlocks is the classic falling blocks game. The idea is stack the falling blocks in a way that lines are completely filled. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. + KBlocks klasikleşmiş tetrisin bir yeniden yapımıdır. Oyunun amacı düşen parçaları en uygun şekilde dizmektir. Bir satır tamamen dolduktan sonra silinmektedir ve daha fazla oyun alanı açılmaktadır. Yeni parçaları koyacak yeriniz kalmadığında oyun bitmektedir. + kblocks + mirrors://kde/stable/release-service/22.04.1/src/kblocks-22.04.1.tar.xz + + extra-cmake-modules + qt5-svg-devel + qt5-base-devel + kdoctools-devel + ki18n-devel + kxmlgui-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kemoticons-devel + + desktop/kde/applications/kblocks/pspec.xml + + + kblocks + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + qt5-phonon + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kblog + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + A blogging library for KDE + KBlog is a library for calling functions on Blogger 1.0, MetaWeblog, MovableType and GData compatible blogs. It calls the APIs using KXmlRpcClient and Syndication. + mirrors://kde/stable/release-service/20.04.3/src/kblog-20.04.3.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kcoreaddons-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + qt5-webkit-devel + kcalutils-devel + ksyndication-devel + kxmlrpcclient-devel + kcalendarcore-devel + ksyndication-devel + + desktop/kde/applications/kblog/pspec.xml + + + kblog + + qt5-base + kcalendarcore + kxmlrpcclient + kio + ki18n + libgcc + kcoreaddons + ksyndication + + + /etc/xdg + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + + kblog-devel + Development files for kblog + + qt5-base-devel + kblog + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kbounce + https://www.kde.org/applications/games/kbounce/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Ball bouncing game + Top zıplatma oyunu + KBounce is a single player arcade game with the elements of puzzle. It is played on a field, surrounded by walls, with two or more balls that move about in the field bouncing off of walls. The player can build new walls, decreasing the size of the active field. The goal of the game is to fill at least 75% of the field and advance to the next level. + KBounce, Volfied'in oynaniş tarzına benzeyen tek kişilik bir bulmaca - macera oyunudur. Oyuncu iki veya daha fazla topun oradan oraya zıpladığı duvarlarla kaplı bir alanda yeni duvarlar inşa ederek ve toplara yakalanmamaya çalışarak aktif alanın en azından %75'ini kapatmaya çalışmaktadır. + kbounce + mirrors://kde/stable/release-service/22.04.1/src/kbounce-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kcompletion-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kbounce/pspec.xml + + + kbounce + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kbreakout + https://www.kde.org/applications/games/kbreakout/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Breakout like game + Breakout benzeri oyun + KBreakout is a Breakout like game. The object of the game is to destroy as many bricks as possible without losing the ball. + KBreakout bir Breakout türevidir. Oyunun amacı topları yere düşürmeden olabildiğince çok tuğlayı yok etmektir. + kbreakout + mirrors://kde/stable/release-service/22.04.1/src/kbreakout-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kservice-devel + kconfigwidgets-devel + kiconthemes-devel + kcompletion-devel + kjobwidgets-devel + kxmlgui-devel + kio-devel + libkdegames-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kbreakout/pspec.xml + + + kbreakout + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/share/doc + /usr/bin + /etc/xdg/kbreakout.categories + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kbruch + https://www.kde.org/applications/education/kbruch/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + Practice calculating with fractions and percentages + Ondalık ve kesirli sayılarla pratik yapın + KBruch is a small program to practice calculating with fractions and percentages. Different exercises are provided for this purpose and you can use the learning mode to practice with fractions. The program checks the user's input and gives feedback. + KBruch, ondalık ve kesirli sayılar üzerine işlemleri öğrenmeye ve egzersiz yapmaya yarayan bir uygulamadır. + kbruch + mirrors://kde/stable/release-service/22.04.1/src/kbruch-22.04.1.tar.xz + + qt5-base + kdoctools-devel + kconfig-devel + kcrash-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kcoreaddons-devel + kconfigwidgets-devel + extra-cmake-modules + + desktop/kde/applications/kbruch/pspec.xml + + + kbruch + + qt5-base + kxmlgui + kconfig + kcrash + ki18n + libgcc + kwidgetsaddons + kcoreaddons + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/man/man1 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcalc + http://kde.org/applications/utilities/kcalc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A scientific calculator + Bir bilimsel hesap makinesi + KCalc is a calculator which offers many more mathematical functions than meet the eye on a first glance. + KCalc, pek çok matematik fonksiyonu barındıran bir hesap makinesi uygulamasıdır. + kcalc + mirrors://kde/stable/release-service/22.04.1/src/kcalc-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + gmp-devel + cmake + mpfr-devel + kconfig-devel + kconfigwidgets-devel + kguiaddons-devel + ki18n-devel + kinit-devel + knotifications-devel + kxmlgui-devel + mesa-devel + + desktop/kde/applications/kcalc/pspec.xml + + + kcalc + + qt5-base + gmp + ki18n + kcrash + kconfig + kxmlgui + kguiaddons + kcoreaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-08-01 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-12 + 16.04.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcalutils + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + The KDE calendar utility library + Calendar utility library for KDE + mirrors://kde/stable/release-service/22.04.1/src/kcalutils-22.04.1.tar.xz + + qt5-base-devel + kcalendarcore-devel + kidentitymanagement-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kidentitymanagement-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + grantlee-qt5-devel + kdoctools-devel + kiconthemes-devel + extra-cmake-modules + + desktop/kde/applications/kcalutils/pspec.xml + + + kcalutils + + qt5-base + kcalendarcore + kidentitymanagement + ki18n + libgcc + kcodecs + kconfig + grantlee-qt5 + kcoreaddons + kiconthemes + kwidgetsaddons + kidentitymanagement + + + /etc/xdg + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/kcalendar + /usr/share/locale + /usr/share + + + + kcalutils-devel + Development files for kcalutils + + qt5-base-devel + kcalutils + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcharselect + http://utils.kde.org/projects/kcharselect + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A character selector + Bir karakter seçici + KCharSelect is a tool to select special characters from all installed fonts and copy them into the clipboard. + KCharSelect, tüm yüklü yazı tiplerinden özel karakterleri seçmek ve bunları panoya yapıştırmak için bir araçtır. + kcharselect + mirrors://kde/stable/release-service/22.04.1/src/kcharselect-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + kbookmarks-devel + cmake + extra-cmake-modules + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kcrash-devel + mesa-devel + + desktop/kde/applications/kcharselect/pspec.xml + + + kcharselect + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kcrash + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-09 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcolorchooser + http://www.kde.org/applications/graphics/kcolorchooser + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.graphics + A simple color chooser application + Basit bir renk seçme uygulaması + KColorChooser is a simple color chooser application. + KColorChooser, basit bir renk seçme uygulamasıdır. + kcolorchooser + mirrors://kde/stable/release-service/22.04.1/src/kcolorchooser-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kiconthemes-devel + + desktop/kde/applications/kcolorchooser/pspec.xml + + + kcolorchooser + + ki18n + libgcc + kxmlgui + qt5-base + kcoreaddons + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/doc + /usr/share/metainfo + /usr/share/locale + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-09 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kdb + http://www.kexi-project.org/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.applications + A database connectivity and creation framework for various database vendors. + Çeşitli veritabanı üreticileri için veritabanı bağlantısı oluşturma çerçevesi. + A database connectivity and creation framework for various database vendors + https://download.kde.org/stable/kdb/src/kdb-3.2.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-linguist + kcoreaddons-devel + icu4c-devel + ki18n-devel + sqlite-devel + mariadb-lib + mariadb-client + postgresql-lib + + + kdb-3.2.0-build-w-pg12.patch + kdb-3.2.0-cmake-pg12.patch + kdb-3.2.0-cmake-pg13.patch + kdb-3.2.0-qt-5.15.patch + kdb-3.2.0-KDEInstallDirs.patch + + desktop/kde/applications/kdb/pspec.xml + + + kdb + A database connectivity and creation framework for various database vendors. + + icu4c + libgcc + sqlite + qt5-base + kcoreaddons + mariadb-lib + postgresql-lib + + + /usr/bin + /usr/lib/qt5 + /usr/lib/libKDb3* + /usr/share/locale + + + + kdb-devel + Development files for kdb. + + kdb + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-05-17 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2022-05-07 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2022-01-10 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2021-10-15 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2021-09-13 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2021-06-16 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2021-03-10 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2020-09-12 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2020-06-11 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2020-05-06 + 3.2.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2020-03-30 + 3.2.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2020-02-02 + 3.2.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-09-15 + 3.2.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-07-22 + 3.2.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-04-18 + 3.2.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-03-11 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-02-14 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-01-11 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-12-26 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-11-08 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-10-18 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-09-10 + 3.1.0 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-08-11 + 3.0.2 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-03 + 3.0.2 + Rebuild + Mustafa Cinasl + muscnsl@gmail.com + + + 2017-10-14 + 3.0.2 + Version bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2017-07-17 + 3.0.93 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 3.0.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-06 + 3.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kde-dev-scripts + https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.sdk + Scripts and setting files useful during development of KDE software + Scripts and setting files useful during development of KDE software + mirrors://kde/stable/release-service/22.04.1/src/kde-dev-scripts-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + docbook-xml + + desktop/kde/applications/kde-dev-scripts/pspec.xml + + + kde-dev-scripts + Scripts and setting files useful during development of KDE software + + qt5-base + kdoctools + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdeaudio-thumbnailer + https://github.com/eplightning/audiothumbs-frameworks + + Stefan Gronewold + groni@pisilinux.org + + LGPL + desktop.kde.applications + Thumbnail generator for audio files, ported to KF5 + Thumbnail generator for audio files, ported to KF5 + https://github.com/groni/Sources/raw/master/kde-audio-thumbnailer-1.1.0.tar.gz + + extra-cmake-modules + flac-devel + glibc-devel + qt5-base-devel + taglib-devel + kio-devel + + desktop/kde/applications/kdeaudio-thumbnailer/pspec.xml + + + kdeaudio-thumbnailer + Thumbnail generator for audio files, ported to KF5 + + kio + libgcc + qt5-base + taglib + + + /usr/share + /usr/lib/qt5 + + + + + 2022-05-17 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-09-15 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-18 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-12 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-12 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 1.1.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-03 + 1.1.0 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2017-06-30 + 1.1.0 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-20 + 1.1.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kdebugsettings + http://projects.kde.org/kdebugsettings + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.kde.applications + An application to enable/disable qCDebug + KDebug control module for KDE. It provides a graphical frontend for the kdebug daemon, which allow enabling or disabling particular debug areas/messages. + mirrors://kde/stable/release-service/22.04.1/src/kdebugsettings-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kiconthemes-devel + kwidgetsaddons-devel + kitemviews-devel + kcompletion-devel + kio-devel + + desktop/kde/applications/kdebugsettings/pspec.xml + + + kdebugsettings + An application to enable/disable qCDebug + + ki18n + libgcc + kconfig + qt5-base + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kwidgetsaddons + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/applications + /usr/share/doc + /usr/share/locale + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdeconnect + https://kdeconnect.kde.org/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv2 + GPLv3 + app:gui + desktop.kde.applications + Connect KDE with your smartphone + Cihazlarınızı KDE ile birleştirin + Connect KDE with your smartphone + Cihazlarınızı KDE ile birleştirin + kdeconnect + https://download.kde.org/stable/release-service/22.04.1/src/kdeconnect-kde-22.04.1.tar.xz + + sshfs + kio-devel + ki18n-devel + solid-devel + kpeople-devel + kde-cli-tools + libXtst-devel + kirigami-devel + qt5-base-devel + kcmutils-devel + kwayland-devel + qca2-qt5-devel + kdoctools-devel + libfakekey-devel + kdbusaddons-devel + kiconthemes-devel + kpeoplevcard-devel + kwindowsystem-devel + pulseaudio-qt-devel + qt5-x11extras-devel + extra-cmake-modules + kconfigwidgets-devel + qt5-multimedia-devel + knotifications-devel + qt5-declarative-devel + qt5-quickcontrols2-devel + wayland-devel + wayland-server + wayland-client + wayland-cursor + qt5-wayland-devel + qqc2-desktop-style + kpackage-devel + kguiaddons-devel + + desktop/kde/applications/kdeconnect/pspec.xml + + + kdeconnect + + kio + ki18n + sshfs + solid + libgcc + libX11 + libXtst + kconfig + kpeople + kcmutils + kservice + qca2-qt5 + qt5-base + kwayland + kguiaddons + libfakekey + kcoreaddons + kdbusaddons + kiconthemes + kpeoplevcard + kwindowsystem + pulseaudio-qt + qt5-x11extras + qt5-multimedia + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + qt5-quickcontrols2 + qqc2-desktop-style + + + /usr/bin + /etc + /usr/lib + /usr/include + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/info + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-15 + 21.04.3 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-02-11 + 1.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-15 + 1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-08 + 1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-18 + 1.3.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 1.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-19 + 1.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-20 + 1.3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-27 + 1.3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-13 + 1.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 1.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 1.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-10 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-23 + 1.2.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-25 + 1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-08 + 1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-12 + 1.0.3 + Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-09 + 0.9g + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdeedu-data + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.applications + Common data for KDE Edu applications + Common data for KDE Edu applications. + mirrors://kde/stable/release-service/22.04.1/src/kdeedu-data-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/applications/kdeedu-data/pspec.xml + + + kdeedu-data + + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdegraphics-mobipocket + https://www.kde.org/applications/graphics/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.applications + A collection of plugins to handle mobipocket files + A library to handle mobipocket files + A collection of plugins to handle mobipocket files + A library to handle mobipocket files + http://download.kde.org/stable/release-service/22.04.1/src/kdegraphics-mobipocket-22.04.1.tar.xz + + extra-cmake-modules + kio-devel + qt5-base-devel + + desktop/kde/applications/kdegraphics-mobipocket/pspec.xml + + + kdegraphics-mobipocket + A collection of plugins to handle mobipocket files + + kio + qt5-base + + + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + kdegraphics-mobipocket-devel + Development headers for kdegraphics-mobipocket + + kdegraphics-mobipocket + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-19 + 16.12.0 + Rebuild. + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kdegraphics-svgpart + https://www.kde.org/applications/graphics/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.applications + A KPart for viewing SVGs + A KPart for viewing SVGs + mirrors://kde/stable/release-service/22.04.1/src/svgpart-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + glibc-devel + kcoreaddons-devel + kparts-devel + python-devel + qt5-base-devel + qt5-svg-devel + + desktop/kde/applications/kdegraphics-svgpart/pspec.xml + + + kdegraphics-svgpart + A KPart for viewing SVGs + + kcoreaddons + kparts + qt5-base + qt5-svg + ki18n + libgcc + kxmlgui + kconfigwidgets + + + /usr/share + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-08 + 16.11.90 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kdegraphics-thumbnailers + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + KDE4 thumbnailer library + KDE4 önizleme kitaplıkları + kdegraphics-thumbnailers contains thumbnail-related libraries. + kdegraphics-thumbnailers, önizleme kitaplıklarını içerir. + mirrors://kde/stable/release-service/22.04.1/src/kdegraphics-thumbnailers-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kio-devel + libkdcraw-devel + libkexiv2-devel + kdegraphics-mobipocket-devel + karchive-devel + + desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml + + + kdegraphics-thumbnailers + + kio + libgcc + qt5-base + libkdcraw + libkexiv2 + kdegraphics-mobipocket + karchive + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdenetwork-filesharing + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + library + desktop.kde.applications + Filesharing configuration modlue. + Dosya paylaşım konfigürasyon modülü. + Filesharing configuration modlue. + Dosya paylaşım konfigürasyon modülü. + mirrors://kde/stable/release-service/22.04.1/src/kdenetwork-filesharing-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kdoctools-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + kdeclarative-devel + kwidgetsaddons-devel + samba-devel + + desktop/kde/applications/kdenetwork-filesharing/pspec.xml + + + kdenetwork-filesharing + + kio + ki18n + libgcc + qt5-base + qt5-declarative + kservice + kcompletion + kcoreaddons + kdeclarative + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + + + kdenetwork + + + kdenetwork + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdenlive + https://kdenlive.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.multimedia + A video editing GUI for KDE4 using the MLT video framework + MLT video yapısı kullanan, KDE için bir video düzenleme uygulaması + Nieliniowy edytor wideo + Kdenlive est multi-piste, gère une liste de clips et gère les doubles moniteurs vidéos. Il fournit également entre autres un support de couches personnalisables ainsi que des effets et des transitions de base. + kdenlive provides dual video monitors, a multi-track timeline and clip list. Other features include customizable layout support, basic effects and transitions. + kdenlive, ikili video izleyicileri, çoklu parça zaman çizelgesi ve klip listesi sunmaktadır. Diğer özellikler arasında özelleştirilebilir düzenleme desteği, temel efektler ve geçişler sayılabilir. + Kdenlive jest nieliniowym pakietem do edycji wideo obsługującym DV, HDC i wiele innych formatów. + mirrors://kde/stable/release-service/22.04.1/src/kdenlive-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-script-devel + ladspa-sdk-devel + qt5-svg-devel + qt5-webkit-devel + qt5-location-devel + karchive-devel + kbookmarks-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + kfilemetadata-devel + libv4l-devel + kio-devel + ffmpeg-devel + sdl-image-devel + kwidgetsaddons-devel + kplotting-devel + knotifyconfig-devel + knewstuff-devel + kxmlgui-devel + knotifications-devel + kguiaddons-devel + ktextwidgets-devel + kiconthemes-devel + kdoctools-devel + mlt-devel + purpose-devel + frei0r-plugins-devel + qt5-declarative-devel + qt5-multimedia-devel + qt5-quickcontrols2-devel + qt5-webengine-devel + qt5-networkauth-devel + kdeclarative-devel + kcrash-devel + + desktop/kde/applications/kdenlive/pspec.xml + + + kdenlive + + kio + mlt + cdrkit + ki18n + solid + kcrash + libgcc + ffmpeg + kconfig + kxmlgui + kdeclarative + qt5-svg + karchive + kservice + qt5-base + knewstuff + kplotting + sdl-image + dvdauthor + kbookmarks + kguiaddons + kitemviews + qt5-script + qt5-webkit + ladspa-sdk + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + qt5-location + ktextwidgets + kfilemetadata + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + frei0r-plugins + purpose + qt5-declarative + qt5-quickcontrols + qt5-quickcontrols2 + qt5-multimedia + qt5-webengine + qt5-networkauth + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/man + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-09 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-05 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-04-13 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-25 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdepim-addons + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.applications + Addons for the KDE PIM apllications + Addons for the KDE PIM apllications + mirrors://kde/stable/release-service/22.04.1/src/kdepim-addons-22.04.1.tar.xz + + akonadi-calendar-devel + akonadi-devel + akonadi-notes-devel + akonadi-import-wizard-devel + boost-devel + calendarsupport-devel + cyrus-sasl-devel + eventviews-devel + extra-cmake-modules + glibc-devel + grantleetheme-devel + incidenceeditor-devel + kholidays-devel + kcalutils-devel + kconfig-devel + kpkpass-devel + kitinerary-devel + kdeclarative-devel + kdesignerplugin + kdoctools-devel + ki18n-devel + ktnef-devel + kxmlgui-devel + libgravatar-devel + libical-devel + libkdepim-devel + libkgapi-devel + libkleo-devel + mailcommon-devel + mailimporter-devel + messagelib-devel + pimcommon-devel + python-devel + qt5-base-devel + qt5-declarative-devel + qt5-webengine-devel + kio-devel + kmime-devel + kcodecs-devel + kcalendarcore-devel + kservice-devel + kcontacts-devel + kitemviews-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + akonadi-mime-devel + kpimtextedit-devel + ktextwidgets-devel + kconfigwidgets-devel + kmailtransport-devel + kwidgetsaddons-devel + akonadi-contacts-devel + kidentitymanagement-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kimap-devel + gpgme-devel + gpgme-qt5-devel + kdiagram-devel + grantlee-qt5-devel + libksieve-devel + prison-devel + syntax-highlighting-devel + kparts-devel + kaddressbook-devel + kontactinterface-devel + kguiaddons-devel + + desktop/kde/applications/kdepim-addons/pspec.xml + + + kdepim-addons + Addons for the KDE PIM apllications + + akonadi + akonadi-calendar + akonadi-notes + prison + calendarsupport + eventviews + grantleetheme + incidenceeditor + kcalutils + kholidays + kconfig + kpkpass + kdeclarative + gpgme-qt5 + kitinerary + ki18n + ktnef + kxmlgui + libgcc + libgravatar + libkdepim + libkleo + mailcommon + messagelib + pimcommon + qt5-base + qt5-declarative + qt5-webengine + kio + kmime + kcodecs + kcalendarcore + kservice + kcontacts + kitemviews + kcompletion + kcoreaddons + kiconthemes + akonadi-mime + kpimtextedit + ktextwidgets + kconfigwidgets + kmailtransport + kwidgetsaddons + akonadi-contacts + kidentitymanagement + gpgme + kjobwidgets + grantlee-qt5 + kimap + libksieve + kitemmodels + mailimporter + syntax-highlighting + akonadi-import-wizard + kontactinterface + kaddressbook + kguiaddons + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + kde-baseapps + + + kde-baseapps + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-07 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-10 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-08 + 16.08.3 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kdepim-runtime + https://community.kde.org/KDE_PIM + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.applications + KDE5 PIM Runtime Environment + KDE5 PIM (Kişisel Bilgi Yönetimi) çalışma zamanı ortamı + kdepim-runtime contains KDE5 PIM (Personal Information Management) runtime environment like akonadi agents. + kdepim-runtime, kdelibs kullanarak yazılmış olan Akonadi ajanları da dahil olmak üzere KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) çalışma zamanı ortamını içerir. + kontact + mirrors://kde/stable/release-service/22.04.1/src/kdepim-runtime-22.04.1.tar.xz + + kdoctools-devel + boost-devel + shared-mime-info + akonadi-devel + akonadi-calendar-devel + akonadi-search-devel + kcmutils-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + knotifyconfig-devel + kross-devel + kmailtransport-devel + kidentitymanagement-devel + kalarm + kcalutils-devel + kmbox-devel + kimap-devel + libkgapi-devel + kholidays-devel + ksyndication-devel + pimcommon-devel + cyrus-sasl-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-webkit-devel + qt5-webengine-devel + extra-cmake-modules + qt5-location-devel + qt5-networkauth-devel + akonadi-mime-devel + akonadi-notes-devel + akonadi-contacts-devel + qt5-speech-devel + kdav-devel + ffmpeg-devel + kldap-devel + libkdepim-devel + libXScrnSaver-devel + qca2-qt5-devel + qt5-keychain-devel + + desktop/kde/applications/kdepim-runtime/pspec.xml + + + kdepim-runtime + + akonadi + libkgapi + kio + ki18n + kimap + kmbox + kmime + libgcc + kcodecs + kconfig + kwallet + kxmlgui + kcalendarcore + kcmutils + kservice + qt5-base + kalarm + kcalutils + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kitemmodels + pimcommon + kcontacts + kjobwidgets + knotifyconfig + kwindowsystem + kconfigwidgets + kmailtransport + ktextwidgets + knotifications + kwidgetsaddons + qt5-speech + qt5-xmlpatterns + akonadi-calendar + kdelibs4-support + cyrus-sasl + akonadi-mime + akonadi-notes + qt5-webengine + qt5-networkauth + akonadi-contacts + kidentitymanagement + kdav + kldap + libkdepim + qt5-keychain + + + /etc/xdg + /usr/lib + /usr/bin + /usr/share + /usr/share/mime + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/knotifications5 + /usr/share/icons + /usr/share/dbus-1 + /usr/share/akonadi + /usr/share/ontology + /usr/share/autostart + /usr/share/applications + /usr/share/doc + /usr/share/locale + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdesdk-thumbnailers + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + library + desktop.kde.sdk + Translation file thumbnail generators + Translation file thumbnail generators + mirrors://kde/stable/release-service/22.04.1/src/kdesdk-thumbnailers-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + ki18n-devel + kio-devel + gettext-devel + + desktop/kde/applications/kdesdk-thumbnailers/pspec.xml + + + kdesdk-thumbnailers + + kio + ki18n + libgcc + gettext + kconfig + qt5-base + kwidgetsaddons + + + /usr/share/kservices5 + /usr/share/config.kcfg + /usr/lib + /usr/share/doc + /usr/share/locale + + + kdesdk + + + kdesdk + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdf + https://utils.kde.org/projects/kdf/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.applications + View Disk Usage + KDiskFree displays the available file devices (hard drive partitions, floppy and CD drives, etc.) along with information on their capacity, free space, type and mount point. It also allows you to mount and unmount drives and view them in a file manager. + http://download.kde.org/stable/release-service/22.04.1/src/kdf-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + glibc-devel + kcmutils-devel + kconfigwidgets-devel + kcoreaddons-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + knotifications-devel + kwidgetsaddons-devel + kxmlgui-devel + qt5-base-devel + + desktop/kde/applications/kdf/pspec.xml + + + kdf + View Disk Usage + + kcmutils + kconfigwidgets + kcoreaddons + ki18n + kiconthemes + kio + knotifications + kxmlgui + qt5-base + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-30 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kdiagram + http://www.kde.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Powerful libraries for creating business diagrams + Powerful libraries for creating business diagrams + https://download.kde.org/stable/kdiagram/2.8.0/kdiagram-2.8.0.tar.xz + + extra-cmake-modules + qt5-assistant-devel + qt5-base-devel + qt5-designer-devel + qt5-linguist + qt5-svg-devel + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-odbc + + desktop/kde/applications/kdiagram/pspec.xml + + + kdiagram + Powerful libraries for creating business diagrams + + libgcc + qt5-base + qt5-svg + + + /usr/lib + /usr/lib/qt5 + /usr/share/locale + /usr/share/doc + + + + kdiagram-devel + Development files for kdiagram + + kdiagram + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 2.8.0 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2021-03-10 + 2.8.0 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-09-13 + 2.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 2.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 2.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 2.6.2 + Version bump + Ertuğrul Erata + muscnsl@gmail.com + + + 2020-02-02 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-09-15 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-18 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-14 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-11 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 2.6.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-04-18 + 2.6.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-04 + 2.6.0 + Version no fix. + Kamil Atlı + suvari@pisilinux.org + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-19 + 16.12.0 + Rebuild. + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kdialog + https://github.com/KDE/kdialog + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + kdialog allows you to display dialog boxes from shell scripts + The syntax is very much inspired from the "dialog" command + (which shows text mode dialogs). + mirrors://kde/stable/release-service/22.04.1/src/kdialog-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + glibc-devel + kio-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libICE-devel + libX11-devel + libXext-devel + python-devel + kdbusaddons-devel + kguiaddons-devel + kiconthemes-devel + knotifications-devel + ktextwidgets-devel + qt5-base-devel + + desktop/kde/applications/kdialog/pspec.xml + + + kdialog + kdialog allows you to display dialog boxes from shell scripts + + kio + qt5-base + ki18n + libX11 + libgcc + kconfig + kguiaddons + kdbusaddons + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + kwindowsystem + knotifications + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/doc + + + kde-baseapps + + + kde-baseapps + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-19 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-03 + 16.11.80 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + keditbookmarks + https://github.com/KDE/keditbookmarks + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Bookmark Organizer and Editor + Bookmark Organizer and Editor + mirrors://kde/stable/release-service/22.04.1/src/keditbookmarks-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + glibc-devel + kbookmarks-devel + kcoreaddons-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kparts-devel + kwindowsystem-devel + python-devel + qt5-base-devel + + desktop/kde/applications/keditbookmarks/pspec.xml + + + keditbookmarks + Bookmark Organizer and Editor + + kbookmarks + ki18n + kio + kparts + qt5-base + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + kde-baseapps + + + kde-baseapps + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-03 + 16.11.90 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kfind + http://kde.org/applications/utilities/kfind/ + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.utils + Find Files/Folders + Find Files/Folders + mirrors://kde/stable/release-service/22.04.1/src/kfind-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + glibc-devel + karchive-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdelibs4-support-devel + kdoctools-devel + python-devel + kfilemetadata-devel + qt5-base-devel + + desktop/kde/applications/kfind/pspec.xml + + + kfind + Find Files/Folders + + karchive + kdelibs4-support + libgcc + qt5-base + kio + ki18n + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kjobwidgets + kconfigwidgets + kfilemetadata + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + /usr/share/man/man1 + + + kde-baseapps + + + kde-baseapps + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-19 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-03 + 16.11.90 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kfloppy + http://kde.org/applications/utilities/kfloppy + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A floppy formatter + A floppy formatter + KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. + KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. + kfloppy + http://download.kde.org/stable/release-service/22.04.1/src/kfloppy-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kcoreaddons-devel + kio-devel + kdoctools-devel + kxmlgui-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kfloppy/pspec.xml + + + kfloppy + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + /usr/share/locale/ + /usr/share/metainfo/org.kde.kfloppy.appdata.xml + /etc/xdg/kfloppy.categories + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-26 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kfourinline + https://www.kde.org/applications/games/kfourinline/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Four in a row board game + Bir satırda dört tahta oyunu + KFourInLine is a board game for two players based on the Connect-Four game. + KFourInLine iki kişiyle oynanan Hedef 4 türevi bir oyundur. + kfourinline + mirrors://kde/stable/release-service/22.04.1/src/kfourinline-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kcompletion-devel + kxmlgui-devel + kdnssd-devel + kio-devel + knotifyconfig-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/applications/kfourinline/pspec.xml + + + kfourinline + + ki18n + kdnssd + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcompletion + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kgeography + https://www.kde.org/applications/education/kgeography/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + KGeography is a geography learning tool + Bir coğrafya uygulaması + KGeography is a geography learning tool, which allows you to learn about the political divisions of some countries (divisions, capitals of those divisions and their associated flags if there are some). + KGeography, ülkeler hakkında çeşitli bilgiler sunan bir coğrafya uygulamasıdır. + kgeography + https://download.kde.org/stable/release-service/22.04.1/src/kgeography-22.04.1.tar.xz + + qt5-base-devel + kconfig-devel + kcrash-devel + kdoctools-devel + kxmlgui-devel + kwidgetsaddons-devel + kcoreaddons-devel + ki18n-devel + kitemviews-devel + kiconthemes-devel + kservice-devel + kconfigwidgets-devel + extra-cmake-modules + + desktop/kde/applications/kgeography/pspec.xml + + + kgeography + + qt5-base + libgcc + kcrash + kconfig + kxmlgui + kwidgetsaddons + kcoreaddons + ki18n + kitemviews + kiconthemes + kconfigwidgets + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kgpg + http://kde.org/applications/utilities/kgpg/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + LGPL + GPL + desktop.kde.applications + A QtQuick plugin to render beautiful and interactive charts + KGpg is a simple interface for GnuPG, a powerful encryption utility. + mirrors://kde/stable/release-service/22.04.1/src/kgpg-22.04.1.tar.xz + + akonadi-devel + boost-devel + akonadi-contacts-devel + gettext-devel + glibc-devel + gpgme-devel + karchive-devel + kcodecs-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kjobwidgets-devel + knotifications-devel + kservice-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kitemmodels-devel + kcalendarcore-devel + kemoticons-devel + kcontacts-devel + kinit-devel + kunitconversion-devel + libical-devel + python-devel + libevent-devel + qt5-webengine-devel + qt5-base-devel + extra-cmake-modules + + desktop/kde/applications/kgpg/pspec.xml + + + kgpg + A GnuPG frontend + + gpgme + boost + qt5-base + kio + ki18n + kcrash + libgcc + akonadi + kcodecs + kconfig + kxmlgui + kservice + karchive + kcontacts + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + akonadi-contacts + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-06-09 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-05 + 16.11.90 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + khangman + https://www.kde.org/applications/education/khangman/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + KHangMan is a game for kids based on the well-known hangman game + Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu + KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. + KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. + khangman + mirrors://kde/stable/release-service/22.04.1/src/khangman-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kcrash-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + knotifications-devel + kxmlgui-devel + kwidgetsaddons-devel + kio-devel + qt5-svg-devel + qt5-linguist + qt5-declarative-devel + libkeduvocdocument-devel + extra-cmake-modules + + desktop/kde/applications/khangman/pspec.xml + + + khangman + + qt5-base + kdeclarative + knewstuff + ki18n + kwidgetsaddons + kconfig + kcoreaddons + kxmlgui + qt5-declarative + libkeduvocdocument + libgcc + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-10 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + khelpcenter https://www.kde.org Pisi Linux Admins @@ -33801,22 +42848,10080 @@ components such as the Settings and gnome-shell. LGPLv2 library - desktop.kde.framework - KDE unit conversion framework - KUnitConversion provides functions to convert values in different physical units. - mirrors://kde/stable/frameworks/5.94/kunitconversion-5.94.0.tar.xz + app:console + desktop.kde.applications + KDE Help Center + KDE help center utility to read help documentation about various KDE applications. + mirrors://kde/stable/release-service/22.04.1/src/khelpcenter-22.04.1.tar.xz - qt5-base-devel - ki18n-devel - extra-cmake-modules + qt5-base-devel + libxml2-devel + libdbusmenu-qt-devel + kinit-devel + karchive-devel + kcmutils-devel + khtml-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + kdesignerplugin + docbook-xsl + xapian-core-devel + grantlee-qt5-devel + extra-cmake-modules - desktop/kde/framework/kunitconversion/pspec.xml + desktop/kde/applications/khelpcenter/pspec.xml - kunitconversion + khelpcenter - qt5-base - ki18n + qt5-base + kio + libgcc + libxml2 + karchive + kbookmarks + khtml + ki18n + kparts + kcodecs + kconfig + kxmlgui + kcmutils + kservice + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + grantlee-qt5 + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-04 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-23 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-06 + 16.08.01 + Version Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-08-18 + 5.6.4 + Remove Locale file conflicts language package . + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kidentitymanagement + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + KDE PIM libraries + Library for the KDE-PIM(Personal-Infomation-Management + mirrors://kde/stable/release-service/22.04.1/src/kidentitymanagement-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + kpimtextedit-devel + kio-devel + kcodecs-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kwidgetsaddons-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kpimtextedit-devel + kunitconversion-devel + kpimtextedit-devel + extra-cmake-modules + python-devel + kiconthemes-devel + grantlee-qt5-devel + + desktop/kde/applications/kidentitymanagement/pspec.xml + + + kidentitymanagement + + qt5-base + kpimtextedit + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kiconthemes + kcompletion + kcoreaddons + ktextwidgets + kwidgetsaddons + kpimtextedit + grantlee-qt5 + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kidentitymanagement-devel + Development files for kidentitymanagement + + qt5-base-devel + kpimtextedit-devel + ktextwidgets-devel + kidentitymanagement + + + /etc/xdg + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kig + https://www.kde.org/applications/education/kig/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An interactive geometry application + Bir etkileşimli geometri uygulaması + Kig is an application for interactive geometry. + Kig, bir etkileşimli geometri uygulamasıdır. + kig + mirrors://kde/stable/release-service/22.04.1/src/kig-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + boost-devel + ktexteditor-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + qt5-xmlpatterns-devel + gettext-devel + pkgconfig + kcrash-devel + karchive-devel + extra-cmake-modules + + desktop/kde/applications/kig/pspec.xml + + + kig + + qt5-base + boost + kcrash + ktexteditor + qt5-xmlpatterns + qt5-svg + ki18n + kparts + ktexteditor + kiconthemes + kconfigwidgets + karchive + kxmlgui + kitemmodels + libgcc + kservice + kcompletion + kcoreaddons + kwidgetsaddons + kconfig + + + /usr/lib + /usr/lib/qt5 + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + killbots + https://www.kde.org/applications/games/killbots/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Run for your life + Hayatta kalmak için kaçın + Killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you. + Killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek. + killbots + mirrors://kde/stable/release-service/22.04.1/src/killbots-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + kcompletion-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/killbots/pspec.xml + + + killbots + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kimap + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + Job-based API for interacting with IMAP servers + API for interacting with IMAP servers + mirrors://kde/stable/release-service/22.04.1/src/kimap-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + kmime-devel + boost-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + cyrus-sasl-devel + kunitconversion-devel + extra-cmake-modules + + desktop/kde/applications/kimap/pspec.xml + + + kimap + + qt5-base + kmime + kio + ki18n + libgcc + kcodecs + cyrus-sasl + kcoreaddons + + + /etc/xdg + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share + + + + kimap-devel + Development files for kimap + + qt5-base-devel + kimap + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-27 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-19 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kio-extras + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.network + Additional KIO-slaves for KDE5 applications + Additional KIO-slaves for KDE5 applications + mirrors://kde/stable/release-service/22.04.1/src/kio-extras-22.04.1.tar.xz + + qt5-phonon-devel + extra-cmake-modules + karchive-devel + kbookmarks-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdnssd-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kpty-devel + solid-devel + syntax-highlighting-devel + qt5-sql-postgresql + qt5-base-devel + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-svg-devel + libssh + kded-devel + gperf + samba-devel + taglib-devel + libssh-devel + libmtp-devel + openexr-devel + kactivities-devel + khtml-devel + kdsoap-devel + libXcursor-devel + kactivities-stats-devel + libtirpc-devel + libappimage-devel + + desktop/kde/applications/kio-extras/pspec.xml + + + kio-extras + + kio + kpty + khtml + ki18n + samba + solid + kdnssd + kparts + libgcc + libmtp + libssh + taglib + kdsoap + kconfig + kxmlgui + qt5-svg + libtirpc + karchive + kservice + qt5-base + libXcursor + kbookmarks + kguiaddons + qt5-phonon + kactivities + kcoreaddons + kdbusaddons + kiconthemes + openexr-libs + qt5-sql-odbc + qt5-sql-mysql + qt5-sql-sqlite + kconfigwidgets + libappimage + kactivities-stats + qt5-sql-postgresql + syntax-highlighting + kded + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kio-extras-devel + Development files for kio-extras + + kio-extras + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-19 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-20 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-11 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-09 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-01 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kipi + https://github.com/KDE/kipi-plugins + + Ali Algul + aligulle3801@gmail.com + + GPLv1 + app + desktop.kde.applications + A collection of plugins extending the KDE graphics and image applications + A collection of plugins extending the KDE graphics and image applications + A collection of plugins extending the KDE graphics and image applications + A collection of plugins extending the KDE graphics and image applications + https://download.kde.org/stable/release-service/22.04.1/src/kipi-plugins-22.04.1.tar.xz + + libkipi-devel + kcompletion-devel + libmediawiki-devel + libkvkontakte-devel + extra-cmake-modules + karchive-devel + kconfig-devel + ki18n-devel + kio-devel + kwindowsystem-devel + kxmlgui-devel + qt5-base-devel + qt5-svg-devel + qt5-xmlpatterns-devel + qt5-webengine-devel + + desktop/kde/applications/kipi/pspec.xml + + + kipi + + kio + libgcc + kconfig + kxmlgui + libkipi + karchive + kcompletion + libmediawiki + libkvkontakte + qt5-base + kcoreaddons + kwindowsystem + kconfigwidgets + qt5-xmlpatterns + ki18n + qt5-webengine + + + /usr/lib + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 5.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 5.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-11 + 5.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 5.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 5.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 5.9.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-10 + 5.9.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-15 + 5.8.0 + First release. + Ali Algul + aligulle3801@gmail.com + + + + + + kiriki + https://www.kde.org/applications/games/kiriki/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Yahtzee like dice game + Yahtzee benzeri zar oyunu + Kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players. + Kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir. + kiriki + mirrors://kde/stable/release-service/22.04.1/src/kiriki-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kiriki/pspec.xml + + + kiriki + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + kiconthemes + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kiten + https://www.kde.org/applications/education/kiten/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A Japanese reference/study tool + Japonca referans ve alıştırma uygulaması + Kiten is a Japanese reference/study tool. + Kiten, Japonca referans ve alıştırma uygulamasıdır. + kiten>kiten + mirrors://kde/stable/release-service/22.04.1/src/kiten-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdoctools-devel + gettext-devel + ki18n-devel + khtml-devel + kxmlgui-devel + kio-devel + kparts-devel + kcrash-devel + knotifications-devel + kwidgetsaddons-devel + + desktop/kde/applications/kiten/pspec.xml + + + kiten + + qt5-base + karchive + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdoctools + gettext + ki18n + khtml + kxmlgui + kio + kparts + libgcc + kcrash + knotifications + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + kiten-devel + Development files for kiten + kiten için geliştirme dosyaları + + kiten + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kitinerary + https://download.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.applications + Data model and extraction system for travel reservation information + Data model and extraction system for travel reservation information + Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi + Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi + https://download.kde.org/stable/release-service/22.04.1/src/kitinerary-22.04.1.tar.xz + + qt5-declarative-devel + qt5-base-devel + kcoreaddons-devel + poppler-cpp-devel + kcontacts-devel + kcalendarcore-devel + libxml2-devel + kpkpass-devel + poppler-devel + ki18n-devel + kmime-devel + zlib-devel + kconfig-devel + kcodecs-devel + karchive-devel + extra-cmake-modules + openssl-devel + + desktop/kde/applications/kitinerary/pspec.xml + + + kitinerary + + zlib + ki18n + kmime + libgcc + kpkpass + kcodecs + poppler + kcalendarcore + kconfig + kcontacts + karchive + libxml2 + openssl + qt5-base + qt5-declarative + + + /etc/xdg + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + kitinerary-devel + Development files for kitinerary + + kitinerary + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kjumpingcube + https://www.kde.org/applications/games/kjumpingcube/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Territory capture game + Alan kapma oyunu + KJumpingCube is a simple tactical game. + KJumpingCube basit bir taktik oyunudur. + kjumpingcube + mirrors://kde/stable/release-service/22.04.1/src/kjumpingcube-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/applications/kjumpingcube/pspec.xml + + + kjumpingcube + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /etc/xdg/kjumpingcube.categories + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kldap + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + LDAP access API for KDE + Allows LDAP accessing with a convenient Qt style C++ API. + mirrors://kde/stable/release-service/22.04.1/src/kldap-22.04.1.tar.xz + + qt5-base-devel + kcompletion-devel + kdoctools-devel + ki18n-devel + kio-devel + kmbox-devel + kmime-devel + kwallet-devel + openldap-server + cyrus-sasl-devel + extra-cmake-modules + qt5-keychain-devel + kconfig-devel + kcoreaddons-devel + + desktop/kde/applications/kldap/pspec.xml + + + kldap + + qt5-base + kcompletion + kwallet + ki18n + kio + libgcc + cyrus-sasl + openldap-client + kwidgetsaddons + qt5-keychain + kconfig + kcoreaddons + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kldap-devel + Development files for kdelibs4-support + + qt5-base-devel + kldap + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-27 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bovo + https://www.kde.org/applications/games/bovo/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + desktop.kde.games + A Gomoku like game for two players. + Bovo is a Gomoku like game for two players, where the opponents alternate in placing their respective pictogram on the game board. + bovo + mirrors://kde/stable/release-service/22.04.1/src/bovo-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + mesa-devel + qt5-svg-devel + kxmlgui-devel + kdoctools-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/bovo/pspec.xml + + + bovo + + ki18n + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/icons + /usr/share/kxmlgui5 + /usr/share/applications + /usr/share/bovo + /usr/share/doc + + + org.kde.bovo.desktop + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kalgebra + https://www.kde.org/applications/education/kalgebra/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.edu + A graph calculator + Bir grafiksel hesap makinesi + KAlgebra is a fully featured calculator that lets you plot different types of 2D and 3D functions and to calculate easy and not so easy calculations, such as addition, trigonometric functions or derivatives. + KAlgebra, farklı farklı 2B ve 3B fonksiyonları çizmek, kolay ve o kadar da kolay olmayan trigonometrik veya türev gibi hesaplamaları yapmak için bir uygulamadır. + kalgebra + mirrors://kde/stable/release-service/22.04.1/src/kalgebra-22.04.1.tar.xz + + mesa-devel + mesa-glu-devel + qt5-base-devel + qt5-declarative + qt5-svg-devel + qt5-webkit-devel + qt5-location-devel + analitza-devel + kdoctools-devel + ncurses-devel + readline-devel + gettext-devel + ki18n-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kio-devel + extra-cmake-modules + qt5-webengine-devel + ffmpeg-devel + libXScrnSaver-devel + + desktop/kde/applications/kalgebra/pspec.xml + + + kalgebra + + qt5-base + qt5-declarative + qt5-webkit + qt5-location + analitza + libgcc + kconfig + kxmlgui + readline + kcoreaddons + ki18n + kconfigwidgets + kwidgetsaddons + kio + qt5-webengine + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcron + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.applications + Graphical task scheduler + Görev zamanlayıcı arayüzü. + Kcron is a graphical frontend to the cron system, used to schedule regular tasks on a Unix system. + Kcron, cron görev zamanlayıcı altyapısının bir arayüzüdür. + kcron + mirrors://kde/stable/release-service/22.04.1/src/kcron-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kdoctools-devel + kiconthemes-devel + kio-devel + kxmlgui-devel + kiconthemes-devel + + desktop/kde/applications/kcron/pspec.xml + + + kcron + + kio + ki18n + libgcc + qt5-base + kcoreaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + + + kdeadmin + + + kdeadmin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-09 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdiamond + https://www.kde.org/applications/games/kdiamond/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Three in a row game + Bir satırda üç oyunu + KDiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds. + KDiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur. + kdiamond + mirrors://kde/stable/release-service/22.04.1/src/kdiamond-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kxmlgui-devel + knotifications-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + docbook-xsl + + desktop/kde/applications/kdiamond/pspec.xml + + + kdiamond + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kleopatra + https://www.kde.org/applications/utilities/kleopatra/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + FDL-1.1 + LGPLv2 + app:gui + desktop.kde.applications + Certificate Manager and Unified Crypto GUI + Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers. + mirrors://kde/stable/release-service/22.04.1/src/kleopatra-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcodecs-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kdbusaddons-devel + kcmutils-devel + libkleo-devel + kdoctools-devel + kmime-devel + libassuan-devel + gpgme-devel + gpgme-qt5-devel + kitemmodels-devel + ktextwidgets-devel + knotifications-devel + + desktop/kde/applications/kleopatra/pspec.xml + + + kleopatra + Certificate Manager and Unified Crypto GUI + + gpgme + ki18n + kmime + libgcc + kconfig + kxmlgui + libkleo + kcmutils + qt5-base + libassuan + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + libgpg-error + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-09 + 16.04.0 + Firs release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kontact + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPL2 + desktop.kde.applications + KDE Personal Information Manager + Kontact is the integrated Personal Information Manager of KDE, but can be used with other systems as well. +It supports email, address books, calendars, tasks, news feeds and much more. + http://download.kde.org/stable/release-service/22.04.1/src/kontact-22.04.1.tar.xz + + boost-devel + extra-cmake-modules + kdoctools-devel + kontactinterface-devel + mailcommon-devel + qt5-base-devel + qt5-webengine-devel + kdbusaddons-devel + kcmutils-devel + kpimtextedit-devel + akonadi-devel + kitemmodels-devel + kparts-devel + akonadi-mime-devel + messagelib-devel + kmime-devel + pimcommon-devel + kcontacts-devel + akonadi-contacts-devel + kimap-devel + cyrus-sasl-devel + kidentitymanagement-devel + libkleo-devel + gpgme-devel + grantlee-qt5-devel + grantleetheme-devel + libkdepim-devel + ffmpeg-devel + libXScrnSaver-devel + kguiaddons-devel + + desktop/kde/applications/kontact/pspec.xml + + + kontact + KDE Personal Information Manager + + kio + ki18n + kcrash + kparts + libgcc + kconfig + kxmlgui + kcmutils + kservice + qt5-base + libkdepim + kguiaddons + kcompletion + kcoreaddons + kiconthemes + grantleetheme + kwindowsystem + qt5-webengine + kconfigwidgets + kwidgetsaddons + kontactinterface + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-09 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-26 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + ksystemlog + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.applications + System log viewer. + Sistem kayıt görüntüleyicisi. + KSystemLog show all logs of your system, grouped by General (Default system log, Authentication, Kernel, X.org...), and optional Services (Apache, Cups, etc, ...). + Ksystemlog, sistemin bütün hata kayıtlarını (genel ve opsiyonel) görüntülemmeye yarayan bir uygulamadır. + ksystemlog + mirrors://kde/stable/release-service/22.04.1/src/ksystemlog-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kxmlgui-devel + kcoreaddons-devel + kwidgetsaddons-devel + kitemviews-devel + kiconthemes-devel + kio-devel + kconfig-devel + karchive-devel + kdoctools-devel + ki18n-devel + kcompletion-devel + ktextwidgets-devel + + desktop/kde/applications/ksystemlog/pspec.xml + + + ksystemlog + + kio + ki18n + libgcc + kconfig + kxmlgui + karchive + kservice + qt5-base + kitemviews + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/applications + /usr/share/kxmlgui5 + /usr/share/doc + /usr/share/locale + + + kdeadmin + + + kdeadmin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwordquiz + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.edu + Kwordquiz is a Flash Card Trainer + KWordQuiz is a tool that gives you a powerful way to master new vocabularies. It may be a language or any other kind of terminology.. + mirrors://kde/stable/release-service/22.04.1/src/kwordquiz-22.04.1.tar.xz + + qt5-base-devel + gettext-devel + ki18n-devel + kcrash-devel + sonnet-devel + kconfig-devel + kconfigwidgets-devel + kdoctools-devel + kguiaddons-devel + kiconthemes-devel + kitemviews-devel + knotifyconfig-devel + kio-devel + knewstuff-devel + knotifications-devel + kxmlgui-devel + kdelibs4-support-devel + kdeclarative-devel + kcoreaddons-devel + kwindowsystem-devel + kwidgetsaddons-devel + qt5-phonon-devel + libkeduvocdocument-devel + extra-cmake-modules + kdelibs4-support-devel + kdesignerplugin + cmake + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kwordquiz/pspec.xml + + + kwordquiz + + qt5-base + qt5-phonon + ki18n + kconfig + kconfigwidgets + kguiaddons + kiconthemes + kitemviews + knotifyconfig + knewstuff + knotifications + kxmlgui + kdelibs4-support + libgcc + kcoreaddons + kwindowsystem + kwidgetsaddons + libkeduvocdocument + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + lokalize + http://www.kde.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + Lokalize is the localization tool for KDE and other open source software + Uygulama yerelleştirme yardımcısı. + Lokalize is also a general computer-aided translation system (CAT) with which you can translate OpenDocument files (*.odt). + Lokalize, uygulamalar için kolaylıkla yerelleştirme yapabileceğiniz bir programdır. + mirrors://kde/stable/release-service/22.04.1/src/lokalize-22.04.1.tar.xz + + qt5-base-devel + hunspell-devel + extra-cmake-modules + kdoctools-devel + kio-devel + enchant-devel + kitemviews-devel + ki18n-devel + kross-devel + kparts-devel + sonnet-devel + kconfig-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + ktextwidgets-devel + kconfigwidgets-devel + knotifications-devel + kwidgetsaddons-devel + pkgconfig + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + + desktop/kde/applications/lokalize/pspec.xml + + + lokalize + + qt5-base + kio + kitemviews + ki18n + kross + kparts + libgcc + sonnet + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + hunspell + + + /etc/xdg + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + klettres + https://www.kde.org/applications/education/klettres/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An alphabet learning application + Alfabe öğrenme uygulaması + KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language. + KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir. + klettres + mirrors://kde/stable/release-service/22.04.1/src/klettres-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + kdoctools-devel + extra-cmake-modules + kcompletion-devel + kemoticons-devel + kitemmodels-devel + ki18n-devel + knewstuff-devel + kwidgetsaddons-devel + kconfigwidgets-devel + kcoreaddons-devel + kconfig-devel + kxmlgui-devel + kcrash-devel + qt5-phonon-devel + kpackage-devel + + desktop/kde/applications/klettres/pspec.xml + + + klettres + + qt5-base + qt5-svg + qt5-phonon + knewstuff + ki18n + kcrash + kconfig + kxmlgui + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + libgcc + + + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + klickety + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + A kind of solitary game + Bir tür soliter oyunu + Klickety is a kind of solitary game that takes place on a Tetris-like board. + Klickety Tetris gibi tahta üzerinde yer alan bir tür soliter oyunu + klickety + mirrors://kde/stable/release-service/22.04.1/src/klickety-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + ki18n-devel + kconfigwidgets-devel + kxmlgui-devel + kio-devel + kdoctools-devel + knotifyconfig-devel + kdbusaddons-devel + knotifications-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/klickety/pspec.xml + + + klickety + + kio + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/kconf_update + /usr/share/klickety + /usr/share/knotifications5 + /usr/share/metainfo + /usr/share/kxmlgui5 + /usr/share/sounds + /usr/share/doc + /usr/share/locale + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + klines + https://www.kde.org/applications/games/klines/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Kolor Lines + Renkli çizgiler + Kolor Lines is a simple but highly addictive, one player game for KDE. Kolor Lines has been inspired by well known game of Color Lines. The goal of Kolor Lines is quite plain. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five. + Kolor Lines basit ama bağımlılık yapıcı bir oyundur. Dünyaca ünlü Color Lines'tan esinlenilen oyunda amacınız aynı renkli toplardan beş tanesini yan yana getirmektir. + klines + mirrors://kde/stable/release-service/22.04.1/src/klines-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kservice-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knewstuff-devel + libkdegames-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/klines/pspec.xml + + + klines + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmahjongg + https://www.kde.org/applications/games/kmahjongg/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Mahjongg Solitaire + Mahjongg oyunu + KMahjongg is a fun board game created after the famous oriental game of Mahjong. Unlike the original however, KMahjongg is a tile matching game for one or two players, a variation usually known as Mahjong Solitaire. + Mahjong Solitaire oyununa benzer KMahjongg bir veya iki oyuncunun birlekte oynayabileceği bir parça eşleştirme oyunudur. + kmahjongg + mirrors://kde/stable/release-service/22.04.1/src/kmahjongg-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdeclarative-devel + kdoctools-devel + kcompletion-devel + knewstuff-devel + kxmlgui-devel + libkdegames-devel + libkmahjongg-devel + kcompletion-devel + qt5-declarative-devel + + desktop/kde/applications/kmahjongg/pspec.xml + + + kmahjongg + + ki18n + kcrash + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + libkmahjongg + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /etc/xdg/kmahjongg.categories + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-26 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kmail + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + KDE mail client + KMail is the email component of Kontact, the integrated personal information manager from KDE. + mirrors://kde/stable/release-service/22.04.1/src/kmail-22.04.1.tar.xz + + gpgme-devel + extra-cmake-modules + kbookmarks-devel + kcmutils-devel + kcodecs-devel + kconfig-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kio-devel + kitemviews-devel + kjobwidgets-devel + knotifications-devel + knotifyconfig-devel + kparts-devel + kservice-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + sonnet-devel + akonadi-contacts-devel + akonadi-devel + akonadi-mime-devel + akonadi-search-devel + kcalendarcore-devel + kcalutils-devel + kcontacts-devel + kidentitymanagement-devel + kldap-devel + kmailtransport-devel + kmime-devel + kpimtextedit-devel + ktnef-devel + libgravatar + libkleo-devel + messagelib-devel + pimcommon-devel + qt5-base-devel + qt5-webengine-devel + kitemmodels-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + cyrus-sasl-devel + kontactinterface-devel + libksieve-devel + mailcommon-devel + kimap-devel + libgravatar-devel + libkdepim-devel + syntax-highlighting-devel + gpgme-qt5-devel + ffmpeg-devel + libXScrnSaver-devel + akonadi-calendar-devel + akonadi-import-wizard-devel + qt5-keychain-devel + kuserfeedback-devel + + desktop/kde/applications/kmail/pspec.xml + + + kmail + KDE mail client + + kio + gpgme + ki18n + kmime + ktnef + kcrash + kparts + libgcc + sonnet + akonadi + kcodecs + kconfig + kxmlgui + libkleo + kcalendarcore + kcmutils + kservice + qt5-base + kcalutils + kcontacts + libkdepim + libksieve + pimcommon + kbookmarks + kguiaddons + kitemviews + mailcommon + messagelib + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + kjobwidgets + libgravatar + akonadi-mime + kpimtextedit + ktextwidgets + knotifyconfig + kwindowsystem + akonadi-search + kconfigwidgets + kmailtransport + knotifications + kwidgetsaddons + akonadi-contacts + kontactinterface + akonadi-calendar + kidentitymanagement + kmail-account-wizard + akonadi-import-wizard + qt5-keychain + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-07 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-04-08 + 16.12.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-01-04 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kmail-account-wizard + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Kmail Account Wizard + Kmail Account Wizard + mirrors://kde/stable/release-service/22.04.1/src/kmail-account-wizard-22.04.1.tar.xz + + gpgme-devel + gpgme-qt5-devel + extra-cmake-modules + kcmutils-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + prison-devel + akonadi-devel + akonadi-search-devel + grantleetheme-devel + kpimtextedit-devel + libkdepim-devel + libkleo-devel + pimcommon-devel + qt5-base-devel + knotifyconfig-devel + ktexteditor-devel + kitemmodels-devel + akonadi-contacts-devel + kidentitymanagement-devel + kldap-devel + cyrus-sasl-devel + kmailtransport-devel + akonadi-mime-devel + mailcommon-devel + messagelib-devel + kimap-devel + kross-devel + knewstuff-devel + knotifications-devel + + desktop/kde/applications/kmail-account-wizard/pspec.xml + + + kmail-account-wizard + Kmail Account Wizard + + kio + gpgme + ki18n + kldap + kmime + kross + kcrash + libgcc + akonadi + kcodecs + kconfig + kwallet + kxmlgui + libkleo + kcmutils + qt5-base + knewstuff + libkdepim + kitemviews + kcoreaddons + kdbusaddons + akonadi-mime + kmailtransport + knotifications + kwidgetsaddons + kidentitymanagement + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-05 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kmailtransport + https://kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.applications + Mail Transport Service + Mail Transport Service + akonadi + mirrors://kde/stable/release-service/22.04.1/src/kmailtransport-22.04.1.tar.xz + + qt5-base-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcmutils-devel + kmime-devel + akonadi-mime-devel + akonadi-devel + cyrus-sasl-devel + extra-cmake-modules + boost-devel + ksmtp-devel + kwallet-devel + libkgapi-devel + qt5-keychain-devel + + desktop/kde/applications/kmailtransport/pspec.xml + + + kmailtransport + app:console + + qt5-base + ki18n + ksmtp + kio + libgcc + kmime + kconfig + kwallet + kcompletion + kcoreaddons + kconfigwidgets + kwidgetsaddons + akonadi + cyrus-sasl + akonadi-mime + libkgapi + qt5-keychain + + + /etc/xdg + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/kservices5 + /usr/share/doc/ + /usr/share/config.kcfg + /usr/share/locale + + + + kmailtransport-devel + Development files for akonadi + + kmailtransport + kwallet-devel + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmbox + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + MBox library support. + MBox library support. + mirrors://kde/stable/release-service/22.04.1/src/kmbox-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kmime-devel + boost-devel + kcodecs-devel + + desktop/kde/applications/kmbox/pspec.xml + + + kmbox + + qt5-base + kmime + libgcc /usr/share @@ -33827,11 +52932,31411 @@ components such as the Settings and gnome-shell. - kunitconversion-devel - Development files for kunitconversion + kmbox-devel + Development files for kmbox + qt5-base-devel + kmbox + + + /etc/xdg + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-24 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 16.12.0 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmime + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + KDE library for handling mail messages and newsgroup articles. + Kmime library for handling mail messages and newsgroup articles. + mirrors://kde/stable/release-service/22.04.1/src/kmime-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + boost-devel + ki18n-devel + kcodecs-devel + kdoctools-devel + + desktop/kde/applications/kmime/pspec.xml + + + kmime + + qt5-base + ki18n + kcodecs + libgcc + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmime-devel + Development files for kmime + + qt5-base-devel + kmime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmines + https://www.kde.org/applications/games/kmines/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Minesweeper like game + Mayın tarlası oyunu + KMines is the classic Minesweeper game. The idea is to uncover all the squares without blowing up any mines. When a mine is blown up, the game is over. + KMines klasik mayın tarlası oyununun bir türevidir. Oyunun amacı hiç bir mayına denk gelmemeye çalışarak kutuları açmaktır. Eğer bir mayın patlarsa oyun biter. + kmines + mirrors://kde/stable/release-service/22.04.1/src/kmines-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kmines/pspec.xml + + + kmines + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + + + /etc/xdg + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmix + http://kde.org/applications/multimedia/kmix/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.multimedia + KMix: KDE Digital Mixer + KMix: KDE için Dijital Mixer + KMix: KDE Digital Mixer + KMix: KDE için Dijital Mixer. + kmix + mirrors://kde/stable/release-service/22.04.1/src/kmix-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + ki18n-devel + kcmutils-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + libcanberra-devel + glib2-devel + alsa-lib-devel + knotifications-devel + kglobalaccel-devel + plasma-framework-devel + extra-cmake-modules + + desktop/kde/applications/kmix/pspec.xml + + + kmix + + qt5-base + alsa-lib + libcanberra + pulseaudio-libs + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + libgcc + plasma-framework + + + /etc + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/include + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmplot + http://kde.org/applications/education/kmplot/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.edu + Mathematical Function Plotter + KmPlot is a program to draw graphs, their integrals or derivatives. It supports different systems of coordinates like the Cartesian or the polar coordinate system. The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need. + mirrors://kde/stable/release-service/22.04.1/src/kmplot-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + kdelibs4-support-devel + kdoctools-devel + ki18n-devel + kinit-devel + kunitconversion-devel + kdelibs4-support-devel + kparts-devel + kwidgetsaddons-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + qt5-base-devel + + desktop/kde/applications/kmplot/pspec.xml + + + kmplot + Mathematical Function Plotter + + kdelibs4-support + ki18n + kparts + kwidgetsaddons + qt5-base + qt5-svg + libgcc + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-01 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + knavalbattle + https://www.kde.org/applications/games/knavalbattle/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Naval Battle game + Amiral Battı oyunu + knavalbattle is a Battle Ship game for KDE. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. + KBattleship KDE için bir Amiral Battı oyunudur. Gemiler denizi temsil eden oyun tahtasına yerleştirilir ve oyuncular rakiplerinin gemilerinin yerleşimini tahmin ederek gemileri vurmaya çalışır. Rakibinin tüm gemilerini daha önce batıran oyuncu kazanır. + knavalbattle + mirrors://kde/stable/release-service/22.04.1/src/knavalbattle-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + kdbusaddons-devel + kdnssd-devel + ki18n-devel + kxmlgui-devel + kdoctools-devel + ktextwidgets-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/knavalbattle/pspec.xml + + + knavalbattle + + ki18n + kdnssd + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kwidgetsaddons + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/kconf_update + /usr/share/knavalbattle + /usr/share/kservices5 + /usr/share/kxmlgui5 + /usr/share/doc + /usr/share/locale + /usr/share/qlogging-categories5 + /usr/share/metainfo/org.kde.knavalbattle.appdata.xml + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + knetwalk + https://www.kde.org/applications/games/knetwalk/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Network construction game + Ağ yapılandırma oyunu + KNetWalk is a single player logic game. The object of the game is to start the LAN, connecting all the terminals to the server, in as few turns as possible. + KNetWalk bir ağ kurma oyunudur. Dunucularla istemcileri mümkün olan en az kaynakla birleştirmeye çalışmak oyunun amacıdır. Bağımlılık yapması olasıdır. + knetwalk + mirrors://kde/stable/release-service/22.04.1/src/knetwalk-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + ktextwidgets-devel + + desktop/kde/applications/knetwalk/pspec.xml + + + knetwalk + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + ktextwidgets + kconfigwidgets + kwidgetsaddons + qt5-declarative + ktextwidgets + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kollision + https://www.kde.org/applications/games/kollision/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + A simple ball dodging game + Basit bir top sıçratma oyunu + Kollision is ball dodging game. Click on the empty field to start a game: a blue ball immediately replaces your mouse cursor, and a number of red balls start to fade into the field. + Kollision basit bir top sıçratma oyunudur. Boş bir alana fareyle tıkladığınızda oyun başlar ve fare imlecinizin yerini mavi bir top alır, ayrıca olayların gelişmesine vesile olacak kırmızı toplar da alandaki yerlerini alırlar. + kollision + mirrors://kde/stable/release-service/22.04.1/src/kollision-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + kcoreaddons-devel + kconfig-devel + kwidgetsaddons-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + libkdegames-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kollision/pspec.xml + + + kollision + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kolourpaint + http://kde.org/applications/graphics/kolourpaint + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.graphics + An easy to use paint program + Kullanımı kolay bir çizim programı + KolourPaint is a simple painting program to quickly create raster images. It is useful as a touch-up tool and simple image editing tasks. + KolourPaint, kullanımı kolay bir çizim programıdır. + kolourpaint + mirrors://kde/stable/release-service/22.04.1/src/kolourpaint-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + libkexiv2-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libksane-devel + + desktop/kde/applications/kolourpaint/pspec.xml + + + kolourpaint + + ki18n + libgcc + kconfig + kxmlgui + kservice + qt5-base + kguiaddons + libksane + kcoreaddons + kiconthemes + ktextwidgets + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/doc + /usr/share/icons + /usr/share/kolourpaint + /usr/share/kxmlgui5 + /usr/share/metainfo + /usr/share/locale/ + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-18 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-09 + 16.08.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kompare + http://www.kde.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.sdk + File difference viewer + Dosya karşılaştırma göstericisi. + Diff/Patch Frontend. + Dosya karşılaştırma göstericisi. + mirrors://kde/stable/release-service/22.04.1/src/kompare-22.04.1.tar.xz + + extra-cmake-modules + kdoctools-devel + qt5-base-devel + gettext-devel + libkomparediff2-devel + kcoreaddons-devel + kcodecs-devel + kiconthemes-devel + kjobwidgets-devel + kconfig-devel + kparts-devel + ktexteditor-devel + kwidgetsaddons-devel + + desktop/kde/applications/kompare/pspec.xml + + + kompare + + qt5-base + libkomparediff2 + kio + ki18n + kparts + libgcc + kcodecs + kconfig + kxmlgui + kservice + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + ktexteditor + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/include + + + kdesdk + + + kdesdk + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + konqueror + https://www.kde.org/applications/internet/konqueror/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + GPL + LGPL + desktop.kde.applications + Konqueror - KDE File Manager and Web Browser + Konqueror is KDE's Webbrowser and swiss-army-knife for any kind of file-management and file previewing. + mirrors://kde/stable/release-service/22.04.1/src/konqueror-22.04.1.tar.xz + + extra-cmake-modules + gettext-devel + glibc-devel + kactivities-devel + karchive-devel + kbookmarks-devel + kcmutils-devel + kcrash-devel + kdelibs4-support-devel + kdesu-devel + kdoctools-devel + khtml-devel + kiconthemes-devel + kinit-devel + kio-devel + kparts-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + kwidgetsaddons-devel + libICE-devel + libX11-devel + libXext-devel + python-devel + qt5-base-devel + qt5-declarative-devel + qt5-location-devel + qt5-webchannel-devel + qt5-webengine-devel + qt5-x11extras-devel + tidy-devel + zlib-devel + libevent-devel + ffmpeg-devel + libXScrnSaver-devel + kwallet-devel + qt5-script-devel + + desktop/kde/applications/konqueror/pspec.xml + + + konqueror + Konqueror - KDE File Manager and Web Browser + + kwallet + karchive + kbookmarks + kcmutils + kcrash + kded + kdelibs4-support + kdesu + khtml + kiconthemes + kinit + kio + kparts + kwidgetsaddons + libX11 + libXext + libgcc + qt5-base + qt5-declarative + qt5-location + qt5-webchannel + qt5-webengine + qt5-x11extras + zlib + tidy + ki18n + sonnet + kcodecs + kconfig + kxmlgui + kservice + kitemviews + qt5-script + kcompletion + kcoreaddons + kdbusaddons + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + kde-baseapps + + + kde-baseapps + + + + konqueror-devel + Development files for konqueror + + qt5-base-devel + konqueror + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 17.08.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-24 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-03 + 16.11.90 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + konsole + https://projects.kde.org/projects/kde/applications/dolphin + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.applications + KDE Konsole + Konsole for KDE5 + mirrors://kde/stable/release-service/22.04.1/src/konsole-22.04.1.tar.xz + + qt5-base-devel + qt5-script-devel + kpty-devel + kio-devel + kinit-devel + knotifyconfig-devel + kparts-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + docbook-xsl + extra-cmake-modules + kdoctools-devel + kcrash-devel + kdbusaddons-devel + knewstuff-devel + kglobalaccel-devel + cmake + kguiaddons-devel + knotifications-devel + + desktop/kde/applications/konsole/pspec.xml + + + konsole + + libgcc + qt5-base + kiconthemes + knotifyconfig + knotifications + kparts + kpty + kio + ki18n + kconfig + kxmlgui + kservice + kcrash + kdbusaddons + kbookmarks + knewstuff + kguiaddons + kcompletion + kcoreaddons + kjobwidgets + ktextwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kglobalaccel + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kontactinterface + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + Kontact Plugin Interface Library + This library provides the glue necessary for application "Parts" to be embedded as a Kontact component (or plugin). + mirrors://kde/stable/release-service/22.04.1/src/kontactinterface-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + kcoreaddons-devel + kparts-devel + kwindowsystem-devel + ki18n-devel + kxmlgui-devel + kiconthemes-devel + + desktop/kde/applications/kontactinterface/pspec.xml + + + kontactinterface + + qt5-base + kio + kparts + libgcc + kxmlgui + kcoreaddons + kiconthemes + kwindowsystem + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kontactinterface-devel + Development files for kontactinterface + + qt5-base-devel + kontactinterface + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + konversation + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.applications + A user friendly IRC client for KDE + Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. + mirrors://kde/stable/konversation/1.7.7/src/konversation-1.7.7.tar.xz + + qt5-base-devel + qt5-phonon-devel + extra-cmake-modules + kdoctools-devel + kitemviews-devel + kbookmarks-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kemoticons-devel + ki18n-devel + kidletime-devel + knotifyconfig-devel + kio-devel + kparts-devel + solid-devel + sonnet-devel + kwallet-devel + kwidgetsaddons-devel + kglobalaccel-devel + kdbusaddons-devel + knotifications-devel + kwindowsystem-devel + kiconthemes-devel + karchive-devel + qca2-qt5-devel + python3-devel + gettext-devel + docbook-xsl + kcrash-devel + + desktop/kde/applications/konversation/pspec.xml + + + konversation + + qt5-base + qca2-qt5 + kemoticons + kidletime + knotifyconfig + kparts + kio + kcrash + libgcc + ki18n + sonnet + kcodecs + kconfig + kwallet + kxmlgui + karchive + kservice + kbookmarks + kitemviews + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + ktextwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2022-05-17 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 1.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 1.7.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 1.7.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 1.7.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 1.7.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-07 + 1.7.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-17 + 1.7.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-05-10 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 1.6.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-28 + 1.6.0 + Release bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-05-08 + 1.6.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + korganizer + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Calendar and scheduling Program + KOrganizer is the calendar and scheduling component of Kontact, the integrated personal information manager from KDE. + https://download.kde.org/stable/release-service/22.04.1/src/korganizer-22.04.1.tar.xz + + gpgme-devel + extra-cmake-modules + kcmutils-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + prison-devel + akonadi-devel + akonadi-search-devel + grantleetheme-devel + kpimtextedit-devel + libkdepim-devel + libkleo-devel + pimcommon-devel + qt5-base-devel + kitemmodels-devel + akonadi-mime-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + knewstuff-devel + akonadi-contacts-devel + kidentitymanagement-devel + kmailtransport-devel + cyrus-sasl-devel + kcalutils-devel + kholidays-devel + kldap-devel + akonadi-calendar-devel + kontactinterface-devel + akonadi-notes-devel + mailcommon-devel + messagelib-devel + kimap-devel + incidenceeditor-devel + eventviews-devel + calendarsupport-devel + kparts-devel + kuserfeedback-devel + knotifications-devel + qt5-phonon-devel + + desktop/kde/applications/korganizer/pspec.xml + + + korganizer + Calendar and scheduling Program + + kio + ki18n + kmime + kcrash + kparts + libgcc + akonadi + kcodecs + kconfig + kxmlgui + kcalendarcore + kcmutils + kservice + qt5-base + kcalutils + kcontacts + kholidays + knewstuff + libkdepim + pimcommon + eventviews + kitemviews + mailcommon + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + kjobwidgets + akonadi-mime + kpimtextedit + akonadi-notes + kwindowsystem + akonadi-search + kconfigwidgets + kmailtransport + knotifications + kwidgetsaddons + calendarsupport + incidenceeditor + akonadi-calendar + akonadi-contacts + kdelibs4-support + kontactinterface + kidentitymanagement + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-23 + 17.12.3 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-09 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-08 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + kpat + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + Patience card game + To play KPatience you need, as the name suggests, patience. For simple games, where the way the game goes depends only upon how the cards fall, your patience might be the only thing you need. + mirrors://kde/stable/release-service/22.04.1/src/kpat-22.04.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-phonon-devel + kdoctools-devel + cmake + gettext-devel + kio-devel + kpackage-devel + kitemviews-devel + kinit-devel + kunitconversion-devel + kiconthemes-devel + ktextwidgets-devel + kitemmodels-devel + knotifyconfig-devel + libkdegames-devel + kemoticons-devel + kdeclarative-devel + knewstuff-devel + ki18n-devel + kconfig-devel + kxmlgui-devel + qt5-svg-devel + kguiaddons-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + shared-mime-info + extra-cmake-modules + python3 + mesa-devel + kdesignerplugin + black-hole-solver-devel + freecell-solver-devel + + desktop/kde/applications/kpat/pspec.xml + + + kpat + + qt5-base + libkdegames + knewstuff + ki18n + kio + kcrash + libgcc + kconfig + kxmlgui + qt5-svg + kguiaddons + kcompletion + kcoreaddons + kdbusaddons + kconfigwidgets + kwidgetsaddons + freecell-solver + black-hole-solver + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-16 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpimtextedit + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.applications + A textedit with PIM-specific features. + Text Edit with KDE-PIM specific features. + mirrors://kde/stable/release-service/22.04.1/src/kpimtextedit-22.04.1.tar.xz + + qt5-base-devel + qt5-speech-devel + qt5-designer-devel + ki18n-devel + sonnet-devel + kcodecs-devel + syntax-highlighting-devel + kconfig-devel + kio-devel + kemoticons-devel + kdesignerplugin + kitemmodels-devel + kinit-devel + ktextwidgets-devel + kiconthemes-devel + kunitconversion-devel + kdoctools-devel + extra-cmake-modules + grantlee-qt5-devel + + desktop/kde/applications/kpimtextedit/pspec.xml + + + kpimtextedit + + qt5-base + qt5-speech + qt5-designer + ki18n + kcodecs + kio + sonnet + libgcc + kemoticons + kcompletion + ktextwidgets + kwidgetsaddons + grantlee-qt5 + kconfig + kxmlgui + kcoreaddons + kiconthemes + kconfigwidgets + syntax-highlighting + + + /etc/xdg + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + + kpimtextedit-devel + Development files for kpimtextedit + + qt5-base-devel + kpimtextedit + ktextwidgets-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-04 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpkpass + https://download.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.applications + Apple Wallet Pass reader + Apple Wallet Pass reader + Apple Cüzdan Geçiş okuyucusu + Apple Cüzdan Geçiş okuyucusu + https://download.kde.org/stable/release-service/22.04.1/src/kpkpass-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + karchive-devel + shared-mime-info + + desktop/kde/applications/kpkpass/pspec.xml + + + kpkpass + + libgcc + karchive + qt5-base + + + /etc/xdg + /usr/lib + /usr/share + /usr/share/doc + + + + kpkpass-devel + Development files for kpkpass + + kpkpass + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kpmcore + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.applications + Library for managing partitions. + Library for managing partitions. + mirrors://kde/stable/release-service/22.04.1/src/kpmcore-22.04.1.tar.xz + + ntfs-3g + udftools + ntfsprogs + fatresize + exfat-utils + dosfstools + reiserfsprogs + smartmontools + xfsprogs-devel + qt5-base-devel + libatasmart-devel + extra-cmake-modules + parted-devel + libutil-linux-devel + ki18n-devel + kio-devel + kconfig-devel + kxmlgui-devel + kservice-devel + kcoreaddons-devel + kiconthemes-devel + kjobwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kdoctools-devel + kwidgetsaddons-devel + qca2-qt5-devel + polkit-devel + elogind-devel + polkit-qt-devel + jfsutils + f2fs-tools + nilfs-utils-devel + e2fsprogs-devel + + desktop/kde/applications/kpmcore/pspec.xml + + + kpmcore + + kio + ki18n + kauth + ntfs-3g + qca2-qt5 + fatresize + udftools + fatresize + ntfsprogs + exfat-utils + dosfstools + reiserfsprogs + smartmontools + xfsprogs + kwidgetsaddons + libgcc + parted + kservice + qt5-base + kcoreaddons + kiconthemes + libatasmart + libutil-linux + polkit-qt + jfsutils + f2fs-tools + nilfs-utils + e2fsprogs + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + kpmcore-devel + Development files for kpmcore + + kpmcore + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 4.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 4.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 4.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-20 + 4.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 4.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-17 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-14 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-11 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 3.3.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-12-19 + 3.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-09 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-17 + 3.1.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-30 + 3.1.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-12 + 2.9.91 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-13 + 2.9.91 + Version bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-10-12 + 2.1.1 + Release bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-01-17 + 2.1.1 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-01-17 + 2.1.1 + First Release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kproperty + http://www.kexi-project.org/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:console + desktop.kde.applications + A property editing framework with editor widget similar to what is known from Qt Designer + A property editing framework with editor widget similar to what is known from Qt Designer + https://download.kde.org/stable/kproperty/src/kproperty-3.2.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-linguist + kconfig-devel + kcoreaddons-devel + kwidgetsaddons-devel + kguiaddons-devel + ki18n-devel + + desktop/kde/applications/kproperty/pspec.xml + + + kproperty + A property editing framework with editor widget similar to what is known from Qt Designer + + libgcc + kconfig + qt5-base + kguiaddons + kwidgetsaddons + + + /usr/lib/libKProperty* + /usr/share + + + + kproperty-devel + Developments files for kproperty. + + qt5-base-devel + kproperty + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-05-17 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 3.0.2 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-07-14 + 3.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-30 + 3.0.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-04 + 3.0.0 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + kqtquickcharts + https://edu.kde.org/ + + Stefan Gronewold + groni@pisilinux.org + + FDL + LGPL + GPL + desktop.kde.applications + A QtQuick plugin to render beautiful and interactive charts + A QtQuick plugin to render beautiful and interactive charts + mirrors://kde/stable/release-service/22.04.1/src/kqtquickcharts-22.04.1.tar.xz + + extra-cmake-modules + glibc-devel + qt5-base-devel + qt5-declarative-devel + + desktop/kde/applications/kqtquickcharts/pspec.xml + + + kqtquickcharts + A QtQuick plugin to render beautiful and interactive charts + + qt5-base + qt5-declarative + libgcc + + + /usr/lib/qt5 + /usr/share/doc + + + + kqtquickcharts-devel + Development files for kqtquickcharts + + kqtquickcharts + qt5-base-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-05 + 16.11.90 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + krdc + http://www.kde.org/applications/internet/krdc/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.kde.applications + Remote Desktop Client + Uzak masaüstü bağlantı istemcisi. + KRDC is a client application that allows you to view or even control the desktop session on another machine that is running a compatible server. VNC and RDP is supported. + krdc, uzaktaki bir masaüstü oturumunu görüntülemenizi ve kontrol etmenizi sağlar. RDP kullanan Windows Terminal Sunucuları'na ve VNC/RFB kullanan diğer pek çok platforma bağlanabilirç + mirrors://kde/stable/release-service/22.04.1/src/krdc-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kconfig-devel + kcmutils-devel + kdnssd-devel + knotifyconfig-devel + knotifications-devel + kbookmarks-devel + kiconthemes-devel + kxmlgui-devel + kcompletion-devel + kwallet-devel + kwidgetsaddons-devel + ki18n-devel + libvncserver-devel + kdoctools-devel + kwindowsystem-devel + libssh-devel + freerdp-devel + libvncserver-devel + + desktop/kde/applications/krdc/pspec.xml + + + krdc + + ki18n + kdnssd + libgcc + libssh + kconfig + kwallet + kxmlgui + kcmutils + kservice + qt5-base + kbookmarks + kcompletion + kcoreaddons + libvncserver + knotifyconfig + kconfigwidgets + knotifications + kwindowsystem + kwidgetsaddons + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share/applications + /usr/share/config.kcfg + /usr/share/krdc + /usr/share/kxmlgui5 + /usr/share/kservices5 + /usr/share/metainfo + /usr/share/kservicetypes5 + /usr/share/qlogging-categories5 + /usr/share/doc + /usr/share/locale + + + + krdc-devel + + krdc + + + /usr/include + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-20 + 16.04 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kreport + http://www.kexi-project.org/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:console + desktop.kde.applications + A framework for creation and generation of reports in multiple formats + A framework for creation and generation of reports in multiple formats + https://download.kde.org/stable/kreport/src/kreport-3.2.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-webkit-devel + qt5-linguist + kproperty-devel + kconfig-devel + kguiaddons-devel + kwidgetsaddons-devel + kcoreaddons-devel + marble-devel + ki18n-devel + qt5-webengine-devel + + desktop/kde/applications/kreport/pspec.xml + + + kreport + A framework for creation and generation of reports in multiple formats + + libgcc + marble + kconfig + qt5-base + kproperty + qt5-webkit + kcoreaddons + kwidgetsaddons + qt5-declarative + qt5-webengine + + + /usr/share + /usr/lib/libKReport3* + /usr/lib/cmake + /usr/lib/qt5 + + + + kreport-devel + Developments files for kreport. + + kreport + qt5-base-devel + kproperty-devel + qt5-webkit-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-05-17 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 3.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-11 + 3.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 3.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-11 + 3.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 3.1.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 3.1.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 3.0.2 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-23 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-14 + 3.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-30 + 3.0.1 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-31 + 3.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + krfb + http://www.kde.org/applications/system/krfb/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.applications + Desktop sharing utility + Masaüstü paylaşım araçları. + KDE Desktop Sharing is a manager for easily sharing a desktop session with another system. The desktop session can be viewed or controlled remotely by any VNC or RFB client + krfb, masaüstünü uzaktaki bilgisayarlarla kolaylıkla paylaşmaya olanak sağlar. + mirrors://kde/stable/release-service/22.04.1/src/krfb-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-x11extras-devel + ki18n-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdnssd-devel + kdoctools-devel + knotifications-devel + kwallet-devel + kwidgetsaddons-devel + kxmlgui-devel + libvncserver-devel + libX11-devel + libXdamage-devel + libxcb-devel + libXext-devel + libXtst-devel + kwindowsystem-devel + xcb-util-image-devel + kwayland-devel + + desktop/kde/applications/krfb/pspec.xml + + + krfb + + ki18n + kdnssd + libX11 + libxcb + libgcc + kconfig + kwallet + kxmlgui + libXtst + kwayland + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libvncserver + qt5-x11extras + kconfigwidgets + knotifications + kwindowsystem + kwidgetsaddons + xcb-util-image + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/krfb + /usr/share/kservicetypes5 + /usr/share/icons + /usr/share/doc + /usr/share/locale + /usr/share/metainfo + /usr/share/qlogging-categories5/krfb.categories + + + kdenetwork + + + kdenetwork + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-18 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kross-interpreters + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.bindings + Kross interpreter plugins for programming languages + Language interpreters to enable in-process scripting with Kross. + mirrors://kde/stable/release-service/22.04.1/src/kross-interpreters-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + kross-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + python-devel + + desktop/kde/applications/kross-interpreters/pspec.xml + + + kross-interpreters + + qt5-base + libgcc + python + kross + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kruler + http://www.kde.org/applications/graphics/kruler + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.graphics + A screen ruler and color measurement tool + Ekran cetveli ve renk ölçüm aracı + KRuler is a screen ruler and color measurement tool. + KRuler, bir ekran cetveli ve renk ölçüm aracıdır. + kruler + mirrors://kde/stable/release-service/22.04.1/src/kruler-22.04.1.tar.xz + + qt5-base-devel + qt5-x11extras-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + knotifications-devel + kwindowsystem-devel + kxmlgui-devel + python-devel + docbook-xsl + + desktop/kde/applications/kruler/pspec.xml + + + kruler + + qt5-base + kxmlgui + knotifications + ki18n + libgcc + libxcb + kconfig + kcoreaddons + kwindowsystem + qt5-x11extras + kconfigwidgets + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kshisen + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + Shisen-Sho Mahjongg like tile game + Shisen-Sho is a solitaire-like game played using the standard set of Mahjong tiles. Unlike Mahjong however, Shisen-Sho has only one layer of scrambled tiles. + mirrors://kde/stable/release-service/22.04.1/src/kshisen-22.04.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + kdoctools-devel + ki18n-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcoreaddons-devel + kcoreaddons-devel + kdbusaddons-devel + libkdegames-devel + libkmahjongg-devel + knewstuff-devel + kdnssd-devel + kdeclarative-devel + kio-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kshisen/pspec.xml + + + kshisen + + qt5-base + qt5-declarative + libgcc + ki18n + kconfig + kconfigwidgets + kwidgetsaddons + kxmlgui + kcoreaddons + kdbusaddons + libkdegames + libkmahjongg + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-08-29 + 1.6.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + ksmtp + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.applications + Bir SMTP sunucusu yoluyla e-posta göndermek için işe dayalı kütüphane + Bir SMTP sunucusu yoluyla e-posta göndermek için işe dayalı kütüphane + Job-based library to send email through an SMTP server + Job-based library to send email through an SMTP server + https://download.kde.org/stable/release-service/22.04.1/src/ksmtp-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kcoreaddons-devel + ki18n-devel + kio-devel + kmime-devel + cyrus-sasl-devel + + desktop/kde/applications/ksmtp/pspec.xml + + + ksmtp + + kio + ki18n + kmime + libgcc + kcoreaddons + cyrus-sasl + qt5-base + + + /etc/xdg + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + ksmtp-devel + Development files for ksmtp + + ksmtp + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + ksquares + https://www.kde.org/applications/games/ksquares/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Connect the dots to create squares + Noktaları birleştirerek kare yapma oyunu + KSquares is a fun and exciting game that modeled after the well known pen and paper based game of Dots and Boxes. + KSquares sıkıcı derslerin kurtarıcısı, eğlenceli ve heyecanlı kare yapma oyununun KDE sürümüdür. + ksquares + mirrors://kde/stable/release-service/22.04.1/src/ksquares-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcoreaddons-devel + kconfig-devel + kdbusaddons-devel + kdoctools-devel + kwidgetsaddons-devel + ki18n-devel + kguiaddons-devel + kconfigwidgets-devel + kitemviews-devel + kiconthemes-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + libkdegames-devel + qt5-declarative-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/ksquares/pspec.xml + + + ksquares + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kstars + https://www.kde.org/applications/education/kstars/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + A desktop planetarium for KDE + KDE için bir masaüstü gözlemevi + KStars is a Desktop Planetarium for KDE. It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time. The display includes up to 100 million stars, 13,000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets and asteroids. + KStars, dünyanın herhangi bir yerinin herhangi bir anındaki gökyüzü yıldız haritasını gösterebilen bir uygulamadır. 100 milyon kadar yıldız, 13000 derin gök cismi, 8 gezegenin tümü, Güneş, Ay ile birçok kuyruklu yıldız ve astreoidi içeren bir veritabanı vardır. + kstars + https://download.kde.org/stable/kstars/kstars-3.5.8.tar.xz + + qt5-base-devel + qt5-datavis3d-devel + qt5-multimedia-devel + qt5-keychain-devel + qt5-svg-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + qt5-declarative-devel + qt5-location-devel + qt5-quickcontrols2-devel + qt5-websockets-devel + eigen3 + xplanet + kcrash-devel + libraw-devel + cfitsio-devel + libindi-devel + kdoctools-devel + kconfig-devel + kguiaddons-devel + kwidgetsaddons-devel + knewstuff-devel + kdbusaddons-devel + gettext-devel + ki18n-devel + kinit-devel + kjobwidgets-devel + kio-devel + kwindowsystem-devel + kxmlgui-devel + kplotting-devel + ktexteditor-devel + kiconthemes-devel + pkgconfig + mesa-glu-devel + mesa-devel + wcslib-devel + zlib-devel + gsl-devel + knotifyconfig-devel + extra-cmake-modules + libnova-devel + stellarsolver-devel + knotifications-devel + + desktop/kde/applications/kstars/pspec.xml + + + kstars + + qt5-base + qt5-svg + qt5-declarative + qt5-websockets + qt5-keychain + qt5-datavis3d + libindi + cfitsio + kio + gsl + kauth + libraw + libnova + kinit + kcrash + knewstuff + kplotting + ktexteditor + zlib + ki18n + libgcc + kconfig + kxmlgui + kcoreaddons + kiconthemes + kconfigwidgets + knotifyconfig + kwidgetsaddons + wcslib + xplanet + knotifications + libnova + stellarsolver + + + /etc/dbus-1/system.d/org.kde.kf5auth.kstars.conf + /etc/xdg + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 3.5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 3.5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 3.5.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 3.5.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 3.5.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 3.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 3.5.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 3.5.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 3.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-16 + 3.5.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2020-09-13 + 3.4.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 3.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 3.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 3.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 3.3.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 3.3.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 3.3.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 3.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 3.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 3.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 3.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 17.08.3 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 17.08.3 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-14 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-01 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ksudoku + https://apps.kde.org/ksudoku + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.applications + Sudoku game + Sudoku oyunu + Ksudoku is a logic-based symbol placement puzzle. + Ksudoku mantık temelli bir sembol yerleştirme oyunudur. + ksudoku + https://download.kde.org/stable/release-service/22.04.1/src/ksudoku-22.04.1.tar.xz + + cmake + kio-devel + ki18n-devel + kcrash-devel + kconfig-devel + kxmlgui-devel + qt5-svg-devel + qt5-base-devel + mesa-glu-devel + karchive-devel + libglvnd-devel + kdoctools-devel + kguiaddons-devel + libkdegames-devel + kcoreaddons-devel + kjobwidgets-devel + kiconthemes-devel + extra-cmake-modules + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + + desktop/kde/applications/ksudoku/pspec.xml + + + ksudoku + + kio + ki18n + libgcc + kcrash + kconfig + kxmlgui + qt5-svg + qt5-base + mesa-glu + libglvnd + kguiaddons + kjobwidgets + kcoreaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/lib + /etc/xdg + /usr/share/doc + /usr/bin + + + + + 2022-05-30 + 22.04.1 + First release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + kteatime + http://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + Timer for making tea. + Çay yapma zamanlayıcısı. + KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. + Kteatime çay yapmak için kullanışlı bir uygulamadır. Kteatime ile çay demlemek için ne kadar beklemek gerektiğini düşünmenize gerek kalmaz. + mirrors://kde/stable/release-service/22.04.1/src/kteatime-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kconfig-devel + kcrash-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + knotifyconfig-devel + knotifications-devel + kwidgetsaddons-devel + ktextwidgets-devel + kxmlgui-devel + + desktop/kde/applications/kteatime/pspec.xml + + + kteatime + + ki18n + libgcc + kconfig + kxmlgui + qt5-base + kcoreaddons + kiconthemes + ktextwidgets + knotifyconfig + kconfigwidgets + knotifications + + + /usr/bin + /usr/doc + /usr/share + + + kdetoys + + + kdetoys + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktimer + http://kde.org/applications/utilities/ktimer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A countdown launcher + A countdown launcher + KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. + KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. + ktimer + mirrors://kde/stable/release-service/22.04.1/src/ktimer-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + cmake + extra-cmake-modules + ki18n-devel + kwidgetsaddons-devel + kio-devel + kiconthemes-devel + kdbusaddons-devel + knotifications-devel + mesa-devel + + desktop/kde/applications/ktimer/pspec.xml + + + ktimer + + qt5-base + kio + ki18n + libgcc + kconfig + kcoreaddons + kdbusaddons + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktnef + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.applications + API for handling TNEF data + The API permits access to the actual attachments, the message properties (TNEF/MAPI), and allows one to view/extract message formatted text in Rich Text Format format. + mirrors://kde/stable/release-service/22.04.1/src/ktnef-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + extra-cmake-modules + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcalendarcore-devel + kcalutils-devel + kcontacts-devel + + desktop/kde/applications/ktnef/pspec.xml + + + ktnef + + qt5-base + kcalutils + ki18n + libgcc + kcalendarcore + kcontacts + + + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + + ktnef-devel + Development files for ktnef + + qt5-base-devel + ktnef + + + /etc/xdg + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-accounts-kcm + https://projects.kde.org/projects/extragear/network/telepathy/ktp-accounts-kcm + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.applications + KCM Module for configuring Telepathy Instant Messaging Accounts + KCM Module for configuring Telepathy Instant Messaging Accounts + mirrors://kde/stable/release-service/22.04.1/src/ktp-accounts-kcm-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-imageformats + kcmutils-devel + kio-devel + ki18n-devel + kwidgetsaddons-devel + kcodecs-devel + kcoreaddons-devel + kconfigwidgets-devel + kiconthemes-devel + kitemviews-devel + telepathy-qt5-devel + kaccounts-integration-devel + libaccounts-qt5-devel + solid-devel + kservice-devel + libaccounts-glib-devel + intltool + kaccounts-providers + telepathy-haze + telepathy-gabble + signon-devel + ktp-common-internals-devel + gettext-devel + + desktop/kde/applications/ktp-accounts-kcm/pspec.xml + + + ktp-accounts-kcm + + ki18n + libgcc + signon + kcodecs + qt5-base + kcoreaddons + telepathy-qt5 + libaccounts-qt5 + kaccounts-integration + + + /usr/bin + /etc + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/info + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-26 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-05-23 + 16.04.0 + >Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-30 + 15.12.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + ktp-approver + https://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + KDE Channel Approver for Telepathy + KDE Channel Approver for Telepathy + mirrors://kde/stable/release-service/22.04.1/src/ktp-approver-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kconfig-devel + ki18n-devel + knotifications-devel + kservice-devel + telepathy-qt5-devel + + desktop/kde/applications/ktp-approver/pspec.xml + + + ktp-approver + + ki18n + libgcc + kconfig + kservice + qt5-base + kcoreaddons + kdbusaddons + telepathy-qt5 + knotifications + + + /etc + /usr/lib + /usr/share + /usr/share/kservicetypes5 + /usr/share/kservices5 + /usr/share/dbus-1 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-auth-handler + https://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + mirrors://kde/stable/release-service/22.04.1/src/ktp-auth-handler-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kwallet-devel + kwidgetsaddons-devel + ki18n-devel + kio-devel + kdewebkit-devel + telepathy-qt5-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + qca2-qt5-devel + libaccounts-glib-devel + libaccounts-qt5-devel + kaccounts-integration-devel + signon-devel + + desktop/kde/applications/ktp-auth-handler/pspec.xml + + + ktp-auth-handler + Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect + + kio + ki18n + libgcc + signon + kconfig + qca2-qt5 + qt5-base + kcoreaddons + telepathy-qt5 + kwidgetsaddons + libaccounts-qt5 + ktp-common-internals + kaccounts-integration + + + /usr/lib + /usr/share/telepathy + /usr/share/dbus-1 + /usr/share/doc + /usr/share/locale + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-18 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-common-internals + https://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + Common components for KDE-Telepathy + Common components for KDE-Telepathy + mirrors://kde/stable/release-service/22.04.1/src/ktp-common-internals-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + knotifications-devel + kio-devel + kwidgetsaddons-devel + kcmutils-devel + knotifyconfig-devel + ktexteditor-devel + kwallet-devel + kconfig-devel + kwindowsystem-devel + kiconthemes-devel + kpeople-devel + signon-devel + kaccounts-integration-devel + telepathy-logger-qt-devel + libaccounts-qt5-devel + telepathy-qt5-devel + libaccounts-glib-devel + libgcrypt-devel + sqlite-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + telepathy-mission-control-devel + libotr-devel + + desktop/kde/applications/ktp-common-internals/pspec.xml + + + ktp-common-internals + Common components for KDE-Telepathy + + ki18n + kparts + libgcc + libotr + signon + kconfig + kpeople + kwallet + kxmlgui + kcmutils + kservice + qt5-base + libgcrypt + kcoreaddons + kiconthemes + ktexteditor + knotifyconfig + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + libaccounts-qt5 + qt5-declarative + telepathy-logger-qt + kaccounts-integration + + + /usr/bin + /usr/lib/libKTpCommonInternals.so.* + /usr/lib/libKTpModels.so.* + /usr/lib/libKTpLogger.so.* + /usr/lib/libKTpWidgets.so.* + /usr/lib/libKTpOTR.so.* + /usr/lib/ktp-proxy + /usr/lib/qt5 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/knotifications5 + /usr/share/config.kcfg + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/icons + /usr/share/katepart5 + /usr/share/doc + /usr/share/locale + + + + ktp-common-internals-devel + Development files for ktp-common-internals + + ktp-common-internals + libotr-devel + + + /usr/include/KTp + /usr/lib/cmake/KTp + /usr/lib/libKTpCommonInternals.so + /usr/lib/libKTpModels.so + /usr/lib/libKTpLogger.so + /usr/lib/libKTpWidgets.so + /usr/lib/libKTpOTR.so + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-contact-list + https://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + KDE Telepathy contact list application + KDE Telepathy contact list application + mirrors://kde/stable/release-service/22.04.1/src/ktp-contact-list-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kdbusaddons-devel + kio-devel + kwallet-devel + kcmutils-devel + knotifications-devel + kwindowsystem-devel + knotifyconfig-devel + ki18n-devel + kiconthemes-devel + kxmlgui-devel + kpeople-devel + telepathy-qt5-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + + desktop/kde/applications/ktp-contact-list/pspec.xml + + + ktp-contact-list + KDE Telepathy contact list application + + ki18n + kwallet + libgcc + kconfig + kpeople + kxmlgui + kservice + qt5-base + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/share + /usr/share/dbus-1 + /usr/share/applications + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-contact-runner + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + KRunner plugin for KDE Telepathy + KRunner plugin for KDE Telepathy + mirrors://kde/stable/release-service/22.04.1/src/ktp-contact-runner-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + ki18n-devel + kwallet-devel + kservice-devel + krunner-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/applications/ktp-contact-runner/pspec.xml + + + ktp-contact-runner + KRunner plugin for KDE Telepathy + + ki18n + kwallet + libgcc + krunner + qt5-base + kcoreaddons + telepathy-qt5 + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/kservices5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-desktop-applets + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + The KDE-Telepathy Plasma desktop applets + The KDE-Telepathy Plasma desktop applets + mirrors://kde/stable/release-service/22.04.1/src/ktp-desktop-applets-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + kwindowsystem-devel + plasma-framework-devel + + desktop/kde/applications/ktp-desktop-applets/pspec.xml + + + ktp-desktop-applets + The KDE-Telepathy Plasma desktop applets + + libgcc + qt5-base + kwindowsystem + qt5-declarative + + + /usr/lib + /usr/share + /usr/share/plasma + /usr/share/kservices5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-filetransfer-handler + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + KDE Telepathy file transfer handler + KDE Telepathy file transfer handler + mirrors://kde/stable/release-service/22.04.1/src/ktp-filetransfer-handler-22.04.1.tar.xz + + extra-cmake-modules + kcoreaddons-devel + ki18n-devel + kio-devel + kwallet-devel + kconfig-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/applications/ktp-filetransfer-handler/pspec.xml + + + ktp-filetransfer-handler + KDE Telepathy file transfer handler + + kio + ki18n + kwallet + libgcc + kconfig + qt5-base + kcoreaddons + telepathy-qt5 + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-kded-module + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + mirrors://kde/stable/release-service/22.04.1/src/ktp-kded-module-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + kdbusaddons-devel + kwidgetsaddons-devel + kwallet-devel + kconfig-devel + kactivities-devel + ki18n-devel + kio-devel + knotifications-devel + kconfigwidgets-devel + kidletime-devel + kcmutils-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/applications/ktp-kded-module/pspec.xml + + + ktp-kded-module + Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors + + kio + ki18n + libgcc + kconfig + qt5-base + kidletime + kcoreaddons + kdbusaddons + telepathy-qt5 + kconfigwidgets + knotifications + kactivities + kwallet + ktp-common-internals + + + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/kservices5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-send-file + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + A File manager plugin to launch a file transfer job with a specified contact + A File manager plugin to launch a file transfer job with a specified contact + mirrors://kde/stable/release-service/22.04.1/src/ktp-send-file-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kcmutils-devel + kio-devel + kwallet-devel + kiconthemes-devel + ki18n-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + + desktop/kde/applications/ktp-send-file/pspec.xml + + + ktp-send-file + A File manager plugin to launch a file transfer job with a specified contact + + kio + ki18n + kwallet + libgcc + qt5-base + kcoreaddons + kiconthemes + telepathy-qt5 + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/share + /usr/share/kservices5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktp-text-ui + http://community.kde.org/Real-Time_Communication_and_Collaboration + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + desktop.kde.network + Telepathy handler for Text Chats + Telepathy handler for Text Chats + mirrors://kde/stable/release-service/22.04.1/src/ktp-text-ui-22.04.1.tar.xz + + extra-cmake-modules + karchive-devel + sonnet-devel + kwidgetsaddons-devel + kservice-devel + kemoticons-devel + kio-devel + kpeople-devel + kcmutils-devel + knotifyconfig-devel + knotifications-devel + ki18n-devel + kdewebkit-devel + kwindowsystem-devel + kxmlgui-devel + kitemviews-devel + ktextwidgets-devel + kiconthemes-devel + kdbusaddons-devel + ktp-common-internals-devel + telepathy-logger-qt-devel + telepathy-qt5-devel + ffmpeg-devel + libXScrnSaver-devel + qt5-speech-devel + qt5-location-devel + qt5-webkit-devel + qt5-base-devel + qt5-webengine-devel + + desktop/kde/applications/ktp-text-ui/pspec.xml + + + ktp-text-ui + Telepathy handler for Text Chats + + kio + ki18n + libgcc + sonnet + kconfig + kxmlgui + kpeople + karchive + kcmutils + kservice + qt5-base + qt5-speech + kdewebkit + kemoticons + kitemviews + qt5-webkit + qt5-webengine + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + knotifyconfig + kwindowsystem + telepathy-qt5 + kconfigwidgets + knotifications + kwidgetsaddons + ktp-common-internals + + + /usr/bin + /usr/lib + /usr/share + /usr/share/ktelepathy + /usr/share/ktp-log-viewer + /usr/share/kxmlgui5 + /usr/share/telepathy + /usr/share/dbus-1 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-18 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktuberling + http://kde.org/applications/games/ktuberling/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + A simple constructor game suitable for children and adults alike + KTuberling a simple constructor game suitable for children and adults alike. The idea of the game is based around a once popular doll making concept. + mirrors://kde/stable/release-service/22.04.1/src/ktuberling-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + qt5-multimedia-devel + kcoreaddons-devel + kconfig-devel + kitemmodels-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdbusaddons-devel + ki18n-devel + kconfigwidgets-devel + ktextwidgets-devel + kxmlgui-devel + kio-devel + knotifyconfig-devel + knewstuff-devel + kdelibs4-support-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + libkdegames-devel + + desktop/kde/applications/ktuberling/pspec.xml + + + ktuberling + A simple constructor game suitable for children and adults alike + + kio + ki18n + kcrash + libgcc + kconfig + kxmlgui + qt5-svg + qt5-base + qt5-multimedia + qt5-phonon + kcompletion + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + kdelibs4-support + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/ktuberling + /usr/share/metainfo + /usr/share/kxmlgui5 + /usr/share/doc + /usr/share/locale + /usr/share/qlogging-categories5 + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kturtle + http://edu.kde.org/applications/all/kturtle + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + An educational programming environment + Öğrenim amaçlı programlama ortamı + KTurtle is an educational programming environment that aims to make learning how to program as easily as possible. To achieve this KTurtle makes all programming tools available from the user interface. The programming language used is TurtleScript which allows its commands to be translated. + KTurtle, programlama öğrenmeyi olabildiğince kolaylaştırmak için tasarlanmış bir programlama uygulamasıdır. Bu amaçla tasarlanan arayüz tüm gerekli araçları kullanıcıya sunar. Ayrıca kullanılan programlama dili olan TurtleScript başka dillere çevrilebilen bir yapıya sahiptir. + kturtle + mirrors://kde/stable/release-service/22.04.1/src/kturtle-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + kdoctools-devel + knewstuff-devel + extra-cmake-modules + kio-devel + kcoreaddons-devel + ktextwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kxmlgui-devel + kconfig-devel + gettext-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/kturtle/pspec.xml + + + kturtle + + qt5-base + qt5-svg + ki18n + knewstuff + libgcc + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kxmlgui + kconfig + + + /etc/xdg + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwalletmanager + https://userbase.kde.org/KDE_Wallet_Manager + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + A wallet management tool + KWalletManager is a tool to manage the passwords on your system. By using the KDE wallet subsystem it not only allows you to keep your own secrets but also to access and manage the passwords of every application that integrates with the wallet. + kwallet + mirrors://kde/stable/release-service/22.04.1/src/kwalletmanager-22.04.1.tar.xz + + qt5-base + kdoctools-devel + cmake + extra-cmake-modules + kcoreaddons-devel + kauth-devel + kwallet-devel + kservice-devel + kcmutils-devel + karchive-devel + ki18n-devel + kxmlgui-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + mesa-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + ktextwidgets-devel + kiconthemes-devel + knotifications-devel + + desktop/kde/applications/kwalletmanager/pspec.xml + + + kwalletmanager + + qt5-base + kcmutils + kauth + ki18n + kio + kjobwidgets + libgcc + kcodecs + kconfig + kwallet + kxmlgui + karchive + kservice + kitemviews + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + + + /etc/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf + /etc/xdg + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/applications + /usr/share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy + /usr/share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwave + http://kwave.sourceforge.net/ + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.applications + A sound editor for KDE + With Kwave you can record, play back, import and edit many sorts of audio files including multi channel files.Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability. + http://download.kde.org/stable/release-service/22.04.1/src/kwave-22.04.1.tar.xz + + doxygen + extra-cmake-modules + kdoctools-devel + librsvg-devel + qt5-base-devel + qt5-multimedia-devel + kwidgetsaddons-devel + kxmlgui-devel + kio-devel + audiofile-devel + libsamplerate-devel + alsa-lib-devel + flac-devel + libopus-devel + libogg-devel + libvorbis-devel + fftw3-devel + id3lib-devel + libmad-devel + karchive-devel + ktextwidgets-devel + kiconthemes-devel + pulseaudio-libs-devel + + desktop/kde/applications/kwave/pspec.xml + + + kwave + A sound editor for KDE + + kio + flac + fftw3 + ki18n + id3lib + libmad + kcrash + karchive + libgcc + libogg + kconfig + kxmlgui + libopus + alsa-lib + kservice + qt5-base + audiofile + libvorbis + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + ktextwidgets + libsamplerate + kconfigwidgets + kwidgetsaddons + qt5-multimedia + pulseaudio-libs + + + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-17 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-09 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + libgravatar + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.applications + KDE PIM library providing Gravatar support + KDE PIM library providing Gravatar support + mirrors://kde/stable/release-service/22.04.1/src/libgravatar-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + pimcommon-devel + cmake + extra-cmake-modules + openldap-client + cyrus-sasl-devel + kitemviews-devel + kio-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcontacts-devel + kcalendarcore-devel + extra-cmake-modules + qt5-webkit-devel + grantlee-qt5-devel + kdoctools-devel + knewstuff-devel + kpimtextedit-devel + boost-devel + + desktop/kde/applications/libgravatar/pspec.xml + + + libgravatar + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kservice + kcoreaddons + pimcommon + ktextwidgets + kwidgetsaddons + grantlee-qt5 + + + /usr/lib + /usr/bin + /usr/share + /usr/share/icons + /etc + + + + libgravatar-devel + Development files for libgravatar + + libgravatar + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-25 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkcddb + https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.multimedia + KDE library for CDDB (Compact Disc Database) + CDDB için KDE kitaplığı (Compact Disc Database) + KDE library for CDDB (Compact Disc Database). + CDDB için KDE kitaplığı (Compact Disc Database). + mirrors://kde/stable/release-service/22.04.1/src/libkcddb-22.04.1.tar.xz + + extra-cmake-modules + musicbrainz5-devel + kdoctools-devel + kconfig-devel + kcodecs-devel + ki18n-devel + kio-devel + qt5-base-devel + kwidgetsaddons-devel + + desktop/kde/applications/libkcddb/pspec.xml + + + libkcddb + + kio + ki18n + libgcc + kcodecs + kconfig + qt5-base + kcoreaddons + musicbrainz5 + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/kservices5 + /usr/share/config.kcfg + /usr/lib + /usr/share/doc + /usr/include + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.11.80 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-09 + 16.08.1 + First release + Alihan Öztürkr + alihan@pisilinux.org + + + + + + libkcompactdisc + https://www.kde.org/applications/multimedia/ + + Stefan Gronewold + groni@pisilinux.org + + GPL + LGPL + FDL + library + desktop.kde.applications + A library for interfacing with CDs + A library for interfacing with CDs + mirrors://kde/stable/release-service/22.04.1/src/libkcompactdisc-22.04.1.tar.xz + + alsa-lib-devel + extra-cmake-modules + gettext-devel + glibc-devel + kcoreaddons-devel + ki18n-devel + qt5-base-devel + solid-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + qt5-phonon-devel + + desktop/kde/applications/libkcompactdisc/pspec.xml + + + libkcompactdisc + A library for interfacing with CDs + + alsa-lib + kcoreaddons + ki18n + qt5-base + libgcc + qt5-phonon + solid + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/share/locale + + + + libkcompactdisc-devel + Development files for libkcompactdisc + + libkcompactdisc + qt5-base-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.11.80 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-09 + 16.08.2_20161106 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + libkdcraw + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + A C++ interface around LibRaw library + LibRaw kitaplığı için C++ arayüzü + libkdcraw is a C++ interface around LibRaw library used to decode RAW picture files. + libkdcraw, RAW resim dosyalarını çözmek için kullanılan LibRaW kitaplığının C++ arayüzüdür. + mirrors://kde/stable/release-service/22.04.1/src/libkdcraw-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + libraw-devel + kconfig-devel + ki18n-devel + cmake + extra-cmake-modules + qca2-qt5-devel + + desktop/kde/applications/libkdcraw/pspec.xml + + + libkdcraw + + qt5-base + libraw + kconfig + ki18n + libgcc + + + /usr/lib + /usr/bin + /usr/share/icons + /usr/share/ + + + + libkdcraw-devel + Development files for libkdcraw + libkdcraw için geliştirme dosyaları + + libkdcraw + qt5-base-devel + libraw-devel + kconfig-devel + ki18n-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/apps/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-02-05 + 21.12.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkdegames + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.games + Common code and data for many KDE games + Common code and data for many KDE games + mirrors://kde/stable/release-service/22.04.1/src/libkdegames-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + kdnssd-devel + openal-devel + cmake + extra-cmake-modules + python3 + kdeclarative-devel + knewstuff-devel + kio-devel + ki18n-devel + libgcc + kconfig-devel + kxmlgui-devel + qt5-svg-devel + karchive-devel + kguiaddons-devel + libsndfile-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + kdesignerplugin + mesa-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kglobalaccel-devel + ktextwidgets-devel + kunitconversion-devel + + desktop/kde/applications/libkdegames/pspec.xml + + + libkdegames + + qt5-base + kdnssd + kdeclarative + knewstuff + kio + ki18n + libgcc + openal + kconfig + kxmlgui + qt5-svg + karchive + kguiaddons + libsndfile + kcompletion + kcoreaddons + kiconthemes + kglobalaccel + ktextwidgets + kconfigwidgets + kwidgetsaddons + qt5-declarative + + + /etc/xdg + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libkdegames-devel + Shared libraries for KDE games. + + libkdegames + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkdepim + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.applications + Libraries for KDE PIM applications + Libraries for KDE PIM applications + mirrors://kde/stable/release-service/22.04.1/src/libkdepim-22.04.1.tar.xz + + qt5-base-devel + qt5-designer-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + akonadi-devel + kjobwidgets-devel + kitemmodels-devel + kunitconversion-devel + kemoticons-devel + kinit-devel + solid-devel + cmake + extra-cmake-modules + boost-devel + kmime-devel + kcmutils-devel + kldap-devel + kio-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + cyrus-sasl-devel + kcontacts-devel + akonadi-contacts-devel + akonadi-search-devel + akonadi-mime-devel + + desktop/kde/applications/libkdepim/pspec.xml + + + libkdepim + + kio + ki18n + kldap + libgcc + akonadi + kcodecs + kconfig + kwallet + kcmutils + qt5-base + qt5-designer + kcontacts + kitemviews + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + akonadi-search + akonadi-contacts + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/bin + /usr/share + /usr/share/icons + /etc + + + + libkdepim-devel + Development files for libkdepim + + libkdepim + qt5-base-devel + qt5-designer-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-27 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-19 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + Rebuild + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-25 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkeduvocdocument + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.applications + Common libraries for KDE Edu applications + Libraries for KDE EDU applications. + mirrors://kde/stable/release-service/22.04.1/src/libkeduvocdocument-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + ki18n-devel + kio-devel + karchive-devel + mesa-devel + + desktop/kde/applications/libkeduvocdocument/pspec.xml + + + libkeduvocdocument + + qt5-base + karchive + libgcc + ki18n + kio + kcoreaddons + + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libkeduvocdocument-devel + Development files for libkeduvocdocument + + libkeduvocdocument + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkexiv2 + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + An Exiv2 wrapper library + Exiv2 sarmalayıcı kitaplığı + libkexiv2 is a wrapper around Exiv2 library to manipulate pictures metadata as EXIF/IPTC and XMP. + libkexiv2, EXIF/IPTC ve XMP gibi resim meta bilgilerini düzenlemek için kullanılan Exiv2 kitaplığını sarmalayan bir kitaplıktır. + mirrors://kde/stable/release-service/22.04.1/src/libkexiv2-22.04.1.tar.xz + + extra-cmake-modules + cmake + exiv2-devel + qt5-base-devel + + desktop/kde/applications/libkexiv2/pspec.xml + + + libkexiv2 + + qt5-base + exiv2-libs + libgcc + + + /usr/lib + /usr/bin + /usr/share/qlogging-categories5/libkexiv2.categories + + + + libkexiv2-devel + Development files for libkexiv2 + libkexiv2 için geliştirme dosyaları + + libkexiv2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 17.08.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkgapi + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + Google API library for KDE + A KDE-based library for accessing various Google services via their public API + https://download.kde.org/stable/release-service/22.04.1/src/libkgapi-22.04.1.tar.xz + + qt5-base-devel + kcoreaddons-devel + libical-devel + gettext-devel + qt5-xmlpatterns-devel + extra-cmake-modules + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcontacts-devel + kwindowsystem-devel + kio-devel + kcalendarcore-devel + kdoctools-devel + qt5-linguist + qt5-location-devel + qt5-webengine-devel + ffmpeg-devel + libXScrnSaver-devel + cyrus-sasl-devel + kwallet-devel + + desktop/kde/applications/libkgapi/pspec.xml + + + libkgapi + + qt5-base + kcalendarcore + kcontacts + kio + libgcc + kwallet + kwindowsystem + qt5-webengine + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libkgapi-devel + Development files for libkgapi + + qt5-base-devel + kcalendarcore-devel + kcontacts-devel + kio-devel + kwindowsystem-devel + libkgapi + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-17 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-10-12 + 5.3.1 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-23 + 5.1.0 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-11-26 + 5.1.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkgeomap + https://www.kde.org/applications/graphics/ + + Alihan Öztürk + alihan@pisilinux.org + + FDL-1.1 + GPLv2 + LGPLv2 + app:gui + desktop.kde.graphics + A wrapper around world map components for browsing and arranging photos on a map. + A wrapper around world map components for browsing and arranging photos on a map. + mirrors://kde/stable/release-service/20.08.3/src/libkgeomap-20.08.3.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-webkit-devel + qt5-webengine-devel + ki18n-devel + kconfig-devel + kio-devel + ktextwidgets-devel + marble-devel + + desktop/kde/applications/libkgeomap/pspec.xml + + + libkgeomap + A wrapper around world map components for browsing and arranging photos on a map. + + kio + ki18n + libgcc + marble + kconfig + qt5-base + qt5-webkit + kcoreaddons + + + /usr/lib + /usr/share/libkgeomap + /usr/share/doc + /usr/share/locale + + + + libkgeomap-devel + Developments files for libkgeomap. + + libkgeomap + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-09 + 16.04.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkipi + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + Common plugin infrastructure for KDE image applications + KDE resim uygulamaları için ortak eklenti yapısı + Kipi (KDE Image Plugin Interface) is an effort to develop a common plugin structure (for Digikam, Gwenview, etc.). Its aim is to share image plugins among graphic applications. + Kipi, ortak bir eklenti yapısı ortaya koymak için gerekli bir kitaplıktır. + mirrors://kde/stable/release-service/22.04.1/src/libkipi-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + cmake + extra-cmake-modules + + desktop/kde/applications/libkipi/pspec.xml + + + libkipi + + qt5-base + kxmlgui + ki18n + libgcc + kconfig + kservice + kcoreaddons + + + /usr/lib + /usr/bin + /usr/share + /usr/share/icons + + + + libkipi-devel + Development files for libkipi + libkipi için geliştirme dosyaları + + libkipi + qt5-base-devel + kxmlgui-devel + ki18n-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-09 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkleo + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.applications + KDE PIM cryptographic library + KDE PIM cryptographic library + mirrors://kde/stable/release-service/22.04.1/src/libkleo-22.04.1.tar.xz + + qt5-base-devel + boost-devel + gpgme-qt5-devel + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + prison-devel + qt5-phonon-devel + libical-devel + libqjson-devel + libgpg-error-devel + libxslt-devel + openldap-client + cyrus-sasl-devel + kitemviews-devel + kio-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kcontacts-devel + kcalendarcore-devel + extra-cmake-modules + kpimtextedit-devel + grantlee-qt5-devel + + desktop/kde/applications/libkleo/pspec.xml + + + libkleo + + qt5-base + kio + ki18n + libgcc + kcodecs + kxmlgui + kcalendarcore + kcontacts + kconfig + libxml2 + kservice + kguiaddons + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + ktextwidgets + kconfigwidgets + kwidgetsaddons + qt5-phonon + prison + gpgme + gpgme-qt5 + kpimtextedit + kwindowsystem + cyrus-sasl + grantlee-qt5 + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/mkspecs/ + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/dbus-1 + /usr/share/config.kcfg + /usr/share/kf5 + /usr/share/config + /usr/share/akonadi + /usr/share/akonadicontact/grantleetheme/default + /usr/share/libkleopatra + /usr/share/locale + /usr/share/qlogging-categories5/libkleo.renamecategories + /usr/share/qlogging-categories5/libkleo.categories + + + + libkleo-devel + Development package for libkleo libraries + Contains development tools and header files for libkleo + + qt5-base-devel + boost-devel + gpgme-devel + gpgme-qt5-devel + libkleo + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-12 + 17.12.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-25 + 16.04.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkmahjongg + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.kde.games + Common code, backgrounds and tile sets for games using Mahjongg tiles + Common code, backgrounds and tile sets for games using Mahjongg tiles. + mirrors://kde/stable/release-service/22.04.1/src/libkmahjongg-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + extra-cmake-modules + gettext-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcoreaddons-devel + mesa-devel + + desktop/kde/applications/libkmahjongg/pspec.xml + + + libkmahjongg + + qt5-base + qt5-svg + libgcc + ki18n + kconfig + kcompletion + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + libkmahjongg-devel + Development files for libkmahjongg + + libkmahjongg + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libkomparediff2 + https://projects.kde.org/projects/kde/kdesdk/libkomparediff2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.sdk + Library to compare files and strings + Library to compare files and strings + mirrors://kde/stable/release-service/22.04.1/src/libkomparediff2-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + python3-devel + gettext-devel + kcoreaddons-devel + kcodecs-devel + kconfig-devel + kxmlgui-devel + ki18n-devel + kio-devel + kparts-devel + + desktop/kde/applications/libkomparediff2/pspec.xml + + + libkomparediff2 + + qt5-base + kio + ki18n + libgcc + kcodecs + kconfig + kxmlgui + kcoreaddons + kconfigwidgets + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + libkomparediff2-devel + Shared libraries for libkomparediff2. + + libkomparediff2 + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-05-08 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libksane + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + SANE library interface for KDE + KDE için SANE kitaplık arayüzü + libksane is a SANE library interface for KDE. + libksane, KDE için bir SANE kitaplık arayüzüdür. + mirrors://kde/stable/release-service/22.04.1/src/libksane-22.04.1.tar.xz + + ki18n-devel + kwallet-devel + qt5-base-devel + ktextwidgets-devel + sane-backends-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/applications/libksane/pspec.xml + + + libksane + + ki18n + kwallet + libgcc + qt5-base + ktextwidgets + sane-backends + kwidgetsaddons + + + /usr/lib + /usr/share/icons + /usr/share/locale + + + + libksane-devel + Development files for libksane + libksane için geliştirme dosyaları + + libksane + + + /usr/lib/cmake + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-10 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libksieve + https://community.kde.org/KDE_PIM + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.applications + KDE PIM library for managing sieves. + KDE PIM library for managing sieves. + mirrors://kde/stable/release-service/22.04.1/src/libksieve-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + akonadi-devel + kcompletion-devel + kjobwidgets-devel + kcoreaddons-devel + kservice-devel + solid-devel + kxmlgui-devel + kitemmodels-devel + kdoctools-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + boost-devel + qt5-webkit-devel + pimcommon-devel + kcontacts-devel + kcalendarcore-devel + kimap-devel + kmime-devel + cyrus-sasl-devel + knewstuff-devel + kidentitymanagement-devel + kmailtransport-devel + libkdepim-devel + qt5-webengine-devel + akonadi-contacts-devel + akonadi-mime-devel + kiconthemes-devel + karchive-devel + syntax-highlighting-devel + + desktop/kde/applications/libksieve/pspec.xml + + + libksieve + KDE PIM library for managing sieves. + + kio + ki18n + kmime + libgcc + sonnet + akonadi + kconfig + karchive + qt5-base + knewstuff + libkdepim + pimcommon + cyrus-sasl + qt5-webkit + kcompletion + kcoreaddons + kiconthemes + kpimtextedit + kwindowsystem + kconfigwidgets + kwidgetsaddons + kidentitymanagement + syntax-highlighting + qt5-webengine + + + /etc + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/sieve + /usr/share/doc/HTML + /usr/share/kservices5 + /usr/share/locale + + + + libksieve-devel + Development files for libksieve. + + libksieve + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-07 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-22 + 16.04.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libkvkontakte + https://www.digikam.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPL + library + desktop.kde.applications + C++ library for asynchronous interaction with VK social network via its web API + C++ library for asynchronous interaction with VK social network via its web API + https://sourceforge.net/projects/pisilinux/files/source/libkvkontakte-5.0.0_20161106.tar.gz + + extra-cmake-modules + gettext-devel + glibc-devel + kcoreaddons-devel + kdewebkit-devel + ki18n-devel + kio-devel + qt5-base-devel + qt5-webkit-devel + kwidgetsaddons-devel + + desktop/kde/applications/libkvkontakte/pspec.xml + + + libkvkontakte + C++ library for asynchronous interaction with VK social network via its web API + + kcoreaddons + kdewebkit + ki18n + kio + qt5-base + qt5-webkit + kwidgetsaddons + libgcc + + + /usr/lib + /usr/share/doc + + + + libkvkontakte-devel + Development files for libkvkontakte + + libkvkontakte + qt5-base-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-09-15 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-18 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-12 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-12 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-09-14 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-11-09 + 5.0.0_20161106 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + libmediawiki + https://github.com/KDE/libmediawiki + + Stefan Gronewold + groni@pisilinux.org + + GPL + library + desktop.kde.applications + A KDE C++ interface for MediaWiki based web service as wikipedia.org + A KDE C++ interface for MediaWiki based web service as wikipedia.org + https://github.com/KDE/libmediawiki/archive/refs/heads/master.zip + + extra-cmake-modules + kcoreaddons-devel + qt5-base-devel + + desktop/kde/applications/libmediawiki/pspec.xml + + + libmediawiki + A KDE C++ interface for MediaWiki based web service as wikipedia.org + + kcoreaddons + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + libmediawiki-devel + Development files for libmediawiki + + libmediawiki + qt5-base-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-07 + 5.37.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 5.37.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-10-29 + 5.37.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-06-16 + 5.0.0_20161106 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 5.0.0_20161106 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 5.0.0_20161106 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-09-15 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-18 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-12 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-12 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 5.0.0_20161106 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-09-14 + 5.0.0_20161106 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-11-09 + 5.0.0_20161106 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + mailcommon + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + KDE PIM library providing support for mail applications + KDE PIM library providing support for mail applications + mirrors://kde/stable/release-service/22.04.1/src/mailcommon-22.04.1.tar.xz + + qt5-base-devel + qt5-phonon-devel + extra-cmake-modules + boost-devel + glibc-devel + libical-devel + gettext-devel + qt5-designer-devel + kdoctools-devel + mailimporter-devel + messagelib-devel + libgravatar-devel + kidentitymanagement-devel + kmailtransport-devel + kmbox-devel + akonadi-devel + kjobwidgets-devel + solid-devel + kitemmodels-devel + qt5-webkit-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalendarcore-devel + kdewebkit-devel + kpimtextedit-devel + kimap-devel + kldap-devel + grantleetheme-devel + pimcommon-devel + libkleo-devel + libkdepim-devel + gpgme-devel + gpgme-qt5-devel + akonadi-mime-devel + akonadi-contacts-devel + grantlee-qt5-devel + openldap-client + cyrus-sasl-devel + syntax-highlighting-devel + karchive-devel + kguiaddons-devel + + desktop/kde/applications/mailcommon/pspec.xml + + + mailcommon + + qt5-base + akonadi-contacts + libgcc + libkdepim + akonadi-mime + mailimporter + kio + ki18n + kmime + akonadi + kcodecs + kconfig + kxmlgui + karchive + kcontacts + pimcommon + kitemviews + messagelib + qt5-phonon + kguiaddons + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kpimtextedit + ktextwidgets + kwindowsystem + kconfigwidgets + kmailtransport + kwidgetsaddons + kidentitymanagement + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + mailcommon-devel + Development files for mailcommon + + mailcommon + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + mailimporter + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + Mail importer library + Mail importer library + mirrors://kde/stable/release-service/22.04.1/src/mailimporter-22.04.1.tar.xz + + qt5-base-devel + kdoctools-devel + ki18n-devel + kconfig-devel + kservice-devel + kxmlgui-devel + pimcommon-devel + cmake + extra-cmake-modules + openldap-client + cyrus-sasl-devel + kitemviews-devel + kio-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalendarcore-devel + kldap-devel + libkdepim-devel + akonadi-calendar-devel + akonadi-search-devel + qt5-webkit-devel + grantlee-qt5-devel + knewstuff-devel + kpimtextedit-devel + kimap-devel + akonadi-devel + boost-devel + karchive-devel + akonadi-mime-devel + akonadi-contacts-devel + + desktop/kde/applications/mailimporter/pspec.xml + + + mailimporter + + qt5-base + akonadi-mime + libgcc + libkdepim + ki18n + kmime + akonadi + kconfig + karchive + kcoreaddons + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + mailimporter-devel + Development files for mailimporter + + mailimporter + karchive-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-26 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-08 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + marble + http://edu.kde.org/applications/all/marble + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.applications + Virtual globe and eorld atlas + Sanal küre ve Dünya atlası + Marble is a virtual globe and world atlas that you can use to learn more about the Earth. + Marble, sanal küre ve Dünya atlası uygulamasıdır. + marble + mirrors://kde/stable/release-service/22.04.1/src/marble-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-webkit-devel + qt5-designer-devel + qt5-script-devel + qt5-svg-devel + qt5-declarative-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-sqlite + qt5-location-devel + qt5-linguist + qt5-webengine-devel + kdoctools-devel + qt5-phonon-devel + kio-devel + quazip-devel + kwallet-devel + knewstuff-devel + kparts-devel + kcoreaddons-devel + ki18n-devel + kconfig-devel + krunner-devel + kservice-devel + libwlocate-devel + shared-mime-info + qt5-serialport-devel + plasma-desktop + + desktop/kde/applications/marble/pspec.xml + + + marble + + kio + zlib + ki18n + kcrash + kparts + libgcc + kconfig + krunner + kxmlgui + qt5-svg + qt5-base + knewstuff + libwlocate + qt5-phonon + qt5-script + qt5-webkit + kcoreaddons + qt5-location + kconfigwidgets + kwidgetsaddons + qt5-declarative + qt5-serialport + + + /usr/lib + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/config.kcfg + /usr/share/doc + /usr/share/icons + /usr/share/kservices5 + /usr/share/kxmlgui5 + /usr/share/marble + /etc/xdg + + + + marble-devel + Development files for marble + marble için geliştirme dosyaları + + marble + + + /usr/include + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-18 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-08-03 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-28 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + messagelib + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:library + desktop.kde.applications + KDE PIM library providing support for mail applications + KDE PIM library providing support for mail applications + mirrors://kde/stable/release-service/22.04.1/src/messagelib-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + boost-devel + kdoctools-devel + mailimporter-devel + libgravatar-devel + kidentitymanagement-devel + kmailtransport-devel + kmbox-devel + akonadi-devel + solid-devel + kguiaddons-devel + kitemmodels-devel + qt5-webkit-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalendarcore-devel + kdewebkit-devel + akonadi-calendar-devel + akonadi-search-devel + syntax-highlighting-devel + kpimtextedit-devel + kimap-devel + kldap-devel + grantleetheme-devel + pimcommon-devel + libkleo-devel + libkdepim-devel + gpgme-devel + gpgme-qt5-devel + grantlee-qt5-devel + qt5-declarative-devel + qt5-webengine-devel + qca2-qt5-devel + akonadi-notes-devel + akonadi-mime-devel + akonadi-contacts-devel + openldap-client + cyrus-sasl-devel + karchive-devel + kcodecs-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + kjobwidgets-devel + kservice-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + sonnet-devel + knewstuff-devel + syntax-highlighting + knotifications-devel + + desktop/kde/applications/messagelib/pspec.xml + + + messagelib + + qt5-base + qt5-webengine + akonadi-notes + libgcc + libkdepim + mailimporter + kio + ki18n + kmbox + kmime + sonnet + akonadi + gpgme + kcodecs + kconfig + kxmlgui + libkleo + karchive + kguiaddons + kcalendarcore + kservice + kcontacts + kdewebkit + pimcommon + akonadi-mime + kitemviews + qt5-webkit + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + libgravatar + grantlee-qt5 + kpimtextedit + ktextwidgets + grantleetheme + kwindowsystem + akonadi-search + kconfigwidgets + kmailtransport + knotifications + kwidgetsaddons + syntax-highlighting + akonadi-contacts + knewstuff + kidentitymanagement + qca2-qt5 + knotifications + + + /etc + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + messagelib-devel + Development files for messagelib + + messagelib + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-26 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + minuet + https://minuet.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.applications + A KDE Software for Music Education + Music education Free Software, thoughtfully designed to push your musical skills to the next level. Enhance your ability to recognize intervals, chords, rhythm, and scales while enjoying all the power of Free Software. + https://download.kde.org/stable/release-service/22.04.1/src/minuet-22.04.1.tar.xz + + extra-cmake-modules + qt5-svg-devel + qt5-base-devel + qt5-quickcontrols2-devel + qt5-declarative-devel + ki18n-devel + kxmlgui-devel + kio-devel + kcrash-devel + kdoctools-devel + alsa-lib-devel + drumstick-devel + fluidsynth-devel + + desktop/kde/applications/minuet/pspec.xml + + + minuet + A KDE Software for Music Education + + kio + ki18n + kcrash + libgcc + kconfig + kxmlgui + alsa-lib + qt5-base + kcompletion + kcoreaddons + drumstick-libs + kconfigwidgets + kwidgetsaddons + fluidsynth + qt5-svg + qt5-declarative + + + /usr/bin + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/doc + /usr/share/icons + /usr/share/kxmlgui5 + /usr/share/minuet + /usr/lib + + + + minuet-devel + Development files for minuet + + qt5-base-devel + minuet + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 17.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-26 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-04-20 + 16.04 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + okteta + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.sdk + Hexadecimal editor for binary files + Onaltılık dosya editörü. + Okteta is a simple editor for the raw data of files. This type of program is also called hexadecimal editor or binary editor. + Çalıştırılabilir dosyaları düzenlemeye yarayan editör. + https://download.kde.org/stable/okteta/0.26.7/src/okteta-0.26.7.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-designer-devel + qt5-script-devel + qt5-declarative-devel + kbookmarks-devel + kcodecs-devel + kcompletion-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + kiconthemes-devel + ki18n-devel + kcmutils-devel + kio-devel + knewstuff-devel + kparts-devel + kservice-devel + kwidgetsaddons-devel + kxmlgui-devel + qca2-qt5-devel + attica-devel + qt5-xmlpatterns-devel + + desktop/kde/applications/okteta/pspec.xml + + + okteta + + kio + ki18n + kparts + kcrash + kcodecs + kconfig + kxmlgui + kcmutils + kservice + qca2-qt5 + qt5-base + knewstuff + qt5-script + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + kconfigwidgets + kwidgetsaddons + + + /etc/xdg + /usr/bin + /usr/lib/plugins + /usr/lib + /usr/lib/*.so + /usr/lib/*.so.* + /usr/share + /usr/share/appdata + /usr/share/applications + /usr/share/config.kcfg + /usr/share/doc + /usr/share/icons + /usr/share/kxmlgui5 + /usr/share/mime + /usr/share/okteta + /usr/share/metainfo/org.kde.okteta.appdata.xml + /usr/share/locale + + + + okteta-devel + Development files for okteta + + okteta + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-17 + 0.26.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 0.26.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 0.26.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 0.26.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 0.26.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 0.26.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 0.26.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 0.26.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 0.26.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 0.26.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 0.26.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 0.26.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-20 + 0.26.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 0.26.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 0.26.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 0.26.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 0.26.1 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 0.26.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-12 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-12 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 17.12.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-04-25 + 17.12.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + okular + http://okular.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.graphics + A document viewer + Belge gösterici + Okular is a document viewer. + Okular bir belge göstericidir. + okular + mirrors://kde/stable/release-service/22.04.1/src/okular-22.04.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + kjs-devel + qca2-qt5-devel + tiff-devel + purpose-devel + qt5-phonon-devel + qt5-speech-devel + poppler-qt5-devel + ebook-tools-devel + libkexiv2-devel + kdoctools-devel + threadweaver-devel + kdesignerplugin + khtml-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kactivities-devel + libkscreen-devel + chmlib-devel + kjobwidgets-devel + libspectre-devel + djvu-devel + kpty-devel + kdegraphics-mobipocket-devel + extra-cmake-modules + kirigami-devel + libzip-devel + discount-devel + freetype-devel + qt5-svg-devel + karchive-devel + kwallet-devel + + desktop/kde/applications/okular/pspec.xml + + + okular + app:gui + + qt5-base + qca2-qt5 + tiff + kcrash + libkexiv2 + poppler-qt5 + ebook-tools + libzip + discount + kactivities + libjpeg-turbo + purpose + khtml + kpty + kio + kjs + zlib + ki18n + kparts + libgcc + kcodecs + kconfig + kwallet + kxmlgui + qt5-svg + freetype + karchive + kservice + kbookmarks + kitemviews + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + threadweaver + kwindowsystem + kconfigwidgets + kwidgetsaddons + qt5-declarative + djvu + libspectre + qt5-phonon + chmlib + kjobwidgets + qt5-speech + kdegraphics-mobipocket + qt5-svg + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share + + + + okular-devel + Development files for okular + Okular için geliştirme dosyaları + + okular + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-24 + 17.12.0 + Version bump.okular + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-14 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 17.08.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-24 + 17.04.3 + Version bump. + mustafa cinasal + muscnsl@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-30 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-04 + 16.11.90 + Release bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-24 + 16.03.80_20160402 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-02-02 + 16.03.80_20160402 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + parley + http://edu.kde.org/applications/all/parley + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.edu + Parley is a program to help you memorize things. + Tekrar yapmanıza yardım eden bir uygulama + Parley is a program to help you memorize things. Parley supports many language specific features but can be used for other learning tasks just as well. It uses the spaced repetition learning method, also known as flash cards. Creating new vocabulary collections with Parley is easy, but of course it is even better if you can use some of our premade files. Have a look at the KDE-Files.org page or use the "Download New Collections" feature directly in Parley. + Parley ile yeni öğrendiğiniz şeyleri belli zaman aralıklarıyla tekrar ederek uzun zamanlı hafızanızda yer etmelerini sağlayabilirsiniz. Parley, flaş kart denilen tekniği kullanır. Dil öğrenimi için özelleşmiş yetenekleri olmasına karşın diğer konularda da kullanıma uygundur. Kartları hazırlamak epey kolay olmakla beraber kde-files.org adresinden ulaşabileceğiniz hazır kart setlerini de kullanabilirsiniz. + parley + mirrors://kde/stable/release-service/22.04.1/src/parley-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-multimedia-devel + qt5-webengine-devel + libxslt-devel + libXrender-devel + libxml2-devel + libkeduvocdocument-devel + kdoctools-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + gettext-devel + ki18n-devel + kio-devel + knewstuff-devel + kross-devel + kcmutils-devel + kxmlgui-devel + sonnet-devel + kservice-devel + ktextwidgets-devel + kcompletion-devel + kconfigwidgets-devel + kwidgetsaddons-devel + knotifications-devel + khtml-devel + extra-cmake-modules + ffmpeg-devel + libXScrnSaver-devel + + desktop/kde/applications/parley/pspec.xml + + + parley + + qt5-base + qt5-svg + qt5-multimedia + qt5-webengine + libxslt + libXrender + libxml2 + libkeduvocdocument + kdoctools + kcoreaddons + kconfig + kcrash + gettext + ki18n + kio + knewstuff + kross + kcmutils + kxmlgui + knotifications + sonnet + kservice + libgcc + ktextwidgets + kcompletion + kconfigwidgets + kwidgetsaddons + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + /etc/xdg + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + partitionmanager + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.applications + KDE Partition Manager is a utility program to help you manage the disk devices, partitions and file systems on your computer + KDE Disk Bölümü Yöneticisi + It allows you to easily create, copy, move, delete, resize without losing data, backup and restore partitions.. + KDE Disk Bölümü Yöneticisi, disklerinizi, bölümlerinizi ve dosya sistemlerinizi yönetmenize izin verir. Birçok dosya sistemini (ext2/3/4, reiserfs, NTFS, FAT32 ve daha fazlası) desteklemenin yanı sıra, yeni bölüm oluşturabilir ya da var olan bir bölüm üzerinde boyutlandırma, kopyalama, taşıma, yedekleme ve geri yükleme işlemlerini yapabilir. + mirrors://kde/stable/release-service/22.04.1/src/partitionmanager-22.04.1.tar.xz + + qt5-base-devel + libatasmart-devel + extra-cmake-modules + parted-devel + libutil-linux-devel + ki18n-devel + kio-devel + kconfig-devel + kxmlgui-devel + kservice-devel + kcoreaddons-devel + kiconthemes-devel + kjobwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kdoctools-devel + kpmcore-devel + e2fsprogs-devel + kdbusaddons-devel + polkit-qt-devel + elogind-devel + + desktop/kde/applications/partitionmanager/pspec.xml + + + partitionmanager + + qt5-base + libgcc + libutil-linux + kio + ki18n + kconfig + kxmlgui + kservice + kcoreaddons + kiconthemes + kjobwidgets + kconfigwidgets + kwidgetsaddons + kpmcore + kcrash + e2fsprogs + kdbusaddons + polkit-qt + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 4.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 4.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 4.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 4.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 4.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-07-22 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-18 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-03-11 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-14 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-26 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-08 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 3.3.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-03 + 3.3.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-19 + 3.3.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-09 + 3.2.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 3.1.0 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-23 + 3.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-15 + 2.2.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-12 + 2.2.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-23 + 2.1.0 + Release bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-01-17 + 2.1.0 + First Release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + picmi + http://games.kde.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.games + Picmi is a single player logic-based puzzle game + Resim çizme bulmacası + Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. + Picmi, tablonun kenarında verilen sayılar kadar tabla üzerinde nokta koyarak bir resim tamamlama bulmacasıdır. + https://download.kde.org/stable/release-service/22.04.1/src/picmi-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel + kdoctools-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kio-devel + knewstuff-devel + kxmlgui-devel + libkdegames-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + + desktop/kde/applications/picmi/pspec.xml + + + picmi + picmi + + ki18n + libgcc + kxmlgui + qt5-svg + qt5-base + kcoreaddons + kdbusaddons + libkdegames + kconfigwidgets + kwidgetsaddons + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 3.1.0 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + pim-data-exporter + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Import and export KDE PIM settings + Import and export KDE PIM settings + https://download.kde.org/stable/release-service/22.04.1/src/pim-data-exporter-22.04.1.tar.xz + + extra-cmake-modules + kcrash-devel + kdbusaddons-devel + kdoctools-devel + akonadi-contacts-devel + akonadi-devel + akonadi-mime-devel + calendarsupport-devel + kalarm + kcalendarcore-devel + kcontacts-devel + kmailtransport-devel + kpimtextedit-devel + qt5-base-devel + ktextwidgets-devel + kxmlgui-devel + kitemmodels-devel + boost-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kmime-devel + kidentitymanagement-devel + akonadi-calendar-devel + kholidays-devel + mailcommon-devel + messagelib-devel + pimcommon-devel + kimap-devel + cyrus-sasl-devel + libkleo-devel + gpgme-devel + gpgme-qt5-devel + libkdepim-devel + ffmpeg-devel + karchive-devel + akonadi-notes-devel + libXScrnSaver-devel + knotifications-devel + kuserfeedback-devel + + desktop/kde/applications/pim-data-exporter/pspec.xml + + + pim-data-exporter + Import and export KDE PIM settings + + kio + ki18n + kmime + kcrash + libgcc + akonadi + kconfig + kxmlgui + karchive + qt5-base + kalarm + kcontacts + libkdepim + pimcommon + kitemviews + mailcommon + messagelib + kcoreaddons + kdbusaddons + kpimtextedit + kconfigwidgets + kmailtransport + knotifications + kwidgetsaddons + kidentitymanagement + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 3.1.0 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-05 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + pim-sieve-editor + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + Mail sieve editor + Mail sieve editor + https://download.kde.org/stable/release-service/22.04.1/src/pim-sieve-editor-22.04.1.tar.xz + + extra-cmake-modules + kbookmarks-devel + kcrash-devel + kdbusaddons-devel + kdoctools-devel + kiconthemes-devel + kio-devel + kmailtransport-devel + kpimtextedit-devel + messagelib-devel + pimcommon-devel + qt5-base-devel + akonadi-mime-devel + akonadi-devel + kitemmodels-devel + kmime-devel + cyrus-sasl-devel + kcontacts-devel + akonadi-contacts-devel + kimap-devel + libksieve-devel + ffmpeg-devel + kuserfeedback-devel + libXScrnSaver-devel + qt5-keychain-devel + + desktop/kde/applications/pim-sieve-editor/pspec.xml + + + pim-sieve-editor + Mail sieve editor + + ki18n + kcrash + libgcc + kconfig + kwallet + kxmlgui + qt5-base + libksieve + pimcommon + kbookmarks + kcoreaddons + kdbusaddons + kiconthemes + kconfigwidgets + kwidgetsaddons + qt5-keychain + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 3.1.0 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-04 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + pim-storage-service-manager + https://community.kde.org/KDE_PIM + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + desktop.kde.applications + KDE PIM storage services configuration UI + KDE PIM storage services configuration UI + mirrors://kde/stable/applications/16.12.0/src/pim-storage-service-manager-16.12.0.tar.xz + + extra-cmake-modules + kcrash-devel + kdbusaddons-devel + kdoctools-devel + akonadi-contacts-devel + akonadi-devel + akonadi-mime-devel + calendarsupport-devel + kalarm + kcalendarcore-devel + kcontacts-devel + kmailtransport-devel + kpimtextedit-devel + libkdepim + qt5-base-devel + ktextwidgets-devel + kxmlgui-devel + kitemmodels-devel + boost-devel + kemoticons-devel + kinit-devel + kunitconversion-devel + kmime-devel + kidentitymanagement-devel + akonadi-calendar-devel + kholidays-devel + mailcommon-devel + messagelib-devel + pimcommon-devel + kimap-devel + cyrus-sasl-devel + libkleo-devel + gpgme-devel + libkdepim-devel + knotifyconfig-devel + knotifications-devel + + desktop/kde/applications/pim-storage-service-manager/pspec.xml + + + pim-storage-service-manager + KDE PIM storage services configuration UI + + ki18n + kcrash + libgcc + kconfig + kxmlgui + qt5-base + libkdepim + pimcommon + kcoreaddons + kdbusaddons + kpimtextedit + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + knotifications + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2020-02-02 + 16.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 16.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 16.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 16.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 16.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-11 + 16.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 16.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-18 + 16.12.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-01-04 + 16.12.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + pimcommon + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.applications + Common libraries for KDE PIM + Common libraries for KDE PIM + mirrors://kde/stable/release-service/22.04.1/src/pimcommon-22.04.1.tar.xz + + qt5-base-devel + boost-devel + gpgme-devel + qt5-sql-sqlite + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + prison-devel + kmbox-devel + qt5-phonon-devel + akonadi-devel + libical-devel + libqjson-devel + libgpg-error-devel + libxslt-devel + openldap-client + cyrus-sasl-devel + kitemviews-devel + kio-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kmime-devel + kcontacts-devel + kcalendarcore-devel + kldap-devel + libkdepim-devel + extra-cmake-modules + akonadi-calendar-devel + akonadi-contacts-devel + akonadi-search-devel + akonadi-mime-devel + qt5-webkit-devel + qt5-webengine-devel + grantlee-qt5-devel + kdoctools-devel + knewstuff-devel + kpimtextedit-devel + kimap-devel + purpose-devel + + desktop/kde/applications/pimcommon/pspec.xml + + + pimcommon + + qt5-base + kio + ki18n + libgcc + kcodecs + kmime + kldap + kxmlgui + kwallet + karchive + kjobwidgets + qt5-webengine + kcalendarcore + kcontacts + kconfig + libxml2 + kservice + kguiaddons + kitemviews + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kitemmodels + ktextwidgets + kconfigwidgets + kwidgetsaddons + qt5-phonon + prison + akonadi + libkdepim + akonadi-contacts + kdoctools + knewstuff + kpimtextedit + grantlee-qt5 + kimap + cyrus-sasl + purpose + + + /etc/xdg + /usr/lib + /usr/share/doc + /usr/mkspecs/ + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/dbus-1 + /usr/share/config.kcfg + /usr/share/kf5 + /usr/share/config + /usr/share/akonadi + /usr/share/akonadicontact/grantleetheme/default + /usr/share/locale + /usr/share + + + + pimcommon-devel + Development package for pimcommon libraries + Contains development tools and header files for kdepim-common + + qt5-base-devel + boost-devel + pimcommon + + + /usr/lib/cmake + /usr/include + /usr/lib/gpgmepp + /usr/share/kde4/apps/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-26 + 17.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-25 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-22 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-25 + 16.04.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + poxml + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.sdk + Tools for translating DocBook XML files with Gettex + DocBook XML dosyalarını çevirme araçları. + This is a collection of tools that facilitate translating DocBook XML files using Gettext message files (PO files). + poxml, DocBook XML dosyalarını (.po) Gettext yarımıyla çevirmeyi sağlayan bir programdır. + https://download.kde.org/stable/release-service/22.04.1/src/poxml-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + gettext-devel + kdoctools-devel + docbook-xsl + + desktop/kde/applications/poxml/pspec.xml + + + poxml + + libgcc + gettext + qt5-base + + + /usr/bin + /usr/share/doc + /usr/share/man + + + kdesdk + + + kdesdk + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + print-manager + http://www.kde.org/applications/graphics/kruler + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.kde.utils + KDE print manager + KDE print tool. + print-manager + mirrors://kde/stable/release-service/22.04.1/src/print-manager-22.04.1.tar.xz + + kdoctools-devel + extra-cmake-modules + cups-devel + kio-devel + ki18n-devel + libgcc + kconfig-devel + kservice-devel + qt5-base-devel + kdbusaddons-devel + kiconthemes-devel + kcoreaddons-devel + kwindowsystem-devel + knotifications-devel + kconfigwidgets-devel + kwidgetsaddons-devel + qt5-declarative-devel + kcmutils-devel + plasma-framework-devel + + desktop/kde/applications/print-manager/pspec.xml + + + print-manager + + kio + cups + ki18n + libgcc + kconfig + kservice + qt5-base + kdbusaddons + kiconthemes + kcoreaddons + kwindowsystem + knotifications + kconfigwidgets + kwidgetsaddons + qt5-declarative + system-config-printer + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-12 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + rocs + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.edu + Rocs Graph Theory + Rocs aims to be a Graph Theory IDE for helping professors to show the results of a graph algorithm and also helping students to do the algorithms. Rocs has a scripting module, done in Qt Script, that interacts with the drawn graph and every change in the graph with the script is reflected on the drawn one.. + mirrors://kde/stable/release-service/22.04.1/src/rocs-22.04.1.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-webkit-devel + qt5-base-devel + qt5-xmlpatterns-devel + qt5-script-devel + extra-cmake-modules + kdoctools-devel + kdeclarative-devel + ki18n-devel + gettext-devel + kitemviews-devel + ktexteditor-devel + kxmlgui-devel + kconfig-devel + karchive-devel + kcompletion-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + cmake + qt5-location-devel + grantlee-qt5-devel + boost-devel + qt5-svg-devel + + desktop/kde/applications/rocs/pspec.xml + + + rocs + + qt5-base + qt5-script + qt5-declarative + qt5-xmlpatterns + qt5-webkit + qt5-svg + grantlee-qt5 + kdeclarative + ktexteditor + kparts + libgcc + ki18n + kconfig + karchive + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + kwidgetsaddons + kxmlgui + kitemviews + + + /usr/bin + /usr/share + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + rocs-devel + Development files for rocs + + rocs + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-16 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-01 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + signon-kwallet-extension + http://kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app + desktop.kde.network + KWallet signon extension + KWallet signon extension + mirrors://kde/stable/release-service/22.04.1/src/signon-kwallet-extension-22.04.1.tar.xz + + extra-cmake-modules + qt5-base-devel + kwallet-devel + signon-devel + + desktop/kde/applications/signon-kwallet-extension/pspec.xml + + + signon-kwallet-extension + KWallet signon extension + + libgcc + signon + kwallet + qt5-base + + + /usr/lib/signon + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + spectacle + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.graphics + KDE screenshot capture utility + Ekran görüntüsü yakalama aracı + Spectacle, a new screenshot application that aims to replace KSnapshot.. + spectacle bir ekran görüntüsü yakalama aracıdır. + mirrors://kde/stable/release-service/22.04.1/src/spectacle-22.04.1.tar.xz + + qt5-base-devel + extra-cmake-modules + kdoctools-devel + libkipi-devel + qt5-script-devel + libxcb-devel + libkscreen-devel + xcb-util-devel + qt5-x11extras-devel + xcb-util-image-devel + xcb-util-cursor-devel + kxmlgui-devel + knewstuff-devel + kio-devel + purpose-devel + kwindowsystem-devel + kcoreaddons-devel + ki18n-devel + kwidgetsaddons-devel + kdeclarative-devel + kwayland-devel + knotifications-devel + kglobalaccel-devel + qt5-declarative-devel + qt5-svg-devel + kguiaddons-devel + + desktop/kde/applications/spectacle/pspec.xml + + + spectacle + + qt5-base + kio + libkscreen + purpose + xcb-util-cursor + ki18n + libgcc + kconfig + kxmlgui + knewstuff + libkipi + kdeclarative + kservice + kcoreaddons + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdbusaddons + libxcb + xcb-util + kwayland + qt5-x11extras + xcb-util-image + qt5-declarative + qt5-svg + kglobalaccel + kguiaddons + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + /usr/lib + + + ksnapshot + + + ksnapshot + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-15 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-15 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-18 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-28 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-31 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + step + http://kde.org/applications/education/step/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.edu + Interactive Physical Simulator + Step is an interactive physical simulator. It allows you to explore the physical world through simulations. + mirrors://kde/stable/release-service/22.04.1/src/step-22.04.1.tar.xz + + qt5-base-devel + qt5-svg-devel + qt5-declarative-devel + extra-cmake-modules + kdoctools-devel + kdelibs4-support-devel + mesa-devel + khtml-devel + kconfig-devel + knewstuff-devel + kplotting-devel + eigen3 + pkgconfig + libqalculate-devel + cln-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + qt5-linguist + gsl-devel + + desktop/kde/applications/step/pspec.xml + + + step + + qt5-base + cln + gsl + khtml + knewstuff + kplotting + libqalculate + kparts + kio + libgcc + kdelibs4-support + ki18n + kconfig + kxmlgui + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + kconfigwidgets + kwidgetsaddons + kservice + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-04 + 19.08.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-30 + 17.04.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + umbrello + http://www.kde.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv2 + app:gui + desktop.kde.sdk + UML modelling tool and code generator + UML modelleme aracı ve kod üreticisi. + Umbrello UML Modeller is a Unified Modelling Language diagram editor for KDE. + umbrello UML (Unified Modellin Language) modelleme ve diyagram editörüdür. + mirrors://kde/stable/release-service/22.04.1/src/umbrello-22.04.1.tar.xz + + qt5-base-devel + qt5-webkit-devel + libxslt-devel + qt5-svg-devel + kio-devel + kparts-devel + kinit-devel + kcompletion-devel + kxmlgui-devel + kauth-devel + kconfig-devel + ktexteditor-devel + kcoreaddons-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + kwindowsystem-devel + kdelibs4-support-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + llvm + llvm-clang-devel + llvm-mlir + llvm-polly + + desktop/kde/applications/umbrello/pspec.xml + + + umbrello + + qt5-base + qt5-webkit + kio + ki18n + kcrash + libgcc + kconfig + kxmlgui + libxml2 + qt5-svg + karchive + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + ktextwidgets + kconfigwidgets + kwidgetsaddons + ktexteditor + libxslt + kwindowsystem + llvm-mlir + llvm-polly + + + /usr/share + /usr/share/doc + /usr/bin + + + + + 2022-05-17 + 22.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 21.12.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-10 + 21.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-15 + 21.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-13 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-09 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 20.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-24 + 20.08.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.08.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-29 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-20 + 16.08.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-23 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-24 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python3-kde5 + http://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + desktop.kde.bindings + Python3 bindings for KDE5 + KDE5 için Python3 dil bağlayıcıları + python3-kde5 are the Python3 bindings for KDE5. + python3-kde5, KDE5 için Python3 dil bağlayıcısıdır. + https://github.com/groni/Sources/raw/master/python-kde5-4.90.81.tar.gz + + extra-cmake-modules + glibc-devel + python3-devel + kauth-devel + kitemmodels-devel + kitemviews-devel + karchive-devel + kplotting-devel + solid-devel + kcoreaddons-devel + sonnet-devel + kguiaddons-devel + kwidgetsaddons-devel + python3-sip + python3-qt5-devel + qt5-base-devel + + desktop/kde/bindings/python3-kde5/pspec.xml + + + python3-kde5 + app:console + library + + python3 + kauth + kitemmodels + kitemviews + karchive + kplotting + solid + kcoreaddons + sonnet + kguiaddons + kwidgetsaddons + libgcc + qt5-base + + + /usr/bin + /usr/share + /usr/lib + + + + python3-kde5-devel + Development files for python3-kde5 + python3-kde5 için geliştirme dosyaları + data + + python3-kde5 + + + /usr/share/sip + + + + + 2020-06-04 + 4.90.81 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 4.90.81 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 4.90.81 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-20 + 4.90.81 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-13 + 4.90.81 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-14 + 4.90.81 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 4.90.81 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-02 + 4.90.81 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2017-04-29 + 4.90.81 + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-20 + 4.90.81 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + kcontacts + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:gui + desktop.kde.framework + Address book API for KDE. + Address book for KDE for Contacts. + mirrors://kde/stable/frameworks/5.94/kcontacts-5.94.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + ki18n-devel + kcodecs-devel + kconfig-devel + kio-devel + iso-codes-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/framework/kcontacts/pspec.xml + + + kcontacts + + qt5-base + qt5-declarative + ki18n + kcodecs + kconfig + kcoreaddons + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcontacts-devel + Development files for kcontacts + + kcontacts + ki18n-devel + kcodecs-devel + kconfig-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-03 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-19 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-04 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kiconthemes + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 icon utilities + This library contains classes to improve the handling of icons in applications using the KDE Frameworks. + mirrors://kde/stable/frameworks/5.94/kiconthemes-5.94.0.tar.xz + + kcoreaddons-devel + qt5-base-devel + qt5-designer-devel + qt5-svg-devel + ki18n-devel + kauth-devel + karchive-devel + kcodecs-devel + kconfig-devel + kitemviews-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/kiconthemes/pspec.xml + + + kiconthemes + + qt5-base + qt5-svg + kconfigwidgets + ki18n + kitemviews + kwidgetsaddons + karchive + kconfig + kcoreaddons + kconfigwidgets + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kiconthemes-devel + Development files for kiconthemes + + kiconthemes qt5-base-devel - kunitconversion /usr/include @@ -33843,7 +84348,7 @@ components such as the Settings and gnome-shell. 2022-05-14 5.94.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -33864,7 +84369,7 @@ components such as the Settings and gnome-shell. 2022-01-08 5.90.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -33969,7 +84474,7 @@ components such as the Settings and gnome-shell. 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -34032,7 +84537,7 @@ components such as the Settings and gnome-shell. 2018-11-10 5.52.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -34046,7 +84551,7 @@ components such as the Settings and gnome-shell. 2018-10-16 5.50.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -34067,14 +84572,14 @@ components such as the Settings and gnome-shell. 2018-04-23 5.45.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com 2018-03-22 5.44.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -34163,7 +84668,7 @@ components such as the Settings and gnome-shell. yusuf.aydemir@pisilinux.org - 2016-05-18 + 2016-05-17 5.22.0 Version bump. Burak Ertürk @@ -34180,7 +84685,190 @@ components such as the Settings and gnome-shell. - kitemmodels + kquickcharts + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + A QtQuick plugin providing high-performance charts + A QtQuick plugin providing high-performance charts + Yüksek performanslı grafikler sunan bir QtQuick eklentisi + Yüksek performanslı grafikler sunan bir QtQuick eklentisi + mirrors://kde/stable/frameworks/5.94/kquickcharts-5.94.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-quickcontrols2-devel + extra-cmake-modules + + desktop/kde/framework/kquickcharts/pspec.xml + + + kquickcharts + + libgcc + qt5-base + qt5-declarative + qt5-quickcontrols2 + + + /usr/lib + /usr/lib/qt5 + /usr/lib/cmake + /usr/share/qlogging-categories5/kquickcharts.categories + /usr/share/doc + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-19 + 5.66.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + attica https://www.kde.org Pisi Linux Admins @@ -34189,37 +84877,35 @@ components such as the Settings and gnome-shell. LGPLv2 library desktop.kde.framework - Set of item models extending the Qt model-view framework - KItemModels provides a set of item models extending the Qt model-view framework. - mirrors://kde/stable/frameworks/5.94/kitemmodels-5.94.0.tar.xz + Open Collaboration Service client library, based on Qt 5 + Attica is a library to access Open Collaboration Service servers, based on Qt 5. + mirrors://kde/stable/frameworks/5.94/attica-5.94.0.tar.xz qt5-base-devel - qt5-declarative-devel extra-cmake-modules - desktop/kde/framework/kitemmodels/pspec.xml + desktop/kde/framework/attica/pspec.xml - kitemmodels + attica qt5-base - qt5-declarative + libgcc - /etc/xdg + /etc/xdg /usr/share - /usr/share/locale /usr/lib/qt5 /usr/lib /usr/share/doc - kitemmodels-devel - Development files for kitemmodels + attica-devel + Development files for attica5 qt5-base-devel - kitemmodels + attica /usr/include @@ -34399,10 +85085,3570 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + baloo + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Framework for searching and managing metadata + Baloo is a framework for searching and managing metada + mirrors://kde/stable/frameworks/5.94/baloo-5.94.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + kcoreaddons-devel + kdbusaddons-devel + kauth-devel + kconfig-devel + kcrash-devel + ki18n-devel + kcompletion-devel + kidletime-devel + kio-devel + solid-devel + kxmlgui-devel + kfilemetadata-devel + kdoctools-devel + kbookmarks-devel + kitemviews-devel + kjobwidgets-devel + kwidgetsaddons-devel + lmdb-devel + kservice-devel + extra-cmake-modules + + desktop/kde/framework/baloo/pspec.xml + + + baloo + + qt5-base + qt5-declarative + kcoreaddons + kdbusaddons + libgcc + kconfig + kcrash + ki18n + kidletime + kio + solid + kfilemetadata + lmdb + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + baloo-devel + Development files for baloo-widgets + + baloo + qt5-base-devel + kcoreaddons-devel + kfilemetadata-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-24 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bluez-qt + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.framework + Qt wrapper for KDE 5 Bluez DBus API + Qt wrapper for KDE 5 DBus API. + mirrors://kde/stable/frameworks/5.94/bluez-qt-5.94.0.tar.xz + + bluez + bluez-libs-devel + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/bluez-qt/pspec.xml + + + bluez-qt + + qt5-base + qt5-declarative + libgcc + + + /usr/lib/qt5 + /usr/lib + /etc/xdg + /usr/share/doc + /lib/udev + /usr/share/qlogging-categories5 + /usr/share/qlogging-categories5/bluez.categories + + + + bluez-qt-devel + Development files for bluez-qt + + bluez-qt + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-09 + 5.45.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + breeze-icons + https://projects.kde.org/projects/kde/workspace/breeze + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.framework + Breeze icon themes + İcon themes breeze + mirrors://kde/stable/frameworks/5.94/breeze-icons-5.94.0.tar.xz + + extra-cmake-modules + qt5-base-devel + libxml2-devel + python3-devel + python3-lxml + + desktop/kde/framework/breeze-icons/pspec.xml + + + breeze-icons + Breeze icon themes + + /usr/share + /usr/share/doc + + + breeze-16.svg + breeze-22.svg + breeze-dark-16.svg + breeze-dark-22.svg + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-05 + 5.88.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + extra-cmake-modules + https://www.kde.org + + Pisi Linux Admins + admin@gmail.com + + LGPLv2 + library + desktop.kde.framework + Extra cmake modules for KDE5 + Extra cmake modules KDE5 + mirrors://kde/stable/frameworks/5.94/extra-cmake-modules-5.94.0.tar.xz + + cmake + flex + + desktop/kde/framework/extra-cmake-modules/pspec.xml + + + extra-cmake-modules + programming.build + + cmake + flex + + + /usr/share + /usr/lib + /usr/share/man/man7 + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-05 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-16 + 5.22.0 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + frameworkintegration + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework providing components to allow applications to integrate with a KDE Workspace + Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. + mirrors://kde/stable/frameworks/5.94/frameworkintegration-5.94.0.tar.xz + + libxcb-devel + libXcursor-devel + appstream-qt5-devel + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + oxygen-fonts + kconfig-devel + kpackage-devel + kxmlgui-devel + kcompletion-devel + kcoreaddons-devel + kjobwidgets-devel + kconfigwidgets-devel + kiconthemes-devel + ki18n-devel + kauth-devel + kio-devel + knotifications-devel + kwidgetsaddons-devel + extra-cmake-modules + knewstuff-devel + + desktop/kde/framework/frameworkintegration/pspec.xml + + + frameworkintegration + + qt5-base + kconfig + kconfigwidgets + kiconthemes + ki18n + knotifications + kwidgetsaddons + knewstuff + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + frameworkintegration-devel + Development files for framework-integration + + frameworkintegration + kconfigwidgets-devel + kiconthemes-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kactivities + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Library for KDE's Plasma Activities support + Kactivities provides an API for using and interacting with the Plasma Activities Manager. + mirrors://kde/stable/frameworks/5.94/kactivities-5.94.0.tar.xz + + qt5-base-devel + mesa-devel + boost-devel + kdbusaddons-devel + kdeclarative-devel + kpackage-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + kio-devel + kservice-devel + kbookmarks-devel + kwidgetsaddons-devel + kcompletion-devel + kjobwidgets-devel + kitemviews-devel + solid-devel + kauth-devel + kcodecs-devel + kconfigwidgets-devel + kxmlgui-devel + kwindowsystem-devel + kglobalaccel-devel + kcmutils-devel + qt5-declarative-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + extra-cmake-modules + + desktop/kde/framework/kactivities/pspec.xml + + + kactivities + + qt5-base + qt5-declarative + kcoreaddons + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kactivities-devel + Development files for kactivities + + qt5-base-devel + kactivities + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kactivities-stats + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Library for KDE's Plasma Activities support + Kactivities provides an API for using and interacting with the Plasma Activities Manager. + mirrors://kde/stable/frameworks/5.94/kactivities-stats-5.94.0.tar.xz + + qt5-base-devel + boost-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + kconfig-devel + kactivities-devel + extra-cmake-modules + + desktop/kde/framework/kactivities-stats/pspec.xml + + + kactivities-stats + + qt5-base + libgcc + kconfig + kactivities + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kactivities-stats-devel + Development files for kactivities-stats + + qt5-base-devel + kconfig-devel + kactivities-devel + kactivities-stats + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-31 + 5.24 + Version release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kapidox + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Frameworks API documentation tools. + KDE5 Frameworks API dokümantasyon araçları. + KDE5 Frameworks API documentation tools. + KDE5 Frameworks API dokümantasyon araçları. + mirrors://kde/stable/frameworks/5.94/kapidox-5.94.0.tar.xz + + python3-Jinja2 + python3-PyYAML + extra-cmake-modules + python3-setuptools + + desktop/kde/framework/kapidox/pspec.xml + + + kapidox + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 5.87.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + karchive + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Qt 5 addon providing access to numerous types of archives + KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. + mirrors://kde/stable/frameworks/5.94/karchive-5.94.0.tar.xz + + bzip2 + xz-devel + zlib-devel + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/karchive/pspec.xml + + + karchive + + xz + zlib + bzip2 + qt5-base + + + /etc/xdg + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + karchive-devel + Development files for karchive + + qt5-base-devel + karchive + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + 2019-01-12 5.54.0 @@ -34568,7 +88814,7 @@ components such as the Settings and gnome-shell. - kglobalaccel + kauth https://www.kde.org Pisi Linux Admins @@ -34577,55 +88823,40 @@ components such as the Settings and gnome-shell. LGPLv2 library desktop.kde.framework - Global desktop keyboard shortcuts - KGlobalAccel allows you to have global accelerators that are independent of the focused window. - mirrors://kde/stable/frameworks/5.94/kglobalaccel-5.94.0.tar.xz + Abstraction to system policy and authentication features + Framework which lets applications perform actions as a privileged user + mirrors://kde/stable/frameworks/5.94/kauth-5.94.0.tar.xz qt5-base-devel qt5-linguist - qt5-base - libxcb-devel - kcrash-devel - kconfig-devel - qt5-x11extras-devel + polkit-qt-devel kcoreaddons-devel - kdbusaddons-devel - xcb-util-keysyms-devel - kwindowsystem-devel - kservice-devel extra-cmake-modules - desktop/kde/framework/kglobalaccel/pspec.xml + desktop/kde/framework/kauth/pspec.xml - kglobalaccel + kauth qt5-base - libxcb - kcrash - kconfig - qt5-x11extras + polkit-qt kcoreaddons - kdbusaddons - xcb-util-keysyms - kwindowsystem + libgcc - /etc/xdg - /usr/bin + /etc /usr/share - /usr/share/locale /usr/lib/qt5 /usr/lib /usr/share/doc - kglobalaccel-devel - Development files for kglobalaccel + kauth-devel + Development files for kauth - kglobalaccel - qt5-base-devel + kauth + kcoreaddons-devel /usr/include @@ -34634,279 +88865,272 @@ components such as the Settings and gnome-shell. - + 2022-05-14 5.94.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-11-20 5.76.0 version bump Ali Algul aligulle3801@gmail.com - + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-09 5.70.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-17 5.51.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-16 5.50.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2018-08-11 5.46.0 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.45.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.44.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-02-01 5.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-12-15 5.41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-11 5.40.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-10-14 5.39.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-09-15 - 5.38.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - 2017-09-13 5.38.0 @@ -34979,6 +89203,592 @@ components such as the Settings and gnome-shell. + + + kbookmarks + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Access and manipulate bookmarks stored using XBEL format + Framework which lets you access and manipulate bookmarks stored using XBEL format + mirrors://kde/stable/frameworks/5.94/kbookmarks-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + kcoreaddons-devel + kauth-devel + kcodecs-devel + kconfig-devel + kconfigwidgets-devel + kiconthemes-devel + kwidgetsaddons-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/framework/kbookmarks/pspec.xml + + + kbookmarks + + qt5-base + libgcc + kcoreaddons + kcodecs + kconfig + kwidgetsaddons + kxmlgui + kconfigwidgets + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kbookmarks-devel + Development files for kbookmarks + + kbookmarks + qt5-base-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcalendarcore + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + The KDE calendar access library + The KDE calendar access library + The KDE calendar access library + The KDE calendar access library + mirrors://kde/stable/frameworks/5.94/kcalendarcore-5.94.0.tar.xz + + qt5-base-devel + libical-devel + extra-cmake-modules + + desktop/kde/framework/kcalendarcore/pspec.xml + + + kcalendarcore + + libical + qt5-base + libgcc + + + /usr/lib + /usr/share + /usr/share/doc + + + + kcalendarcore-devel + Development files for kcalendarcore + + kcalendarcore + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-10 + 5.76.0 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-03 + 5.66.0 + First release + PisiLinux Community + admins@pisilinux.org + + + kcmutils @@ -35394,6 +90204,3135 @@ components such as the Settings and gnome-shell. + + + kcodecs + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Plugins allowing Qt applications to access further types of images + KDE5 KCodecs provide a collection of methods to manipulate strings using various encodings. + mirrors://kde/stable/frameworks/5.94/kcodecs-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + extra-cmake-modules + gperf + + desktop/kde/framework/kcodecs/pspec.xml + + + kcodecs + + qt5-base + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcodecs-devel + Development files for kcodecs + + qt5-base-devel + kcodecs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcompletion + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Addon with auto completion widgets and classes + KCompletion provides widgets with advanced completion support as well as a lower-level completion class which can be used with your own widgets. + mirrors://kde/stable/frameworks/5.94/kcompletion-5.94.0.tar.xz + + qt5-base-devel + qt5-designer-devel + qt5-linguist + kconfig-devel + kwidgetsaddons-devel + extra-cmake-modules + + desktop/kde/framework/kcompletion/pspec.xml + + + kcompletion + + kconfig + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcompletion-devel + Development files for kcompletion + + qt5-base-devel + kcompletion + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kconfig + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.framework + Advanced configuration system for KDE Frameworks 5 + Kconfig provides advanced libraries and tools for accessing configuration files. + mirrors://kde/stable/frameworks/5.94/kconfig-5.94.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-linguist + extra-cmake-modules + + desktop/kde/framework/kconfig/pspec.xml + + + kconfig + + qt5-base + qt5-declarative + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kconfig-devel + Development files for kconfig + + qt5-base-devel + kconfig + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kconfigwidgets + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.framework + Kconfig widgets + KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. + mirrors://kde/stable/frameworks/5.94/kconfigwidgets-5.94.0.tar.xz + + qt5-base-devel + ki18n-devel + kauth-devel + kcodecs-devel + kconfig-devel + kcoreaddons-devel + kguiaddons-devel + kwidgetsaddons-devel + kdoctools-devel + docbook-xsl + extra-cmake-modules + qt5-designer-devel + + desktop/kde/framework/kconfigwidgets/pspec.xml + + + kconfigwidgets + + libgcc + qt5-base + kauth + kcodecs + kconfig + kcoreaddons + kguiaddons + ki18n + kwidgetsaddons + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + kconfigwidgets-devel + Development files for kconfigwidgets + + kconfigwidgets + kauth-devel + kcodecs-devel + kconfig-devel + kwidgetsaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcoreaddons + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Utilities for core application functionality and accessing the OS + KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. + mirrors://kde/stable/frameworks/5.94/kcoreaddons-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + shared-mime-info + extra-cmake-modules + + desktop/kde/framework/kcoreaddons/pspec.xml + + + kcoreaddons + + qt5-base + shared-mime-info + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcoreaddons-devel + Development files for kcoreaddons + + qt5-base-devel + kcoreaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-06 + 5.63.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kcrash + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Kcrash crash handling application + KCrash provides support for intercepting and handling application crashes. + mirrors://kde/stable/frameworks/5.94/kcrash-5.94.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + kcoreaddons-devel + kwindowsystem-devel + libX11-devel + extra-cmake-modules + + desktop/kde/framework/kcrash/pspec.xml + + + kcrash + + qt5-base + libX11 + qt5-x11extras + kwindowsystem + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kcrash-devel + Development files for kcrash + + qt5-base-devel + kcrash + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-24 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdav + https://github.com/KDE/kdav + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + library + app:gui + desktop.kde.applications + A DAV protocol implemention with KJobs + Bir DAV protokolü uygulaması + Calendars and todos are supported, using either GroupDAV or CalDAV, and contacts are supported using GroupDAV or CardDAV. + Takvimler ve işler CalDAV veya GroupDAV'ı kullanarak desteklenir. + mirrors://kde/stable/frameworks/5.94/kdav-5.94.0.tar.xz + + libgcc + kio-devel + solid-devel + kauth-devel + ki18n-devel + kxmlgui-devel + kcodecs-devel + kcoreaddons-devel + kconfig-devel + extra-cmake-modules + kservice-devel + kitemviews-devel + kbookmarks-devel + kcompletion-devel + kjobwidgets-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + qt5-base-devel + qt5-xmlpatterns-devel + + desktop/kde/framework/kdav/pspec.xml + + + kdav + + kio + ki18n + libgcc + kcoreaddons + qt5-base + qt5-xmlpatterns + + + /usr/bin + /usr/share/locale + /usr/lib + /etc/xdg + /usr/share + + + + kdav-devel + Development files for kdav + kdav için geliştirme dosyaları + + kdav + kcoreaddons-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/share/apps/cmake + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-14 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 20.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-11 + 20.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 20.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 19.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 19.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 19.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-23 + 19.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 19.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 18.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-08 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 18.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-07-04 + 17.04.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + kdbusaddons + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Extra modules for Qt-DBus + KDE5-KDBusAddons provides convenience classes on top of QtDBus, as well as an API to create KDED modules. + mirrors://kde/stable/frameworks/5.94/kdbusaddons-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kdbusaddons/pspec.xml + + + kdbusaddons + + qt5-base + qt5-x11extras + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdbusaddons-devel + Development files for kdbusaddons + + qt5-base-devel + kdbusaddons + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-11 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + kdeclarative @@ -35823,63 +93762,60 @@ components such as the Settings and gnome-shell. - kpackage - https://userbase.kde.org/KPackage + kded + https://www.kde.org - Stefan Gronewold(groni) - groni@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - LGPL - app:library + LGPLv2 + library + app:console desktop.kde.framework - Framework that lets applications manage user installable packages of non-binary assets - KPackage is dependent on the Smart package manager. - mirrors://kde/stable/frameworks/5.94/kpackage-5.94.0.tar.xz + KDE5 daemon + Kded runs in the background and performs a number of small tasks. + mirrors://kde/stable/frameworks/5.94/kded-5.94.0.tar.xz qt5-base-devel - libX11-devel - kconfig-devel - ki18n-devel - kcoreaddons-devel - karchive-devel kdoctools-devel - docbook-sgml4_5 + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kservice-devel docbook-xsl extra-cmake-modules - desktop/kde/framework/kpackage/pspec.xml + desktop/kde/framework/kded/pspec.xml - kpackage + kded qt5-base - ki18n - karchive + libgcc kcoreaddons + kconfig + kcrash + kdbusaddons + kservice - /usr/bin /etc/xdg + /usr/share /usr/lib/qt5 /usr/lib - /usr/share - /usr/share/locale - /usr/share/man/man1 + /usr/bin + /usr/share/doc + /usr/share/man - kpackage-devel - Development files for kpackage + kded-devel + Development files for kded - kpackage - qt5-base-devel - kconfig-devel - ki18n-devel - kcoreaddons-devel - karchive-devel + kded - /usr/include /usr/lib/cmake /usr/lib/pkgconfig @@ -35888,7 +93824,7 @@ components such as the Settings and gnome-shell. 2022-05-14 5.94.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -36007,14 +93943,14 @@ components such as the Settings and gnome-shell. 2020-05-09 5.70.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -36077,7 +94013,7 @@ components such as the Settings and gnome-shell. 2018-11-10 5.52.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -36124,16 +94060,16 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2018-02-03 + 2018-02-01 5.42.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com 2017-12-15 5.41.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -36154,7 +94090,7 @@ components such as the Settings and gnome-shell. 2017-09-13 5.38.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -36166,7 +94102,7 @@ components such as the Settings and gnome-shell. aligulle3801@gmail.com - 2017-02-27 + 2017-02-28 5.29.0 Rebuild for new Toolchain. Stefan Gronewold(groni) @@ -36225,7 +94161,7 @@ components such as the Settings and gnome-shell. - kmediaplayer + kdelibs4-support https://www.kde.org Pisi Linux Admins @@ -36233,45 +94169,153 @@ components such as the Settings and gnome-shell. LGPLv2 library + app:console desktop.kde.framework - KDE5 media player Plugin interface for media player features - KMediaPlayer builds on the KParts framework to provide a common interface for KParts that can play media files. - mirrors://kde/stable/frameworks/5.94/portingAids/kmediaplayer-5.94.0.tar.xz + Code and utilities to ease the transition to KDE Frameworks 5 + KDELibs4Support provides libraries to port KDE4 programs to QT5/KDE5 + mirrors://kde/stable/frameworks/5.94/portingAids/kdelibs4support-5.94.0.tar.xz qt5-base-devel + qt5-svg-devel + qt5-designer-devel + qt5-x11extras-devel + perl-URI + libxcb-devel + libSM-devel + docbook-xml + openssl-devel + libX11-devel + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + kiconthemes-devel + kservice-devel + kwindowsystem-devel + kwidgetsaddons-devel + knotifications-devel + kxmlgui-devel + ki18n-devel kio-devel kauth-devel + kcrash-devel + kdesignerplugin + intltool + kdoctools-devel + kglobalaccel-devel + kguiaddons-devel kparts-devel ktextwidgets-devel sonnet-devel - kxmlgui-devel + kunitconversion-devel + kded-devel + kemoticons-devel + kdoctools-devel + kitemmodels-devel + kinit-devel + NetworkManager-devel + docbook-xsl + libX11-devel extra-cmake-modules - desktop/kde/framework/kmediaplayer/pspec.xml + desktop/kde/framework/kdelibs4-support/pspec.xml - kmediaplayer + kdelibs4-support qt5-base - libgcc + libICE + libxcb + libX11 + qt5-svg + qt5-x11extras + libSM + kdesignerplugin + kauth + solid + kcodecs + kcoreaddons + kjobwidgets + kcompletion + kconfig + kconfigwidgets + kcrash + kdbusaddons + kglobalaccel + kguiaddons + ki18n + kiconthemes + kio + kitemviews + knotifications kparts + kservice + ktextwidgets kxmlgui + kwindowsystem + kwidgetsaddons + qt5-designer + kded + kemoticons + kdoctools + kitemmodels + kinit + kunitconversion + /etc /usr/share + /usr/share/locale + /usr/bin /usr/lib/qt5 /usr/lib /usr/share/doc + /usr/share/man - kmediaplayer-devel - Development files for kmediaplayer + kdelibs4-support-devel + Development files for kdelibs4-support - kmediaplayer + kdelibs4-support + karchive-devel qt5-base-devel + libxcb-devel + libICE-devel + libX11-devel + qt5-svg-devel + qt5-x11extras-devel + libSM-devel + kauth-devel + solid-devel + kcodecs-devel + kcoreaddons-devel + kjobwidgets-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcrash-devel + kdbusaddons-devel + kglobalaccel-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knotifications-devel kparts-devel + kservice-devel + ktextwidgets-devel kxmlgui-devel + kwindowsystem-devel + kwidgetsaddons-devel + kded-devel + kemoticons-devel + kdoctools-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel /usr/include @@ -36280,279 +94324,286 @@ components such as the Settings and gnome-shell. - + 2022-05-14 5.94.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-11-20 5.76.0 version bump Ali Algul aligulle3801@gmail.com - + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-09 5.70.0 Version bump Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-17 5.51.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-16 5.50.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-08-11 5.46.0 - Rebuild + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.45.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.44.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-02-01 5.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-12-15 5.41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-11 5.40.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2017-10-14 5.39.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-09-13 5.38.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2017-07-30 + 5.35.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2017-06-20 5.35.0 @@ -36561,7 +94612,7 @@ components such as the Settings and gnome-shell. aligulle3801@gmail.com - 2017-02-28 + 2017-03-01 5.29.0 Rebuild for new Toolchain. Stefan Gronewold(groni) @@ -36620,7 +94671,7 @@ components such as the Settings and gnome-shell. - modemmanager-qt + kdesignerplugin https://www.kde.org Pisi Linux Admins @@ -36630,475 +94681,53 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - Qt wrapper for ModemManager DBus API - Qt wrapper for ModemManager DBus API - mirrors://kde/stable/frameworks/5.94/modemmanager-qt-5.94.0.tar.xz - - qt5-base-devel - ModemManager-devel - extra-cmake-modules - - desktop/kde/framework/modemmanager-qt/pspec.xml - - - modemmanager-qt - - qt5-base - libgcc - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - modemmanager-qt-devel - Development files for modemmanger-qt - - qt5-base-devel - modemmanager-qt - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.76.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-20 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.35.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-09 - 5.29.0 - Rebuild for new toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kactivities - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Library for KDE's Plasma Activities support - Kactivities provides an API for using and interacting with the Plasma Activities Manager. - mirrors://kde/stable/frameworks/5.94/kactivities-5.94.0.tar.xz + QT Designer integration for KDE5 Frameworks widgets + This framework provides plugins for Qt Designer that allow it to display the widgets provided by various KDE frameworks, as well as a utility (kgendesignerplugin) that can be used to generate other such plugins from ini-style description files. + mirrors://kde/stable/frameworks/5.94/portingAids/kdesignerplugin-5.94.0.tar.xz qt5-base-devel - mesa-devel - boost-devel - kdbusaddons-devel - kdeclarative-devel - kpackage-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel + qt5-linguist + qt5-designer + kdoctools-devel kio-devel - kservice-devel - kbookmarks-devel - kwidgetsaddons-devel - kcompletion-devel - kjobwidgets-devel - kitemviews-devel - solid-devel kauth-devel - kcodecs-devel + kconfig-devel + kwidgetsaddons-devel + kitemviews-devel + kiconthemes-devel + kcoreaddons-devel + kcompletion-devel kconfigwidgets-devel kxmlgui-devel - kwindowsystem-devel - kglobalaccel-devel - kcmutils-devel - qt5-declarative-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc + kplotting-devel + ktextwidgets-devel + sonnet-devel + kdewebkit-devel + docbook-xml + docbook-xsl extra-cmake-modules + qt5-designer-devel - desktop/kde/framework/kactivities/pspec.xml + desktop/kde/framework/kdesignerplugin/pspec.xml - kactivities + kdesignerplugin qt5-base - qt5-declarative + libgcc + kconfig kcoreaddons + qt5-designer - /etc/xdg /usr/share /usr/share/locale /usr/bin + /usr/lib/cmake /usr/lib/qt5 /usr/lib /usr/share/doc - - - - kactivities-devel - Development files for kactivities - - qt5-base-devel - kactivities - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig + /usr/share/man @@ -37287,14 +94916,14 @@ components such as the Settings and gnome-shell. 2018-12-26 5.53.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com 2018-11-10 5.52.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -37442,42 +95071,68 @@ components such as the Settings and gnome-shell. - extra-cmake-modules + kdesu https://www.kde.org Pisi Linux Admins - admin@gmail.com + admins@pisilinux.org LGPLv2 library + app:console desktop.kde.framework - Extra cmake modules for KDE5 - Extra cmake modules KDE5 - mirrors://kde/stable/frameworks/5.94/extra-cmake-modules-5.94.0.tar.xz + User interface for running shell commands with root privileges + kdesu provides functionality for building GUI front ends for (password asking) console mode programs. + mirrors://kde/stable/frameworks/5.94/kdesu-5.94.0.tar.xz - cmake - flex + qt5-base-devel + kcoreaddons-devel + kpty-devel + kservice-devel + ki18n-devel + kconfig-devel + libX11-devel + extra-cmake-modules - desktop/kde/framework/extra-cmake-modules/pspec.xml + desktop/kde/framework/kdesu/pspec.xml - extra-cmake-modules - programming.build + kdesu - cmake - flex + qt5-base + kcoreaddons + kpty + kservice + ki18n + kconfig + libX11 - /usr/share + /usr/share/locale + /usr/lib/qt5 /usr/lib - /usr/share/man/man7 + /usr/share/qlogging-categories5/ksu.categories + /usr/share/doc + + + + kdesu-devel + Development files for kdesu + + kdesu + kpty-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig 2022-05-14 5.94.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -37692,7 +95347,421 @@ components such as the Settings and gnome-shell. ertugrulerata@gmail.com - 2018-08-05 + 2018-05-14 + 5.46.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdewebkit + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 WebKit integration + KdeWebkit provides KDE integration of the QtWebKit library. + mirrors://kde/stable/frameworks/5.94/portingAids/kdewebkit-5.94.0.tar.xz + + qt5-base-devel + qt5-webkit-devel + qt5-designer-devel + kauth-devel + sonnet-devel + kconfig-devel + ktextwidgets-devel + kjobwidgets-devel + kcoreaddons-devel + kparts-devel + kservice-devel + kwallet-devel + kio-devel + extra-cmake-modules + + desktop/kde/framework/kdewebkit/pspec.xml + + + kdewebkit + + qt5-webkit + kconfig + kjobwidgets + qt5-base + kcoreaddons + kparts + kservice + kwallet + kio + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/mkspecs/modules/ + /usr/share/doc + + + + kdewebkit-devel + Development files for kdewebkit + + kdewebkit + qt5-webkit-devel + kconfig-devel + kjobwidgets-devel + qt5-base-devel + kcoreaddons-devel + kparts-devel + kservice-devel + kwallet-devel + kio-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-26 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal @@ -37740,6 +95809,387 @@ components such as the Settings and gnome-shell. Mustafa Cinasal muscnsl@gmail.com + + 2017-09-13 + 5.38.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kdnssd + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Network service discovery using Zeroconf + KDNSSD is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure. + mirrors://kde/stable/frameworks/5.94/kdnssd-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + avahi-devel + avahi-compat-libdns_sd-devel + extra-cmake-modules + + desktop/kde/framework/kdnssd/pspec.xml + + + kdnssd + + qt5-base + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kdnssd-devel + Development files for kdnssd. + + qt5-base-devel + kdnssd + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2017-09-13 5.38.0 @@ -37797,11 +96247,11 @@ components such as the Settings and gnome-shell. yusuf.aydemir@pisilinux.org - 2016-05-16 + 2016-05-17 5.22.0 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Version bump. + Burak Ertürk + burakerturk@pisilinux.org 2016-04-13 @@ -37814,7 +96264,7 @@ components such as the Settings and gnome-shell. - kdbusaddons + kdoctools https://www.kde.org Pisi Linux Admins @@ -37824,25 +96274,851 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - Extra modules for Qt-DBus - KDE5-KDBusAddons provides convenience classes on top of QtDBus, as well as an API to create KDED modules. - mirrors://kde/stable/frameworks/5.94/kdbusaddons-5.94.0.tar.xz + KDE5 document generator + kdoctools is an application aims to generate documents from DocBook. + mirrors://kde/stable/frameworks/5.94/kdoctools-5.94.0.tar.xz - qt5-base-devel - qt5-linguist - qt5-x11extras-devel + qt5-base-devel + perl-URI + python + libxml2-devel + libxslt-devel + docbook-xml + docbook-xsl + docbook-sgml4_5 + ki18n-devel + karchive-devel extra-cmake-modules - desktop/kde/framework/kdbusaddons/pspec.xml + desktop/kde/framework/kdoctools/pspec.xml - kdbusaddons + kdoctools - qt5-base - qt5-x11extras + qt5-base + libxml2 + libxslt + docbook-xml + docbook-xsl + karchive - /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + kdoctools-devel + Development files for kdoctools + + qt5-base-devel + kdoctools + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.52.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kemoticons + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE emoticon manager + KEmoticons converts emoticons from text to a graphical representation with images in HTML. + mirrors://kde/stable/frameworks/5.94/kemoticons-5.94.0.tar.xz + + qt5-base-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kservice-devel + extra-cmake-modules + + desktop/kde/framework/kemoticons/pspec.xml + + + kemoticons + + qt5-base + libgcc + karchive + kcoreaddons + kconfig + kservice + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kemoticons-devel + Development files for kemoticons + + kemoticons + qt5-base-devel + kservice-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kfilemetadata + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 library for extracting meta data from files. + KDE library for extracting meta data from files. + mirrors://kde/stable/frameworks/5.94/kfilemetadata-5.94.0.tar.xz + + qt5-base-devel + qt5-multimedia-devel + attr-devel + ebook-tools-devel + exiv2-devel + ffmpeg-devel + taglib-devel + libappimage-devel + poppler-qt5-devel + karchive-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/framework/kfilemetadata/pspec.xml + + + kfilemetadata + + qt5-base + ebook-tools + libgcc + exiv2-libs + taglib + libappimage + ffmpeg + poppler-qt5 + karchive + kcoreaddons + ki18n + kconfig + + + /etc/xdg /usr/share /usr/share/locale /usr/bin @@ -37852,11 +97128,828 @@ components such as the Settings and gnome-shell. - kdbusaddons-devel - Development files for kdbusaddons + kfilemetadata-devel + Development files for kfilemetadata + kfilemetadata + qt5-base-devel + ebook-tools-devel + exiv2-devel + taglib-devel + ffmpeg-devel + poppler-qt5-devel + karchive-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-24 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 5.38.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-20 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kglobalaccel + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Global desktop keyboard shortcuts + KGlobalAccel allows you to have global accelerators that are independent of the focused window. + mirrors://kde/stable/frameworks/5.94/kglobalaccel-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-base + libxcb-devel + kcrash-devel + kconfig-devel + qt5-x11extras-devel + kcoreaddons-devel + kdbusaddons-devel + xcb-util-keysyms-devel + kwindowsystem-devel + kservice-devel + extra-cmake-modules + + desktop/kde/framework/kglobalaccel/pspec.xml + + + kglobalaccel + + qt5-base + libxcb + kcrash + kconfig + qt5-x11extras + kcoreaddons + kdbusaddons + xcb-util-keysyms + kwindowsystem + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kglobalaccel-devel + Development files for kglobalaccel + + kglobalaccel + qt5-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-15 + 5.38.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kguiaddons + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Utilities for graphical user interfaces + The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files. + mirrors://kde/stable/frameworks/5.94/kguiaddons-5.94.0.tar.xz + + libX11-devel + libxcb-devel + wayland-devel + plasma-wayland-protocols qt5-base-devel - kdbusaddons + qt5-wayland-devel + qt5-x11extras-devel + extra-cmake-modules + + desktop/kde/framework/kguiaddons/pspec.xml + + + kguiaddons + + libX11 + wayland-client + qt5-base + qt5-wayland + qt5-x11extras + + + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/applications + /usr/share/doc + /usr/share/qlogging-categories5/kguiaddons.categories + + + + kguiaddons-devel + Development files for kguiaddons + + kguiaddons /usr/include @@ -38036,7 +98129,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -38048,7 +98141,7 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2019-01-11 + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal @@ -38092,7 +98185,7 @@ components such as the Settings and gnome-shell. 2018-04-23 5.45.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -38205,283 +98298,55 @@ components such as the Settings and gnome-shell. - kcalendarcore - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - The KDE calendar access library - The KDE calendar access library - The KDE calendar access library - The KDE calendar access library - mirrors://kde/stable/frameworks/5.94/kcalendarcore-5.94.0.tar.xz - - qt5-base-devel - libical-devel - extra-cmake-modules - - desktop/kde/framework/kcalendarcore/pspec.xml - - - kcalendarcore - - libical - qt5-base - libgcc - - - /usr/lib - /usr/share - /usr/share/doc - - - - kcalendarcore-devel - Development files for kcalendarcore - - kcalendarcore - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-10 - 5.76.0 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-03 - 5.66.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ktexteditor + kholidays https://www.kde.org Pisi Linux Admins - admins@pisilinux.org + admin@pisilinux.org LGPLv2 library + app:console desktop.kde.framework - KDE5 text editor libraries - KTextEditor provides a powerful text editor component that you can embed in your application. - mirrors://kde/stable/frameworks/5.94/ktexteditor-5.94.0.tar.xz + KDE library for regional holiday information + KDE library for regional holiday information + https://download.kde.org/stable/frameworks/5.94/kholidays-5.94.0.tar.xz qt5-base-devel - qt5-script-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - kauth-devel - kguiaddons-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kparts-devel - syntax-highlighting-devel - libgit2-devel - editorconfig-core-c-devel - kjobwidgets-devel - extra-cmake-modules + qt5-declarative-devel + qt5-linguist + autogen-devel + kitemviews-devel + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + extra-cmake-modules - desktop/kde/framework/ktexteditor/pspec.xml + desktop/kde/framework/kholidays/pspec.xml - ktexteditor + kholidays - kauth - libgit2 - kitemviews - editorconfig-core-c - syntax-highlighting qt5-base - qt5-declarative - ktextwidgets - kwidgetsaddons - kconfigwidgets - kjobwidgets - kiconthemes - kcoreaddons - kcompletion - kxmlgui - kcodecs - karchive - kguiaddons - kconfig - ki18n - kio - ki18n - kparts - sonnet + qt5-declarative /etc /usr/share - /usr/share/locale /usr/lib/qt5 /usr/lib /usr/share/doc - ktexteditor-devel - Development files for ktexteditor + kholidays-devel + Development files for kdelibs4-support - kparts-devel - syntax-highlighting-devel - ktexteditor + qt5-base-devel + kholidays /usr/include @@ -38563,7 +98428,7 @@ components such as the Settings and gnome-shell. 2021-05-08 5.82.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -38596,159 +98461,600 @@ components such as the Settings and gnome-shell. aligulle3801@gmail.com - 2020-09-22 - 5.74.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-05-16 - 5.70.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - + 2020-05-09 5.70.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-04-21 + + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-02-26 + + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + + 2018-12-12 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-24 + + 2018-10-17 5.51.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-16 5.50.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-08-14 + + 2018-08-11 5.46.0 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-04-24 + 5.45.0 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-04-24 + 17.12.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-23 + 17.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-22 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 16.08.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-20 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-28 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + khtml + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + HTML rendering engine for KDE + KHTML is a web rendering engine, based on the KParts technology and using KJS for JavaScript support. + mirrors://kde/stable/frameworks/5.94/portingAids/khtml-5.94.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libjpeg-turbo-devel + giflib-devel + libpng-devel + qt5-phonon-devel + libX11-devel + zlib-devel + kio-devel + kjs-devel + karchive-devel + knotifications-devel + kglobalaccel-devel + kauth-devel + kparts-devel + kwallet-devel + ktextwidgets-devel + sonnet-devel + openssl-devel + gperf + extra-cmake-modules + + desktop/kde/framework/khtml/pspec.xml + + + khtml + + qt5-base + qt5-x11extras + qt5-phonon + zlib + giflib + libX11 + libgcc + libpng + libjpeg-turbo + sonnet + kcodecs + kconfig + kjobwidgets + kwidgetsaddons + kcompletion + karchive + kconfigwidgets + kcoreaddons + kglobalaccel + ki18n + kiconthemes + kio + kjs + knotifications + kparts + kservice + ktextwidgets + kwallet + kwindowsystem + kxmlgui + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + khtml-devel + Development files for khtml + + khtml + qt5-base-devel + kcodecs-devel + ki18n-devel + kio-devel + kjs-devel + kparts-devel + ktextwidgets-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-04-23 5.45.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.44.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-02-21 - 5.42.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - 2018-02-01 5.42.0 @@ -38787,7 +99093,7 @@ components such as the Settings and gnome-shell. 2017-06-20 5.35.0 - version bump. + version bump Ali Algul aligulle3801@gmail.com @@ -38833,6 +99139,792 @@ components such as the Settings and gnome-shell. Yusuf Aydemir yusuf.aydemir@pisilinux.org + + 2016-05-18 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ki18n + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE Gettext-based UI text internationalization. + KDE grafik arabirim yerelleştirme kitaplığı + KI18n provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system. + ki18n, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır + mirrors://kde/stable/frameworks/5.94/ki18n-5.94.0.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/ki18n/pspec.xml + + + ki18n + + qt5-base + qt5-declarative + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/man + + + + ki18n-devel + Development files for kde5-ki18n + ki18n için geliştirme dosyaları + + ki18n + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kidletime + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Idle time reporting utility + KIdleTime is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity. + mirrors://kde/stable/frameworks/5.94/kidletime-5.94.0.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libX11-devel + libXext-devel + libXScrnSaver-devel + libxcb-devel + extra-cmake-modules + + desktop/kde/framework/kidletime/pspec.xml + + + kidletime + + qt5-base + libX11 + libxcb + libXScrnSaver + libXext + qt5-x11extras + + + /etc/xdg/kidletime.categories + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kidletime-devel + Development files for kidletime + + kidletime + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + 2016-05-17 5.22.0 @@ -39243,404 +100335,7 @@ components such as the Settings and gnome-shell. - ksyndication - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.framework - RSS/Atom parser library - syndication is a parser library for RSS and Atom feeds. - mirrors://kde/stable/frameworks/5.94/syndication-5.94.0.tar.xz - - qt5-base-devel - kio-devel - kcodecs-devel - kdoctools-devel - extra-cmake-modules - - desktop/kde/framework/ksyndication/pspec.xml - - - ksyndication - - qt5-base - kcodecs - libgcc - - - /etc/xdg - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/qlogging-categories5/syndication.categories - /usr/share/qlogging-categories5 - - - - ksyndication-devel - Development files for ksyndication - - ksyndication - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-02 - 16.08.3 - Version bump. - Stefan Gronewold - groni@pisilnux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwallet + kinit https://www.kde.org Pisi Linux Admins @@ -39650,68 +100345,85 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - KDE password storage framework - This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. - mirrors://kde/stable/frameworks/5.94/kwallet-5.94.0.tar.xz + KDE applications initialization utility + Process launcher to speed up launching KDE applications. + mirrors://kde/stable/frameworks/5.94/kinit-5.94.0.tar.xz - libxslt - docbook-xsl qt5-base-devel - libgcrypt-devel - gpgme-devel - kauth-devel - gpgme-qt5-devel - kcodecs-devel - kconfigwidgets-devel - kconfig-devel kdoctools-devel + libX11-devel + libcap-devel + libgcc + libxcb-devel + kcrash-devel kcoreaddons-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kservice-devel + kitemviews-devel + solid-devel + kxmlgui-devel + kjobwidgets-devel + kcompletion-devel kwidgetsaddons-devel + kconfig-devel + kcodecs-devel + kauth-devel + kconfigwidgets-devel + kio-devel + ki18n-devel + kservice-devel + kbookmarks-devel + kdbusaddons-devel kwindowsystem-devel + docbook-xsl extra-cmake-modules - desktop/kde/framework/kwallet/pspec.xml + desktop/kde/framework/kinit/pspec.xml - kwallet + kinit qt5-base - gpgme - libgcrypt - kconfig + libX11 + libcap + libxcb + kio + kcrash kcoreaddons - kdbusaddons + kconfig ki18n - knotifications kservice - kwidgetsaddons + kdbusaddons kwindowsystem - kconfigwidgets /etc/xdg /usr/share - /usr/share/locale /usr/lib/qt5 /usr/lib + /usr/share/locale /usr/bin /usr/share/doc + /usr/share/man - kwallet-devel - Development files for kwallet + kinit-devel + Development files for kinit - kwallet qt5-base-devel + libX11-devel + libcap-devel + libxcb-devel + kio-devel + kcrash-devel + kconfig-devel + ki18n-devel + kservice-devel + kdbusaddons-devel + kcoreaddons-devel + kwindowsystem-devel + kinit - /usr/include /usr/lib/cmake /usr/lib/pkgconfig @@ -39720,7 +100432,7 @@ components such as the Settings and gnome-shell. 2022-05-14 5.94.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -39788,7 +100500,7 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2021-05-08 + 2021-05-22 5.82.0 Version bump. Mustafa Cinasal @@ -39839,14 +100551,14 @@ components such as the Settings and gnome-shell. 2020-05-09 5.70.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -39909,7 +100621,7 @@ components such as the Settings and gnome-shell. 2018-11-10 5.52.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -40057,7 +100769,7 @@ components such as the Settings and gnome-shell. - kxmlgui + kio https://www.kde.org Pisi Linux Admins @@ -40065,65 +100777,121 @@ components such as the Settings and gnome-shell. LGPLv2 library + app:console desktop.kde.framework - Framework for managing menu and toolbar actions - Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way. - mirrors://kde/stable/frameworks/5.94/kxmlgui-5.94.0.tar.xz + Resource and network access abstraction + Network transparent access to files and data + mirrors://kde/stable/frameworks/5.94/kio-5.94.0.tar.xz - qt5-base-devel - qt5-designer-devel - attica-devel - kcoreaddons-devel + qt5-base-devel + qt5-designer-devel + qt5-declarative-devel + acl-devel + attr-devel + mit-kerberos-devel + kcrash-devel + karchive-devel kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kservice-devel + solid-devel + sonnet-devel + kdoctools-devel + kbookmarks-devel + kwidgetsaddons-devel + kcompletion-devel kconfigwidgets-devel kauth-devel kcodecs-devel - sonnet-devel - kglobalaccel-devel - ki18n-devel - kguiaddons-devel kiconthemes-devel kitemviews-devel - ktextwidgets-devel - kwidgetsaddons-devel + kjobwidgets-devel kwindowsystem-devel + qt5-x11extras-devel + kwallet-devel + kxmlgui-devel + ktextwidgets-devel + knotifications-devel + kguiaddons-devel + libxslt-devel + qt5-script-devel + zlib-devel + docbook-sgml4_5 + docbook-xml + docbook-xsl extra-cmake-modules + kded-devel + libutil-linux-devel - desktop/kde/framework/kxmlgui/pspec.xml + desktop/kde/framework/kio/pspec.xml - kxmlgui + kio - qt5-base + qt5-base + qt5-declarative + acl libgcc - attica - kcoreaddons + libxml2 + libxslt + kdoctools + mit-kerberos + kauth + kcrash + knotifications + qt5-x11extras + karchive kconfig + kcodecs + kbookmarks + kcompletion kconfigwidgets - kglobalaccel + kcoreaddons + kdbusaddons ki18n - kguiaddons kiconthemes kitemviews + kjobwidgets + kservice + ktextwidgets + kwallet kwidgetsaddons + kwindowsystem + kxmlgui + solid + kguiaddons + libutil-linux - /etc + /etc/ + /usr/bin /usr/share /usr/share/locale /usr/lib/qt5 /usr/lib /usr/share/doc + /usr/share/man - kxmlgui-devel - Development files for kxmlgui + kio-devel + Development files for kio - kxmlgui - qt5-base-devel + qt5-base-devel + kio kconfig-devel - kconfigwidgets-devel + kcodecs-devel + kbookmarks-devel + kcompletion-devel + kcoreaddons-devel + kitemviews-devel + kjobwidgets-devel + kservice-devel + kwindowsystem-devel + kxmlgui-devel + solid-devel /usr/include @@ -40132,191 +100900,240 @@ components such as the Settings and gnome-shell. - + 2022-05-14 5.94.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-11-20 5.76.0 version bump Ali Algul aligulle3801@gmail.com - + + 2020-09-13 + 5.74.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 5.70.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-09 5.70.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + + 2019-09-20 + 5.62.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-04-15 + + 2019-06-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-03-11 + + 2019-05-27 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-25 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-02-09 + + 2019-02-27 5.55.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-27 + 5.54.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-14 + 5.54.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-12 + 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -40343,9 +101160,9 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2018-08-11 + 2018-08-14 5.46.0 - Rebuild + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com @@ -40366,12 +101183,12 @@ components such as the Settings and gnome-shell. 2018-03-22 5.44.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - 2018-02-01 + 2018-03-03 5.42.0 Version bump. Mustafa Cinasal @@ -40401,7 +101218,7 @@ components such as the Settings and gnome-shell. 2017-09-13 5.38.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -40413,7 +101230,7 @@ components such as the Settings and gnome-shell. aligulle3801@gmail.com - 2017-02-27 + 2017-02-28 5.29.0 Rebuild for new Toolchain. Stefan Gronewold(groni) @@ -40470,1721 +101287,6 @@ components such as the Settings and gnome-shell. - - - kwayland - https://www.kde.org - - Stefan Gronewold(groni) - groni@pisilinux.org - - LGPLv3 - library - desktop.kde.framework - Qt-style Client and Server library wrapper for the Wayland libraries - Qt-style Client and Server library wrapper for the Wayland libraries - mirrors://kde/stable/frameworks/5.94/kwayland-5.94.0.tar.xz - - qt5-base-devel - qt5-wayland-devel - libglvnd-devel - wayland-devel - wayland-protocols-devel - mesa-devel - extra-cmake-modules - plasma-wayland-protocols - - desktop/kde/framework/kwayland/pspec.xml - - - kwayland - - qt5-base - libglvnd - wayland-client - wayland-server - - - /etc/xdg - /usr/lib - /usr/share/config - /usr/share/doc - /usr/share/qlogging-categories5 - /usr/share/qlogging-categories5/org_kde_kwayland.categories - - - - kwayland-devel - - qt5-base-devel - kwayland - - - /usr/lib/cmake - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.76.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-30 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - threadweaver - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Multi-threaded programming framework for KDE - ThreadWeaver is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way. - mirrors://kde/stable/frameworks/5.94/threadweaver-5.94.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/threadweaver/pspec.xml - - - threadweaver - - qt5-base - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - threadweaver-devel - Development files for threadweaver - - qt5-base-devel - threadweaver - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kuserfeedback - https://kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - desktop.kde.framework - Framework for collecting user feedback for applications via telemetry and surveys - Framework for collecting user feedback for applications via telemetry and surveys - Framework for collecting user feedback for applications via telemetry and surveys - Framework for collecting user feedback for applications via telemetry and surveys - mirrors://kde/stable/kuserfeedback/kuserfeedback-1.2.0.tar.xz - - qt5-linguist - qt5-svg-devel - qt5-sql-odbc - qt5-sql-mysql - qt5-sql-sqlite - qt5-base-devel - qt5-charts-devel - qt5-assistant-devel - qt5-sql-postgresql - extra-cmake-modules - qt5-declarative-devel - - desktop/kde/framework/kuserfeedback/pspec.xml - - - kuserfeedback - - qt5-svg - qt5-base - qt5-charts - qt5-declarative - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - kuserfeedback-devel - Development files for kuserfeedback - - kuserfeedback - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-14 - 1.2.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2022-04-12 - 1.2.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2022-01-08 - 1.2.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2021-12-12 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2021-11-13 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2021-09-12 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2021-07-10 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2021-06-15 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2021-01-10 - 1.0.0 - Rebuild. - Mustafa Cinasal - admins@pisilinux.org - - - 2020-09-12 - 1.0.0 - Rebuild - Mustafa Cinasal - admins@pisilinux.org - - - 2020-05-09 - 1.0.0 - Rebuild - Mustafa Cinasal - admins@pisilinux.org - - - 2020-03-31 - 1.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - prison - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - MIT - library - desktop.kde.framework - A barcode API to produce QRCode barcodes and DataMatrix barcode - A barcode API to produce QRCode barcodes and DataMatrix barcode. - mirrors://kde/stable/frameworks/5.94/prison-5.94.0.tar.xz - - libdmtx-devel - qrencode-devel - qt5-base-devel - extra-cmake-modules - qt5-declarative-devel - - desktop/kde/framework/prison/pspec.xml - - - prison - - libdmtx - qrencode - qt5-base - qt5-declarative - - - /etc/xdg - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/share/qlogging-categories5/prison.categories - /usr/share/qlogging-categories5/prison.renamecategories - - - prison-qt5 - - - prison-qt5 - - - - prison-devel - Development files for libepoxy - - prison - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - prison-qt5-devel - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.76.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-23 - 5.46.0 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-11 - 5.46.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-27 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-22 - 1.2.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-01-17 - 1.2.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - networkmanager-qt - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - A QT wrapper around the NetworkManager libraries - A QT wrapper around the NetworkManager libraries - mirrors://kde/stable/frameworks/5.94/networkmanager-qt-5.94.0.tar.xz - - qt5-base-devel - NetworkManager-devel - extra-cmake-modules - - desktop/kde/framework/networkmanager-qt/pspec.xml - - - networkmanager-qt - - qt5-base - NetworkManager - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - networkmanager-qt-devel - Development files for networkmanager-qt - - qt5-base-devel - networkmanager-qt - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.76.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-17 - 5.62.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.35.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-23 - 5.29.0 - Rebuild for new toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - kirigami @@ -42516,833 +101618,7 @@ components such as the Settings and gnome-shell. - kholidays - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE library for regional holiday information - KDE library for regional holiday information - https://download.kde.org/stable/frameworks/5.94/kholidays-5.94.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-linguist - autogen-devel - kitemviews-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - extra-cmake-modules - - desktop/kde/framework/kholidays/pspec.xml - - - kholidays - - qt5-base - qt5-declarative - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kholidays-devel - Development files for kdelibs4-support - - qt5-base-devel - kholidays - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-24 - 5.45.0 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-24 - 17.12.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-28 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcontacts - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.framework - Address book API for KDE. - Address book for KDE for Contacts. - mirrors://kde/stable/frameworks/5.94/kcontacts-5.94.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - ki18n-devel - kcodecs-devel - kconfig-devel - kio-devel - iso-codes-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/framework/kcontacts/pspec.xml - - - kcontacts - - qt5-base - qt5-declarative - ki18n - kcodecs - kconfig - kcoreaddons - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcontacts-devel - Development files for kcontacts - - kcontacts - ki18n-devel - kcodecs-devel - kconfig-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-03 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-19 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-04 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcodecs + kitemmodels https://www.kde.org Pisi Linux Admins @@ -43351,21 +101627,21 @@ components such as the Settings and gnome-shell. LGPLv2 library desktop.kde.framework - Plugins allowing Qt applications to access further types of images - KDE5 KCodecs provide a collection of methods to manipulate strings using various encodings. - mirrors://kde/stable/frameworks/5.94/kcodecs-5.94.0.tar.xz + Set of item models extending the Qt model-view framework + KItemModels provides a set of item models extending the Qt model-view framework. + mirrors://kde/stable/frameworks/5.94/kitemmodels-5.94.0.tar.xz qt5-base-devel - qt5-linguist + qt5-declarative-devel extra-cmake-modules - gperf - desktop/kde/framework/kcodecs/pspec.xml + desktop/kde/framework/kitemmodels/pspec.xml - kcodecs + kitemmodels qt5-base + qt5-declarative /etc/xdg @@ -43377,11 +101653,11 @@ components such as the Settings and gnome-shell. - kcodecs-devel - Development files for kcodecs + kitemmodels-devel + Development files for kitemmodels qt5-base-devel - kcodecs + kitemmodels /usr/include @@ -43519,7 +101795,7 @@ components such as the Settings and gnome-shell. 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -43561,7 +101837,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -43730,707 +102006,7 @@ components such as the Settings and gnome-shell. - syntax-highlighting - https://community.kde.org/Frameworks - - Stefan Gronewold - groni@pisilinux.org - - GPL2 - desktop.kde.framework - Syntax highlighting engine for structured text and code - Syntax highlighting engine for structured text and code - mirrors://kde/stable/frameworks/5.94/syntax-highlighting-5.94.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-linguist - perl - glibc-devel - - desktop/kde/framework/syntax-highlighting/pspec.xml - - - syntax-highlighting - Syntax highlighting engine for structured text and code - - qt5-base - qt5-declarative - libgcc - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/share/qlogging-categories5 - /usr/share/locale/ - - - - syntax-highlighting-devel - Development files for syntax-highlighting - - syntax-highlighting - qt5-base-devel - - - /usr/include - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 5.28.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - purpose - https://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.framework - Framework for providing abstractions to get the developer's purposes fulfilled - Framework for providing abstractions to get the developer's purposes fulfilled - Framework for providing abstractions to get the developer's purposes fulfilled - Framework for providing abstractions to get the developer's purposes fulfilled - mirrors://kde/stable/frameworks/5.94/purpose-5.94.0.tar.xz - - intltool - kio-devel - ki18n-devel - kauth-devel - kconfig-devel - kirigami-devel - kcoreaddons-devel - kdeclarative-devel - extra-cmake-modules - accounts-qml-module - knotifications-devel - libaccounts-glib-devel - qt5-base-devel - qt5-declarative-devel - - desktop/kde/framework/purpose/pspec.xml - - - purpose - - kio - ki18n - kauth - libgcc - kconfig - qt5-base - kcoreaddons - knotifications - libaccounts-qt5 - qt5-declarative - - - /etc/xdg - /usr/lib - /usr/share - /usr/share/doc - - - - purpose-devel - Development files for purpose - - purpose - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 5.45.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 1.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 1.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 1.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-21 - 1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - karchive + kitemviews https://www.kde.org Pisi Linux Admins @@ -44438,41 +102014,38 @@ components such as the Settings and gnome-shell. LGPLv2 library + app:console desktop.kde.framework - Qt 5 addon providing access to numerous types of archives - KArchive provides classes for easy reading, creation and manipulation of "archive" formats like ZIP and TAR. - mirrors://kde/stable/frameworks/5.94/karchive-5.94.0.tar.xz + Set of item models extending the Qt model-view framework + KItemViews includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists. + mirrors://kde/stable/frameworks/5.94/kitemviews-5.94.0.tar.xz - bzip2 - xz-devel - zlib-devel qt5-base-devel + qt5-linguist + qt5-designer-devel extra-cmake-modules - desktop/kde/framework/karchive/pspec.xml + desktop/kde/framework/kitemviews/pspec.xml - karchive + kitemviews - xz - zlib - bzip2 qt5-base - /etc/xdg /usr/share + /usr/share/locale /usr/lib/qt5 /usr/lib /usr/share/doc - karchive-devel - Development files for karchive + kitemviews-devel + Development files for kitemviews qt5-base-devel - karchive + kitemviews /usr/include @@ -44610,7 +102183,7 @@ components such as the Settings and gnome-shell. 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -44652,7 +102225,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -44708,14 +102281,14 @@ components such as the Settings and gnome-shell. 2018-04-23 5.45.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com 2018-03-22 5.44.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -45610,590 +103183,1099 @@ components such as the Settings and gnome-shell. - qqc2-desktop-style - https://download.kde.org/ + kjsembed + https://www.kde.org - Mustafa Cinasal - muscnsl@gmail.com + Pisi Linux Admins + admins@pisilinux.org - GPLv2 + LGPLv2 library desktop.kde.framework - A style for Qt Quick Controls 2 to make it follow your desktop theme - A style for Qt Quick Controls 2 to make it follow your desktop theme - Qt Quick Controls 2 nin masaüstünüzdeki temayı takip etmesini sağlayan bir stil - Qt Quick Controls 2 nin masaüstünüzdeki temayı takip etmesini sağlayan bir stil - https://download.kde.org/stable/frameworks/5.94/qqc2-desktop-style-5.94.0.tar.xz + JavaScript support for HTML rendering engine on KDE5 + The KJSEmbed library is an easy-to-use wrapper around the KDE ECMAScript interpreter (kjs) that makes it easy to add scriptability to an application. + mirrors://kde/stable/frameworks/5.94/portingAids/kjsembed-5.94.0.tar.xz - extra-cmake-modules qt5-base-devel - qt5-declarative-devel - qt5-quickcontrols2-devel - qt5-x11extras-devel - kconfigwidgets-devel - kiconthemes-devel - kirigami-devel - kconfig-devel - libX11-devel + qt5-svg-devel + qt5-designer-devel + kdoctools-devel + ki18n-devel + kjs-devel + docbook-xsl + extra-cmake-modules - desktop/kde/framework/qqc2-desktop-style/pspec.xml + desktop/kde/framework/kjsembed/pspec.xml - qqc2-desktop-style + kjsembed - kconfig - kirigami - qt5-base - qt5-declarative - kiconthemes - kconfigwidgets + qt5-base + qt5-svg + libgcc + ki18n + kjs + /usr/bin + /usr/share + /usr/share/locale + /usr/lib/qt5 /usr/lib + /usr/share/man /usr/share/doc + + kjsembed-devel + Development files for kjsembed + + ki18n-devel + kjs-devel + kjsembed + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + - + 2022-05-14 5.94.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-11-20 5.76.0 version bump Ali Algul aligulle3801@gmail.com - + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-09 5.70.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-02-26 + + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kmediaplayer + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 media player Plugin interface for media player features + KMediaPlayer builds on the KParts framework to provide a common interface for KParts that can play media files. + mirrors://kde/stable/frameworks/5.94/portingAids/kmediaplayer-5.94.0.tar.xz + + qt5-base-devel + kio-devel + kauth-devel + kparts-devel + ktextwidgets-devel + sonnet-devel + kxmlgui-devel + extra-cmake-modules + + desktop/kde/framework/kmediaplayer/pspec.xml + + + kmediaplayer + + qt5-base + libgcc + kparts + kxmlgui + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kmediaplayer-devel + Development files for kmediaplayer + + kmediaplayer + qt5-base-devel + kparts-devel + kxmlgui-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + knewstuff + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework for downloading and sharing additional application data + The KNewStuff library implements collaborative data sharing for applications. + mirrors://kde/stable/frameworks/5.94/knewstuff-5.94.0.tar.xz + + qt5-base-devel + qt5-declarative-devel + boost-devel + kauth-devel + ksyndication-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kjobwidgets-devel + kpackage-devel + extra-cmake-modules + kirigami-devel + + desktop/kde/framework/knewstuff/pspec.xml + + + knewstuff + + qt5-base + qt5-declarative + ksyndication + kwidgetsaddons + ktextwidgets + kiconthemes + kcompletion + kitemviews + karchive + attica + kconfig + kcoreaddons + ki18n + kio + kservice + kxmlgui + kjobwidgets + kpackage + + + /usr/bin/knewstuff-dialog + /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knewstuff-devel + Development files for knewstuff + + qt5-base-devel + attica-devel + kservice-devel + kxmlgui-devel + knewstuff + ksyndication-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-11-04 5.51.0 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-14 - 5.40.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - kdewebkit - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 WebKit integration - KdeWebkit provides KDE integration of the QtWebKit library. - mirrors://kde/stable/frameworks/5.94/portingAids/kdewebkit-5.94.0.tar.xz - - qt5-base-devel - qt5-webkit-devel - qt5-designer-devel - kauth-devel - sonnet-devel - kconfig-devel - ktextwidgets-devel - kjobwidgets-devel - kcoreaddons-devel - kparts-devel - kservice-devel - kwallet-devel - kio-devel - extra-cmake-modules - - desktop/kde/framework/kdewebkit/pspec.xml - - - kdewebkit - - qt5-webkit - kconfig - kjobwidgets - qt5-base - kcoreaddons - kparts - kservice - kwallet - kio - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/mkspecs/modules/ - /usr/share/doc - - - - kdewebkit-devel - Development files for kdewebkit - - kdewebkit - qt5-webkit-devel - kconfig-devel - kjobwidgets-devel - qt5-base-devel - kcoreaddons-devel - kparts-devel - kservice-devel - kwallet-devel - kio-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-26 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - 2018-10-17 5.51.0 @@ -46232,7 +104314,7 @@ components such as the Settings and gnome-shell. 2018-03-22 5.44.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -46260,14 +104342,14 @@ components such as the Settings and gnome-shell. 2017-10-14 5.39.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com 2017-09-13 5.38.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -46279,7 +104361,7 @@ components such as the Settings and gnome-shell. aligulle3801@gmail.com - 2017-03-01 + 2017-02-28 5.29.0 Rebuild for new Toolchain. Stefan Gronewold(groni) @@ -46336,1201 +104418,6 @@ components such as the Settings and gnome-shell. - - - bluez-qt - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.framework - Qt wrapper for KDE 5 Bluez DBus API - Qt wrapper for KDE 5 DBus API. - mirrors://kde/stable/frameworks/5.94/bluez-qt-5.94.0.tar.xz - - bluez - bluez-libs-devel - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/bluez-qt/pspec.xml - - - bluez-qt - - qt5-base - qt5-declarative - libgcc - - - /usr/lib/qt5 - /usr/lib - /etc/xdg - /usr/share/doc - /lib/udev - /usr/share/qlogging-categories5 - /usr/share/qlogging-categories5/bluez.categories - - - - bluez-qt-devel - Development files for bluez-qt - - bluez-qt - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-09 - 5.45.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdoctools - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 document generator - kdoctools is an application aims to generate documents from DocBook. - mirrors://kde/stable/frameworks/5.94/kdoctools-5.94.0.tar.xz - - qt5-base-devel - perl-URI - python - libxml2-devel - libxslt-devel - docbook-xml - docbook-xsl - docbook-sgml4_5 - ki18n-devel - karchive-devel - extra-cmake-modules - - desktop/kde/framework/kdoctools/pspec.xml - - - kdoctools - - qt5-base - libxml2 - libxslt - docbook-xml - docbook-xsl - karchive - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - kdoctools-devel - Development files for kdoctools - - qt5-base-devel - kdoctools - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.52.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwidgetsaddons - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 desktop widgets - KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets. - mirrors://kde/stable/frameworks/5.94/kwidgetsaddons-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-designer-devel - extra-cmake-modules - - desktop/kde/framework/kwidgetsaddons/pspec.xml - - - kwidgetsaddons - - qt5-base - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kwidgetsaddons-devel - Development files for kwidgetsaddons - - qt5-base-devel - kwidgetsaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - knotifications @@ -47943,7 +104830,7 @@ components such as the Settings and gnome-shell. - kded + knotifyconfig https://www.kde.org Pisi Linux Admins @@ -47951,447 +104838,2055 @@ components such as the Settings and gnome-shell. LGPLv2 library - app:console desktop.kde.framework - KDE5 daemon - Kded runs in the background and performs a number of small tasks. - mirrors://kde/stable/frameworks/5.94/kded-5.94.0.tar.xz + Configuration dialog for desktop notifications + KNotifyConfig provides a configuration dialog for desktop notifications which can be embedded in your application.. + mirrors://kde/stable/frameworks/5.94/knotifyconfig-5.94.0.tar.xz qt5-base-devel - kdoctools-devel - kcoreaddons-devel + qt5-phonon-devel + solid-devel + kauth-devel kconfig-devel - kcrash-devel - kdbusaddons-devel + kxmlgui-devel + kcompletion-devel + ki18n-devel + kio-devel + kcodecs-devel kservice-devel + kjobwidgets-devel + kbookmarks-devel + kcoreaddons-devel + kwidgetsaddons-devel + kitemviews-devel + kconfigwidgets-devel + kwindowsystem-devel + libcanberra-devel + extra-cmake-modules + + desktop/kde/framework/knotifyconfig/pspec.xml + + + knotifyconfig + + qt5-base + libcanberra + kconfig + ki18n + kio + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + knotifyconfig-devel + Development files for knotifyconfig + + knotifyconfig + qt5-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpackage + https://userbase.kde.org/KPackage + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPL + app:library + desktop.kde.framework + Framework that lets applications manage user installable packages of non-binary assets + KPackage is dependent on the Smart package manager. + mirrors://kde/stable/frameworks/5.94/kpackage-5.94.0.tar.xz + + qt5-base-devel + libX11-devel + kconfig-devel + ki18n-devel + kcoreaddons-devel + karchive-devel + kdoctools-devel + docbook-sgml4_5 docbook-xsl extra-cmake-modules - desktop/kde/framework/kded/pspec.xml + desktop/kde/framework/kpackage/pspec.xml - kded + kpackage + + qt5-base + ki18n + karchive + kcoreaddons + + + /usr/bin + /etc/xdg + /usr/lib/qt5 + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man/man1 + + + + kpackage-devel + Development files for kpackage + + kpackage + qt5-base-devel + kconfig-devel + ki18n-devel + kcoreaddons-devel + karchive-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.42.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kparts + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Plugin framework for user interface components + This library implements the framework for KDE parts, which are elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). + mirrors://kde/stable/frameworks/5.94/kparts-5.94.0.tar.xz + + qt5-base-devel + kauth-devel + knotifications-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/kparts/pspec.xml + + + kparts + + qt5-base + libgcc + kjobwidgets + kconfig + kcoreaddons + ki18n + kiconthemes + kservice + kwidgetsaddons + kxmlgui + kio + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kparts-devel + Development files for kparts + + kiconthemes-devel + kxmlgui-devel + kio-devel + ktextwidgets-devel + kparts + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-07 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpeople + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + A contact aggregation library for KDE + KPeople is a Framework for fetching contacts from different sources (Telepathy, Akonadi, Facebook, etc) and unifying them into a same model. + mirrors://kde/stable/frameworks/5.94/kpeople-5.94.0.tar.xz + + qt5-base-devel + kconfig-devel + qt5-declarative-devel + kcoreaddons-devel + qt5-sql-postgresql + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + kservice-devel + kwidgetsaddons-devel + ki18n-devel + kitemviews-devel + extra-cmake-modules + + desktop/kde/framework/kpeople/pspec.xml + + + kpeople + + qt5-base + qt5-declarative + kcoreaddons + kwidgetsaddons + ki18n + kitemviews + + + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /etc/xdg + + + + kpeople-devel + Development files for kpeople + + qt5-base-devel + kpeople + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kplotting + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 Data plotting + Kplotting contains data plotting classes for QT 5 and KDE + mirrors://kde/stable/frameworks/5.94/kplotting-5.94.0.tar.xz + + qt5-base-devel + qt5-designer-devel + extra-cmake-modules + + desktop/kde/framework/kplotting/pspec.xml + + + kplotting + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kplotting-devel + Development files for kplotting + + kplotting + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kpty + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Libraries for pseudo terminal devices + Kpty provides primitives to interface with pseudo terminal devices as well as a KProcess derived class for running child processes and communicating with them using kpty. + mirrors://kde/stable/frameworks/5.94/kpty-5.94.0.tar.xz + + qt5-base-devel + utempter-devel + kcoreaddons-devel + ki18n-devel + extra-cmake-modules + + desktop/kde/framework/kpty/pspec.xml + + + kpty qt5-base libgcc kcoreaddons - kconfig - kcrash - kdbusaddons - kservice - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/man - - - - kded-devel - Development files for kded - - kded - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdesu - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - User interface for running shell commands with root privileges - kdesu provides functionality for building GUI front ends for (password asking) console mode programs. - mirrors://kde/stable/frameworks/5.94/kdesu-5.94.0.tar.xz - - qt5-base-devel - kcoreaddons-devel - kpty-devel - kservice-devel - ki18n-devel - kconfig-devel - libX11-devel - extra-cmake-modules - - desktop/kde/framework/kdesu/pspec.xml - - - kdesu - - qt5-base - kcoreaddons - kpty - kservice ki18n - kconfig - libX11 + /usr/share /usr/share/locale /usr/lib/qt5 /usr/lib - /usr/share/qlogging-categories5/ksu.categories /usr/share/doc - kdesu-devel - Development files for kdesu + kpty-devel + Development files for kpty - kdesu - kpty-devel + kcoreaddons-devel + kpty /usr/include @@ -48403,7 +106898,7 @@ components such as the Settings and gnome-shell. 2022-05-14 5.94.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -48603,400 +107098,6 @@ components such as the Settings and gnome-shell. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcrash - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Kcrash crash handling application - KCrash provides support for intercepting and handling application crashes. - mirrors://kde/stable/frameworks/5.94/kcrash-5.94.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - kcoreaddons-devel - kwindowsystem-devel - libX11-devel - extra-cmake-modules - - desktop/kde/framework/kcrash/pspec.xml - - - kcrash - - qt5-base - libX11 - qt5-x11extras - kwindowsystem - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcrash-devel - Development files for kcrash - - qt5-base-devel - kcrash - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-24 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - 2018-10-16 5.50.0 @@ -49134,7 +107235,7 @@ components such as the Settings and gnome-shell. - kcompletion + kross https://www.kde.org Pisi Linux Admins @@ -49142,2692 +107243,51 @@ components such as the Settings and gnome-shell. LGPLv2 library - app:console desktop.kde.framework - Addon with auto completion widgets and classes - KCompletion provides widgets with advanced completion support as well as a lower-level completion class which can be used with your own widgets. - mirrors://kde/stable/frameworks/5.94/kcompletion-5.94.0.tar.xz + KDE5 application scripting helper + Kross is a scripting bridge to embed scripting functionality into an application. It supports QtScript as a scripting interpreter backend. + mirrors://kde/stable/frameworks/5.94/portingAids/kross-5.94.0.tar.xz qt5-base-devel qt5-designer-devel - qt5-linguist - kconfig-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/kcompletion/pspec.xml - - - kcompletion - - kconfig - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcompletion-devel - Development files for kcompletion - - qt5-base-devel - kcompletion - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kquickcharts - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - A QtQuick plugin providing high-performance charts - A QtQuick plugin providing high-performance charts - Yüksek performanslı grafikler sunan bir QtQuick eklentisi - Yüksek performanslı grafikler sunan bir QtQuick eklentisi - mirrors://kde/stable/frameworks/5.94/kquickcharts-5.94.0.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-quickcontrols2-devel - extra-cmake-modules - - desktop/kde/framework/kquickcharts/pspec.xml - - - kquickcharts - - libgcc - qt5-base - qt5-declarative - qt5-quickcontrols2 - - - /usr/lib - /usr/lib/qt5 - /usr/lib/cmake - /usr/share/qlogging-categories5/kquickcharts.categories - /usr/share/doc - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-19 - 5.66.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - kauth - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Abstraction to system policy and authentication features - Framework which lets applications perform actions as a privileged user - mirrors://kde/stable/frameworks/5.94/kauth-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - polkit-qt-devel + qt5-script-devel kcoreaddons-devel - extra-cmake-modules - - desktop/kde/framework/kauth/pspec.xml - - - kauth - - qt5-base - polkit-qt - kcoreaddons - libgcc - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kauth-devel - Development files for kauth - - kauth - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - solid - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 hardware integration framework - Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system. - mirrors://kde/stable/frameworks/5.94/solid-5.94.0.tar.xz - - eudev-devel - upower-devel - udisks2-devel - media-player-info - qt5-linguist - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/solid/pspec.xml - - - solid - - eudev - libplist - libutil-linux - libimobiledevice - media-player-info - qt5-base - qt5-declarative - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - solid-devel - Development files for solid - - qt5-base-devel - solid - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-02 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kfilemetadata - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 library for extracting meta data from files. - KDE library for extracting meta data from files. - mirrors://kde/stable/frameworks/5.94/kfilemetadata-5.94.0.tar.xz - - qt5-base-devel - qt5-multimedia-devel - attr-devel - ebook-tools-devel - exiv2-devel - ffmpeg-devel - taglib-devel - libappimage-devel - poppler-qt5-devel - karchive-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/framework/kfilemetadata/pspec.xml - - - kfilemetadata - - qt5-base - ebook-tools - libgcc - exiv2-libs - taglib - libappimage - ffmpeg - poppler-qt5 - karchive - kcoreaddons - ki18n - kconfig - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kfilemetadata-devel - Development files for kfilemetadata - - kfilemetadata - qt5-base-devel - ebook-tools-devel - exiv2-devel - taglib-devel - ffmpeg-devel - poppler-qt5-devel - karchive-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-24 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 5.38.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-20 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kguiaddons - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Utilities for graphical user interfaces - The KDE GUI addons provide utilities for graphical user interfaces in the areas of colors, fonts, text, images, keyboard input. Development files. - mirrors://kde/stable/frameworks/5.94/kguiaddons-5.94.0.tar.xz - - libX11-devel - libxcb-devel - wayland-devel - plasma-wayland-protocols - qt5-base-devel - qt5-wayland-devel - qt5-x11extras-devel - extra-cmake-modules - - desktop/kde/framework/kguiaddons/pspec.xml - - - kguiaddons - - libX11 - wayland-client - qt5-base - qt5-wayland - qt5-x11extras - - - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/applications - /usr/share/doc - /usr/share/qlogging-categories5/kguiaddons.categories - - - - kguiaddons-devel - Development files for kguiaddons - - kguiaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwindowsystem - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 window manager access framework - KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes. - mirrors://kde/stable/frameworks/5.94/kwindowsystem-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-x11extras-devel - libX11-devel - libgcc - libxcb-devel - libXrender-devel - libXfixes-devel - xcb-util-devel - xcb-util-keysyms-devel - extra-cmake-modules - - desktop/kde/framework/kwindowsystem/pspec.xml - - - kwindowsystem - - qt5-base - libX11 - libxcb - qt5-x11extras - libXfixes - xcb-util-keysyms - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - kwindowsystem-devel - Development files for kwindowsystem - - qt5-base-devel - libXrender-devel - libXfixes-devel - xcb-util-devel - xcb-util-keysyms-devel - kwindowsystem - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdelibs4-support - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Code and utilities to ease the transition to KDE Frameworks 5 - KDELibs4Support provides libraries to port KDE4 programs to QT5/KDE5 - mirrors://kde/stable/frameworks/5.94/portingAids/kdelibs4support-5.94.0.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-designer-devel - qt5-x11extras-devel - perl-URI - libxcb-devel - libSM-devel - docbook-xml - openssl-devel - libX11-devel - karchive-devel - kcompletion-devel - kconfig-devel + kdoctools-devel kconfigwidgets-devel - kdbusaddons-devel - kiconthemes-devel - kservice-devel - kwindowsystem-devel - kwidgetsaddons-devel - knotifications-devel - kxmlgui-devel - ki18n-devel - kio-devel - kauth-devel - kcrash-devel - kdesignerplugin - intltool - kdoctools-devel - kglobalaccel-devel - kguiaddons-devel - kparts-devel ktextwidgets-devel + kparts-devel sonnet-devel - kunitconversion-devel - kded-devel - kemoticons-devel - kdoctools-devel - kitemmodels-devel - kinit-devel - NetworkManager-devel + kauth-devel + ki18n-devel + kcompletion-devel + kiconthemes-devel + kio-devel + kparts-devel + kwidgetsaddons-devel + kxmlgui-devel docbook-xsl - libX11-devel extra-cmake-modules - desktop/kde/framework/kdelibs4-support/pspec.xml + desktop/kde/framework/kross/pspec.xml - kdelibs4-support + kross qt5-base - libICE - libxcb - libX11 - qt5-svg - qt5-x11extras - libSM - kdesignerplugin - kauth - solid - kcodecs + qt5-script kcoreaddons - kjobwidgets - kcompletion - kconfig - kconfigwidgets - kcrash - kdbusaddons - kglobalaccel - kguiaddons ki18n + kcompletion kiconthemes kio - kitemviews - knotifications kparts - kservice - ktextwidgets - kxmlgui - kwindowsystem kwidgetsaddons - qt5-designer - kded - kemoticons - kdoctools - kitemmodels - kinit - kunitconversion + kxmlgui - /etc + /usr/bin /usr/share /usr/share/locale - /usr/bin /usr/lib/qt5 /usr/lib /usr/share/doc @@ -51835,47 +107295,17 @@ components such as the Settings and gnome-shell. - kdelibs4-support-devel - Development files for kdelibs4-support + kross-devel + Development files for kross - kdelibs4-support - karchive-devel + kross qt5-base-devel - libxcb-devel - libICE-devel - libX11-devel - qt5-svg-devel - qt5-x11extras-devel - libSM-devel - kauth-devel - solid-devel - kcodecs-devel - kcoreaddons-devel - kjobwidgets-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kglobalaccel-devel - kguiaddons-devel + qt5-script-devel ki18n-devel kiconthemes-devel kio-devel - kitemviews-devel - knotifications-devel kparts-devel - kservice-devel - ktextwidgets-devel - kxmlgui-devel - kwindowsystem-devel kwidgetsaddons-devel - kded-devel - kemoticons-devel - kdoctools-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel /usr/include @@ -51884,295 +107314,288 @@ components such as the Settings and gnome-shell. - + 2022-05-14 5.94.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-11-20 5.76.0 version bump Ali Algul aligulle3801@gmail.com - + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-09 5.70.0 Version bump Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-17 5.51.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-16 5.50.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-08-11 5.46.0 - Rebuild. + Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.45.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.44.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2018-02-01 5.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-12-15 5.41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-11 5.40.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-10-14 5.39.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-09-13 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.35.0 - Rebuild + Version bump Mustafa Cinasal muscnsl@gmail.com 2017-06-20 5.35.0 - version bump. + version bump Ali Algul aligulle3801@gmail.com - 2017-03-01 + 2017-02-28 5.29.0 Rebuild for new Toolchain. Stefan Gronewold(groni) @@ -52640,768 +108063,7 @@ components such as the Settings and gnome-shell. - kdnssd - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Network service discovery using Zeroconf - KDNSSD is a library for handling the DNS-based Service Discovery Protocol (DNS-SD), the layer of Zeroconf that allows network services, such as printers, to be discovered without any user intervention or centralized infrastructure. - mirrors://kde/stable/frameworks/5.94/kdnssd-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - avahi-devel - avahi-compat-libdns_sd-devel - extra-cmake-modules - - desktop/kde/framework/kdnssd/pspec.xml - - - kdnssd - - qt5-base - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kdnssd-devel - Development files for kdnssd. - - qt5-base-devel - kdnssd - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kplotting - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Data plotting - Kplotting contains data plotting classes for QT 5 and KDE - mirrors://kde/stable/frameworks/5.94/kplotting-5.94.0.tar.xz - - qt5-base-devel - qt5-designer-devel - extra-cmake-modules - - desktop/kde/framework/kplotting/pspec.xml - - - kplotting - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kplotting-devel - Development files for kplotting - - kplotting - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - sonnet + kservice https://www.kde.org Pisi Linux Admins @@ -53411,5374 +108073,54 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - KDE spell schecking library - This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. - mirrors://kde/stable/frameworks/5.94/sonnet-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-designer-devel - hunspell-devel - aspell-devel - qt5-declarative-devel - extra-cmake-modules - - desktop/kde/framework/sonnet/pspec.xml - - - sonnet - - qt5-base - qt5-declarative - aspell - hunspell - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/bin - /usr/share/doc - - - - sonnet-devel - Development files for sonnet - - qt5-base-devel - sonnet - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-05 - 5.29.0 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - knotifyconfig - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Configuration dialog for desktop notifications - KNotifyConfig provides a configuration dialog for desktop notifications which can be embedded in your application.. - mirrors://kde/stable/frameworks/5.94/knotifyconfig-5.94.0.tar.xz + KDE5 Desktop Services + Kservice Provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. + mirrors://kde/stable/frameworks/5.94/kservice-5.94.0.tar.xz qt5-base-devel - qt5-phonon-devel - solid-devel - kauth-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - ki18n-devel - kio-devel - kcodecs-devel - kservice-devel - kjobwidgets-devel - kbookmarks-devel - kcoreaddons-devel - kwidgetsaddons-devel - kitemviews-devel - kconfigwidgets-devel - kwindowsystem-devel - libcanberra-devel - extra-cmake-modules - - desktop/kde/framework/knotifyconfig/pspec.xml - - - knotifyconfig - - qt5-base - libcanberra - kconfig - ki18n - kio - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - knotifyconfig-devel - Development files for knotifyconfig - - knotifyconfig - qt5-base-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - breeze-icons - https://projects.kde.org/projects/kde/workspace/breeze - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.framework - Breeze icon themes - İcon themes breeze - mirrors://kde/stable/frameworks/5.94/breeze-icons-5.94.0.tar.xz - - extra-cmake-modules - qt5-base-devel - libxml2-devel - python3-devel - python3-lxml - - desktop/kde/framework/breeze-icons/pspec.xml - - - breeze-icons - Breeze icon themes - - /usr/share - /usr/share/doc - - - breeze-16.svg - breeze-22.svg - breeze-dark-16.svg - breeze-dark-22.svg - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-05 - 5.88.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kapidox - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 Frameworks API documentation tools. - KDE5 Frameworks API dokümantasyon araçları. - KDE5 Frameworks API documentation tools. - KDE5 Frameworks API dokümantasyon araçları. - mirrors://kde/stable/frameworks/5.94/kapidox-5.94.0.tar.xz - - python3-Jinja2 - python3-PyYAML - extra-cmake-modules - python3-setuptools - - desktop/kde/framework/kapidox/pspec.xml - - - kapidox - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 5.87.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdesignerplugin - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - QT Designer integration for KDE5 Frameworks widgets - This framework provides plugins for Qt Designer that allow it to display the widgets provided by various KDE frameworks, as well as a utility (kgendesignerplugin) that can be used to generate other such plugins from ini-style description files. - mirrors://kde/stable/frameworks/5.94/portingAids/kdesignerplugin-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-designer kdoctools-devel - kio-devel - kauth-devel kconfig-devel - kwidgetsaddons-devel - kitemviews-devel - kiconthemes-devel kcoreaddons-devel - kcompletion-devel - kconfigwidgets-devel - kxmlgui-devel - kplotting-devel - ktextwidgets-devel - sonnet-devel - kdewebkit-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel docbook-xml docbook-xsl extra-cmake-modules - qt5-designer-devel - desktop/kde/framework/kdesignerplugin/pspec.xml + desktop/kde/framework/kservice/pspec.xml - kdesignerplugin + kservice qt5-base - libgcc kconfig kcoreaddons - qt5-designer - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kemoticons - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE emoticon manager - KEmoticons converts emoticons from text to a graphical representation with images in HTML. - mirrors://kde/stable/frameworks/5.94/kemoticons-5.94.0.tar.xz - - qt5-base-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kservice-devel - extra-cmake-modules - - desktop/kde/framework/kemoticons/pspec.xml - - - kemoticons - - qt5-base - libgcc - karchive - kcoreaddons - kconfig - kservice - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kemoticons-devel - Development files for kemoticons - - kemoticons - qt5-base-devel - kservice-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kinit - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE applications initialization utility - Process launcher to speed up launching KDE applications. - mirrors://kde/stable/frameworks/5.94/kinit-5.94.0.tar.xz - - qt5-base-devel - kdoctools-devel - libX11-devel - libcap-devel - libgcc - libxcb-devel - kcrash-devel - kcoreaddons-devel - kitemviews-devel - solid-devel - kxmlgui-devel - kjobwidgets-devel - kcompletion-devel - kwidgetsaddons-devel - kconfig-devel - kcodecs-devel - kauth-devel - kconfigwidgets-devel - kio-devel - ki18n-devel - kservice-devel - kbookmarks-devel - kdbusaddons-devel - kwindowsystem-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kinit/pspec.xml - - - kinit - - qt5-base - libX11 - libcap - libxcb - kio kcrash - kcoreaddons - kconfig - ki18n - kservice kdbusaddons - kwindowsystem - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/locale - /usr/bin - /usr/share/doc - /usr/share/man - - - - kinit-devel - Development files for kinit - - qt5-base-devel - libX11-devel - libcap-devel - libxcb-devel - kio-devel - kcrash-devel - kconfig-devel - ki18n-devel - kservice-devel - kdbusaddons-devel - kcoreaddons-devel - kwindowsystem-devel - kinit - - - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-22 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpeople - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - A contact aggregation library for KDE - KPeople is a Framework for fetching contacts from different sources (Telepathy, Akonadi, Facebook, etc) and unifying them into a same model. - mirrors://kde/stable/frameworks/5.94/kpeople-5.94.0.tar.xz - - qt5-base-devel - kconfig-devel - qt5-declarative-devel - kcoreaddons-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - kservice-devel - kwidgetsaddons-devel - ki18n-devel - kitemviews-devel - extra-cmake-modules - - desktop/kde/framework/kpeople/pspec.xml - - - kpeople - - qt5-base - qt5-declarative - kcoreaddons - kwidgetsaddons ki18n - kitemviews - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /etc/xdg - - - - kpeople-devel - Development files for kpeople - - qt5-base-devel - kpeople - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kbookmarks - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Access and manipulate bookmarks stored using XBEL format - Framework which lets you access and manipulate bookmarks stored using XBEL format - mirrors://kde/stable/frameworks/5.94/kbookmarks-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - kcoreaddons-devel - kauth-devel - kcodecs-devel - kconfig-devel - kconfigwidgets-devel - kiconthemes-devel - kwidgetsaddons-devel - kxmlgui-devel - extra-cmake-modules - - desktop/kde/framework/kbookmarks/pspec.xml - - - kbookmarks - - qt5-base - libgcc - kcoreaddons - kcodecs - kconfig - kwidgetsaddons - kxmlgui - kconfigwidgets /etc /usr/share - /usr/share/locale + /usr/share/locale + /usr/bin /usr/lib/qt5 /usr/lib + /usr/share/man /usr/share/doc - kbookmarks-devel - Development files for kbookmarks + kservice-devel + Development files for kservice - kbookmarks - qt5-base-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kio - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Resource and network access abstraction - Network transparent access to files and data - mirrors://kde/stable/frameworks/5.94/kio-5.94.0.tar.xz - - qt5-base-devel - qt5-designer-devel - qt5-declarative-devel - acl-devel - attr-devel - mit-kerberos-devel - kcrash-devel - karchive-devel + kservice kconfig-devel kcoreaddons-devel + kcrash-devel kdbusaddons-devel ki18n-devel - kservice-devel - solid-devel - sonnet-devel - kdoctools-devel - kbookmarks-devel - kwidgetsaddons-devel - kcompletion-devel - kconfigwidgets-devel - kauth-devel - kcodecs-devel - kiconthemes-devel - kitemviews-devel - kjobwidgets-devel - kwindowsystem-devel - qt5-x11extras-devel - kwallet-devel - kxmlgui-devel - ktextwidgets-devel - knotifications-devel - kguiaddons-devel - libxslt-devel - qt5-script-devel - zlib-devel - docbook-sgml4_5 - docbook-xml - docbook-xsl - extra-cmake-modules - kded-devel - libutil-linux-devel - - desktop/kde/framework/kio/pspec.xml - - - kio - - qt5-base - qt5-declarative - acl - libgcc - libxml2 - libxslt - kdoctools - mit-kerberos - kauth - kcrash - knotifications - qt5-x11extras - karchive - kconfig - kcodecs - kbookmarks - kcompletion - kconfigwidgets - kcoreaddons - kdbusaddons - ki18n - kiconthemes - kitemviews - kjobwidgets - kservice - ktextwidgets - kwallet - kwidgetsaddons - kwindowsystem - kxmlgui - solid - kguiaddons - libutil-linux - - - /etc/ - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kio-devel - Development files for kio - - qt5-base-devel - kio - kconfig-devel - kcodecs-devel - kbookmarks-devel - kcompletion-devel - kcoreaddons-devel - kitemviews-devel - kjobwidgets-devel - kservice-devel - kwindowsystem-devel - kxmlgui-devel - solid-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-13 - 5.74.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 5.70.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-20 - 5.62.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-27 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-25 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.55.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-27 - 5.54.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-14 - 5.54.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-12 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 5.46.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-03 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-06 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kross - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - KDE5 application scripting helper - Kross is a scripting bridge to embed scripting functionality into an application. It supports QtScript as a scripting interpreter backend. - mirrors://kde/stable/frameworks/5.94/portingAids/kross-5.94.0.tar.xz - - qt5-base-devel - qt5-designer-devel - qt5-script-devel - kcoreaddons-devel - kdoctools-devel - kconfigwidgets-devel - ktextwidgets-devel - kparts-devel - sonnet-devel - kauth-devel - ki18n-devel - kcompletion-devel - kiconthemes-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - kxmlgui-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kross/pspec.xml - - - kross - - qt5-base - qt5-script - kcoreaddons - ki18n - kcompletion - kiconthemes - kio - kparts - kwidgetsaddons - kxmlgui - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kross-devel - Development files for kross - - kross - qt5-base-devel - qt5-script-devel - ki18n-devel - kiconthemes-devel - kio-devel - kparts-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - frameworkintegration - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Framework providing components to allow applications to integrate with a KDE Workspace - Framework Integration is a set of plugins responsible for better integration of Qt applications when running on a KDE Plasma workspace. - mirrors://kde/stable/frameworks/5.94/frameworkintegration-5.94.0.tar.xz - - libxcb-devel - libXcursor-devel - appstream-qt5-devel - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - oxygen-fonts - kconfig-devel - kpackage-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kjobwidgets-devel - kconfigwidgets-devel - kiconthemes-devel - ki18n-devel - kauth-devel - kio-devel - knotifications-devel - kwidgetsaddons-devel - extra-cmake-modules - knewstuff-devel - - desktop/kde/framework/frameworkintegration/pspec.xml - - - frameworkintegration - - qt5-base - kconfig - kconfigwidgets - kiconthemes - ki18n - knotifications - kwidgetsaddons - knewstuff - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - frameworkintegration-devel - Development files for framework-integration - - frameworkintegration - kconfigwidgets-devel - kiconthemes-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - oxygen-icons - http://www.oxygen-icons.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPL - desktop.kde.framework - KDE Oxygen icons - "The Oxygen Icon Theme - mirrors://kde/stable/frameworks/5.94/oxygen-icons5-5.94.0.tar.xz - - extra-cmake-modules - qt5-base-devel - - desktop/kde/framework/oxygen-icons/pspec.xml - - - oxygen-icons - - /usr/share/icons - /usr/share/doc - - - 16x16.png - 16x16.png - 22x22.png - 22x22.png - 32x32.png - 32x32.png - 48x48.png - 48x48.png - 64x64.png - 64x64.png - 128x128.png - 128x128.png - 256x256.png - 256x256.png - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-11 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-04 - 5.76.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - attica - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Open Collaboration Service client library, based on Qt 5 - Attica is a library to access Open Collaboration Service servers, based on Qt 5. - mirrors://kde/stable/frameworks/5.94/attica-5.94.0.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/framework/attica/pspec.xml - - - attica - - qt5-base - libgcc - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - attica-devel - Development files for attica5 - - qt5-base-devel - attica /usr/include @@ -58958,7 +108300,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -58972,7 +108314,7 @@ components such as the Settings and gnome-shell. 2018-12-26 5.53.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -59007,7 +108349,7 @@ components such as the Settings and gnome-shell. 2018-05-14 5.46.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -59018,414 +108360,6 @@ components such as the Settings and gnome-shell. Mustafa Cinasal muscnsl@gmail.com - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kiconthemes - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 icon utilities - This library contains classes to improve the handling of icons in applications using the KDE Frameworks. - mirrors://kde/stable/frameworks/5.94/kiconthemes-5.94.0.tar.xz - - kcoreaddons-devel - qt5-base-devel - qt5-designer-devel - qt5-svg-devel - ki18n-devel - kauth-devel - karchive-devel - kcodecs-devel - kconfig-devel - kitemviews-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/framework/kiconthemes/pspec.xml - - - kiconthemes - - qt5-base - qt5-svg - kconfigwidgets - ki18n - kitemviews - kwidgetsaddons - karchive - kconfig - kcoreaddons - kconfigwidgets - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kiconthemes-devel - Development files for kiconthemes - - kiconthemes - qt5-base-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - 2018-03-22 5.44.0 @@ -59434,7 +108368,7 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2018-02-01 + 2018-02-03 5.42.0 Version bump. Mustafa Cinasal @@ -59535,1250 +108469,48 @@ components such as the Settings and gnome-shell. - kjsembed - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - JavaScript support for HTML rendering engine on KDE5 - The KJSEmbed library is an easy-to-use wrapper around the KDE ECMAScript interpreter (kjs) that makes it easy to add scriptability to an application. - mirrors://kde/stable/frameworks/5.94/portingAids/kjsembed-5.94.0.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-designer-devel - kdoctools-devel - ki18n-devel - kjs-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kjsembed/pspec.xml - - - kjsembed - - qt5-base - qt5-svg - libgcc - ki18n - kjs - - - /usr/bin - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kjsembed-devel - Development files for kjsembed - - ki18n-devel - kjs-devel - kjsembed - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpty - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Libraries for pseudo terminal devices - Kpty provides primitives to interface with pseudo terminal devices as well as a KProcess derived class for running child processes and communicating with them using kpty. - mirrors://kde/stable/frameworks/5.94/kpty-5.94.0.tar.xz - - qt5-base-devel - utempter-devel - kcoreaddons-devel - ki18n-devel - extra-cmake-modules - - desktop/kde/framework/kpty/pspec.xml - - - kpty - - qt5-base - libgcc - kcoreaddons - ki18n - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kpty-devel - Development files for kpty - - kcoreaddons-devel - kpty - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcoreaddons - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Utilities for core application functionality and accessing the OS - KCoreAddons provides classes built on top of QtCore to perform various tasks such as manipulating mime types, autosaving files, creating backup files, generating random sequences, performing text manipulations such as macro replacement, accessing user information and many more. - mirrors://kde/stable/frameworks/5.94/kcoreaddons-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - shared-mime-info - extra-cmake-modules - - desktop/kde/framework/kcoreaddons/pspec.xml - - - kcoreaddons - - qt5-base - shared-mime-info - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kcoreaddons-devel - Development files for kcoreaddons - - qt5-base-devel - kcoreaddons - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-06 - 5.63.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kxmlrpcclient + ksyndication https://www.kde.org Pisi Linux Admins admin@pisilinux.org LGPLv2 - library - app:console + app:library desktop.kde.framework - XML-RPC client library for KDE - This library contains simple XML-RPC Client support. It is used mainly by the egroupware module of kdepim, but is a complete client and is quite easy to use. Only one interface is exposed to the world, kxmlrpcclient/client.h and of that interface, you only need to use 3 methods: setUrl, setUserAgent and call. - mirrors://kde/stable/frameworks/5.94/portingAids/kxmlrpcclient-5.94.0.tar.xz + RSS/Atom parser library + syndication is a parser library for RSS and Atom feeds. + mirrors://kde/stable/frameworks/5.94/syndication-5.94.0.tar.xz qt5-base-devel - kauth-devel - kio-devel - solid-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - kjobwidgets-devel - kitemviews-devel - kcompletion-devel - kbookmarks-devel - kcoreaddons-devel - kwidgetsaddons-devel - extra-cmake-modules + kio-devel + kcodecs-devel + kdoctools-devel + extra-cmake-modules - desktop/kde/framework/kxmlrpcclient/pspec.xml + desktop/kde/framework/ksyndication/pspec.xml - kxmlrpcclient + ksyndication qt5-base + kcodecs libgcc - ki18n - kcoreaddons - kio - /etc - /usr/share - /usr/share/locale - /usr/bin + /etc/xdg /usr/lib/qt5 /usr/lib /usr/share/doc + /usr/share/qlogging-categories5/syndication.categories + /usr/share/qlogging-categories5 - kxmlrpcclient-devel - Development files for kdelibs4-support + ksyndication-devel + Development files for ksyndication - kxmlrpcclient - kio-devel + ksyndication /usr/include @@ -60787,244 +108519,714 @@ components such as the Settings and gnome-shell. - + 2022-05-14 5.94.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-11-20 5.76.0 version bump Ali Algul aligulle3801@gmail.com - + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-09 5.70.0 Version bump Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.68.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-11 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + + 2018-12-26 + 5.53.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.08.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-18 + 18.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 18.04.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-11 + 18.04.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 18.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 17.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 17.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 17.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 17.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 17.08.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-14 + 17.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-17 + 17.04.3 + Version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-06-29 + 17.04.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-03 + 16.12.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 16.12.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-02 + 16.08.3 + Version bump. + Stefan Gronewold + groni@pisilnux.org + + + 2016-10-22 + 16.08.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-11 + 16.08.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-31 + 16.04.3 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 16.04.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-03-20 + 15.12.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ktexteditor + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + KDE5 text editor libraries + KTextEditor provides a powerful text editor component that you can embed in your application. + mirrors://kde/stable/frameworks/5.94/ktexteditor-5.94.0.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + kauth-devel + kguiaddons-devel + kwidgetsaddons-devel + ktextwidgets-devel + kiconthemes-devel + kcompletion-devel + kitemviews-devel + karchive-devel + attica-devel + kconfig-devel + kcoreaddons-devel + kcmutils-devel + kdeclarative-devel + ki18n-devel + kio-devel + kglobalaccel-devel + kservice-devel + kxmlgui-devel + kbookmarks-devel + kwindowsystem-devel + sonnet-devel + kcodecs-devel + kconfigwidgets-devel + solid-devel + kparts-devel + syntax-highlighting-devel + libgit2-devel + editorconfig-core-c-devel + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/framework/ktexteditor/pspec.xml + + + ktexteditor + + kauth + libgit2 + kitemviews + editorconfig-core-c + syntax-highlighting + qt5-base + qt5-declarative + ktextwidgets + kwidgetsaddons + kconfigwidgets + kjobwidgets + kiconthemes + kcoreaddons + kcompletion + kxmlgui + kcodecs + karchive + kguiaddons + kconfig + ki18n + kio + ki18n + kparts + sonnet + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + ktexteditor-devel + Development files for ktexteditor + + kparts-devel + syntax-highlighting-devel + ktexteditor + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-22 + 5.74.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 5.70.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-21 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-17 + + 2018-10-24 5.51.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-16 5.50.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-08-11 + + 2018-08-14 5.46.0 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.45.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.44.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-02-21 + 5.42.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2018-02-01 5.42.0 @@ -61035,7 +109237,7 @@ components such as the Settings and gnome-shell. 2017-12-15 5.41.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -61536,371 +109738,7 @@ components such as the Settings and gnome-shell. - kdav - https://github.com/KDE/kdav - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - library - app:gui - desktop.kde.applications - A DAV protocol implemention with KJobs - Bir DAV protokolü uygulaması - Calendars and todos are supported, using either GroupDAV or CalDAV, and contacts are supported using GroupDAV or CardDAV. - Takvimler ve işler CalDAV veya GroupDAV'ı kullanarak desteklenir. - mirrors://kde/stable/frameworks/5.94/kdav-5.94.0.tar.xz - - libgcc - kio-devel - solid-devel - kauth-devel - ki18n-devel - kxmlgui-devel - kcodecs-devel - kcoreaddons-devel - kconfig-devel - extra-cmake-modules - kservice-devel - kitemviews-devel - kbookmarks-devel - kcompletion-devel - kjobwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - qt5-base-devel - qt5-xmlpatterns-devel - - desktop/kde/framework/kdav/pspec.xml - - - kdav - - kio - ki18n - libgcc - kcoreaddons - qt5-base - qt5-xmlpatterns - - - /usr/bin - /usr/share/locale - /usr/lib - /etc/xdg - /usr/share - - - - kdav-devel - Development files for kdav - kdav için geliştirme dosyaları - - kdav - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/share/apps/cmake - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-14 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - ki18n + kunitconversion https://www.kde.org Pisi Linux Admins @@ -61909,24 +109747,21 @@ components such as the Settings and gnome-shell. LGPLv2 library desktop.kde.framework - KDE Gettext-based UI text internationalization. - KDE grafik arabirim yerelleştirme kitaplığı - KI18n provides functionality for internationalizing user interface text in applications, based on the GNU Gettext translation system. - ki18n, KDE Frameworks 5 için, Gettext tabanlı bir grafik arabirim yerelleştirme kitaplığıdır - mirrors://kde/stable/frameworks/5.94/ki18n-5.94.0.tar.xz + KDE unit conversion framework + KUnitConversion provides functions to convert values in different physical units. + mirrors://kde/stable/frameworks/5.94/kunitconversion-5.94.0.tar.xz - qt5-base-devel - qt5-script-devel - qt5-declarative-devel + qt5-base-devel + ki18n-devel extra-cmake-modules - desktop/kde/framework/ki18n/pspec.xml + desktop/kde/framework/kunitconversion/pspec.xml - ki18n + kunitconversion - qt5-base - qt5-declarative + qt5-base + ki18n /usr/share @@ -61934,15 +109769,14 @@ components such as the Settings and gnome-shell. /usr/lib/qt5 /usr/lib /usr/share/doc - /usr/share/man - ki18n-devel - Development files for kde5-ki18n - ki18n için geliştirme dosyaları + kunitconversion-devel + Development files for kunitconversion - ki18n + qt5-base-devel + kunitconversion /usr/include @@ -62122,7 +109956,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -62157,7 +109991,7 @@ components such as the Settings and gnome-shell. 2018-10-16 5.50.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -62199,14 +110033,14 @@ components such as the Settings and gnome-shell. 2017-12-15 5.41.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com 2017-11-11 5.40.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -62227,7 +110061,7 @@ components such as the Settings and gnome-shell. 2017-06-20 5.35.0 - version bump + version bump. Ali Algul aligulle3801@gmail.com @@ -62238,447 +110072,6 @@ components such as the Settings and gnome-shell. Stefan Gronewold(groni) groni@pisilinux.org - - 2016-12-20 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - khtml - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - HTML rendering engine for KDE - KHTML is a web rendering engine, based on the KParts technology and using KJS for JavaScript support. - mirrors://kde/stable/frameworks/5.94/portingAids/khtml-5.94.0.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libjpeg-turbo-devel - giflib-devel - libpng-devel - qt5-phonon-devel - libX11-devel - zlib-devel - kio-devel - kjs-devel - karchive-devel - knotifications-devel - kglobalaccel-devel - kauth-devel - kparts-devel - kwallet-devel - ktextwidgets-devel - sonnet-devel - openssl-devel - gperf - extra-cmake-modules - - desktop/kde/framework/khtml/pspec.xml - - - khtml - - qt5-base - qt5-x11extras - qt5-phonon - zlib - giflib - libX11 - libgcc - libpng - libjpeg-turbo - sonnet - kcodecs - kconfig - kjobwidgets - kwidgetsaddons - kcompletion - karchive - kconfigwidgets - kcoreaddons - kglobalaccel - ki18n - kiconthemes - kio - kjs - knotifications - kparts - kservice - ktextwidgets - kwallet - kwindowsystem - kxmlgui - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - khtml-devel - Development files for khtml - - khtml - qt5-base-devel - kcodecs-devel - ki18n-devel - kio-devel - kjs-devel - kparts-devel - ktextwidgets-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - 2016-12-21 5.29.0 @@ -62732,7 +110125,160 @@ components such as the Settings and gnome-shell. - kactivities-stats + kuserfeedback + https://kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + desktop.kde.framework + Framework for collecting user feedback for applications via telemetry and surveys + Framework for collecting user feedback for applications via telemetry and surveys + Framework for collecting user feedback for applications via telemetry and surveys + Framework for collecting user feedback for applications via telemetry and surveys + mirrors://kde/stable/kuserfeedback/kuserfeedback-1.2.0.tar.xz + + qt5-linguist + qt5-svg-devel + qt5-sql-odbc + qt5-sql-mysql + qt5-sql-sqlite + qt5-base-devel + qt5-charts-devel + qt5-assistant-devel + qt5-sql-postgresql + extra-cmake-modules + qt5-declarative-devel + + desktop/kde/framework/kuserfeedback/pspec.xml + + + kuserfeedback + + qt5-svg + qt5-base + qt5-charts + qt5-declarative + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + kuserfeedback-devel + Development files for kuserfeedback + + kuserfeedback + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-14 + 1.2.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2022-04-12 + 1.2.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2022-01-08 + 1.2.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2021-12-12 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2021-11-13 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2021-09-12 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2021-07-10 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2021-06-15 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2021-01-10 + 1.0.0 + Rebuild. + Mustafa Cinasal + admins@pisilinux.org + + + 2020-09-12 + 1.0.0 + Rebuild + Mustafa Cinasal + admins@pisilinux.org + + + 2020-05-09 + 1.0.0 + Rebuild + Mustafa Cinasal + admins@pisilinux.org + + + 2020-03-31 + 1.0.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kwallet https://www.kde.org Pisi Linux Admins @@ -62742,48 +110288,65 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - Library for KDE's Plasma Activities support - Kactivities provides an API for using and interacting with the Plasma Activities Manager. - mirrors://kde/stable/frameworks/5.94/kactivities-stats-5.94.0.tar.xz + KDE password storage framework + This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. + mirrors://kde/stable/frameworks/5.94/kwallet-5.94.0.tar.xz + libxslt + docbook-xsl qt5-base-devel - boost-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc + libgcrypt-devel + gpgme-devel + kauth-devel + gpgme-qt5-devel + kcodecs-devel + kconfigwidgets-devel kconfig-devel - kactivities-devel + kdoctools-devel + kcoreaddons-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel extra-cmake-modules - desktop/kde/framework/kactivities-stats/pspec.xml + desktop/kde/framework/kwallet/pspec.xml - kactivities-stats + kwallet qt5-base - libgcc + gpgme + libgcrypt kconfig - kactivities + kcoreaddons + kdbusaddons + ki18n + knotifications + kservice + kwidgetsaddons + kwindowsystem + kconfigwidgets /etc/xdg /usr/share /usr/share/locale - /usr/bin /usr/lib/qt5 /usr/lib + /usr/bin /usr/share/doc - kactivities-stats-devel - Development files for kactivities-stats + kwallet-devel + Development files for kwallet + kwallet qt5-base-devel - kconfig-devel - kactivities-devel - kactivities-stats /usr/include @@ -62795,7 +110358,7 @@ components such as the Settings and gnome-shell. 2022-05-14 5.94.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -62914,14 +110477,14 @@ components such as the Settings and gnome-shell. 2020-05-09 5.70.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com 2020-03-29 5.68.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -63075,50 +110638,458 @@ components such as the Settings and gnome-shell. 2017-02-28 5.29.0 - Rebuild for new toolchain. + Rebuild for new Toolchain. Stefan Gronewold(groni) groni@pisilinux.org - + 2016-12-21 5.29.0 Version bump. Stefan Gronewold(groni) groni@pisilinux.org - + 2016-11-26 5.28.0 Version bump. Stefan Gronewold(groni) groni@pisilinux.org - + 2016-10-22 5.27.0 Version bump. Yusuf Aydemir yusuf.aydemir@pisilnux.org - + 2016-10-04 5.26.0 Version bump. Yusuf Aydemir yusuf.aydemir@pisilnux.org + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + - 2016-07-31 - 5.24 - Version release. - Ertuğrul Erata - ertugrulerata@gmail.com + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - kidletime + kwayland + https://www.kde.org + + Stefan Gronewold(groni) + groni@pisilinux.org + + LGPLv3 + library + desktop.kde.framework + Qt-style Client and Server library wrapper for the Wayland libraries + Qt-style Client and Server library wrapper for the Wayland libraries + mirrors://kde/stable/frameworks/5.94/kwayland-5.94.0.tar.xz + + qt5-base-devel + qt5-wayland-devel + libglvnd-devel + wayland-devel + wayland-protocols-devel + mesa-devel + extra-cmake-modules + plasma-wayland-protocols + + desktop/kde/framework/kwayland/pspec.xml + + + kwayland + + qt5-base + libglvnd + wayland-client + wayland-server + + + /etc/xdg + /usr/lib + /usr/share/config + /usr/share/doc + /usr/share/qlogging-categories5 + /usr/share/qlogging-categories5/org_kde_kwayland.categories + + + + kwayland-devel + + qt5-base-devel + kwayland + + + /usr/lib/cmake + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.76.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-30 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwidgetsaddons https://www.kde.org Pisi Linux Admins @@ -63128,43 +111099,37 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - Idle time reporting utility - KIdleTime is a singleton reporting information on idle time. It is useful not only for finding out about the current idle time of the PC, but also for getting notified upon idle time events, such as custom timeouts, or user activity. - mirrors://kde/stable/frameworks/5.94/kidletime-5.94.0.tar.xz + KDE5 desktop widgets + KdeWidgetsAddons is a framework contains addon widgets and shared libraries for applications using Qt5-Widgets. + mirrors://kde/stable/frameworks/5.94/kwidgetsaddons-5.94.0.tar.xz qt5-base-devel - qt5-x11extras-devel - libX11-devel - libXext-devel - libXScrnSaver-devel - libxcb-devel + qt5-linguist + qt5-designer-devel extra-cmake-modules - desktop/kde/framework/kidletime/pspec.xml + desktop/kde/framework/kwidgetsaddons/pspec.xml - kidletime + kwidgetsaddons qt5-base - libX11 - libxcb - libXScrnSaver - libXext - qt5-x11extras + libgcc - /etc/xdg/kidletime.categories /usr/share + /usr/share/locale /usr/lib/qt5 /usr/lib /usr/share/doc - kidletime-devel - Development files for kidletime + kwidgetsaddons-devel + Development files for kwidgetsaddons - kidletime + qt5-base-devel + kwidgetsaddons /usr/include @@ -63302,7 +111267,7 @@ components such as the Settings and gnome-shell. 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -63344,7 +111309,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -63428,7 +111393,7 @@ components such as the Settings and gnome-shell. 2017-11-11 5.40.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -63449,7 +111414,7 @@ components such as the Settings and gnome-shell. 2017-06-20 5.35.0 - version bump + version bump. Ali Algul aligulle3801@gmail.com @@ -63513,152 +111478,828 @@ components such as the Settings and gnome-shell. - plasma-wayland-protocols - https://kde.org/plasma-desktop + kwindowsystem + https://www.kde.org - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - LGPLv3 + LGPLv2 library + app:console desktop.kde.framework - Plasma Specific Protocols for Wayland - Plasma Specific Protocols for Wayland - Wayland için Plazma Özel Protokoller - Wayland için Plazma Özel Protokoller - https://download.kde.org/stable/plasma-wayland-protocols/plasma-wayland-protocols-1.7.0.tar.xz + KDE5 window manager access framework + KWindowSystem provides information about the state of the window manager and allows asking the window manager to change the using a more high-level interface than the NETWinInfo/NETRootInfo low-level classes. + mirrors://kde/stable/frameworks/5.94/kwindowsystem-5.94.0.tar.xz - qt5-base-devel - extra-cmake-modules + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + libX11-devel + libgcc + libxcb-devel + libXrender-devel + libXfixes-devel + xcb-util-devel + xcb-util-keysyms-devel + extra-cmake-modules - desktop/kde/framework/plasma-wayland-protocols/pspec.xml + desktop/kde/framework/kwindowsystem/pspec.xml - plasma-wayland-protocols + kwindowsystem + + qt5-base + libX11 + libxcb + qt5-x11extras + libXfixes + xcb-util-keysyms + - /usr/lib + /etc/xdg /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin /usr/share/doc + + kwindowsystem-devel + Development files for kwindowsystem + + qt5-base-devel + libXrender-devel + libXfixes-devel + xcb-util-devel + xcb-util-keysyms-devel + kwindowsystem + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + - + 2022-05-14 - 1.7.0 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2022-04-12 - 1.6.0 - Rebuild. + 2018-03-22 + 5.44.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2022-01-27 - 1.6.0 + 2018-02-01 + 5.42.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2022-01-08 - 1.5.0 - Rebuild. + 2017-12-15 + 5.41.0 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2021-12-12 - 1.5.0 - Rebuild. + 2017-11-11 + 5.40.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-11-13 - 1.5.0 + 2017-10-14 + 5.39.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-10-10 - 1.4.0 - Rebuild. + 2017-09-13 + 5.38.0 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2021-09-12 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com - 2021-07-10 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org - 2021-06-15 - 1.3.0 + 2016-12-20 + 5.29.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Stefan Gronewold(groni) + groni@pisilinux.org - 2021-04-10 - 1.2.1 + 2016-11-26 + 5.28.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Stefan Gronewold(groni) + groni@pisilinux.org - 2021-03-29 - 1.2.0 + 2016-10-22 + 5.27.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Yusuf Aydemir + yusuf.aydemir@pisilnux.org - 2021-03-14 - 1.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org - 2021-01-10 - 1.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2020-09-01 - 1.1.1 + 2016-05-17 + 5.22.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Burak Ertürk + burakerturk@pisilinux.org - 2020-06-01 - 1.0 + 2016-04-13 + 5.21.0 First release - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - baloo + kxmlgui + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + desktop.kde.framework + Framework for managing menu and toolbar actions + Kxmlgui provides a framework for managing menu and toolbar actions in an abstract way. + mirrors://kde/stable/frameworks/5.94/kxmlgui-5.94.0.tar.xz + + qt5-base-devel + qt5-designer-devel + attica-devel + kcoreaddons-devel + kconfig-devel + kconfigwidgets-devel + kauth-devel + kcodecs-devel + sonnet-devel + kglobalaccel-devel + ki18n-devel + kguiaddons-devel + kiconthemes-devel + kitemviews-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + extra-cmake-modules + + desktop/kde/framework/kxmlgui/pspec.xml + + + kxmlgui + + qt5-base + libgcc + attica + kcoreaddons + kconfig + kconfigwidgets + kglobalaccel + ki18n + kguiaddons + kiconthemes + kitemviews + kwidgetsaddons + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kxmlgui-devel + Development files for kxmlgui + + kxmlgui + qt5-base-devel + kconfig-devel + kconfigwidgets-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-21 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-06 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kxmlrpcclient https://www.kde.org Pisi Linux Admins @@ -63668,51 +112309,36 @@ components such as the Settings and gnome-shell. library app:console desktop.kde.framework - Framework for searching and managing metadata - Baloo is a framework for searching and managing metada - mirrors://kde/stable/frameworks/5.94/baloo-5.94.0.tar.xz + XML-RPC client library for KDE + This library contains simple XML-RPC Client support. It is used mainly by the egroupware module of kdepim, but is a complete client and is quite easy to use. Only one interface is exposed to the world, kxmlrpcclient/client.h and of that interface, you only need to use 3 methods: setUrl, setUserAgent and call. + mirrors://kde/stable/frameworks/5.94/portingAids/kxmlrpcclient-5.94.0.tar.xz qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kdbusaddons-devel kauth-devel - kconfig-devel - kcrash-devel - ki18n-devel - kcompletion-devel - kidletime-devel kio-devel solid-devel - kxmlgui-devel - kfilemetadata-devel - kdoctools-devel - kbookmarks-devel - kitemviews-devel - kjobwidgets-devel - kwidgetsaddons-devel - lmdb-devel + ki18n-devel + kconfig-devel kservice-devel + kxmlgui-devel + kjobwidgets-devel + kitemviews-devel + kcompletion-devel + kbookmarks-devel + kcoreaddons-devel + kwidgetsaddons-devel extra-cmake-modules - desktop/kde/framework/baloo/pspec.xml + desktop/kde/framework/kxmlrpcclient/pspec.xml - baloo + kxmlrpcclient qt5-base - qt5-declarative - kcoreaddons - kdbusaddons libgcc - kconfig - kcrash ki18n - kidletime + kcoreaddons kio - solid - kfilemetadata - lmdb /etc @@ -63725,13 +112351,11 @@ components such as the Settings and gnome-shell. - baloo-devel - Development files for baloo-widgets + kxmlrpcclient-devel + Development files for kdelibs4-support - baloo - qt5-base-devel - kcoreaddons-devel - kfilemetadata-devel + kxmlrpcclient + kio-devel /usr/include @@ -63827,7 +112451,7 @@ components such as the Settings and gnome-shell. 2021-02-13 5.79.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -63937,7 +112561,7 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2018-10-24 + 2018-10-17 5.51.0 Version bump. Mustafa Cinasal @@ -63988,7 +112612,7 @@ components such as the Settings and gnome-shell. 2017-12-15 5.41.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -64080,7 +112704,7 @@ components such as the Settings and gnome-shell. - knewstuff + modemmanager-qt https://www.kde.org Pisi Linux Admins @@ -64088,87 +112712,40 @@ components such as the Settings and gnome-shell. LGPLv2 library + app:console desktop.kde.framework - Framework for downloading and sharing additional application data - The KNewStuff library implements collaborative data sharing for applications. - mirrors://kde/stable/frameworks/5.94/knewstuff-5.94.0.tar.xz + Qt wrapper for ModemManager DBus API + Qt wrapper for ModemManager DBus API + mirrors://kde/stable/frameworks/5.94/modemmanager-qt-5.94.0.tar.xz - qt5-base-devel - qt5-declarative-devel - boost-devel - kauth-devel - ksyndication-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kjobwidgets-devel - kpackage-devel + qt5-base-devel + ModemManager-devel extra-cmake-modules - kirigami-devel - desktop/kde/framework/knewstuff/pspec.xml + desktop/kde/framework/modemmanager-qt/pspec.xml - knewstuff + modemmanager-qt - qt5-base - qt5-declarative - ksyndication - kwidgetsaddons - ktextwidgets - kiconthemes - kcompletion - kitemviews - karchive - attica - kconfig - kcoreaddons - ki18n - kio - kservice - kxmlgui - kjobwidgets - kpackage + qt5-base + libgcc - /usr/bin/knewstuff-dialog /etc/xdg /usr/share /usr/share/locale + /usr/bin /usr/lib/qt5 /usr/lib /usr/share/doc - knewstuff-devel - Development files for knewstuff + modemmanager-qt-devel + Development files for modemmanger-qt - qt5-base-devel - attica-devel - kservice-devel - kxmlgui-devel - knewstuff - ksyndication-devel + qt5-base-devel + modemmanager-qt /usr/include @@ -64177,142 +112754,149 @@ components such as the Settings and gnome-shell. - + 2022-05-14 5.94.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-04-12 5.93.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.91.0 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-08 5.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-12 5.89.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-13 5.88.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-10 5.87.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-09-12 5.86.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-11 5.84.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-08 5.82.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-13 5.80.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-02-13 5.79.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.78.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-11-20 + + 2020-09-12 5.76.0 - version bump. - Ali Algul - aligulle3801@gmail.com + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - + 2020-09-12 5.74.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-13 5.71.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-05-09 + + 2020-05-20 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 Version bump Mustafa Cinasal muscnsl@gmail.com - 2020-03-29 - 5.68.0 + 2020-01-11 + 5.66.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-11 - 5.66.0 + 2019-10-26 + 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -64341,7 +112925,7 @@ components such as the Settings and gnome-shell. 2019-03-11 5.56.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -64374,477 +112958,493 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2018-11-04 + 2018-10-17 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 5.35.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-09 + 5.29.0 + Rebuild for new toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + networkmanager-qt + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + A QT wrapper around the NetworkManager libraries + A QT wrapper around the NetworkManager libraries + mirrors://kde/stable/frameworks/5.94/networkmanager-qt-5.94.0.tar.xz + + qt5-base-devel + NetworkManager-devel + extra-cmake-modules + + desktop/kde/framework/networkmanager-qt/pspec.xml + + + networkmanager-qt + + qt5-base + NetworkManager + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + networkmanager-qt-devel + Development files for networkmanager-qt + + qt5-base-devel + networkmanager-qt + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.76.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-17 + 5.62.0 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kitemviews - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - Set of item models extending the Qt model-view framework - KItemViews includes a set of views, which can be used with item models. It includes views for categorizing lists and to add search filters to flat and hierarchical lists. - mirrors://kde/stable/frameworks/5.94/kitemviews-5.94.0.tar.xz - - qt5-base-devel - qt5-linguist - qt5-designer-devel - extra-cmake-modules - - desktop/kde/framework/kitemviews/pspec.xml - - - kitemviews - - qt5-base - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kitemviews-devel - Development files for kitemviews - - qt5-base-devel - kitemviews - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-09-15 5.62.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.60.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.57.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-11 5.56.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-09 5.55.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.54.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.53.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-10 5.52.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-17 5.51.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-16 5.50.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - - 2018-08-11 + + 2018-08-14 5.46.0 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.46.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.45.0 - Version bump + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-03-22 - 5.44.0 + 2018-02-01 + 5.42.0 Version bump Mustafa Cinasal muscnsl@gmail.com - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-12-15 5.41.0 Version bump Mustafa Cinasal muscnsl@gmail.com - + 2017-11-11 5.40.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2017-10-14 5.39.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-09-13 5.38.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2017-07-30 + 5.35.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2017-06-20 5.35.0 @@ -64853,9 +113453,9 @@ components such as the Settings and gnome-shell. aligulle3801@gmail.com - 2017-02-27 + 2017-03-23 5.29.0 - Rebuild for new Toolchain. + Rebuild for new toolchain. Stefan Gronewold(groni) groni@pisilinux.org @@ -64912,55 +113512,45 @@ components such as the Settings and gnome-shell. - kconfig - https://www.kde.org + oxygen-icons + http://www.oxygen-icons.org - Pisi Linux Admins - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - LGPLv2 - library - app:console - app:gui + LGPL desktop.kde.framework - Advanced configuration system for KDE Frameworks 5 - Kconfig provides advanced libraries and tools for accessing configuration files. - mirrors://kde/stable/frameworks/5.94/kconfig-5.94.0.tar.xz + KDE Oxygen icons + "The Oxygen Icon Theme + mirrors://kde/stable/frameworks/5.94/oxygen-icons5-5.94.0.tar.xz - qt5-base-devel - qt5-declarative-devel - qt5-linguist - extra-cmake-modules + extra-cmake-modules + qt5-base-devel - desktop/kde/framework/kconfig/pspec.xml + desktop/kde/framework/oxygen-icons/pspec.xml - kconfig - - qt5-base - qt5-declarative - + oxygen-icons - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib + /usr/share/icons /usr/share/doc - - - kconfig-devel - Development files for kconfig - - qt5-base-devel - kconfig - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - + + 16x16.png + 16x16.png + 22x22.png + 22x22.png + 32x32.png + 32x32.png + 48x48.png + 48x48.png + 64x64.png + 64x64.png + 128x128.png + 128x128.png + 256x256.png + 256x256.png + @@ -65041,7 +113631,7 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2021-03-13 + 2021-04-11 5.80.0 Version bump. Mustafa Cinasal @@ -65062,11 +113652,11 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2020-11-20 + 2020-12-04 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com + Version bump. + Mustafa Cinasal + muscnsl@gmail.com 2020-09-12 @@ -65092,7 +113682,7 @@ components such as the Settings and gnome-shell. 2020-03-29 5.68.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -65134,7 +113724,7 @@ components such as the Settings and gnome-shell. 2019-02-09 5.55.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -65169,7 +113759,7 @@ components such as the Settings and gnome-shell. 2018-10-16 5.50.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -65239,7 +113829,7 @@ components such as the Settings and gnome-shell. 2017-06-20 5.35.0 - version bump + version bump. Ali Algul aligulle3801@gmail.com @@ -65301,1246 +113891,6 @@ components such as the Settings and gnome-shell. - - - kparts - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.framework - Plugin framework for user interface components - This library implements the framework for KDE parts, which are elaborate widgets with a user-interface defined in terms of actions (menu items, toolbar icons). - mirrors://kde/stable/frameworks/5.94/kparts-5.94.0.tar.xz - - qt5-base-devel - kauth-devel - knotifications-devel - kwidgetsaddons-devel - ktextwidgets-devel - kiconthemes-devel - kcompletion-devel - kitemviews-devel - karchive-devel - attica-devel - kconfig-devel - kcoreaddons-devel - kcmutils-devel - kdeclarative-devel - ki18n-devel - kio-devel - kglobalaccel-devel - kservice-devel - kxmlgui-devel - kbookmarks-devel - kwindowsystem-devel - sonnet-devel - kcodecs-devel - kconfigwidgets-devel - solid-devel - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/framework/kparts/pspec.xml - - - kparts - - qt5-base - libgcc - kjobwidgets - kconfig - kcoreaddons - ki18n - kiconthemes - kservice - kwidgetsaddons - kxmlgui - kio - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kparts-devel - Development files for kparts - - kiconthemes-devel - kxmlgui-devel - kio-devel - ktextwidgets-devel - kparts - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kservice - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.framework - KDE5 Desktop Services - Kservice Provides a plugin framework for handling desktop services. Services can be applications or libraries. They can be bound to MIME types or handled by application specific code. - mirrors://kde/stable/frameworks/5.94/kservice-5.94.0.tar.xz - - qt5-base-devel - kdoctools-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - docbook-xml - docbook-xsl - extra-cmake-modules - - desktop/kde/framework/kservice/pspec.xml - - - kservice - - qt5-base - kconfig - kcoreaddons - kcrash - kdbusaddons - ki18n - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - kservice-devel - Development files for kservice - - kservice - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kconfigwidgets - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.framework - Kconfig widgets - KConfigWidgets provides easy-to-use classes to create configuration dialogs, as well as a set of widgets which uses KConfig to store their settings. - mirrors://kde/stable/frameworks/5.94/kconfigwidgets-5.94.0.tar.xz - - qt5-base-devel - ki18n-devel - kauth-devel - kcodecs-devel - kconfig-devel - kcoreaddons-devel - kguiaddons-devel - kwidgetsaddons-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - qt5-designer-devel - - desktop/kde/framework/kconfigwidgets/pspec.xml - - - kconfigwidgets - - libgcc - qt5-base - kauth - kcodecs - kconfig - kcoreaddons - kguiaddons - ki18n - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man - - - - kconfigwidgets-devel - Development files for kconfigwidgets - - kconfigwidgets - kauth-devel - kcodecs-devel - kconfig-devel - kwidgetsaddons-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-14 - 5.94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-12 - 5.93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.91.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-08 - 5.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-12 - 5.89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-13 - 5.88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 5.87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 5.86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-11 - 5.84.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 5.82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 5.80.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 5.79.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.78.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-20 - 5.76.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2020-09-12 - 5.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-13 - 5.71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 5.70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 5.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.62.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.60.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.57.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 5.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.53.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-10 - 5.52.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.46.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.45.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 5.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-20 - 5.35.0 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-02-27 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 5.29.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.28.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 5.27.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-04 - 5.26.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-21 - 5.24.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-17 - 5.22.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 5.21.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - plasma-framework @@ -67007,168 +114357,2730 @@ components such as the Settings and gnome-shell. - kphotoalbum - https://www.kphotoalbum.org/ + plasma-wayland-protocols + https://kde.org/plasma-desktop - Stefan Gronewold - groni@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPL - desktop.kde.graphics - KDE Photo Album, picture collection manager - With KPhotoAlbum it is today possible for me to find any image I have in less than 5 seconds, let that be an image with a special person, an image from a special place, or even both. - http://download.kde.org/stable/kphotoalbum/5.7.0/kphotoalbum-5.7.0.tar.xz + LGPLv3 + library + desktop.kde.framework + Plasma Specific Protocols for Wayland + Plasma Specific Protocols for Wayland + Wayland için Plazma Özel Protokoller + Wayland için Plazma Özel Protokoller + https://download.kde.org/stable/plasma-wayland-protocols/plasma-wayland-protocols-1.7.0.tar.xz - extra-cmake-modules - kdoctools-devel - kparts-devel - libkexiv2-devel - qt5-phonon-devel - plasma-framework-devel - qt5-base-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - libjpeg-turbo-devel - exiv2-devel - libkdcraw-devel - libkgeomap-devel - libkipi-devel - qt5-webkit-devel - karchive-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kjobwidgets-devel - ktextwidgets-devel - kwidgetsaddons-devel - kxmlgui-devel - pkgconfig - purpose-devel - marble-devel - qt5-webengine-devel + qt5-base-devel + extra-cmake-modules - desktop/kde/graphics/kphotoalbum/pspec.xml + desktop/kde/framework/plasma-wayland-protocols/pspec.xml - kphotoalbum - KDE Photo Album, picture collection manager - - kio - ki18n - libgcc - kconfig - kxmlgui - karchive - kservice - qt5-base - exiv2-libs - qt5-phonon - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktextwidgets - libjpeg-turbo - kconfigwidgets - kwidgetsaddons - libkipi - libkdcraw - libkgeomap - purpose - + plasma-wayland-protocols - /etc/xdg - /usr/bin /usr/lib /usr/share /usr/share/doc + + 2022-05-14 + 1.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 1.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-27 + 1.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-08 + 1.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 1.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + - 2020-09-19 - 5.7.0 + 2021-11-13 + 1.5.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-03-15 - 5.6.1 - Version bump. + 2021-10-10 + 1.4.0 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2019-09-18 - 5.5 + 2021-09-12 + 1.4.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-02-14 - 5.4.2 + 2021-07-10 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-10 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-29 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 1.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 1.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-01 + 1.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-01 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + prison + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + desktop.kde.framework + A barcode API to produce QRCode barcodes and DataMatrix barcode + A barcode API to produce QRCode barcodes and DataMatrix barcode. + mirrors://kde/stable/frameworks/5.94/prison-5.94.0.tar.xz + + libdmtx-devel + qrencode-devel + qt5-base-devel + extra-cmake-modules + qt5-declarative-devel + + desktop/kde/framework/prison/pspec.xml + + + prison + + libdmtx + qrencode + qt5-base + qt5-declarative + + + /etc/xdg + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/share/qlogging-categories5/prison.categories + /usr/share/qlogging-categories5/prison.renamecategories + + + prison-qt5 + + + prison-qt5 + + + + prison-devel + Development files for libepoxy + + prison + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + prison-qt5-devel + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.76.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-23 + 5.46.0 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-11 + 5.46.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-27 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-22 + 1.2.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-01-17 + 1.2.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + purpose + https://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.kde.framework + Framework for providing abstractions to get the developer's purposes fulfilled + Framework for providing abstractions to get the developer's purposes fulfilled + Framework for providing abstractions to get the developer's purposes fulfilled + Framework for providing abstractions to get the developer's purposes fulfilled + mirrors://kde/stable/frameworks/5.94/purpose-5.94.0.tar.xz + + intltool + kio-devel + ki18n-devel + kauth-devel + kconfig-devel + kirigami-devel + kcoreaddons-devel + kdeclarative-devel + extra-cmake-modules + accounts-qml-module + knotifications-devel + libaccounts-glib-devel + qt5-base-devel + qt5-declarative-devel + + desktop/kde/framework/purpose/pspec.xml + + + purpose + + kio + ki18n + kauth + libgcc + kconfig + qt5-base + kcoreaddons + knotifications + libaccounts-qt5 + qt5-declarative + + + /etc/xdg + /usr/lib + /usr/share + /usr/share/doc + + + + purpose-devel + Development files for purpose + + purpose + kcoreaddons-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 Version bump Mustafa Cinasal muscnsl@gmail.com - 2019-01-20 - 5.4 - Rebuild + 2018-04-25 + 5.45.0 + First release Mustafa Cinasal muscnsl@gmail.com - 2018-11-13 - 5.4 - Rebuild + 2018-04-25 + 1.2.1 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2018-10-14 - 5.4 - Version Bump + 2018-03-23 + 1.2.1 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2018-08-11 - 5.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-02-03 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-02-06 - 5.3 - Version Bump + 2017-10-21 + 1.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-10-06 - 5.2 - Version Bump + 2017-10-16 + 1.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-01-09 - 5.1 + 2017-09-18 + 1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qqc2-desktop-style + https://download.kde.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv2 + library + desktop.kde.framework + A style for Qt Quick Controls 2 to make it follow your desktop theme + A style for Qt Quick Controls 2 to make it follow your desktop theme + Qt Quick Controls 2 nin masaüstünüzdeki temayı takip etmesini sağlayan bir stil + Qt Quick Controls 2 nin masaüstünüzdeki temayı takip etmesini sağlayan bir stil + https://download.kde.org/stable/frameworks/5.94/qqc2-desktop-style-5.94.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-quickcontrols2-devel + qt5-x11extras-devel + kconfigwidgets-devel + kiconthemes-devel + kirigami-devel + kconfig-devel + libX11-devel + + desktop/kde/framework/qqc2-desktop-style/pspec.xml + + + qqc2-desktop-style + + kconfig + kirigami + qt5-base + qt5-declarative + kiconthemes + kconfigwidgets + + + /usr/lib + /usr/share/doc + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-04 + 5.51.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-14 + 5.40.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + solid + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE5 hardware integration framework + Solid is a device integration framework.It provides a way of querying and interacting with hardware independently of the underlying operating system. + mirrors://kde/stable/frameworks/5.94/solid-5.94.0.tar.xz + + eudev-devel + upower-devel + udisks2-devel + media-player-info + qt5-linguist + qt5-base-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/solid/pspec.xml + + + solid + + eudev + libplist + libutil-linux + libimobiledevice + media-player-info + qt5-base + qt5-declarative + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + solid-devel + Development files for solid + + qt5-base-devel + solid + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-02 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + sonnet + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + KDE spell schecking library + This framework contains two main components: Interface to KWallet, the safe desktop-wide storage for passwords on KDE workspaces. The kwalletd used to safely store the passwords on KDE work spaces. + mirrors://kde/stable/frameworks/5.94/sonnet-5.94.0.tar.xz + + qt5-base-devel + qt5-linguist + qt5-designer-devel + hunspell-devel + aspell-devel + qt5-declarative-devel + extra-cmake-modules + + desktop/kde/framework/sonnet/pspec.xml + + + sonnet + + qt5-base + qt5-declarative + aspell + hunspell + + + /etc/xdg + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/bin + /usr/share/doc + + + + sonnet-devel + Development files for sonnet + + qt5-base-devel + sonnet + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-05 + 5.29.0 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + syntax-highlighting + https://community.kde.org/Frameworks + + Stefan Gronewold + groni@pisilinux.org + + GPL2 + desktop.kde.framework + Syntax highlighting engine for structured text and code + Syntax highlighting engine for structured text and code + mirrors://kde/stable/frameworks/5.94/syntax-highlighting-5.94.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-linguist + perl + glibc-devel + + desktop/kde/framework/syntax-highlighting/pspec.xml + + + syntax-highlighting + Syntax highlighting engine for structured text and code + + qt5-base + qt5-declarative + libgcc + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share/doc + /usr/share/qlogging-categories5 + /usr/share/locale/ + + + + syntax-highlighting-devel + Development files for syntax-highlighting + + syntax-highlighting + qt5-base-devel + + + /usr/include + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 5.28.0 First Release Stefan Gronewold groni@pisilinux.org + + + threadweaver + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.framework + Multi-threaded programming framework for KDE + ThreadWeaver is a helper for multithreaded programming. It uses a job-based interface to queue tasks and execute them in an efficient way. + mirrors://kde/stable/frameworks/5.94/threadweaver-5.94.0.tar.xz + + qt5-base-devel + extra-cmake-modules + + desktop/kde/framework/threadweaver/pspec.xml + + + threadweaver + + qt5-base + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + threadweaver-devel + Development files for threadweaver + + qt5-base-devel + threadweaver + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-14 + 5.94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-12 + 5.93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.91.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-08 + 5.90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-12 + 5.89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-13 + 5.88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 5.87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 5.86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-11 + 5.84.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 5.82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 5.80.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 5.79.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.78.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-20 + 5.76.0 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2020-09-12 + 5.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-13 + 5.71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 5.70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 5.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.62.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.60.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.57.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-11 + 5.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 5.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.53.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-10 + 5.52.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.50.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.46.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.45.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.44.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.41.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-11 + 5.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-20 + 5.35.0 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-02-27 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-20 + 5.29.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.28.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-22 + 5.27.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-10-04 + 5.26.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-07-21 + 5.24.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-17 + 5.22.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-13 + 5.21.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + digikam @@ -67452,105 +117364,162 @@ components such as the Settings and gnome-shell. - kjots - https://userbase.kde.org/KJots + kphotoalbum + https://www.kphotoalbum.org/ Stefan Gronewold groni@pisilinux.org GPL - desktop.kde.utils - A note taking application for KDE - A note taking application for KDE - mirrors://kde/stable/kjots/5.0.2/kjots-5.0.2.tar.xz + desktop.kde.graphics + KDE Photo Album, picture collection manager + With KPhotoAlbum it is today possible for me to find any image I have in less than 5 seconds, let that be an image with a special person, an image from a special place, or even both. + http://download.kde.org/stable/kphotoalbum/5.7.0/kphotoalbum-5.7.0.tar.xz - akonadi-devel - akonadi-notes-devel - boost-devel extra-cmake-modules - kcmutils-devel - kdelibs4-support-devel kdoctools-devel - kpimtextedit-devel + kparts-devel + libkexiv2-devel + qt5-phonon-devel + plasma-framework-devel qt5-base-devel - kitemmodels-devel - kmime-devel - kontactinterface-devel - grantlee-qt5-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-sql-odbc + libjpeg-turbo-devel + exiv2-devel + libkdcraw-devel + libkgeomap-devel + libkipi-devel + qt5-webkit-devel + karchive-devel + kcompletion-devel + kconfig-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kio-devel + kjobwidgets-devel + ktextwidgets-devel + kwidgetsaddons-devel + kxmlgui-devel + pkgconfig + purpose-devel + marble-devel + qt5-webengine-devel - desktop/kde/utils/kjots/pspec.xml + desktop/kde/graphics/kphotoalbum/pspec.xml - kjots - A note taking application for KDE + kphotoalbum + KDE Photo Album, picture collection manager kio ki18n - kmime - kparts libgcc - akonadi kconfig kxmlgui - kcmutils + karchive + kservice qt5-base - kbookmarks + exiv2-libs + qt5-phonon + kcompletion kcoreaddons - kitemmodels - grantlee-qt5 - kpimtextedit + kiconthemes + kjobwidgets ktextwidgets - akonadi-notes + libjpeg-turbo kconfigwidgets kwidgetsaddons - kontactinterface + libkipi + libkdcraw + libkgeomap + purpose + /etc/xdg /usr/bin - /usr/lib/qt5 + /usr/lib /usr/share /usr/share/doc - + + 2020-09-19 + 5.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 5.6.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-18 + 5.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-14 + 5.4.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + 2019-01-20 - 5.0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 5.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com - + 2018-11-13 - 5.0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 5.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-14 + 5.4 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com - 2018-10-14 - 5.0.2 + 2018-08-11 + 5.3 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - 2018-08-11 - 5.0.2 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-02-06 + 5.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com - 2018-03-24 - 5.0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2017-10-06 + 5.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com - 2017-01-12 - 5.0.2 + 2017-01-09 + 5.1 First Release Stefan Gronewold groni@pisilinux.org @@ -67559,616 +117528,6074 @@ components such as the Settings and gnome-shell. - kfoldersync - https://www.linux-apps.com/content/show.php/?content=164092 + kget + https://apps.kde.org/kget - Stefan Gronewold (groni) - groni@pisilinux.org + Mathias Freire + mathiasfreire45@gmail.com GPLv2 - desktop.kde.utils - Folder synchronization and backup tool for KDE - Smart folder comparison, It depends only on KDE Frameworks. - https://dl.opendesktop.org/api/files/download/id/1485353737/kfoldersync-3.4.1.tar.xz + app:gui + desktop.kde.network + Download manager for KDE + KDE için indirme yönetcisi. + KGet is an advanced download manager with support for Metalink and Bittorrent. + KGet, Metalink ve BitTorrent desteği olan bir indirme yöneticisidir. + mirrors://kde/stable/release-service/21.12.2/src/kget-21.12.2.tar.xz - extra-cmake-modules - gettext-devel - cmake - kcoreaddons-devel - kdbusaddons-devel - ki18n-devel kio-devel - knotifications-devel - kxmlgui-devel - qt5-base-devel + gmp-devel + boost-devel + kinit-devel + ki18n-devel + gpgme-devel + kcrash-devel + kparts-devel + libmms-devel + qt5-sql-odbc + sqlite-devel kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - ki18n-devel - kitemviews-devel - kio-devel - kwidgetsaddons-devel - kwindowsystem-devel + qt5-sql-mysql + kwallet-devel kxmlgui-devel + qca2-qt5-devel + qt5-base-devel + qt5-sql-sqlite + kcmutils-devel + kservice-devel + libgcrypt-devel + gpgme-qt5-devel + kdoctools-devel + kitemviews-devel + kdbusaddons-devel + kiconthemes-devel + kcoreaddons-devel + libktorrent-devel + kcompletion-devel + qt5-sql-postgresql + ktextwidgets-devel + kwindowsystem-devel + extra-cmake-modules + knotifyconfig-devel + kwidgetsaddons-devel + kconfigwidgets-devel + knotifications-devel + kdelibs4-support-devel - desktop/kde/utils/kfoldersync/pspec.xml + desktop/kde/network/kget/pspec.xml - kfoldersync - Folder synchronization and backup tool for KDE + kget - kcoreaddons - ki18n kio - qt5-base + gpgme + ki18n + kinit + kparts libgcc + libmms kconfig + kwallet kxmlgui + kcmutils + kservice + qt5-base + qca2-qt5 + gpgme-qt5 kitemviews + kcompletion + kcoreaddons kdbusaddons - kconfigwidgets - kwidgetsaddons + kiconthemes + kjobwidgets + libktorrent + knotifyconfig kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + /usr/share + /usr/lib + /usr/share/doc /usr/bin + /usr/share/locale + + + + + 2022-02-04 + 21.12.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + kio-gdrive + https://projects.kde.org/kio-gdrive + + Stefan Gronewold + groni@pisilinux.org + + GPL + desktop.kde.network + Provides support for secure credentials storage + KIO Slave to access Google Drive + http://download.kde.org/stable/kio-gdrive/1.3.0/src/kio-gdrive-1.3.0.tar.xz + + extra-cmake-modules + kdesignerplugin + kdoctools-devel + libkgapi-devel + qt5-base-devel + qt5-keychain-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kio-devel + ki18n-devel + intltool + kcoreaddons-devel + ktp-accounts-kcm + kaccounts-providers + knotifications-devel + libaccounts-qt5-devel + libaccounts-glib-devel + kaccounts-integration-devel + + desktop/kde/network/kio-gdrive/pspec.xml + + + kio-gdrive + KIO Slave to access Google Drive + + libkgapi + qt5-base + qt5-keychain + kio + ki18n + libgcc + kcoreaddons + knotifications + libaccounts-qt5 + kaccounts-providers + ktp-accounts-kcm + kaccounts-integration + + + /usr/lib/qt5 /usr/share /usr/share/doc - 2019-01-20 - 3.4.1 - Rebuild - Mustafa Cinasl + 2021-01-07 + 1.3.0 + Version bump. + Mustafa Cinasal muscnsl@gmail.com - 2018-11-13 - 3.4.1 - Rebuild - Mustafa Cinasl + 2019-09-18 + 1.2.7 + Version bump. + Mustafa Cinasal muscnsl@gmail.com + 2019-01-09 + 1.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-13 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-10-14 - 3.4.1 + 1.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 1.2.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-10-09 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-12 + 1.0.5 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + libktorrent + https://apps.kde.org/ktorrent/ + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + library + desktop.kde.network + A BitTorrent protocol implementation + Bir BitTorrent protokol uygulaması + KTorrent is a BitTorrent application by KDE which allows you to download files using the BitTorrent protocol. + KTorrent, KDE'nin BitTorrent protokolünü kullanarak dosya indirmenize izin veren bir BitTorrent uygulamasıdır. + https://download.kde.org/stable/release-service/21.12.2/src/libktorrent-21.12.2.tar.xz + + doxygen + gmp-devel + kio-devel + boost-devel + solid-devel + ki18n-devel + kcrash-devel + karchive-devel + qt5-base-devel + qca2-qt5-devel + libgcrypt-devel + kcoreaddons-devel + extra-cmake-modules + + desktop/kde/network/libktorrent/pspec.xml + + + libktorrent + + gmp + kio + ki18n + libgcc + kconfig + qt5-base + qca2-qt5 + karchive + libgcrypt + kcoreaddons + + + /usr/share/locale + /usr/lib/libKF5Torrent.so* + /usr/share/doc + + + + libktorrent-devel + libktorrent development headers + libktorrent için geliştirme dosyaları + + libktorrent + + + /usr/include + /usr/lib/cmake/KF5Torrent + + + + + 2022-02-04 + 21.12.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + qt5-phonon + http://phonon.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + library + desktop.kde.phonon + Cross platform multimedia API for KDE4 using QT5 + Phonon was created as a solution to several problems with multimedia commonly faced by Unix desktops, especially KDE 3's outdated multimedia framework aRts. Phonon itself is not a multimedia framework, but interfaces with existing frameworks such as GStreamer or Xine via backends. + https://download.kde.org/stable/phonon/4.11.1/phonon-4.11.1.tar.xz + + extra-cmake-modules + qt5-declarative-devel + qt5-base-devel + qt5-designer-devel + qt5-linguist + alsa-lib-devel + gst-plugins-base-devel + pulseaudio-libs-devel + gstreamer-devel + mesa-devel + + desktop/kde/phonon/qt5-phonon/pspec.xml + + + qt5-phonon + + libgcc + qt5-base + qt5-designer + pulseaudio-libs + + + /usr/bin + /usr/lib/libphonon* + /usr/lib/qt5 + /usr/share/dbus-1 + /usr/share/phonon4qt5 + /usr/share/locale + + + + qt5-phonon-devel + Development files for phonon-qt5 + + qt5-phonon + qt5-base-devel + qt5-designer-devel + pulseaudio-libs-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-04-18 + 4.11.1 + Rebuild qt5.15.3 + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 4.11.1 + Rebuild qt5.15.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-17 + 4.11.1 + Rebuild qt5.15.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 4.11.1 + Rebuild qt5.14.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-28 + 4.11.1 + Rebuild qt5.14.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 4.11.1 + Rebuild qt5.13.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-02 + 4.11.1 + Rebuild qt5.13.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-26 + 4.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 4.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-04 + 4.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-24 + 4.10.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 4.10.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-08 + 4.10.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-12 + 4.10.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 4.10.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 4.10.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-01 + 4.10.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-27 + 4.10.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 5.29.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-02-27 + 4.9.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-16 + 4.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-03 + 4.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-08-13 + 4.8.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + qt5-phonon-backend-gstreamer + https://github.com/KDE/phonon-gstreamer + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + desktop.kde.phonon + GStreamer qt5-phonon backend + Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. phonon-backend-gstreamer contains the GStreamer backend for Phonon. + http://download.kde.org/stable/phonon/phonon-backend-gstreamer/4.10.0/phonon-backend-gstreamer-4.10.0.tar.xz + + extra-cmake-modules + qt5-x11extras-devel + qt5-base-devel + qt5-linguist + qt5-phonon-devel + gstreamer-devel + gstreamer-devel + gst-plugins-base-devel + gst-plugins-base-devel + mesa-devel + libxml2-devel + + desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml + + + qt5-phonon-backend-gstreamer + + qt5-base + qt5-x11extras + qt5-phonon + mesa + glib2 + libgcc + gstreamer + gst-plugins-base + + + /usr/lib + /usr/lib/qt5 + /usr/share + + + + + 2019-11-17 + 4.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-03 + 4.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-18 + 4.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-24 + 4.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-11 + 4.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 4.9.0 Rebuild Ertuğrul Erata ertugrulerata@gmail.com 2018-08-11 - 3.4.1 + 4.9.0 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - 2018-03-23 - 3.4.1 - Rebuild - Mustafa Cinasl - muscnsl@gmail.com + 2017-02-27 + 4.9.0 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org - 2017-09-21 - 3.4.1 - Release bump. + 2016-05-16 + 4.9.0 + rebuild. Stefan Gronewold(groni) groni@pisilinux.org - 2016-11-04 - 3.3.0 + 2016-05-03 + 4.9.0 Version bump. Stefan Gronewold(groni) groni@pisilinux.org - 2016-05-11 - 3.2.0 + 2015-08-18 + 4.8.2 First release - Stefan Gronewold (groni) + Stefan Gronewold(groni) groni@pisilinux.org - kmag - https://apps.kde.org/kmag/ + qt5-phonon-backend-vlc + https://community.kde.org/Phonon PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - desktop.kde.accessibility - A screen magnifier - A screen magnifier - KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc. - KMag is a small utility for Linux to magnify a part of the screen. KMag is very useful for people with visual disabilities and for those working in the fields of image analysis, web development etc. - kmag - https://download.kde.org/stable/release-service/21.12.3/src/kmag-21.12.3.tar.xz - - extra-cmake-modules - kdoctools-devel - ki18n-devel - kio-devel - kxmlgui-devel - - desktop/kde/accessibility/kmag/pspec.xml - - - kmag - - kio - libqaccessibilityclient - icon-theme-hicolor - - - /usr - - - - - 2022-04-17 - 21.12.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - kmouth - https://apps.kde.org/kmouth/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.accessibility - A speech synthesizer frontend - A speech synthesizer frontend - KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mutal people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks. - KMouth is a program which enables persons that cannot speak to let their computer speak, e.g. mutal people or people who have lost their voice. It has a text input field and speaks the sentences that you enter. It also has support for user defined phrasebooks. - kmouth - https://download.kde.org/stable/release-service/21.12.3/src/kmouth-21.12.3.tar.xz - - extra-cmake-modules - kdoctools-devel - ki18n-devel - kio-devel - kxmlgui-devel - qt5-speech-devel - - desktop/kde/accessibility/kmouth/pspec.xml - - - kmouth - - kio - libqaccessibilityclient - icon-theme-hicolor - qt5-speech - - - /usr - /etc - - - - - 2022-04-17 - 21.12.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - plasma-vault - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 + LGPLv2.1 library - desktop.kde.plasma - Plasma applet and services for creating encrypted vaults - 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.24.5/plasma-vault-5.24.5.tar.xz + desktop.kde.phonon + VLC Backend for qt5-phonon + phonon-backend-vlc allows Phonon (the KDE media library) to use VLC for audio and video playback. + mirrors://kde/stable/phonon/phonon-backend-vlc/0.11.1/phonon-backend-vlc-0.11.1.tar.xz + qt5-base-devel + qt5-linguist + qt5-phonon-devel + pulseaudio + vlc-devel extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - networkmanager-qt-devel - kwidgetsaddons-devel - kactivities-devel - kconfigwidgets-devel - libksysguard-devel - kdbusaddons-devel - kconfig-devel - kcoreaddons-devel - plasma-framework-devel - kio-devel - ki18n-devel - encfs - kirigami-devel - kiconthemes-devel - NetworkManager-devel - desktop/kde/plasma/plasma-vault/pspec.xml + desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml - plasma-vault - util.crypt + qt5-phonon-backend-vlc - qt5-base - kwidgetsaddons - kactivities - kconfigwidgets - libksysguard - kdbusaddons - kconfig - kcoreaddons - plasma-framework - kio - ki18n libgcc - encfs - kirigami - networkmanager-qt + qt5-base + qt5-phonon + vlc-libs + /usr/lib /usr/lib/qt5 - /usr/share + /usr/share/kde4/services /usr/share/locale - /usr/share/kservices5 - /usr/share/plasma - /usr/share/metainfo /usr/share/doc - + + 2019-11-17 + 0.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-26 + 0.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-18 + 0.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-24 + 0.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-03 + 0.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-20 + 0.10.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-18 + 0.10.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-11 + 0.10.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-04-12 + 0.10.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 0.9.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-27 + 0.9.1 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-17 + 0.9.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-02 + 0.8.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + kscreenlocker + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Library and components for secure lock screen architecture. + Library and components for secure lock screen architecture. + mirrors://kde/stable/plasma/5.24.5/kscreenlocker-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + libX11-devel + libxcb-devel + kcrash-devel + ki18n-devel + knotifications-devel + kwindowsystem-devel + kxmlgui-devel + solid-devel + kglobalaccel-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + kdoctools-devel + kidletime-devel + kdeclarative-devel + kcmutils-devel + kwayland-devel + libXi-devel + ktextwidgets-devel + pam-devel + libseccomp-devel + plasma-framework-devel + extra-cmake-modules + ConsoleKit-devel + wayland-protocols-devel + xcb-util-keysyms-devel + wayland-devel + wayland-client + wayland-server + wayland-cursor + libXcursor-devel + layer-shell-qt-devel + plasma-wayland-protocols + + desktop/kde/plasma/kscreenlocker/pspec.xml + + + kscreenlocker + + pam + libXi + qt5-base + libgcc + ki18n + kcrash + libX11 + libxcb + kconfig + kcmutils + kxmlgui + kpackage + kwayland + kidletime + kcoreaddons + kdeclarative + kglobalaccel + kwindowsystem + libseccomp + qt5-x11extras + kconfigwidgets + knotifications + wayland-client + wayland-server + ktextwidgets + qt5-declarative + layer-shell-qt + xcb-util-keysyms + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kscreenlocker-devel + Development files for kscreenlocker + + qt5-base-devel + qt5-x11extras-devel + layer-shell-qt-devel + kscreenlocker + + + /usr/include + /usr/lib/cmake + + + + 2022-05-06 5.24.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.24.2 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-04 5.23.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-01 5.23.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-10 5.23.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-27 5.23.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-19 5.23.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-14 5.23.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-08-31 5.22.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-08 5.22.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-22 5.22.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.22.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-05 5.21.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-17 5.21.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-14 5.21.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.20.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-12-11 5.20.4 Version bump. Ali Algul aligulle3801@gmail.com - + 2020-09-01 5.19.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-16 5.19.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-09 5.19.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-06 5.18.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.18.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-10 5.17.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.16.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-31 5.16.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.16.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.15.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-12 5.15.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-27 5.15.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-21 5.15.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-12 5.15.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.14.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.14.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-11-20 + + 2018-12-12 5.14.3 - move to util.crypt partof. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-12 - 5.14.3 - Version bump + Rebuild kdelibs4 remove. Mustafa Cinasal muscnsl@gmail.com - + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2018-10-17 5.14.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-10 + + 2018-10-17 5.14.0 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + + 2018-09-29 + 5.12.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + 2018-08-11 5.12.5 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.12.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.12.4 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-06 5.12.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.12.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-02-03 5.11.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-12-15 5.11.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-08 5.11.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-02 5.11.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-10-19 + + 2017-10-14 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + bluedevil + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE 5 Bluetooth Stack + Integrate the Bluetooth technology within KDE workspace and applications + mirrors://kde/stable/plasma/5.24.5/bluedevil-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + shared-mime-info + plasma-framework-devel + bluez-qt-devel + kded-devel + kio-devel + ki18n-devel + kconfig-devel + kcoreaddons-devel + kdbusaddons-devel + kiconthemes-devel + kconfigwidgets-devel + kwindowsystem-devel + knotifications-devel + kwidgetsaddons-devel + kirigami-devel + bluez-qt-devel + kdeclarative-devel + extra-cmake-modules + fwupd-devel + + desktop/kde/plasma/bluedevil/pspec.xml + + + bluedevil + + qt5-base + libgcc + bluez-qt + kio + ki18n + kconfig + kdeclarative + qt5-declarative + kcoreaddons + kdbusaddons + knotifications + kwindowsystem + kwidgetsaddons + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + breeze + https://www.kde.org + Pisi Linux Admins admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 Plasma artwork + Artwork, styles and assets for the Breeze visual style for the Plasma Desktop + mirrors://kde/stable/plasma/5.24.5/breeze-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + libxcb-devel + qt5-x11extras-devel + frameworkintegration-devel + kdecorations-devel + kcoreaddons-devel + ki18n-devel + kcmutils-devel + kwindowsystem-devel + kconfig-devel + kpackage-devel + kwayland-devel + plasma-framework-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + breeze-icons + fftw3-devel + kiconthemes-devel + kguiaddons-devel + + desktop/kde/plasma/breeze/pspec.xml + + + breeze-style + + qt5-base + qt5-declarative + libgcc + kconfig + kguiaddons + kcoreaddons + kconfigwidgets + kwidgetsaddons + qt5-x11extras + libxcb + frameworkintegration + kcmutils + kcoreaddons + ki18n + kwindowsystem + kwayland + kiconthemes + breeze-icons + kdecorations + + + /usr/bin + /usr/lib/kconf_update_bin + /usr/lib/qt5 + /usr/lib/libbreezecommon5.so* + /usr/lib/cmake/Breeze/BreezeConfigVersion.cmake + /usr/lib/cmake/Breeze/BreezeConfig.cmake + /usr/share/color-schemes + /usr/share/doc + /usr/share/icons/hicolor/scalable/apps/breeze-settings.svgz + /usr/share/kconf_update + /usr/share/metainfo/org.kde.breezedark.desktop.appdata.xml + /usr/share/metainfo/org.kde.breezetwilight.desktop.appdata.xml + /usr/share/kservices5 + /usr/share/kstyle + /usr/share/locale + /usr/share/plasma + /usr/share/QtCurve + + + + breeze-cursors + + breeze-style + + + /usr/share/icons/breeze_cursors + /usr/share/icons/Breeze_Snow + + + + breeze-wallpapers + + breeze-style + + + /usr/share/wallpapers/Next + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-02 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + breeze-grub + https://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.plasma + Breeze theme for GRUB. + Breeze theme for GRUB. + mirrors://kde/stable/plasma/5.24.5/breeze-grub-5.24.5.tar.xz + desktop/kde/plasma/breeze-grub/pspec.xml + + + breeze-grub + Breeze theme for GRUB. + + grub2 + noto-fonts + + + /boot/grub2/themes + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + breeze-gtk + https://quickgit.kde.org/?p=breeze-gtk.git + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2+ + app:gui + desktop.kde.plasma + Breeze widget theme for GTK 2 and 3 + Breeze widget theme for GTK 2 and 3 + mirrors://kde/stable/plasma/5.24.5/breeze-gtk-5.24.5.tar.xz + + sassc + cairo-devel + gdk-pixbuf-devel + python-cairo-devel + python3-cairo-devel + extra-cmake-modules + libsass-devel + gtk2-engines-murrine + breeze-style + qt5-base-devel + + desktop/kde/plasma/breeze-gtk/pspec.xml + + + breeze-gtk + Breeze widget theme for GTK 2 and 3 + + qt5-base + + + /usr/share/kconf_update + /usr/share/themes + /usr/share/doc + /usr/lib/kconf_update_bin + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + breeze-plymouth + https://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + desktop.kde.plasma + Breeze theme for Plymouth. + Breeze theme for Plymouth. + mirrors://kde/stable/plasma/5.24.5/breeze-plymouth-5.24.5.tar.xz + + extra-cmake-modules + plymouth-devel + + desktop/kde/plasma/breeze-plymouth/pspec.xml + + + breeze-plymouth + Breeze theme for Plymouth. + + plymouth + grub2 + plymouth-core-libs + plymouth-theme-spinner + plymouth-graphics-libs + plymouth-plugin-script + + + /usr/lib + /usr/share + /usr/share/doc + + + pisi.logo.png + pisi.16bit.png + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-20 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-23 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + discover + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + app:gui + desktop.kde.plasma + KDE and Plasma resources management GUI + KDE and Plasma resources management GUI + mirrors://kde/stable/plasma/5.24.5/discover-5.24.5.tar.xz + + kio-devel + fwupd-devel + attica-devel + karchive-devel + kconfig-devel + kservice-devel + discount-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + kitemmodels-devel + knotifications-devel + kxmlgui-devel + kdeclarative-devel + plasma-framework-devel + knewstuff-devel + extra-cmake-modules + kirigami-devel + kcmutils-devel + kidletime-devel + kuserfeedback-devel + appstream-qt5-devel + qt5-svg-devel + flatpak-devel + qt5-base-devel + qt5-x11extras-devel + qt5-declarative-devel + + desktop/kde/plasma/discover/pspec.xml + + + discover + + qt5-base + qt5-x11extras + kdeclarative + kio + fwupd + glib2 + attica + kconfig + kservice + kcmutils + kconfig + kitemmodels + kcoreaddons + kdbusaddons + kconfigwidgets + knotifications + kwidgetsaddons + ki18n + kcrash + kxmlgui + kidletime + kwindowsystem + qt5-declarative + knewstuff + appstream-qt5 + + + /etc + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share + /usr/share/locale + + + + discover-plugin-flatpak + hardware.virtualization + + discover + glib2 + flatpak + appstream-qt5 + qt5-base + ki18n + kconfig + kcoreaddons + gnupg + + + /usr/lib/qt5/plugins/discover-notifier/FlatpakNotifier.so + /usr/lib/qt5/plugins/discover/flatpak-backend.so + /usr/share/applications/org.kde.discover-flatpak + /usr/share/libdiscover/categories/flatpak-backend-categories.xml + /usr/share/metainfo/org.kde.discover.flatpak.appdata.xml + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-20 + 5.15.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-19 + 5.14.3 + Rebuild for flatpak-1.1.0. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 5.14.1 + discover-flatpak. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-14 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-18 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + drkonqi + https://www.kde.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv2 + library + desktop.kde.plasma + The KDE crash handler + The KDE crash handler + The KDE crash handler + The KDE crash handler + https://download.kde.org/stable/plasma/5.24.5/drkonqi-5.24.5.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-x11extras-devel + ki18n-devel + kcoreaddons-devel + kservice-devel + kconfig-devel + kjobwidgets-devel + kio-devel + kcrash-devel + kcompletion-devel + kxmlrpcclient-devel + kwidgetsaddons-devel + kwallet-devel + knotifications-devel + kidletime-devel + at-spi2-core-devel + xorg-server-xvfb + rubygems + ruby-devel + gdb-devel + kwindowsystem-devel + syntax-highlighting-devel + + desktop/kde/plasma/drkonqi/pspec.xml + + + drkonqi + + qt5-base + qt5-x11extras + libgcc + ki18n + kcoreaddons + kservice + kidletime + kconfig + kconfigwidgets + kjobwidgets + kio + kcrash + kcompletion + kxmlrpcclient + kwidgetsaddons + kwallet + knotifications + kwindowsystem + syntax-highlighting + + + /etc/xdg + /usr/lib + /usr/share + /usr/share/locale + /usr/share/drkonqi + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-01 + 5.11.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 5.10.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-05 + 5.8.5 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-08-02 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kactivitymanagerd + https://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + app:console + 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.24.5/kactivitymanagerd-5.24.5.tar.xz + + extra-cmake-modules + boost-devel + qt5-base-devel + kdbusaddons-devel + ki18n-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + kconfig-devel + kcoreaddons-devel + kwindowsystem-devel + kglobalaccel-devel + kxmlgui-devel + kio-devel + kcrash-devel + + desktop/kde/plasma/kactivitymanagerd/pspec.xml + + + kactivitymanagerd + Core components for the KDE Activity concept. + + kio + ki18n + kcrash + kconfig + kxmlgui + kservice + qt5-base + kcoreaddons + kdbusaddons + kglobalaccel + kwindowsystem + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + /usr/share/kservices5 + /usr/share/kservicetypes5 + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-cli-tools + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + 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.24.5/kde-cli-tools-5.24.5.tar.xz + + qt5-base-devel + qt5-x11extras-devel + qt5-svg-devel + qt5-declarative-devel + libX11-devel + libxcb-devel + kdoctools-devel + kio-devel + kdesu-devel + ki18n-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + kiconthemes-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kconfig-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kdesignerplugin + docbook-xsl + kactivities-devel + plasma-workspace-devel + extra-cmake-modules + kdeclarative-devel + + desktop/kde/plasma/kde-cli-tools/pspec.xml + + + kde-cli-tools + + qt5-base + qt5-svg + libX11 + libgcc + kio + kdesu + ki18n + kservice + qt5-x11extras + kcompletion + kcoreaddons + kiconthemes + kwindowsystem + kconfigwidgets + kwidgetsaddons + kcmutils + kconfig + kdeclarative + kactivities + plasma-workspace + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Package + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kde-gtk-config + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + 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.24.5/kde-gtk-config-5.24.5.tar.xz + + qt5-base-devel + qt5-svg-devel + sassc + xsettingsd + libX11-devel + kio-devel + glib2-devel + ki18n-devel + kcoreaddons-devel + kiconthemes-devel + kwidgetsaddons-devel + kcmutils-devel + karchive-devel + kauth-devel + kconfigwidgets-devel + libXcursor-devel + knewstuff-devel + kguiaddons-devel + gtk2-devel + gtk3-devel + at-spi2-core-devel + extra-cmake-modules + kdecorations-devel + kdbusaddons-devel + + + schemas.patch + + desktop/kde/plasma/kde-gtk-config/pspec.xml + + + kde-gtk-config + + qt5-base + qt5-svg + kconfig + glib2 + kio + ki18n + xsettingsd + kcoreaddons + kiconthemes + kwidgetsaddons + karchive + knewstuff + kguiaddons + kconfigwidgets + libXcursor + gtk2 + gtk3 + kdbusaddons + kdecorations + + + /usr/share + /etc/xdg/cgc* + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -68626,141 +124053,1987 @@ components such as the Settings and gnome-shell. - layer-shell-qt - https://kde.org/plasma-desktop/ + kdeplasma-addons + https://www.kde.org Pisi Linux Admins - admin@pisilinux.org + admins@pisilinux.org - LGPLv3 + LGPLv2 library + app:console desktop.kde.plasma - Qt component to allow applications to make use of the Wayland wl-layer-shell protocol - 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.24.5/layer-shell-qt-5.24.5.tar.xz + Additional client tools for KDE applications + Additional client tools for KDE applications + mirrors://kde/stable/plasma/5.24.5/kdeplasma-addons-5.24.5.tar.xz - wayland-devel - wayland-client - wayland-cursor - wayland-server - qt5-wayland-devel - qt5-base-devel + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + qt5-webengine-devel + qt5-graphicaleffects + libxcb-devel + xcb-util-image-devel + glib2-devel + scim-devel + ibus-devel + kactivities-devel + kconfig-devel + kdoctools-devel + knewstuff-devel + kemoticons-devel + kitemmodels-devel + kross-devel + kinit-devel + kunitconversion-devel + kcmutils-devel + kdesignerplugin + kiconthemes-devel + krunner-devel + plasma-framework-devel + plasma-workspace-devel extra-cmake-modules - wayland-protocols-devel - qt5-declarative-devel + kconfigwidgets-devel + kcoreaddons-devel + ki18n-devel + kio-devel + kservice-devel + libX11-devel + kholidays-devel + kdeclarative-devel + purpose-devel + karchive-devel + knotifications-devel - desktop/kde/plasma/layer-shell-qt/pspec.xml + desktop/kde/plasma/kdeplasma-addons/pspec.xml - layer-shell-qt + kdeplasma-addons + qt5-base + plasma-framework libgcc - qt5-base - qt5-wayland - wayland-client + libxcb + xcb-util-image + glib2 + knewstuff + krunner + kio + kiconthemes + ki18n + kross + sonnet + kconfig + kxmlgui + karchive + kpackage + kservice + kholidays + kdeclarative + qt5-webengine + qt5-x11extras + qt5-declarative + qt5-graphicaleffects + kcompletion + kcoreaddons + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + kunitconversion + kactivities + plasma-workspace + ibus + scim-libs + xcb-util-keysyms + /etc/xdg + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 /usr/lib /usr/share/doc - - - - layer-shell-qt-devel - Development files for layer-shell-qt - - layer-shell-qt - - - /usr/include - /usr/lib/cmake + /usr/include/plasma - + 2022-05-06 5.24.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.24.2 - Version bump. + Version bump Kamil Atlı suvari@pisilinux.org - + 2022-01-04 5.23.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-01 5.23.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-10 5.23.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-27 5.23.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-19 5.23.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-14 5.23.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-08-31 5.22.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-08 5.22.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-22 5.22.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-06-16 + + 2021-06-15 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-24 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-12 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kgamma5 + https://projects.kde.org/kgamma5 + Pisi Linux Admins - admin@pisilinux.org + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Adjust your monitor's gamma settings. + Adjust your monitor's gamma settings. + mirrors://kde/stable/plasma/5.24.5/kgamma5-5.24.5.tar.xz + + qt5-base-devel + qt5-x11extras-devel + libX11-devel + kdoctools-devel + kconfig-devel + kconfigwidgets-devel + ki18n-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + libXxf86vm-devel + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/kgamma5/pspec.xml + + + kgamma5 + + qt5-base + kconfig + libgcc + libX11 + ki18n + kcoreaddons + kconfigwidgets + libXxf86vm + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + khotkeys + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + 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.24.5/khotkeys-5.24.5.tar.xz + + libX11-devel + qt5-base-devel + qt5-x11extras-devel + kdoctools-devel + kconfig-devel + kservice-devel + kcompletion-devel + kcoreaddons-devel + ktextwidgets-devel + kwindowsystem-devel + kconfigwidgets-devel + kwidgetsaddons-devel + kcmutils-devel + kauth-devel + kpackage-devel + kdbusaddons-devel + kdelibs4-support-devel + kglobalaccel-devel + ki18n-devel + kio-devel + kxmlgui-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + plasma-framework-devel + plasma-workspace-devel + libXtst-devel + docbook-xsl + kjobwidgets-devel + extra-cmake-modules + + desktop/kde/plasma/khotkeys/pspec.xml + + + khotkeys + + qt5-base + kconfig + libgcc + libX11 + kservice + qt5-x11extras + kcompletion + kcoreaddons + ktextwidgets + kwindowsystem + kconfigwidgets + kwidgetsaddons + kdbusaddons + kdelibs4-support + kglobalaccel + ki18n + kio + kxmlgui + libXtst + kjobwidgets + plasma-workspace + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kinfocenter + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 info center + KDE5 Utility that provides information about a computer system. + mirrors://kde/stable/plasma/5.24.5/kinfocenter-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdeclarative-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kpackage-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libraw1394-devel + libX11-devel + mesa-glu-devel + mesa-devel + pciutils-devel + plasma-framework-devel + solid-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kwayland-devel + kdesignerplugin + docbook-xsl + extra-cmake-modules + kirigami-devel + libglvnd-devel + system-settings + vulkan-tools + wayland-utils + util-linux + libusb-devel + + desktop/kde/plasma/kinfocenter/pspec.xml + + + kinfocenter + + kcmutils + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdeclarative + ki18n + kiconthemes + kio + kservice + kwayland + kwidgetsaddons + kxmlgui + kcrash + libraw1394 + libX11 + mesa-glu + mesa + pciutils + kwindowsystem + qt5-base + qt5-declarative + solid + libglvnd + kirigami + system-settings + wayland-utils + libgcc + libusb + mesa-demos + mesa + mesa-utils + vulkan-tools + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + /usr/share/about-distro + + + kcm-about-distrorc + pisilinux.svg + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-19 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -69248,6 +126521,6053 @@ components such as the Settings and gnome-shell. + + + kscreen + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + 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.24.5/kscreen-5.24.5.tar.xz + + qt5-base-devel + qt5-sensors-devel + qt5-graphicaleffects + qt5-declarative-devel + kglobalaccel-devel + libkscreen-devel + kconfigwidgets-devel + kdbusaddons-devel + ki18n-devel + kwidgetsaddons-devel + kconfig-devel + kdoctools-devel + kxmlgui-devel + kiconthemes-devel + mesa-devel + extra-cmake-modules + plasma-framework-devel + kdeclarative-devel + kcmutils-devel + qt5-x11extras-devel + libXi-devel + + desktop/kde/plasma/kscreen/pspec.xml + + + kscreen + + qt5-base + qt5-sensors + libgcc + libkscreen + qt5-declarative + kconfig + kcoreaddons + kglobalaccel + kconfigwidgets + kwidgetsaddons + kdbusaddons + ki18n + kxmlgui + kdeclarative + kcmutils + plasma-framework + qt5-x11extras + libXi + libX11 + libxcb + + + /usr/share + /etc/xdg + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-12 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ksshaskpass + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + ssh-add helper that uses kwallet and kpassworddialog + ssh-add helper that uses kwallet and kpassworddialog + mirrors://kde/stable/plasma/5.24.5/ksshaskpass-5.24.5.tar.xz + + qt5-base-devel + kdoctools-devel + kcoreaddons-devel + ki18n-devel + kwallet-devel + kwidgetsaddons-devel + libxslt + docbook-xsl + extra-cmake-modules + + desktop/kde/plasma/ksshaskpass/pspec.xml + + + ksshaskpass + + qt5-base + libgcc + kcoreaddons + kwidgetsaddons + ki18n + kwallet + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man + /usr/share/doc + + + ksshaskpass.sh + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ksysguard + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE system monitor + KDE5 system monitor daemon and service. + https://download.kde.org/stable/ksysguard/5.22.0/ksysguard-5.22.0.tar.xz + + libnl-devel + networkmanager-qt-devel + libpcap-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdoctools-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knewstuff-devel + knotifications-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + libksysguard-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + lm_sensors-devel + plasma-framework-devel + qt5-base-devel + docbook-xsl + extra-cmake-modules + qt5-location-devel + qt5-webkit-devel + NetworkManager-devel + + desktop/kde/plasma/ksysguard/pspec.xml + + + ksysguard + + libpcap + icon-theme-hicolor + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + ki18n + kiconthemes + kio + kitemviews + knewstuff + knotifications + kwidgetsaddons + kwindowsystem + kxmlgui + libgcc + libksysguard + lm_sensors + qt5-base + xdg-utils + libnl + networkmanager-qt + qt5-location + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.22.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-04 + 5.22.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-04 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-07 + 5.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ksystemstats + https://kde.org/plasma-desktop/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + KSystemStats is a daemon that collects statistics about the running system + 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.24.5/ksystemstats-5.24.5.tar.xz + + kio-devel + eudev-devel + ki18n-devel + libnl-devel + solid-devel + libgcc + qt5-base-devel + lm_sensors-devel + kcoreaddons-devel + kdbusaddons-devel + libksysguard-devel + kiconthemes-devel + libnsl-devel + libtirpc-devel + NetworkManager-devel + networkmanager-qt-devel + extra-cmake-modules + + desktop/kde/plasma/ksystemstats/pspec.xml + + + ksystemstats + + kio + eudev + ki18n + libnl + solid + libgcc + qt5-base + lm_sensors + kcoreaddons + kdbusaddons + libksysguard + networkmanager-qt + + + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/locale + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 5.22.1 + First release. + Pisi Linux Admins + admin@pisilinux.org + + + + + + kwallet-pam + https://projects.kde.org/kwallet-pam + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KWallet PAM integration. + KWallet PAM integration. + mirrors://kde/stable/plasma/5.24.5/kwallet-pam-5.24.5.tar.xz + + socat + pam-devel + kwallet-devel + libgcrypt-devel + extra-cmake-modules + qt5-base-devel + + desktop/kde/plasma/kwallet-pam/pspec.xml + + + kwallet-pam + + pam + socat + qt5-base + libgcrypt + + + /etc/xdg/autostart + /lib + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-07-13 + 5.12.5 + add socat for dependency. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwayland-integration + https://www.kde.org + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv3 + library + 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.24.5/kwayland-integration-5.24.5.tar.xz + + kguiaddons-devel + kwayland-devel + qt5-base-devel + kwindowsystem-devel + kidletime-devel + extra-cmake-modules + qt5-wayland-devel + wayland-devel + wayland-client + wayland-cursor + wayland-server + wayland-protocols-devel + + desktop/kde/plasma/kwayland-integration/pspec.xml + + + kwayland-integration + + kwayland + kidletime + kwindowsystem + libgcc + qt5-base + kguiaddons + qt5-wayland + wayland + wayland-client + wayland-cursor + wayland-server + + + /usr/lib + /etc/xdg/kwindowsystem.kwayland.categories + /usr/share + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwayland-server + https://kde.org/plasma-desktop + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Wayland server components built on KDE Frameworks + 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.24.5/kwayland-server-5.24.5.tar.xz + + doxygen + mesa-devel + kwayland-devel + wayland-protocols-devel + qt5-base-devel + qt5-wayland-devel + extra-cmake-modules + plasma-wayland-protocols + + desktop/kde/plasma/kwayland-server/pspec.xml + + + kwayland-server + + libgcc + libglvnd + qt5-base + wayland-server + + + /usr/lib + /usr/share + /usr/share/doc + + + + kwayland-server-devel + Development files for kwayland-server + + kwayland-server + qt5-base-devel + wayland-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kwin + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 window manager + KWin is the window manager of the K desktop environment. + mirrors://kde/stable/plasma/5.24.5/kwin-5.24.5.tar.xz + + lcms2-devel + kactivities-devel + kauth-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kcrash-devel + kdeclarative-devel + kdecorations-devel + kdoctools-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + knewstuff-devel + knotifications-devel + kpackage-devel + kservice-devel + ktextwidgets-devel + kwayland-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + kidletime-devel + kscreenlocker-devel + libepoxy-devel + libICE-devel + libSM-devel + libX11-devel + libxcb-devel + libXcursor-devel + libXext-devel + libxkbcommon-devel + libXxf86vm-devel + mesa-devel + fontconfig-devel + freetype-devel + xcb-util-wm-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-designer-devel + qt5-multimedia-devel + qt5-script-devel + qt5-x11extras-devel + qt5-sensors-devel + qt5-graphicaleffects + qt5-virtualkeyboard-devel + qt5-quickcontrols + qt5-quickcontrols2-devel + wayland-client + wayland-cursor + wayland-devel + xcb-util-image-devel + xcb-util-keysyms-devel + eudev-devel + libinput-devel + xcb-util-cursor-devel + qt5-multimedia + docbook-xsl + libXi-devel + extra-cmake-modules + xorg-xwayland-devel + breeze-style + libdrm-devel + kirigami-devel + pipewire-devel + lcms2-devel + krunner-devel + xcb-util-devel + kwayland-server-devel + libqaccessibilityclient-devel + + desktop/kde/plasma/kwin/pspec.xml + + + kwin + + lcms2 + kactivities + kauth + libcap + kcmutils + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kcrash + wayland + kdeclarative + kdecorations + kglobalaccel + ki18n + kiconthemes + kio + knewstuff + knotifications + kservice + kwayland + kwidgetsaddons + kwindowsystem + kxmlgui + kscreenlocker + kidletime + libepoxy + libgcc + libXi + libICE + libSM + libX11 + libxcb + libxkbcommon + mesa + plasma-framework + qt5-base + qt5-declarative + qt5-script + qt5-x11extras + qt5-sensors + wayland-cursor + wayland-client + xcb-util-wm + xcb-util-image + xcb-util-keysyms + eudev + kpackage + libdrm + libinput + ktextwidgets + freetype + fontconfig + xcb-util-cursor + kwayland-server + wayland-server + libqaccessibilityclient + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + kwin-devel + Development files for kwin + + kwin + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + kwin-wayland + Wayland support for KWin + + mesa + libcap + libdrm + kpackage + wayland + freetype + pipewire + kidletime + fontconfig + kwin + + + /usr/bin/kwin_wayland + /usr/lib/systemd/user/plasma-kwin_wayland.service + /usr/lib/qt5/plugins/org.kde.kwin.waylandbackends/KWinWayland*.so + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-12 + 5.18.3 + Version bump qpa patch kapatıldı + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-27 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-04 + 5.14.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-24 + 5.12.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-07 + 5.12.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-19 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + kwrited + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 daemon listening for wall and write messages + KDE5 daemon listening for wall and write messages + mirrors://kde/stable/plasma/5.24.5/kwrited-5.24.5.tar.xz + + qt5-base-devel + ki18n-devel + kdoctools-devel + kcoreaddons-devel + knotifications-devel + kpty-devel + kdbusaddons-devel + extra-cmake-modules + + desktop/kde/plasma/kwrited/pspec.xml + + + kwrited + + qt5-base + kpty + libgcc + kcoreaddons + knotifications + kdbusaddons + + + /usr/share + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + layer-shell-qt + https://kde.org/plasma-desktop/ + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + library + desktop.kde.plasma + Qt component to allow applications to make use of the Wayland wl-layer-shell protocol + 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.24.5/layer-shell-qt-5.24.5.tar.xz + + wayland-devel + wayland-client + wayland-cursor + wayland-server + qt5-wayland-devel + qt5-base-devel + extra-cmake-modules + wayland-protocols-devel + qt5-declarative-devel + + desktop/kde/plasma/layer-shell-qt/pspec.xml + + + layer-shell-qt + + libgcc + qt5-base + qt5-wayland + wayland-client + + + /usr/lib + /usr/share/doc + + + + layer-shell-qt-devel + Development files for layer-shell-qt + + layer-shell-qt + + + /usr/include + /usr/lib/cmake + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 5.22.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libkscreen + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 screen management library + Dynamic display management library for KDE + mirrors://kde/stable/plasma/5.24.5/libkscreen-5.24.5.tar.xz + + qt5-base-devel + qt5-wayland-devel + qt5-x11extras-devel + libxcb-devel + doxygen + kwayland-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-keysyms-devel + libXcursor-devel + libXrandr-devel + kwayland-devel + wayland-devel + wayland-client + wayland-cursor + wayland-server + extra-cmake-modules + plasma-wayland-protocols + + desktop/kde/plasma/libkscreen/pspec.xml + + + libkscreen + + qt5-base + qt5-wayland + kwayland + libXrandr + libxcb + libgcc + wayland + wayland-client + wayland-cursor + wayland-server + qt5-x11extras + + + /etc/xdg + /usr/bin/kscreen-doctor + /usr/lib/qt5 + /usr/lib + /usr/share/qlogging-categories5/libkscreen.categories + /usr/share/doc + /usr/share/dbus-1 + + + + libkscreen-devel + Development files for libkscreen + + libkscreen + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libksysguard + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Task management and system monitoring library + Task management and system monitoring library + mirrors://kde/stable/plasma/5.24.5/libksysguard-5.24.5.tar.xz + + qt5-base-devel + qt5-script-devel + qt5-webkit-devel + qt5-x11extras-devel + qt5-webengine-devel + qt5-designer-devel + qt5-declarative-devel + kio-devel + solid-devel + kglobalaccel-devel + kpackage-devel + kjobwidgets-devel + kdeclarative-devel + kauth-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + kdoctools-devel + libX11-devel + libXres-devel + zlib-devel + libnsl-devel + libnl-devel + libcap-devel + knewstuff-devel + plasma-framework-devel + extra-cmake-modules + attr-devel + pam-devel + libpcap-devel + lm_sensors-devel + + desktop/kde/plasma/libksysguard/pspec.xml + + + libksysguard + + kio + solid + libpcap + kservice + kglobalaccel + qt5-webengine + qt5-webchannel + qt5-base + qt5-declarative + kpackage + kjobwidgets + kdeclarative + libX11 + libgcc + zlib + libXres + qt5-webkit + qt5-x11extras + kwindowsystem + kconfigwidgets + kwidgetsaddons + kconfig + kauth + kcoreaddons + ki18n + libnsl + libcap + lm_sensors + + + /etc + /usr/share + /usr/share/locale + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + libksysguard-devel + Development files for libksysguard + + libksysguard + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + milou + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDedicated search application built on top of Baloo + Dedicated search application built on top of Baloo + mirrors://kde/stable/plasma/5.24.5/milou-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-script + kdoctools-devel + kdeclarative-devel + ki18n-devel + krunner-devel + plasma-framework-devel + kconfig-devel + kservice-devel + kcoreaddons-devel + extra-cmake-modules + kitemmodels-devel + + desktop/kde/plasma/milou/pspec.xml + + + milou + + qt5-base + qt5-declarative + krunner + libgcc + kconfig + kservice + kcoreaddons + kitemmodels + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + oxygen + https://projects.kde.org/projects/kde/workspace/oxygen + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL + desktop.kde.plasma + KDE Oxygen style + KDE Oxygen style + mirrors://kde/stable/plasma/5.24.5/oxygen-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + kcmutils-devel + frameworkintegration-devel + kcompletion-devel + kconfig-devel + kguiaddons-devel + ki18n-devel + kservice-devel + kwidgetsaddons-devel + kwindowsystem-devel + cairo-devel + libxcb-devel + kwayland-devel + gtk3-devel + kdoctools-devel + kdecorations-devel + plasma-workspace-devel + extra-cmake-modules + + desktop/kde/plasma/oxygen/pspec.xml + + + oxygen + + ki18n + libgcc + libxcb + kconfig + qt5-base + qt5-declarative + kguiaddons + kcompletion + kcoreaddons + kdecorations + kwindowsystem + qt5-x11extras + kconfigwidgets + kwidgetsaddons + kwayland + frameworkintegration + kcmutils + + + /usr/bin/ + /usr/lib + /usr/share/color-schemes + /usr/share/sounds + /usr/share/icons + /usr/share/locale + /usr/share/plasma + /usr/share/kstyle + /usr/share/kservices5 + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plasma-browser-integration + https://kde.org/plasma-desktop + + Safa Arıman + safaariman@pisilinux.org + + GPLv3 + app + desktop.kde.plasma + Plasma browser integration + Components necessary to integrate browsers into the Plasma Desktop. + https://download.kde.org/stable/plasma/5.24.5/plasma-browser-integration-5.24.5.tar.xz + + cmake + extra-cmake-modules + kio-devel + ki18n-devel + kcrash-devel + kconfig-devel + krunner-devel + purpose-devel + kservice-devel + qt5-base-devel + kactivities-devel + kcoreaddons-devel + kdbusaddons-devel + knotifications-devel + kfilemetadata-devel + kitemmodels-devel + plasma-workspace-devel + qt5-quickcontrols2-devel + qt5-declarative-devel + + desktop/kde/plasma/plasma-browser-integration/pspec.xml + + + plasma-browser-integration + + kio + ki18n + kcrash + kconfig + krunner + purpose + kservice + qt5-base + kactivities + kcoreaddons + kdbusaddons + kfilemetadata + knotifications + libgcc + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share + /etc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 5.17.5 + First release + Safa Arıman + safaariman@pisilinux.org + + + 2019-10-18 + 5.17.0 + First release + Safa Arıman + safaariman@pisilinux.org + + + plasma-desktop @@ -69862,7 +133182,1521 @@ components such as the Settings and gnome-shell. - plasma-workspace-wallpapers + plasma-integration + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + KDE5 Plasma artwork + Artwork, styles and assets for the Breeze visual style for the Plasma Desktop + mirrors://kde/stable/plasma/5.24.5/plasma-integration-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + kxmlgui-devel + qt5-x11extras-devel + qt5-quickcontrols2-devel + libxcb-devel + noto-fonts + breeze-style + libXcursor-devel + kcompletion-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kwayland-devel + kconfig-devel + kguiaddons-devel + kio-devel + kcoreaddons-devel + kconfigwidgets-devel + kwidgetsaddons-devel + extra-cmake-modules + libX11-devel + kiconthemes-devel + knotifications-devel + kwidgetsaddons-devel + kio-devel + kjobwidgets-devel + kwindowsystem-devel + qqc2-desktop-style + + desktop/kde/plasma/plasma-integration/pspec.xml + + + plasma-integration + + qt5-base + kxmlgui + qt5-x11extras + qt5-quickcontrols2 + libXcursor + kcompletion + kcoreaddons + ki18n + kiconthemes + kwayland + kconfig + kguiaddons + kio + kwindowsystem + kcoreaddons + kconfigwidgets + kwidgetsaddons + knotifications + kwidgetsaddons + kjobwidgets + knotifications + breeze-style + libgcc + libxcb + + + /usr/bin + /usr/share/kconf_update + /usr/lib/qt5 + /usr/share/doc + /usr/share/locale + + + + plasma-integration-devel + Development files for plasma-integration + + plasma-integration + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-04 + 5.14.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-14 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plasma-nm + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + 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.24.5/plasma-nm-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + qt5-designer + libgcc + networkmanager-qt-devel + modemmanager-qt-devel + ModemManager-devel + kcompletion-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kiconthemes-devel + kio-devel + kitemviews-devel + knotifications-devel + kservice-devel + kwallet-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + solid-devel + openconnect-devel + kdoctools-devel + NetworkManager-devel + mobile-broadband-provider-info + extra-cmake-modules + plasma-framework-devel + kdesignerplugin + kinit-devel + kemoticons-devel + kitemmodels-devel + kunitconversion-devel + qca2-qt5-devel + prison-devel + kirigami-devel + openconnect-devel + libproxy-devel + + desktop/kde/plasma/plasma-nm/pspec.xml + + + plasma-nm + + qt5-base + qca2-qt5 + kdeclarative + openconnect + kio + libproxy + networkmanager-qt + modemmanager-qt + ki18n + solid + kconfig + kwallet + kxmlgui + kservice + prison + kirigami + kitemviews + openconnect + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + NetworkManager + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-20 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-08 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-26 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 5.10.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plasma-pa + https://projects.kde.org/plasma-pa + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + desktop.kde.plasma + Plasma applet for audio volume management using PulseAudio. + Plasma applet for audio volume management using PulseAudio. + mirrors://kde/stable/plasma/5.24.5/plasma-pa-5.24.5.tar.xz + + qt5-base-devel + qt5-declarative-devel + pulseaudio-libs-devel + kconfigwidgets-devel + kcoreaddons-devel + kdeclarative-devel + plasma-framework-devel + kdoctools-devel + kglobalaccel-devel + ki18n-devel + glib2-devel + gconf-devel + libcanberra-devel + docbook-xsl + extra-cmake-modules + kirigami-devel + knotifications-devel + sound-theme-freedesktop + + desktop/kde/plasma/plasma-pa/pspec.xml + + + plasma-pa + + qt5-base + kdeclarative + libgcc + ki18n + kcoreaddons + kglobalaccel + qt5-declarative + gconf + glib2 + libcanberra + pulseaudio-libs + knotifications + sound-theme-freedesktop + + + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 5.16.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-03-02 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + plasma-sdk https://www.kde.org Pisi Linux Admins @@ -69873,25 +134707,63 @@ components such as the Settings and gnome-shell. app:console app:gui desktop.kde.plasma - The KDE Plasma Workspace Components - The KDE Plasma Workspace Components - mirrors://kde/stable/plasma/5.24.5/plasma-workspace-wallpapers-5.24.5.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 + Applications useful for Plasma development + Applications useful for Plasma development + mirrors://kde/stable/plasma/5.24.5/plasma-sdk-5.24.5.tar.xz - qt5-base-devel + qt5-base-devel + qt5-webkit-devel + qt5-svg-devel + qt5-declarative + karchive-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdeclarative-devel + ki18n-devel + kiconthemes-devel + kio-devel + knewstuff-devel + kparts-devel + plasma-framework-devel + kservice-devel + ktexteditor-devel + kwidgetsaddons-devel + kxmlgui-devel + kitemmodels-devel + kxmlgui-devel + kwindowsystem-devel extra-cmake-modules + kdoctools-devel + kirigami-devel - desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml + desktop/kde/plasma/plasma-sdk/pspec.xml - plasma-workspace-wallpapers + plasma-sdk - qt5-base + qt5-base + ktexteditor + plasma-framework + kio + libgcc + ki18n + kconfig + karchive + kpackage + kservice + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kdeclarative + kconfigwidgets + kwidgetsaddons - /etc /usr/share /usr/share/locale /usr/bin @@ -70030,7 +134902,7 @@ components such as the Settings and gnome-shell. 2020-06-16 5.19.1 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com @@ -70051,7 +134923,7 @@ components such as the Settings and gnome-shell. 2020-03-29 5.18.3 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -70063,89 +134935,89 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2019-11-10 - 5.16.5 - Rebuild Pisilinux-blue. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-09-15 5.16.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-31 5.16.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.16.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.15.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-12 5.15.3 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2019-02-27 5.15.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-21 5.15.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-12 5.15.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.14.5 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.14.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-06 5.14.3 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-11-04 + 5.14.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + 2018-10-17 5.14.1 @@ -70156,7 +135028,7 @@ components such as the Settings and gnome-shell. 2018-10-10 5.14.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -70198,7 +135070,7 @@ components such as the Settings and gnome-shell. 2018-02-03 5.11.5 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com @@ -70210,7 +135082,7 @@ components such as the Settings and gnome-shell. muscnsl@gmail.com - 2017-11-08 + 2017-11-14 5.11.3 Version bump. Mustafa Cinasal @@ -70311,444 +135183,578 @@ components such as the Settings and gnome-shell. - breeze-plymouth - https://www.kde.org + plasma-systemmonitor + https://kde.org/plasma-desktop/ - Alihan Öztürk - alihan@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - LGPLv2 - app:console + LGPLv3 + library desktop.kde.plasma - Breeze theme for Plymouth. - Breeze theme for Plymouth. - mirrors://kde/stable/plasma/5.24.5/breeze-plymouth-5.24.5.tar.xz + An interface for monitoring system sensors, process information and other system resources + 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.24.5/plasma-systemmonitor-5.24.5.tar.xz + cmake + libgcc + kio-devel + ki18n-devel + kconfig-devel + kservice-devel + qt5-base-devel + kirigami-devel + knewstuff-devel + kcoreaddons-devel + kdbusaddons-devel + kitemmodels-devel + kiconthemes-devel + kdeclarative-devel + kglobalaccel-devel extra-cmake-modules - plymouth-devel + qt5-declarative-devel + qt5-quickcontrols2-devel + libksysguard-devel - desktop/kde/plasma/breeze-plymouth/pspec.xml + desktop/kde/plasma/plasma-systemmonitor/pspec.xml - breeze-plymouth - Breeze theme for Plymouth. + plasma-systemmonitor - plymouth - grub2 - plymouth-core-libs - plymouth-theme-spinner - plymouth-graphics-libs - plymouth-plugin-script + kio + ki18n + libgcc + kconfig + kservice + qt5-base + knewstuff + kcoreaddons + kdbusaddons + kitemmodels + kiconthemes + kdeclarative + kglobalaccel + libksysguard + qt5-declarative + qt5-quickcontrols2 + /usr/bin /usr/lib /usr/share + /usr/share/locale + /usr/share/config.kcfg + /usr/share/plasma-systemmonitor /usr/share/doc - - pisi.logo.png - pisi.16bit.png - - + 2022-05-06 5.24.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.24.2 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-04 5.23.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-01 5.23.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-10 5.23.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-27 5.23.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-19 5.23.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-14 5.23.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-08-31 5.22.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-08 5.22.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-22 5.22.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.22.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-05 5.21.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-17 5.21.3 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2021-03-14 + 5.21.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + plasma-vault + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + desktop.kde.plasma + Plasma applet and services for creating encrypted vaults + 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.24.5/plasma-vault-5.24.5.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-declarative-devel + networkmanager-qt-devel + kwidgetsaddons-devel + kactivities-devel + kconfigwidgets-devel + libksysguard-devel + kdbusaddons-devel + kconfig-devel + kcoreaddons-devel + plasma-framework-devel + kio-devel + ki18n-devel + encfs + kirigami-devel + kiconthemes-devel + NetworkManager-devel + + desktop/kde/plasma/plasma-vault/pspec.xml + + + plasma-vault + util.crypt + + qt5-base + kwidgetsaddons + kactivities + kconfigwidgets + libksysguard + kdbusaddons + kconfig + kcoreaddons + plasma-framework + kio + ki18n + libgcc + encfs + kirigami + networkmanager-qt + + + /usr/lib/qt5 + /usr/share + /usr/share/locale + /usr/share/kservices5 + /usr/share/plasma + /usr/share/metainfo + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2021-03-14 5.21.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-01-10 5.20.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-12-11 5.20.4 Version bump. Ali Algul aligulle3801@gmail.com - + 2020-09-01 5.19.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-16 5.19.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-09 5.19.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-06 5.18.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-03-29 5.18.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-10 5.17.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.16.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-31 5.16.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.16.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-04-20 + + 2019-04-15 5.15.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-12 5.15.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-27 5.15.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-21 5.15.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-12 5.15.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-01-12 5.14.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.14.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-11-06 + + 2018-11-20 5.14.3 - Version bump. + move to util.crypt partof. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-12 + 5.14.3 + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2018-10-17 5.14.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-17 + + 2018-10-10 5.14.0 - Version bump + Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-08-11 5.12.5 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.12.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.12.4 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2018-04-06 5.12.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.12.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-02-03 5.11.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-12-15 5.11.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-08 5.11.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-02 5.11.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - 2016-04-23 - 5.6.2 + 2017-10-19 + 5.11.0 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org @@ -71515,6 +136521,1426 @@ components such as the Settings and gnome-shell. + + + plasma-workspace-wallpapers + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + desktop.kde.plasma + The KDE Plasma Workspace Components + The KDE Plasma Workspace Components + mirrors://kde/stable/plasma/5.24.5/plasma-workspace-wallpapers-5.24.5.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 + + qt5-base-devel + extra-cmake-modules + + desktop/kde/plasma/plasma-workspace-wallpapers/pspec.xml + + + plasma-workspace-wallpapers + + qt5-base + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-10 + 5.16.5 + Rebuild Pisilinux-blue. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + polkit-kde-authentication-agent-1 + https://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + app:gui + 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.24.5/polkit-kde-agent-1-5.24.5.tar.xz + + qt5-base-devel + kdoctools-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + ki18n-devel + kiconthemes-devel + kwidgetsaddons-devel + kwindowsystem-devel + knotifications-devel + polkit-qt-devel + elogind-devel + mesa-devel + extra-cmake-modules + + desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml + + + polkit-kde-authentication-agent-1 + + qt5-base + libgcc + kcrash + kcoreaddons + polkit-qt + ki18n + kdbusaddons + kiconthemes + kwindowsystem + knotifications + kwidgetsaddons + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + powerdevil + https://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + app:console + 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.24.5/powerdevil-5.24.5.tar.xz + + qt5-base-devel + qt5-x11extras-devel + kdoctools-devel + kidletime-devel + libxcb-devel + eudev-devel + kactivities-devel + kauth-devel + kconfig-devel + kdbusaddons-devel + kirigami-devel + kglobalaccel-devel + kio-devel + knotifyconfig-devel + kwayland-devel + libkscreen-devel + networkmanager-qt-devel + solid-devel + kdesignerplugin + kinit-devel + kunitconversion-devel + kitemmodels-devel + kemoticons-devel + docbook-xsl + plasma-workspace-devel + extra-cmake-modules + ki18n-devel + bluez-qt-devel + kcrash-devel + knotifications-devel + NetworkManager-devel + + desktop/kde/plasma/powerdevil/pspec.xml + + + powerdevil + + qt5-base + kidletime + libgcc + libxcb + eudev + plasma-workspace + kio + kauth + kcrash + ki18n + solid + kconfig + kxmlgui + kirigami + kservice + kwayland + qt5-x11extras + libkscreen + kactivities + kcompletion + kcoreaddons + kdbusaddons + kglobalaccel + knotifyconfig + kconfigwidgets + knotifications + kwidgetsaddons + networkmanager-qt + bluez-qt + + + /etc + /usr/share + /usr/share/locale + /usr/bin + /usr/lib/cmake + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + + 2022-05-06 + 5.24.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-26 + 5.24.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-04 + 5.23.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-01 + 5.23.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.23.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 5.23.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 5.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-14 + 5.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 5.22.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.22.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 5.22.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 5.22.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 5.21.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 5.21.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-10 + 5.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 5.20.4 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + 2020-09-01 + 5.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-16 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-09 + 5.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-06 + 5.18.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 5.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 5.16.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-31 + 5.16.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-22 + 5.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 5.15.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-12 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-27 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-12 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 5.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 5.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 5.14.3 + Rebuild kdelibs4 remove. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 5.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-10 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 5.12.5 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-14 + 5.12.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 5.12.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-06 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 5.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 5.11.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.11.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-08 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-02 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-14 + 5.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-13 + 5.10.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 5.10.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 5.10.2 + version bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-01 + 5.8.5 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-01 + 5.8.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-26 + 5.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-03 + 5.8.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-20 + 5.8.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-06 + 5.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-30 + 5.7.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-05-18 + 5.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 5.6.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + sddm-kcm @@ -72001,10228 +138427,6 @@ components such as the Settings and gnome-shell. - - - kwayland-integration - https://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv3 - library - 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.24.5/kwayland-integration-5.24.5.tar.xz - - kguiaddons-devel - kwayland-devel - qt5-base-devel - kwindowsystem-devel - kidletime-devel - extra-cmake-modules - qt5-wayland-devel - wayland-devel - wayland-client - wayland-cursor - wayland-server - wayland-protocols-devel - - desktop/kde/plasma/kwayland-integration/pspec.xml - - - kwayland-integration - - kwayland - kidletime - kwindowsystem - libgcc - qt5-base - kguiaddons - qt5-wayland - wayland - wayland-client - wayland-cursor - wayland-server - - - /usr/lib - /etc/xdg/kwindowsystem.kwayland.categories - /usr/share - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksysguard - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE system monitor - KDE5 system monitor daemon and service. - https://download.kde.org/stable/ksysguard/5.22.0/ksysguard-5.22.0.tar.xz - - libnl-devel - networkmanager-qt-devel - libpcap-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - knewstuff-devel - knotifications-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libksysguard-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - lm_sensors-devel - plasma-framework-devel - qt5-base-devel - docbook-xsl - extra-cmake-modules - qt5-location-devel - qt5-webkit-devel - NetworkManager-devel - - desktop/kde/plasma/ksysguard/pspec.xml - - - ksysguard - - libpcap - icon-theme-hicolor - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - ki18n - kiconthemes - kio - kitemviews - knewstuff - knotifications - kwidgetsaddons - kwindowsystem - kxmlgui - libgcc - libksysguard - lm_sensors - qt5-base - xdg-utils - libnl - networkmanager-qt - qt5-location - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.22.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-04 - 5.22.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-04 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-07 - 5.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - xdg-desktop-portal-kde - https://download.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.plasma - 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 - A backend implementation for xdg-desktop-portal using Qt/KF5 - https://download.kde.org/stable/plasma/5.24.5/xdg-desktop-portal-kde-5.24.5.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kdeclarative-devel - kirigami-devel - plasma-framework-devel - kconfig-devel - kcoreaddons-devel - kwidgetsaddons-devel - kwayland-devel - wayland-devel - wayland-client - wayland-server - wayland-cursor - libepoxy-devel - ki18n-devel - kio-devel - cups-devel - pipewire-devel - knotifications-devel - wayland-protocols-devel - plasma-wayland-protocols - - desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml - - - xdg-desktop-portal-kde - - ki18n - kio - mesa - libgcc - kservice - kwayland - libepoxy - pipewire - kconfig - kwindowsystem - qt5-base - kcoreaddons - kitemviews - knotifications - kwidgetsaddons - wayland-client - qt5-declarative - kdeclarative - kirigami - - - /usr/lib - /usr/share/dbus-1 - /usr/share - /usr/share/doc - /usr/share/locale - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-25 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 5.10.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - kscreenlocker - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Library and components for secure lock screen architecture. - Library and components for secure lock screen architecture. - mirrors://kde/stable/plasma/5.24.5/kscreenlocker-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - libX11-devel - libxcb-devel - kcrash-devel - ki18n-devel - knotifications-devel - kwindowsystem-devel - kxmlgui-devel - solid-devel - kglobalaccel-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - kdoctools-devel - kidletime-devel - kdeclarative-devel - kcmutils-devel - kwayland-devel - libXi-devel - ktextwidgets-devel - pam-devel - libseccomp-devel - plasma-framework-devel - extra-cmake-modules - ConsoleKit-devel - wayland-protocols-devel - xcb-util-keysyms-devel - wayland-devel - wayland-client - wayland-server - wayland-cursor - libXcursor-devel - layer-shell-qt-devel - plasma-wayland-protocols - - desktop/kde/plasma/kscreenlocker/pspec.xml - - - kscreenlocker - - pam - libXi - qt5-base - libgcc - ki18n - kcrash - libX11 - libxcb - kconfig - kcmutils - kxmlgui - kpackage - kwayland - kidletime - kcoreaddons - kdeclarative - kglobalaccel - kwindowsystem - libseccomp - qt5-x11extras - kconfigwidgets - knotifications - wayland-client - wayland-server - ktextwidgets - qt5-declarative - layer-shell-qt - xcb-util-keysyms - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kscreenlocker-devel - Development files for kscreenlocker - - qt5-base-devel - qt5-x11extras-devel - layer-shell-qt-devel - kscreenlocker - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-29 - 5.12.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - breeze-gtk - https://quickgit.kde.org/?p=breeze-gtk.git - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.plasma - Breeze widget theme for GTK 2 and 3 - Breeze widget theme for GTK 2 and 3 - mirrors://kde/stable/plasma/5.24.5/breeze-gtk-5.24.5.tar.xz - - sassc - cairo-devel - gdk-pixbuf-devel - python-cairo-devel - python3-cairo-devel - extra-cmake-modules - libsass-devel - gtk2-engines-murrine - breeze-style - qt5-base-devel - - desktop/kde/plasma/breeze-gtk/pspec.xml - - - breeze-gtk - Breeze widget theme for GTK 2 and 3 - - qt5-base - - - /usr/share/kconf_update - /usr/share/themes - /usr/share/doc - /usr/lib/kconf_update_bin - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - khotkeys - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - 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.24.5/khotkeys-5.24.5.tar.xz - - libX11-devel - qt5-base-devel - qt5-x11extras-devel - kdoctools-devel - kconfig-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kauth-devel - kpackage-devel - kdbusaddons-devel - kdelibs4-support-devel - kglobalaccel-devel - ki18n-devel - kio-devel - kxmlgui-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - plasma-framework-devel - plasma-workspace-devel - libXtst-devel - docbook-xsl - kjobwidgets-devel - extra-cmake-modules - - desktop/kde/plasma/khotkeys/pspec.xml - - - khotkeys - - qt5-base - kconfig - libgcc - libX11 - kservice - qt5-x11extras - kcompletion - kcoreaddons - ktextwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kdbusaddons - kdelibs4-support - kglobalaccel - ki18n - kio - kxmlgui - libXtst - kjobwidgets - plasma-workspace - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - plasma-browser-integration - https://kde.org/plasma-desktop - - Safa Arıman - safaariman@pisilinux.org - - GPLv3 - app - desktop.kde.plasma - Plasma browser integration - Components necessary to integrate browsers into the Plasma Desktop. - https://download.kde.org/stable/plasma/5.24.5/plasma-browser-integration-5.24.5.tar.xz - - cmake - extra-cmake-modules - kio-devel - ki18n-devel - kcrash-devel - kconfig-devel - krunner-devel - purpose-devel - kservice-devel - qt5-base-devel - kactivities-devel - kcoreaddons-devel - kdbusaddons-devel - knotifications-devel - kfilemetadata-devel - kitemmodels-devel - plasma-workspace-devel - qt5-quickcontrols2-devel - qt5-declarative-devel - - desktop/kde/plasma/plasma-browser-integration/pspec.xml - - - plasma-browser-integration - - kio - ki18n - kcrash - kconfig - krunner - purpose - kservice - qt5-base - kactivities - kcoreaddons - kdbusaddons - kfilemetadata - knotifications - libgcc - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share - /etc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 5.17.5 - First release - Safa Arıman - safaariman@pisilinux.org - - - 2019-10-18 - 5.17.0 - First release - Safa Arıman - safaariman@pisilinux.org - - - - - - kde-cli-tools - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - 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.24.5/kde-cli-tools-5.24.5.tar.xz - - qt5-base-devel - qt5-x11extras-devel - qt5-svg-devel - qt5-declarative-devel - libX11-devel - libxcb-devel - kdoctools-devel - kio-devel - kdesu-devel - ki18n-devel - kservice-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - kwindowsystem-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcmutils-devel - kconfig-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - docbook-xsl - kactivities-devel - plasma-workspace-devel - extra-cmake-modules - kdeclarative-devel - - desktop/kde/plasma/kde-cli-tools/pspec.xml - - - kde-cli-tools - - qt5-base - qt5-svg - libX11 - libgcc - kio - kdesu - ki18n - kservice - qt5-x11extras - kcompletion - kcoreaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - kcmutils - kconfig - kdeclarative - kactivities - plasma-workspace - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - System.Package - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - breeze - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 Plasma artwork - Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.24.5/breeze-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - libxcb-devel - qt5-x11extras-devel - frameworkintegration-devel - kdecorations-devel - kcoreaddons-devel - ki18n-devel - kcmutils-devel - kwindowsystem-devel - kconfig-devel - kpackage-devel - kwayland-devel - plasma-framework-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - breeze-icons - fftw3-devel - kiconthemes-devel - kguiaddons-devel - - desktop/kde/plasma/breeze/pspec.xml - - - breeze-style - - qt5-base - qt5-declarative - libgcc - kconfig - kguiaddons - kcoreaddons - kconfigwidgets - kwidgetsaddons - qt5-x11extras - libxcb - frameworkintegration - kcmutils - kcoreaddons - ki18n - kwindowsystem - kwayland - kiconthemes - breeze-icons - kdecorations - - - /usr/bin - /usr/lib/kconf_update_bin - /usr/lib/qt5 - /usr/lib/libbreezecommon5.so* - /usr/lib/cmake/Breeze/BreezeConfigVersion.cmake - /usr/lib/cmake/Breeze/BreezeConfig.cmake - /usr/share/color-schemes - /usr/share/doc - /usr/share/icons/hicolor/scalable/apps/breeze-settings.svgz - /usr/share/kconf_update - /usr/share/metainfo/org.kde.breezedark.desktop.appdata.xml - /usr/share/metainfo/org.kde.breezetwilight.desktop.appdata.xml - /usr/share/kservices5 - /usr/share/kstyle - /usr/share/locale - /usr/share/plasma - /usr/share/QtCurve - - - - breeze-cursors - - breeze-style - - - /usr/share/icons/breeze_cursors - /usr/share/icons/Breeze_Snow - - - - breeze-wallpapers - - breeze-style - - - /usr/share/wallpapers/Next - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-02 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - plasma-nm - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - 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.24.5/plasma-nm-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-designer - libgcc - networkmanager-qt-devel - modemmanager-qt-devel - ModemManager-devel - kcompletion-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - knotifications-devel - kservice-devel - kwallet-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - solid-devel - openconnect-devel - kdoctools-devel - NetworkManager-devel - mobile-broadband-provider-info - extra-cmake-modules - plasma-framework-devel - kdesignerplugin - kinit-devel - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - qca2-qt5-devel - prison-devel - kirigami-devel - openconnect-devel - libproxy-devel - - desktop/kde/plasma/plasma-nm/pspec.xml - - - plasma-nm - - qt5-base - qca2-qt5 - kdeclarative - openconnect - kio - libproxy - networkmanager-qt - modemmanager-qt - ki18n - solid - kconfig - kwallet - kxmlgui - kservice - prison - kirigami - kitemviews - openconnect - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - NetworkManager - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-20 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-08 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - plasma-systemmonitor - https://kde.org/plasma-desktop/ - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - An interface for monitoring system sensors, process information and other system resources - 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.24.5/plasma-systemmonitor-5.24.5.tar.xz - - cmake - libgcc - kio-devel - ki18n-devel - kconfig-devel - kservice-devel - qt5-base-devel - kirigami-devel - knewstuff-devel - kcoreaddons-devel - kdbusaddons-devel - kitemmodels-devel - kiconthemes-devel - kdeclarative-devel - kglobalaccel-devel - extra-cmake-modules - qt5-declarative-devel - qt5-quickcontrols2-devel - libksysguard-devel - - desktop/kde/plasma/plasma-systemmonitor/pspec.xml - - - plasma-systemmonitor - - kio - ki18n - libgcc - kconfig - kservice - qt5-base - knewstuff - kcoreaddons - kdbusaddons - kitemmodels - kiconthemes - kdeclarative - kglobalaccel - libksysguard - qt5-declarative - qt5-quickcontrols2 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/config.kcfg - /usr/share/plasma-systemmonitor - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - kde-gtk-config - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - 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.24.5/kde-gtk-config-5.24.5.tar.xz - - qt5-base-devel - qt5-svg-devel - sassc - xsettingsd - libX11-devel - kio-devel - glib2-devel - ki18n-devel - kcoreaddons-devel - kiconthemes-devel - kwidgetsaddons-devel - kcmutils-devel - karchive-devel - kauth-devel - kconfigwidgets-devel - libXcursor-devel - knewstuff-devel - kguiaddons-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel - extra-cmake-modules - kdecorations-devel - kdbusaddons-devel - - - schemas.patch - - desktop/kde/plasma/kde-gtk-config/pspec.xml - - - kde-gtk-config - - qt5-base - qt5-svg - kconfig - glib2 - kio - ki18n - xsettingsd - kcoreaddons - kiconthemes - kwidgetsaddons - karchive - knewstuff - kguiaddons - kconfigwidgets - libXcursor - gtk2 - gtk3 - kdbusaddons - kdecorations - - - /usr/share - /etc/xdg/cgc* - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - discover - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.plasma - KDE and Plasma resources management GUI - KDE and Plasma resources management GUI - mirrors://kde/stable/plasma/5.24.5/discover-5.24.5.tar.xz - - kio-devel - fwupd-devel - attica-devel - karchive-devel - kconfig-devel - kservice-devel - discount-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - kitemmodels-devel - knotifications-devel - kxmlgui-devel - kdeclarative-devel - plasma-framework-devel - knewstuff-devel - extra-cmake-modules - kirigami-devel - kcmutils-devel - kidletime-devel - kuserfeedback-devel - appstream-qt5-devel - qt5-svg-devel - flatpak-devel - qt5-base-devel - qt5-x11extras-devel - qt5-declarative-devel - - desktop/kde/plasma/discover/pspec.xml - - - discover - - qt5-base - qt5-x11extras - kdeclarative - kio - fwupd - glib2 - attica - kconfig - kservice - kcmutils - kconfig - kitemmodels - kcoreaddons - kdbusaddons - kconfigwidgets - knotifications - kwidgetsaddons - ki18n - kcrash - kxmlgui - kidletime - kwindowsystem - qt5-declarative - knewstuff - appstream-qt5 - - - /etc - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share - /usr/share/locale - - - - discover-plugin-flatpak - hardware.virtualization - - discover - glib2 - flatpak - appstream-qt5 - qt5-base - ki18n - kconfig - kcoreaddons - gnupg - - - /usr/lib/qt5/plugins/discover-notifier/FlatpakNotifier.so - /usr/lib/qt5/plugins/discover/flatpak-backend.so - /usr/share/applications/org.kde.discover-flatpak - /usr/share/libdiscover/categories/flatpak-backend-categories.xml - /usr/share/metainfo/org.kde.discover.flatpak.appdata.xml - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-20 - 5.15.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-19 - 5.14.3 - Rebuild for flatpak-1.1.0. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 5.14.1 - discover-flatpak. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-14 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-18 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - oxygen - https://projects.kde.org/projects/kde/workspace/oxygen - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL - desktop.kde.plasma - KDE Oxygen style - KDE Oxygen style - mirrors://kde/stable/plasma/5.24.5/oxygen-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - kcmutils-devel - frameworkintegration-devel - kcompletion-devel - kconfig-devel - kguiaddons-devel - ki18n-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - cairo-devel - libxcb-devel - kwayland-devel - gtk3-devel - kdoctools-devel - kdecorations-devel - plasma-workspace-devel - extra-cmake-modules - - desktop/kde/plasma/oxygen/pspec.xml - - - oxygen - - ki18n - libgcc - libxcb - kconfig - qt5-base - qt5-declarative - kguiaddons - kcompletion - kcoreaddons - kdecorations - kwindowsystem - qt5-x11extras - kconfigwidgets - kwidgetsaddons - kwayland - frameworkintegration - kcmutils - - - /usr/bin/ - /usr/lib - /usr/share/color-schemes - /usr/share/sounds - /usr/share/icons - /usr/share/locale - /usr/share/plasma - /usr/share/kstyle - /usr/share/kservices5 - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - breeze-grub - https://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.plasma - Breeze theme for GRUB. - Breeze theme for GRUB. - mirrors://kde/stable/plasma/5.24.5/breeze-grub-5.24.5.tar.xz - desktop/kde/plasma/breeze-grub/pspec.xml - - - breeze-grub - Breeze theme for GRUB. - - grub2 - noto-fonts - - - /boot/grub2/themes - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - plasma-pa - https://projects.kde.org/plasma-pa - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Plasma applet for audio volume management using PulseAudio. - Plasma applet for audio volume management using PulseAudio. - mirrors://kde/stable/plasma/5.24.5/plasma-pa-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - pulseaudio-libs-devel - kconfigwidgets-devel - kcoreaddons-devel - kdeclarative-devel - plasma-framework-devel - kdoctools-devel - kglobalaccel-devel - ki18n-devel - glib2-devel - gconf-devel - libcanberra-devel - docbook-xsl - extra-cmake-modules - kirigami-devel - knotifications-devel - sound-theme-freedesktop - - desktop/kde/plasma/plasma-pa/pspec.xml - - - plasma-pa - - qt5-base - kdeclarative - libgcc - ki18n - kcoreaddons - kglobalaccel - qt5-declarative - gconf - glib2 - libcanberra - pulseaudio-libs - knotifications - sound-theme-freedesktop - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-02 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libksysguard - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Task management and system monitoring library - Task management and system monitoring library - mirrors://kde/stable/plasma/5.24.5/libksysguard-5.24.5.tar.xz - - qt5-base-devel - qt5-script-devel - qt5-webkit-devel - qt5-x11extras-devel - qt5-webengine-devel - qt5-designer-devel - qt5-declarative-devel - kio-devel - solid-devel - kglobalaccel-devel - kpackage-devel - kjobwidgets-devel - kdeclarative-devel - kauth-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdoctools-devel - libX11-devel - libXres-devel - zlib-devel - libnsl-devel - libnl-devel - libcap-devel - knewstuff-devel - plasma-framework-devel - extra-cmake-modules - attr-devel - pam-devel - libpcap-devel - lm_sensors-devel - - desktop/kde/plasma/libksysguard/pspec.xml - - - libksysguard - - kio - solid - libpcap - kservice - kglobalaccel - qt5-webengine - qt5-webchannel - qt5-base - qt5-declarative - kpackage - kjobwidgets - kdeclarative - libX11 - libgcc - zlib - libXres - qt5-webkit - qt5-x11extras - kwindowsystem - kconfigwidgets - kwidgetsaddons - kconfig - kauth - kcoreaddons - ki18n - libnsl - libcap - lm_sensors - - - /etc - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libksysguard-devel - Development files for libksysguard - - libksysguard - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwin - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 window manager - KWin is the window manager of the K desktop environment. - mirrors://kde/stable/plasma/5.24.5/kwin-5.24.5.tar.xz - - lcms2-devel - kactivities-devel - kauth-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdeclarative-devel - kdecorations-devel - kdoctools-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - knewstuff-devel - knotifications-devel - kpackage-devel - kservice-devel - ktextwidgets-devel - kwayland-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kidletime-devel - kscreenlocker-devel - libepoxy-devel - libICE-devel - libSM-devel - libX11-devel - libxcb-devel - libXcursor-devel - libXext-devel - libxkbcommon-devel - libXxf86vm-devel - mesa-devel - fontconfig-devel - freetype-devel - xcb-util-wm-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-designer-devel - qt5-multimedia-devel - qt5-script-devel - qt5-x11extras-devel - qt5-sensors-devel - qt5-graphicaleffects - qt5-virtualkeyboard-devel - qt5-quickcontrols - qt5-quickcontrols2-devel - wayland-client - wayland-cursor - wayland-devel - xcb-util-image-devel - xcb-util-keysyms-devel - eudev-devel - libinput-devel - xcb-util-cursor-devel - qt5-multimedia - docbook-xsl - libXi-devel - extra-cmake-modules - xorg-xwayland-devel - breeze-style - libdrm-devel - kirigami-devel - pipewire-devel - lcms2-devel - krunner-devel - xcb-util-devel - kwayland-server-devel - libqaccessibilityclient-devel - - desktop/kde/plasma/kwin/pspec.xml - - - kwin - - lcms2 - kactivities - kauth - libcap - kcmutils - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kcrash - wayland - kdeclarative - kdecorations - kglobalaccel - ki18n - kiconthemes - kio - knewstuff - knotifications - kservice - kwayland - kwidgetsaddons - kwindowsystem - kxmlgui - kscreenlocker - kidletime - libepoxy - libgcc - libXi - libICE - libSM - libX11 - libxcb - libxkbcommon - mesa - plasma-framework - qt5-base - qt5-declarative - qt5-script - qt5-x11extras - qt5-sensors - wayland-cursor - wayland-client - xcb-util-wm - xcb-util-image - xcb-util-keysyms - eudev - kpackage - libdrm - libinput - ktextwidgets - freetype - fontconfig - xcb-util-cursor - kwayland-server - wayland-server - libqaccessibilityclient - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kwin-devel - Development files for kwin - - kwin - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - kwin-wayland - Wayland support for KWin - - mesa - libcap - libdrm - kpackage - wayland - freetype - pipewire - kidletime - fontconfig - kwin - - - /usr/bin/kwin_wayland - /usr/lib/systemd/user/plasma-kwin_wayland.service - /usr/lib/qt5/plugins/org.kde.kwin.waylandbackends/KWinWayland*.so - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-12 - 5.18.3 - Version bump qpa patch kapatıldı - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-27 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-04 - 5.14.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-24 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-07 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdeplasma-addons - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Additional client tools for KDE applications - Additional client tools for KDE applications - mirrors://kde/stable/plasma/5.24.5/kdeplasma-addons-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - qt5-webengine-devel - qt5-graphicaleffects - libxcb-devel - xcb-util-image-devel - glib2-devel - scim-devel - ibus-devel - kactivities-devel - kconfig-devel - kdoctools-devel - knewstuff-devel - kemoticons-devel - kitemmodels-devel - kross-devel - kinit-devel - kunitconversion-devel - kcmutils-devel - kdesignerplugin - kiconthemes-devel - krunner-devel - plasma-framework-devel - plasma-workspace-devel - extra-cmake-modules - kconfigwidgets-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - libX11-devel - kholidays-devel - kdeclarative-devel - purpose-devel - karchive-devel - knotifications-devel - - desktop/kde/plasma/kdeplasma-addons/pspec.xml - - - kdeplasma-addons - - qt5-base - plasma-framework - libgcc - libxcb - xcb-util-image - glib2 - knewstuff - krunner - kio - kiconthemes - ki18n - kross - sonnet - kconfig - kxmlgui - karchive - kpackage - kservice - kholidays - kdeclarative - qt5-webengine - qt5-x11extras - qt5-declarative - qt5-graphicaleffects - kcompletion - kcoreaddons - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kunitconversion - kactivities - plasma-workspace - ibus - scim-libs - xcb-util-keysyms - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/include/plasma - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-24 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-12 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - plasma-integration - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 Plasma artwork - Artwork, styles and assets for the Breeze visual style for the Plasma Desktop - mirrors://kde/stable/plasma/5.24.5/plasma-integration-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - kxmlgui-devel - qt5-x11extras-devel - qt5-quickcontrols2-devel - libxcb-devel - noto-fonts - breeze-style - libXcursor-devel - kcompletion-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kwayland-devel - kconfig-devel - kguiaddons-devel - kio-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - extra-cmake-modules - libX11-devel - kiconthemes-devel - knotifications-devel - kwidgetsaddons-devel - kio-devel - kjobwidgets-devel - kwindowsystem-devel - qqc2-desktop-style - - desktop/kde/plasma/plasma-integration/pspec.xml - - - plasma-integration - - qt5-base - kxmlgui - qt5-x11extras - qt5-quickcontrols2 - libXcursor - kcompletion - kcoreaddons - ki18n - kiconthemes - kwayland - kconfig - kguiaddons - kio - kwindowsystem - kcoreaddons - kconfigwidgets - kwidgetsaddons - knotifications - kwidgetsaddons - kjobwidgets - knotifications - breeze-style - libgcc - libxcb - - - /usr/bin - /usr/share/kconf_update - /usr/lib/qt5 - /usr/share/doc - /usr/share/locale - - - - plasma-integration-devel - Development files for plasma-integration - - plasma-integration - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-04 - 5.14.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-14 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - bluedevil - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE 5 Bluetooth Stack - Integrate the Bluetooth technology within KDE workspace and applications - mirrors://kde/stable/plasma/5.24.5/bluedevil-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - shared-mime-info - plasma-framework-devel - bluez-qt-devel - kded-devel - kio-devel - ki18n-devel - kconfig-devel - kcoreaddons-devel - kdbusaddons-devel - kiconthemes-devel - kconfigwidgets-devel - kwindowsystem-devel - knotifications-devel - kwidgetsaddons-devel - kirigami-devel - bluez-qt-devel - kdeclarative-devel - extra-cmake-modules - fwupd-devel - - desktop/kde/plasma/bluedevil/pspec.xml - - - bluedevil - - qt5-base - libgcc - bluez-qt - kio - ki18n - kconfig - kdeclarative - qt5-declarative - kcoreaddons - kdbusaddons - knotifications - kwindowsystem - kwidgetsaddons - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwallet-pam - https://projects.kde.org/kwallet-pam - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KWallet PAM integration. - KWallet PAM integration. - mirrors://kde/stable/plasma/5.24.5/kwallet-pam-5.24.5.tar.xz - - socat - pam-devel - kwallet-devel - libgcrypt-devel - extra-cmake-modules - qt5-base-devel - - desktop/kde/plasma/kwallet-pam/pspec.xml - - - kwallet-pam - - pam - socat - qt5-base - libgcrypt - - - /etc/xdg/autostart - /lib - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-07-13 - 5.12.5 - add socat for dependency. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - system-settings @@ -82714,4175 +138918,403 @@ components such as the Settings and gnome-shell. - libkscreen - https://www.kde.org + xdg-desktop-portal-kde + https://download.kde.org/ - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org - LGPLv2 + GPLv2 library - app:console desktop.kde.plasma - KDE5 screen management library - Dynamic display management library for KDE - mirrors://kde/stable/plasma/5.24.5/libkscreen-5.24.5.tar.xz + 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 + A backend implementation for xdg-desktop-portal using Qt/KF5 + https://download.kde.org/stable/plasma/5.24.5/xdg-desktop-portal-kde-5.24.5.tar.xz + extra-cmake-modules qt5-base-devel - qt5-wayland-devel - qt5-x11extras-devel - libxcb-devel - doxygen - kwayland-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-keysyms-devel - libXcursor-devel - libXrandr-devel + qt5-declarative-devel + kdeclarative-devel + kirigami-devel + plasma-framework-devel + kconfig-devel + kcoreaddons-devel + kwidgetsaddons-devel kwayland-devel wayland-devel wayland-client - wayland-cursor wayland-server - extra-cmake-modules + wayland-cursor + libepoxy-devel + ki18n-devel + kio-devel + cups-devel + pipewire-devel + knotifications-devel + wayland-protocols-devel plasma-wayland-protocols - desktop/kde/plasma/libkscreen/pspec.xml + desktop/kde/plasma/xdg-desktop-portal-kde/pspec.xml - libkscreen + xdg-desktop-portal-kde - qt5-base - qt5-wayland - kwayland - libXrandr - libxcb - libgcc - wayland - wayland-client - wayland-cursor - wayland-server - qt5-x11extras - - - /etc/xdg - /usr/bin/kscreen-doctor - /usr/lib/qt5 - /usr/lib - /usr/share/qlogging-categories5/libkscreen.categories - /usr/share/doc - /usr/share/dbus-1 - - - - libkscreen-devel - Development files for libkscreen - - libkscreen - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksshaskpass - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - ssh-add helper that uses kwallet and kpassworddialog - ssh-add helper that uses kwallet and kpassworddialog - mirrors://kde/stable/plasma/5.24.5/ksshaskpass-5.24.5.tar.xz - - qt5-base-devel - kdoctools-devel - kcoreaddons-devel - ki18n-devel - kwallet-devel - kwidgetsaddons-devel - libxslt - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/ksshaskpass/pspec.xml - - - ksshaskpass - - qt5-base - libgcc - kcoreaddons - kwidgetsaddons ki18n - kwallet - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - ksshaskpass.sh - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksystemstats - https://kde.org/plasma-desktop/ - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - KSystemStats is a daemon that collects statistics about the running system - 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.24.5/ksystemstats-5.24.5.tar.xz - - kio-devel - eudev-devel - ki18n-devel - libnl-devel - solid-devel - libgcc - qt5-base-devel - lm_sensors-devel - kcoreaddons-devel - kdbusaddons-devel - libksysguard-devel - kiconthemes-devel - libnsl-devel - libtirpc-devel - NetworkManager-devel - networkmanager-qt-devel - extra-cmake-modules - - desktop/kde/plasma/ksystemstats/pspec.xml - - - ksystemstats - kio - eudev - ki18n - libnl - solid + mesa libgcc + kservice + kwayland + libepoxy + pipewire + kconfig + kwindowsystem qt5-base - lm_sensors kcoreaddons - kdbusaddons - libksysguard - networkmanager-qt + kitemviews + knotifications + kwidgetsaddons + wayland-client + qt5-declarative + kdeclarative + kirigami - /usr/bin /usr/lib /usr/share/dbus-1 - /usr/share/locale - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 5.22.1 - First release. - Pisi Linux Admins - admin@pisilinux.org - - - - - - plasma-sdk - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - desktop.kde.plasma - Applications useful for Plasma development - Applications useful for Plasma development - mirrors://kde/stable/plasma/5.24.5/plasma-sdk-5.24.5.tar.xz - - qt5-base-devel - qt5-webkit-devel - qt5-svg-devel - qt5-declarative - karchive-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kiconthemes-devel - kio-devel - knewstuff-devel - kparts-devel - plasma-framework-devel - kservice-devel - ktexteditor-devel - kwidgetsaddons-devel - kxmlgui-devel - kitemmodels-devel - kxmlgui-devel - kwindowsystem-devel - extra-cmake-modules - kdoctools-devel - kirigami-devel - - desktop/kde/plasma/plasma-sdk/pspec.xml - - - plasma-sdk - - qt5-base - ktexteditor - plasma-framework - kio - libgcc - ki18n - kconfig - karchive - kpackage - kservice - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kdeclarative - kconfigwidgets - kwidgetsaddons - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib /usr/share/doc + /usr/share/locale - + 2022-05-06 5.24.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2022-02-26 5.24.2 Version bump. Kamil Atlı suvari@pisilinux.org - + 2022-01-04 5.23.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-12-01 5.23.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-11-10 5.23.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-27 5.23.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-19 5.23.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-10-14 5.23.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-08-31 5.22.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-07-08 5.22.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-22 5.22.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-06-15 5.22.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-05-05 5.21.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-17 5.21.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2021-03-14 5.21.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-01-10 + + 2021-01-25 5.20.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-12-11 5.20.4 Version bump. Ali Algul aligulle3801@gmail.com - + 2020-09-01 5.19.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-06-16 5.19.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-04 - 5.14.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-14 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - milou - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDedicated search application built on top of Baloo - Dedicated search application built on top of Baloo - mirrors://kde/stable/plasma/5.24.5/milou-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-script - kdoctools-devel - kdeclarative-devel - ki18n-devel - krunner-devel - plasma-framework-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - extra-cmake-modules - kitemmodels-devel - - desktop/kde/plasma/milou/pspec.xml - - - milou - - qt5-base - qt5-declarative - krunner - libgcc - kconfig - kservice - kcoreaddons - kitemmodels - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-06-09 5.19.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-05-06 5.18.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 5.16.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kinfocenter - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 info center - KDE5 Utility that provides information about a computer system. - mirrors://kde/stable/plasma/5.24.5/kinfocenter-5.24.5.tar.xz - - qt5-base-devel - qt5-declarative-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdeclarative-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kpackage-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libraw1394-devel - libX11-devel - mesa-glu-devel - mesa-devel - pciutils-devel - plasma-framework-devel - solid-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kwayland-devel - kdesignerplugin - docbook-xsl - extra-cmake-modules - kirigami-devel - libglvnd-devel - system-settings - vulkan-tools - wayland-utils - util-linux - libusb-devel - - desktop/kde/plasma/kinfocenter/pspec.xml - - - kinfocenter - - kcmutils - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdeclarative - ki18n - kiconthemes - kio - kservice - kwayland - kwidgetsaddons - kxmlgui - kcrash - libraw1394 - libX11 - mesa-glu - mesa - pciutils - kwindowsystem - qt5-base - qt5-declarative - solid - libglvnd - kirigami - system-settings - wayland-utils - libgcc - libusb - mesa-demos - mesa - mesa-utils - vulkan-tools - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/about-distro - - - kcm-about-distrorc - pisilinux.svg - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-19 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-03-29 5.18.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2020-01-10 5.17.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-09-15 5.16.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-31 5.16.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-07-22 5.16.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-04-15 5.15.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-03-12 5.15.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-27 5.15.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-26 5.15.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2019-02-12 5.15.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - drkonqi - https://www.kde.org/ - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv2 - library - desktop.kde.plasma - The KDE crash handler - The KDE crash handler - The KDE crash handler - The KDE crash handler - https://download.kde.org/stable/plasma/5.24.5/drkonqi-5.24.5.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-x11extras-devel - ki18n-devel - kcoreaddons-devel - kservice-devel - kconfig-devel - kjobwidgets-devel - kio-devel - kcrash-devel - kcompletion-devel - kxmlrpcclient-devel - kwidgetsaddons-devel - kwallet-devel - knotifications-devel - kidletime-devel - at-spi2-core-devel - xorg-server-xvfb - rubygems - ruby-devel - gdb-devel - kwindowsystem-devel - syntax-highlighting-devel - - desktop/kde/plasma/drkonqi/pspec.xml - - - drkonqi - - qt5-base - qt5-x11extras - libgcc - ki18n - kcoreaddons - kservice - kidletime - kconfig - kconfigwidgets - kjobwidgets - kio - kcrash - kcompletion - kxmlrpcclient - kwidgetsaddons - kwallet - knotifications - kwindowsystem - syntax-highlighting - - - /etc/xdg - /usr/lib - /usr/share - /usr/share/locale - /usr/share/drkonqi - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-01-12 5.14.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-12-26 5.14.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-11-06 5.14.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-17 5.14.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-10-10 5.14.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-08-11 5.12.5 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - + 2018-05-14 5.12.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-04-23 5.12.4 - Version bump. + Version bump Mustafa Cinasal muscnsl@gmail.com - + 2018-04-06 5.12.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-03-22 5.12.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2018-02-03 5.11.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-12-15 5.11.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-08 5.11.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - + 2017-11-02 5.11.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-11-01 - 5.11.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - + 2017-10-14 5.11.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-09-13 + + 2017-09-14 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.10.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-05 - 5.8.5 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-08-02 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kscreen - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - 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.24.5/kscreen-5.24.5.tar.xz - - qt5-base-devel - qt5-sensors-devel - qt5-graphicaleffects - qt5-declarative-devel - kglobalaccel-devel - libkscreen-devel - kconfigwidgets-devel - kdbusaddons-devel - ki18n-devel - kwidgetsaddons-devel - kconfig-devel - kdoctools-devel - kxmlgui-devel - kiconthemes-devel - mesa-devel - extra-cmake-modules - plasma-framework-devel - kdeclarative-devel - kcmutils-devel - qt5-x11extras-devel - libXi-devel - - desktop/kde/plasma/kscreen/pspec.xml - - - kscreen - - qt5-base - qt5-sensors - libgcc - libkscreen - qt5-declarative - kconfig - kcoreaddons - kglobalaccel - kconfigwidgets - kwidgetsaddons - kdbusaddons - ki18n - kxmlgui - kdeclarative - kcmutils - plasma-framework - qt5-x11extras - libXi - libX11 - libxcb - - - /usr/share - /etc/xdg - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-12 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - polkit-kde-authentication-agent-1 - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - app:gui - 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.24.5/polkit-kde-agent-1-5.24.5.tar.xz - - qt5-base-devel - kdoctools-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - kwidgetsaddons-devel - kwindowsystem-devel - knotifications-devel - polkit-qt-devel - elogind-devel - mesa-devel - extra-cmake-modules - - desktop/kde/plasma/polkit-kde-authentication-agent-1/pspec.xml - - - polkit-kde-authentication-agent-1 - - qt5-base - libgcc - kcrash - kcoreaddons - polkit-qt - ki18n - kdbusaddons - kiconthemes - kwindowsystem - knotifications - kwidgetsaddons - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwayland-server - https://kde.org/plasma-desktop - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - desktop.kde.plasma - Wayland server components built on KDE Frameworks - 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.24.5/kwayland-server-5.24.5.tar.xz - - doxygen - mesa-devel - kwayland-devel - wayland-protocols-devel - qt5-base-devel - qt5-wayland-devel - extra-cmake-modules - plasma-wayland-protocols - - desktop/kde/plasma/kwayland-server/pspec.xml - - - kwayland-server - - libgcc - libglvnd - qt5-base - wayland-server - - - /usr/lib - /usr/share - /usr/share/doc - - - - kwayland-server-devel - Development files for kwayland-server - - kwayland-server - qt5-base-devel - wayland-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 First release PisiLinux Community admins@pisilinux.org @@ -86891,66951 +139323,14008 @@ components such as the Settings and gnome-shell. - kgamma5 - https://projects.kde.org/kgamma5 + kfoldersync + https://www.linux-apps.com/content/show.php/?content=164092 - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - Adjust your monitor's gamma settings. - Adjust your monitor's gamma settings. - mirrors://kde/stable/plasma/5.24.5/kgamma5-5.24.5.tar.xz - - qt5-base-devel - qt5-x11extras-devel - libX11-devel - kdoctools-devel - kconfig-devel - kconfigwidgets-devel - ki18n-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libXxf86vm-devel - docbook-xsl - extra-cmake-modules - - desktop/kde/plasma/kgamma5/pspec.xml - - - kgamma5 - - qt5-base - kconfig - libgcc - libX11 - ki18n - kcoreaddons - kconfigwidgets - libXxf86vm - - - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwrited - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.plasma - KDE5 daemon listening for wall and write messages - KDE5 daemon listening for wall and write messages - mirrors://kde/stable/plasma/5.24.5/kwrited-5.24.5.tar.xz - - qt5-base-devel - ki18n-devel - kdoctools-devel - kcoreaddons-devel - knotifications-devel - kpty-devel - kdbusaddons-devel - extra-cmake-modules - - desktop/kde/plasma/kwrited/pspec.xml - - - kwrited - - qt5-base - kpty - libgcc - kcoreaddons - knotifications - kdbusaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kactivitymanagerd - https://www.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - 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.24.5/kactivitymanagerd-5.24.5.tar.xz - - extra-cmake-modules - boost-devel - qt5-base-devel - kdbusaddons-devel - ki18n-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - kconfig-devel - kcoreaddons-devel - kwindowsystem-devel - kglobalaccel-devel - kxmlgui-devel - kio-devel - kcrash-devel - - desktop/kde/plasma/kactivitymanagerd/pspec.xml - - - kactivitymanagerd - Core components for the KDE Activity concept. - - kio - ki18n - kcrash - kconfig - kxmlgui - kservice - qt5-base - kcoreaddons - kdbusaddons - kglobalaccel - kwindowsystem - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - /usr/share/kservices5 - /usr/share/kservicetypes5 - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-26 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. Stefan Gronewold (groni) groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - powerdevil - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - 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.24.5/powerdevil-5.24.5.tar.xz - - qt5-base-devel - qt5-x11extras-devel - kdoctools-devel - kidletime-devel - libxcb-devel - eudev-devel - kactivities-devel - kauth-devel - kconfig-devel - kdbusaddons-devel - kirigami-devel - kglobalaccel-devel - kio-devel - knotifyconfig-devel - kwayland-devel - libkscreen-devel - networkmanager-qt-devel - solid-devel - kdesignerplugin - kinit-devel - kunitconversion-devel - kitemmodels-devel - kemoticons-devel - docbook-xsl - plasma-workspace-devel - extra-cmake-modules - ki18n-devel - bluez-qt-devel - kcrash-devel - knotifications-devel - NetworkManager-devel - - desktop/kde/plasma/powerdevil/pspec.xml - - - powerdevil - - qt5-base - kidletime - libgcc - libxcb - eudev - plasma-workspace - kio - kauth - kcrash - ki18n - solid - kconfig - kxmlgui - kirigami - kservice - kwayland - qt5-x11extras - libkscreen - kactivities - kcompletion - kcoreaddons - kdbusaddons - kglobalaccel - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - networkmanager-qt - bluez-qt - - - /etc - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/cmake - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-06 - 5.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 5.24.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-04 - 5.23.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.23.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.23.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 5.23.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 5.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-14 - 5.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 5.22.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.22.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 5.22.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 5.22.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 5.21.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 5.21.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-10 - 5.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 5.20.4 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2020-09-01 - 5.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-09 - 5.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.18.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 5.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.16.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-31 - 5.16.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.16.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 5.15.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-27 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 5.14.3 - Rebuild kdelibs4 remove. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-06 - 5.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-10 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 5.12.5 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-14 - 5.12.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-23 - 5.12.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-06 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 5.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 5.11.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.11.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-02 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 5.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-13 - 5.10.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.10.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 5.10.2 - version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-03-01 - 5.8.5 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-01 - 5.8.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-26 - 5.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-03 - 5.8.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-20 - 5.8.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-06 - 5.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-30 - 5.7.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - colord-kde - http://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org GPLv2 - app:gui - desktop.kde.admin - Colord support for KDE - KDE support for colord including KDE Daemon module and System Settings module. - mirrors://kde/stable/colord-kde/0.5.0/src/colord-kde-0.5.0.tar.xz + desktop.kde.utils + Folder synchronization and backup tool for KDE + Smart folder comparison, It depends only on KDE Frameworks. + https://dl.opendesktop.org/api/files/download/id/1485353737/kfoldersync-3.4.1.tar.xz - qt5-base-devel - qt5-x11extras-devel - glibc-devel - libXext-devel - libICE-devel - libX11-devel - libxcb-devel - libXrandr-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kiconthemes-devel + extra-cmake-modules gettext-devel + cmake + kcoreaddons-devel + kdbusaddons-devel ki18n-devel - kservice-devel - kcmutils-devel kio-devel knotifications-devel - plasma-framework-devel + kxmlgui-devel + qt5-base-devel + kconfig-devel + kconfigwidgets-devel + kdbusaddons-devel + ki18n-devel + kitemviews-devel + kio-devel kwidgetsaddons-devel kwindowsystem-devel - kitemviews-devel - lcms2-devel - extra-cmake-modules + kxmlgui-devel - desktop/kde/admin/colord-kde/pspec.xml + desktop/kde/utils/kfoldersync/pspec.xml - colord-kde + kfoldersync + Folder synchronization and backup tool for KDE - qt5-base - qt5-x11extras - kconfig - kconfigwidgets - libX11 - ki18n - lcms2 - libgcc - kservice - libXrandr kcoreaddons + ki18n + kio + qt5-base + libgcc + kconfig + kxmlgui + kitemviews kdbusaddons + kconfigwidgets kwidgetsaddons + kwindowsystem /usr/bin - /usr/lib /usr/share /usr/share/doc - - 2019-09-17 - 0.5.0 + + 2019-01-20 + 3.4.1 Rebuild - Mustafa Cinasal + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-11-13 + 3.4.1 + Rebuild + Mustafa Cinasl muscnsl@gmail.com - 2019-02-14 - 0.5.0 + 2018-10-14 + 3.4.1 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - 2019-01-20 - 0.5.0 + 2018-08-11 + 3.4.1 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - 2018-11-13 - 0.5.0 + 2018-03-23 + 3.4.1 Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-14 - 0.5.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 0.5.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-03-24 - 0.5.0 - Rebuild - Mustafa Cinasal + Mustafa Cinasl muscnsl@gmail.com + + 2017-09-21 + 3.4.1 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-04 + 3.3.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + - 2016-11-13 - 0.5.0 + 2016-05-11 + 3.2.0 First release - Stefan Gronewold + Stefan Gronewold (groni) groni@pisilinux.org - grub2-editor - https://github.com/maz-1/grub2-editor + kjots + https://userbase.kde.org/KJots Stefan Gronewold groni@pisilinux.org GPL - desktop.kde.admin - A KDE Control Module for configuring the GRUB2 bootloader - Grub2 bootloader yapılandırmak için bir KDE Kontrol Modülü - This port has some extra features compared to original grub2-editor: - All initialize jobs are merged into the same action, so password are only asked once on startup. Add password protection setup(only tested on archlinux). - Sorunsuz KDE Sistem Ayarları entegre, bu Grub2 yapılandırmasını yönetmek için merkezi bir yerdir. En önemlisi birçok Grub2 yapılandırma seçenekleri, destekler. - https://github.com/maz-1/grub2-editor/archive/0.8.1.tar.gz + desktop.kde.utils + A note taking application for KDE + A note taking application for KDE + mirrors://kde/stable/kjots/5.0.2/kjots-5.0.2.tar.xz + akonadi-devel + akonadi-notes-devel + boost-devel extra-cmake-modules - gettext-devel - grub2 - os-prober - GraphicsMagick-devel - imagemagick-devel - kauth-devel - kconfigwidgets-devel - kcoreaddons-devel + kcmutils-devel + kdelibs4-support-devel kdoctools-devel - ki18n-devel - kio-devel - qca2-qt5-devel + kpimtextedit-devel qt5-base-devel - solid-devel + kitemmodels-devel + kmime-devel + kontactinterface-devel + grantlee-qt5-devel - - grub2.patch - - desktop/kde/admin/grub2-editor/pspec.xml + desktop/kde/utils/kjots/pspec.xml - grub2-editor - A KDE Control Module for configuring the GRUB2 bootloader + kjots + A note taking application for KDE - qt5-base kio - kauth ki18n - solid + kmime + kparts libgcc - imagemagick - kcompletion + akonadi + kconfig + kxmlgui + kcmutils + qt5-base + kbookmarks kcoreaddons + kitemmodels + grantlee-qt5 + kpimtextedit + ktextwidgets + akonadi-notes kconfigwidgets kwidgetsaddons + kontactinterface - /etc/grub.d/grub_rmecho.sh - /etc/dbus-1 - /usr/lib + /usr/bin /usr/lib/qt5 /usr/share /usr/share/doc - - 2021-08-29 - 0.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 0.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 0.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-17 - 0.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-29 - 0.8.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-14 - 0.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - + 2019-01-20 - 0.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 5.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - - 2018-11-24 - 0.7.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + + 2018-11-13 + 5.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org 2018-10-14 - 0.7.0 + 5.0.2 Rebuild Ertuğrul Erata ertugrulerata@gmail.com 2018-08-11 - 0.7.0 + 5.0.2 Rebuild Ertuğrul Erata ertugrulerata@gmail.com - 2018-03-23 + 2018-03-24 + 5.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-12 + 5.0.2 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + adwaita-qt + https://github.com/FedoraQt/adwaita-qt + + fury + uglyside@yandex.ru + + GPLv2 + LGPLv2.1 + data + desktop.lookandfeel + A style to bend Qt applications to look like they belong into GNOME Shell. + A native style to bend Qt4 and Qt5 applications to look like they belong into GNOME Shell. + https://github.com/FedoraQt/adwaita-qt/archive/refs/tags/1.4.1.tar.gz + + cmake + qt5-base-devel + qt5-x11extras-devel + + desktop/lookandfeel/adwaita-qt/pspec.xml + + + adwaita-qt + + libgcc + libxcb + qt5-base + qt5-x11extras + + + /usr/lib + /usr/share/doc + + + + adwaita-qt-devel + + adwaita-qt + qt5-base + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-01-18 + 1.4.1 + Version bump + fury + uglyside@yandex.ru + + + 2021-09-27 + 1.4.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-06-05 + 1.3.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-18 + 1.3.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-24 + 1.2.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-02 + 1.2.0 + Beta rebuild. + fury + uglyside@yandex.ru + + + + + + artwork-pisilinux-release + https://pisilinux.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + public-domain + CCPL-Attribution-ShareAlike-3.0 + CCPL-Attribution-3.0 + data + desktop.lookandfeel + Artwork for Pisi Linux releases + Pisi Linux sürümleri için sanatsal içerik + This package contains additional artwork (like wallpapers) intended for Pisi Linux releases. + Bu paket Pisi Linux sürümleri için hazırlanmış sanatsal çalışmalar içerir. + http://source.pisilinux.org/1.0/artwork-pisilinux-release-1.2.tar.xz + http://source.pisilinux.org/1.0/sample-files-20130323.tar.xz + desktop/lookandfeel/artwork-pisilinux-release/pspec.xml + + + artwork-pisilinux-release + + /usr/share/wallpapers + + + + example-content + Example files for Pisi Linux + Pisi Linux ile beraber dağıtılan örnek dosyalar + + /usr/share/example-content + /etc/X11/Xsession.d + /etc/X11/xinit/xinitrc.d/35-example-content.sh + + + 35-example-content.sh + + + + + 2018-10-21 + 1.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-21 + 1.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + flat-remix-gtk + https://github.com/daniruiz/Flat-Remix-GTK + + Pisi Linux Community + admins@pisilinux.org + + GPL-3.0 + desktop.lookandfeel + Flat Remix GTK theme is a pretty simple gtk window theme + Flat Remix GTK theme is a pretty simple gtk window theme inspired on material design following a modern design using \"flat\" colors with high contrasts and sharp borders + https://github.com/daniruiz/flat-remix-gtk/archive/20220427.tar.gz + desktop/lookandfeel/flat-remix-gtk/pspec.xml + + + flat-remix-GTK + + /usr/share/themes/Flat-Remix-Dark-* + /usr/share/themes/Flat-Remix-Darkest-* + /usr/share/themes/Flat-Remix-Light* + + + + flat-remix-GTK-black + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Black* + /usr/share/themes/Flat-Remix-LibAdwaita-Black* + + + + flat-remix-GTK-blue + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Blue* + /usr/share/themes/Flat-Remix-LibAdwaita-Blue* + + + + flat-remix-GTK-brown + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Brown* + /usr/share/themes/Flat-Remix-LibAdwaita-Brown* + + + + flat-remix-GTK-cyan + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Cyan* + /usr/share/themes/Flat-Remix-LibAdwaita-Cyan* + + + + flat-remix-GTK-green + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Green* + /usr/share/themes/Flat-Remix-LibAdwaita-Green* + + + + flat-remix-GTK-grey + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Grey* + /usr/share/themes/Flat-Remix-LibAdwaita-Grey* + + + + flat-remix-GTK-magenta + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Magenta* + /usr/share/themes/Flat-Remix-LibAdwaita-Magenta* + + + + flat-remix-GTK-orange + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Orange* + /usr/share/themes/Flat-Remix-LibAdwaita-Orange* + + + + flat-remix-GTK-red + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Red* + /usr/share/themes/Flat-Remix-LibAdwaita-Red* + + + + flat-remix-GTK-teal + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Teal* + /usr/share/themes/Flat-Remix-LibAdwaita-Teal* + + + + flat-remix-GTK-violet + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Violet* + /usr/share/themes/Flat-Remix-LibAdwaita-Violet* + + + + flat-remix-GTK-white + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-White* + /usr/share/themes/Flat-Remix-LibAdwaita-White* + + + + flat-remix-GTK-yellow + + flat-remix-GTK + + + /usr/share/themes/Flat-Remix-GTK-Yellow* + /usr/share/themes/Flat-Remix-LibAdwaita-Yellow* + + + + + 2022-04-27 + 20220427 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + geany-colorschemes + https://github.com/geany/geany-themes + + fury + uglyside@yandex.ru + + various + data + desktop.lookandfeel + Geany-themes is a collection of color schemes for the Geany IDE/editor. + Geany-themes is a collection of color schemes for the Geany IDE/editor, either written originally by the Geany community or ported from color schemes for other editors. + https://github.com/geany/geany-themes/archive/0f29c77e8c596900b9b8cf552498bdb317449cae.zip + desktop/lookandfeel/geany-colorschemes/pspec.xml + + + geany-colorschemes + + gtksourceview3 + + + /usr/share/geany/colorschemes + /usr/share/doc + + + + + 2020-12-06 + 0.1 + First build + fury + uglyside@yandex.ru + + + + + + gtk-theme-albatross + https://github.com/shimmerproject/Albatross + + Pisi Linux Community + admins@pisilinux.org + + GPL.v2 + desktop.lookandfeel + Albatross is a modern theme for the XFCE-Desktop + Albatross is a modern theme for the XFCE-Desktop + https://github.com/shimmerproject/Albatross/archive/v1.7.4.tar.gz + desktop/lookandfeel/gtk-theme-albatross/pspec.xml + + + gtk-theme-albatross + + gtk2-engines-murrine + + + /usr/share/themes + /usr/share/doc + + + + + 2018-08-31 + 1.7.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.7.4 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-01 + 1.7.4 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gtk-theme-arc + https://github.com/horst3180/arc-theme + + Pisi Linux Community + admins@pisilinux.org + + GPL-3.0 + desktop.lookandfeel + Arc is a flat theme with a subtle color scheme and transparency in select parts of the window, like GTK Header Bars and the Nautilus sidebar. + The Arc theme supports GTK3 and GTK2 based desktop environments, including GNOME Shell (of course) and the standard Ubuntu Unity desktop.It also works just dandy with lightweight Budgie and elementary’s Pantheon desktops and should work fine on Cinnamon. + https://launchpad.net/~noobslab/+archive/ubuntu/themes/+files/arc-theme_16.04~xenial~NoobsLab.com.tar.gz + desktop/lookandfeel/gtk-theme-arc/pspec.xml + + + gtk-theme-arc + + gtk2-engines-murrine + + + /usr/share/themes/Arc + + + + gtk-theme-arc-solid + + gtk2-engines-murrine + + + /usr/share/themes/Arc-Solid + + + + gtk-theme-arc-dark + + gtk2-engines-murrine + + + /usr/share/themes/Arc-Dark + + + + gtk-theme-arc-dark-solid + + gtk2-engines-murrine + + + /usr/share/themes/Arc-Dark-Solid + + + + + 2018-08-31 + 1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.0 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-11 + 1.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gtk-theme-bluebird + https://github.com/shimmerproject/Bluebird + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + CC-BY-SA 3.0 + desktop.lookandfeel + GTK Theme Suite - Bluebird for the XFCE-Desktop + GTK Theme Suite - Bluebird for the XFCE-Desktop + https://github.com/shimmerproject/Bluebird/archive/v1.2.tar.gz + desktop/lookandfeel/gtk-theme-bluebird/pspec.xml + + + gtk-theme-bluebird + + gtk2-engines-murrine + + + /usr/share/themes + /usr/share/doc + + + + + 2018-08-31 + 1.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.2 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-01 + 1.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gtk-theme-greybird + https://github.com/shimmerproject/Greybird + + Pisi Gnu/Linux Community + admin@pisilinux.org + + GPLv2 + CC-BY-SA + desktop.lookandfeel + Desktop Suite for Xfce. + GTK Theme Suite - Greybird. + https://github.com/shimmerproject/Greybird/archive/v3.22.12.tar.gz + + meson + sassc + gtk3-devel + glib2-devel + librsvg-devel + gdk-pixbuf-devel + + desktop/lookandfeel/gtk-theme-greybird/pspec.xml + + + gtk-theme-greybird + + gtk2-engines-murrine + + + /usr/share/themes + /usr/share/doc + + + + + 2020-11-03 + 3.22.12 + Ver. bump + fury + uglyside@yandex.ru + + + 2018-08-31 + 3.22.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 3.22.2 + Rebuild with new toolchain + Pisi Gnu/Linux Community + admin@pisilinux.org + + + 2016-09-08 + 1.5.3 + First Release + Pisi Gnu/Linux Community + admin@pisilinux.org + + + + + + gtk-theme-mediterranean + http://gnome-look.org/content/show.php/MediterraneanNight+Series?content=156782 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + desktop.lookandfeel + Great themes for GTK2 and GTK3 + GTK2 ve GTK3 için güzel temalar + Themes for GTK2 and GTK3. + GTK2 ve GTK3 için yazılmış tema paketleri. + https://dl.dropboxusercontent.com/u/80497678/MediterraneanNight-2.03.tar.gz + desktop/lookandfeel/gtk-theme-mediterranean/pspec.xml + + + gtk-theme-mediterranean + + gtk2-engines-murrine + gdk-pixbuf + + + /usr/share/themes/MediterraneanDark + /usr/share/themes/MediterraneanWhite + /usr/share/themes/MediterraneanLightDarkest + + + + gtk-theme-mediterranean-others + + gtk2-engines-murrine + gdk-pixbuf + + + /usr/share/themes + + + + + 2018-08-31 + 2.03 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 2.03 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-06 + 2.03 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gtk-theme-orion + https://github.com/shimmerproject/Orion + + Pisi Linux Community + admins@pisilinux.org + + GPL-3.0 + desktop.lookandfeel + Orion is a modern light theme for Gnome. It supports Gnome, Unity, XFCE and Openbox. + The theme is compatible with GTK 3.6 and 3.8. It also includes a GTK 2.0 theme using Murrine engine. + https://github.com/shimmerproject/Orion/archive/v1.5.tar.gz + desktop/lookandfeel/gtk-theme-orion/pspec.xml + + + gtk-theme-orion + + gtk2-engines-murrine + + + /usr/share/themes + /usr/share/doc + + + + + 2018-08-31 + 1.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.5 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-10 + 1.5 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gtk-theme-Qogir + https://github.com/vinceliuice/Qogir-theme/ + + Pisi Linux Community + admins@pisilinux.org + + GPL-3.0 + desktop.lookandfeel + Qogir is a flat Design theme for GTK + Qogir is a flat Design theme for GTK 3, GTK 2 and Gnome-Shell which supports GTK 3 and GTK 2 based desktop environments like Gnome, Unity, Budgie, Cinnamon Pantheon, XFCE, Mate, etc. + https://github.com/vinceliuice/Qogir-theme/archive/refs/tags/2021-12-25.tar.gz + + gnome-shell + + desktop/lookandfeel/gtk-theme-Qogir/pspec.xml + + + gtk-theme-Qogir + + /usr/share/themes/Qogir + /usr/share/themes/Qogir-dark + /usr/share/themes/Qogir-light + /usr/share/doc + + + + + 2022-01-22 + 2021.12.25 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-31 + 2018.11.12 + First Release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gtk2-engines-murrine + https://github.com/GNOME/murrine + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.lookandfeel + GTK+ Murrine theme engine + GTK+ Murrine tema motoru + The Murrine engine is a cairo-based GTK+ theming tool. It's very fast compared to clearlooks-cairo. Murrine includes animations and a unique style. + Murrine motoru, Cairo tabanlı GTK+ tema aracıdır. Clearlooks temasına göre çok daha hızlıdır. Aynı zamanda canlandırmalar, benzersiz biçemler içerir. + mirrors://gnome/murrine/0.98/murrine-0.98.2.tar.xz + + gtk2-devel + glib2-devel + cairo-devel + pango-devel + pixman-devel + gdk-pixbuf-devel + intltool + + desktop/lookandfeel/gtk2-engines-murrine/pspec.xml + + + gtk2-engines-murrine + + gtk2 + glib2 + cairo + pango + pixman + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/gtk-engines + + + + + 2018-09-16 + 0.98.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 0.98.2 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-12-12 + 0.98.2 + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + icon-theme-adwaita + https://gitlab.gnome.org/GNOME/adwaita-icon-theme + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.lookandfeel + Adwaita icon theme + Adwaita icon theme + https://download.gnome.org/sources/adwaita-icon-theme/42/adwaita-icon-theme-42.0.tar.xz + + intltool + gtk2-devel + gtk3-devel + docbook-xsl + shared-mime-info + librsvg-devel + + desktop/lookandfeel/icon-theme-adwaita/pspec.xml + + + icon-theme-adwaita + Adwaita icon theme + + /usr/share + /usr/share/doc + /usr/share/icons/Adwaita + /usr/lib/pkgconfig + + + 16x16.png + 16x16.png + 22x22.png + 24x24.png + 24x24.png + 32x32.png + 32x32.png + 48x48.png + 48x48.png + 64x64.png + 96x96.png + scalable.svg + + + + + 2022-06-01 + 42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-11 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 40.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-08 + 3.38.0 + v.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-01-18 + 3.34.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-30 + 3.34.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-14 + 3.32.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-04-17 + 3.31.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-11-30 + 3.31.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 3.26.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 3.22 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-07 + 3.20 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + icon-theme-compass-kde + https://launchpad.net/~nitrux-team + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + data + desktop.lookandfeel + Compass Icon Theme for KDE + Compass Icon Theme for KDE + https://launchpad.net/~nitrux-team/+archive/ubuntu/nitrux-artwork/+files/compass-icon-theme-kde_1.3.8.tar.gz + desktop/lookandfeel/icon-theme-compass-kde/pspec.xml + + + icon-theme-compass-kde + + /usr/share/icons + + + + + 2018-08-31 + 1.3.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.3.8 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-01 + 1.3.8 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + icon-theme-elementary-xfce + https://github.com/shimmerproject/elementary-xfce + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + data + desktop.lookandfeel + Elementary Look for XFCE. + Elementary icons forked from upstream, extended and maintained for Xfce. + https://github.com/shimmerproject/elementary-xfce/archive/v0.15.2.tar.gz + + librsvg + optipng + inkscape + gtk3-devel + + desktop/lookandfeel/icon-theme-elementary-xfce/pspec.xml + + + icon-theme-elementary-xfce + + /usr/share/icons + /usr/share/doc + + + + + 2021-10-13 + 0.15.2 + First build + fury + uglyside@yandex.ru + + + + + + icon-theme-faenza + http://gnome-look.org/content/show.php/Faenza?content=128143 + + Pisi Gnu/Linux Community + admin@pisilinux.org + + GPLv3 + data + desktop.lookandfeel + Icon theme designed for Equinox GTK theme + Icon theme designed for Equinox GTK theme + http://ppa.launchpad.net/tiheum/equinox/ubuntu/pool/main/f/faenza-icon-theme/faenza-icon-theme_1.3.1.tar.gz + desktop/lookandfeel/icon-theme-faenza/pspec.xml + + + icon-theme-faenza + + /usr/share/icons + /usr/share/doc + + + icons/22.png + icons/24.png + icons/32.png + icons/48.png + icons/64.png + icons/96.png + icons/22.png + icons/24.png + icons/32.png + icons/48.png + icons/64.png + icons/96.png + icons/22.png + icons/24.png + icons/32.png + icons/48.png + icons/64.png + icons/96.png + icons/scalable.svg + icons/scalable.svg + icons/scalable.svg + + + + + 2018-08-31 + 1.3.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 1.3.1 + Rebuild with new toolchain. + Pisi Gnu/Linux Community + admin@pisilinux.org + + + 2016-07-26 + 1.3.1 + First Release + Pisi Gnu/Linux Community + admin@pisilinux.org + + + + + + icon-theme-hicolor + https://www.freedesktop.org/wiki/Software/icon-theme/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + desktop.lookandfeel + Default icon theme + Temel simge teması + Hicolor icon theme contains the basic directories and files needed for icon theme support. + Hicolor, simge teması desteği için ihtiyaç duyulan temel dizin ve dosyalarıni içeren temel bir simge temasıdır. + https://icon-theme.freedesktop.org/releases/hicolor-icon-theme-0.17.tar.xz + desktop/lookandfeel/icon-theme-hicolor/pspec.xml + + + icon-theme-hicolor + + /usr/share/doc + /usr/share/icons + + + + + 2020-01-16 + 0.17 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 0.17 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-13 + 0.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-09 + 0.15 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + icon-theme-milky + https://pisilinux.org + + Pisi Gnu/Linux Community + admin@pisilinux.org + + GPLv3 + data + desktop.lookandfeel + Icon theme designed for pisilinux GTK theme + Icon theme designed for pisilinux GTK theme + http://source.pisilinux.org/milky/milky-2.0.tar.bz2 + desktop/lookandfeel/icon-theme-milky/pspec.xml + + + icon-theme-milky + + /usr/share/icons + /usr/share/doc + + + 16x16.png + 16x16.png + 22x22.png + 22x22.png + 32x32.png + 32x32.png + 48x48.png + 48x48.png + 64x64.png + 64x64.png + 128x128.png + 128x128.png + 256x256.png + 256x256.png + logotype-pisi.svg + logotype-pisi.svg + + + + + 2021-04-11 + 1.0 + fixed start-here icons + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-01 + 1.0 + First Release. + Pisi Gnu/Linux Community + admin@pisilinux.org + + + + + + icon-theme-nitrux-kde + https://github.com/Nitrux/nitrux-icon-theme + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + data + desktop.lookandfeel + Nitrux Look for KDE + Nitrux Look for KDE + https://launchpad.net/~nitrux-team/+archive/ubuntu/nitrux-artwork/+files/nitrux-icon-theme-kde_3.5.3.tar.gz + desktop/lookandfeel/icon-theme-nitrux-kde/pspec.xml + + + icon-theme-nitrux-kde + + /usr/share/icons/Nitrux + + + + + 2018-08-31 + 3.5.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 3.5.3 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-01 + 3.5.3 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + icon-theme-numix + https://github.com/numixproject/numix-icon-theme + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + data + desktop.lookandfeel + Circle is an icon theme for Linux from the Numix project + Circle is an icon theme for Linux from the Numix project + http://ppa.launchpad.net/numix/ppa/ubuntu/pool/main/n/numix-icon-theme/numix-icon-theme_0.3+929~201712251402~ubuntu17.04.1.tar.xz + desktop/lookandfeel/icon-theme-numix/pspec.xml + + + icon-theme-numix + + /usr/share/icons/Numix + + + + + 2018-08-31 + 17.04.05 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 17.04.05 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-01 + 16.09.07 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + icon-theme-numix-light + https://numixproject.github.io/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + data + desktop.lookandfeel + Circle is an icon theme for Linux from the Numix project + Circle is an icon theme for Linux from the Numix project + http://ppa.launchpad.net/numix/ppa/ubuntu/pool/main/n/numix-icon-theme/numix-icon-theme_0.3+929~201712251402~ubuntu17.04.1.tar.xz + desktop/lookandfeel/icon-theme-numix-light/pspec.xml + + + icon-theme-numix-light + + /usr/share/icons/Numix-Light + + + + + 2018-08-31 + 17.04.05 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 17.04.05 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-10-01 + 16.09.07 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + iconcan + https://pisilinux.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv3 + app:gui + desktop.lookandfeel + Icon etiketi için görseller + Icon etiketi için görseller + Icon etiketine ait görselleri barındıran uygulama. + Firefox, Calligra, Libreoffice ve Thunderbird için Icon etiketine ait görselleri barındıran uygulama. + lang-tr + https://master.dl.sourceforge.net/project/pisilinux/source/iconcan-1.0.2.tar.xz + desktop/lookandfeel/iconcan/pspec.xml + + + iconcan + + /usr/share/pixmaps + + + + + 2022-05-26 + 1.0.2 + add new icons. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-13 + 1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.0.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-04 + 1.0.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + kvantum + https://github.com/tsujan/Kvantum + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + desktop.lookandfeel + Kvantum is an SVG-based theme engine for Qt4/Qt5, KDE and LXQt. + Kvantum Qt4 / Qt5, KDE ve LXQt için SVG tabanlı bir tema motorudur. + https://github.com/tsujan/Kvantum/releases/download/V0.20.2/Kvantum-0.20.2.tar.xz + + libX11-devel + qt5-linguist + qt5-svg-devel + qt5-base-devel + icon-theme-hicolor + qt5-designer-devel + kwindowsystem-devel + qt5-x11extras-devel + qt5-assistant-devel + + desktop/lookandfeel/kvantum/pspec.xml + + + kvantum + + libgcc + libX11 + qt5-svg + qt5-base + kwindowsystem + qt5-x11extras + + + /usr/bin + /usr/lib + /usr/share + /usr/share/Kvantum + /usr/share/doc + + + + + 2021-09-19 + 0.20.2 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2021-03-14 + 0.19.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2021-03-05 + 0.18.0 + First Beta build + PisiLinux Community + admins@pisilinux.org + + + + + + papirus-icon-theme + https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/ + + Mustafa Cinasal + muscnsl@gmail.com + + any + library + desktop.lookandfeel + Papirus simge teması + Papirus simge teması + Papirus simge teması + Papirus simge teması + https://github.com/PapirusDevelopmentTeam/papirus-icon-theme/archive/20200102.tar.gz + desktop/lookandfeel/papirus-icon-theme/pspec.xml + + + papirus-icon-theme + + /usr/share/icons + /usr/share/doc + + + + + 2020-01-02 + 20200102 + Ver. up + fury + uglyside@yandex.ru + + + 2018-08-31 + 20180501 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-01 + 20180501 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-31 + 20180401 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + pisilinux-gtk + http://www.pisilinux.org + + Ergün Salman + poyraz76@pisilinux.org + + custom + library + desktop.lookandfeel + pisilinux-gtk + Gtk uygulamaları için tema ve yapılandırma + https://sourceforge.net/projects/pisi-source/files/pisilinux-gtk-0.1.tar.gz + desktop/lookandfeel/pisilinux-gtk/pspec.xml + + + pisilinux-gtk + + /usr/share/themes/* + + + + + 2018-08-31 + 0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-06 + 0.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-09-10 + 0.1 + New Package + Ergün Salman + poyraz76@pisilinux.org + + + + + + pisilinux-splash + https://github.com/sebo28/pisilinux.splash + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + app + desktop.lookandfeel + pisilinux splash + pisilinux splash + pisilinux splash + pisilinux splash + https://github.com/sebo28/pisilinux.splash/archive/v0.1.tar.gz + https://github.com/sebo28/Sweet-Cat_Animated/archive/v0.1.tar.gz + + metadata.json + + desktop/lookandfeel/pisilinux-splash/pspec.xml + + + pisilinux-splash + + /usr/share + /usr/share/locale + + + + + 2020-12-07 + 0.1 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-10-31 + 0.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + pisilinux-theme-damadamas + http://www.pisilinux.org/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.lookandfeel + PisiLinux için görsel çalışmaları. + PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı. + https://github.com/sonakinci41/DamaDamas-icon-theme/archive/0.7.tar.gz + + extra-cmake-modules + qt5-base-devel + plasma-framework-devel + + desktop/lookandfeel/pisilinux-theme-damadamas/pspec.xml + + + pisilinux-theme-damadamas + PisiLinux için görsel çalışmaları. + + /usr/share + /usr/share/color-schemes + /usr/share/icons + /usr/share/kservices5 + /usr/share/plasma + /usr/share/sddm + /usr/share/wallpapers + /usr/share/doc + + + logotype-pisi_64.svg + logotype-pisi_512.svg + logotype-pisi_512.svg + + + + + 2021-04-11 + 0.7 + fixed start-here icons + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-01 + 0.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pisilinux-theme-maia + http://www.pisilinux.org/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + desktop.lookandfeel + PisiLinux için görsel çalışmaları. + PisiLinux için simge seti, şifre ekranı, açılış ekranı ve kilit ekranı. + https://github.com/alihanozturk/pisilinux-theme-maia/archive/0.3.tar.gz + + extra-cmake-modules + qt5-base-devel + plasma-framework-devel + + + wallpaper.patch + + desktop/lookandfeel/pisilinux-theme-maia/pspec.xml + + + pisilinux-theme-maia + PisiLinux için görsel çalışmaları. + + /usr/share + /usr/share/color-schemes + /usr/share/icons + /usr/share/kservices5 + /usr/share/plasma + /usr/share/sddm + /usr/share/wallpapers + /usr/share/doc + + + + + 2018-08-15 + 0.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.3 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-08-21 + 0.3 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-19 + 0.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-20 + 0.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + lumina-desktop + https://lumina-desktop.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + BSD + app:gui + desktop.lumina + The Lumina Desktop Environment is a lightweight system interface designed for use on any Unix-like operating system. + UNIX benzeri sistemlerde kullanım için tasarlanmış sistem arayüzlü hafif bir Masaüstü ortamıdır. + The Lumina Desktop Environment is a lightweight system interface designed for use on any Unix-like operating system. + UNIX benzeri sistemlerde kullanım için tasarlanmış sistem arayüzlü hafif bir Masaüstü ortamıdır.. + lumina-desktop + https://github.com/lumina-desktop/lumina/archive/v1.6.0.tar.gz + + git + libxcb-devel + xcb-util-devel + libXcursor-devel + libXdamage-devel + libXrender-devel + xcb-util-wm-devel + desktop-file-utils + libXcomposite-devel + xcb-util-image-devel + qt5-linguist + qt5-svg-devel + qt5-base-devel + qt5-x11extras-devel + qt5-multimedia-devel + qt5-declarative-devel + + + show_only_lumina.patch + lumina_default_settings_for_Pisi.patch + + desktop/lumina/lumina-desktop/pspec.xml + + + lumina-desktop + A Lightweight QT5 Desktop for FreeBSD + + libgcc + libxcb + qt5-svg + qt5-base + xcb-util + libXcursor + libXdamage + xcb-util-wm + qt5-x11extras + qt5-multimedia + xcb-util-image + fluxbox + + + /usr/lib/qt5/plugins/styles/liblthemeengine-style.so + /usr/lib/qt5/plugins/platformthemes/liblthemeengine.so + /usr/share/icons/hicolor/scalable/apps/Lumina-DE.png + /usr/share/icons/hicolor/scalable/apps/lumina-desktop.png + /usr/share/icons/hicolor/scalable/apps/Insight-FileManager.png + /usr/share/lumina-desktop/syntax_rules/*.syntax + /usr/share/lumina-desktop/syntax_rules/README.md + /usr/bin/lumina-desktop + /usr/bin/start-lumina-desktop + /usr/bin/lte + /usr/share/lumina-desktop/*.ogg + /usr/share/lumina-desktop/colors + /etc/luminaDesktop.conf.dist + /usr/share/doc/lumina-desktop + /usr/share/lumina-desktop/*.conf + /usr/share/lumina-desktop/themes + /usr/share/lumina-desktop/menu-scripts + /usr/share/applications/lumina-support.desktop + /usr/share/xsessions/Lumina-DE.desktop + /usr/share/lumina-desktop/i18n/lumina-desktop* + /usr/share/lumina-desktop/fluxbox* + /usr/share/lumina-desktop/globs2 + /usr/share/lumina-desktop/*.jpg + /usr/share/man + + + Crocus-Ancyrensis.jpg + + + + lumina-archiver + Archive manager for Lumina Desktop + + libgcc + qt5-svg + qt5-base + + + /usr/bin/lumina-archiver + /usr/share/applications/lumina-archiver.desktop + /usr/share/lumina-desktop/i18n/l-archiver* + + + + lumina-mediaplayer + Media player for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-mediaplayer + /usr/share/applications/lumina-mediaplayer.desktop + /usr/share/applications/lumina-mediaplayer-pandora.desktop + /usr/share/lumina-desktop/i18n/l-mediap* + + + + lumina-photo + Image viewer for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-photo + /usr/share/applications/lumina-photo.desktop + /usr/share/lumina-desktop/i18n/l-photo* + + + + lumina-lthemeengine + Theme engine for Lumina Desktop + + qt5-base + + + /usr/bin/lthemeengine + /usr/bin/lthemeengine-sstest + /usr/share/applications/lthemeengine.desktop + /usr/share/lthemeengine/colors/*.conf + /usr/share/lthemeengine/qss/ + /usr/share/lthemeengine/desktop_qss/* + /usr/share/lthemeengine/desktop_qss/*.gss + + + pisi_black.svg + pisi_white.svg + pisilogo.png + + + + lumina-material-design-dark + Material-design-dark theme for Lumina Desktop + + qt5-base + + + /usr/share/icons/material-design-dark + + + + lumina-material-design-light + Material-design-light theme for Lumina Desktop + + qt5-base + + + /usr/share/icons/material-design-light + + + + lumina-open + Application launcher for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-open + /usr/share/lumina-desktop/i18n/lumina-open* + + + + lumina-config + Configuration for Lumina Desktop + + libxcb + qt5-x11extras + + + /usr/bin/lumina-config + /usr/share/applications/lumina-config.desktop + /usr/share/lumina-desktop/i18n/lumina-config* + + + + lumina-fm + File Manager for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-fm + /usr/share/applications/lumina-fm.desktop + /usr/share/lumina-desktop/i18n/lumina-fm* + + + + lumina-screenshot + Screenshot Tool for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-screenshot + /usr/share/applications/lumina-screenshot.desktop + /usr/share/lumina-desktop/i18n/l-screenshot* + + + + lumina-search + Search Tool for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-search + /usr/share/applications/lumina-search.desktop + /usr/share/lumina-desktop/i18n/lumina-search* + + + + lumina-info + Info tool for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-info + /usr/share/applications/lumina-info.desktop + /usr/share/lumina-desktop/i18n/lumina-info* + + + + lumina-xconfig + Monitor Configuration Tool for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-xconfig + /usr/share/applications/lumina-xconfig.desktop + /usr/share/lumina-desktop/i18n/lumina-xconfig* + + + + lumina-fileinfo + File Information Tool for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-fileinfo + /usr/share/applications/lumina-fileinfo.desktop + /usr/share/lumina-desktop/i18n/l-fileinfo* + + + + lumina-textedit + Text Editor for Lumina Desktop + + qt5-base + + + /usr/bin/lumina-textedit + /usr/share/applications/lumina-textedit.desktop + /usr/share/lumina-desktop/i18n/l-te* + + + + + 2021-05-01 + 1.6.0 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-07-13 + 1.5.0 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2017-03-09 + 1.2.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxappearance + http://wiki.lxde.org/en/LXAppearance + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + desktop.lxde + A new feature-rich GTK+ theme switcher. + LXAppearance is a new GTK+ theme switcher developed for project LXDE. + mirrors://sourceforge/lxde/lxappearance-0.6.3.tar.xz + + intltool + dbus-devel + gtk3-devel + libX11-devel + dbus-glib-devel + gdk-pixbuf-devel + + desktop/lxde/lxappearance/pspec.xml + + + lxappearance + + dbus + gtk3 + glib2 + libX11 + gdk-pixbuf + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + lxappearance-devel + + gtk3-devel + lxappearance + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-14 + 0.6.3 + First build. + fury + uglyside@yandex.ru + + + + + + lxde-common + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-2 + data + desktop + LXDE Session default configuration files. + lxde-common provides LXDE Session default configuration files and nuoveXT2 iconset. + mirrors://sourceforge/lxde/lxde-common-0.99.2.tar.xz + + intltool + + desktop/lxde/lxde-common/pspec.xml + + + lxde-common + + gtk3 + lxpanel + pcmanfm + openbox + lxsession + + + /etc + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 0.99.2 + First build. + fury + uglyside@yandex.ru + + + + + + lxinput + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + desktop.lxde + LXDE keyboard and mouse configuration tool. + lxinput is tool for LXDE keyboard and mouse configuration. + mirrors://sourceforge/lxde/lxinput-0.3.5.tar.xz + + intltool + gtk3-devel + libX11-devel + + desktop/lxde/lxinput/pspec.xml + + + lxinput + + gtk3 + glib2 + libX11 + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 0.3.5 + First build. + fury + uglyside@yandex.ru + + + + + + lxmenu-data + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + LGPL-2.1 + data + desktop.lxde + Menu data files for LXDE. + lxmenu-data provides files needed for LXDE application menus. + mirrors://sourceforge/lxde/lxmenu-data-0.1.5.tar.xz + + intltool + + desktop/lxde/lxmenu-data/pspec.xml + + + lxmenu-data + + /etc + /usr/share/desktop-directories + /usr/share/doc + + + + + 2022-04-14 + 0.1.5 + First build. + fury + uglyside@yandex.ru + + + + + + lxpanel + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + desktop.lxde + Lightweight X11 desktop panel for LXDE. + lxpanel is a lightweight X11 desktop panel for LXDE. + mirrors://sourceforge/lxde/lxpanel-0.10.1.tar.xz + + intltool + atk-devel + gtk3-devel + curl-devel + cairo-devel + pango-devel + libxml2-devel + alsa-lib-devel + libwnck3-devel + keybinder-devel + fontconfig-devel + menu-cache-devel + gdk-pixbuf-devel + wireless-tools-devel + libfm-devel + libfm-extra-devel + + + Correct_panel_size_under_GTK3.patch + Correct_icon_grid_width_under_GTK3.patch + lxpanel-0.10.1-volume-plugin-fix-mouse-scrolling.patch + + desktop/lxde/lxpanel/pspec.xml + + + lxpanel + + atk + gtk3 + curl + glib2 + cairo + pango + libX11 + libxml2 + alsa-lib + libwnck3 + keybinder + menu-cache + gdk-pixbuf + fontconfig + lxmenu-data + wireless-tools + libfm + libfm-extra + network-manager-applet + + + /etc/xdg/lxpanel + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + lxpanel-devel + + lxpanel + gtk3-devel + glib2-devel + libfm-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-14 + 0.10.1 + First build. + fury + uglyside@yandex.ru + + + + + + lxrandr + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + desktop.lxde + LXDE GUI interface to RandR extention. + lxrandr is a LXDE GUI interface to RandR extention. + mirrors://sourceforge/lxde/lxrandr-0.3.2.tar.xz + + intltool + gtk3-devel + libXrandr-devel + + desktop/lxde/lxrandr/pspec.xml + + + lxrandr + + gtk3 + glib2 + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 0.3.2 + First build. + fury + uglyside@yandex.ru + + + + + + lxsession + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-2 + app + desktop.lxde + LXDE session manager. + lxsession is the default X11 session manager of LXDE. + mirrors://sourceforge/lxde/lxsession-0.5.5.tar.xz + + intltool + vala-devel + gtk3-devel + glib2-devel + polkit-devel + elogind-devel + gettext-devel + libnotify-devel + gdk-pixbuf-devel + + + Avoid_costly_lsb_release_invocation.patch + + desktop/lxde/lxsession/pspec.xml + + + lxsession + + gtk3 + glib2 + cairo + polkit + libX11 + gdk-pixbuf + + + /etc/xdg + /usr/bin + /usr/libexec + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 0.5.5 + First build. + fury + uglyside@yandex.ru + + + + + + lxterminal + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + desktop.lxde + Lightweight terminal emulator. + Lxterminal is a Lightweight vte-based tabbed terminal emulator for LXDE. + mirrors://sourceforge/lxde/lxterminal-0.4.0.tar.xz + + intltool + vte-devel + gtk3-devel + gnutls-devel + libpcre2-devel + gdk-pixbuf-devel + + desktop/lxde/lxterminal/pspec.xml + + + lxterminal + + vte + gtk3 + glib2 + pango + libX11 + gdk-pixbuf + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 0.4.0 + First build. + fury + uglyside@yandex.ru + + + + + + pcmanfm + https://www.lxde.org/ + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + desktop.lxde + LXDE default file manager. + PCMan File Manager is an extremly fast and lightweight file manager for LXDE. + mirrors://sourceforge/pcmanfm/pcmanfm-1.3.2.tar.xz + + intltool + gtk3-devel + pango-devel + cairo-devel + gdk-pixbuf-devel + libfm-devel + libfm-extra-devel + + desktop/lxde/pcmanfm/pspec.xml + + + pcmanfm + + atk + gtk3 + glib2 + pango + cairo + libX11 + gdk-pixbuf + libfm + libfm-extra + + + /etc + /usr/bin + /usr/include + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 1.3.2 + First build. + fury + uglyside@yandex.ru + + + + + + featherpad + https://github.com/tsujan/FeatherPad + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.lxqt + FeatherPad is a lightweight Qt5 plain-text editor for Linux + FeatherPad is a lightweight Qt5 plain-text editor for Linux + featherpad + https://github.com/tsujan/FeatherPad/releases/download/V1.1.1/FeatherPad-1.1.1.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + qt5-svg-devel + hunspell-devel + + desktop/lxqt/featherpad/pspec.xml + + + featherpad + + libX11 + libgcc + qt5-svg + hunspell + qt5-base + qt5-x11extras + + + /usr/bin + /usr/share/doc + /usr/share/applications + /usr/share/featherpad + /usr/share/icons + /usr/share/metainfo/featherpad.metainfo.xml + + + featherpad.desktop + + + + + 2022-04-19 + 1.1.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.18.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.13.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.11.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.9.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libfm + https://github.com/lxde/libfm + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL-2 + library + desktop.lxde + Library for file management. + libfm is a LXDE library for file management. + mirrors://sourceforge/pcmanfm/libfm-1.3.2.tar.xz + + intltool + atk-devel + gtk3-devel + glib2-devel + cairo-devel + pango-devel + udisks2-devel + libexif-devel + gettext-devel + dbus-glib-devel + gdk-pixbuf-devel + fontconfig-devel + menu-cache-devel + libfm-extra-devel + + desktop/lxqt/libfm/pspec.xml + + + libfm + + atk + gtk3 + glib2 + cairo + pango + udisks2 + libexif + dbus-glib + gdk-pixbuf + fontconfig + menu-cache + libfm-extra + + + /etc/xdg + /usr/bin + /usr/lib/libfm.so* + /usr/lib/libfm-gtk3.so* + /usr/lib/libfm/modules/ + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + libfm-devel + + libfm + gtk3-devel + glib2-devel + + + /usr/include/libfm-1.0 + /usr/include/libfm + /usr/lib/pkgconfig/libfm-gtk3.pc + /usr/lib/pkgconfig/libfm.pc + + + + libfm-extra + Core library of PCManFM file manager. + + glib2 + + + /usr/lib/libfm-extra.so + /usr/lib/libfm-extra.so.4 + /usr/lib/libfm-extra.so.4.1.3 + + + + libfm-extra-devel + + glib2-devel + libfm-extra + + + /usr/include/libfm/fm-extra.h + /usr/include/libfm/fm-version.h + /usr/include/libfm/fm-xml-file.h + /usr/include/libfm-1.0/fm-extra.h + /usr/include/libfm-1.0/fm-version.h + /usr/include/libfm-1.0/fm-xml-file.h + /usr/lib/pkgconfig/libfm-extra.pc + + + + + 2022-04-14 + 1.3.2 + Rebuild with gtk+3 + fury + uglyside@yandex.ru + + + 2021-04-26 + 1.3.2 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-06 + 1.3.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libfm-qt + https://github.com/lxqt/libfm-qt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + library + desktop.lxqt + Core library of PCManFM file manager + libfm is a Core library of PCManFM file manager + lxqt + https://github.com/lxqt/libfm-qt/releases/download/1.1.0/libfm-qt-1.1.0.tar.xz + + cmake + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + lxqt-build-tools + menu-cache-devel + libexif-devel + glib2-devel + + desktop/lxqt/libfm-qt/pspec.xml + + + libfm-qt + + glib2 + libgcc + libxcb + qt5-base + menu-cache + qt5-x11extras + libexif + + + /usr/lib + /usr/share/cmake + /usr/share/mime + /usr/share/libfm-qt + + + + libfm-qt-devel + Development headers for libfm-qt + + qt5-base-devel + qt5-x11extras-devel + libfm-qt + + + /usr/include/libfm-qt + /usr/lib/pkgconfig + + + + + 2022-04-19 + 1.1.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-04-16 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 0.15.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.1 + rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-26 + 0.12.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + liblxqt + https://github.com/lxqt/liblxqt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + library + desktop.lxqt + Common base library for LXQt components. + Çoğu lxqt bileşenleri için ortak temel kitaplıklar. + Core utility library for all LXDE-Qt components + liblxqt çoğu lxde-qt bileşenleri için ortak temel kitaplıklar içerir. + lxqt + https://github.com/lxqt/liblxqt/releases/download/1.1.0/liblxqt-1.1.0.tar.xz + + cmake + glibc-devel + kwindowsystem-devel + libX11-devel + libgcc + libqtxdg-devel + pkgconfig + qt5-base-devel + qt5-linguist + polkit-qt-devel + qt5-qdbusviewer + qt5-x11extras-devel + libXScrnSaver-devel + lxqt-build-tools + + desktop/lxqt/liblxqt/pspec.xml + + + liblxqt + + kwindowsystem + libgcc + libqtxdg + qt5-base + qt5-x11extras + libX11 + libXScrnSaver + + + /usr/bin + /usr/lib + /usr/share + + + + liblxqt-devel + Development headers for liblxqt + + liblxqt + qt5-base-devel + qt5-x11extras-devel + libqtxdg-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-19 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-04-08 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 0.15.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libqtxdg + https://github.com/lxqt/libqtxdg + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + library + desktop.lxqt + Library providing freedesktop.org specs implementations for Qt. + Library providing freedesktop.org specs implementations for Qt. + lxqt + https://github.com/lxqt/libqtxdg/releases/download/3.9.0/libqtxdg-3.9.0.tar.xz + + libgcc + cmake + qt5-assistant-devel + qt5-base-devel + qt5-xmlpatterns-devel + qt5-svg-devel + gtk3-devel + xdg-user-dirs + lxqt-build-tools + + desktop/lxqt/libqtxdg/pspec.xml + + + libqtxdg + + libgcc + qt5-base + + + /usr/bin + /usr/lib + /usr/share/ + + + lxqt-l10n + + + lxqt-l10n + + + + libqtxdg-devel + Development headers for libqtxdg + + libqtxdg + qt5-base-devel + qt5-svg-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-19 + 3.9.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 3.8.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 3.7.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 3.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 3.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 3.4.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 3.3.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 3.3.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 3.3.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 3.2.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 3.2.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 3.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 3.1.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libstatgrab + https://libstatgrab.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL + library + desktop.lxqt + libstatgrab is a library that provides cross platform access to statistics about the system on which it's run. + Çalışan sistem hakkında istatistiklere erişimi sağlayan bir kütüphanedir. + libstatgrab is a library for accessing information from the system for statistical purposes. + libstatgrab, çalışan sistem hakkında istatistiklere erişimi sağlayan kitaplıkları içerir. + lxqt + https://www.mirrorservice.org/sites/ftp.i-scream.org/pub/i-scream/libstatgrab/libstatgrab-0.92.tar.gz + + ncurses-devel + + desktop/lxqt/libstatgrab/pspec.xml + + + libstatgrab + + ncurses + + + /usr/bin + /usr/share/ + /usr/lib + /usr/include + + + + + 2020-04-06 + 0.92 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.91 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.91 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libsysstat + https://github.com/lxqt/libsysstat + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + library + desktop.lxqt + Library used to query system info and statistics + Sistem bilgisi ve istatistik sorgulamak için kullanılan kütüphane. + Library to query system statistics (net, resource usage, ...) + Sistem bilgisi ve istatistik sorgulamak için kullanılan temel kitaplıklar içerir. + lxqt + https://github.com/lxqt/libsysstat/releases/download/0.4.6/libsysstat-0.4.6.tar.xz + + cmake + libgcc + qt5-base-devel + qt5-linguist + lxqt-build-tools + + desktop/lxqt/libsysstat/pspec.xml + + + libsysstat + Development headers for lxqt-globalkeys + + libgcc + qt5-base + + + /usr/lib + /usr/share/ + + + + libsysstat-devel + Development headers for libsysstat + + libsysstat + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-19 + 0.4.6 + rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 0.4.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.4.5 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.4.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.4.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.4.2 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.4.2 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.4.1 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.4.1 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.4.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.4.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lximage-qt + https://lxqt.github.io/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + Image viewer and screenshot tool. + Resim görüntüleyici ve ekran görüntüsü aracı. + Image viewer and screenshot tool. + lximage-qt, Resim görüntüleyici ve ekran görüntüsü aracıdır. + lxqt + https://github.com/lxqt/lximage-qt/releases/download/1.1.0/lximage-qt-1.1.0.tar.xz + + glib2-devel + cmake + qt5-base-devel + qt5-svg-devel + binutils + qt5-x11extras-devel + qt5-linguist + libexif-devel + libX11-devel + libfm-qt-devel + qt5-qdbusviewer + menu-cache-devel + kwindowsystem-devel + lxqt-build-tools + + desktop/lxqt/lximage-qt/pspec.xml + + + lximage-qt + + glib2 + libX11 + libgcc + libexif + qt5-svg + libfm-qt + qt5-base + libXfixes + qt5-x11extras + + + /usr/share/ + /usr/bin + + + + + 2022-04-22 + 1.1.0 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 0.7.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.7.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.7.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxmenu-data + https://www.lxde.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + data + desktop.lxqt + freedesktop.org application menu definition files + lxqt-menu-data is freedesktop.org application menu definition files + lxqt + https://github.com/lxde/lxmenu-data/archive/0.1.5.tar.gz + + intltool + perl-Locale-gettext + gettext-devel + + desktop/lxqt/lxmenu-data/pspec.xml + + + lxmenu-data + + /etc + /usr/share/desktop-directories + /usr/share/doc/ + + + + + 2020-04-06 + 0.1.5 + Rebuild New T. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.1.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.1.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-about + https://github.com/lxqt/lxqt-about + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + LXQt about dialog. + LXQt hakkında bilgi. + About dialog of LXDE-Qt + LXDE-Qt hakkında bilgi içerir. + lxqt + https://github.com/lxqt/lxqt-about/releases/download/1.1.0/lxqt-about-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libgcc + liblxqt-devel + qt5-linguist + libqtxdg-devel + lxqt-build-tools + + desktop/lxqt/lxqt-about/pspec.xml + + + lxqt-about + + libgcc + liblxqt + libqtxdg + qt5-base + + + /usr/bin + /usr/share/applications + /usr/share/icons + /usr/share/lxqt/translations + /usr/share/doc + + + + + 2022-04-22 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5-14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5-13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-26 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-admin + https://github.com/lxde/lxqt-admin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app + desktop.lxqt + LXQt system administration tool + LXQt sistem yönetim araçları. + LXQt system administration tool + LXQt sistem yönetim araçlarını içerir. + lxqt + https://github.com/lxqt/lxqt-admin/releases/download/1.1.0/lxqt-admin-1.1.0.tar.xz + + cmake + glib2-devel + polkit-qt-devel + kwindowsystem-devel + libgcc + liblxqt-devel + qt5-base-devel + qt5-linguist + lxqt-build-tools + + desktop/lxqt/lxqt-admin/pspec.xml + + + lxqt-admin + + libgcc + liblxqt + qt5-base + + + /usr/bin + /usr/share + + + + + 2022-04-22 + 1.1.0 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-archiver + https://github.com/lxqt/lxqt-archiver + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.lxqt + A simple and lightweight Qt file archiver. + A simple and lightweight Qt file archiver. + lxqt + https://github.com/lxqt/lxqt-archiver/releases/download/0.6.0/lxqt-archiver-0.6.0.tar.xz + + glib2-devel + qt5-linguist + libexif-devel + json-glib-devel + extra-cmake-modules + qt5-x11extras-devel + menu-cache-devel + libfm-qt-devel + lxqt-build-tools + + desktop/lxqt/lxqt-archiver/pspec.xml + + + lxqt-archiver + + glib2 + libgcc + libfm-qt + qt5-base + json-glib + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/lxqt-archiver + /usr/share/applications + /usr/share/icons + /usr/share/doc + + + lxqt-archiver.desktop + + + + + 2022-04-25 + 0.6.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 0.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.4.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 0.2.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-26 + 0.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.0.96 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.0.96 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-03-20 + 0.0.96 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-build-tools + https://github.com/lxqt/lxqt-build-tools + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + Various packaging tools and scripts for LXQt applications. + Various packaging tools and scripts for LXQt applications + lxqt + https://github.com/lxqt/lxqt-build-tools/releases/download/0.11.0/lxqt-build-tools-0.11.0.tar.xz + + cmake + glib2-devel + qt5-linguist + qt5-base-devel + + desktop/lxqt/lxqt-build-tools/pspec.xml + + + lxqt-build-tools + + /usr/bin + /usr/share/cmake + /usr/share/doc + + + + + 2022-04-19 + 0.11.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 0.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.9.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-12-19 + 0.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 0.7.0 + rebuild qt5. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.6.0 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-01-18 + 0.6.0 + rebuild for qt5.14.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-09-15 + 0.6.0 + rebuild for qt5.13.1 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.6.0 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-03-01 + 0.6.0 + Release bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.6.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.5.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.5.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-07 + 0.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 0.4.0 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-config + https://github.com/lxqt/lxqt-config + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + library + desktop.lxqt + Common base library for LXQt components. + Çoğu lxqt bileşenleri için ortak temel kitaplıklar. + Core utility library for all LXDE-Qt components + liblxqt çoğu lxde-qt bileşenleri için ortak temel kitaplıklar içerir. + lxqt + https://github.com/lxqt/lxqt-config/releases/download/1.1.0/lxqt-config-1.1.0.tar.xz + + cmake + libgcc + pkgconfig + zlib-devel + glibc-devel + libXi-devel + libX11-devel + qt5-base-devel + qt5-linguist + qt5-qdbusviewer + qt5-svg-devel + libXcursor-devel + libkscreen-devel + qt5-x11extras-devel + kwindowsystem-devel + xorg-input-libinput-devel + eudev-devel + libqtxdg-devel + liblxqt-devel + lxqt-build-tools + + desktop/lxqt/lxqt-config/pspec.xml + + + lxqt-config + + zlib + libXi + libX11 + libgcc + libxcb + liblxqt + qt5-svg + qt5-base + libXfixes + libXcursor + libkscreen + qt5-x11extras + eudev + libXi + libqtxdg + pisi-timedate + xsettingsd + + + /usr/bin + /usr/lib + /usr/lib64 + /usr/share + /etc/menus + + + + + 2022-04-19 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-01 + 0.17.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-globalkeys + https://github.com/lxqt/lxqt-globalkeys + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + Daemon used to register global keyboard shortcuts + Global klavye kısayollarını kaydetmek için kullanılan araç. + LXQt daemon and library for global keyboard shortcuts registration. + Global klavye kısayolları kaydı için LXQT kütüphane ve araçları. + lxqt + https://github.com/lxqt/lxqt-globalkeys/releases/download/1.1.0/lxqt-globalkeys-1.1.0.tar.xz + + cmake + libgcc + qt5-linguist + libX11-devel + libqtxdg-devel + qt5-base-devel + kwindowsystem-devel + liblxqt-devel + lxqt-build-tools + + desktop/lxqt/lxqt-globalkeys/pspec.xml + + + lxqt-globalkeys + Development headers for libqtxdg + + libX11 + libgcc + liblxqt + qt5-base + + + /usr/bin + /usr/lib/liblxqt-globalkeys* + /usr/share + /etc + + + + lxqt-globalkeys-devel + Development headers for lxqt-globalkeys + + lxqt-globalkeys + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-22 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-01-22 + 1.0.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-notificationd + https://github.com/lxqt/lxqt-notificationd + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + LXQt notification daemon and library. + LXQt bildirim artalan süreci ve kütüphanesi. + Notification daemon + LXQt bildirim artalan süreci ve kitaplıklarını içerir. + lxqt + https://github.com/lxqt/lxqt-notificationd/releases/download/1.1.0/lxqt-notificationd-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libgcc + liblxqt-devel + libqtxdg-devel + qt5-base-devel + qt5-linguist + lxqt-build-tools + + desktop/lxqt/lxqt-notificationd/pspec.xml + + + lxqt-notificationd + + kwindowsystem + libgcc + liblxqt + libqtxdg + qt5-base + + + /usr/bin + /usr/share/ + /etc/autostart + + + + + 2022-04-22 + 1.1.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-openssh-askpass + https://github.com/lxqt/lxqt-openssh-askpass + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app + desktop.lxqt + LXQt openssh password prompt + LXQt parola uygulaması + LXQt openssh password prompt + LXQt parola uygulaması + lxqt + https://github.com/lxqt/lxqt-openssh-askpass/releases/download/1.1.0/lxqt-openssh-askpass-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libqtxdg-devel + liblxqt-devel + lxqt-config + qt5-base-devel + qt5-linguist + lxqt-build-tools + + desktop/lxqt/lxqt-openssh-askpass/pspec.xml + + + lxqt-openssh-askpass + + libgcc + liblxqt + qt5-base + + + /usr/bin + /usr/share + + + + + 2022-04-22 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-panel + https://lxqt.github.io/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + Desktop panel + LXQt masaüstü paneli. + The LXQt desktop panel + lxqt-panel, LXQt masaüstü panelidir. + lxqt + https://github.com/lxqt/lxqt-panel/releases/download/1.1.0/lxqt-panel-1.1.0.tar.xz + + cmake + glib2-devel + kguiaddons-devel + kwindowsystem-devel + libX11-devel + libXcomposite-devel + libXdamage-devel + libdbusmenu-qt-devel + libgcc + liblxqt-devel + libqtxdg-devel + libxkbcommon-devel + lm_sensors-devel + lxqt-globalkeys-devel + pulseaudio-libs-devel + alsa-lib-devel + qt5-linguist + solid-devel + libsysstat-devel + libstatgrab + libxcb-devel + xcb-util-devel + xcb-util-image-devel + libXrender-devel + libXtst-devel + libXScrnSaver-devel + desktop-file-utils + lxqt-build-tools + + desktop/lxqt/lxqt-panel/pspec.xml + + + lxqt-panel + + solid + libgcc + libxcb + libXtst + liblxqt + alsa-lib + libqtxdg + qt5-svg + qt5-base + xcb-util + libsysstat + lm_sensors + libstatgrab + libxkbcommon + kwindowsystem + qt5-x11extras + libdbusmenu-qt + xcb-util-image + lxqt-globalkeys + pulseaudio-libs + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + /usr/share/man + + + panel.conf + + + + lxqt-panel-devel + Development headers for lxqt-panel + + lxqt-panel + + + /usr/include + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 0.17.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 0.15.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-10-25 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-06-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-26 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-policykit + https://github.com/lxqt/lxqt-policykit + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + Policykit agent + Policykit agent. + The LXQt policykit authentication agent + LXQt policykit doğrulama aracı. + lxqt + https://github.com/lxqt/lxqt-policykit/releases/download/1.1.0/lxqt-policykit-1.1.0.tar.xz + + cmake + glib2-devel + kwindowsystem-devel + libgcc + liblxqt-devel + libqtxdg-devel + polkit-devel + polkit-qt-devel + qt5-linguist + lxqt-build-tools + elogind + + desktop/lxqt/lxqt-policykit/pspec.xml + + + lxqt-policykit + + libgcc + liblxqt + polkit-qt + qt5-base + + + /usr/bin + /usr/libexec + /usr/share/doc + /usr/share/lxqt/translations + /etc/autostart + /usr/share/man + + + + + 2022-04-22 + 1.1.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-powermanagement + https://lxqt.github.io/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + LXQt power management daemon. + LXQt güç yönetimi art alan süreci. + Daemon use for power management and auto-suspend. + Güç yönetimi ve otomatik askıya için kullanılır. + lxqt + https://github.com/lxqt/lxqt-powermanagement/releases/download/1.1.0/lxqt-powermanagement-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libgcc + liblxqt-devel + libqtxdg-devel + lxqt-globalkeys-devel + libxcb-devel + qt5-base-devel + qt5-linguist + qt5-svg-devel + solid-devel + upower-devel + kidletime-devel + lxqt-build-tools + + desktop/lxqt/lxqt-powermanagement/pspec.xml + + + lxqt-powermanagement + + libgcc + liblxqt + qt5-base + qt5-svg + solid + libqtxdg + kidletime + kwindowsystem + lxqt-globalkeys + + + /usr/bin + /usr/share/ + /etc/autostart + + + + + 2022-04-25 + 1.1.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-qtplugin + https://lxqt.github.io/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + LXQt platform integration for Qt + Qt için LXQt platform entegrasyonu. + LXDE-Qt platform integration plugin for Qt + Qt için LXDE-Qt platform entegrasyon eklentisi. + lxqt + https://github.com/lxqt/lxqt-qtplugin/releases/download/1.1.0/lxqt-qtplugin-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libdbusmenu-qt-devel + libgcc + liblxqt-devel + libqtxdg-devel + qt5-base-devel + qt5-linguist + lxqt-build-tools + libfm-qt-devel + menu-cache-devel + libexif-devel + + desktop/lxqt/lxqt-qtplugin/pspec.xml + + + lxqt-qtplugin + + libgcc + qt5-base + libdbusmenu-qt + libqtxdg + + + /usr/lib + /usr/share + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 0.15.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.0 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.0 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-runner + https://lxqt.github.io/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + The LXQt application launcher + LXQt uygulama başlatıcısı. + Tool used to launch programs quickly by typing their names + Aracı adlarını yazarak hızlıca programları başlatmak için kullanılır. + lxqt + https://github.com/lxqt/lxqt-runner/releases/download/1.1.0/lxqt-runner-1.1.0.tar.xz + + cmake + glib2-devel + kwindowsystem-devel + libgcc + libXScrnSaver-devel + liblxqt-devel + libqtxdg-devel + lxqt-globalkeys-devel + qt5-base-devel + qt5-linguist + qt5-script-devel + qt5-svg-devel + muparser-devel + lxqt-build-tools + + desktop/lxqt/lxqt-runner/pspec.xml + + + lxqt-runner + + kwindowsystem + libgcc + liblxqt + libqtxdg + lxqt-globalkeys + qt5-base + muparser + + + /usr/bin + /usr/share/ + /etc/autostart + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-session + https://github.com/lxqt/lxqt-session + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + LXQt session + LXQt oturumu. + An alternative session manager ported from the original razor-session + Orjinal razor-sessiondan taşınan bir alternatif oturum yöneticisidir. + lxqt + https://github.com/lxqt/lxqt-session/releases/download/1.1.0/lxqt-session-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libX11-devel + libgcc + liblxqt-devel + libqtxdg-devel + qt5-linguist + qt5-x11extras-devel + xdg-user-dirs + lxqt-build-tools + libgudev-devel + + desktop/lxqt/lxqt-session/pspec.xml + + + lxqt-session + + eudev + kwindowsystem + libX11 + libgcc + liblxqt + libqtxdg + qt5-base + qt5-x11extras + procps + pisilinux-theme-damadamas + + + /usr/bin + /usr/lib + /usr/share/ + /etc + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-01-22 + 1.0.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-04 + 0.17.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-sudo + https://github.com/lxqt/lxqt-sudo + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1 + app:gui + desktop.lxqt + Python binding of terminal widget for Qt + Lxqt yetkili kullanıcı aracı + LXQt privilege program (lxsu). + lxqt + https://github.com/lxqt/lxqt-sudo/releases/download/1.1.0/lxqt-sudo-1.1.0.tar.xz + + cmake + kwindowsystem-devel + liblxqt-devel + libqtxdg-devel + qt5-base-devel + qt5-linguist + lxqt-build-tools + + desktop/lxqt/lxqt-sudo/pspec.xml + + + lxqt-sudo + + libgcc + liblxqt + qt5-base + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-31 + 0.13.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-themes + https://lxqt.github.io/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + data + desktop.lxqt + LXQt themes, graphics and icons. + LXQt tema, grafik ve simgeleri + LXQt themes, graphics and icons + LXQt tema, grafik ve simgeleri + lxqt + https://github.com/lxqt/lxqt-themes/releases/download/1.1.0/lxqt-themes-1.1.0.tar.xz + + cmake + kwindowsystem-devel + liblxqt-devel + qt5-linguist + lxqt-build-tools + + + themes.patch + + desktop/lxqt/lxqt-themes/pspec.xml + + + lxqt-themes + + noto-fonts + + + /etc + /usr/bin + /usr/share + /usr/share/doc + /usr/share/man + /usr/share/themes/lxqt + + + start-here-light.svg + start-here-dark.svg + Crocus-Ancyrensis.jpg + Crocus-Ancyrensis-2.jpg + + + + + 2022-04-19 + 1.1.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-04-08 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.0 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.0 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.0 + added felis_catus wallpaper + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + lxqt-wallet + https://github.com/lxqt/lxqt_wallet + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + app:gui + desktop.lxqt + Qt-based wallet manager + Qt tabanlı cüzdan yöneticisi + Qt-based wallet manager + Qt tabanlı cüzdan yöneticisi + lxqt + https://github.com/lxqt/lxqt_wallet/releases/download/3.2.2/lxqt-wallet-3.2.2.tar.xz + + cmake + qt5-base-devel + qt5-linguist + libsecret-devel + libgcrypt-devel + kwallet-devel + knotifications-devel + + desktop/lxqt/lxqt-wallet/pspec.xml + + + lxqt-wallet + + libgcc + libgcrypt + kwallet + libsecret + qt5-base + + + /usr/lib/liblxqt-wallet.* + /usr/share/doc + /usr/bin + /usr/share/lxqt/translations + + + + lxqt-wallet-devel + + qt5-base-devel + lxqt-wallet + + + /usr/include/lxqt + /usr/lib/pkgconfig/lxqt-wallet.pc + + + + + 2021-04-26 + 3.2.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 3.2.1 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-09-17 + 3.2.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-06 + 3.1.0 + Rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 3.1.0 + Rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 3.1.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 3.1.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 3.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 3.1.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + menu-cache + https://www.lxde.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + freedesktop.org desktop menus for LXDE + Library used to read freedesktop.org menus + lxqt + https://github.com/lxde/menu-cache/archive/1.1.0.tar.gz + + gtk-doc + glib2-devel + libfm-extra-devel + qt5-base-devel + + + menu-cache-1.1.0-0001-Support-gcc10-compilation.patch + + desktop/lxqt/menu-cache/pspec.xml + + + menu-cache + Development headers for libfm-qt + + glib2 + libfm-extra + + + /usr/lib + /usr/libexec + /usr/share + + + + menu-cache-devel + Development files for menu-cache + + glib2-devel + menu-cache + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-04-26 + 1.1.0 + fixed build for gcc10 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 1.1.0 + Rebuild for qt5.15.1 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-12 + 1.1.0 + Rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 1.1.0 + Rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 1.1.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 1.1.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 1.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 1.1.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + obconf-qt + https://github.com/lxqt/obconf-qt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + This is a Qt port of ObConf, configurator of OpenBox window manager. + Pencere yöneticisi yapılandırma (Openbox için). + This is a Qt port of ObConf, configurator of OpenBox window manager. + Bu bir obconf Qt portudur, OpenBox pencere yöneticisi yapılandırıcı. + lxqt + https://github.com/lxqt/obconf-qt/releases/download/0.16.2/obconf-qt-0.16.2.tar.xz + + cmake + icon-theme-hicolor + liblxqt-devel + openbox-devel + qt5-linguist + kwindowsystem-devel + lxqt-build-tools + + desktop/lxqt/obconf-qt/pspec.xml + + + obconf-qt + + glib2 + libX11 + libgcc + libxml2 + qt5-base + qt5-x11extras + openbox + + + /usr/bin + /usr/share + + + + + 2022-04-19 + 0.16.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 0.16.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.16.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pavucontrol-qt + https://github.com/lxqt/pavucontrol-qt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + Qt port of volume control pavucontrol. + Qt port of volume control pavucontrol + lxqt + https://github.com/lxqt/pavucontrol-qt/releases/download/1.1.0/pavucontrol-qt-1.1.0.tar.xz + + cmake + kwindowsystem-devel + libgcc + liblxqt-devel + qt5-linguist + libqtxdg-devel + pulseaudio-libs-devel + glib2-devel + xdg-user-dirs + lxqt-build-tools + + desktop/lxqt/pavucontrol-qt/pspec.xml + + + pavucontrol-qt + + glib2 + libgcc + qt5-base + pulseaudio-libs + + + /usr/bin + /usr/share/applications + /usr/share/pavucontrol-qt/translations + /usr/share/doc + + + + + 2022-04-19 + 1.1.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.4.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.4.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.3.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pcmanfm-qt + https://github.com/lxqt/pcmanfm-qt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + The LXQt file manager, Qt port of PCManFM + LXQt dosya yöneticisi, PCManFM Qt portu. + File manager and desktop icon manager (Qt port of PCManFM and libfm) + Dosya yöneticisi ve masaüstü simgesi yöneticisi (Qt PCManFM port ve libfm). + lxqt + https://github.com/lxqt/pcmanfm-qt/releases/download/1.1.0/pcmanfm-qt-1.1.0.tar.xz + + cairo-devel + cmake + glib2-devel + libfm-qt-devel + libgcc + liblxqt-devel + libqtxdg-devel + menu-cache-devel + libxcb-devel + libkexiv2-devel + qt5-base-devel + qt5-linguist + qt5-x11extras-devel + kwindowsystem-devel + libexif-devel + udisks2-devel + lxqt-build-tools + + desktop/lxqt/pcmanfm-qt/pspec.xml + + + pcmanfm-qt + + glib2 + libgcc + libxcb + libfm-qt + qt5-base + qt5-x11extras + breeze-icons + gvfs + udisks2 + menu-cache + + + /etc + /usr/bin + /usr/lib + /usr/share/ + + + settings.conf + pcmanfm-qt-desktop-pref.desktop + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-30 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 0.15.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.13.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.13.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.12.0 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qlipper + https://github.com/pvanek/qlipper + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2+ + apps + desktop.lxqt + Lightweight and cross-platform clipboard history applet. + Hafif, çapraz platform bir pano uygulaması + Lightweight and cross-platform clipboard history applet. + Hafif, çapraz platform bir pano uygulaması + qlipper + https://github.com/pvanek/qlipper/archive/5.1.2.tar.gz + + cmake + qt5-base-devel + qt5-linguist + + desktop/lxqt/qlipper/pspec.xml + + + qlipper + + libX11 + libgcc + qt5-base + + + /usr/bin + /usr/lib + /usr/share + + + + + 2021-04-26 + 5.1.2 + rebuild for qt5.15.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 5.1.2 + rebuild for qt5.15.1 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-06 + 5.1.2 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 5.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 5.1.1 + rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 5.1.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 5.0.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-26 + 5.0.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qps + https://github.com/lxqt/qps + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app + desktop.lxqt + Qt Process Manager + Qt tabanlı bir Süreç Yöneticisi + Qt Process Manager + Qt tabanlı bir Süreç Yöneticisi + qps + https://github.com/lxqt/qps/releases/download/2.5.0/qps-2.5.0.tar.xz + + cmake + qt5-base-devel + qt5-x11extras-devel + libXrender-devel + qt5-linguist + kwindowsystem-devel + liblxqt-devel + lxqt-build-tools + + desktop/lxqt/qps/pspec.xml + + + qps + + qt5-base + libgcc + liblxqt + + + /usr/bin/qps + /usr/lib + /usr/share + + + + + 2022-04-25 + 2.5.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 2.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 2.3.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 2.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 2.0.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 1.10.20 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 1.10.20 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 1.10.19 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 1.10.18 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 1.10.18 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 1.10.18 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 1.10.17 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qterminal + https://github.com/lxqt/qterminal + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.lxqt + QT5-based multitab terminal emulator. + QT5-based multitab terminal emulator. + lxqt + https://github.com/lxqt/qterminal/releases/download/1.1.0/qterminal-1.1.0.tar.xz + + cmake + qt5-base-devel + qt5-linguist + libxcb-devel + libX11-devel + qtermwidget5-devel + qt5-x11extras-devel + lxqt-config + qt5-svg-devel + kwindowsystem-devel + lxqt-build-tools + + desktop/lxqt/qterminal/pspec.xml + + + qterminal + + libX11 + libgcc + qt5-base + qtermwidget5 + qt5-x11extras + + + /usr/share + /usr/share/doc + /usr/share/qterminal/translations + /usr/bin + + + + + 2022-04-25 + 1.1.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-14 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-26 + 0.17.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-11-05 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.1 + rebuild for qt5.14.2 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-08-16 + 0.14.1 + rebuild for qt5.13.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-28 + 0.14.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-27 + 0.14.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-01-02 + 0.9.0 + Rebuild for qt + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-11-28 + 0.9.0 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-31 + 0.9.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-23 + 0.8.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + screengrab + https://github.com/lxqt/screengrab + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL2 + app:gui + desktop.lxqt + Crossplatform tool for fast making screenshots. + An application for creating screenshots. ScreenGrab uses the Qt framework and thus, it is independent from any desktop environment. + lxqt + https://github.com/lxqt/screengrab/releases/download/2.4.0/screengrab-2.4.0.tar.xz + + cmake + libgcc + kwindowsystem-devel + liblxqt-devel + qt5-linguist + libqtxdg-devel + lxqt-build-tools + + desktop/lxqt/screengrab/pspec.xml + + + screengrab + + libX11 + libgcc + libxcb + libqtxdg + qt5-base + kwindowsystem + qt5-x11extras + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/icons + /usr/share/metainfo + /usr/share/screengrab + /usr/share/doc + + + + + 2022-05-05 + 2.4.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + xdg-desktop-portal-lxqt + https://github.com/lxqt/xdg-desktop-portal-lxqt + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL + library + desktop.lxqt + A backend implementation for xdg-desktop-portal using Qt/KF5/libfm-qt + A backend implementation for xdg-desktop-portal using Qt/KF5/libfm-qt + lxqt + https://github.com/lxqt/xdg-desktop-portal-lxqt/releases/download/0.2.0/xdg-desktop-portal-lxqt-0.2.0.tar.xz + + cmake + qt5-base-devel + qt5-x11extras-devel + libfm-qt-devel + kwindowsystem-devel + glib2-devel + menu-cache-devel + libexif-devel + + desktop/lxqt/xdg-desktop-portal-lxqt/pspec.xml + + + xdg-desktop-portal-lxqt + + libgcc + libfm-qt + qt5-base + kwindowsystem + + + /usr/lib + /usr/share/applications + /usr/share/cmake + /usr/share/dbus-1 + /usr/share/xdg-desktop-portal + + + + + 2022-04-26 + 0.2.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-calc + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Calculator for the Mate desktop environment + Mate için hesap makinesi + mate-calc, Mate masaüstü için hesap makinesi. + mate-calc, Mate masaüstü için hesap makinesi. + accessories-calculator + http://pub.mate-desktop.org/releases/1.26/mate-calc-1.26.0.tar.xz + + intltool + itstool + mpfr-devel + libmpc-devel + gtk3-devel + libxml2-devel + mate-common + + desktop/mate/mate-calc/pspec.xml + + + mate-calc + + atk + gtk3 + mpfr + libmpc + glib2 + pango + libxml2 + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/help + /usr/share/glib-2.0 + /usr/share/mate-calc + /usr/share/applications + /usr/share/metainfo + /usr/share/locale + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + atril + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Atril is a document viewer for the MATE desktop + Atril is a document viewer capable of displaying multiple and single page document formats like PDF and Postscript. + atril + http://pub.mate-desktop.org/releases/1.26/atril-1.26.0.tar.xz + + tiff-devel + gtk3-devel + libXt-devel + libglade-devel + libjpeg-turbo-devel + cairo-devel + mate-common + libsecret-devel + libspectre-devel + poppler-glib-devel + gobject-introspection-devel + yelp-tools + libgxps-devel + caja-devel + webkit2gtk-devel + intltool + itstool + gtk-doc + python-six + djvu-devel + texlive-bin-devel + t1lib-devel + + desktop/mate/atril/pspec.xml + + + atril + + atk + caja + tiff + gtk3 + zlib + cairo + djvu + glib2 + pango + t1lib + libSM + libICE + libgxps + libxml2 + libsecret + gdk-pixbuf + libspectre + webkit2gtk + texlive-bin + poppler-glib + + + /usr/lib + /usr/share/omf + /usr/share/man + /usr/bin + /usr/share/doc + /usr/share/help + /usr/share/atril + /usr/share/mate* + /usr/share/icons + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/glib-2.0 + /usr/share/caja + /usr/share/metainfo + /usr/share/thumbnailers + /usr/share/applications + /usr/share/locale + + + + atril-devel + Atril development files + + gtk3-devel + glib2-devel + atril + + + /usr/include + /usr/lib/pkgconfig + + + + atril-doc + Atril documentation files. + + atril + + + /usr/share/gtk-doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-05 + 1.25.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + bamf + https://launchpad.net/bamf + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3+ + app:gui + desktop.mate + Application matching framework + Application matching framework + https://launchpadlibrarian.net/396415087/bamf-0.5.4.tar.gz + + glib2-devel + libwnck3-devel + libX11-devel + libgtop-devel + gnome-common + vala-devel + gtk-doc + libxslt-devel + python-lxml + python-six + python3-devel + gobject-introspection-devel + + + bamf-no-gtester_py3.patch + + desktop/mate/bamf/pspec.xml + + + bamf + + gtk3 + glib2 + libX11 + libgtop + libwnck3 + gdk-pixbuf + startup-notification + + + /usr/lib/libbamf3* + /usr/lib/bamf + /usr/lib/girepository-1.0 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/upstart + /usr/share/vala + /usr/lib/systemd/user/bamfdaemon.service + + + + bamf-devel + + glib2-devel + bamf + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-06-29 + 0.5.4 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-13 + 0.5.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + caja + https://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + app:gui + desktop.mate + Default file manager for the Mate desktop. + Mate masasütü için öntanımlı dosya yöneticisi + Caja is a file manager that allows to browse directories, preview files and launch applications. + Caja; dizinlerde gezinmeyi, dosyaları gözatmayı ve uygulamalar başlatmayı sağlayan bir dosya yöneticisidir. + system-file-manager + http://pub.mate-desktop.org/releases/1.26/caja-1.26.0.tar.xz + + intltool + pango-devel + cairo-devel + libSM-devel + gettext-devel + mate-common + exempi-devel + python3-devel + libxml2-devel + libexif-devel + autoconf-archive + libnotify-devel + dbus-glib-devel + mate-desktop-devel + startup-notification-devel + gobject-introspection-devel + + desktop/mate/caja/pspec.xml + + + caja + + atk + gtk3 + pango + cairo + glib2 + libSM + libICE + libX11 + exempi + libexif + libxml2 + libnotify + gdk-pixbuf + mate-desktop + gvfs-archive + gvfs-afp + gvfs-afc + gvfs-fuse + gvfs-gphoto2 + gvfs-mtp + gvfs-smb + + + /usr/lib/libcaja* + /usr/lib/girepository-1.0 + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/caja + /usr/share/doc + /usr/share/metainfo + /usr/share/icons + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/pixmaps + /usr/share/glib-2.0 + /usr/share/locale + /usr/share/applications + + + + caja-devel + caja için geliştirme dosyaları + caja için geliştirme dosyaları + + gtk3-devel + glib2-devel + caja + + + /usr/include + /usr/lib/pkgconfig + + + + caja-doc + caja için döküman belgeleri. + caja için döküman belgeleri. + + caja + + + /usr/share/gtk-doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-30 + 1.25.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-06 + 1.25.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-23 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.22.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + caja-admin + https://github.com/infirit/caja-admin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Caja Admin is a simple Python extension for the Caja file manager. + Caja-admin Caja dosya yöneticisi için içerik menüsünde bazı yetkili kullanıcı eylemleri sunar + Caja Admin is a simple Python extension for the Caja file manager that adds some administrative actions to the right-click menu. + Caja-admin Caja dosya yöneticisi için içerik menüsünde bazı yetkili kullanıcı eylemleri sunar + https://github.com/infirit/caja-admin/archive/0.0.5.tar.gz + + tr.po + + + meson + python3-devel + python-caja + extra-cmake-modules + + + added_tr.patch + + desktop/mate/caja-admin/pspec.xml + + + caja-admin + + python-caja + mate-terminal + + + /usr/share/caja-python + /usr/share/doc + /usr/share/locale + /usr/share/polkit-1 + + + + + 2021-09-07 + 0.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 0.0.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-03-18 + 0.0.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + caja-extensions + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Mate file manager eklentileri + Caja eklentileri + caja-extensions, Mate file manager eklentileri. + caja-extensions, Caja eklentileri. + http://pub.mate-desktop.org/releases/1.26/caja-extensions-1.26.0.tar.xz + + python3 + caja-devel + gtk3-devel + dbus-glib-devel + intltool + gssdp-devel + gupnp-devel + mate-common + mate-desktop-devel + + desktop/mate/caja-extensions/pspec.xml + + + caja-extensions + + caja + gtk3 + glib2 + gssdp + gupnp + dbus-glib + gdk-pixbuf + mate-desktop + + + /usr/lib/caja + /usr/lib/caja-sendto + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/glib-2.0/ + /usr/share/caja + /usr/share/locale + /usr/share/caja-extensions + + + + caja-extensions-devel + Development files for caja-extensions + Caja eklentileri için geliştirme dosyaları + + gtk3-devel + glib2-devel + caja-extensions + + + /usr/include + /usr/lib/pkgconfig + + + + caja-extensions-doc + caja-extensions için belgeler + caja-extensions için belgeler + + caja-extensions + + + /usr/share/gtk-doc/ + + + + + 2022-06-02 + 1.26.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + engrampa + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Engrampa is an archive manager for the MATE environment. + Engrampa is an archive manager for the MATE environment. This means that you can create and modify archives; view the content of an archive; view and modify a file contained in the archive; extract files from the archive. + engrampa + http://pub.mate-desktop.org/releases/1.26/engrampa-1.26.0.tar.xz + + gtk3-devel + caja-devel + mate-common + libSM-devel + intltool + itstool + json-glib-devel + python3-devel + + desktop/mate/engrampa/pspec.xml + + + engrampa + + file + gtk3 + caja + cairo + glib2 + pango + gdk-pixbuf + json-glib + + + /usr/lib/ + /usr/share/doc + /usr/share/man + /usr/share/omf + /usr/bin + /usr/share/mate + /usr/share/help + /usr/share/icons + /usr/share/dbus-1 + /usr/share/pixmaps + /usr/share/glib-2.0 + /usr/share/engrampa + /usr/share/caja + /usr/share/metainfo + /usr/share/applications + /usr/share/locale + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.22.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + eom + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Eye of MATE, an image viewer for MATE + Mate için resim görüntüleyicisi + This is the Eye of MATE, an image viewer program. It is meant to be a fast and functional image viewer. + eom, resim görüntüleyicisidir. + eom + http://pub.mate-desktop.org/releases/1.26/eom-1.26.0.tar.xz + + zlib-devel + gobject-introspection-devel + libpeas-devel + libxml2-devel + gtk3-devel + imagemagick-devel + lcms2-devel + mate-common + exempi-devel + libexif-devel + librsvg-devel + dbus-glib-devel + mate-desktop-devel + libjpeg-turbo-devel + intltool + itstool + + desktop/mate/eom/pspec.xml + + + eom + + atk + gtk3 + zlib + glib2 + lcms2 + cairo + exempi + libX11 + libexif + libpeas + librsvg + libxml2 + gdk-pixbuf + mate-desktop + libjpeg-turbo + gobject-introspection + + + /usr/bin + /usr/lib/ + /usr/share/doc + /usr/share/man + /usr/share/omf + /usr/share/eom + /usr/share/help + /usr/share/mate + /usr/share/icons + /usr/share/glib-2.0 + /usr/share/gir-1.0 + /usr/share/metainfo + /usr/share/applications + /usr/share/locale + + + + eom-devel + Eye of MATE development files + eom için geliştirme dosyaları + + gtk3-devel + glib2-devel + eom + + + /usr/include/ + /usr/lib/pkgconfig/ + + + + eom-doc + Eye of MATE documentation files + eom için döküman belgeleri. + + eom + + + /usr/share/gtk-doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-23 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + icon-naming-utils + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + data + desktop.mate + Mate icon theme + mate-icon-theme package contains the default icon theme used by the Mate desktop. + https://sources.archlinux.org/other/icon-naming-utils/icon-naming-utils-0.8.90.tar.gz + + perl-XML-Simple + + + remove-legacy-calc.patch + + desktop/mate/icon-naming-utils/pspec.xml + + + icon-naming-utils + + /usr/lib + /usr/share/doc + /usr/share/icon-naming-utils + /usr/share/dtds + + + + icon-naming-utils-devel + + icon-naming-utils + + + /usr/share/pkgconfig + + + + + 2020-06-29 + 0.8.90 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-13 + 0.8.90 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libindicator + https://launchpad.net/libindicator + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:console + desktop.mate + A set of symbols and convience functions that all indicators would like to use. + Libary with a set of symbols and convience functions that all indicators would like to use (GTK+ 2 library) + https://launchpadlibrarian.net/116625186/libindicator-12.10.1.tar.gz + + dbus-glib-devel + gtk2-devel + gtk3-devel + gdk-pixbuf-devel + python3-devel + + + configure.patch + libindicator-12.10.1-glib262-g_define_type_with_private.patch + + desktop/mate/libindicator/pspec.xml + + + libindicator + + gtk3 + glib2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/libindicator + /etc/X11/Xsession.d/80indicator-debugging + + + + libindicator-devel + libindicator için geliştirme dosyalrı + libindicator için geliştirme dosyalrı + + gtk3-devel + libindicator + + + /usr/include/ + /usr/lib/pkgconfig + + + + libindicator-gtk2 + + gtk2 + + + /usr/lib/libindicator.so* + /usr/lib/indicator-loader + + + + libindicator-gtk2-devel + libindicator için geliştirme dosyalrı + + gtk2-devel + libindicator-gtk2 + + + /usr/lib/pkgconfig/indicator-0.4.pc + + + + + 2021-07-04 + 12.10.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 12.10.1 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-13 + 12.10.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libmatekbd + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + library + desktop.mate + GNOME keybord configration library + Mate klavye kontrol kütüphanesi + libgnomekbd contains a GNOME library that manages keyboard layout settings and its panel applet. + Bu paket klavye ayarlarını yöneten bir Mate kütüphanesi ve onun panel programcığını içerir. + http://pub.mate-desktop.org/releases/1.26/libmatekbd-1.26.0.tar.xz + + intltool + gtk3-devel + mate-common + libICE-devel + python3-devel + libxklavier-devel + desktop-file-utils + gobject-introspection-devel + gsettings-desktop-schemas-devel + + desktop/mate/libmatekbd/pspec.xml + + + libmatekbd + + gtk3 + cairo + glib2 + pango + libX11 + gdk-pixbuf + libxklavier + + + /usr/share/doc + /usr/bin + /usr/share/glib-2.0 + /usr/share/gir-1.0 + /usr/share/libmatekbd + /usr/share/locale + /usr/lib/libmatekbd* + /usr/lib/girepository-1.0 + /etc/mateconf/schemas/ + + + + libmatekbd-devel + libmatekbd için geliştirme dosyaları + libmatekbd için geliştirme dosyaları + + gtk3-devel + glib2-devel + libxklavier-devel + libmatekbd + + + /usr/lib/pkgconfig + /usr/include/libmatekbd + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-23 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.22.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libmatemixer + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + library + desktop.mate + Mixer library for MATE Desktop + Mixer library for MATE Desktop + http://pub.mate-desktop.org/releases/1.26/libmatemixer-1.26.0.tar.xz + + intltool + mate-common + pulseaudio-libs-devel + alsa-lib-devel + gtk-doc + python-six + autoconf-archive + + desktop/mate/libmatemixer/pspec.xml + + + libmatemixer + + glib2 + alsa-lib + pulseaudio-libs + + + /usr/share/doc + /usr/share/gtk-doc + /usr/share/locale + /usr/lib/libmatemixer.so* + /usr/lib/libmatemixer + + + + libmatemixer-devel + libmatekbd için geliştirme dosyaları + + glib2-devel + libmatemixer + + + /usr/lib/pkgconfig + /usr/include/mate-mixer + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libmateweather + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + library + desktop.mate + libmateweather + libmateweather + libmateweather is a collection of documentation utilities for the Mate project. + libmateweather Mate Projesi'nin bir parçasıdır. + http://pub.mate-desktop.org/releases/1.26/libmateweather-1.26.0.tar.xz + + intltool + gtk3-devel + mate-common + libsoup-devel + libxml2-devel + timezone + + desktop/mate/libmateweather/pspec.xml + + + libmateweather + + gtk3 + glib2 + libsoup + libxml2 + gdk-pixbuf + + + /usr/share/doc + /usr/share/locale + /usr/share/icons + /usr/share/libmateweather + /usr/share/glib-2.0 + /usr/lib/libmateweather.so* + /usr/lib/libmateweather + + + + libmateweather-devel + libmateweather için geliştirme dosyaları + + gtk3-devel + glib2-devel + libsoup-devel + libxml2-devel + gdk-pixbuf-devel + libmateweather + + + /usr/lib/pkgconfig + /usr/include/libmateweather + + + + libmateweather-doc + libmateweather için döküman belgeleri. + libmateweather için döküman belgeleri. + + libmateweather + + + /usr/share/gtk-doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + marco + https://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.mate + GTK+ based window manager + GTK+ tabanlı pencere yöneticisi + Marco is a small window manager, using GTK+ to do everything. + Marco herşeyi yapmak için GTK+ kullanan, küçük bir pencere yöneticisidir. + http://pub.mate-desktop.org/releases/1.26/marco-1.26.0.tar.xz + + window.png + mini-window.png + stock_delete.png + stock_maximize.png + stock_minimize.png + + + zenity + itstool + intltool + gtk3-devel + yelp-devel + libSM-devel + libgtop-devel + libXdamage-devel + gdk-pixbuf-devel + libcanberra-devel + libcanberra-gtk3-devel + startup-notification-devel + mate-common + mate-desktop-devel + + desktop/mate/marco/pspec.xml + + + marco + + atk + gtk3 + cairo + glib2 + libSM + pango + libICE + libX11 + libXext + libgtop + libXrandr + libXfixes + gdk-pixbuf + libXcursor + libXrender + libXdamage + libcanberra + libXinerama + libXcomposite + libcanberra-gtk3 + startup-notification + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/mate + /usr/share/help + /usr/share/marco + /usr/share/themes + /usr/share/glib-2.0 + /usr/share/locale + /usr/share/mate-control-center + /usr/share/applications/marco.desktop + + + + marco-devel + marco development files + marco için geliştirme dosyaları + + gtk3-devel + marco + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-31 + 1.24.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-29 + 1.22.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-applet-dock + https://github.com/ubuntu-mate/mate-dock-applet + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + app:gui + desktop.mate + Application dock for the MATE panel + MATE paneli için uygulama rıhtımı + Application dock for the MATE panel + MATE paneli için uygulama rıhtımı + dock + https://github.com/ubuntu-mate/mate-dock-applet/archive/21.10.0.tar.gz + + autoconf-archive + python3-devel + libwnck3-devel + bamf-devel + gettext-devel + python3-cairo-devel + python3-pillow + + desktop/mate/mate-applet-dock/pspec.xml + + + mate-applet-dock + + bamf + python3 + python3-xlib + python3-xdg + python3-pillow + libwnck3 + python3-cairo + + + /usr/lib/mate-applets + /usr/share/doc + /usr/share/dbus-1 + /usr/share/glib-2.0 + /usr/share/mate-panel + /usr/share/locale + + + + + 2021-10-02 + 21.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 20.04.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-13 + 20.04.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-applets + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.mate + Applets for MATE panel. + Applets for the MATE Desktop and Panel + http://pub.mate-desktop.org/releases/1.26/mate-applets-1.26.0.tar.xz + + libgtop-devel + libxml2-devel + libICE-devel + libSM-devel + upower-devel + libwnck3-devel + libnotify-devel + mate-common + mate-settings-daemon-devel + mate-notification-daemon + mate-panel-devel + libmateweather-devel + polkit-devel + gtksourceview3-devel + wireless-tools-devel + NetworkManager-devel + intltool + itstool + libnl-devel + cpupowertools + + desktop/mate/mate-applets/pspec.xml + + + mate-applets + + atk + gtk3 + libnl + cairo + glib2 + pango + libX11 + polkit + upower + libgtop + libxml2 + libwnck3 + dbus-glib + libnotify + gdk-pixbuf + mate-panel + cpupowertools + gtksourceview3 + libmateweather + wireless-tools + + + /usr/lib + /etc/sound + /etc/dbus-1 + /usr/share/doc + /usr/share/omf + /usr/bin + /usr/share/help + /usr/share/mate + /usr/share/icons + /usr/share/dbus-1 + /usr/share/pixmaps + /usr/share/MateConf + /usr/share/polkit-1 + /usr/share/glib-2.0 + /usr/share/mate-2.0 + /usr/share/man/ + /usr/share/mate-panel + /usr/share/locale + /usr/share/mate-applets + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-06 + 1.25.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-20 + 1.25.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-14 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-backgrounds + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + data + desktop.mate + Default wallpapers for the Mate desktop + Mate masaüstü için öntanımlı duvar kağıtları + gnome-backgrounds contains default wallpapers for the Mate desktop. + mate-backgrounds, Mate masaüstü için öntanımlı duvar kağıtlarını içerir. + http://pub.mate-desktop.org/releases/1.26/mate-backgrounds-1.26.0.tar.xz + + nature/1.jpg + nature/2.jpg + nature/3.jpg + nature/4.jpg + nature/5.jpg + nature/6.jpg + nature/7.jpg + nature/8.jpg + + + intltool + mate-common + + + mate-backgrounds-add-image.patch + + desktop/mate/mate-backgrounds/pspec.xml + + + mate-backgrounds + + /usr/share/doc + /usr/share/pixmaps + /usr/share/locale + /usr/share/backgrounds + /usr/share/mate-background-properties + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-23 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-03 + 1.24.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-brisk-menu + https://github.com/getsolus/brisk-menu + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.mate + Mate Brisk Menus + Modern, efficient menu for the MATE Desktop Environment. + https://github.com/getsolus/brisk-menu/releases/download/v0.6.2/brisk-menu-v0.6.2.tar.xz + + meson + gtk3-devel + libnotify-devel + mate-panel-devel + mate-menus-devel + libnotify-devel + + desktop/mate/mate-brisk-menu/pspec.xml + + + mate-brisk-menu + + gtk3 + glib2 + libX11 + libnotify + mate-menus + mate-panel + + + /usr/lib + /usr/share/dbus-1 + /usr/share/doc + /usr/share/mate-panel + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/locale + + + + + 2021-09-07 + 0.6.2 Rebuild Mustafa Cinasal muscnsl@pisilinux.org - 2017-01-23 - 0.7.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - akonadi-import-wizard - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - CLI tools to manage akonadi calendars - Import data from other mail clients to KMail - http://download.kde.org/stable/release-service/22.04.1/src/akonadi-import-wizard-22.04.1.tar.xz - - boost-devel - akonadi-devel - akonadi-calendar-devel - extra-cmake-modules - kdesignerplugin - kdoctools-devel - qt5-base-devel - qt5-keychain-devel - kcompletion-devel - kxmlgui-devel - kitemmodels-devel - kcontacts-devel - kcalendarcore-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - akonadi-contacts-devel - kcalutils-devel - libkdepim-devel - calendarsupport-devel - kmime-devel - kidentitymanagement-devel - kmailtransport-devel - akonadi-mime-devel - cyrus-sasl-devel - mailcommon-devel - messagelib-devel - pimcommon-devel - kimap-devel - libkleo-devel - gpgme-devel - gpgme-qt5-devel - mailimporter-devel - ffmpeg-devel - libXScrnSaver-devel - - desktop/kde/applications/akonadi-import-wizard/pspec.xml - - - akonadi-import-wizard - Import data from other mail clients to KMail - - ki18n - kcrash - libgcc - akonadi - kconfig - kwallet - kxmlgui - qt5-base - qt5-keychain - kcontacts - libkdepim - pimcommon - mailcommon - messagelib - kcompletion - kcoreaddons - kdbusaddons - mailimporter - kmailtransport - kwidgetsaddons - kidentitymanagement - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - /usr/lib - - - - akonadi-import-wizard-devel - Development files for akonadi-import-wizard - - akonadi-import-wizard - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-31 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - blogilo - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - A KDE blogging client - Blogilo is an fully-featured blogging client. It allows local creation and editing of blog posts. Various blogging APIs are supported for publishing. - https://github.com/KDE/blogilo/archive/v17.08.3.tar.gz - - qt5-base - boost-devel - extra-cmake-modules - kblog-devel - kdesignerplugin - kdoctools-devel - kio-devel - ktexteditor-devel - python-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - qt5-webengine-devel - kdelibs4-support-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - ksyndication-devel - libkdepim-devel - akonadi-devel - akonadi-contacts-devel - akonadi-mime-devel - kcontacts-devel - pimcommon-devel - kimap-devel - kmime-devel - cyrus-sasl-devel - kpimtextedit-devel - messagelib-devel - syntax-highlighting-devel - libkgapi-devel - - desktop/kde/applications/blogilo/pspec.xml - - - blogilo - A KDE blogging client - - qt5-base - kio - kblog - ki18n - kcrash - libgcc - kconfig - kwallet - kxmlgui - qt5-base - pimcommon - messagelib - kcompletion - kcoreaddons - kdbusaddons - ktexteditor - kpimtextedit - ktextwidgets - qt5-webengine - kconfigwidgets - knotifications - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2018-10-18 - 17.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-03-02 - 17.08.3 - Release bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-19 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-03 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kross-interpreters - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.bindings - Kross interpreter plugins for programming languages - Language interpreters to enable in-process scripting with Kross. - mirrors://kde/stable/release-service/22.04.1/src/kross-interpreters-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kross-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - python-devel - - desktop/kde/applications/kross-interpreters/pspec.xml - - - kross-interpreters - - qt5-base - libgcc - python - kross - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 + 2021-04-21 + 0.6.2 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - ktp-accounts-kcm - https://projects.kde.org/projects/extragear/network/telepathy/ktp-accounts-kcm + mate-common + http://www.mate-desktop.org - Alihan Öztürk - alihan@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPLv2 - app - desktop.kde.applications - KCM Module for configuring Telepathy Instant Messaging Accounts - KCM Module for configuring Telepathy Instant Messaging Accounts - mirrors://kde/stable/release-service/22.04.1/src/ktp-accounts-kcm-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-imageformats - kcmutils-devel - kio-devel - ki18n-devel - kwidgetsaddons-devel - kcodecs-devel - kcoreaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kitemviews-devel - telepathy-qt5-devel - kaccounts-integration-devel - libaccounts-qt5-devel - solid-devel - kservice-devel - libaccounts-glib-devel - intltool - kaccounts-providers - telepathy-haze - telepathy-gabble - signon-devel - ktp-common-internals-devel - gettext-devel - - desktop/kde/applications/ktp-accounts-kcm/pspec.xml + GPLv3+ + library + desktop.mate + Common files for development of Mate packages + Mate uygulamalarının geliştirmede kullandığı yaygın dosyalar + maate-common package contains aclocal macros, makefile headers and documents tools in order to build Mate sources. + mate-common, MATE ortamı için autoconf, automake ve libtool uzantısıdır. + http://pub.mate-desktop.org/releases/1.26/mate-common-1.26.0.tar.xz + desktop/mate/mate-common/pspec.xml - ktp-accounts-kcm - - ki18n - libgcc - signon - kcodecs - qt5-base - kcoreaddons - telepathy-qt5 - libaccounts-qt5 - kaccounts-integration - + mate-common - /usr/bin - /etc - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/locale /usr/share/man - /usr/share/info /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-26 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-05-23 - 16.04.0 - >Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-30 - 15.12.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - okteta - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.sdk - Hexadecimal editor for binary files - Onaltılık dosya editörü. - Okteta is a simple editor for the raw data of files. This type of program is also called hexadecimal editor or binary editor. - Çalıştırılabilir dosyaları düzenlemeye yarayan editör. - https://download.kde.org/stable/okteta/0.26.7/src/okteta-0.26.7.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-designer-devel - qt5-script-devel - qt5-declarative-devel - kbookmarks-devel - kcodecs-devel - kcompletion-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - kiconthemes-devel - ki18n-devel - kcmutils-devel - kio-devel - knewstuff-devel - kparts-devel - kservice-devel - kwidgetsaddons-devel - kxmlgui-devel - qca2-qt5-devel - attica-devel - qt5-xmlpatterns-devel - - desktop/kde/applications/okteta/pspec.xml - - - okteta - - kio - ki18n - kparts - kcrash - kcodecs - kconfig - kxmlgui - kcmutils - kservice - qca2-qt5 - qt5-base - knewstuff - qt5-script - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - kconfigwidgets - kwidgetsaddons - - - /etc/xdg /usr/bin - /usr/lib/plugins - /usr/lib - /usr/lib/*.so - /usr/lib/*.so.* - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/config.kcfg - /usr/share/doc - /usr/share/icons - /usr/share/kxmlgui5 - /usr/share/mime - /usr/share/okteta - /usr/share/metainfo/org.kde.okteta.appdata.xml - /usr/share/locale - - - - okteta-devel - Development files for okteta - - okteta - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/mate-common - - 2022-05-17 - 0.26.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 0.26.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 0.26.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 0.26.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 0.26.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 0.26.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 0.26.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 0.26.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 0.26.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 0.26.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 0.26.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 0.26.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-20 - 0.26.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 0.26.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 0.26.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 0.26.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 0.26.1 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 0.26.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-12 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-12 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 17.12.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-04-25 - 17.12.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - 2016-10-20 - 16.08.1 + 2021-09-07 + 1.26.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-07-31 - 16.04.3 + 2020-06-29 + 1.25.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-05-19 - 16.04.0 + 2020-04-03 + 1.24.1 Version bump. - Burak Ertürk - burakerturk@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-03-20 - 15.12.3 + 2020-02-13 + 1.22.2 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - cantor - http://edu.kde.org/cantor + mate-control-center + http://www.mate-desktop.org - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv2+ + LGPLv2+ app:gui - desktop.kde.edu - A KDE frontend to mathematical softwares - Matematiksel uygulamalar için bir KDE önyüzü - Cantor is an application that lets you use your favorite mathematical applications from within a nice KDE-integrated Worksheet Interface. It offers assistant dialogs for common tasks and allows you to share your worksheets with others. - Cantor; Sage, Maxima, R and KAlgebra gibi uygulamalara arayüz sağlayarak kullanımı kolaylaştırmayı amaçlar. Çok kullanılan işler için dialoglar sağlar ve çalışmalarınızı başkalarıyla paylaşabilmenize olanak tanır. - cantor - mirrors://kde/stable/release-service/22.04.1/src/cantor-22.04.1.tar.xz + desktop.mate + The MATE Desktop configuration tool + Mate yapılandırma araçları + mate-control-center is Mate's main interface for configuration of various aspects of your Mate desktop. + mate-control-center Mate masaüstünüzün çeşitli ayarlarını değiştiren, Mate'in ana arayüzüdür. + preferences-desktop + http://pub.mate-desktop.org/releases/1.26/mate-control-center-1.26.0.tar.xz - extra-cmake-modules - qt5-base-devel - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-mysql - qt5-sql-postgresql - qt5-assistant-devel - mesa-devel - qt5-svg-devel - qt5-xmlpatterns-devel - qt5-webengine-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - ktexteditor-devel - knewstuff-devel - kpty-devel - analitza-devel - libqalculate-devel - cln-devel - libspectre-devel - python-devel - python3-devel - R-devel - luajit-devel - syntax-highlighting-devel - poppler-qt5-devel - karchive-devel + itstool + intltool + gtk3-devel + libSM-devel + dconf-devel + polkit-devel + librsvg-devel + dbus-glib-devel + libcanberra-devel + desktop-file-utils + libXScrnSaver-devel + libappindicator-devel + accountsservice-devel + libcanberra-gtk3-devel + marco-devel + mate-common + mate-menus-devel + libmatekbd-devel + mate-desktop-devel + mate-settings-daemon-devel - desktop/kde/applications/cantor/pspec.xml + desktop/mate/mate-control-center/pspec.xml - cantor + mate-control-center - R - cln - kio - kpty - ki18n - kparts - kcrash - libgcc - python - luajit - python3 - kconfig - kxmlgui - analitza - karchive - kservice - libspectre - knewstuff - kcompletion - kcoreaddons - kiconthemes - ktexteditor - ktextwidgets - libqalculate - kconfigwidgets - kwidgetsaddons - qt5-base - qt5-xmlpatterns + atk + gtk3 + marco + libXi + libSM + polkit + libICE + librsvg + glib2 + cairo + pango + libX11 + libxml2 + freetype + dbus-glib + dconf + harfbuzz + mate-menus + fontconfig + libXcursor + gdk-pixbuf + libmatekbd + libxklavier + libcanberra + mate-desktop + libXScrnSaver + libappindicator + accountsservice + libcanberra-gtk3 + startup-notification - /etc - /usr/share /usr/lib /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - - cantor-devel - Development files for cantor - cantor için geliştirme dosyaları - - cantor - - - /usr/include - /usr/share/kde5/apps/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-17 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kontactinterface - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - Kontact Plugin Interface Library - This library provides the glue necessary for application "Parts" to be embedded as a Kontact component (or plugin). - mirrors://kde/stable/release-service/22.04.1/src/kontactinterface-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - kcoreaddons-devel - kparts-devel - kwindowsystem-devel - ki18n-devel - kxmlgui-devel - kiconthemes-devel - - desktop/kde/applications/kontactinterface/pspec.xml - - - kontactinterface - - qt5-base - kio - kparts - libgcc - kxmlgui - kcoreaddons - kiconthemes - kwindowsystem - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kontactinterface-devel - Development files for kontactinterface - - qt5-base-devel - kontactinterface - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akregator - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - A KDE blogging client - Akregator helps you to keep informed about new stories on websites like KDE Dot News and Planet KDE blogs. The technology used is RSS and many sites support it. - http://download.kde.org/stable/release-service/22.04.1/src/akregator-22.04.1.tar.xz - - boost-devel - extra-cmake-modules - kblog-devel - kdesignerplugin - kdoctools-devel - kio-devel - ktexteditor-devel - python-devel - qt5-base-devel - qt5-webengine-devel - grantlee-qt5-devel - kcmutils-devel - knotifyconfig-devel - akonadi-mime-devel - akonadi-devel - kitemmodels-devel - grantleetheme-devel - kcontacts-devel - kontactinterface-devel - libkdepim-devel - akonadi-contacts-devel - libkleo-devel - gpgme-devel - gpgme-qt5-devel - messagelib-devel - pimcommon-devel - kimap-devel - kmime-devel - cyrus-sasl-devel - kpimtextedit-devel - ksyndication-devel - ffmpeg-devel - knotifyconfig-devel - knotifications-devel - kuserfeedback-devel - libXScrnSaver-devel - - desktop/kde/applications/akregator/pspec.xml - - - akregator - A Feed Reader by KDE - - kio - ki18n - kcrash - kparts - libgcc - kcodecs - kconfig - kxmlgui - kcmutils - kservice - qt5-base - libkdepim - pimcommon - messagelib - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - kpimtextedit - ksyndication - ktextwidgets - grantleetheme - knotifyconfig - qt5-webengine - kconfigwidgets - knotifications - kwidgetsaddons - kontactinterface - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-09 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-08 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kontact - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPL2 - desktop.kde.applications - KDE Personal Information Manager - Kontact is the integrated Personal Information Manager of KDE, but can be used with other systems as well. -It supports email, address books, calendars, tasks, news feeds and much more. - http://download.kde.org/stable/release-service/22.04.1/src/kontact-22.04.1.tar.xz - - boost-devel - extra-cmake-modules - kdoctools-devel - kontactinterface-devel - mailcommon-devel - qt5-base-devel - qt5-webengine-devel - kdbusaddons-devel - kcmutils-devel - kpimtextedit-devel - akonadi-devel - kitemmodels-devel - kparts-devel - akonadi-mime-devel - messagelib-devel - kmime-devel - pimcommon-devel - kcontacts-devel - akonadi-contacts-devel - kimap-devel - cyrus-sasl-devel - kidentitymanagement-devel - libkleo-devel - gpgme-devel - grantlee-qt5-devel - grantleetheme-devel - libkdepim-devel - ffmpeg-devel - libXScrnSaver-devel - kguiaddons-devel - - desktop/kde/applications/kontact/pspec.xml - - - kontact - KDE Personal Information Manager - - kio - ki18n - kcrash - kparts - libgcc - kconfig - kxmlgui - kcmutils - kservice - qt5-base - libkdepim - kguiaddons - kcompletion - kcoreaddons - kiconthemes - grantleetheme - kwindowsystem - qt5-webengine - kconfigwidgets - kwidgetsaddons - kontactinterface - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-09 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-26 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kjumpingcube - https://www.kde.org/applications/games/kjumpingcube/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Territory capture game - Alan kapma oyunu - KJumpingCube is a simple tactical game. - KJumpingCube basit bir taktik oyunudur. - kjumpingcube - mirrors://kde/stable/release-service/22.04.1/src/kjumpingcube-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/applications/kjumpingcube/pspec.xml - - - kjumpingcube - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /etc/xdg/kjumpingcube.categories - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libksane - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - SANE library interface for KDE - KDE için SANE kitaplık arayüzü - libksane is a SANE library interface for KDE. - libksane, KDE için bir SANE kitaplık arayüzüdür. - mirrors://kde/stable/release-service/22.04.1/src/libksane-22.04.1.tar.xz - - ki18n-devel - kwallet-devel - qt5-base-devel - ktextwidgets-devel - sane-backends-devel - kwidgetsaddons-devel - extra-cmake-modules - - desktop/kde/applications/libksane/pspec.xml - - - libksane - - ki18n - kwallet - libgcc - qt5-base - ktextwidgets - sane-backends - kwidgetsaddons - - - /usr/lib - /usr/share/icons - /usr/share/locale - - - - libksane-devel - Development files for libksane - libksane için geliştirme dosyaları - - libksane - - - /usr/lib/cmake - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kapman - https://www.kde.org/applications/games/kapman/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Pac-Man clone - Pac-Man klonu - Kapman is a clone of the well known game Pac-Man. You must go through the levels escaping ghosts in a maze. You lose a life when a ghost eats you, but you can eat the ghosts for a few seconds when eating an energizer. - Kapman dünyaca ünlü Pac-Man'in bir türevidir. Labirent içinde hayaletlerle köşe kapmaca oynayarak bölümleri geçmeye çalıştığınız oyunda eğer hayaletlere yakalanırsanız bir hakkınızı kaybediyorsunuz. Eğer bir enerji nesnesi alırsanız bu kez siz bir kaç saniyeliğine hayaletleri yiyebiliyorsunuz. - kapman - mirrors://kde/stable/release-service/22.04.1/src/kapman-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwindowsystem-devel - ki18n-devel - kinit-devel - kunitconversion-devel - kitemmodels-devel - kemoticons-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - kdesignerplugin - libkdegames-devel - qt5-declarative-devel - - desktop/kde/applications/kapman/pspec.xml - - - kapman - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-text-ui - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - Telepathy handler for Text Chats - Telepathy handler for Text Chats - mirrors://kde/stable/release-service/22.04.1/src/ktp-text-ui-22.04.1.tar.xz - - extra-cmake-modules - karchive-devel - sonnet-devel - kwidgetsaddons-devel - kservice-devel - kemoticons-devel - kio-devel - kpeople-devel - kcmutils-devel - knotifyconfig-devel - knotifications-devel - ki18n-devel - kdewebkit-devel - kwindowsystem-devel - kxmlgui-devel - kitemviews-devel - ktextwidgets-devel - kiconthemes-devel - kdbusaddons-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - ffmpeg-devel - libXScrnSaver-devel - qt5-speech-devel - qt5-location-devel - qt5-webkit-devel - qt5-base-devel - qt5-webengine-devel - - desktop/kde/applications/ktp-text-ui/pspec.xml - - - ktp-text-ui - Telepathy handler for Text Chats - - kio - ki18n - libgcc - sonnet - kconfig - kxmlgui - kpeople - karchive - kcmutils - kservice - qt5-base - qt5-speech - kdewebkit - kemoticons - kitemviews - qt5-webkit - qt5-webengine - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - knotifyconfig - kwindowsystem - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/lib - /usr/share - /usr/share/ktelepathy - /usr/share/ktp-log-viewer - /usr/share/kxmlgui5 - /usr/share/telepathy - /usr/share/dbus-1 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdepim-addons - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.applications - Addons for the KDE PIM apllications - Addons for the KDE PIM apllications - mirrors://kde/stable/release-service/22.04.1/src/kdepim-addons-22.04.1.tar.xz - - akonadi-calendar-devel - akonadi-devel - akonadi-notes-devel - akonadi-import-wizard-devel - boost-devel - calendarsupport-devel - cyrus-sasl-devel - eventviews-devel - extra-cmake-modules - glibc-devel - grantleetheme-devel - incidenceeditor-devel - kholidays-devel - kcalutils-devel - kconfig-devel - kpkpass-devel - kitinerary-devel - kdeclarative-devel - kdesignerplugin - kdoctools-devel - ki18n-devel - ktnef-devel - kxmlgui-devel - libgravatar-devel - libical-devel - libkdepim-devel - libkgapi-devel - libkleo-devel - mailcommon-devel - mailimporter-devel - messagelib-devel - pimcommon-devel - python-devel - qt5-base-devel - qt5-declarative-devel - qt5-webengine-devel - kio-devel - kmime-devel - kcodecs-devel - kcalendarcore-devel - kservice-devel - kcontacts-devel - kitemviews-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - akonadi-mime-devel - kpimtextedit-devel - ktextwidgets-devel - kconfigwidgets-devel - kmailtransport-devel - kwidgetsaddons-devel - akonadi-contacts-devel - kidentitymanagement-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kimap-devel - gpgme-devel - gpgme-qt5-devel - kdiagram-devel - grantlee-qt5-devel - libksieve-devel - prison-devel - syntax-highlighting-devel - kparts-devel - kaddressbook-devel - kontactinterface-devel - kguiaddons-devel - - desktop/kde/applications/kdepim-addons/pspec.xml - - - kdepim-addons - Addons for the KDE PIM apllications - - akonadi - akonadi-calendar - akonadi-notes - prison - calendarsupport - eventviews - grantleetheme - incidenceeditor - kcalutils - kholidays - kconfig - kpkpass - kdeclarative - gpgme-qt5 - kitinerary - ki18n - ktnef - kxmlgui - libgcc - libgravatar - libkdepim - libkleo - mailcommon - messagelib - pimcommon - qt5-base - qt5-declarative - qt5-webengine - kio - kmime - kcodecs - kcalendarcore - kservice - kcontacts - kitemviews - kcompletion - kcoreaddons - kiconthemes - akonadi-mime - kpimtextedit - ktextwidgets - kconfigwidgets - kmailtransport - kwidgetsaddons - akonadi-contacts - kidentitymanagement - gpgme - kjobwidgets - grantlee-qt5 - kimap - libksieve - kitemmodels - mailimporter - syntax-highlighting - akonadi-import-wizard - kontactinterface - kaddressbook - kguiaddons - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - kde-baseapps - - - kde-baseapps - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-07 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-10 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-08 - 16.08.3 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kig - https://www.kde.org/applications/education/kig/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An interactive geometry application - Bir etkileşimli geometri uygulaması - Kig is an application for interactive geometry. - Kig, bir etkileşimli geometri uygulamasıdır. - kig - mirrors://kde/stable/release-service/22.04.1/src/kig-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - boost-devel - ktexteditor-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - qt5-xmlpatterns-devel - gettext-devel - pkgconfig - kcrash-devel - karchive-devel - extra-cmake-modules - - desktop/kde/applications/kig/pspec.xml - - - kig - - qt5-base - boost - kcrash - ktexteditor - qt5-xmlpatterns - qt5-svg - ki18n - kparts - ktexteditor - kiconthemes - kconfigwidgets - karchive - kxmlgui - kitemmodels - libgcc - kservice - kcompletion - kcoreaddons - kwidgetsaddons - kconfig - - - /usr/lib - /usr/lib/qt5 - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gpgmepp - https://projects.kde.org/gpgmepp - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - desktop.kde.applications - C++ bindings/wrapper for gpgme - gpgme için C++ bağlayıcısı - C++ bindings/wrapper for gpgme - gpgme için C++ bağlayıcısı - https://github.com/KDE/gpgmepp/archive/v16.08.3.tar.gz - - boost-devel - qt5-base-devel - gpgme-devel - extra-cmake-modules - - desktop/kde/applications/gpgmepp/pspec.xml - - - gpgmepp - - libgcc - qt5-base - gpgme - - - /usr/lib /usr/share/doc - - - - gpgmepp-devel - - gpgmepp - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-07 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-20 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-04 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-18 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-14 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-11 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 16.08.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-18 - 16.08.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-18 - 16.08.3 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-08 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdegraphics-mobipocket - https://www.kde.org/applications/graphics/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.applications - A collection of plugins to handle mobipocket files - A library to handle mobipocket files - A collection of plugins to handle mobipocket files - A library to handle mobipocket files - http://download.kde.org/stable/release-service/22.04.1/src/kdegraphics-mobipocket-22.04.1.tar.xz - - extra-cmake-modules - kio-devel - qt5-base-devel - - desktop/kde/applications/kdegraphics-mobipocket/pspec.xml - - - kdegraphics-mobipocket - A collection of plugins to handle mobipocket files - - kio - qt5-base - - - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - kdegraphics-mobipocket-devel - Development headers for kdegraphics-mobipocket - - kdegraphics-mobipocket - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-19 - 16.12.0 - Rebuild. - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - signon-kwallet-extension - http://kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app - desktop.kde.network - KWallet signon extension - KWallet signon extension - mirrors://kde/stable/release-service/22.04.1/src/signon-kwallet-extension-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kwallet-devel - signon-devel - - desktop/kde/applications/signon-kwallet-extension/pspec.xml - - - signon-kwallet-extension - KWallet signon extension - - libgcc - signon - kwallet - qt5-base - - - /usr/lib/signon - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - messagelib - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - KDE PIM library providing support for mail applications - KDE PIM library providing support for mail applications - mirrors://kde/stable/release-service/22.04.1/src/messagelib-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - boost-devel - kdoctools-devel - mailimporter-devel - libgravatar-devel - kidentitymanagement-devel - kmailtransport-devel - kmbox-devel - akonadi-devel - solid-devel - kguiaddons-devel - kitemmodels-devel - qt5-webkit-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalendarcore-devel - kdewebkit-devel - akonadi-calendar-devel - akonadi-search-devel - syntax-highlighting-devel - kpimtextedit-devel - kimap-devel - kldap-devel - grantleetheme-devel - pimcommon-devel - libkleo-devel - libkdepim-devel - gpgme-devel - gpgme-qt5-devel - grantlee-qt5-devel - qt5-declarative-devel - qt5-webengine-devel - qca2-qt5-devel - akonadi-notes-devel - akonadi-mime-devel - akonadi-contacts-devel - openldap-client - cyrus-sasl-devel - karchive-devel - kcodecs-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kitemviews-devel - kjobwidgets-devel - kservice-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - sonnet-devel - knewstuff-devel - syntax-highlighting - knotifications-devel - - desktop/kde/applications/messagelib/pspec.xml - - - messagelib - - qt5-base - qt5-webengine - akonadi-notes - libgcc - libkdepim - mailimporter - kio - ki18n - kmbox - kmime - sonnet - akonadi - gpgme - kcodecs - kconfig - kxmlgui - libkleo - karchive - kguiaddons - kcalendarcore - kservice - kcontacts - kdewebkit - pimcommon - akonadi-mime - kitemviews - qt5-webkit - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - libgravatar - grantlee-qt5 - kpimtextedit - ktextwidgets - grantleetheme - kwindowsystem - akonadi-search - kconfigwidgets - kmailtransport - knotifications - kwidgetsaddons - syntax-highlighting - akonadi-contacts - knewstuff - kidentitymanagement - qca2-qt5 - knotifications - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - messagelib-devel - Development files for messagelib - - messagelib - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-26 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkgeomap - https://www.kde.org/applications/graphics/ - - Alihan Öztürk - alihan@pisilinux.org - - FDL-1.1 - GPLv2 - LGPLv2 - app:gui - desktop.kde.graphics - A wrapper around world map components for browsing and arranging photos on a map. - A wrapper around world map components for browsing and arranging photos on a map. - mirrors://kde/stable/release-service/20.08.3/src/libkgeomap-20.08.3.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-webkit-devel - qt5-webengine-devel - ki18n-devel - kconfig-devel - kio-devel - ktextwidgets-devel - marble-devel - - desktop/kde/applications/libkgeomap/pspec.xml - - - libkgeomap - A wrapper around world map components for browsing and arranging photos on a map. - - kio - ki18n - libgcc - marble - kconfig - qt5-base - qt5-webkit - kcoreaddons - - - /usr/lib - /usr/share/libkgeomap - /usr/share/doc - /usr/share/locale - - - - libkgeomap-devel - Developments files for libkgeomap. - - libkgeomap - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.08.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-09 - 16.04.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kcalutils - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - The KDE calendar utility library - Calendar utility library for KDE - mirrors://kde/stable/release-service/22.04.1/src/kcalutils-22.04.1.tar.xz - - qt5-base-devel - kcalendarcore-devel - kidentitymanagement-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kidentitymanagement-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin - grantlee-qt5-devel - kdoctools-devel - kiconthemes-devel - extra-cmake-modules - - desktop/kde/applications/kcalutils/pspec.xml - - - kcalutils - - qt5-base - kcalendarcore - kidentitymanagement - ki18n - libgcc - kcodecs - kconfig - grantlee-qt5 - kcoreaddons - kiconthemes - kwidgetsaddons - kidentitymanagement - - - /etc/xdg - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/kcalendar - /usr/share/locale - /usr/share - - - - kcalutils-devel - Development files for kcalutils - - qt5-base-devel - kcalutils - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kaccounts-integration - https://projects.kde.org/projects/kdereview/kaccounts-integration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - mirrors://kde/stable/release-service/22.04.1/src/kaccounts-integration-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcmutils-devel - ki18n-devel - kcoreaddons-devel - kdbusaddons-devel - libaccounts-qt5-devel - libaccounts-glib-devel - signon-devel - gettext-devel - kdoctools-devel - kdeclarative-devel - kio-devel - kconfig-devel - kwallet-devel - - desktop/kde/applications/kaccounts-integration/pspec.xml - - - kaccounts-integration - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - - ki18n - libgcc - signon - qt5-base - kcoreaddons - kdbusaddons - kdeclarative - kconfigwidgets - libaccounts-qt5 - qt5-declarative - kio - kconfig - kwallet - - - /usr/share - /usr/share/kservices5 - /usr/share/doc - /usr/lib/qt5 - /usr/lib/libkaccounts.so* - - - - kaccounts-integration-devel - Development files for kaccounts-integration - - kaccounts-integration - libaccounts-qt5-devel - - - /usr/include - /usr/lib/cmake/KAccounts - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - step - http://kde.org/applications/education/step/ - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.edu - Interactive Physical Simulator - Step is an interactive physical simulator. It allows you to explore the physical world through simulations. - mirrors://kde/stable/release-service/22.04.1/src/step-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel - extra-cmake-modules - kdoctools-devel - kdelibs4-support-devel - mesa-devel - khtml-devel - kconfig-devel - knewstuff-devel - kplotting-devel - eigen3 - pkgconfig - libqalculate-devel - cln-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - qt5-linguist - gsl-devel - - desktop/kde/applications/step/pspec.xml - - - step - - qt5-base - cln - gsl - khtml - knewstuff - kplotting - libqalculate - kparts - kio - libgcc - kdelibs4-support - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - kconfigwidgets - kwidgetsaddons - kservice - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-04 - 19.08.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktuberling - http://kde.org/applications/games/ktuberling/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - A simple constructor game suitable for children and adults alike - KTuberling a simple constructor game suitable for children and adults alike. The idea of the game is based around a once popular doll making concept. - mirrors://kde/stable/release-service/22.04.1/src/ktuberling-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - qt5-multimedia-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kwidgetsaddons-devel - kwindowsystem-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/applications/ktuberling/pspec.xml - - - ktuberling - A simple constructor game suitable for children and adults alike - - kio - ki18n - kcrash - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - qt5-multimedia - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/ktuberling - /usr/share/metainfo - /usr/share/kxmlgui5 - /usr/share/doc - /usr/share/locale - /usr/share/qlogging-categories5 - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - killbots - https://www.kde.org/applications/games/killbots/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Run for your life - Hayatta kalmak için kaçın - Killbots is a simple game of evading killer robots. Who created the robots and why they have been programmed to destroy, no one knows. All that is known is that the robots are numerous and their sole objective is to destroy you. - Killbots katil robotlardan kaçmaya çalıştığınız basit bir oyundur. Robotların kimin tarafından yaratıldığı veya neden yok etmek için programlandığı bilinmiyor. Tek gerçek şu ki bir çok robot var ve tek amaçları sizi yok etmek. - killbots - mirrors://kde/stable/release-service/22.04.1/src/killbots-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - kcompletion-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/killbots/pspec.xml - - - killbots - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-send-file - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - A File manager plugin to launch a file transfer job with a specified contact - A File manager plugin to launch a file transfer job with a specified contact - mirrors://kde/stable/release-service/22.04.1/src/ktp-send-file-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcmutils-devel - kio-devel - kwallet-devel - kiconthemes-devel - ki18n-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/applications/ktp-send-file/pspec.xml - - - ktp-send-file - A File manager plugin to launch a file transfer job with a specified contact - - kio - ki18n - kwallet - libgcc - qt5-base - kcoreaddons - kiconthemes - telepathy-qt5 - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/share - /usr/share/kservices5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-desktop-applets - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - The KDE-Telepathy Plasma desktop applets - The KDE-Telepathy Plasma desktop applets - mirrors://kde/stable/release-service/22.04.1/src/ktp-desktop-applets-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kwindowsystem-devel - plasma-framework-devel - - desktop/kde/applications/ktp-desktop-applets/pspec.xml - - - ktp-desktop-applets - The KDE-Telepathy Plasma desktop applets - - libgcc - qt5-base - kwindowsystem - qt5-declarative - - - /usr/lib - /usr/share - /usr/share/plasma - /usr/share/kservices5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi-mime - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Libraries and daemons to implement basic email handling - Libraries and daemons to implement basic email handling - mirrors://kde/stable/release-service/22.04.1/src/akonadi-mime-22.04.1.tar.xz - - qt5-base-devel - boost-devel - ki18n-devel - kdoctools-devel - kitemmodels-devel - gettext-devel - akonadi-devel - extra-cmake-modules - kxmlgui-devel - libxslt-devel - extra-cmake-modules - kmime-devel - kio-devel - shared-mime-info - - desktop/kde/applications/akonadi-mime/pspec.xml - - - akonadi-mime - - qt5-base - ki18n - akonadi - libgcc - kio - kmime - kconfig - kxmlgui - kcoreaddons - kdbusaddons - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - akonadi-mime-devel - Development files for akonadi-mime - - qt5-base-devel - akonadi-mime - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-17 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - First Release. - Stefan Gronewold - groni@pisilinux.org - - - - - - dolphin - https://projects.kde.org/projects/kde/applications/dolphin - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.applications - KDE File Manager - Dolphin is the File Manager for KDE. - mirrors://kde/stable/release-service/22.04.1/src/dolphin-22.04.1.tar.xz - - baloo-devel - baloo-widgets-devel - kfilemetadata-devel - extra-cmake-modules - kactivities-devel - kbookmarks-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - knewstuff-devel - knotifications-devel - kparts-devel - ktextwidgets-devel - solid-devel - qt5-base-devel - qt5-phonon-devel - kio-extras-devel - libxml2-devel - docbook-xsl - kuserfeedback-devel - - - dolphin-17.04.0-allow-root.patch - - desktop/kde/applications/dolphin/pspec.xml - - - dolphin - - qt5-base - kfilemetadata - baloo - baloo-widgets - knewstuff - kio - ki18n - solid - kparts - libgcc - kcodecs - kcrash - kconfig - kxmlgui - kcmutils - kservice - kbookmarks - kitemviews - qt5-phonon - kactivities - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - dolphin-devel - - dolphin - qt5-base-devel - qt5-phonon-devel - kio-devel - kcmutils-devel - knewstuff-devel - kinit-devel - kactivities-devel - baloo-devel - baloo-widgets-devel - kfilemetadata-devel - kparts-devel - ktexteditor-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - - - /usr/include - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-13 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - klines - https://www.kde.org/applications/games/klines/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Kolor Lines - Renkli çizgiler - Kolor Lines is a simple but highly addictive, one player game for KDE. Kolor Lines has been inspired by well known game of Color Lines. The goal of Kolor Lines is quite plain. The player has to move the colored balls around the game board, gathering them into the lines of the same color by five. - Kolor Lines basit ama bağımlılık yapıcı bir oyundur. Dünyaca ünlü Color Lines'tan esinlenilen oyunda amacınız aynı renkli toplardan beş tanesini yan yana getirmektir. - klines - mirrors://kde/stable/release-service/22.04.1/src/klines-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kservice-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knewstuff-devel - libkdegames-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/klines/pspec.xml - - - klines - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - partitionmanager - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.applications - KDE Partition Manager is a utility program to help you manage the disk devices, partitions and file systems on your computer - KDE Disk Bölümü Yöneticisi - It allows you to easily create, copy, move, delete, resize without losing data, backup and restore partitions.. - KDE Disk Bölümü Yöneticisi, disklerinizi, bölümlerinizi ve dosya sistemlerinizi yönetmenize izin verir. Birçok dosya sistemini (ext2/3/4, reiserfs, NTFS, FAT32 ve daha fazlası) desteklemenin yanı sıra, yeni bölüm oluşturabilir ya da var olan bir bölüm üzerinde boyutlandırma, kopyalama, taşıma, yedekleme ve geri yükleme işlemlerini yapabilir. - mirrors://kde/stable/release-service/22.04.1/src/partitionmanager-22.04.1.tar.xz - - qt5-base-devel - libatasmart-devel - extra-cmake-modules - parted-devel - libutil-linux-devel - ki18n-devel - kio-devel - kconfig-devel - kxmlgui-devel - kservice-devel - kcoreaddons-devel - kiconthemes-devel - kjobwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kdoctools-devel - kpmcore-devel - e2fsprogs-devel - kdbusaddons-devel - polkit-qt-devel - elogind-devel - - desktop/kde/applications/partitionmanager/pspec.xml - - - partitionmanager - - qt5-base - libgcc - libutil-linux - kio - ki18n - kconfig - kxmlgui - kservice - kcoreaddons - kiconthemes - kjobwidgets - kconfigwidgets - kwidgetsaddons - kpmcore - kcrash - e2fsprogs - kdbusaddons - polkit-qt - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 4.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 4.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 4.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 4.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 4.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-18 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-14 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 3.3.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-03 - 3.3.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-19 - 3.3.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-09 - 3.2.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 3.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 3.1.0 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 3.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-15 - 2.2.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-12 - 2.2.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-23 - 2.1.0 - Release bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-01-17 - 2.1.0 - First Release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kteatime - http://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - Timer for making tea. - Çay yapma zamanlayıcısı. - KTeaTime is a handy timer for steeping tea. No longer will you have to guess at how long it takes for your tea to be ready. - Kteatime çay yapmak için kullanışlı bir uygulamadır. Kteatime ile çay demlemek için ne kadar beklemek gerektiğini düşünmenize gerek kalmaz. - mirrors://kde/stable/release-service/22.04.1/src/kteatime-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - kcrash-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - knotifyconfig-devel - knotifications-devel - kwidgetsaddons-devel - ktextwidgets-devel - kxmlgui-devel - - desktop/kde/applications/kteatime/pspec.xml - - - kteatime - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kiconthemes - ktextwidgets - knotifyconfig - kconfigwidgets - knotifications - - - /usr/bin - /usr/doc - /usr/share - - - kdetoys - - - kdetoys - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksquares - https://www.kde.org/applications/games/ksquares/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Connect the dots to create squares - Noktaları birleştirerek kare yapma oyunu - KSquares is a fun and exciting game that modeled after the well known pen and paper based game of Dots and Boxes. - KSquares sıkıcı derslerin kurtarıcısı, eğlenceli ve heyecanlı kare yapma oyununun KDE sürümüdür. - ksquares - mirrors://kde/stable/release-service/22.04.1/src/ksquares-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/ksquares/pspec.xml - - - ksquares - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - khangman - https://www.kde.org/applications/education/khangman/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - KHangMan is a game for kids based on the well-known hangman game - Adam asmaca oyununun çocuklar için uyarlanmış, öğretici versiyonu - KHangMan is a game based on the well-known hangman game. It is aimed at children aged six and over. The game has several categories of words to play with, for example: Animals (animals words) and three difficulty categories: Easy, Medium and Hard. - KHangman, adam asmaca olarak bilinen oyunun 6 yaş ve üzeri için uyarlanmış bir uygulamasıdır. Oynamak için seçilebilecek değişik kategoriler ve 3 farklı zorluk seviyesi bulunuyor. - khangman - mirrors://kde/stable/release-service/22.04.1/src/khangman-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kcrash-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - knotifications-devel - kxmlgui-devel - kwidgetsaddons-devel - kio-devel - qt5-svg-devel - qt5-linguist - qt5-declarative-devel - libkeduvocdocument-devel - extra-cmake-modules - - desktop/kde/applications/khangman/pspec.xml - - - khangman - - qt5-base - kdeclarative - knewstuff - ki18n - kwidgetsaddons - kconfig - kcoreaddons - kxmlgui - qt5-declarative - libkeduvocdocument - libgcc - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-10 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwalletmanager - https://userbase.kde.org/KDE_Wallet_Manager - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A wallet management tool - KWalletManager is a tool to manage the passwords on your system. By using the KDE wallet subsystem it not only allows you to keep your own secrets but also to access and manage the passwords of every application that integrates with the wallet. - kwallet - mirrors://kde/stable/release-service/22.04.1/src/kwalletmanager-22.04.1.tar.xz - - qt5-base - kdoctools-devel - cmake - extra-cmake-modules - kcoreaddons-devel - kauth-devel - kwallet-devel - kservice-devel - kcmutils-devel - karchive-devel - ki18n-devel - kxmlgui-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - mesa-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - ktextwidgets-devel - kiconthemes-devel - knotifications-devel - - desktop/kde/applications/kwalletmanager/pspec.xml - - - kwalletmanager - - qt5-base - kcmutils - kauth - ki18n - kio - kjobwidgets - libgcc - kcodecs - kconfig - kwallet - kxmlgui - karchive - kservice - kitemviews - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons - - - /etc/dbus-1/system.d/org.kde.kcontrol.kcmkwallet5.conf - /etc/xdg - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/bin - /usr/share - /usr/share/icons - /usr/share/applications - /usr/share/polkit-1/actions/org.kde.kcontrol.kcmkwallet5.policy - /usr/share/dbus-1/system-services/org.kde.kcontrol.kcmkwallet5.service - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kfind - http://kde.org/applications/utilities/kfind/ - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.utils - Find Files/Folders - Find Files/Folders - mirrors://kde/stable/release-service/22.04.1/src/kfind-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - glibc-devel - karchive-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdelibs4-support-devel - kdoctools-devel - python-devel - kfilemetadata-devel - qt5-base-devel - - desktop/kde/applications/kfind/pspec.xml - - - kfind - Find Files/Folders - - karchive - kdelibs4-support - libgcc - qt5-base - kio - ki18n - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kjobwidgets - kconfigwidgets - kfilemetadata - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - /usr/share/man/man1 - - - kde-baseapps - - - kde-baseapps - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-19 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-03 - 16.11.90 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kmahjongg - https://www.kde.org/applications/games/kmahjongg/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Mahjongg Solitaire - Mahjongg oyunu - KMahjongg is a fun board game created after the famous oriental game of Mahjong. Unlike the original however, KMahjongg is a tile matching game for one or two players, a variation usually known as Mahjong Solitaire. - Mahjong Solitaire oyununa benzer KMahjongg bir veya iki oyuncunun birlekte oynayabileceği bir parça eşleştirme oyunudur. - kmahjongg - mirrors://kde/stable/release-service/22.04.1/src/kmahjongg-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdeclarative-devel - kdoctools-devel - kcompletion-devel - knewstuff-devel - kxmlgui-devel - libkdegames-devel - libkmahjongg-devel - kcompletion-devel - qt5-declarative-devel - - desktop/kde/applications/kmahjongg/pspec.xml - - - kmahjongg - - ki18n - kcrash - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - libkmahjongg - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /etc/xdg/kmahjongg.categories - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-26 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libksieve - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.applications - KDE PIM library for managing sieves. - KDE PIM library for managing sieves. - mirrors://kde/stable/release-service/22.04.1/src/libksieve-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - qt5-webkit-devel - pimcommon-devel - kcontacts-devel - kcalendarcore-devel - kimap-devel - kmime-devel - cyrus-sasl-devel - knewstuff-devel - kidentitymanagement-devel - kmailtransport-devel - libkdepim-devel - qt5-webengine-devel - akonadi-contacts-devel - akonadi-mime-devel - kiconthemes-devel - karchive-devel - syntax-highlighting-devel - - desktop/kde/applications/libksieve/pspec.xml - - - libksieve - KDE PIM library for managing sieves. - - kio - ki18n - kmime - libgcc - sonnet - akonadi - kconfig - karchive - qt5-base - knewstuff - libkdepim - pimcommon - cyrus-sasl - qt5-webkit - kcompletion - kcoreaddons - kiconthemes - kpimtextedit - kwindowsystem - kconfigwidgets - kwidgetsaddons - kidentitymanagement - syntax-highlighting - qt5-webengine - - - /etc - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/sieve - /usr/share/doc/HTML - /usr/share/kservices5 - /usr/share/locale - - - - libksieve-devel - Development files for libksieve. - - libksieve - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-07 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-22 - 16.04.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - akonadi-calendar - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Akonadi calendar integration - Calendar integration for Akonadi. - mirrors://kde/stable/release-service/22.04.1/src/akonadi-calendar-22.04.1.tar.xz - - qt5-base-devel - ki18n-devel - kcodecs-devel - kdoctools-devel - boost-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmailtransport-devel - akonadi-devel - extra-cmake-modules - kdesignerplugin - akonadi-mime-devel - kmime-devel - cyrus-sasl-devel - kcontacts-devel - kidentitymanagement-devel - kcalendarcore-devel - kcalutils-devel - akonadi-contacts-devel - prison-devel - grantleetheme-devel - grantlee-qt5-devel - knotifications-devel - - desktop/kde/applications/akonadi-calendar/pspec.xml - - - akonadi-calendar - - qt5-base - ki18n - kcodecs - kio - kmime - libgcc - kconfig - kxmlgui - kcalendarcore - kcalutils - kcontacts - akonadi - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets - kconfigwidgets - kmailtransport - kwidgetsaddons - kidentitymanagement - akonadi-mime - akonadi-contacts - prison - knotifications - grantleetheme - grantlee-qt5 - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/bin - - - - akonadi-calendar-devel - Development files for akonadi-calendar - - qt5-base-devel - akonadi-calendar - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-16 - 17.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-02 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dragonplayer - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.multimedia - Multimedia player - a multimedia player where the focus is on simplicity, instead of features. - mirrors://kde/stable/release-service/22.04.1/src/dragon-22.04.1.tar.xz - - qt5-base-devel - qt5-phonon-devel - kdoctools-devel - kio-devel - kcrash-devel - kparts-devel - docbook-xsl - kdbusaddons-devel - knotifications-devel - extra-cmake-modules - - desktop/kde/applications/dragonplayer/pspec.xml - - - dragonplayer - - qt5-base - qt5-phonon - kio - ki18n - solid - libgcc - kcrash - kconfig - kxmlgui - kservice - qt5-phonon - kcoreaddons - kdbusaddons - kjobwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kparts - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - konversation - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.applications - A user friendly IRC client for KDE - Konversation is a user-friendly Internet Relay Chat (IRC) client built on the KDE Platform. - mirrors://kde/stable/konversation/1.7.7/src/konversation-1.7.7.tar.xz - - qt5-base-devel - qt5-phonon-devel - extra-cmake-modules - kdoctools-devel - kitemviews-devel - kbookmarks-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kemoticons-devel - ki18n-devel - kidletime-devel - knotifyconfig-devel - kio-devel - kparts-devel - solid-devel - sonnet-devel - kwallet-devel - kwidgetsaddons-devel - kglobalaccel-devel - kdbusaddons-devel - knotifications-devel - kwindowsystem-devel - kiconthemes-devel - karchive-devel - qca2-qt5-devel - python3-devel - gettext-devel - docbook-xsl - kcrash-devel - - desktop/kde/applications/konversation/pspec.xml - - - konversation - - qt5-base - qca2-qt5 - kemoticons - kidletime - knotifyconfig - kparts - kio - kcrash - libgcc - ki18n - sonnet - kcodecs - kconfig - kwallet - kxmlgui - karchive - kservice - kbookmarks - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2022-05-17 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 1.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 1.7.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 1.7.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 1.7.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 1.7.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-07 - 1.7.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-17 - 1.7.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-05-10 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 1.6.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-28 - 1.6.0 - Release bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-05-08 - 1.6.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - kaddressbook - https://kontact.kde.org/ - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - KDE contact manager - Kişilerinizi kolayca yönetin - KAddressBook reborn to make your data available to all your applications - KAddressBook, kişilerinizi kolayca yönetmenizi sağlar. Bir e-posta gönderirken veya bir toplantı daveti oluştururken kolayca kişileri seçmenize olanak tanıyan Kontact'ın geri kalanıyla derinlemesine entegre edilmiştir. - mirrors://kde/stable/release-service/22.04.1/src/kaddressbook-22.04.1.tar.xz - - kinit-devel - kimap-devel - kparts-devel - kcrash-devel - prison-devel - akonadi-devel - libkleo-devel - kcmutils-devel - qt5-base-devel - libkdepim-devel - pimcommon-devel - kdoctools-devel - kemoticons-devel - mailcommon-devel - messagelib-devel - kdbusaddons-devel - cyrus-sasl-devel - kitemmodels-devel - grantlee-qt5-devel - akonadi-mime-devel - kpimtextedit-devel - grantleetheme-devel - extra-cmake-modules - akonadi-search-devel - kunitconversion-devel - kontactinterface-devel - akonadi-contacts-devel - kidentitymanagement-devel - kuserfeedback-devel - gpgme-devel - gpgme-qt5-devel - - desktop/kde/applications/kaddressbook/pspec.xml - - - kaddressbook - KDE contact manager - - ki18n - kcrash - kparts - libgcc - akonadi - kconfig - kxmlgui - kcmutils - qt5-base - kcontacts - libkdepim - pimcommon - kcompletion - kcoreaddons - kiconthemes - kitemmodels - grantleetheme - akonadi-search - kconfigwidgets - kwidgetsaddons - akonadi-contacts - kontactinterface - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - kaddressbook-devel - Development files for kaddressbook - - kaddressbook - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-06 - 18.12.3 - Fix Dependency. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-09 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-04 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-07 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - akonadi-contacts - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Libraries and daemons to implement Contact Management in Akonadi. - Libraries and daemons to implement Contact Management in Akonadi. - mirrors://kde/stable/release-service/22.04.1/src/akonadi-contacts-22.04.1.tar.xz - - qt5-base-devel - qt5-webengine-devel - libical-devel - ki18n-devel - prison-devel - gettext-devel - kdoctools-devel - boost-devel - akonadi-devel - extra-cmake-modules - kdesignerplugin - kmime-devel - kcontacts-devel - kcalendarcore-devel - kitemmodels-devel - kemoticons-devel - kinit-devel - ktextwidgets-devel - kiconthemes-devel - grantleetheme-devel - kunitconversion-devel - grantlee-qt5-devel - kcmutils-devel - - desktop/kde/applications/akonadi-contacts/pspec.xml - - - akonadi-contacts - - qt5-base - ki18n - kcodecs - kmime - kio - akonadi - prison - libgcc - kconfig - kxmlgui - kjobwidgets - kservice - kcmutils - kcompletion - kcontacts - qt5-webengine - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - grantlee-qt5 - grantleetheme - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - akonadi-contacts-devel - Development files for akonadi-contacts - - qt5-base-devel - akonadi-contacts - grantleetheme-devel - grantlee-qt5-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - First Release. - Stefan Gronewold - groni@pisilinux.org - - - - - - kdegraphics-svgpart - https://www.kde.org/applications/graphics/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.applications - A KPart for viewing SVGs - A KPart for viewing SVGs - mirrors://kde/stable/release-service/22.04.1/src/svgpart-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - glibc-devel - kcoreaddons-devel - kparts-devel - python-devel - qt5-base-devel - qt5-svg-devel - - desktop/kde/applications/kdegraphics-svgpart/pspec.xml - - - kdegraphics-svgpart - A KPart for viewing SVGs - - kcoreaddons - kparts - qt5-base - qt5-svg - ki18n - libgcc - kxmlgui - kconfigwidgets - - - /usr/share - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-08 - 16.11.90 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kdf - https://utils.kde.org/projects/kdf/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.applications - View Disk Usage - KDiskFree displays the available file devices (hard drive partitions, floppy and CD drives, etc.) along with information on their capacity, free space, type and mount point. It also allows you to mount and unmount drives and view them in a file manager. - http://download.kde.org/stable/release-service/22.04.1/src/kdf-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - glibc-devel - kcmutils-devel - kconfigwidgets-devel - kcoreaddons-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - knotifications-devel - kwidgetsaddons-devel - kxmlgui-devel - qt5-base-devel - - desktop/kde/applications/kdf/pspec.xml - - - kdf - View Disk Usage - - kcmutils - kconfigwidgets - kcoreaddons - ki18n - kiconthemes - kio - knotifications - kxmlgui - qt5-base - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-30 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - libkcddb - https://projects.kde.org/projects/kde/kdemultimedia/audiocd-kio - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.multimedia - KDE library for CDDB (Compact Disc Database) - CDDB için KDE kitaplığı (Compact Disc Database) - KDE library for CDDB (Compact Disc Database). - CDDB için KDE kitaplığı (Compact Disc Database). - mirrors://kde/stable/release-service/22.04.1/src/libkcddb-22.04.1.tar.xz - - extra-cmake-modules - musicbrainz5-devel - kdoctools-devel - kconfig-devel - kcodecs-devel - ki18n-devel - kio-devel - qt5-base-devel - kwidgetsaddons-devel - - desktop/kde/applications/libkcddb/pspec.xml - - - libkcddb - - kio - ki18n - libgcc - kcodecs - kconfig - qt5-base - kcoreaddons - musicbrainz5 - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/kservices5 - /usr/share/config.kcfg - /usr/lib - /usr/share/doc - /usr/include - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.11.80 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-09 - 16.08.1 - First release - Alihan Öztürkr - alihan@pisilinux.org - - - - - - ffmpegthumbs - https://projects.kde.org/projects/kde/kdemultimedia/ffmpegthumbs - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.multimedia - ffmpeg based thumbnailer for KDE - KDE için ffmpeg tabanlı önizleme - FFmpeg-based thumbnail creator for video files - Video dosyaları için FFmpeg tabanlı önizleme oluşturur. - mirrors://kde/stable/release-service/22.04.1/src/ffmpegthumbs-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kio-devel - ki18n-devel - kconfig-devel - taglib-devel - ffmpeg-devel - - desktop/kde/applications/ffmpegthumbs/pspec.xml - - - ffmpegthumbs - - kio - ki18n - kconfig - ffmpeg - taglib - libgcc - qt5-base - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - pim-sieve-editor - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Mail sieve editor - Mail sieve editor - https://download.kde.org/stable/release-service/22.04.1/src/pim-sieve-editor-22.04.1.tar.xz - - extra-cmake-modules - kbookmarks-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - kiconthemes-devel - kio-devel - kmailtransport-devel - kpimtextedit-devel - messagelib-devel - pimcommon-devel - qt5-base-devel - akonadi-mime-devel - akonadi-devel - kitemmodels-devel - kmime-devel - cyrus-sasl-devel - kcontacts-devel - akonadi-contacts-devel - kimap-devel - libksieve-devel - ffmpeg-devel - kuserfeedback-devel - libXScrnSaver-devel - qt5-keychain-devel - - desktop/kde/applications/pim-sieve-editor/pspec.xml - - - pim-sieve-editor - Mail sieve editor - - ki18n - kcrash - libgcc - kconfig - kwallet - kxmlgui - qt5-base - libksieve - pimcommon - kbookmarks - kcoreaddons - kdbusaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - qt5-keychain - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 3.1.0 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-04 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - pim-data-exporter - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Import and export KDE PIM settings - Import and export KDE PIM settings - https://download.kde.org/stable/release-service/22.04.1/src/pim-data-exporter-22.04.1.tar.xz - - extra-cmake-modules - kcrash-devel - kdbusaddons-devel - kdoctools-devel - akonadi-contacts-devel - akonadi-devel - akonadi-mime-devel - calendarsupport-devel - kalarm - kcalendarcore-devel - kcontacts-devel - kmailtransport-devel - kpimtextedit-devel - qt5-base-devel - ktextwidgets-devel - kxmlgui-devel - kitemmodels-devel - boost-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kmime-devel - kidentitymanagement-devel - akonadi-calendar-devel - kholidays-devel - mailcommon-devel - messagelib-devel - pimcommon-devel - kimap-devel - cyrus-sasl-devel - libkleo-devel - gpgme-devel - gpgme-qt5-devel - libkdepim-devel - ffmpeg-devel - karchive-devel - akonadi-notes-devel - libXScrnSaver-devel - knotifications-devel - kuserfeedback-devel - - desktop/kde/applications/pim-data-exporter/pspec.xml - - - pim-data-exporter - Import and export KDE PIM settings - - kio - ki18n - kmime - kcrash - libgcc - akonadi - kconfig - kxmlgui - karchive - qt5-base - kalarm - kcontacts - libkdepim - pimcommon - kitemviews - mailcommon - messagelib - kcoreaddons - kdbusaddons - kpimtextedit - kconfigwidgets - kmailtransport - knotifications - kwidgetsaddons - kidentitymanagement - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 3.1.0 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-05 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kmbox - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - MBox library support. - MBox library support. - mirrors://kde/stable/release-service/22.04.1/src/kmbox-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kmime-devel - boost-devel - kcodecs-devel - - desktop/kde/applications/kmbox/pspec.xml - - - kmbox - - qt5-base - kmime - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmbox-devel - Development files for kmbox - - qt5-base-devel - kmbox - - - /etc/xdg - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-24 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 16.12.0 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kbruch - https://www.kde.org/applications/education/kbruch/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - Practice calculating with fractions and percentages - Ondalık ve kesirli sayılarla pratik yapın - KBruch is a small program to practice calculating with fractions and percentages. Different exercises are provided for this purpose and you can use the learning mode to practice with fractions. The program checks the user's input and gives feedback. - KBruch, ondalık ve kesirli sayılar üzerine işlemleri öğrenmeye ve egzersiz yapmaya yarayan bir uygulamadır. - kbruch - mirrors://kde/stable/release-service/22.04.1/src/kbruch-22.04.1.tar.xz - - qt5-base - kdoctools-devel - kconfig-devel - kcrash-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kcoreaddons-devel - kconfigwidgets-devel - extra-cmake-modules - - desktop/kde/applications/kbruch/pspec.xml - - - kbruch - - qt5-base - kxmlgui - kconfig - kcrash - ki18n - libgcc - kwidgetsaddons - kcoreaddons - kconfigwidgets - - - /usr/bin - /usr/share - /usr/share/man/man1 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kfourinline - https://www.kde.org/applications/games/kfourinline/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Four in a row board game - Bir satırda dört tahta oyunu - KFourInLine is a board game for two players based on the Connect-Four game. - KFourInLine iki kişiyle oynanan Hedef 4 türevi bir oyundur. - kfourinline - mirrors://kde/stable/release-service/22.04.1/src/kfourinline-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kitemmodels-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kcompletion-devel - kxmlgui-devel - kdnssd-devel - kio-devel - knotifyconfig-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - libkdegames-devel - - desktop/kde/applications/kfourinline/pspec.xml - - - kfourinline - - ki18n - kdnssd - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcompletion - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmime - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - KDE library for handling mail messages and newsgroup articles. - Kmime library for handling mail messages and newsgroup articles. - mirrors://kde/stable/release-service/22.04.1/src/kmime-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - boost-devel - ki18n-devel - kcodecs-devel - kdoctools-devel - - desktop/kde/applications/kmime/pspec.xml - - - kmime - - qt5-base - ki18n - kcodecs - libgcc - - - /usr/share - /usr/share/locale - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kmime-devel - Development files for kmime - - qt5-base-devel - kmime - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - grantleetheme - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.applications - Library for Grantlee theming support - Library for Grantlee theming support - mirrors://kde/stable/release-service/22.04.1/src/grantleetheme-22.04.1.tar.xz - - qt5-base-devel - boost-devel - ki18n-devel - kiconthemes-devel - extra-cmake-modules - kguiaddons-devel - grantlee-qt5-devel - knewstuff-devel - - desktop/kde/applications/grantleetheme/pspec.xml - - - grantleetheme - - qt5-base - ki18n - libgcc - kconfig - kxmlgui - knewstuff - kguiaddons - kcoreaddons - kiconthemes - grantlee-qt5 - kwidgetsaddons - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/mkspecs/ + /usr/share/omf /usr/bin /usr/share/mime + /usr/share/mate + /usr/sbin + /usr/share/help + /etc/xdg/menus /usr/share/icons - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/dbus-1 - /usr/share/config.kcfg - /usr/share/kf5 - /usr/share/config - /usr/share/akonadi - /usr/share - /usr/share/akonadicontact/grantleetheme/default - /usr/share/locale - - - - grantleetheme-devel - Development package for grantleetheme libraries - Contains development tools and header files for grantleetheme - - qt5-base-devel - boost-devel - ki18n-devel - grantleetheme - - - /usr/lib/cmake - /usr/include - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kanagram - https://www.kde.org/applications/education/kanagram/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A letter order game - Bir harf sıralama oyunu - Kanagram is a game based on anagrams of words: the puzzle is solved when the letters of the scrambled word are put back in the correct order. There is no limit on either time taken, or the amount of attempts to solve the word. - Kanagram, anagramlar üzerine bir oyundur. Dağınık yerleştirilmiş harfleri birleştirerek kelimeyi bulun. Zaman veya deneme sınırı yoktur. - kanagram - mirrors://kde/stable/release-service/22.04.1/src/kanagram-22.04.1.tar.xz - - qt5-base-devel - qt5-declarative - kdoctools-devel - knewstuff-devel - kdeclarative-devel - ki18n-devel - kio-devel - kcrash-devel - sonnet-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kxmlgui - kwidgetsaddons-devel - extra-cmake-modules - libkeduvocdocument-devel - qt5-multimedia-devel - - desktop/kde/applications/kanagram/pspec.xml - - - kanagram - - ki18n - libgcc - sonnet - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdeclarative - qt5-multimedia - kconfigwidgets - qt5-declarative - libkeduvocdocument - - - /etc/xdg - /usr/share - /usr/bin - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcharselect - http://utils.kde.org/projects/kcharselect - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A character selector - Bir karakter seçici - KCharSelect is a tool to select special characters from all installed fonts and copy them into the clipboard. - KCharSelect, tüm yüklü yazı tiplerinden özel karakterleri seçmek ve bunları panoya yapıştırmak için bir araçtır. - kcharselect - mirrors://kde/stable/release-service/22.04.1/src/kcharselect-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - kbookmarks-devel - cmake - extra-cmake-modules - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kcrash-devel - mesa-devel - - desktop/kde/applications/kcharselect/pspec.xml - - - kcharselect - - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kcrash - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-09 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpmcore - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.applications - Library for managing partitions. - Library for managing partitions. - mirrors://kde/stable/release-service/22.04.1/src/kpmcore-22.04.1.tar.xz - - ntfs-3g - udftools - ntfsprogs - fatresize - exfat-utils - dosfstools - reiserfsprogs - smartmontools - xfsprogs-devel - qt5-base-devel - libatasmart-devel - extra-cmake-modules - parted-devel - libutil-linux-devel - ki18n-devel - kio-devel - kconfig-devel - kxmlgui-devel - kservice-devel - kcoreaddons-devel - kiconthemes-devel - kjobwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kdoctools-devel - kwidgetsaddons-devel - qca2-qt5-devel - polkit-devel - elogind-devel - polkit-qt-devel - jfsutils - f2fs-tools - nilfs-utils-devel - e2fsprogs-devel - - desktop/kde/applications/kpmcore/pspec.xml - - - kpmcore - - kio - ki18n - kauth - ntfs-3g - qca2-qt5 - fatresize - udftools - fatresize - ntfsprogs - exfat-utils - dosfstools - reiserfsprogs - smartmontools - xfsprogs - kwidgetsaddons - libgcc - parted - kservice - qt5-base - kcoreaddons - kiconthemes - libatasmart - libutil-linux - polkit-qt - jfsutils - f2fs-tools - nilfs-utils - e2fsprogs - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - kpmcore-devel - Development files for kpmcore - - kpmcore - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 4.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 4.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 4.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-20 - 4.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 4.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-17 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-14 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-11 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 3.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-12-19 - 3.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-09 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-17 - 3.1.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-30 - 3.1.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-12 - 2.9.91 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-13 - 2.9.91 - Version bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-10-12 - 2.1.1 - Release bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-01-17 - 2.1.1 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-01-17 - 2.1.1 - First Release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - krdc - http://www.kde.org/applications/internet/krdc/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.kde.applications - Remote Desktop Client - Uzak masaüstü bağlantı istemcisi. - KRDC is a client application that allows you to view or even control the desktop session on another machine that is running a compatible server. VNC and RDP is supported. - krdc, uzaktaki bir masaüstü oturumunu görüntülemenizi ve kontrol etmenizi sağlar. RDP kullanan Windows Terminal Sunucuları'na ve VNC/RFB kullanan diğer pek çok platforma bağlanabilirç - mirrors://kde/stable/release-service/22.04.1/src/krdc-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kconfig-devel - kcmutils-devel - kdnssd-devel - knotifyconfig-devel - knotifications-devel - kbookmarks-devel - kiconthemes-devel - kxmlgui-devel - kcompletion-devel - kwallet-devel - kwidgetsaddons-devel - ki18n-devel - libvncserver-devel - kdoctools-devel - kwindowsystem-devel - libssh-devel - freerdp-devel - libvncserver-devel - - desktop/kde/applications/krdc/pspec.xml - - - krdc - - ki18n - kdnssd - libgcc - libssh - kconfig - kwallet - kxmlgui - kcmutils - kservice - qt5-base - kbookmarks - kcompletion - kcoreaddons - libvncserver - knotifyconfig - kconfigwidgets - knotifications - kwindowsystem - kwidgetsaddons - - - /usr/bin - /usr/lib - /usr/lib/qt5 + /usr/share/glib-2.0 + /usr/share/polkit-1 + /usr/share/thumbnailers + /usr/share/mate-time-admin /usr/share/applications - /usr/share/config.kcfg - /usr/share/krdc - /usr/share/kxmlgui5 - /usr/share/kservices5 - /usr/share/metainfo - /usr/share/kservicetypes5 - /usr/share/qlogging-categories5 - /usr/share/doc /usr/share/locale + /usr/share/desktop-directories + /usr/share/mate-control-center - krdc-devel + mate-control-center-devel - krdc + gtk3-devel + glib2-devel + librsvg-devel + mate-menus-devel + mate-desktop-devel + mate-control-center /usr/include - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ktnef - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - API for handling TNEF data - The API permits access to the actual attachments, the message properties (TNEF/MAPI), and allows one to view/extract message formatted text in Rich Text Format format. - mirrors://kde/stable/release-service/22.04.1/src/ktnef-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcalendarcore-devel - kcalutils-devel - kcontacts-devel - - desktop/kde/applications/ktnef/pspec.xml - - - ktnef - - qt5-base - kcalutils - ki18n - libgcc - kcalendarcore - kcontacts - - - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - - - - ktnef-devel - Development files for ktnef - - qt5-base-devel - ktnef - - - /etc/xdg - /usr/include - /usr/lib/cmake /usr/lib/pkgconfig - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2016-10-22 - 16.08.2 + 2021-09-07 + 1.26.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-10-20 - 16.08.1 + 2021-02-17 + 1.25.1 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-07-31 - 16.04.3 + 2020-06-29 + 1.25.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-05-19 - 16.04.0 + 2020-03-31 + 1.24.0 Version bump. - Burak Ertürk - burakerturk@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-03-20 - 15.12.3 + 2020-02-13 + 1.22.2 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - bovo - https://www.kde.org/applications/games/bovo/ + mate-desktop + http://www.mate-desktop.org - Alihan Öztürk - alihan@pisilinux.org + Ayhan Yalçınsoy + Ayhan Yalçınsoy - GPLv3 + MIT + GPLv2+ + LGPLv2+ app:gui - desktop.kde.games - A Gomoku like game for two players. - Bovo is a Gomoku like game for two players, where the opponents alternate in placing their respective pictogram on the game board. - bovo - mirrors://kde/stable/release-service/22.04.1/src/bovo-22.04.1.tar.xz + desktop.mate + Basic Mate libraries and dialogs + Mate masaüstü + mate-desktop contains basic Mate libraries and information applications. + mate-desktop, Mate kullanıcı ortamının paylaşımlı bileşenlerini içeren temel pakettir. + desktop + http://pub.mate-desktop.org/releases/1.26/mate-desktop-1.26.0.tar.xz - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kxmlgui-devel - kdoctools-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel + gtk-doc + intltool + iso-codes + python-six + gtk3-devel + dconf-devel + mate-common + libX11-devel + librsvg-devel + iso-codes-devel + libXrandr-devel + gdk-pixbuf-devel + startup-notification-devel + gobject-introspection-devel - desktop/kde/applications/bovo/pspec.xml + desktop/mate/mate-desktop/pspec.xml - bovo + mate-desktop - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons + atk + gtk3 + dconf + glib2 + cairo + pango + libX11 + libXrandr + gdk-pixbuf + startup-notification + network-manager-applet + /usr/lib + /usr/share/man /usr/bin - /usr/share - /usr/share/appdata + /usr/share/help + /usr/share/glib-2.0 + /usr/share/gir-1.0 /usr/share/icons - /usr/share/kxmlgui5 + /usr/share/doc + /usr/share/mate-about + /usr/share/backgrounds /usr/share/applications - /usr/share/bovo + /usr/share/locale + /usr/share/libmate-desktop + + + System.Package + + + + mate-desktop-devel + + gtk3-devel + dconf-devel + startup-notification-devel + mate-desktop + + + /usr/include + /usr/lib/pkgconfig + + + + mate-desktop-doc + mate-desktop için döküman belgeleri. + mate-desktop için döküman belgeleri. + + mate-desktop + + + /usr/share/gtk-doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-14 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-icon-theme + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + data + desktop.mate + Mate icon theme + Mate simge teması + mate-icon-theme package contains the default icon theme used by the Mate desktop. + mate-icon-theme paketi, Mate masaüstü tarafından kullanılan öntanımlı simge temasını içerir. + https://pub.mate-desktop.org/releases/1.26/mate-icon-theme-1.26.0.tar.xz + + intltool + mate-common + icon-naming-utils-devel + + desktop/mate/mate-icon-theme/pspec.xml + + + mate-icon-theme + + mate-common + icon-naming-utils + + /usr/share/doc + /usr/share/icons + /usr/share/locale - org.kde.bovo.desktop + 16x16.png + 22x22.png + 24x24.png + 32x32.png + 48x48.png + 16x16.png + 22x22.png + 24x24.png + 32x32.png + 48x48.png + scalable.svg - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - 2016-10-20 - 16.08.1 + 2021-09-07 + 1.26.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-07-31 - 16.04.3 + 2020-06-29 + 1.24.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 + 2020-03-01 + 1.24.0 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - poxml - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.sdk - Tools for translating DocBook XML files with Gettex - DocBook XML dosyalarını çevirme araçları. - This is a collection of tools that facilitate translating DocBook XML files using Gettext message files (PO files). - poxml, DocBook XML dosyalarını (.po) Gettext yarımıyla çevirmeyi sağlayan bir programdır. - https://download.kde.org/stable/release-service/22.04.1/src/poxml-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - gettext-devel - kdoctools-devel - docbook-xsl - - desktop/kde/applications/poxml/pspec.xml - - - poxml - - libgcc - gettext - qt5-base - - - /usr/bin - /usr/share/doc - /usr/share/man - - - kdesdk - - - kdesdk - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-03-20 - 15.12.3 + 2013-09-10 + 1.6.2 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - artikulate - https://projects.kde.org/projects/kde/kdeedu/artikulate + mate-indicator-applet + http://www.mate-desktop.org - Osman Erkan - osman.erkan@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPLv2 - LGPLv3 - FDLv1.2 - app:gui - desktop.kde.edu - Improve your pronunciation by listening to native speakers - Artikulate, Improve your pronunciation by listening to native speakers. - artikulate - mirrors://kde/stable/release-service/22.04.1/src/artikulate-22.04.1.tar.xz - - boost-devel - cmake - extra-cmake-modules - kdoctools-devel - ki18n - kcrash-devel - libgcc - kconfig-devel - kirigami-devel - kxmlgui-devel - qt5-base-devel - knewstuff-devel - kcoreaddons-devel - kdeclarative-devel - qt5-gstreamer-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - qt5-multimedia-devel - - desktop/kde/applications/artikulate/pspec.xml - - - artikulate - - ki18n - kcrash - kirigami - libgcc - kconfig - kxmlgui - karchive - qt5-base - knewstuff - kcoreaddons - kdeclarative - qt5-gstreamer - kconfigwidgets - kwidgetsaddons - qt5-declarative - qt5-xmlpatterns - qt5-multimedia - - - /etc - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kleopatra - https://www.kde.org/applications/utilities/kleopatra/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - FDL-1.1 - LGPLv2 - app:gui - desktop.kde.applications - Certificate Manager and Unified Crypto GUI - Kleopatra is a certificate manager and a universal crypto GUI. It supports managing X.509 and OpenPGP certificates in the GpgSM keybox and retrieving certificates from LDAP servers. - mirrors://kde/stable/release-service/22.04.1/src/kleopatra-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcodecs-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kdbusaddons-devel - kcmutils-devel - libkleo-devel - kdoctools-devel - kmime-devel - libassuan-devel - gpgme-devel - gpgme-qt5-devel - kitemmodels-devel - ktextwidgets-devel - knotifications-devel - - desktop/kde/applications/kleopatra/pspec.xml - - - kleopatra - Certificate Manager and Unified Crypto GUI - - gpgme - ki18n - kmime - libgcc - kconfig - kxmlgui - libkleo - kcmutils - qt5-base - libassuan - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - libgpg-error - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-09 - 16.04.0 - Firs release - Alihan Öztürk - alihan@pisilinux.org - - - - - - minuet - https://minuet.kde.org - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.applications - A KDE Software for Music Education - Music education Free Software, thoughtfully designed to push your musical skills to the next level. Enhance your ability to recognize intervals, chords, rhythm, and scales while enjoying all the power of Free Software. - https://download.kde.org/stable/release-service/22.04.1/src/minuet-22.04.1.tar.xz - - extra-cmake-modules - qt5-svg-devel - qt5-base-devel - qt5-quickcontrols2-devel - qt5-declarative-devel - ki18n-devel - kxmlgui-devel - kio-devel - kcrash-devel - kdoctools-devel - alsa-lib-devel - drumstick-devel - fluidsynth-devel - - desktop/kde/applications/minuet/pspec.xml - - - minuet - A KDE Software for Music Education - - kio - ki18n - kcrash - libgcc - kconfig - kxmlgui - alsa-lib - qt5-base - kcompletion - kcoreaddons - drumstick-libs - kconfigwidgets - kwidgetsaddons - fluidsynth - qt5-svg - qt5-declarative - - - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/doc - /usr/share/icons - /usr/share/kxmlgui5 - /usr/share/minuet - /usr/lib - - - - minuet-devel - Development files for minuet - - qt5-base-devel - minuet - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-26 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-04-20 - 16.04 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kgeography - https://www.kde.org/applications/education/kgeography/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - KGeography is a geography learning tool - Bir coğrafya uygulaması - KGeography is a geography learning tool, which allows you to learn about the political divisions of some countries (divisions, capitals of those divisions and their associated flags if there are some). - KGeography, ülkeler hakkında çeşitli bilgiler sunan bir coğrafya uygulamasıdır. - kgeography - https://download.kde.org/stable/release-service/22.04.1/src/kgeography-22.04.1.tar.xz - - qt5-base-devel - kconfig-devel - kcrash-devel - kdoctools-devel - kxmlgui-devel - kwidgetsaddons-devel - kcoreaddons-devel - ki18n-devel - kitemviews-devel - kiconthemes-devel - kservice-devel - kconfigwidgets-devel - extra-cmake-modules - - desktop/kde/applications/kgeography/pspec.xml - - - kgeography - - qt5-base - libgcc - kcrash - kconfig - kxmlgui - kwidgetsaddons - kcoreaddons - ki18n - kitemviews - kiconthemes - kconfigwidgets - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkcompactdisc - https://www.kde.org/applications/multimedia/ - - Stefan Gronewold - groni@pisilinux.org - - GPL - LGPL - FDL + GPLv3 + LGPLv2+ library - desktop.kde.applications - A library for interfacing with CDs - A library for interfacing with CDs - mirrors://kde/stable/release-service/22.04.1/src/libkcompactdisc-22.04.1.tar.xz + desktop.mate + A small applet to display information from various applications consistently in the panel. + A small applet to display information from various applications consistently in the panel. The indicator applet exposes Ayatana Indicators in the MATE Panel. + http://pub.mate-desktop.org/releases/1.26/mate-indicator-applet-1.26.0.tar.xz - alsa-lib-devel - extra-cmake-modules - gettext-devel - glibc-devel - kcoreaddons-devel - ki18n-devel - qt5-base-devel - solid-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - qt5-phonon-devel - - desktop/kde/applications/libkcompactdisc/pspec.xml - - - libkcompactdisc - A library for interfacing with CDs - - alsa-lib - kcoreaddons - ki18n - qt5-base - libgcc - qt5-phonon - solid - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/share/locale - - - - libkcompactdisc-devel - Development files for libkcompactdisc - - libkcompactdisc - qt5-base-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.11.80 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-09 - 16.08.2_20161106 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - ktimer - http://kde.org/applications/utilities/ktimer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A countdown launcher - A countdown launcher - KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. - KTimer is a little tool to execute programs after some time. It allows you to enter several tasks and to set a timer for each of them. The timers for each task can be started, stopped, changed, or looped. - ktimer - mirrors://kde/stable/release-service/22.04.1/src/ktimer-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - kwidgetsaddons-devel - kio-devel - kiconthemes-devel - kdbusaddons-devel - knotifications-devel - mesa-devel - - desktop/kde/applications/ktimer/pspec.xml - - - ktimer - - qt5-base - kio - ki18n - libgcc - kconfig - kcoreaddons - kdbusaddons - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi-calendar-tools - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - CLI tools to manage akonadi calendars - CLI tools to manage akonadi calendars - http://download.kde.org/stable/release-service/22.04.1/src/akonadi-calendar-tools-22.04.1.tar.xz - - boost-devel - akonadi-devel - akonadi-calendar-devel - extra-cmake-modules - kdesignerplugin - kdoctools-devel - qt5-base-devel - kcompletion-devel - kxmlgui-devel - kitemmodels-devel - kcontacts-devel - kcalendarcore-devel - kdelibs4-support-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - akonadi-contacts-devel - kcalutils-devel - libkdepim-devel - calendarsupport-devel - kmime-devel - kidentitymanagement-devel - akonadi-notes-devel - - desktop/kde/applications/akonadi-calendar-tools/pspec.xml - - - akonadi-calendar-tools - CLI tools to manage akonadi calendars - - ki18n - libgcc - akonadi - kconfig - kcalendarcore - qt5-base - kcalutils - kcoreaddons - calendarsupport - akonadi-calendar - kdelibs4-support - akonadi-notes - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-14 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-31 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kipi - https://github.com/KDE/kipi-plugins - - Ali Algul - aligulle3801@gmail.com - - GPLv1 - app - desktop.kde.applications - A collection of plugins extending the KDE graphics and image applications - A collection of plugins extending the KDE graphics and image applications - A collection of plugins extending the KDE graphics and image applications - A collection of plugins extending the KDE graphics and image applications - https://download.kde.org/stable/release-service/22.04.1/src/kipi-plugins-22.04.1.tar.xz - - libkipi-devel - kcompletion-devel - libmediawiki-devel - libkvkontakte-devel - extra-cmake-modules - karchive-devel - kconfig-devel - ki18n-devel - kio-devel - kwindowsystem-devel - kxmlgui-devel - qt5-base-devel - qt5-svg-devel - qt5-xmlpatterns-devel - qt5-webengine-devel - - desktop/kde/applications/kipi/pspec.xml - - - kipi - - kio - libgcc - kconfig - kxmlgui - libkipi - karchive - kcompletion - libmediawiki - libkvkontakte - qt5-base - kcoreaddons - kwindowsystem - kconfigwidgets - qt5-xmlpatterns - ki18n - qt5-webengine - - - /usr/lib - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 5.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 5.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-14 - 5.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 5.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 5.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-11 - 5.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 5.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 5.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 5.9.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-10 - 5.9.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-15 - 5.8.0 - First release. - Ali Algul - aligulle3801@gmail.com - - - - - - pim-storage-service-manager - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - KDE PIM storage services configuration UI - KDE PIM storage services configuration UI - mirrors://kde/stable/applications/16.12.0/src/pim-storage-service-manager-16.12.0.tar.xz - - extra-cmake-modules - kcrash-devel - kdbusaddons-devel - kdoctools-devel - akonadi-contacts-devel - akonadi-devel - akonadi-mime-devel - calendarsupport-devel - kalarm - kcalendarcore-devel - kcontacts-devel - kmailtransport-devel - kpimtextedit-devel - libkdepim - qt5-base-devel - ktextwidgets-devel - kxmlgui-devel - kitemmodels-devel - boost-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kmime-devel - kidentitymanagement-devel - akonadi-calendar-devel - kholidays-devel - mailcommon-devel - messagelib-devel - pimcommon-devel - kimap-devel - cyrus-sasl-devel - libkleo-devel - gpgme-devel - libkdepim-devel - knotifyconfig-devel - knotifications-devel - - desktop/kde/applications/pim-storage-service-manager/pspec.xml - - - pim-storage-service-manager - KDE PIM storage services configuration UI - - ki18n - kcrash - libgcc - kconfig - kxmlgui - qt5-base - libkdepim - pimcommon - kcoreaddons - kdbusaddons - kpimtextedit - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - knotifications - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2020-02-02 - 16.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 16.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 16.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 16.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-14 - 16.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-11 - 16.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 16.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-18 - 16.12.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-01-04 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kdeaudio-thumbnailer - https://github.com/eplightning/audiothumbs-frameworks - - Stefan Gronewold - groni@pisilinux.org - - LGPL - desktop.kde.applications - Thumbnail generator for audio files, ported to KF5 - Thumbnail generator for audio files, ported to KF5 - https://github.com/groni/Sources/raw/master/kde-audio-thumbnailer-1.1.0.tar.gz - - extra-cmake-modules - flac-devel - glibc-devel - qt5-base-devel - taglib-devel - kio-devel - - desktop/kde/applications/kdeaudio-thumbnailer/pspec.xml - - - kdeaudio-thumbnailer - Thumbnail generator for audio files, ported to KF5 - - kio - libgcc - qt5-base - taglib - - - /usr/share - /usr/lib/qt5 - - - - - 2022-05-17 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-09-15 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-18 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-12 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-12 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 1.1.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-03 - 1.1.0 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2017-06-30 - 1.1.0 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-11-20 - 1.1.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - ark - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - desktop.kde.utils - KDE Archiving Tool - Ark is a program for managing various archive formats within the KDE environment. - mirrors://kde/stable/release-service/22.04.1/src/ark-22.04.1.tar.xz - - qt5-base-devel - rar - lzop - unrar - p7zip - xz-devel - lzo-devel - zlib-devel - zstd-devel - kparts-devel - libzip-devel - karchive-devel - kconfig-devel - kcrash-devel - kio-devel - kpty-devel - khtml-devel - xz-devel - kdbusaddons-devel - kdoctools-devel - docbook-xsl - libarchive-devel - extra-cmake-modules - kitemmodels-devel - - desktop/kde/applications/ark/pspec.xml - - - ark - - qt5-base - zlib - libzip - libarchive - karchive - kcrash - kconfig - kio - unrar - kpty - khtml - ki18n - libgcc - kxmlgui - kservice - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - kwidgetsaddons - kparts - kconfigwidgets - kitemmodels - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/locale - /usr/lib - /usr/share/icons - /usr/share/man - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-07 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - print-manager - http://www.kde.org/applications/graphics/kruler - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - KDE print manager - KDE print tool. - print-manager - mirrors://kde/stable/release-service/22.04.1/src/print-manager-22.04.1.tar.xz - - kdoctools-devel - extra-cmake-modules - cups-devel - kio-devel - ki18n-devel - libgcc - kconfig-devel - kservice-devel - qt5-base-devel - kdbusaddons-devel - kiconthemes-devel - kcoreaddons-devel - kwindowsystem-devel - knotifications-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - kcmutils-devel - plasma-framework-devel - - desktop/kde/applications/print-manager/pspec.xml - - - print-manager - - kio - cups - ki18n - libgcc - kconfig - kservice - qt5-base - kdbusaddons - kiconthemes - kcoreaddons - kwindowsystem - knotifications - kconfigwidgets - kwidgetsaddons - qt5-declarative - system-config-printer - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - grantlee-editor - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Editor for Grantlee themes - Editor for Grantlee themes - mirrors://kde/stable/release-service/22.04.1/src/grantlee-editor-22.04.1.tar.xz - - qt5-webengine-devel - kcrash-devel - extra-cmake-modules - kdbusaddons-devel - kdoctools-devel - kxmlgui-devel - qt5-base-devel - ktexteditor-devel - kwallet-devel - knewstuff-devel - karchive-devel - pimcommon-devel - messagelib-devel - grantleetheme-devel - akonadi-mime-devel - kpimtextedit-devel - libkdepim-devel - syntax-highlighting-devel - libkleo-devel - kparts-devel - gpgme-devel - gpgme-qt5-devel - cyrus-sasl-devel - akonadi-devel - kitemmodels-devel - kcontacts-devel - akonadi-contacts-devel - kimap-devel - kmime-devel - grantlee-qt5-devel - ffmpeg-devel - libXScrnSaver-devel - - desktop/kde/applications/grantlee-editor/pspec.xml - - - grantlee-editor - Editor for Grantlee themes - - kio - ki18n - kmime - kcrash - libgcc - kconfig - kxmlgui - karchive - qt5-base - kcontacts - knewstuff - pimcommon - messagelib - kcompletion - kcoreaddons - kdbusaddons - kpimtextedit - qt5-webengine - kconfigwidgets - kwidgetsaddons - akonadi-contacts - syntax-highlighting - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-04 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kgpg - http://kde.org/applications/utilities/kgpg/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - LGPL - GPL - desktop.kde.applications - A QtQuick plugin to render beautiful and interactive charts - KGpg is a simple interface for GnuPG, a powerful encryption utility. - mirrors://kde/stable/release-service/22.04.1/src/kgpg-22.04.1.tar.xz - - akonadi-devel - boost-devel - akonadi-contacts-devel - gettext-devel - glibc-devel - gpgme-devel - karchive-devel - kcodecs-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kjobwidgets-devel - knotifications-devel - kservice-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - kitemmodels-devel - kcalendarcore-devel - kemoticons-devel - kcontacts-devel - kinit-devel - kunitconversion-devel - libical-devel - python-devel - libevent-devel - qt5-webengine-devel - qt5-base-devel - extra-cmake-modules - - desktop/kde/applications/kgpg/pspec.xml - - - kgpg - A GnuPG frontend - - gpgme - boost - qt5-base - kio - ki18n - kcrash - libgcc - akonadi - kcodecs - kconfig - kxmlgui - kservice - karchive - kcontacts - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - akonadi-contacts - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-06-09 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-05 - 16.11.90 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kompare - http://www.kde.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - File difference viewer - Dosya karşılaştırma göstericisi. - Diff/Patch Frontend. - Dosya karşılaştırma göstericisi. - mirrors://kde/stable/release-service/22.04.1/src/kompare-22.04.1.tar.xz - - extra-cmake-modules - kdoctools-devel - qt5-base-devel - gettext-devel - libkomparediff2-devel - kcoreaddons-devel - kcodecs-devel - kiconthemes-devel - kjobwidgets-devel - kconfig-devel - kparts-devel - ktexteditor-devel - kwidgetsaddons-devel - - desktop/kde/applications/kompare/pspec.xml - - - kompare - - qt5-base - libkomparediff2 - kio - ki18n - kparts - libgcc - kcodecs - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktexteditor - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/bin - /usr/include - - - kdesdk - - - kdesdk - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi-notes - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Libraries and daemons to implement management of notes in Akonadi - Libraries and daemons to implement management of notes in Akonadi - mirrors://kde/stable/release-service/22.04.1/src/akonadi-notes-22.04.1.tar.xz - - qt5-base-devel - boost-devel - ki18n-devel - kdoctools-devel - kitemmodels-devel - gettext-devel - akonadi-devel - extra-cmake-modules - kxmlgui-devel - libxslt-devel - extra-cmake-modules - kmime-devel - shared-mime-info - - desktop/kde/applications/akonadi-notes/pspec.xml - - - akonadi-notes - - qt5-base - ki18n - akonadi - libgcc - kio - kmime - kconfig - kxmlgui - kcoreaddons - kdbusaddons - kwidgetsaddons - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - akonadi-notes-devel - Development files for akonadi-notes - - qt5-base-devel - akonadi-notes - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - First Release. - Stefan Gronewold - groni@pisilinux.org - - - - - - kaccounts-providers - https://projects.kde.org/projects/playground/base/kde-accounts/kaccounts-providers - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others - mirrors://kde/stable/release-service/22.04.1/src/kaccounts-providers-22.04.1.tar.xz - - extra-cmake-modules intltool - kaccounts-integration-devel - qt5-declarative-devel - qt5-webengine-devel - qt5-base-devel - kcoreaddons-devel - libaccounts-qt5-devel - libaccounts-glib-devel - kio-devel - ki18n-devel - kdeclarative-devel - kpackage-devel - signon-devel + gtk3-devel + mate-common + mate-panel-devel + libindicator-devel - desktop/kde/applications/kaccounts-providers/pspec.xml + desktop/mate/mate-indicator-applet/pspec.xml - kaccounts-providers - Small system to administer web accounts for the sites and services across the KDE desktop, including: Google, Facebook, Owncloud, IMAP, Jabber and others + mate-indicator-applet - kaccounts-integration - libaccounts-glib - libgcc - kio - ki18n - kpackage - kcoreaddons - kdeclarative - qt5-declarative - qt5-webengine - qt5-base - - - /etc - /usr/share - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kate - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.applications - Advanced Text Editor - Plasma library and runtime components based upon KF5 and Qt5 - https://download.kde.org/stable/release-service/22.04.1/src/kate-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - kactivities-devel - kconfig-devel - kcrash-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kjobwidgets-devel - kparts-devel - ktexteditor-devel - kwindowsystem-devel - kxmlgui-devel - knewstuff-devel - threadweaver-devel - kitemmodels-devel - plasma-framework-devel - syntax-highlighting-devel - kuserfeedback-devel - kwallet-devel - kguiaddons-devel - kdbusaddons-devel - - - kate-17.04.0-allow-root.patch - kwrite-17.04.0-allow-root.patch - e002696b.patch - 36ede44f.patch - - desktop/kde/applications/kate/pspec.xml - - - kate - - qt5-base - libgcc - libgit2 - knewstuff - ki18n - kconfig - kded - kguiaddons - kactivities - kjobwidgets - kitemmodels - kio - kcrash - kparts - ktexteditor - kwindowsystem - kxmlgui - plasma-framework - kwallet - kservice - kbookmarks - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - threadweaver - kconfigwidgets - knotifications - kwidgetsaddons - kuserfeedback - syntax-highlighting - kio - kconfig - kwallet - - - /usr/share - /etc/xdg - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2022-05-25 - 22.04.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-21 - 17.12.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-04 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kolourpaint - http://kde.org/applications/graphics/kolourpaint - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.graphics - An easy to use paint program - Kullanımı kolay bir çizim programı - KolourPaint is a simple painting program to quickly create raster images. It is useful as a touch-up tool and simple image editing tasks. - KolourPaint, kullanımı kolay bir çizim programıdır. - kolourpaint - mirrors://kde/stable/release-service/22.04.1/src/kolourpaint-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - libkexiv2-devel - kdelibs4-support-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libksane-devel - - desktop/kde/applications/kolourpaint/pspec.xml - - - kolourpaint - - ki18n - libgcc - kconfig - kxmlgui - kservice - qt5-base - kguiaddons - libksane - kcoreaddons - kiconthemes - ktextwidgets - kconfigwidgets - kwidgetsaddons - kdelibs4-support - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/doc - /usr/share/icons - /usr/share/kolourpaint - /usr/share/kxmlgui5 - /usr/share/metainfo - /usr/share/locale/ - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-09 - 16.08.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ktp-contact-list - https://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - KDE Telepathy contact list application - KDE Telepathy contact list application - mirrors://kde/stable/release-service/22.04.1/src/ktp-contact-list-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kdbusaddons-devel - kio-devel - kwallet-devel - kcmutils-devel - knotifications-devel - kwindowsystem-devel - knotifyconfig-devel - ki18n-devel - kiconthemes-devel - kxmlgui-devel - kpeople-devel - telepathy-qt5-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - - desktop/kde/applications/ktp-contact-list/pspec.xml - - - ktp-contact-list - KDE Telepathy contact list application - - ki18n - kwallet - libgcc - kconfig - kpeople - kxmlgui - kservice - qt5-base - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - ktp-common-internals - - - /usr/bin - /usr/share - /usr/share/dbus-1 - /usr/share/applications - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadiconsole - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Akonadi management and debugging console - Akonadi management and debugging console - http://download.kde.org/stable/release-service/22.04.1/src/akonadiconsole-22.04.1.tar.xz - - akonadi-contacts-devel - akonadi-devel - akonadi-calendar-devel - pimcommon-devel - akonadi-mime-devel - calendarsupport-devel - extra-cmake-modules - kimap-devel - kcalendarcore-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcontacts-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kitemmodels-devel - kmime-devel - kpimtextedit-devel - ktextwidgets-devel - kwidgetsaddons-devel - kxmlgui-devel - kio-devel - kitemviews-devel - akonadi-search-devel - libkdepim-devel - libkleo-devel - messagelib-devel - qt5-base-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - kemoticons-devel - kinit-devel - kunitconversion-devel - kidentitymanagement-devel - cyrus-sasl-devel - gpgme-devel - gpgme-qt5-devel - ffmpeg-devel - libXScrnSaver-devel - - desktop/kde/applications/akonadiconsole/pspec.xml - - - akonadiconsole - Akonadi management and debugging console - - akonadi - akonadi-contacts - akonadi-mime - calendarsupport - kcalendarcore - qt5-base - ki18n - kmime - kcrash - libgcc - kconfig - kxmlgui - kcontacts - libkdepim - kitemviews - messagelib - kcompletion - kcoreaddons - kdbusaddons - kitemmodels - kpimtextedit - ktextwidgets - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - /usr/lib - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-27 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kshisen - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - Shisen-Sho Mahjongg like tile game - Shisen-Sho is a solitaire-like game played using the standard set of Mahjong tiles. Unlike Mahjong however, Shisen-Sho has only one layer of scrambled tiles. - mirrors://kde/stable/release-service/22.04.1/src/kshisen-22.04.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - extra-cmake-modules - kdoctools-devel - ki18n-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcoreaddons-devel - kcoreaddons-devel - kdbusaddons-devel - libkdegames-devel - libkmahjongg-devel - knewstuff-devel - kdnssd-devel - kdeclarative-devel - kio-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kshisen/pspec.xml - - - kshisen - - qt5-base - qt5-declarative - libgcc - ki18n - kconfig - kconfigwidgets - kwidgetsaddons - kxmlgui - kcoreaddons - kdbusaddons - libkdegames - libkmahjongg - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2015-08-29 - 1.6.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - picmi - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Picmi is a single player logic-based puzzle game - Resim çizme bulmacası - Picmi is a single player logic-based puzzle game. The goal is to color cells according to numbers given at the side of the board in order to uncover a hidden pattern or picture. - Picmi, tablonun kenarında verilen sayılar kadar tabla üzerinde nokta koyarak bir resim tamamlama bulmacasıdır. - https://download.kde.org/stable/release-service/22.04.1/src/picmi-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - qt5-declarative-devel - kdoctools-devel - kcoreaddons-devel - kdbusaddons-devel - kdeclarative-devel - ki18n-devel - kio-devel - knewstuff-devel - kxmlgui-devel - libkdegames-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/picmi/pspec.xml - - - picmi - picmi - - ki18n - libgcc - kxmlgui - qt5-svg - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 3.1.0 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-approver - https://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - KDE Channel Approver for Telepathy - KDE Channel Approver for Telepathy - mirrors://kde/stable/release-service/22.04.1/src/ktp-approver-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kdbusaddons-devel - kconfig-devel - ki18n-devel - knotifications-devel - kservice-devel - telepathy-qt5-devel - - desktop/kde/applications/ktp-approver/pspec.xml - - - ktp-approver - - ki18n - libgcc - kconfig - kservice - qt5-base - kcoreaddons - kdbusaddons - telepathy-qt5 - knotifications - - - /etc - /usr/lib - /usr/share - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/dbus-1 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kollision - https://www.kde.org/applications/games/kollision/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - A simple ball dodging game - Basit bir top sıçratma oyunu - Kollision is ball dodging game. Click on the empty field to start a game: a blue ball immediately replaces your mouse cursor, and a number of red balls start to fade into the field. - Kollision basit bir top sıçratma oyunudur. Boş bir alana fareyle tıkladığınızda oyun başlar ve fare imlecinizin yerini mavi bir top alır, ayrıca olayların gelişmesine vesile olacak kırmızı toplar da alandaki yerlerini alırlar. - kollision - mirrors://kde/stable/release-service/22.04.1/src/kollision-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - libkdegames-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kollision/pspec.xml - - - kollision - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - lokalize - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - Lokalize is the localization tool for KDE and other open source software - Uygulama yerelleştirme yardımcısı. - Lokalize is also a general computer-aided translation system (CAT) with which you can translate OpenDocument files (*.odt). - Lokalize, uygulamalar için kolaylıkla yerelleştirme yapabileceğiniz bir programdır. - mirrors://kde/stable/release-service/22.04.1/src/lokalize-22.04.1.tar.xz - - qt5-base-devel - hunspell-devel - extra-cmake-modules - kdoctools-devel - kio-devel - enchant-devel - kitemviews-devel - ki18n-devel - kross-devel - kparts-devel - sonnet-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - ktextwidgets-devel - kconfigwidgets-devel - knotifications-devel - kwidgetsaddons-devel - pkgconfig - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - - desktop/kde/applications/lokalize/pspec.xml - - - lokalize - - qt5-base - kio - kitemviews - ki18n - kross - kparts - libgcc - sonnet - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons - hunspell - - - /etc/xdg - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpimtextedit - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.applications - A textedit with PIM-specific features. - Text Edit with KDE-PIM specific features. - mirrors://kde/stable/release-service/22.04.1/src/kpimtextedit-22.04.1.tar.xz - - qt5-base-devel - qt5-speech-devel - qt5-designer-devel - ki18n-devel - sonnet-devel - kcodecs-devel - syntax-highlighting-devel - kconfig-devel - kio-devel - kemoticons-devel - kdesignerplugin - kitemmodels-devel - kinit-devel - ktextwidgets-devel - kiconthemes-devel - kunitconversion-devel - kdoctools-devel - extra-cmake-modules - grantlee-qt5-devel - - desktop/kde/applications/kpimtextedit/pspec.xml - - - kpimtextedit - - qt5-base - qt5-speech - qt5-designer - ki18n - kcodecs - kio - sonnet - libgcc - kemoticons - kcompletion - ktextwidgets - kwidgetsaddons - grantlee-qt5 - kconfig - kxmlgui - kcoreaddons - kiconthemes - kconfigwidgets - syntax-highlighting - - - /etc/xdg - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - - - - kpimtextedit-devel - Development files for kpimtextedit - - qt5-base-devel - kpimtextedit - ktextwidgets-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-04 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - mailimporter - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - Mail importer library - Mail importer library - mirrors://kde/stable/release-service/22.04.1/src/mailimporter-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - pimcommon-devel - cmake - extra-cmake-modules - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalendarcore-devel - kldap-devel - libkdepim-devel - akonadi-calendar-devel - akonadi-search-devel - qt5-webkit-devel - grantlee-qt5-devel - knewstuff-devel - kpimtextedit-devel - kimap-devel - akonadi-devel - boost-devel - karchive-devel - akonadi-mime-devel - akonadi-contacts-devel - - desktop/kde/applications/mailimporter/pspec.xml - - - mailimporter - - qt5-base - akonadi-mime - libgcc - libkdepim - ki18n - kmime - akonadi - kconfig - karchive - kcoreaddons - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - mailimporter-devel - Development files for mailimporter - - mailimporter - karchive-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-26 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-08 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmines - https://www.kde.org/applications/games/kmines/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Minesweeper like game - Mayın tarlası oyunu - KMines is the classic Minesweeper game. The idea is to uncover all the squares without blowing up any mines. When a mine is blown up, the game is over. - KMines klasik mayın tarlası oyununun bir türevidir. Oyunun amacı hiç bir mayına denk gelmemeye çalışarak kutuları açmaktır. Eğer bir mayın patlarsa oyun biter. - kmines - mirrors://kde/stable/release-service/22.04.1/src/kmines-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kconfigwidgets-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kmines/pspec.xml - - - kmines - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - mailcommon - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - KDE PIM library providing support for mail applications - KDE PIM library providing support for mail applications - mirrors://kde/stable/release-service/22.04.1/src/mailcommon-22.04.1.tar.xz - - qt5-base-devel - qt5-phonon-devel - extra-cmake-modules - boost-devel - glibc-devel - libical-devel - gettext-devel - qt5-designer-devel - kdoctools-devel - mailimporter-devel - messagelib-devel - libgravatar-devel - kidentitymanagement-devel - kmailtransport-devel - kmbox-devel - akonadi-devel - kjobwidgets-devel - solid-devel - kitemmodels-devel - qt5-webkit-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalendarcore-devel - kdewebkit-devel - kpimtextedit-devel - kimap-devel - kldap-devel - grantleetheme-devel - pimcommon-devel - libkleo-devel - libkdepim-devel - gpgme-devel - gpgme-qt5-devel - akonadi-mime-devel - akonadi-contacts-devel - grantlee-qt5-devel - openldap-client - cyrus-sasl-devel - syntax-highlighting-devel - karchive-devel - kguiaddons-devel - - desktop/kde/applications/mailcommon/pspec.xml - - - mailcommon - - qt5-base - akonadi-contacts - libgcc - libkdepim - akonadi-mime - mailimporter - kio - ki18n - kmime - akonadi - kcodecs - kconfig - kxmlgui - karchive - kcontacts - pimcommon - kitemviews - messagelib - qt5-phonon - kguiaddons - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kpimtextedit - ktextwidgets - kwindowsystem - kconfigwidgets - kmailtransport - kwidgetsaddons - kidentitymanagement - - - /etc - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - mailcommon-devel - Development files for mailcommon - - mailcommon - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - gwenview - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - desktop.kde.graphics - An image viewer - Resim görüntüleyici - Gwenview is an easy to use image viewer - Gwenview, kullanımı kolay bir resim görüntüleyicisidir. - gwenview - mirrors://kde/stable/release-service/22.04.1/src/gwenview-22.04.1.tar.xz - - exiv2-devel - qt5-base-devel - qt5-svg-devel - qt5-x11extras-devel - qt5-phonon-devel - tiff-devel - purpose-devel - cfitsio-devel - libkipi-devel - kdoctools-devel - kio-devel - kactivities-devel - kded-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - baloo-devel - libkdcraw-devel - libpng-devel - zlib-devel - mesa-devel - docbook-xsl - extra-cmake-modules - lcms2-devel - libX11-devel - kparts-devel - tiff-devel - purpose-devel - cfitsio-devel - libraw-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kwindowsystem-devel - - desktop/kde/applications/gwenview/pspec.xml - - - gwenview - - qt5-base - exiv2-libs - solid - kactivities - libkipi - libkdcraw - kded - tiff - purpose - cfitsio - kio - ki18n - lcms2 - kparts + atk + gtk3 + glib2 libX11 - libgcc - libpng - kconfig - kxmlgui - qt5-svg - kservice - baloo - kitemviews - qt5-phonon - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - ktextwidgets - libjpeg-turbo - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - kfilemetadata - kguiaddons - libraw + mate-panel + libindicator - /usr/lib /usr/share/doc - /usr/bin - /usr/share /usr/share/icons - /usr/share/applications + /usr/share/dbus-1 + /usr/lib + /usr/share/mate-panel + /usr/share/locale - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-31 - 21.12.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 17.08.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2016-10-22 - 16.08.2 + 2021-09-07 + 1.26.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-10-07 - 16.08.1 + 2020-08-23 + 1.25.0 Version bump. - Stefan Gronewold - groni@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-07-31 - 16.04.3 + 2020-06-29 + 1.24.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-05-19 - 16.04.0 + 2020-03-01 + 1.24.0 Version bump. - Burak Ertürk - burakerturk@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-03-20 - 15.12.3 + 2020-02-13 + 1.22.1 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - ksudoku - https://apps.kde.org/ksudoku + mate-media + http://www.mate-desktop.org - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPLv2 + GPLv3.0 app:gui - desktop.kde.applications - Sudoku game - Sudoku oyunu - Ksudoku is a logic-based symbol placement puzzle. - Ksudoku mantık temelli bir sembol yerleştirme oyunudur. - ksudoku - https://download.kde.org/stable/release-service/22.04.1/src/ksudoku-22.04.1.tar.xz + desktop.mate + MATE media programs + This package contains a few media utilities for the MATE desktop, including a volume control. + multimedia-volume-control + http://pub.mate-desktop.org/releases/1.26/mate-media-1.26.0.tar.xz - cmake - kio-devel - ki18n-devel - kcrash-devel - kconfig-devel - kxmlgui-devel - qt5-svg-devel - qt5-base-devel - mesa-glu-devel - karchive-devel - libglvnd-devel - kdoctools-devel - kguiaddons-devel - libkdegames-devel - kcoreaddons-devel - kjobwidgets-devel - kiconthemes-devel - extra-cmake-modules - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - - desktop/kde/applications/ksudoku/pspec.xml - - - ksudoku - - kio - ki18n - libgcc - kcrash - kconfig - kxmlgui - qt5-svg - qt5-base - mesa-glu - libglvnd - kguiaddons - kjobwidgets - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /etc/xdg - /usr/share/doc - /usr/bin - - - - - 2022-05-30 - 22.04.1 - First release. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - libkeduvocdocument - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.applications - Common libraries for KDE Edu applications - Libraries for KDE EDU applications. - mirrors://kde/stable/release-service/22.04.1/src/libkeduvocdocument-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - ki18n-devel - kio-devel - karchive-devel - mesa-devel - - desktop/kde/applications/libkeduvocdocument/pspec.xml - - - libkeduvocdocument - - qt5-base - karchive - libgcc - ki18n - kio - kcoreaddons - - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libkeduvocdocument-devel - Development files for libkeduvocdocument - - libkeduvocdocument - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpkpass - https://download.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.applications - Apple Wallet Pass reader - Apple Wallet Pass reader - Apple Cüzdan Geçiş okuyucusu - Apple Cüzdan Geçiş okuyucusu - https://download.kde.org/stable/release-service/22.04.1/src/kpkpass-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - karchive-devel - shared-mime-info - - desktop/kde/applications/kpkpass/pspec.xml - - - kpkpass - - libgcc - karchive - qt5-base - - - /etc/xdg - /usr/lib - /usr/share - /usr/share/doc - - - - kpkpass-devel - Development files for kpkpass - - kpkpass - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - kamera - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - Webcam support for KDE - KDE için web kamera desteği - Kamera is a plugin for KDE to use webcam. - Kamera, KDE için bir web kamera eklentisidir. - mirrors://kde/stable/release-service/22.04.1/src/kamera-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - ki18n-devel - kconfig-devel - kdoctools-devel - libgphoto2-devel - - desktop/kde/applications/kamera/pspec.xml - - - kamera - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-base - libgphoto2 - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kimap - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Job-based API for interacting with IMAP servers - API for interacting with IMAP servers - mirrors://kde/stable/release-service/22.04.1/src/kimap-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - kmime-devel - boost-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - cyrus-sasl-devel - kunitconversion-devel - extra-cmake-modules - - desktop/kde/applications/kimap/pspec.xml - - - kimap - - qt5-base - kmime - kio - ki18n - libgcc - kcodecs - cyrus-sasl - kcoreaddons - - - /etc/xdg - /usr/lib/qt5 - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share - - - - kimap-devel - Development files for kimap - - qt5-base-devel - kimap - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-27 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-19 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - khelpcenter - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - KDE Help Center - KDE help center utility to read help documentation about various KDE applications. - mirrors://kde/stable/release-service/22.04.1/src/khelpcenter-22.04.1.tar.xz - - qt5-base-devel + gtk3-devel libxml2-devel - libdbusmenu-qt-devel - kinit-devel - karchive-devel - kcmutils-devel - khtml-devel - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - kdesignerplugin - docbook-xsl - xapian-core-devel - grantlee-qt5-devel - extra-cmake-modules - - desktop/kde/applications/khelpcenter/pspec.xml - - - khelpcenter - - qt5-base - kio - libgcc - libxml2 - karchive - kbookmarks - khtml - ki18n - kparts - kcodecs - kconfig - kxmlgui - kcmutils - kservice - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - grantlee-qt5 - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-04 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-23 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-06 - 16.08.01 - Version Bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-08-18 - 5.6.4 - Remove Locale file conflicts language package . - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-05-18 - 5.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 5.6.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmail - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - KDE mail client - KMail is the email component of Kontact, the integrated personal information manager from KDE. - mirrors://kde/stable/release-service/22.04.1/src/kmail-22.04.1.tar.xz - - gpgme-devel - extra-cmake-modules - kbookmarks-devel - kcmutils-devel - kcodecs-devel - kconfig-devel - kconfigwidgets-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kio-devel - kitemviews-devel - kjobwidgets-devel - knotifications-devel - knotifyconfig-devel - kparts-devel - kservice-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - sonnet-devel - akonadi-contacts-devel - akonadi-devel - akonadi-mime-devel - akonadi-search-devel - kcalendarcore-devel - kcalutils-devel - kcontacts-devel - kidentitymanagement-devel - kldap-devel - kmailtransport-devel - kmime-devel - kpimtextedit-devel - ktnef-devel - libgravatar - libkleo-devel - messagelib-devel - pimcommon-devel - qt5-base-devel - qt5-webengine-devel - kitemmodels-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - cyrus-sasl-devel - kontactinterface-devel - libksieve-devel - mailcommon-devel - kimap-devel - libgravatar-devel - libkdepim-devel - syntax-highlighting-devel - gpgme-qt5-devel - ffmpeg-devel - libXScrnSaver-devel - akonadi-calendar-devel - akonadi-import-wizard-devel - qt5-keychain-devel - kuserfeedback-devel - - desktop/kde/applications/kmail/pspec.xml - - - kmail - KDE mail client - - kio - gpgme - ki18n - kmime - ktnef - kcrash - kparts - libgcc - sonnet - akonadi - kcodecs - kconfig - kxmlgui - libkleo - kcalendarcore - kcmutils - kservice - qt5-base - kcalutils - kcontacts - libkdepim - libksieve - pimcommon - kbookmarks - kguiaddons - kitemviews - mailcommon - messagelib - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets - libgravatar - akonadi-mime - kpimtextedit - ktextwidgets - knotifyconfig - kwindowsystem - akonadi-search - kconfigwidgets - kmailtransport - knotifications - kwidgetsaddons - akonadi-contacts - kontactinterface - akonadi-calendar - kidentitymanagement - kmail-account-wizard - akonadi-import-wizard - qt5-keychain - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-07 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-04-08 - 16.12.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-01-04 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - libkleo - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.applications - KDE PIM cryptographic library - KDE PIM cryptographic library - mirrors://kde/stable/release-service/22.04.1/src/libkleo-22.04.1.tar.xz - - qt5-base-devel - boost-devel - gpgme-qt5-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - prison-devel - qt5-phonon-devel - libical-devel - libqjson-devel - libgpg-error-devel - libxslt-devel - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcontacts-devel - kcalendarcore-devel - extra-cmake-modules - kpimtextedit-devel - grantlee-qt5-devel - - desktop/kde/applications/libkleo/pspec.xml - - - libkleo - - qt5-base - kio - ki18n - libgcc - kcodecs - kxmlgui - kcalendarcore - kcontacts - kconfig - libxml2 - kservice - kguiaddons - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - ktextwidgets - kconfigwidgets - kwidgetsaddons - qt5-phonon - prison - gpgme - gpgme-qt5 - kpimtextedit - kwindowsystem - cyrus-sasl - grantlee-qt5 - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/mkspecs/ - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/dbus-1 - /usr/share/config.kcfg - /usr/share/kf5 - /usr/share/config - /usr/share/akonadi - /usr/share/akonadicontact/grantleetheme/default - /usr/share/libkleopatra - /usr/share/locale - /usr/share/qlogging-categories5/libkleo.renamecategories - /usr/share/qlogging-categories5/libkleo.categories - - - - libkleo-devel - Development package for libkleo libraries - Contains development tools and header files for libkleo - - qt5-base-devel - boost-devel - gpgme-devel - gpgme-qt5-devel - libkleo - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-12 - 17.12.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-04-25 - 16.04.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kde-dev-scripts - https://projects.kde.org/projects/kde/kdesdk/kde-dev-scripts - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.sdk - Scripts and setting files useful during development of KDE software - Scripts and setting files useful during development of KDE software - mirrors://kde/stable/release-service/22.04.1/src/kde-dev-scripts-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - docbook-xml - - desktop/kde/applications/kde-dev-scripts/pspec.xml - - - kde-dev-scripts - Scripts and setting files useful during development of KDE software - - qt5-base - kdoctools - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - eventviews - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.applications - Library for creating events. - Library for creating events. - mirrors://kde/stable/release-service/22.04.1/src/eventviews-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - libkdepim-devel - kcontacts-devel - kcalendarcore-devel - kcalutils-devel - calendarsupport-devel - kmime-devel - kidentitymanagement-devel - akonadi-calendar-devel - akonadi-contacts-devel - kdiagram-devel - kholidays-devel - kguiaddons-devel - kiconthemes-devel - - desktop/kde/applications/eventviews/pspec.xml - - - eventviews - Library for creating events. - - ki18n - libgcc - akonadi - kcodecs - kconfig - kcalendarcore - kdiagram - kservice - qt5-base - kcalutils - kcontacts - libkdepim - kguiaddons - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kconfigwidgets - kwidgetsaddons - calendarsupport - akonadi-calendar - - - /etc - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/kservicetypes5 - /usr/share/locale - - - - eventviews-devel - Development files for eventviews. - - eventviews - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-22 - 16.04.0 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - kbreakout - https://www.kde.org/applications/games/kbreakout/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Breakout like game - Breakout benzeri oyun - KBreakout is a Breakout like game. The object of the game is to destroy as many bricks as possible without losing the ball. - KBreakout bir Breakout türevidir. Oyunun amacı topları yere düşürmeden olabildiğince çok tuğlayı yok etmektir. - kbreakout - mirrors://kde/stable/release-service/22.04.1/src/kbreakout-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kservice-devel - kconfigwidgets-devel - kiconthemes-devel - kcompletion-devel - kjobwidgets-devel - kxmlgui-devel - kio-devel - libkdegames-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kbreakout/pspec.xml - - - kbreakout - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /usr/share - /usr/share/doc - /usr/bin - /etc/xdg/kbreakout.categories - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - calendarsupport - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.applications - Calendar support library - Calendar support library - mirrors://kde/stable/release-service/22.04.1/src/calendarsupport-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kmime-devel - ki18n-devel - kcodecs-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - kcalutils-devel - kcalendarcore-devel - kidentitymanagement-devel - kholidays-devel - akonadi-calendar-devel - kcontacts-devel - pimcommon-devel - kimap-devel - cyrus-sasl-devel - akonadi-mime-devel - akonadi-contacts-devel - akonadi-notes-devel - kguiaddons-devel - - desktop/kde/applications/calendarsupport/pspec.xml - - - calendarsupport - Calendar support library - - kio - ki18n - kmime - libgcc - akonadi - kcodecs - kconfig - kcalendarcore - qt5-base - kcalutils - kholidays - pimcommon - kguiaddons - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - kwidgetsaddons - akonadi-calendar - kidentitymanagement - - - /etc - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/kservicetypes5 - /usr/share/locale - - - - calendarsupport-devel - Development files for calendarsupport - - calendarsupport - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-19 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-22 - 16.04.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kidentitymanagement - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - KDE PIM libraries - Library for the KDE-PIM(Personal-Infomation-Management - mirrors://kde/stable/release-service/22.04.1/src/kidentitymanagement-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - kpimtextedit-devel - kio-devel - kcodecs-devel - kconfig-devel - kxmlgui-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kwidgetsaddons-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kpimtextedit-devel - kunitconversion-devel - kpimtextedit-devel - extra-cmake-modules - python-devel - kiconthemes-devel - grantlee-qt5-devel - - desktop/kde/applications/kidentitymanagement/pspec.xml - - - kidentitymanagement - - qt5-base - kpimtextedit - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kiconthemes - kcompletion - kcoreaddons - ktextwidgets - kwidgetsaddons - kpimtextedit - grantlee-qt5 - - - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kidentitymanagement-devel - Development files for kidentitymanagement - - qt5-base-devel - kpimtextedit-devel - ktextwidgets-devel - kidentitymanagement - - - /etc/xdg - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcron - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.applications - Graphical task scheduler - Görev zamanlayıcı arayüzü. - Kcron is a graphical frontend to the cron system, used to schedule regular tasks on a Unix system. - Kcron, cron görev zamanlayıcı altyapısının bir arayüzüdür. - kcron - mirrors://kde/stable/release-service/22.04.1/src/kcron-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kdoctools-devel - kiconthemes-devel - kio-devel - kxmlgui-devel - kiconthemes-devel - - desktop/kde/applications/kcron/pspec.xml - - - kcron - - kio - ki18n - libgcc - qt5-base - kcoreaddons - kiconthemes - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - - - kdeadmin - - - kdeadmin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-09 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kiriki - https://www.kde.org/applications/games/kiriki/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Yahtzee like dice game - Yahtzee benzeri zar oyunu - Kiriki is an addictive and fun dice game for KDE, designed to be played by as many as six players. - Kiriki KDE için alışkanlık yapan ve eğlenceli bir zar oyunudur. Altı oyuncuya kadar birlikte oynanabilir. - kiriki - mirrors://kde/stable/release-service/22.04.1/src/kiriki-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kiriki/pspec.xml - - - kiriki - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - kiconthemes - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kstars - https://www.kde.org/applications/education/kstars/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A desktop planetarium for KDE - KDE için bir masaüstü gözlemevi - KStars is a Desktop Planetarium for KDE. It provides an accurate graphical simulation of the night sky, from any location on Earth, at any date and time. The display includes up to 100 million stars, 13,000 deep-sky objects, all 8 planets, the Sun and Moon, and thousands of comets and asteroids. - KStars, dünyanın herhangi bir yerinin herhangi bir anındaki gökyüzü yıldız haritasını gösterebilen bir uygulamadır. 100 milyon kadar yıldız, 13000 derin gök cismi, 8 gezegenin tümü, Güneş, Ay ile birçok kuyruklu yıldız ve astreoidi içeren bir veritabanı vardır. - kstars - https://download.kde.org/stable/kstars/kstars-3.5.8.tar.xz - - qt5-base-devel - qt5-datavis3d-devel - qt5-multimedia-devel - qt5-keychain-devel - qt5-svg-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-sql-odbc - qt5-declarative-devel - qt5-location-devel - qt5-quickcontrols2-devel - qt5-websockets-devel - eigen3 - xplanet - kcrash-devel - libraw-devel - cfitsio-devel - libindi-devel - kdoctools-devel - kconfig-devel - kguiaddons-devel - kwidgetsaddons-devel - knewstuff-devel - kdbusaddons-devel - gettext-devel - ki18n-devel - kinit-devel - kjobwidgets-devel - kio-devel - kwindowsystem-devel - kxmlgui-devel - kplotting-devel - ktexteditor-devel - kiconthemes-devel - pkgconfig - mesa-glu-devel - mesa-devel - wcslib-devel - zlib-devel - gsl-devel - knotifyconfig-devel - extra-cmake-modules - libnova-devel - stellarsolver-devel - knotifications-devel - - desktop/kde/applications/kstars/pspec.xml - - - kstars - - qt5-base - qt5-svg - qt5-declarative - qt5-websockets - qt5-keychain - qt5-datavis3d - libindi - cfitsio - kio - gsl - kauth - libraw - libnova - kinit - kcrash - knewstuff - kplotting - ktexteditor - zlib - ki18n - libgcc - kconfig - kxmlgui - kcoreaddons - kiconthemes - kconfigwidgets - knotifyconfig - kwidgetsaddons - wcslib - xplanet - knotifications - libnova - stellarsolver - - - /etc/dbus-1/system.d/org.kde.kf5auth.kstars.conf - /etc/xdg - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 3.5.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 3.5.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 3.5.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 3.5.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 3.5.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 3.5.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 3.5.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 3.5.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 3.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-16 - 3.5.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2020-09-13 - 3.4.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 3.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 3.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 3.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 3.3.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 3.3.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 3.3.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 3.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 3.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 3.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 3.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 17.08.3 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 17.08.3 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-14 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-01 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - konqueror - https://www.kde.org/applications/internet/konqueror/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.applications - Konqueror - KDE File Manager and Web Browser - Konqueror is KDE's Webbrowser and swiss-army-knife for any kind of file-management and file previewing. - mirrors://kde/stable/release-service/22.04.1/src/konqueror-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - glibc-devel - kactivities-devel - karchive-devel - kbookmarks-devel - kcmutils-devel - kcrash-devel - kdelibs4-support-devel - kdesu-devel - kdoctools-devel - khtml-devel - kiconthemes-devel - kinit-devel - kio-devel - kparts-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - kwidgetsaddons-devel - libICE-devel - libX11-devel - libXext-devel - python-devel - qt5-base-devel - qt5-declarative-devel - qt5-location-devel - qt5-webchannel-devel - qt5-webengine-devel - qt5-x11extras-devel - tidy-devel - zlib-devel - libevent-devel - ffmpeg-devel - libXScrnSaver-devel - kwallet-devel - qt5-script-devel - - desktop/kde/applications/konqueror/pspec.xml - - - konqueror - Konqueror - KDE File Manager and Web Browser - - kwallet - karchive - kbookmarks - kcmutils - kcrash - kded - kdelibs4-support - kdesu - khtml - kiconthemes - kinit - kio - kparts - kwidgetsaddons - libX11 - libXext - libgcc - qt5-base - qt5-declarative - qt5-location - qt5-webchannel - qt5-webengine - qt5-x11extras - zlib - tidy - ki18n - sonnet - kcodecs - kconfig - kxmlgui - kservice - kitemviews - qt5-script - kcompletion - kcoreaddons - kdbusaddons - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - kde-baseapps - - - kde-baseapps - - - - konqueror-devel - Development files for konqueror - - qt5-base-devel - konqueror - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-08 - 17.08.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-24 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-03 - 16.11.90 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - ktp-kded-module - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - mirrors://kde/stable/release-service/22.04.1/src/ktp-kded-module-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - kdbusaddons-devel - kwidgetsaddons-devel - kwallet-devel - kconfig-devel - kactivities-devel - ki18n-devel - kio-devel - knotifications-devel - kconfigwidgets-devel - kidletime-devel - kcmutils-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/applications/ktp-kded-module/pspec.xml - - - ktp-kded-module - Sits in KDED and takes care of various bits of system integration like setting user to auto-away or handling connection errors - - kio - ki18n - libgcc - kconfig - qt5-base - kidletime - kcoreaddons - kdbusaddons - telepathy-qt5 - kconfigwidgets - knotifications - kactivities - kwallet - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/kservices5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - knetwalk - https://www.kde.org/applications/games/knetwalk/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Network construction game - Ağ yapılandırma oyunu - KNetWalk is a single player logic game. The object of the game is to start the LAN, connecting all the terminals to the server, in as few turns as possible. - KNetWalk bir ağ kurma oyunudur. Dunucularla istemcileri mümkün olan en az kaynakla birleştirmeye çalışmak oyunun amacıdır. Bağımlılık yapması olasıdır. - knetwalk - mirrors://kde/stable/release-service/22.04.1/src/knetwalk-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - ktextwidgets-devel - - desktop/kde/applications/knetwalk/pspec.xml - - - knetwalk - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - kwidgetsaddons - qt5-declarative - ktextwidgets - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - blinken - https://www.kde.org/applications/education/blinken/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - FDL - GPL - LGPL - gui - desktop.kde.edu - Blinken - Memory Enhancement Game - Hafıza geliştirme oyunu. - Blinken is based on an electronic game released in 1978, which challenges players to remember sequences of increasing length. On the face of the device, there are 4 different color buttons, each one with their own distinctive sound. - Hafıza geliştirme oyunu. - mirrors://kde/stable/release-service/22.04.1/src/blinken-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kxmlgui-devel - qt5-svg-devel - qt5-base-devel - qt5-phonon-devel - - desktop/kde/applications/blinken/pspec.xml - - - blinken - Blinken - Memory Enhancement Game - - kcrash - kconfig - kcoreaddons - kdbusaddons - kguiaddons - ki18n - kxmlgui - libgcc - qt5-base - qt5-phonon - qt5-svg - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - analitza - https://projects.kde.org/projects/kde/kdeedu/analitza - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - desktop.kde.edu - A KDE library for mathematical features - Matematiksel özellikler için bir KDE kitaplığı - analitza is a library to add mathematical features to programs. - analitza, programlara matematiksel özellikler eklemek için bir kitaplıktır. - hi32-app-kalgebra - mirrors://kde/stable/release-service/22.04.1/src/analitza-22.04.1.tar.xz - - cmake - eigen3 - mesa-devel - qt5-svg-devel - extra-cmake-modules - qt5-declarative-devel - qt5-linguist - - desktop/kde/applications/analitza/pspec.xml - - - analitza - - mesa - libgcc - qt5-svg - qt5-base - qt5-declarative - - - /usr/lib - /usr/share/doc - /usr/share/libanalitza/ - /usr/share/locale - - - - analitza-devel - Development files for analitza - analitza için geliştirme dosyaları - - analitza - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdialog - https://github.com/KDE/kdialog - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - kdialog allows you to display dialog boxes from shell scripts - The syntax is very much inspired from the "dialog" command - (which shows text mode dialogs). - mirrors://kde/stable/release-service/22.04.1/src/kdialog-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - glibc-devel - kio-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libICE-devel - libX11-devel - libXext-devel - python-devel - kdbusaddons-devel - kguiaddons-devel - kiconthemes-devel - knotifications-devel - ktextwidgets-devel - qt5-base-devel - - desktop/kde/applications/kdialog/pspec.xml - - - kdialog - kdialog allows you to display dialog boxes from shell scripts - - kio - qt5-base - ki18n - libX11 - libgcc - kconfig - kguiaddons - kdbusaddons - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - kwindowsystem - knotifications - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/doc - - - kde-baseapps - - - kde-baseapps - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-19 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-03 - 16.11.80 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kruler - http://www.kde.org/applications/graphics/kruler - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.graphics - A screen ruler and color measurement tool - Ekran cetveli ve renk ölçüm aracı - KRuler is a screen ruler and color measurement tool. - KRuler, bir ekran cetveli ve renk ölçüm aracıdır. - kruler - mirrors://kde/stable/release-service/22.04.1/src/kruler-22.04.1.tar.xz - - qt5-base-devel - qt5-x11extras-devel - kdoctools-devel - cmake - extra-cmake-modules - ki18n-devel - knotifications-devel - kwindowsystem-devel - kxmlgui-devel - python-devel - docbook-xsl - - desktop/kde/applications/kruler/pspec.xml - - - kruler - - qt5-base - kxmlgui - knotifications - ki18n - libgcc - libxcb - kconfig - kcoreaddons - kwindowsystem - qt5-x11extras - kconfigwidgets - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kturtle - http://edu.kde.org/applications/all/kturtle - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An educational programming environment - Öğrenim amaçlı programlama ortamı - KTurtle is an educational programming environment that aims to make learning how to program as easily as possible. To achieve this KTurtle makes all programming tools available from the user interface. The programming language used is TurtleScript which allows its commands to be translated. - KTurtle, programlama öğrenmeyi olabildiğince kolaylaştırmak için tasarlanmış bir programlama uygulamasıdır. Bu amaçla tasarlanan arayüz tüm gerekli araçları kullanıcıya sunar. Ayrıca kullanılan programlama dili olan TurtleScript başka dillere çevrilebilen bir yapıya sahiptir. - kturtle - mirrors://kde/stable/release-service/22.04.1/src/kturtle-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - kdoctools-devel - knewstuff-devel - extra-cmake-modules - kio-devel - kcoreaddons-devel - ktextwidgets-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kxmlgui-devel - kconfig-devel - gettext-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kturtle/pspec.xml - - - kturtle - - qt5-base - qt5-svg - ki18n - knewstuff - libgcc - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kxmlgui - kconfig - - - /etc/xdg - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkdcraw - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - A C++ interface around LibRaw library - LibRaw kitaplığı için C++ arayüzü - libkdcraw is a C++ interface around LibRaw library used to decode RAW picture files. - libkdcraw, RAW resim dosyalarını çözmek için kullanılan LibRaW kitaplığının C++ arayüzüdür. - mirrors://kde/stable/release-service/22.04.1/src/libkdcraw-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - libraw-devel - kconfig-devel - ki18n-devel - cmake - extra-cmake-modules - qca2-qt5-devel - - desktop/kde/applications/libkdcraw/pspec.xml - - - libkdcraw - - qt5-base - libraw - kconfig - ki18n - libgcc - - - /usr/lib - /usr/bin - /usr/share/icons - /usr/share/ - - - - libkdcraw-devel - Development files for libkdcraw - libkdcraw için geliştirme dosyaları - - libkdcraw - qt5-base-devel - libraw-devel - kconfig-devel - ki18n-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/apps/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-02-05 - 21.12.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksystemlog - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.applications - System log viewer. - Sistem kayıt görüntüleyicisi. - KSystemLog show all logs of your system, grouped by General (Default system log, Authentication, Kernel, X.org...), and optional Services (Apache, Cups, etc, ...). - Ksystemlog, sistemin bütün hata kayıtlarını (genel ve opsiyonel) görüntülemmeye yarayan bir uygulamadır. - ksystemlog - mirrors://kde/stable/release-service/22.04.1/src/ksystemlog-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kxmlgui-devel - kcoreaddons-devel - kwidgetsaddons-devel - kitemviews-devel - kiconthemes-devel - kio-devel - kconfig-devel - karchive-devel - kdoctools-devel - ki18n-devel - kcompletion-devel - ktextwidgets-devel - - desktop/kde/applications/ksystemlog/pspec.xml - - - ksystemlog - - kio - ki18n - libgcc - kconfig - kxmlgui - karchive - kservice - qt5-base - kitemviews - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share - /usr/share/applications - /usr/share/kxmlgui5 - /usr/share/doc - /usr/share/locale - - - kdeadmin - - - kdeadmin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - rocs - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.edu - Rocs Graph Theory - Rocs aims to be a Graph Theory IDE for helping professors to show the results of a graph algorithm and also helping students to do the algorithms. Rocs has a scripting module, done in Qt Script, that interacts with the drawn graph and every change in the graph with the script is reflected on the drawn one.. - mirrors://kde/stable/release-service/22.04.1/src/rocs-22.04.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-webkit-devel - qt5-base-devel - qt5-xmlpatterns-devel - qt5-script-devel - extra-cmake-modules - kdoctools-devel - kdeclarative-devel - ki18n-devel - gettext-devel - kitemviews-devel - ktexteditor-devel - kxmlgui-devel - kconfig-devel - karchive-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - cmake - qt5-location-devel - grantlee-qt5-devel - boost-devel - qt5-svg-devel - - desktop/kde/applications/rocs/pspec.xml - - - rocs - - qt5-base - qt5-script - qt5-declarative - qt5-xmlpatterns - qt5-webkit - qt5-svg - grantlee-qt5 - kdeclarative - ktexteditor - kparts - libgcc - ki18n - kconfig - karchive - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kxmlgui - kitemviews - - - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - rocs-devel - Development files for rocs - - rocs - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kpat - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - Patience card game - To play KPatience you need, as the name suggests, patience. For simple games, where the way the game goes depends only upon how the cards fall, your patience might be the only thing you need. - mirrors://kde/stable/release-service/22.04.1/src/kpat-22.04.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - qt5-phonon-devel - kdoctools-devel - cmake - gettext-devel - kio-devel - kpackage-devel - kitemviews-devel - kinit-devel - kunitconversion-devel - kiconthemes-devel - ktextwidgets-devel - kitemmodels-devel - knotifyconfig-devel - libkdegames-devel - kemoticons-devel - kdeclarative-devel - knewstuff-devel - ki18n-devel - kconfig-devel - kxmlgui-devel - qt5-svg-devel - kguiaddons-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - shared-mime-info - extra-cmake-modules - python3 - mesa-devel - kdesignerplugin - black-hole-solver-devel - freecell-solver-devel - - desktop/kde/applications/kpat/pspec.xml - - - kpat - - qt5-base - libkdegames - knewstuff - ki18n - kio - kcrash - libgcc - kconfig - kxmlgui - qt5-svg - kguiaddons - kcompletion - kcoreaddons - kdbusaddons - kconfigwidgets - kwidgetsaddons - freecell-solver - black-hole-solver - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-16 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkomparediff2 - https://projects.kde.org/projects/kde/kdesdk/libkomparediff2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.sdk - Library to compare files and strings - Library to compare files and strings - mirrors://kde/stable/release-service/22.04.1/src/libkomparediff2-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - python3-devel - gettext-devel - kcoreaddons-devel - kcodecs-devel - kconfig-devel - kxmlgui-devel - ki18n-devel - kio-devel - kparts-devel - - desktop/kde/applications/libkomparediff2/pspec.xml - - - libkomparediff2 - - qt5-base - kio - ki18n - libgcc - kcodecs - kconfig - kxmlgui - kcoreaddons - kconfigwidgets - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - libkomparediff2-devel - Shared libraries for libkomparediff2. - - libkomparediff2 - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-05-08 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmix - http://kde.org/applications/multimedia/kmix/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.multimedia - KMix: KDE Digital Mixer - KMix: KDE için Dijital Mixer - KMix: KDE Digital Mixer - KMix: KDE için Dijital Mixer. - kmix - mirrors://kde/stable/release-service/22.04.1/src/kmix-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - ki18n-devel - kcmutils-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kdesignerplugin libcanberra-devel - glib2-devel - alsa-lib-devel - knotifications-devel - kglobalaccel-devel - plasma-framework-devel - extra-cmake-modules + libcanberra-gtk3-devel + mate-common + mate-panel-devel + libmatemixer-devel + mate-desktop-devel + intltool - desktop/kde/applications/kmix/pspec.xml + desktop/mate/mate-media/pspec.xml - kmix + mate-media - qt5-base - alsa-lib + gtk3 + cairo + glib2 + pango + libxml2 + gdk-pixbuf + mate-panel libcanberra - pulseaudio-libs - ki18n - kconfig - kxmlgui - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - libgcc - plasma-framework + libmatemixer + mate-desktop + libcanberra-gtk3 - /etc - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/include - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - katomic - https://www.kde.org/applications/games/katomic/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Sokoban like logic game - Sokoban benzeri mantık oyunu - KAtomic is both fun and educational game built around molecular geometry. - KAtomic moleküler geometri hakkında hem eğlenceli hem de eğitici bir oyundur. - katomic - mirrors://kde/stable/release-service/22.04.1/src/katomic-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kitemviews-devel - kiconthemes-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - knewstuff-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/katomic/pspec.xml - - - katomic - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - knewstuff - kcoreaddons - kdbusaddons - libkdegames - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkdegames - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.games - Common code and data for many KDE games - Common code and data for many KDE games - mirrors://kde/stable/release-service/22.04.1/src/libkdegames-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - kdnssd-devel - openal-devel - cmake - extra-cmake-modules - python3 - kdeclarative-devel - knewstuff-devel - kio-devel - ki18n-devel - libgcc - kconfig-devel - kxmlgui-devel - qt5-svg-devel - karchive-devel - kguiaddons-devel - libsndfile-devel - kcompletion-devel - kcoreaddons-devel - kiconthemes-devel - kconfigwidgets-devel - kwidgetsaddons-devel - qt5-declarative-devel - kdesignerplugin - mesa-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kglobalaccel-devel - ktextwidgets-devel - kunitconversion-devel - - desktop/kde/applications/libkdegames/pspec.xml - - - libkdegames - - qt5-base - kdnssd - kdeclarative - knewstuff - kio - ki18n - libgcc - openal - kconfig - kxmlgui - qt5-svg - karchive - kguiaddons - libsndfile - kcompletion - kcoreaddons - kiconthemes - kglobalaccel - ktextwidgets - kconfigwidgets - kwidgetsaddons - qt5-declarative - - - /etc/xdg - /usr/share - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libkdegames-devel - Shared libraries for KDE games. - - libkdegames - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkmahjongg - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.games - Common code, backgrounds and tile sets for games using Mahjongg tiles - Common code, backgrounds and tile sets for games using Mahjongg tiles. - mirrors://kde/stable/release-service/22.04.1/src/libkmahjongg-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - extra-cmake-modules - gettext-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kcoreaddons-devel - mesa-devel - - desktop/kde/applications/libkmahjongg/pspec.xml - - - libkmahjongg - - qt5-base - qt5-svg - libgcc - ki18n - kconfig - kcompletion - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - libkmahjongg-devel - Development files for libkmahjongg - - libkmahjongg - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - okular - http://okular.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - A document viewer - Belge gösterici - Okular is a document viewer. - Okular bir belge göstericidir. - okular - mirrors://kde/stable/release-service/22.04.1/src/okular-22.04.1.tar.xz - - qt5-base-devel - qt5-declarative-devel - kjs-devel - qca2-qt5-devel - tiff-devel - purpose-devel - qt5-phonon-devel - qt5-speech-devel - poppler-qt5-devel - ebook-tools-devel - libkexiv2-devel - kdoctools-devel - threadweaver-devel - kdesignerplugin - khtml-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kactivities-devel - libkscreen-devel - chmlib-devel - kjobwidgets-devel - libspectre-devel - djvu-devel - kpty-devel - kdegraphics-mobipocket-devel - extra-cmake-modules - kirigami-devel - libzip-devel - discount-devel - freetype-devel - qt5-svg-devel - karchive-devel - kwallet-devel - - desktop/kde/applications/okular/pspec.xml - - - okular - app:gui - - qt5-base - qca2-qt5 - tiff - kcrash - libkexiv2 - poppler-qt5 - ebook-tools - libzip - discount - kactivities - libjpeg-turbo - purpose - khtml - kpty - kio - kjs - zlib - ki18n - kparts - libgcc - kcodecs - kconfig - kwallet - kxmlgui - qt5-svg - freetype - karchive - kservice - kbookmarks - kitemviews - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - threadweaver - kwindowsystem - kconfigwidgets - kwidgetsaddons - qt5-declarative - djvu - libspectre - qt5-phonon - chmlib - kjobwidgets - qt5-speech - kdegraphics-mobipocket - qt5-svg - - - /etc/xdg - /usr/lib /usr/share/doc /usr/share/man + /usr/share/omf /usr/bin - /usr/share - - - - okular-devel - Development files for okular - Okular için geliştirme dosyaları - - okular - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-24 - 17.12.0 - Version bump.okular - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-14 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 17.08.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-24 - 17.04.3 - Version bump. - mustafa cinasal - muscnsl@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-04 - 16.11.90 - Release bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-24 - 16.03.80_20160402 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-02-02 - 16.03.80_20160402 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kcalc - http://kde.org/applications/utilities/kcalc - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A scientific calculator - Bir bilimsel hesap makinesi - KCalc is a calculator which offers many more mathematical functions than meet the eye on a first glance. - KCalc, pek çok matematik fonksiyonu barındıran bir hesap makinesi uygulamasıdır. - kcalc - mirrors://kde/stable/release-service/22.04.1/src/kcalc-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - gmp-devel - cmake - mpfr-devel - kconfig-devel - kconfigwidgets-devel - kguiaddons-devel - ki18n-devel - kinit-devel - knotifications-devel - kxmlgui-devel - mesa-devel - - desktop/kde/applications/kcalc/pspec.xml - - - kcalc - - qt5-base - gmp - ki18n - kcrash - kconfig - kxmlgui - kguiaddons - kcoreaddons - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-08-01 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-12 - 16.04.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkipi - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - Common plugin infrastructure for KDE image applications - KDE resim uygulamaları için ortak eklenti yapısı - Kipi (KDE Image Plugin Interface) is an effort to develop a common plugin structure (for Digikam, Gwenview, etc.). Its aim is to share image plugins among graphic applications. - Kipi, ortak bir eklenti yapısı ortaya koymak için gerekli bir kitaplıktır. - mirrors://kde/stable/release-service/22.04.1/src/libkipi-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - cmake - extra-cmake-modules - - desktop/kde/applications/libkipi/pspec.xml - - - libkipi - - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kservice - kcoreaddons - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - - - - libkipi-devel - Development files for libkipi - libkipi için geliştirme dosyaları - - libkipi - qt5-base-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-09 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi - https://userbase.kde.org/Akonadi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.applications - PIM (Personal Information Management) Storage Service - PIM (Kişisel Bilgi Yönetimi) Depolama Servisi - akonadi is an extensible cross-desktop storage service for PIM data and meta data providing concurrent read, write, and query access. - Akonadi, PIM verisi ve meta veriler için eşzamanlı okuma, yazma ve sorgulama yapma imkanı sağlayan, masaüstü ortamından bağımsız, genişletilebilir bir depolama servisidir. - akonadi - mirrors://kde/stable/release-service/22.04.1/src/akonadi-22.04.1.tar.xz - - qt5-base-devel - qt5-designer-devel - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kcrash-devel - ki18n-devel - kiconthemes-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - sqlite-devel - shared-mime-info - mariadb-client - mariadb-server - postgresql-server - libxslt-devel - boost-devel - kitemmodels-devel - kio-devel - kaccounts-integration-devel - libaccounts-qt5-devel - extra-cmake-modules - libaccounts-glib-devel - xz-devel - - desktop/kde/applications/akonadi/pspec.xml - - - akonadi - app:console - - kio - sqlite - libgcc - ki18n - kcrash - kconfig - kxmlgui - libxml2 - qt5-base - kitemmodels - kcoreaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - mariadb-client - mariadb-server - postgresql-server - libaccounts-qt5 - kaccounts-integration - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-postgresql - - - /etc - /etc/xdg - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/mime - /usr/share - /usr/share/doc/ - - - - akonadi-devel - Development files for akonadi - akonadi için geliştirme dosyaları - - akonadi - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-11 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-06 - 18.12.3 - Fix deps. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - spectacle - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.graphics - KDE screenshot capture utility - Ekran görüntüsü yakalama aracı - Spectacle, a new screenshot application that aims to replace KSnapshot.. - spectacle bir ekran görüntüsü yakalama aracıdır. - mirrors://kde/stable/release-service/22.04.1/src/spectacle-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - libkipi-devel - qt5-script-devel - libxcb-devel - libkscreen-devel - xcb-util-devel - qt5-x11extras-devel - xcb-util-image-devel - xcb-util-cursor-devel - kxmlgui-devel - knewstuff-devel - kio-devel - purpose-devel - kwindowsystem-devel - kcoreaddons-devel - ki18n-devel - kwidgetsaddons-devel - kdeclarative-devel - kwayland-devel - knotifications-devel - kglobalaccel-devel - qt5-declarative-devel - qt5-svg-devel - kguiaddons-devel - - desktop/kde/applications/spectacle/pspec.xml - - - spectacle - - qt5-base - kio - libkscreen - purpose - xcb-util-cursor - ki18n - libgcc - kconfig - kxmlgui - knewstuff - libkipi - kdeclarative - kservice - kcoreaddons - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdbusaddons - libxcb - xcb-util - kwayland - qt5-x11extras - xcb-util-image - qt5-declarative - qt5-svg - kglobalaccel - kguiaddons - - - /etc/xdg - /usr/bin - /usr/share - /usr/share/doc - /usr/lib - - - ksnapshot - - - ksnapshot - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-31 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwave - http://kwave.sourceforge.net/ - - Stefan Gronewold - groni@pisilinux.org - - GPL - desktop.kde.applications - A sound editor for KDE - With Kwave you can record, play back, import and edit many sorts of audio files including multi channel files.Kwave includes some plugins to transform audio files in several ways and presents a graphical view with a complete zoom- and scroll capability. - http://download.kde.org/stable/release-service/22.04.1/src/kwave-22.04.1.tar.xz - - doxygen - extra-cmake-modules - kdoctools-devel - librsvg-devel - qt5-base-devel - qt5-multimedia-devel - kwidgetsaddons-devel - kxmlgui-devel - kio-devel - audiofile-devel - libsamplerate-devel - alsa-lib-devel - flac-devel - libopus-devel - libogg-devel - libvorbis-devel - fftw3-devel - id3lib-devel - libmad-devel - karchive-devel - ktextwidgets-devel - kiconthemes-devel - pulseaudio-libs-devel - - desktop/kde/applications/kwave/pspec.xml - - - kwave - A sound editor for KDE - - kio - flac - fftw3 - ki18n - id3lib - libmad - kcrash - karchive - libgcc - libogg - kconfig - kxmlgui - libopus - alsa-lib - kservice - qt5-base - audiofile - libvorbis - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - ktextwidgets - libsamplerate - kconfigwidgets - kwidgetsaddons - qt5-multimedia - pulseaudio-libs - - - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-17 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-09 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kmplot - http://kde.org/applications/education/kmplot/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.edu - Mathematical Function Plotter - KmPlot is a program to draw graphs, their integrals or derivatives. It supports different systems of coordinates like the Cartesian or the polar coordinate system. The graphs can be colorized and the view is scalable, so that you are able to zoom to the level you need. - mirrors://kde/stable/release-service/22.04.1/src/kmplot-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - kdelibs4-support-devel - kdoctools-devel - ki18n-devel - kinit-devel - kunitconversion-devel - kdelibs4-support-devel - kparts-devel - kwidgetsaddons-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - qt5-base-devel - - desktop/kde/applications/kmplot/pspec.xml - - - kmplot - Mathematical Function Plotter - - kdelibs4-support - ki18n - kparts - kwidgetsaddons - qt5-base - qt5-svg - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - - - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-01 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkdepim - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.applications - Libraries for KDE PIM applications - Libraries for KDE PIM applications - mirrors://kde/stable/release-service/22.04.1/src/libkdepim-22.04.1.tar.xz - - qt5-base-devel - qt5-designer-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - akonadi-devel - kjobwidgets-devel - kitemmodels-devel - kunitconversion-devel - kemoticons-devel - kinit-devel - solid-devel - cmake - extra-cmake-modules - boost-devel - kmime-devel - kcmutils-devel - kldap-devel - kio-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kwidgetsaddons-devel - cyrus-sasl-devel - kcontacts-devel - akonadi-contacts-devel - akonadi-search-devel - akonadi-mime-devel - - desktop/kde/applications/libkdepim/pspec.xml - - - libkdepim - - kio - ki18n - kldap - libgcc - akonadi - kcodecs - kconfig - kwallet - kcmutils - qt5-base - qt5-designer - kcontacts - kitemviews - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - akonadi-search - akonadi-contacts - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - /etc - - - - libkdepim-devel - Development files for libkdepim - - libkdepim - qt5-base-devel - qt5-designer-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-27 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-19 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - Rebuild - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - krfb - http://www.kde.org/applications/system/krfb/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.applications - Desktop sharing utility - Masaüstü paylaşım araçları. - KDE Desktop Sharing is a manager for easily sharing a desktop session with another system. The desktop session can be viewed or controlled remotely by any VNC or RFB client - krfb, masaüstünü uzaktaki bilgisayarlarla kolaylıkla paylaşmaya olanak sağlar. - mirrors://kde/stable/release-service/22.04.1/src/krfb-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-x11extras-devel - ki18n-devel - kcompletion-devel - kconfig-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdnssd-devel - kdoctools-devel - knotifications-devel - kwallet-devel - kwidgetsaddons-devel - kxmlgui-devel - libvncserver-devel - libX11-devel - libXdamage-devel - libxcb-devel - libXext-devel - libXtst-devel - kwindowsystem-devel - xcb-util-image-devel - kwayland-devel - - desktop/kde/applications/krfb/pspec.xml - - - krfb - - ki18n - kdnssd - libX11 - libxcb - libgcc - kconfig - kwallet - kxmlgui - libXtst - kwayland - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libvncserver - qt5-x11extras - kconfigwidgets - knotifications - kwindowsystem - kwidgetsaddons - xcb-util-image - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/krfb - /usr/share/kservicetypes5 - /usr/share/icons - /usr/share/doc - /usr/share/locale - /usr/share/metainfo - /usr/share/qlogging-categories5/krfb.categories - - - kdenetwork - - - kdenetwork - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdesdk-thumbnailers - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - library - desktop.kde.sdk - Translation file thumbnail generators - Translation file thumbnail generators - mirrors://kde/stable/release-service/22.04.1/src/kdesdk-thumbnailers-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - ki18n-devel - kio-devel - gettext-devel - - desktop/kde/applications/kdesdk-thumbnailers/pspec.xml - - - kdesdk-thumbnailers - - kio - ki18n - libgcc - gettext - kconfig - qt5-base - kwidgetsaddons - - - /usr/share/kservices5 - /usr/share/config.kcfg - /usr/lib - /usr/share/doc - /usr/share/locale - - - kdesdk - - - kdesdk - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kblocks - https://www.kde.org/applications/games/kblocks/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Falling blocks game - Tetris - KBlocks is the classic falling blocks game. The idea is stack the falling blocks in a way that lines are completely filled. When a line is completed it is removed, and more space is available in the play area. When there is not enough space for blocks to fall, the game is over. - KBlocks klasikleşmiş tetrisin bir yeniden yapımıdır. Oyunun amacı düşen parçaları en uygun şekilde dizmektir. Bir satır tamamen dolduktan sonra silinmektedir ve daha fazla oyun alanı açılmaktadır. Yeni parçaları koyacak yeriniz kalmadığında oyun bitmektedir. - kblocks - mirrors://kde/stable/release-service/22.04.1/src/kblocks-22.04.1.tar.xz - - extra-cmake-modules - qt5-svg-devel - qt5-base-devel - kdoctools-devel - ki18n-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kemoticons-devel - - desktop/kde/applications/kblocks/pspec.xml - - - kblocks - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - qt5-phonon - kcoreaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - filelight - http://utils.kde.org/projects/filelight - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - View disk usage information - View disk usage information - Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. - Filelight allows you to quickly understand exactly where your diskspace is being used by graphically representing your file system as a set of concentric segmented-rings. - filelight - mirrors://kde/stable/release-service/22.04.1/src/filelight-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-script-devel - kdoctools-devel - extra-cmake-modules - kio-devel - kparts-devel - solid-devel - kxmlgui-devel - kcoreaddons-devel - ki18n-devel - mesa-devel - docbook-xsl - - desktop/kde/applications/filelight/pspec.xml - - - filelight - - qt5-svg - qt5-base - kparts - kio - ki18n - solid - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - dolphin-plugins - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - desktop.kde.sdk - Extra dolphin plugins - Dolphin eklentileri. - This package contains plugins that offer integration in Dolphin with the following version control systems: - Dolphin için VCS (Version Control System) eklentileri. - mirrors://kde/stable/release-service/22.04.1/src/dolphin-plugins-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - dolphin-devel - kio-devel - kdelibs4-support-devel - extra-cmake-modules - - desktop/kde/applications/dolphin-plugins/pspec.xml - - - dolphin-plugins - - qt5-base - dolphin - kio - ki18n - libgcc - kconfig - kxmlgui - kservice - ktexteditor - kwidgetsaddons - kcompletion - kcoreaddons - ktextwidgets - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - umbrello - http://www.kde.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv2 - app:gui - desktop.kde.sdk - UML modelling tool and code generator - UML modelleme aracı ve kod üreticisi. - Umbrello UML Modeller is a Unified Modelling Language diagram editor for KDE. - umbrello UML (Unified Modellin Language) modelleme ve diyagram editörüdür. - mirrors://kde/stable/release-service/22.04.1/src/umbrello-22.04.1.tar.xz - - qt5-base-devel - qt5-webkit-devel - libxslt-devel - qt5-svg-devel - kio-devel - kparts-devel - kinit-devel - kcompletion-devel - kxmlgui-devel - kauth-devel - kconfig-devel - ktexteditor-devel - kcoreaddons-devel - kdoctools-devel - docbook-xsl - extra-cmake-modules - kwindowsystem-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - llvm - llvm-clang-devel - llvm-mlir - llvm-polly - - desktop/kde/applications/umbrello/pspec.xml - - - umbrello - - qt5-base - qt5-webkit - kio - ki18n - kcrash - libgcc - kconfig - kxmlgui - libxml2 - qt5-svg - karchive - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - ktextwidgets - kconfigwidgets - kwidgetsaddons - ktexteditor - libxslt - kwindowsystem - llvm-mlir - llvm-polly - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-24 - 20.08.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kblog - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - A blogging library for KDE - KBlog is a library for calling functions on Blogger 1.0, MetaWeblog, MovableType and GData compatible blogs. It calls the APIs using KXmlRpcClient and Syndication. - mirrors://kde/stable/release-service/20.04.3/src/kblog-20.04.3.tar.xz - - qt5-base-devel - extra-cmake-modules - kdoctools-devel - kcoreaddons-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - qt5-webkit-devel - kcalutils-devel - ksyndication-devel - kxmlrpcclient-devel - kcalendarcore-devel - ksyndication-devel - - desktop/kde/applications/kblog/pspec.xml - - - kblog - - qt5-base - kcalendarcore - kxmlrpcclient - kio - ki18n - libgcc - kcoreaddons - ksyndication - - - /etc/xdg - /usr/lib/qt5 - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - - - - kblog-devel - Development files for kblog - - qt5-base-devel - kblog - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - audiocd-kio - https://www.kde.org/applications/multimedia/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - GPL - LGPL - desktop.kde.applications - Kioslave for accessing audio CDs - Kioslave for accessing audio CDs - https://download.kde.org/stable/release-service/22.04.1/src/audiocd-kio-22.04.1.tar.xz - - cdparanoia-devel - flac-devel - gettext-devel - kconfig-devel - kdelibs4-support-devel - kdoctools-devel - kio-devel - lame-devel - libkcompactdisc-devel - libvorbis-devel - qt5-base-devel - ki18n-devel - qt5-phonon-devel - extra-cmake-modules - libogg-devel - kcompletion-devel - kcoreaddons-devel - kconfigwidgets-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - libkcddb - kcmutils-devel - - desktop/kde/applications/audiocd-kio/pspec.xml - - - audiocd-kio - Kioslave for accessing audio CDs - - cdparanoia - flac - lame - libkcompactdisc - libvorbis - qt5-base - qt5-phonon - kio - ki18n - libgcc - libogg - kconfig - kcmutils - kcompletion - kcoreaddons - kconfigwidgets - kdelibs4-support - libkcddb - - - /etc/xdg - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - audiocd-kio-devel - Development files for audiocd-kio - - audiocd-kio - qt5-base-devel - - - /usr/include - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.11.80 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-09 - 16.08.2_20161106 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kdiamond - https://www.kde.org/applications/games/kdiamond/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Three in a row game - Bir satırda üç oyunu - KDiamond is a single player puzzle game. The object of the game is to build lines of three similar diamonds. - KDiamond benzer elmaslardan üç tanesinin yan yana getirilmesini konu edinen tek kişilik bir bulmaca oyunudur. - kdiamond - mirrors://kde/stable/release-service/22.04.1/src/kdiamond-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kdoctools-devel - kwidgetsaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kxmlgui-devel - knotifications-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - docbook-xsl - - desktop/kde/applications/kdiamond/pspec.xml - - - kdiamond - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdenlive - https://kdenlive.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.multimedia - A video editing GUI for KDE4 using the MLT video framework - MLT video yapısı kullanan, KDE için bir video düzenleme uygulaması - Nieliniowy edytor wideo - Kdenlive est multi-piste, gère une liste de clips et gère les doubles moniteurs vidéos. Il fournit également entre autres un support de couches personnalisables ainsi que des effets et des transitions de base. - kdenlive provides dual video monitors, a multi-track timeline and clip list. Other features include customizable layout support, basic effects and transitions. - kdenlive, ikili video izleyicileri, çoklu parça zaman çizelgesi ve klip listesi sunmaktadır. Diğer özellikler arasında özelleştirilebilir düzenleme desteği, temel efektler ve geçişler sayılabilir. - Kdenlive jest nieliniowym pakietem do edycji wideo obsługującym DV, HDC i wiele innych formatów. - mirrors://kde/stable/release-service/22.04.1/src/kdenlive-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-script-devel - ladspa-sdk-devel - qt5-svg-devel - qt5-webkit-devel - qt5-location-devel - karchive-devel - kbookmarks-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - kfilemetadata-devel - libv4l-devel - kio-devel - ffmpeg-devel - sdl-image-devel - kwidgetsaddons-devel - kplotting-devel - knotifyconfig-devel - knewstuff-devel - kxmlgui-devel - knotifications-devel - kguiaddons-devel - ktextwidgets-devel - kiconthemes-devel - kdoctools-devel - mlt-devel - purpose-devel - frei0r-plugins-devel - qt5-declarative-devel - qt5-multimedia-devel - qt5-quickcontrols2-devel - qt5-webengine-devel - qt5-networkauth-devel - kdeclarative-devel - kcrash-devel - - desktop/kde/applications/kdenlive/pspec.xml - - - kdenlive - - kio - mlt - cdrkit - ki18n - solid - kcrash - libgcc - ffmpeg - kconfig - kxmlgui - kdeclarative - qt5-svg - karchive - kservice - qt5-base - knewstuff - kplotting - sdl-image - dvdauthor - kbookmarks - kguiaddons - kitemviews - qt5-script - qt5-webkit - ladspa-sdk - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - qt5-location - ktextwidgets - kfilemetadata - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - frei0r-plugins - purpose - qt5-declarative - qt5-quickcontrols - qt5-quickcontrols2 - qt5-multimedia - qt5-webengine - qt5-networkauth - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/man - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-09 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-05 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-04-13 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-25 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kqtquickcharts - https://edu.kde.org/ - - Stefan Gronewold - groni@pisilinux.org - - FDL - LGPL - GPL - desktop.kde.applications - A QtQuick plugin to render beautiful and interactive charts - A QtQuick plugin to render beautiful and interactive charts - mirrors://kde/stable/release-service/22.04.1/src/kqtquickcharts-22.04.1.tar.xz - - extra-cmake-modules - glibc-devel - qt5-base-devel - qt5-declarative-devel - - desktop/kde/applications/kqtquickcharts/pspec.xml - - - kqtquickcharts - A QtQuick plugin to render beautiful and interactive charts - - qt5-base - qt5-declarative - libgcc - - - /usr/lib/qt5 - /usr/share/doc - - - - kqtquickcharts-devel - Development files for kqtquickcharts - - kqtquickcharts - qt5-base-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-05 - 16.11.90 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kreport - http://www.kexi-project.org/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:console - desktop.kde.applications - A framework for creation and generation of reports in multiple formats - A framework for creation and generation of reports in multiple formats - https://download.kde.org/stable/kreport/src/kreport-3.2.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - qt5-webkit-devel - qt5-linguist - kproperty-devel - kconfig-devel - kguiaddons-devel - kwidgetsaddons-devel - kcoreaddons-devel - marble-devel - ki18n-devel - qt5-webengine-devel - - desktop/kde/applications/kreport/pspec.xml - - - kreport - A framework for creation and generation of reports in multiple formats - - libgcc - marble - kconfig - qt5-base - kproperty - qt5-webkit - kcoreaddons - kwidgetsaddons - qt5-declarative - qt5-webengine - - - /usr/share - /usr/lib/libKReport3* - /usr/lib/cmake - /usr/lib/qt5 - - - - kreport-devel - Developments files for kreport. - - kreport - qt5-base-devel - kproperty-devel - qt5-webkit-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-05-17 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-14 - 3.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-11 - 3.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 3.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-11 - 3.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 3.1.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-10 - 3.1.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 3.0.2 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-14 - 3.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-30 - 3.0.1 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-31 - 3.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - konsole - https://projects.kde.org/projects/kde/applications/dolphin - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.applications - KDE Konsole - Konsole for KDE5 - mirrors://kde/stable/release-service/22.04.1/src/konsole-22.04.1.tar.xz - - qt5-base-devel - qt5-script-devel - kpty-devel - kio-devel - kinit-devel - knotifyconfig-devel - kparts-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kunitconversion-devel - docbook-xsl - extra-cmake-modules - kdoctools-devel - kcrash-devel - kdbusaddons-devel - knewstuff-devel - kglobalaccel-devel - cmake - kguiaddons-devel - knotifications-devel - - desktop/kde/applications/konsole/pspec.xml - - - konsole - - libgcc - qt5-base - kiconthemes - knotifyconfig - knotifications - kparts - kpty - kio - ki18n - kconfig - kxmlgui - kservice - kcrash - kdbusaddons - kbookmarks - knewstuff - kguiaddons - kcompletion - kcoreaddons - kjobwidgets - ktextwidgets - kwindowsystem - kconfigwidgets - kwidgetsaddons - kglobalaccel - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - knavalbattle - https://www.kde.org/applications/games/knavalbattle/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Naval Battle game - Amiral Battı oyunu - knavalbattle is a Battle Ship game for KDE. Ships are placed on a board which represents the sea. Players try to hit each others ships in turns without knowing where they are placed. The first player to destroy all ships wins the game. - KBattleship KDE için bir Amiral Battı oyunudur. Gemiler denizi temsil eden oyun tahtasına yerleştirilir ve oyuncular rakiplerinin gemilerinin yerleşimini tahmin ederek gemileri vurmaya çalışır. Rakibinin tüm gemilerini daha önce batıran oyuncu kazanır. - knavalbattle - mirrors://kde/stable/release-service/22.04.1/src/knavalbattle-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kconfig-devel - kdbusaddons-devel - kdnssd-devel - ki18n-devel - kxmlgui-devel - kdoctools-devel - ktextwidgets-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/knavalbattle/pspec.xml - - - knavalbattle - - ki18n - kdnssd - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kwidgetsaddons - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/kconf_update - /usr/share/knavalbattle - /usr/share/kservices5 - /usr/share/kxmlgui5 - /usr/share/doc - /usr/share/locale - /usr/share/qlogging-categories5 - /usr/share/metainfo/org.kde.knavalbattle.appdata.xml - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - marble - http://edu.kde.org/applications/all/marble - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.applications - Virtual globe and eorld atlas - Sanal küre ve Dünya atlası - Marble is a virtual globe and world atlas that you can use to learn more about the Earth. - Marble, sanal küre ve Dünya atlası uygulamasıdır. - marble - mirrors://kde/stable/release-service/22.04.1/src/marble-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-webkit-devel - qt5-designer-devel - qt5-script-devel - qt5-svg-devel - qt5-declarative-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - qt5-location-devel - qt5-linguist - qt5-webengine-devel - kdoctools-devel - qt5-phonon-devel - kio-devel - quazip-devel - kwallet-devel - knewstuff-devel - kparts-devel - kcoreaddons-devel - ki18n-devel - kconfig-devel - krunner-devel - kservice-devel - libwlocate-devel - shared-mime-info - qt5-serialport-devel - plasma-desktop - - desktop/kde/applications/marble/pspec.xml - - - marble - - kio - zlib - ki18n - kcrash - kparts - libgcc - kconfig - krunner - kxmlgui - qt5-svg - qt5-base - knewstuff - libwlocate - qt5-phonon - qt5-script - qt5-webkit - kcoreaddons - qt5-location - kconfigwidgets - kwidgetsaddons - qt5-declarative - qt5-serialport - - - /usr/lib - /usr/bin - /usr/share - /usr/share/appdata - /usr/share/applications - /usr/share/config.kcfg - /usr/share/doc - /usr/share/icons - /usr/share/kservices5 - /usr/share/kxmlgui5 - /usr/share/marble - /etc/xdg - - - - marble-devel - Development files for marble - marble için geliştirme dosyaları - - marble - - - /usr/include - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-08-03 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-28 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkgapi - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:library - desktop.kde.applications - Google API library for KDE - A KDE-based library for accessing various Google services via their public API - https://download.kde.org/stable/release-service/22.04.1/src/libkgapi-22.04.1.tar.xz - - qt5-base-devel - kcoreaddons-devel - libical-devel - gettext-devel - qt5-xmlpatterns-devel - extra-cmake-modules - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcontacts-devel - kwindowsystem-devel - kio-devel - kcalendarcore-devel - kdoctools-devel - qt5-linguist - qt5-location-devel - qt5-webengine-devel - ffmpeg-devel - libXScrnSaver-devel - cyrus-sasl-devel - kwallet-devel - - desktop/kde/applications/libkgapi/pspec.xml - - - libkgapi - - qt5-base - kcalendarcore - kcontacts - kio - libgcc - kwallet - kwindowsystem - qt5-webengine - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - libkgapi-devel - Development files for libkgapi - - qt5-base-devel - kcalendarcore-devel - kcontacts-devel - kio-devel - kwindowsystem-devel - libkgapi - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-17 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-10-12 - 5.3.1 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-23 - 5.1.0 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-11-26 - 5.1.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdb - http://www.kexi-project.org/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.applications - A database connectivity and creation framework for various database vendors. - Çeşitli veritabanı üreticileri için veritabanı bağlantısı oluşturma çerçevesi. - A database connectivity and creation framework for various database vendors - https://download.kde.org/stable/kdb/src/kdb-3.2.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-linguist - kcoreaddons-devel - icu4c-devel - ki18n-devel - sqlite-devel - mariadb-lib - mariadb-client - postgresql-lib - - - kdb-3.2.0-build-w-pg12.patch - kdb-3.2.0-cmake-pg12.patch - kdb-3.2.0-cmake-pg13.patch - kdb-3.2.0-qt-5.15.patch - kdb-3.2.0-KDEInstallDirs.patch - - desktop/kde/applications/kdb/pspec.xml - - - kdb - A database connectivity and creation framework for various database vendors. - - icu4c - libgcc - sqlite - qt5-base - kcoreaddons - mariadb-lib - postgresql-lib - - - /usr/bin - /usr/lib/qt5 - /usr/lib/libKDb3* - /usr/share/locale - - - - kdb-devel - Development files for kdb. - - kdb - - - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include - - - - - 2022-05-17 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2022-05-07 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2022-01-10 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2021-10-15 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2021-09-13 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2021-06-16 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2021-03-10 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2020-09-12 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2020-06-11 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2020-05-06 - 3.2.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2020-03-30 - 3.2.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2020-02-02 - 3.2.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-09-15 - 3.2.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-07-22 - 3.2.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-04-18 - 3.2.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-03-11 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-02-14 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-01-11 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-12-26 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-11-08 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-10-18 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-09-10 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-08-11 - 3.0.2 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-03 - 3.0.2 - Rebuild - Mustafa Cinasl - muscnsl@gmail.com - - - 2017-10-14 - 3.0.2 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2017-07-17 - 3.0.93 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 3.0.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-06 - 3.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - granatier - https://www.kde.org/applications/games/granatier/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - A Bomberman game - Bombalama macera oyunu - Granatier is a clone of the classic Bomberman game, inspired by the work of the Clanbomber clone. - granatier, oyuncunun yüksekliği her turda azalan bir uçak içinde şehirlere hücum ettiği tek kişilik bir macera oyunudur. - granatier - mirrors://kde/stable/release-service/22.04.1/src/granatier-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - mesa-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kdbusaddons-devel - kwidgetsaddons-devel - ki18n-devel - kxmlgui-devel - knewstuff-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/granatier/pspec.xml - - - granatier - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - knewstuff - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /etc/xdg - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - incidenceeditor - https://community.kde.org/KDE_PIM - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv2 - app:console - desktop.kde.applications - KDE PIM incidence editor. - KDE PIM incidence editor. - http://download.kde.org/stable/release-service/22.04.1/src/incidenceeditor-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - akonadi-devel - kcompletion-devel - kjobwidgets-devel - kcoreaddons-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kdoctools-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - boost-devel - kmime-devel - kldap-devel - cyrus-sasl-devel - calendarsupport-devel - kidentitymanagement-devel - akonadi-calendar-devel - kcalendarcore-devel - kcontacts-devel - eventviews-devel - kcalutils-devel - kdiagram-devel - kmailtransport-devel - libkdepim-devel - akonadi-mime-devel - akonadi-contacts-devel - pimcommon-devel - kimap-devel - kiconthemes-devel - - desktop/kde/applications/incidenceeditor/pspec.xml - - - incidenceeditor - KDE PIM incidence editor. - - kio - ki18n - kldap - kmime - kimap - libgcc - akonadi - kcodecs - kconfig - kxmlgui - kdiagram - kservice - kcalutils - kcontacts - libkdepim - pimcommon - eventviews - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - kpimtextedit - ktextwidgets - akonadi-mime - kcalendarcore - kconfigwidgets - kmailtransport - kwidgetsaddons - calendarsupport - akonadi-contacts - akonadi-calendar - kidentitymanagement - qt5-base - - - /etc/xdg - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/locale - - - - incidenceeditor-devel - Development files for incidenceeditor. - - incidenceeditor - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-14 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-07 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-10 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-22 - 16.04.0 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - kalgebra - https://www.kde.org/applications/education/kalgebra/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - desktop.kde.edu - A graph calculator - Bir grafiksel hesap makinesi - KAlgebra is a fully featured calculator that lets you plot different types of 2D and 3D functions and to calculate easy and not so easy calculations, such as addition, trigonometric functions or derivatives. - KAlgebra, farklı farklı 2B ve 3B fonksiyonları çizmek, kolay ve o kadar da kolay olmayan trigonometrik veya türev gibi hesaplamaları yapmak için bir uygulamadır. - kalgebra - mirrors://kde/stable/release-service/22.04.1/src/kalgebra-22.04.1.tar.xz - - mesa-devel - mesa-glu-devel - qt5-base-devel - qt5-declarative - qt5-svg-devel - qt5-webkit-devel - qt5-location-devel - analitza-devel - kdoctools-devel - ncurses-devel - readline-devel - gettext-devel - ki18n-devel - kconfigwidgets-devel - kwidgetsaddons-devel - kio-devel - extra-cmake-modules - qt5-webengine-devel - ffmpeg-devel - libXScrnSaver-devel - - desktop/kde/applications/kalgebra/pspec.xml - - - kalgebra - - qt5-base - qt5-declarative - qt5-webkit - qt5-location - analitza - libgcc - kconfig - kxmlgui - readline - kcoreaddons - ki18n - kconfigwidgets - kwidgetsaddons - kio - qt5-webengine - - - /usr/share/doc - /usr/bin - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdiagram - http://www.kde.org/ - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Powerful libraries for creating business diagrams - Powerful libraries for creating business diagrams - https://download.kde.org/stable/kdiagram/2.8.0/kdiagram-2.8.0.tar.xz - - extra-cmake-modules - qt5-assistant-devel - qt5-base-devel - qt5-designer-devel - qt5-linguist - qt5-svg-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-odbc - - desktop/kde/applications/kdiagram/pspec.xml - - - kdiagram - Powerful libraries for creating business diagrams - - libgcc - qt5-base - qt5-svg - - - /usr/lib - /usr/lib/qt5 - /usr/share/locale - /usr/share/doc - - - - kdiagram-devel - Development files for kdiagram - - kdiagram - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 2.8.0 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2021-03-10 - 2.8.0 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-09-13 - 2.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 2.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 2.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 2.6.2 - Version bump - Ertuğrul Erata - muscnsl@gmail.com - - - 2020-02-02 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-09-15 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-18 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-14 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-11 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 2.6.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-04-18 - 2.6.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-04 - 2.6.0 - Version no fix. - Kamil Atlı - suvari@pisilinux.org - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-19 - 16.12.0 - Rebuild. - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kbounce - https://www.kde.org/applications/games/kbounce/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Ball bouncing game - Top zıplatma oyunu - KBounce is a single player arcade game with the elements of puzzle. It is played on a field, surrounded by walls, with two or more balls that move about in the field bouncing off of walls. The player can build new walls, decreasing the size of the active field. The goal of the game is to fill at least 75% of the field and advance to the next level. - KBounce, Volfied'in oynaniş tarzına benzeyen tek kişilik bir bulmaca - macera oyunudur. Oyuncu iki veya daha fazla topun oradan oraya zıpladığı duvarlarla kaplı bir alanda yeni duvarlar inşa ederek ve toplara yakalanmamaya çalışarak aktif alanın en azından %75'ini kapatmaya çalışmaktadır. - kbounce - mirrors://kde/stable/release-service/22.04.1/src/kbounce-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kconfigwidgets-devel - kiconthemes-devel - kcompletion-devel - ktextwidgets-devel - kxmlgui-devel - kio-devel - knotifyconfig-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kbounce/pspec.xml - - - kbounce - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - qt5-base - kcompletion - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkexiv2 - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - An Exiv2 wrapper library - Exiv2 sarmalayıcı kitaplığı - libkexiv2 is a wrapper around Exiv2 library to manipulate pictures metadata as EXIF/IPTC and XMP. - libkexiv2, EXIF/IPTC ve XMP gibi resim meta bilgilerini düzenlemek için kullanılan Exiv2 kitaplığını sarmalayan bir kitaplıktır. - mirrors://kde/stable/release-service/22.04.1/src/libkexiv2-22.04.1.tar.xz - - extra-cmake-modules - cmake - exiv2-devel - qt5-base-devel - - desktop/kde/applications/libkexiv2/pspec.xml - - - libkexiv2 - - qt5-base - exiv2-libs - libgcc - - - /usr/lib - /usr/bin - /usr/share/qlogging-categories5/libkexiv2.categories - - - - libkexiv2-devel - Development files for libkexiv2 - libkexiv2 için geliştirme dosyaları - - libkexiv2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 17.08.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-12 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kalzium - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - desktop.kde.applications - Periodic Table of Elements - Periodic Table of Elements - Elementlerin periyodik tablosu - Elementlerin periyodik tablosu - https://download.kde.org/stable/release-service/22.04.1/src/kalzium-22.04.1.tar.xz - - cmake - eigen3 - ocaml - kio-devel - khtml-devel - ki18n-devel - kinit-devel - kconfig-devel - kxmlgui-devel - qt5-svg-devel - qt5-base-devel - kitemmodels-devel - kemoticons-devel - kplotting-devel - kitemviews-devel - kdoctools-devel - qt5-script-devel - kcompletion-devel - kcoreaddons-devel - ktextwidgets-devel - kdesignerplugin - kconfigwidgets-devel - kwidgetsaddons-devel - kunitconversion-devel - kdelibs4-support-devel - extra-cmake-modules - - desktop/kde/applications/kalzium/pspec.xml - - - kalzium - - kio - khtml - ki18n - kconfig - kxmlgui - qt5-svg - qt5-base - kplotting - kitemviews - qt5-script - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - kwidgetsaddons - kunitconversion - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/doc - - - - kalzium-devel - Development files for kalzium - - kalzium - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-27 - 18.12.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - baloo-widgets - https://www.kde.org - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - Framework for searching and managing metadata - Baloo is a framework for searching and managing metada - mirrors://kde/stable/release-service/22.04.1/src/baloo-widgets-22.04.1.tar.xz - - baloo-devel - extra-cmake-modules - kconfig-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kfilemetadata-devel - kinit-devel - kio-devel - ki18n-devel - kitemmodels-devel - kunitconversion-devel - qt5-base-devel - - desktop/kde/applications/baloo-widgets/pspec.xml - - - baloo-widgets - Development files for baloo-widgets - - baloo - kconfig - kcoreaddons - kfilemetadata - ki18n - kio - kwidgetsaddons - libgcc - qt5-base - - - /etc - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - /usr/share/locale - - - - baloo-widgets-devel - Development files for baloo-widgets - - baloo-widgets - qt5-base-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-07 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - keditbookmarks - https://github.com/KDE/keditbookmarks - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Bookmark Organizer and Editor - Bookmark Organizer and Editor - mirrors://kde/stable/release-service/22.04.1/src/keditbookmarks-22.04.1.tar.xz - - extra-cmake-modules - gettext-devel - glibc-devel - kbookmarks-devel - kcoreaddons-devel - kdoctools-devel - ki18n-devel - kiconthemes-devel - kio-devel - kparts-devel - kwindowsystem-devel - python-devel - qt5-base-devel - - desktop/kde/applications/keditbookmarks/pspec.xml - - - keditbookmarks - Bookmark Organizer and Editor - - kbookmarks - ki18n - kio - kparts - qt5-base - libgcc - kconfig - kxmlgui - kservice - kcompletion - kcoreaddons - kiconthemes - kwindowsystem - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - kde-baseapps - - - kde-baseapps - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-03 - 16.11.90 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kdepim-runtime - https://community.kde.org/KDE_PIM - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - app:gui - desktop.kde.applications - KDE5 PIM Runtime Environment - KDE5 PIM (Kişisel Bilgi Yönetimi) çalışma zamanı ortamı - kdepim-runtime contains KDE5 PIM (Personal Information Management) runtime environment like akonadi agents. - kdepim-runtime, kdelibs kullanarak yazılmış olan Akonadi ajanları da dahil olmak üzere KDE5 PIM (Personal Information Management - Kişisel Bilgi Yönetimi) çalışma zamanı ortamını içerir. - kontact - mirrors://kde/stable/release-service/22.04.1/src/kdepim-runtime-22.04.1.tar.xz - - kdoctools-devel - boost-devel - shared-mime-info - akonadi-devel - akonadi-calendar-devel - akonadi-search-devel - kcmutils-devel - kdelibs4-support-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - knotifyconfig-devel - kross-devel - kmailtransport-devel - kidentitymanagement-devel - kalarm - kcalutils-devel - kmbox-devel - kimap-devel - libkgapi-devel - kholidays-devel - ksyndication-devel - pimcommon-devel - cyrus-sasl-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-webkit-devel - qt5-webengine-devel - extra-cmake-modules - qt5-location-devel - qt5-networkauth-devel - akonadi-mime-devel - akonadi-notes-devel - akonadi-contacts-devel - qt5-speech-devel - kdav-devel - ffmpeg-devel - kldap-devel - libkdepim-devel - libXScrnSaver-devel - qca2-qt5-devel - qt5-keychain-devel - - desktop/kde/applications/kdepim-runtime/pspec.xml - - - kdepim-runtime - - akonadi - libkgapi - kio - ki18n - kimap - kmbox - kmime - libgcc - kcodecs - kconfig - kwallet - kxmlgui - kcalendarcore - kcmutils - kservice - qt5-base - kalarm - kcalutils - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kitemmodels - pimcommon - kcontacts - kjobwidgets - knotifyconfig - kwindowsystem - kconfigwidgets - kmailtransport - ktextwidgets - knotifications - kwidgetsaddons - qt5-speech - qt5-xmlpatterns - akonadi-calendar - kdelibs4-support - cyrus-sasl - akonadi-mime - akonadi-notes - qt5-webengine - qt5-networkauth - akonadi-contacts - kidentitymanagement - kdav - kldap - libkdepim - qt5-keychain - - - /etc/xdg - /usr/lib - /usr/bin - /usr/share - /usr/share/mime - /usr/share/kservicetypes5 - /usr/share/kservices5 - /usr/share/knotifications5 + /usr/share/help + /usr/share/mate /usr/share/icons /usr/share/dbus-1 - /usr/share/akonadi - /usr/share/ontology - /usr/share/autostart + /usr/share/sounds + /usr/lib + /usr/share/mate-2.0 + /usr/share/glib-2.0 + /usr/share/mate-media + /usr/share/mate-panel + /etc/xdg/autostart/ /usr/share/applications - /usr/share/doc /usr/share/locale - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2016-10-22 - 16.08.2 + 2021-09-07 + 1.26.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-10-11 - 16.08.1 + 2020-08-23 + 1.25.0 Version bump. - Stefan Gronewold - groni@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-07-31 - 16.04.3 + 2020-06-29 + 1.24.0 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-05-19 - 16.04.0 + 2020-03-31 + 1.24.0 Version bump. - Burak Ertürk - burakerturk@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-03-20 - 15.12.3 + 2020-02-13 + 1.22.2 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - kalarm - https://community.kde.org/KDE_PIM + mate-menus + http://www.mate-desktop.org - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Personal alarm scheduler - KAlarm is a personal alarm message, audio, command and email scheduler - http://download.kde.org/stable/release-service/22.04.1/src/kalarm-22.04.1.tar.xz - - akonadi-contacts-devel - akonadi-devel - akonadi-mime-devel - extra-cmake-modules - kauth-devel - kcalendarcore-devel - kcalutils-devel - kcmutils-devel - kcodecs-devel - kcompletion-devel - kconfig-devel - kconfigwidgets - kdbusaddons-devel - kdelibs4-support-devel - kdoctools-devel - kguiaddons-devel - kholidays-devel - ki18n-devel - kiconthemes-devel - kidentitymanagement-devel - kio-devel - kjobwidgets-devel - kmime-devel - knotifications-devel - kpimtextedit-devel - kservice-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - libX11-devel - libkdepim-devel - libxslt-devel - mailcommon-devel - pimcommon-devel - qt5-base-devel - qt5-phonon-devel - qt5-x11extras-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kitemmodels-devel - kcontacts-devel - messagelib-devel - kimap-devel - cyrus-sasl-devel - libkleo-devel - gpgme-devel - kmailtransport-devel - kidletime-devel - knotifyconfig-devel - - desktop/kde/applications/kalarm/pspec.xml - - - kalarm - Personal alarm scheduler - - kio - kauth - ki18n - kmime - libgcc - akonadi - kcodecs - kconfig - kxmlgui - kcalendarcore - kservice - kcalutils - kcontacts - kholidays - libkdepim - pimcommon - kguiaddons - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets - akonadi-mime - kpimtextedit - ktextwidgets - kwindowsystem - kconfigwidgets - kmailtransport - knotifications - kwidgetsaddons - akonadi-contacts - kdelibs4-support - kidentitymanagement - qt5-base - kidletime - knotifyconfig - - - /etc/dbus-1 - /etc/xdg - /usr/lib - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-09 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-04 - 17.04.2 - Version bummp. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-27 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kcolorchooser - http://www.kde.org/applications/graphics/kcolorchooser - - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv2 app:gui - desktop.kde.graphics - A simple color chooser application - Basit bir renk seçme uygulaması - KColorChooser is a simple color chooser application. - KColorChooser, basit bir renk seçme uygulamasıdır. - kcolorchooser - mirrors://kde/stable/release-service/22.04.1/src/kcolorchooser-22.04.1.tar.xz + desktop.mate + Mate Menus + Mate menüleri + mate-menus has got desktop-directories, Mate menus library and its python bindings. + mate-menus, Mate masaüstü dizinlerini, kitaplıklarını ve python bağlayıcılarını içerir. + http://pub.mate-desktop.org/releases/1.26/mate-menus-1.26.0.tar.xz - extra-cmake-modules - qt5-base-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kiconthemes-devel + intltool + mate-common + python3-devel + gobject-introspection-devel - desktop/kde/applications/kcolorchooser/pspec.xml + desktop/mate/mate-menus/pspec.xml - kcolorchooser + mate-menus - ki18n - libgcc - kxmlgui - qt5-base - kcoreaddons + glib2 - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/doc - /usr/share/metainfo - /usr/share/locale - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-09 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - kmail-account-wizard - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Kmail Account Wizard - Kmail Account Wizard - mirrors://kde/stable/release-service/22.04.1/src/kmail-account-wizard-22.04.1.tar.xz - - gpgme-devel - gpgme-qt5-devel - extra-cmake-modules - kcmutils-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - prison-devel - akonadi-devel - akonadi-search-devel - grantleetheme-devel - kpimtextedit-devel - libkdepim-devel - libkleo-devel - pimcommon-devel - qt5-base-devel - knotifyconfig-devel - ktexteditor-devel - kitemmodels-devel - akonadi-contacts-devel - kidentitymanagement-devel - kldap-devel - cyrus-sasl-devel - kmailtransport-devel - akonadi-mime-devel - mailcommon-devel - messagelib-devel - kimap-devel - kross-devel - knewstuff-devel - knotifications-devel - - desktop/kde/applications/kmail-account-wizard/pspec.xml - - - kmail-account-wizard - Kmail Account Wizard - - kio - gpgme - ki18n - kldap - kmime - kross - kcrash - libgcc - akonadi - kcodecs - kconfig - kwallet - kxmlgui - libkleo - kcmutils - qt5-base - knewstuff - libkdepim - kitemviews - kcoreaddons - kdbusaddons - akonadi-mime - kmailtransport - knotifications - kwidgetsaddons - kidentitymanagement - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-05 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kblackbox - https://www.kde.org/applications/games/kblackbox/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - Blackbox logic game - Blackbox mantık oyunu - KBlackBox is a game of hide and seek played on a grid of boxes. The computer has hidden several balls within this box. By shooting beams into the box and observing where they emerge it is possible to deduce the positions of the hidden balls. - KBlackBox yan yana dizilmiş kutularla oynanan bir saklambaç oyunudur. Bilgisayarın sakladığı topları kutuları lazerle kontrol ederek bulabilirsiniz. - kblackbox - mirrors://kde/stable/release-service/22.04.1/src/kblackbox-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kguiaddons-devel - kiconthemes-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - ktextwidgets-devel - kunitconversion-devel - - desktop/kde/applications/kblackbox/pspec.xml - - - kblackbox - - ki18n - libgcc - kconfig - kxmlgui - qt5-svg - karchive - qt5-base - kcoreaddons - kdbusaddons - libkdegames - ktextwidgets - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kio-extras - https://www.kde.org - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.network - Additional KIO-slaves for KDE5 applications - Additional KIO-slaves for KDE5 applications - mirrors://kde/stable/release-service/22.04.1/src/kio-extras-22.04.1.tar.xz - - qt5-phonon-devel - extra-cmake-modules - karchive-devel - kbookmarks-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdnssd-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kio-devel - kpty-devel - solid-devel - syntax-highlighting-devel - qt5-sql-postgresql - qt5-base-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-svg-devel - libssh - kded-devel - gperf - samba-devel - taglib-devel - libssh-devel - libmtp-devel - openexr-devel - kactivities-devel - khtml-devel - kdsoap-devel - libXcursor-devel - kactivities-stats-devel - libtirpc-devel - libappimage-devel - - desktop/kde/applications/kio-extras/pspec.xml - - - kio-extras - - kio - kpty - khtml - ki18n - samba - solid - kdnssd - kparts - libgcc - libmtp - libssh - taglib - kdsoap - kconfig - kxmlgui - qt5-svg - libtirpc - karchive - kservice - qt5-base - libXcursor - kbookmarks - kguiaddons - qt5-phonon - kactivities - kcoreaddons - kdbusaddons - kiconthemes - openexr-libs - qt5-sql-odbc - qt5-sql-mysql - qt5-sql-sqlite - kconfigwidgets - libappimage - kactivities-stats - qt5-sql-postgresql - syntax-highlighting - kded - - - /etc/xdg - /usr/share - /usr/share/locale - /usr/bin - /usr/lib/qt5 /usr/lib /usr/share/doc + /etc/xdg/menus + /usr/share/mate + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/mate-menus - kio-extras-devel - Development files for kio-extras + mate-menus-devel + mate-menus için geliştirme dosyaları + mate-menus için geliştirme dosyaları - kio-extras + glib2-devel + mate-menus /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-19 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-20 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-11 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-09 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-01 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-common-internals - https://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - Common components for KDE-Telepathy - Common components for KDE-Telepathy - mirrors://kde/stable/release-service/22.04.1/src/ktp-common-internals-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kcoreaddons-devel - knotifications-devel - kio-devel - kwidgetsaddons-devel - kcmutils-devel - knotifyconfig-devel - ktexteditor-devel - kwallet-devel - kconfig-devel - kwindowsystem-devel - kiconthemes-devel - kpeople-devel - signon-devel - kaccounts-integration-devel - telepathy-logger-qt-devel - libaccounts-qt5-devel - telepathy-qt5-devel - libaccounts-glib-devel - libgcrypt-devel - sqlite-devel - qt5-sql-postgresql - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-sqlite - telepathy-mission-control-devel - libotr-devel - - desktop/kde/applications/ktp-common-internals/pspec.xml - - - ktp-common-internals - Common components for KDE-Telepathy - - ki18n - kparts - libgcc - libotr - signon - kconfig - kpeople - kwallet - kxmlgui - kcmutils - kservice - qt5-base - libgcrypt - kcoreaddons - kiconthemes - ktexteditor - knotifyconfig - telepathy-qt5 - kconfigwidgets - knotifications - kwidgetsaddons - libaccounts-qt5 - qt5-declarative - telepathy-logger-qt - kaccounts-integration - - - /usr/bin - /usr/lib/libKTpCommonInternals.so.* - /usr/lib/libKTpModels.so.* - /usr/lib/libKTpLogger.so.* - /usr/lib/libKTpWidgets.so.* - /usr/lib/libKTpOTR.so.* - /usr/lib/ktp-proxy - /usr/lib/qt5 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/knotifications5 - /usr/share/config.kcfg - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/icons - /usr/share/katepart5 - /usr/share/doc - /usr/share/locale - - - - ktp-common-internals-devel - Development files for ktp-common-internals - - ktp-common-internals - libotr-devel - - - /usr/include/KTp - /usr/lib/cmake/KTp - /usr/lib/libKTpCommonInternals.so - /usr/lib/libKTpModels.so - /usr/lib/libKTpLogger.so - /usr/lib/libKTpWidgets.so - /usr/lib/libKTpOTR.so - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdegraphics-thumbnailers - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.graphics - KDE4 thumbnailer library - KDE4 önizleme kitaplıkları - kdegraphics-thumbnailers contains thumbnail-related libraries. - kdegraphics-thumbnailers, önizleme kitaplıklarını içerir. - mirrors://kde/stable/release-service/22.04.1/src/kdegraphics-thumbnailers-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kio-devel - libkdcraw-devel - libkexiv2-devel - kdegraphics-mobipocket-devel - karchive-devel - - desktop/kde/applications/kdegraphics-thumbnailers/pspec.xml - - - kdegraphics-thumbnailers - - kio - libgcc - qt5-base - libkdcraw - libkexiv2 - kdegraphics-mobipocket - karchive - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kmailtransport - https://kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.applications - Mail Transport Service - Mail Transport Service - akonadi - mirrors://kde/stable/release-service/22.04.1/src/kmailtransport-22.04.1.tar.xz - - qt5-base-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcmutils-devel - kmime-devel - akonadi-mime-devel - akonadi-devel - cyrus-sasl-devel - extra-cmake-modules - boost-devel - ksmtp-devel - kwallet-devel - libkgapi-devel - qt5-keychain-devel - - desktop/kde/applications/kmailtransport/pspec.xml - - - kmailtransport - app:console - - qt5-base - ki18n - ksmtp - kio - libgcc - kmime - kconfig - kwallet - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - akonadi - cyrus-sasl - akonadi-mime - libkgapi - qt5-keychain - - - /etc/xdg - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/kservices5 - /usr/share/doc/ - /usr/share/config.kcfg - /usr/share/locale - - - - kmailtransport-devel - Development files for akonadi - - kmailtransport - kwallet-devel - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kfloppy - http://kde.org/applications/utilities/kfloppy - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.utils - A floppy formatter - A floppy formatter - KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. - KFloppy is a utility that provides a straightforward graphical means to format 3.5" and 5.25" floppy disks. - kfloppy - http://download.kde.org/stable/release-service/22.04.1/src/kfloppy-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kcoreaddons-devel - kio-devel - kdoctools-devel - kxmlgui-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kfloppy/pspec.xml - - - kfloppy - - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/share/doc - /usr/bin - /usr/share - /usr/share/icons - /usr/share/applications - /usr/share/locale/ - /usr/share/metainfo/org.kde.kfloppy.appdata.xml - /etc/xdg/kfloppy.categories - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-26 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-04-20 - 16.04 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - ktp-filetransfer-handler - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - KDE Telepathy file transfer handler - KDE Telepathy file transfer handler - mirrors://kde/stable/release-service/22.04.1/src/ktp-filetransfer-handler-22.04.1.tar.xz - - extra-cmake-modules - kcoreaddons-devel - ki18n-devel - kio-devel - kwallet-devel - kconfig-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/applications/ktp-filetransfer-handler/pspec.xml - - - ktp-filetransfer-handler - KDE Telepathy file transfer handler - - kio - ki18n - kwallet - libgcc - kconfig - qt5-base - kcoreaddons - telepathy-qt5 - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kitinerary - https://download.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.applications - Data model and extraction system for travel reservation information - Data model and extraction system for travel reservation information - Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi - Seyahat rezervasyon bilgisi için veri modeli ve ekstraksiyon sistemi - https://download.kde.org/stable/release-service/22.04.1/src/kitinerary-22.04.1.tar.xz - - qt5-declarative-devel - qt5-base-devel - kcoreaddons-devel - poppler-cpp-devel - kcontacts-devel - kcalendarcore-devel - libxml2-devel - kpkpass-devel - poppler-devel - ki18n-devel - kmime-devel - zlib-devel - kconfig-devel - kcodecs-devel - karchive-devel - extra-cmake-modules - openssl-devel - - desktop/kde/applications/kitinerary/pspec.xml - - - kitinerary - - zlib - ki18n - kmime - libgcc - kpkpass - kcodecs - poppler - kcalendarcore - kconfig - kcontacts - karchive - libxml2 - openssl - qt5-base - qt5-declarative - - - /etc/xdg - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - kitinerary-devel - Development files for kitinerary - - kitinerary - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - parley - http://edu.kde.org/applications/all/parley - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - Parley is a program to help you memorize things. - Tekrar yapmanıza yardım eden bir uygulama - Parley is a program to help you memorize things. Parley supports many language specific features but can be used for other learning tasks just as well. It uses the spaced repetition learning method, also known as flash cards. Creating new vocabulary collections with Parley is easy, but of course it is even better if you can use some of our premade files. Have a look at the KDE-Files.org page or use the "Download New Collections" feature directly in Parley. - Parley ile yeni öğrendiğiniz şeyleri belli zaman aralıklarıyla tekrar ederek uzun zamanlı hafızanızda yer etmelerini sağlayabilirsiniz. Parley, flaş kart denilen tekniği kullanır. Dil öğrenimi için özelleşmiş yetenekleri olmasına karşın diğer konularda da kullanıma uygundur. Kartları hazırlamak epey kolay olmakla beraber kde-files.org adresinden ulaşabileceğiniz hazır kart setlerini de kullanabilirsiniz. - parley - mirrors://kde/stable/release-service/22.04.1/src/parley-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - qt5-multimedia-devel - qt5-webengine-devel - libxslt-devel - libXrender-devel - libxml2-devel - libkeduvocdocument-devel - kdoctools-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - gettext-devel - ki18n-devel - kio-devel - knewstuff-devel - kross-devel - kcmutils-devel - kxmlgui-devel - sonnet-devel - kservice-devel - ktextwidgets-devel - kcompletion-devel - kconfigwidgets-devel - kwidgetsaddons-devel - knotifications-devel - khtml-devel - extra-cmake-modules - ffmpeg-devel - libXScrnSaver-devel - - desktop/kde/applications/parley/pspec.xml - - - parley - - qt5-base - qt5-svg - qt5-multimedia - qt5-webengine - libxslt - libXrender - libxml2 - libkeduvocdocument - kdoctools - kcoreaddons - kconfig - kcrash - gettext - ki18n - kio - knewstuff - kross - kcmutils - kxmlgui - knotifications - sonnet - kservice - libgcc - ktextwidgets - kcompletion - kconfigwidgets - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdeedu-data - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - app:library - desktop.kde.applications - Common data for KDE Edu applications - Common data for KDE Edu applications. - mirrors://kde/stable/release-service/22.04.1/src/kdeedu-data-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - - desktop/kde/applications/kdeedu-data/pspec.xml - - - kdeedu-data - - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ktp-contact-runner - http://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - KRunner plugin for KDE Telepathy - KRunner plugin for KDE Telepathy - mirrors://kde/stable/release-service/22.04.1/src/ktp-contact-runner-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - ki18n-devel - kwallet-devel - kservice-devel - krunner-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - telepathy-qt5-devel - - desktop/kde/applications/ktp-contact-runner/pspec.xml - - - ktp-contact-runner - KRunner plugin for KDE Telepathy - - ki18n - kwallet - libgcc - krunner - qt5-base - kcoreaddons - telepathy-qt5 - ktp-common-internals - - - /usr/lib - /usr/share - /usr/share/kservices5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libmediawiki - https://github.com/KDE/libmediawiki - - Stefan Gronewold - groni@pisilinux.org - - GPL - library - desktop.kde.applications - A KDE C++ interface for MediaWiki based web service as wikipedia.org - A KDE C++ interface for MediaWiki based web service as wikipedia.org - https://github.com/KDE/libmediawiki/archive/refs/heads/master.zip - - extra-cmake-modules - kcoreaddons-devel - qt5-base-devel - - desktop/kde/applications/libmediawiki/pspec.xml - - - libmediawiki - A KDE C++ interface for MediaWiki based web service as wikipedia.org - - kcoreaddons - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - libmediawiki-devel - Development files for libmediawiki - - libmediawiki - qt5-base-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-07 - 5.37.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 5.37.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-10-29 - 5.37.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-06-16 - 5.0.0_20161106 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 5.0.0_20161106 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 5.0.0_20161106 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-09-15 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-18 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-12 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-12 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-09-14 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-11-09 - 5.0.0_20161106 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kldap - https://www.kde.org - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2 - library - app:console - desktop.kde.applications - LDAP access API for KDE - Allows LDAP accessing with a convenient Qt style C++ API. - mirrors://kde/stable/release-service/22.04.1/src/kldap-22.04.1.tar.xz - - qt5-base-devel - kcompletion-devel - kdoctools-devel - ki18n-devel - kio-devel - kmbox-devel - kmime-devel - kwallet-devel - openldap-server - cyrus-sasl-devel - extra-cmake-modules - qt5-keychain-devel - kconfig-devel - kcoreaddons-devel - - desktop/kde/applications/kldap/pspec.xml - - - kldap - - qt5-base - kcompletion - kwallet - ki18n - kio - libgcc - cyrus-sasl - openldap-client - kwidgetsaddons - qt5-keychain - kconfig - kcoreaddons - - - /etc/xdg - /usr/share - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - kldap-devel - Development files for kdelibs4-support - - qt5-base-devel - kldap - - - /usr/include - /usr/lib/cmake /usr/lib/pkgconfig - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2016-11-27 - 16.08.3 + 2021-09-07 + 1.26.0 Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-10-27 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kiten - https://www.kde.org/applications/education/kiten/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - A Japanese reference/study tool - Japonca referans ve alıştırma uygulaması - Kiten is a Japanese reference/study tool. - Kiten, Japonca referans ve alıştırma uygulamasıdır. - kiten>kiten - mirrors://kde/stable/release-service/22.04.1/src/kiten-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - extra-cmake-modules - karchive-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdoctools-devel - gettext-devel - ki18n-devel - khtml-devel - kxmlgui-devel - kio-devel - kparts-devel - kcrash-devel - knotifications-devel - kwidgetsaddons-devel - - desktop/kde/applications/kiten/pspec.xml - - - kiten - - qt5-base - karchive - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdoctools - gettext - ki18n - khtml - kxmlgui - kio - kparts - libgcc - kcrash - knotifications - kwidgetsaddons - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share - - - - kiten-devel - Development files for kiten - kiten için geliştirme dosyaları - - kiten - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdebugsettings - http://projects.kde.org/kdebugsettings - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - desktop.kde.applications - An application to enable/disable qCDebug - KDebug control module for KDE. It provides a graphical frontend for the kdebug daemon, which allow enabling or disabling particular debug areas/messages. - mirrors://kde/stable/release-service/22.04.1/src/kdebugsettings-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kconfigwidgets-devel - kdbusaddons-devel - ki18n-devel - kguiaddons-devel - kiconthemes-devel - kwidgetsaddons-devel - kitemviews-devel - kcompletion-devel - kio-devel - - desktop/kde/applications/kdebugsettings/pspec.xml - - - kdebugsettings - An application to enable/disable qCDebug - - ki18n - libgcc - kconfig - qt5-base - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kwidgetsaddons - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/applications - /usr/share/doc - /usr/share/locale - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-30 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - akonadi-search - https://kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.kde.applications - Libraries and daemons to implement searching in Akonadi - Libraries and daemons to implement searching in Akonadi - akonadi - mirrors://kde/stable/release-service/22.04.1/src/akonadi-search-22.04.1.tar.xz - - qt5-base-devel - kcrash-devel - kconfig-devel - ki18n-devel - akonadi-devel - kcontacts-devel - kmime-devel - kjobwidgets-devel - kservice-devel - solid-devel - kxmlgui-devel - kitemmodels-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - kcalendarcore-devel - libical-devel - kdesignerplugin - kcompletion-devel - boost-devel - kcmutils-devel - krunner-devel - xapian-core-devel - kdoctools-devel - extra-cmake-modules - akonadi-mime-devel - - desktop/kde/applications/akonadi-search/pspec.xml - - - akonadi-search - app:console - - qt5-base - ki18n - kmime - libgcc - kcodecs - kconfig - kcalendarcore - kcontacts - kcoreaddons - xapian-core - krunner - kcompletion - kconfigwidgets - kwidgetsaddons - akonadi - akonadi-mime - - - /etc/akonadi - /etc/xdg - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/config - /usr/share/mime - /usr/share/kde4 - /usr/share/doc/ - /usr/share/akonadi - /usr/share/kservices5 - /usr/share/locale - /usr/share - - - - akonadi-search-devel - Development files for akonadi - - akonadi-search - qt5-base-devel - ki18n-devel - kmime-devel - kcodecs-devel - kconfig-devel - kcalendarcore-devel - kcontacts-devel - kcoreaddons-devel - xapian-core-devel - kcmutils-devel - krunner-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ksmtp - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.kde.applications - Bir SMTP sunucusu yoluyla e-posta göndermek için işe dayalı kütüphane - Bir SMTP sunucusu yoluyla e-posta göndermek için işe dayalı kütüphane - Job-based library to send email through an SMTP server - Job-based library to send email through an SMTP server - https://download.kde.org/stable/release-service/22.04.1/src/ksmtp-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - kcoreaddons-devel - ki18n-devel - kio-devel - kmime-devel - cyrus-sasl-devel - - desktop/kde/applications/ksmtp/pspec.xml - - - ksmtp - - kio - ki18n - kmime - libgcc - kcoreaddons - cyrus-sasl - qt5-base - - - /etc/xdg - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - ksmtp-devel - Development files for ksmtp - - ksmtp - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 + 2021-06-26 + 1.25.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-04-25 - 18.04.0 + 2020-08-23 + 1.25.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-03-22 - 17.12.3 + 2020-06-29 + 1.24.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-02-03 - 17.12.1 + 2020-03-01 + 1.24.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-12-16 - 17.12.0 + 2020-02-29 + 1.22.1 First release - Mustafa Cinasal - muscnsl@gmail.com + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - libgravatar - https://www.kde.org + mate-netbook + http://mate-desktop.org/ - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPLv2 - library - desktop.kde.applications - KDE PIM library providing Gravatar support - KDE PIM library providing Gravatar support - mirrors://kde/stable/release-service/22.04.1/src/libgravatar-22.04.1.tar.xz - - qt5-base-devel - kdoctools-devel - ki18n-devel - kconfig-devel - kservice-devel - kxmlgui-devel - pimcommon-devel - cmake - extra-cmake-modules - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcontacts-devel - kcalendarcore-devel - extra-cmake-modules - qt5-webkit-devel - grantlee-qt5-devel - kdoctools-devel - knewstuff-devel - kpimtextedit-devel - boost-devel - - desktop/kde/applications/libgravatar/pspec.xml - - - libgravatar - - qt5-base - kxmlgui - ki18n - libgcc - kconfig - kservice - kcoreaddons - pimcommon - ktextwidgets - kwidgetsaddons - grantlee-qt5 - - - /usr/lib - /usr/bin - /usr/share - /usr/share/icons - /etc - - - - libgravatar-devel - Development files for libgravatar - - libgravatar - qt5-base-devel - kxmlgui-devel - ki18n-devel - kconfig-devel - kservice-devel - kcoreaddons-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-28 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-10 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - klettres - https://www.kde.org/applications/education/klettres/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.edu - An alphabet learning application - Alfabe öğrenme uygulaması - KLettres is an application specially designed to help the user to learn alphabet in a new language and then to learn to read simple syllables. The user can be a young child aged from two and a half or an adult that wants to learn the basics of a foreign language. - KLettres, kullanıcının yeni bir alfabeyi ve basit sesli sözleri öğrenmesi için geliştirilmiş bir uygulamadır. İki buçuk yaşındaki bir çocuk için yararlı olabileceği gibi, yeni bir dil öğrenen yetişkinler için de yardımcı olabilir. - klettres - mirrors://kde/stable/release-service/22.04.1/src/klettres-22.04.1.tar.xz - - qt5-base-devel - qt5-svg-devel - kdoctools-devel - extra-cmake-modules - kcompletion-devel - kemoticons-devel - kitemmodels-devel - ki18n-devel - knewstuff-devel - kwidgetsaddons-devel - kconfigwidgets-devel - kcoreaddons-devel - kconfig-devel - kxmlgui-devel - kcrash-devel - qt5-phonon-devel - kpackage-devel - - desktop/kde/applications/klettres/pspec.xml - - - klettres - - qt5-base - qt5-svg - qt5-phonon - knewstuff - ki18n - kcrash - kconfig - kxmlgui - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - libgcc - - - /usr/share/doc - /usr/bin - /usr/share - /etc/xdg - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kdeconnect - https://kdeconnect.kde.org/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv2 GPLv3 app:gui - desktop.kde.applications - Connect KDE with your smartphone - Cihazlarınızı KDE ile birleştirin - Connect KDE with your smartphone - Cihazlarınızı KDE ile birleştirin - kdeconnect - https://download.kde.org/stable/release-service/22.04.1/src/kdeconnect-kde-22.04.1.tar.xz + desktop.mate + Basit bir pencere yönetim aracı + Basit bir pencere yönetim aracı + A simple window management tool. + Basit bir pencere yönetim aracı uygulaması. + mate-netbook + http://pub.mate-desktop.org/releases/1.24/mate-netbook-1.24.0.tar.xz - sshfs - kio-devel - ki18n-devel - solid-devel - kpeople-devel - kde-cli-tools + intltool + gtk3-devel + glib2-devel + libwnck3-devel libXtst-devel - kirigami-devel - qt5-base-devel - kcmutils-devel - kwayland-devel - qca2-qt5-devel - kdoctools-devel libfakekey-devel - kdbusaddons-devel - kiconthemes-devel - kpeoplevcard-devel - kwindowsystem-devel - pulseaudio-qt-devel - qt5-x11extras-devel - extra-cmake-modules - kconfigwidgets-devel - qt5-multimedia-devel - knotifications-devel - qt5-declarative-devel - qt5-quickcontrols2-devel - wayland-devel - wayland-server - wayland-client - wayland-cursor - qt5-wayland-devel - qqc2-desktop-style - kpackage-devel - kguiaddons-devel + mate-panel-devel - desktop/kde/applications/kdeconnect/pspec.xml + desktop/mate/mate-netbook/pspec.xml - kdeconnect + mate-netbook - kio - ki18n - sshfs - solid + atk + gtk3 + cairo + glib2 + pango + libX11 + libwnck3 + libfakekey + gdk-pixbuf + mate-panel + + + /usr/bin + /usr/lib/mate-netbook + /usr/share/doc + /usr/share/dbus-1 + /usr/share/MateConf + /usr/share/glib-2.0 + /etc/xdg/autostart + /usr/share/mate-panel + /usr/share/locale + /usr/share/man + + + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-notification-daemon + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.mate + Mate notification daemon + Mate masaüstü bilgilendirme hizmeti + mate-notification-daemon is the server implementation of the Mate desktop notification specification. + mate-notification-daemon Mate projesinin masaüstü bilgilendirme hizmeti uygulamasını içerir. + mate-notification-properties + http://pub.mate-desktop.org/releases/1.26/mate-notification-daemon-1.26.0.tar.xz + + intltool + python3-devel + libwnck3-devel + libnotify-devel + libcanberra-devel + libcanberra-gtk3-devel + mate-common + mate-panel-devel + mate-desktop-devel + libxml2-devel + + desktop/mate/mate-notification-daemon/pspec.xml + + + mate-notification-daemon + + atk + gtk3 + cairo + glib2 + pango + libX11 + libwnck3 + libnotify + gdk-pixbuf + libcanberra-gtk3 + mate-panel + mate-desktop + libxml2 + + + /usr/lib + /usr/bin + /usr/share/man/ + /usr/share/icons + /usr/share/dbus-1 + /usr/libexec + /usr/share/glib-2.0 + /usr/share/locale + /usr/share/applications + /usr/share/mate-panel + /usr/share/mate-notification-daemon + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-23 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-31 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-panel + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.mate + GNOME panel + Mate paneli + GNOME panel is located in the edge of screen that provides contains widgets such as application launcher, cpu monitor and workspace switcher. + Mate paneli ekranın kenarlarında bulunur ve programcıkları (işlemci yükü, program başlatıcısı, çalışma alanı değiştiricisi gibi) barındırmayı sağlar. + mate-panel + http://pub.mate-desktop.org/releases/1.26/mate-panel-1.26.2.tar.xz + + gtk3-devel + libSM-devel + mate-common + librsvg-devel + libwnck3-devel + mate-menus-devel + libcanberra-devel + mate-desktop-devel + libmateweather-devel + gobject-introspection-devel + yelp-tools + intltool + itstool + + + pisilinux_layout.patch + + desktop/mate/mate-panel/pspec.xml + + + mate-panel + + atk + gtk3 + cairo + glib2 + pango + libSM + libICE + libX11 + librsvg + libwnck3 + libXrandr + mate-menus + gdk-pixbuf + mate-desktop + libmateweather + wayland-client + + + /usr/lib + /usr/share/doc + /usr/share/omf + /usr/bin + /usr/share/man + /usr/share/mate + /usr/share/help + /usr/share/icons + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/glib-2.0 + /usr/libexec/ + /usr/share/mate-panel + /usr/share/locale + /usr/share/applications + + + + mate-panel-devel + mate-panel için geliştirme dosyaları. + mate-panel için geliştirme dosyaları. + + gtk3-devel + glib2-devel + mate-panel + + + /usr/include + /usr/lib/pkgconfig + + + + mate-panel-doc + mate-panel için döküman belgeleri. + mate-panel için döküman belgeleri. + + mate-panel + + + /usr/share/gtk-doc + + + + + 2022-01-28 + 1.26.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-25 + 1.26.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-02 + 1.25.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-20 + 1.25.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-14 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-polkit + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + app:gui + library + desktop.mate + Authentication agent for polkit + polkit için kimlik denetim yardımcısı + mate-polkit package provides an authentication agent for polkit that integrates well with the Mate desktop environment. + mate-polkit paketi Mate masaüstü ortamı ile bütünleşmiş bir kimlik denetim yardımcısı sağlar. + http://pub.mate-desktop.org/releases/1.24/mate-polkit-1.24.0.tar.xz + + intltool + gtk3-devel + mate-common + pango-devel + polkit-devel + elogind-devel + libappindicator-devel + + desktop/mate/mate-polkit/pspec.xml + + + mate-polkit + + gtk3 + glib2 + polkit + elogind + gdk-pixbuf + libappindicator + + + /usr/lib + /etc/xdg/autostart + /usr/share + + + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-power-manager + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Mate için güç yöneticisi + Mate için güç yöneticisi + Power management tool for the MATE desktop. + mate-power-manager + http://pub.mate-desktop.org/releases/1.26/mate-power-manager-1.26.0.tar.xz + + gtk3-devel + dbus-glib-devel + cairo-devel + glib2-devel + mate-common + upower-devel + libnotify-devel + mate-panel-devel + mesa-devel + popt-devel + polkit-devel + libcanberra-devel + libcanberra-gtk3-devel + intltool + itstool + libsecret-devel + + desktop/mate/mate-power-manager/pspec.xml + + + mate-power-manager + + dbus + gtk3 + cairo + glib2 + pango + libX11 + upower + libXext + libsecret + dbus-glib + libnotify + libXrandr + gdk-pixbuf + mate-panel + libcanberra + libcanberra-gtk3 + + + /usr/share/doc + /usr/share/man + /usr/share/omf + /usr/bin + /usr/share/help + /usr/share/mate* + /usr/share/icons + /usr/share/dbus-1 + /usr/lib + /usr/share/polkit-1 + /usr/share/glib-2.0 + /etc/xdg/autostart/ + /usr/share/applications + /usr/share/locale + + + + + 2021-09-25 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-03 + 1.24.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-screensaver + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Replaces xscreensaver, integrating with the MATE desktop. + Replaces xscreensaver, integrating with the MATE desktop. + mate-screensaver, Mate masaüstü için ekrankoruyucu uygulamasıdır. + preferences-desktop-screensaver + http://pub.mate-desktop.org/releases/1.26/mate-screensaver-1.26.1.tar.xz + + dbus-glib-devel + gtk3-devel + libX11-devel + libXScrnSaver-devel + libXinerama-devel + libXmu-devel + libXtst-devel + libXxf86vm-devel + libmatekbd-devel + libnotify-devel + mate-common + mate-desktop-devel + mate-menus-devel + mesa-devel + pam-devel + xorg-proto + xmlto + intltool + libglvnd-devel + autoconf-archive + + desktop/mate/mate-screensaver/pspec.xml + + + mate-screensaver + + pam + dbus + gtk3 + mesa + cairo + glib2 + pango + libX11 + libglvnd + libXext + dbus-glib + libnotify + mate-menus + gdk-pixbuf + libmatekbd + libXxf86vm + libxklavier + mate-desktop + libXScrnSaver + + + /etc/ + /usr/lib/ + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/dbus-1 + /usr/share/pixmaps + /usr/share/glib-2.0 + /usr/libexec/ + /usr/share/backgrounds + /usr/share/applications + /usr/share/locale + /usr/share/mate-screensaver + /usr/share/desktop-directories + /usr/share/mate-background-properties + + + logotype-pisi.svg + + + + + 2021-11-16 + 1.26.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-23 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-23 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-sensors-applet + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + library + desktop.mate + Display readings from hardware sensors in your MATE panel. + MATE Sensors Applet is an applet for the MATE Panel to display readings from hardware sensors, including CPU temperature, fan speeds and voltage readings under Linux.on. + http://pub.mate-desktop.org/releases/1.26/mate-sensors-applet-1.26.0.tar.xz + + gtk3-devel + mate-common + libnotify-devel + mate-panel-devel + lm_sensors-devel + libxslt-devel + intltool + itstool + + desktop/mate/mate-sensors-applet/pspec.xml + + + mate-sensors-applet + + gtk3 + cairo + glib2 + libnotify + mate-panel + gdk-pixbuf + lm_sensors + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/help + /usr/share/mate + /usr/share/icons + /usr/share/dbus-1 + /usr/share/pixmaps + /usr/share/glib-2.0 + /usr/share/mate-panel + /usr/share/locale + /usr/share/mate-sensors-applet + + + + mate-sensors-applet-devel + mate-sensors-applet için geliştirme dosyaları + mate-sensors-applet için geliştirme dosyaları + + mate-sensors-applet + + + /usr/include + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-session-manager + https://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + app:gui + desktop.mate + MATE Session Manager + MATE session manager, as well as a configuration program to choose applications starting on login. + mate-session-properties + https://pub.mate-desktop.org/releases/1.26/mate-session-manager-1.26.0.tar.xz + + xmlto + xtrans + intltool + mesa-devel + gtk3-devel + libSM-devel + mate-common + python3-devel + libglvnd-devel + libepoxy-devel + libXcomposite-devel + libXtst-devel + dbus-glib-devel + pangox-compat-devel + + desktop/mate/mate-session-manager/pspec.xml + + + mate-session-manager + + dbus + gtk3 + cairo + glib2 + libSM + libICE + libX11 + libXau + libglvnd + libXtst + libXext + mesa + libepoxy + libXcomposite + dbus-glib + gdk-pixbuf + libXrender + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/xsessions + /usr/share/glib-2.0/ + /usr/share/mate-session + /usr/share/applications + /usr/share/locale + /usr/share/mate-session-manager/ + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-09 + 1.25.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.22.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-settings-daemon + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + service + desktop.mate + System settings daemon for MATE desktop + gnome-settings-daemon shares MATE specific settings with other applications via DBus connection. + http://pub.mate-desktop.org/releases/1.26/mate-settings-daemon-1.26.0.tar.xz + + intltool + nss-devel + dbus-devel + gtk3-devel + dconf-devel + glib2-devel + libSM-devel + polkit-devel + libnotify-devel + dbus-glib-devel + libcanberra-devel + pulseaudio-libs-devel + libcanberra-gtk3-devel + mate-common + libmatekbd-devel + libmatemixer-devel + mate-desktop-devel + + desktop/mate/mate-settings-daemon/pspec.xml + + + mate-settings-daemon + + nss + dbus + gtk3 + nspr + cairo + dconf + glib2 + libXi + libX11 + polkit + dbus-glib + libnotify + fontconfig + gdk-pixbuf + libmatekbd + libxklavier + libmatemixer + mate-desktop + pulseaudio-libs + libcanberra-gtk3 + + + /etc + /usr/lib + /usr/share/doc + /usr/share/man/ + /usr/share/icons + /usr/share/dbus-1 + /usr/lib/mate-settings-daemon + /usr/share/glib-2.0 + /usr/share/polkit-1 + /usr/share/locale + /usr/share/mate-settings-daemon + /usr/share/mate-control-center + + + + mate-settings-daemon-devel + mate-settings-daemon için geliştirme dosyaları + mate-settings-daemon için geliştirme dosyaları + + mate-settings-daemon + dbus-devel + glib2-devel + dbus-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-31 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2013-10-18 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-system-monitor + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.mate + Process and resource monitor + Process viewer and system resource monitor for MATE + utilities-system-monitor + http://pub.mate-desktop.org/releases/1.26/mate-system-monitor-1.26.0.tar.xz + + dbus-glib-devel + gtk3-devel + glibmm-devel + gtkmm3-devel + libgtop-devel + librsvg-devel + libwnck3-devel + libxml2-devel + polkit-devel + mate-common + intltool + itstool + python3-devel + + desktop/mate/mate-system-monitor/pspec.xml + + + mate-system-monitor + + gtk3 + cairo + glib2 + pango + glibmm + gtkmm3 libgcc + librsvg + libxml2 + libgtop + libwnck3 + libsigc++ + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/omf + /usr/share/help + /usr/share/mate + /usr/share/pixmaps + /usr/share/polkit-1 + /usr/share/metainfo + /usr/share/glib-2.0 + /usr/share/applications + /usr/share/locale + + + side.png + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-23 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-29 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-terminal + https://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + MATE terminal emulator application + mate-terminal, masaüstü için terminal uygulaması. + mate-terminal, masaüstü için terminal uygulaması. + utilities-terminal + http://pub.mate-desktop.org/releases/1.26/mate-terminal-1.26.0.tar.xz + + intltool + itstool + python3-devel + libpcre2-devel + gnutls-devel + vte-devel + glib2-devel + gtk3-devel + dconf-devel + libSM-devel + mate-common + + desktop/mate/mate-terminal/pspec.xml + + + mate-terminal + + atk + vte + gtk3 + cairo + pango + dconf + glib2 + libSM + libICE + libX11 + gdk-pixbuf + + + /usr/share/doc + /usr/bin + /usr/share/omf + /usr/share/man + /usr/share/help + /usr/share/mate + /usr/share/metainfo + /usr/share/glib-2.0 + /usr/share/applications + /usr/share/locale + /usr/share/mate-terminal + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-themes + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + LGPLv2+ + data + desktop.mate + MATE Desktop themes + Mate temaları + mate-themes, mate masaüstü temalarını barındırır. + mate-themes, mate masaüstü temalarını barındırır. + https://pub.mate-desktop.org/releases/themes/3.22/mate-themes-3.22.23.tar.xz + + mate-common + gtk2-devel + mate-icon-theme + gdk-pixbuf-devel + + desktop/mate/mate-themes/pspec.xml + + + mate-themes + + mate-common + mate-icon-theme + icon-naming-utils + + + /usr/share/doc + /usr/share/icons + /usr/share/themes + /usr/share/locale + + + logotype-pisi.svg + 48x48.png + 48x48.png + 48x48.png + 48x48.png + 48x48.png + + + + + 2021-09-20 + 3.22.23 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-07 + 3.22.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 3.22.21 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-25 + 3.22.21 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-tweak + https://github.com/ubuntu-mate/mate-tweak + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + Tweak tool for MATE (fork of MintDesktop) + Tweak tool for MATE (fork of MintDesktop) + https://github.com/ubuntu-mate/mate-tweak/archive/21.04.3.tar.gz + + python3-devel + python3-setuptools + python3-distutils-extra + intltool + + desktop/mate/mate-tweak/pspec.xml + + + mate-tweak + + python3 + python3-setproctitle + python3-distro + python3-psutil + python3-pygobject3 + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/polkit-1 + /usr/share/man + /usr/share/locale + /usr/share/doc + + + + + 2021-10-24 + 21.04.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-07 + 21.04.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 20.04.0 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-03-23 + 20.04.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-user-share + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + library + desktop.mate + User level public file sharing via WebDAV or ObexFTP + mate-user-share is a small package that binds together various free software projects to bring easy to use user-level file sharing to the masses. + mate-file-share-properties + http://pub.mate-desktop.org/releases/1.26/mate-user-share-1.26.0.tar.xz + + gtk3-devel + caja-devel + libnotify-devel + libcanberra-devel + libcanberra-gtk3-devel + dbus-glib-devel + intltool + itstool + + desktop/mate/mate-user-share/pspec.xml + + + mate-user-share + + gtk3 + caja + glib2 + pango + libX11 + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/doc + /usr/share/help + /usr/share/icons + /usr/share/caja + /usr/share/glib-2.0 + /etc/xdg/autostart + /usr/share/locale + /usr/share/applications + /usr/share/mate-user-share + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mate-utils + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.mate + MATE utility programs + The mate-utils package contains a set of small "desk accessory" utility applications for MATE, such as a dictionary, a disk usage analyzer, a screenshot tool and others. + system-search + http://pub.mate-desktop.org/releases/1.26/mate-utils-1.26.0.tar.xz + + itstool + intltool + mesa-devel + popt-devel + yelp-tools + libX11-devel + libXmu-devel + udisks2-devel + libgtop-devel + e2fsprogs-devel + libcanberra-devel + libcanberra-gtk3-devel + mate-common + mate-panel-devel + + desktop/mate/mate-utils/pspec.xml + + + mate-utils + + atk + gtk3 + zlib + cairo + glib2 + pango + libSM + libICE + libX11 + libgtop + libXext + udisks2 + gdk-pixbuf + mate-panel + libcanberra + libcanberra-gtk3 + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/omf + /usr/share/help + /usr/share/icons + /usr/share/mate* + /usr/share/dbus-1 + /usr/share/metainfo + /usr/share/pixmaps + /usr/share/glib-2.0 + /usr/share/applications + /usr/share/locale + + + + mate-utils-devel + mate-utils için geliştirme dosyaları + mate-utils için geliştirme dosyaları + + gtk3-devel + mate-utils + + + /usr/include + /usr/lib/pkgconfig + + + + mate-utils-gtk-doc + mate-utils için dosyalar + + mate-utils + + + /usr/share/gtk-doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.25.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-08 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-31 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + mozo + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + library + desktop.mate + Mozo menu editor for MATE + Easy MATE menu editing tool. + mozo + http://pub.mate-desktop.org/releases/1.26/mozo-1.26.1.tar.xz + + mate-common + mate-menus-devel + python3-pygobject3-devel + python3-devel + intltool + + desktop/mate/mozo/pspec.xml + + + mozo + + mate-panel + + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man/ + /usr/share/mozo + /usr/share/icons + /usr/share/locale + /usr/share/applications + + + + + 2021-11-15 + 1.26.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.26.0 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-14 + 1.25.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pluma + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.mate + Mate metin editörü + mate masaüstü için metin editörü. + accessories-text-editor + http://pub.mate-desktop.org/releases/1.26/pluma-1.26.0.tar.xz + + intltool + itstool + libxml2-devel + gtk3-devel + enchant2-devel + libSM-devel + mate-common + iso-codes-devel + libpeas-devel + python3-devel + python3-pygobject3-devel + gtksourceview4-devel + + desktop/mate/pluma/pspec.xml + + + pluma + + atk + gtk3 + cairo + glib2 + libSM + pango + libICE + libX11 + libpeas + libxml2 + enchant2 + gdk-pixbuf + gtksourceview4 + gobject-introspection + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/omf + /usr/share/help + /usr/share/mate + /usr/share/pluma + /usr/share/glib-2.0 + /usr/share/gir-1.0 + /usr/share/metainfo + /usr/share/applications + /usr/share/locale + + + + pluma-devel + pluma için geliştirme dosyaları + + libpeas-devel + gtksourceview4-devel + pluma + + + /usr/include/pluma + /usr/lib/pkgconfig + + + + pluma-gtk-doc + pluma-gtk-doc için dosyalar + + pluma + + + /usr/share/gtk-doc/html/pluma/ + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-05 + 1.25.3 + v.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-07-03 + 1.25.0 + v.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-caja + http://www.mate-desktop.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + library + desktop.mate + Python binding for Mate CAJA + These are unstable bindings for the caja extension library. + https://pub.mate-desktop.org/releases/1.26/python-caja-1.26.0.tar.xz + + python3-devel + mate-common + python3-pygobject3-devel + caja-devel + intltool + + desktop/mate/python-caja/pspec.xml + + + python-caja + + gtk3 + caja + glib2 + python3 + + + /usr/lib + /usr/share/locale + /usr/share/caja + /usr/share/doc + + + + + 2021-09-07 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-17 + 1.25.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.22.1 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + at-spi2-atk + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + desktop.misc + Protocol definitions and daemons for D-Bus at-spi + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + mirrors://gnome/at-spi2-atk/2.38/at-spi2-atk-2.38.0.tar.xz + + meson + at-spi2-core-devel + glib2-devel + atk-devel + libX11-devel + dbus-devel + libXtst-devel + libxml2-devel + + desktop/misc/at-spi2-atk/pspec.xml + + + at-spi2-atk + + atk + dbus + glib2 + at-spi2-core + + + /usr/lib + /usr/share/doc + + + + at-spi2-atk-32bit + 32-bit shared libraries for at-spi2-atk + emul32 + emul32 + + at-spi2-core-32bit + atk-32bit + dbus-32bit + glib2-32bit + libxml2-32bit + + + atk-32bit + dbus-32bit + glib2-32bit + at-spi2-core-32bit + + + /usr/lib32 + + + + at-spi2-atk-devel + at-spi2-atk için geliştirme dosyaları + at-spi2-atk için geliştirme dosyaları + + at-spi2-atk + glib2-devel + at-spi2-core-devel + + + /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include + + + + + 2022-04-27 + 2.38.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2.38.0 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-02 + 2.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 2.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-21 + 2.30.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-26 + 2.26.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 2.26.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-19 + 2.26.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-17 + 2.26.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-28 + 2.22.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 2.18.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.18.1 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-01-26 + 2.18.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + at-spi2-core + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + service + desktop.misc + Protocol definitions and daemons for D-Bus at-spi + D-Bus at-spi için protokol tanımları ve hizmetleri + at-spi allows assistive technologies to access GTK-based applications. Essentially it exposes the internals of applications over D-Bus for automation. + at-spi2-core, erişilebilirlik teknolojilerinin uygulamalara D-Bus üzerinden erişerek onları otomatik olarak denetlemesini sağlar. + mirrors://gnome/at-spi2-core/2.44/at-spi2-core-2.44.1.tar.xz + + meson + gtk-doc + intltool + python-six + dbus-devel + glib2-devel + docbook-xsl + libXi-devel + libX11-devel + libXtst-devel + libxslt-devel + gettext-devel + gobject-introspection-devel + + desktop/misc/at-spi2-core/pspec.xml + + + at-spi2-core + + libXtst + libX11 + dbus + glib2 + + + /etc + /usr/lib + /usr/share/doc + /usr/share/dbus-1 + /usr/share/defaults/at-spi2 + /usr/libexec + /usr/share/gir-1.0 + /usr/share/locale + + + + at-spi2-core-32bit + 32-bit shared libraries for at-spi2-core + emul32 + emul32 + + dbus-32bit + glib2-32bit + libXi-32bit + libX11-32bit + libXtst-32bit + + + dbus-32bit + glib2-32bit + libXi-32bit + libX11-32bit + + + /usr/lib32 + + + + at-spi2-core-docs + at-spi2-core reference documents + data:doc + + at-spi2-core + + + /usr/share/gtk-doc + + + + at-spi2-core-devel + at-spi2-core için geliştirme dosyaları + at-spi2-core için geliştirme dosyaları + + at-spi2-core + dbus-devel + glib2-devel + libXi-devel + libX11-devel + libXtst-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2022-04-22 + 2.44.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2.42.0 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-19 + 2.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-10 + 2.40.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-02 + 2.40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-02 + 2.34.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 2.34.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-21 + 2.30.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-30 + 2.30.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-26 + 2.28.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 2.28.0 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-07 + 2.28.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-19 + 2.28.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-17 + 2.26.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-13 + 2.20.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.18.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.18.3 + Release Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-01-26 + 2.18.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + ayatana-ido + https://github.com/AyatanaIndicators/ayatana-ido + + fury + uglyside@yandex.ru + + LGPL-3 + library + desktop.misc + Ayatana Indicator Display Objects. + The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop. + https://github.com/AyatanaIndicators/ayatana-ido/archive/refs/tags/0.9.1.tar.gz + + cmake + gtk-doc + gtk3-devel + vala-devel + gobject-introspection-devel + + desktop/misc/ayatana-ido/pspec.xml + + + ayatana-ido + + gtk3 + glib2 + cairo + pango + gdk-pixbuf + + + /usr/lib + /usr/share + + + + ayatana-ido-devel + + glib2-devel + gtk3-devel + ayatana-ido + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2022-04-14 + 0.9.1 + Version bump + fury + uglyside@yandex.ru + + + 2022-01-18 + 0.9.0 + Version bump + fury + uglyside@yandex.ru + + + 2021-10-13 + 0.8.2 + First build + fury + uglyside@yandex.ru + + + + + + ayatana-libappindicator + https://github.com/AyatanaIndicators/libayatana-appindicator + + fury + uglyside@yandex.ru + + LGPL-3 + library + desktop.misc + A library to allow applications to export a menu into the Unity Menu bar. + A library to allow applications to export a menu into the Unity Menu bar. + https://github.com/AyatanaIndicators/libayatana-appindicator/archive/refs/tags/0.5.90.tar.gz + + cmake + gtk-doc + gtk3-devel + vala-devel + python3-devel + libdbusmenu-gtk3 + libdbusmenu-devel + python3-pygobject3-devel + ayatana-libindicator-devel + gobject-introspection-devel + + desktop/misc/ayatana-libappindicator/pspec.xml + + + ayatana-libappindicator + + atk + gtk3 + glib2 + cairo + pango + gdk-pixbuf + libdbusmenu-gtk3 + libdbusmenu-glib + ayatana-libindicator + + + /usr/lib + /usr/share + /usr/share/doc + + + + ayatana-libappindicator-devel + + ayatana-libappindicator + gtk3-devel + libdbusmenu-gtk + libdbusmenu-glib + libdbusmenu-devel + ayatana-libindicator-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-01-18 + 0.5.90 + Version bump + fury + uglyside@yandex.ru + + + 2021-10-13 + 0.5.5 + First build + fury + uglyside@yandex.ru + + + + + + ayatana-libindicator + https://github.com/AyatanaIndicators/libayatana-indicator + + fury + uglyside@yandex.ru + + GPL-3 + library + desktop.misc + Ayatana Indicators Shared Library. + The Ayatana Indicators project is the continuation of Application Indicators and System Indicators, two technologies developed by Canonical Ltd. for the Unity7 desktop. + https://github.com/AyatanaIndicators/libayatana-indicator/archive/refs/tags/0.9.0.tar.gz + + cmake + gtk3-devel + glib2-devel + python3-devel + ayatana-ido-devel + + desktop/misc/ayatana-libindicator/pspec.xml + + + ayatana-libindicator + + gtk3 + glib2 + gdk-pixbuf + ayatana-ido + + + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share + + + + ayatana-libindicator-devel + + gtk3-devel + glib2-devel + ayatana-ido-devel + ayatana-libindicator + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2022-01-18 + 0.9.0 + Version bump + fury + uglyside@yandex.ru + + + 2021-10-13 + 0.8.4 + First build + fury + uglyside@yandex.ru + + + + + + azfontviewer + http://azsky2.html.xdomain.jp/soft/azfontviewer.html + + fury + uglyside@yandex.ru + + MIT + app:gui + desktop.misc + A font viewer that directly reads and previews font files. + A font viewer that directly reads and previews font files. It uses new mlk gui toolchain. + https://gitlab.com/azelpg/azfontviewer/-/archive/v1.0.2/azfontviewer-v1.0.2.tar.bz2 + + zlib-devel + libX11-devel + libpng-devel + libXext-devel + freetype-devel + libXcursor-devel + fontconfig-devel + + desktop/misc/azfontviewer/pspec.xml + + + azfontviewer + + zlib + libpng + libX11 + libXext + freetype + libXcursor + fontconfig + + + /usr/bin + /usr/share + + + + + 2021-12-11 + 1.0.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-25 + 1.0.1 + First build + fury + uglyside@yandex.ru + + + + + + cairo-dock + https://glx-dock.org/ + + Ali Cengiz Kurt + alicengizkurt@gmail.com + + GPLv3 + LGPLv2 + app:gui + desktop.misc + Cairo-Dock, masaüstünüz için güzel, hafif ve kullanışlı bir arayüzdür, avantajlı bir şekilde sistem panelinizi değiştirebilir! + Schöner Dock (Startleiste für Programme) mit vielen Animationen + A pretty, light and convenient interface to your desktop, able to replace advantageously your system panel. + Ładny, lekki i wygodny interfejs dla twojego pulpitu. + Cairo-Dock, masaüstünüz için güzel, hafif ve kullanışlı bir arayüzdür, avantajlı bir şekilde sistem panelinizi değiştirebilir! Çoklu bağlantı noktaları, görev çubuğu, başlatıcılar ve birçok kullanışlı uygulama içerir. + cairo/glx-dock ist eine auf dem Desktop angezeigte hoch konfigurierbare animierte Programmstart-Leiste, die sich am Dock von MacOS-X anlehnt. + Cairo-Dock is a pretty, light and convenient interface to your desktop, able to replace advantageously your system panel! It features multi-docks, taskbar, launchers and a lot of useful applets. + Posiada wiele przydatnych apletów, które mogą być oderwane od stacji dokującej jak widżety pulpitu. Dostępne jest też do pobrania wiele gotowych do wykorzystania motywów. + cairo-dock + https://launchpad.net/cairo-dock-core/3.4/3.4.1/+download/cairo-dock-3.4.1.tar.gz + + cmake + gtk3-devel + curl-devel + cairo-devel + pango-devel + glib2-devel + libX11-devel + libxml2-devel + libXtst-devel + wayland-devel + librsvg-devel + gtkglext-devel + libglvnd-devel + mesa-glu-devel + gtkglext-devel + libXrandr-devel + dbus-glib-devel + dbus-glib-devel + libXrender-devel + libXinerama-devel + libXcomposite-devel + + desktop/misc/cairo-dock/pspec.xml + + + cairo-dock + + gtk3 + curl + cairo + glib2 + pango + libX11 + wayland + libxml2 + librsvg + libXtst + mesa-glu + libglvnd + dbus-glib + libXrandr + gdk-pixbuf + libXrender + libXinerama + libXcomposite + wayland-client + + + /usr/bin + /usr/lib/cairo-dock + /usr/share/cairo-dock + /usr/share/applications + /usr/share/pixmaps + /etc + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/lib/libgldi.so* + + + + cairo-dock-devel + + curl-devel + dbus-devel + gtk3-devel + cairo-devel + glib2-devel + libX11-devel + libXtst-devel + librsvg-devel + libxml2-devel + wayland-devel + libglvnd-devel + mesa-glu-devel + dbus-glib-devel + libXrandr-devel + libXrender-devel + libXcomposite-devel + cairo-dock + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-31 + 3.4.1 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + desktop-file-utils + http://www.freedesktop.org/software/desktop-file-utils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.misc + Command line utilities to work with desktop menu entries + Masaüstü menü girdilerini yönetmek için komut satırı araçları + desktop files are used to describe an application for inclusion in GNOME or KDE menus. This package contains desktop-file-validate which checks whether a .desktop file complies with the specification and desktop-file-install which installs a desktop file to the standard directory, optionally fixing it up in the process. + http://freedesktop.org/software/desktop-file-utils/releases/desktop-file-utils-0.26.tar.xz + + glib2-devel + + desktop/misc/desktop-file-utils/pspec.xml + + + desktop-file-utils + + glib2 + + + /usr/bin + /usr/share/doc + /usr/share/man/man1/ + /usr/share/emacs/site-lisp/desktop-entry-mode.el + + + System.PackageHandler + + + + + 2021-09-22 + 0.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-16 + 0.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 0.23 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-18 + 0.23 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-13 + 0.23 + version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-09-07 + 0.21 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + diodon + https://github.com/diodon-dev/diodon + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + desktop.misc + Clipboard manager. + Aiming to be the best integrated clipboard manager for the Unity desktop. + https://launchpad.net/diodon/trunk/1.12.0/+download/diodon-1.12.0.tar.xz + + cmake + meson + gtk3-devel + vala-devel + glib2-devel + libpeas-devel + libxslt-devel + zeitgeist-devel + xorg-server-xvfb + desktop-file-utils + ayatana-libappindicator-devel + + desktop/misc/diodon/pspec.xml + + + diodon + + gtk3 + glib2 libX11 libXtst - kconfig - kpeople - kcmutils - kservice - qca2-qt5 - qt5-base - kwayland - kguiaddons - libfakekey - kcoreaddons - kdbusaddons - kiconthemes - kpeoplevcard - kwindowsystem - pulseaudio-qt - qt5-x11extras - qt5-multimedia - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - qt5-quickcontrols2 - qqc2-desktop-style + libpeas + zeitgeist + gdk-pixbuf + ayatana-libappindicator + + + /etc/xdg + /etc/apport + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + + + + diodon-devel + + diodon + glib2-devel + gtk3-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-06-10 + 1.12.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-13 + 1.11.1 + First build + fury + uglyside@yandex.ru + + + + + + dunst + https://dunst-project.org/ + + fury + uglyside@yandex.ru + + BSD-3-Clause + service + desktop.misc + Lightweight and customizable notification daemon. + Dunst is a lightweight replacement for the notification daemons provided by most desktop environments. It’s very customizable, isn’t dependent on any toolkits, and therefore fits into those window manager centric setups we all love to customize to perfection. + https://github.com/dunst-project/dunst/archive/refs/tags/v1.8.1.tar.gz + + dbus-devel + glib2-devel + cairo-devel + pango-devel + libX11-devel + libXrandr-devel + libnotify-devel + libXinerama-devel + libXScrnSaver-devel + wayland-devel + wayland-cursor + wayland-client + wayland-protocols-devel + + desktop/misc/dunst/pspec.xml + + + dunst + + dbus + glib2 + cairo + pango + libX11 + libXext + libXrandr + libnotify + gdk-pixbuf + libXinerama + libXScrnSaver + wayland-cursor + wayland-client + + + /etc/dunst/dunstrc + /usr/bin + /usr/share/dbus-1 + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 1.8.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-11 + 1.7.3 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-02 + 1.7.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-02 + 1.7.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-13 + 1.6.1 + First build + fury + uglyside@yandex.ru + + + + + + grim + https://github.com/emersion/grim + + Idris Kalp + idriskalp@gmail.com + + MIT + app:console + desktop.misc + Screenshot utility for Wayland. + Wayland için ekran görüntüsü yardımcı programı. + grim is a tool to take screenshots on Wayland sessions. + grim, Wayland oturumlarında ekran görüntüsü almak için bir araçtır. + https://github.com/emersion/grim/releases/download/v1.4.0/grim-1.4.0.tar.gz + + meson + ninja + libpng-devel + pixman-devel + wayland-devel + wayland-client + bash-completion + libjpeg-turbo-devel + wayland-protocols-devel + + desktop/misc/grim/pspec.xml + + + grim + + libpng + pixman + libjpeg-turbo + wayland-client + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-02-22 + 1.4.0 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + gromit-mpx + https://github.com/bk138/gromit-mpx + + fury + uglyside@yandex.ru + + GPL-2 + app + desktop.misc + Gromit-MPX is a multi-pointer GTK3 port of the original Gromit desktop annotation tool. + It enables graphical annotations with several pointers at once and is A LOT faster than its predecessor since it uses the XCOMPOSITE extension where available. + https://github.com/bk138/gromit-mpx/archive/refs/tags/1.4.2.tar.gz + + cmake + gtk3-devel + libXi-devel + libX11-devel + libdbusmenu-devel + ayatana-libappindicator-devel + + desktop/misc/gromit-mpx/pspec.xml + + + gromit-mpx + + gtk3 + cairo + glib2 + libXi + libX11 + gdk-pixbuf + ayatana-libappindicator + + + /usr/bin + /etc/gromit-mpx + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 1.4.2 + Version bump. + fury + uglyside@yandex.ru + + + 2022-02-05 + 1.4.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-26 + 1.4 + First build. + fury + uglyside@yandex.ru + + + + + + grub-customizer + https://launchpad.net/grub-customizer/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + desktop.misc + A graphical grub2 settings manager + A graphical grub2 settings manager + A graphical grub2 settings manager + A graphical grub2 settings manager + https://launchpad.net/grub-customizer/5.1/5.1.0/+download/grub-customizer_5.1.0.tar.gz + + cmake + gtk3-devel + atkmm-devel + glib2-devel + glibmm-devel + gtkmm3-devel + cairomm-devel + openssl-devel + pangomm-devel + libsigc++-devel + libarchive-devel + + desktop/misc/grub-customizer/pspec.xml + + + grub-customizer + + gtk3 + atkmm + glib2 + glibmm + gtkmm3 + libgcc + cairomm + openssl + pangomm + libsigc++ + libarchive /usr/bin /etc /usr/lib - /usr/include /usr/share /usr/share/locale /usr/share/man /usr/share/info /usr/share/doc + + grub.cfg + - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-15 - 21.04.3 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-02-11 - 1.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-15 - 1.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-08 - 1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-18 - 1.3.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 1.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-19 - 1.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-20 - 1.3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-27 - 1.3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-13 - 1.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 1.3.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 1.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-10 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 1.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 1.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-25 - 1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-08 - 1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-12 - 1.0.3 - Version Bump - Stefan Gronewold - groni@pisilinux.org - - 2016-07-09 - 0.9g + 2019-06-29 + 5.1.0 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + PisiLinux Community + admins@pisilinux.org - kdenetwork-filesharing - http://www.kde.org/ + lightdm + https://github.com/CanonicalLtd/lightdm - Mathias Freire - mathiasfreire45@gmail.com + Berk Çakar + berk2238@hotmail.com - GPLv2 - library - desktop.kde.applications - Filesharing configuration modlue. - Dosya paylaşım konfigürasyon modülü. - Filesharing configuration modlue. - Dosya paylaşım konfigürasyon modülü. - mirrors://kde/stable/release-service/22.04.1/src/kdenetwork-filesharing-22.04.1.tar.xz + GPL2 + app + desktop.misc + LightDM is a cross-desktop display manager. + LightDM Qt istemci kitaplığı. + LightDM is a cross-desktop display manager. + lightdm, LightDM Qt istemci kitaplıklarını içerir. + lightdm + https://github.com/CanonicalLtd/lightdm/releases/download/1.30.0/lightdm-1.30.0.tar.xz - extra-cmake-modules - qt5-base-devel - qt5-declarative-devel - kdoctools-devel - kcoreaddons-devel - ki18n-devel - kio-devel - kservice-devel - kdeclarative-devel - kwidgetsaddons-devel - samba-devel + itstool + intltool + python3-devel + libxklavier-devel + gobject-introspection-devel + pam-devel + libgcrypt-devel + gtk3-devel + libxml2-devel + dbus-glib-devel + libxcb-devel + libXdmcp-devel + qt5-base-devel + vala-devel + libpcre-devel + accountsservice-devel + audit-devel - desktop/kde/applications/kdenetwork-filesharing/pspec.xml + + lightdm-default-config.patch + + desktop/misc/lightdm/pspec.xml - kdenetwork-filesharing + lightdm - kio - ki18n - libgcc - qt5-base - qt5-declarative - kservice - kcompletion - kcoreaddons - kdeclarative - kwidgetsaddons + pam + audit + glib2 + libX11 + libxcb + libXdmcp + libgcrypt + libxklavier + /etc + /usr/bin + /usr/lib/liblightdm-gobject-1.so* + /usr/libexec + /usr/lib/lightdm/lightdm-guest-session + /usr/lib/tmpfiles.d + /usr/lib/girepository-1.0 + /usr/share/accountsservice + /usr/share/bash-completion + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/share/help + /usr/share/locale + /usr/share/man + /usr/share/polkit-1 + + + gdm + lxdm + sddm + + + System.Service + System.Package + + + + lightdm-devel + LightDM is a cross-desktop display manager. + development + + lightdm + glib2-devel + libX11-devel + libxklavier-devel + + + /usr/include/lightdm-gobject-1 + /usr/lib/pkgconfig/liblightdm-gobject-1.pc + /usr/share/gir-1.0 + /usr/share/vala + + + + liblightdm-qt5 + Qt5 library for LightDM. + lightdm + + libgcc + lightdm + qt5-base + + + /usr/lib/liblightdm-qt5-3.so* + + + + liblightdm-qt5-devel + LightDM is a cross-desktop display manager. + development + + liblightdm-qt5 + qt5-base-devel + + + /usr/include/lightdm-qt5-3 + /usr/lib/pkgconfig/liblightdm-qt5-3.pc + + + + + 2022-06-03 + 1.30.0 + Rebuild for qt5 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-06-05 + 1.30.0 + Rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2021-05-04 + 1.30.0 + First Release. + Berk Çakar + berk2238@hotmail.com + + + + + + lightdm-gtk-greeter + https://github.com/Xubuntu/lightdm-gtk-greeter + + Berk Çakar + berk2238@hotmail.com + + GPLv2 + app:gui + desktop.misc + Login screen using the LightDM framework. + Login screen using the LightDM framework. + https://github.com/Xubuntu/lightdm-gtk-greeter/archive/refs/tags/lightdm-gtk-greeter-2.0.8.tar.gz + + gtk3-devel + cairo-devel + gdk-pixbuf-devel + libxklavier-devel + exo-devel + xfce4-dev-tools + gobject-introspection-devel + lightdm-devel + + desktop/misc/lightdm-gtk-greeter/pspec.xml + + + lightdm-gtk-greeter + + lightdm + gtk3 + cairo + glib2 + libX11 + gdk-pixbuf + libxklavier + + + /usr/bin/lightdm-gtk-greeter + /usr/share/locale + /etc /usr/share + + + + + 2021-04-20 + 2.0.8 + First release. + Berk Çakar + berk2238@hotmail.com + + + + + + lxdm + http://lxde.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + LGPLv2 + app:gui + desktop.misc + LXDE Display Manager + LXDE Ekran Yöneticisi + LXDM is the future display manager of LXDE. + LXDM, LXDE için bir ekran yöneticisidir. + mirrors://sourceforge/lxdm/lxdm-0.5.3.tar.xz + https://sourceforge.net/projects/pisilinux/files/source/lxdm-pisilinux-theme2.zip + + intltool + iso-codes-devel + gtk3-devel + gettext-devel + pam-devel + elogind-devel + cairo-devel + pango-devel + dbus-devel + glib2-devel + libX11-devel + libxcb-devel + gdk-pixbuf-devel + at-spi2-atk-devel + at-spi2-core-devel + + + onscreenkeyboard.patch + customization-for-pisilinux.patch + lxdm-0.5.3-upstream-fixes.patch + + desktop/misc/lxdm/pspec.xml + + + lxdm + + pam + gtk3 + cairo + pango + glib2 + gdk-pixbuf + libX11 + libxcb + elogind + + + /etc + /usr/sbin + /usr/bin + /usr/libexec + /usr/share/locale + /usr/share + /etc/conf.d/xdm + + + pisi-lightdm-greeter + lightdm + sddm + mdm + gdm + slim + + + System.Service + + + lxdm.desktop + lxdm + + + + + 2021-12-07 + 0.5.3 + Added new pisilinux theme + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-04 + 0.5.3 + LXDM rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-02-11 + 0.5.3 + Added new pisilinux theme + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-02-10 + 0.5.3 + Added new pisilinux theme + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-04-21 + 0.5.3 + Rebuild at-spi2. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-18 + 0.5.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-07 + 0.5.3 + Rebuild revert + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-10 + 0.5.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 0.5.3 + set default session KDE5 + Ayhan Yalçınsoy + ayhanyalcinsoy@gmail.com + + + 2017-11-19 + 0.5.3 + set default session KDE5 + Ayhan Yalçınsoy + ayhanyalcinsoy@gmail.com + + + 2017-09-23 + 0.5.3 + set background and icon + Ayhan Yalçınsoy + ayhanyalcinsoy@gmail.com + + + 2017-05-06 + 0.5.3 + Fix service start on virtual machine + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-09-29 + 0.5.1 + Fix service start on virtual machine + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-08-23 + 0.5.1 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + nitrogen + https://github.com/l3ib/nitrogen + + fury + uglyside@yandex.ru + + GPL-2 + app + desktop.misc + Background browser and setter for X windows. + pass + https://github.com/l3ib/nitrogen/archive/5fe0018ddc6abccd119215d4222941940ada53a6.zip + + gtk2-devel + gtkmm-devel + libX11-devel + libXinerama-devel + + desktop/misc/nitrogen/pspec.xml + + + nitrogen + + gtk2 + atkmm + glib2 + gtkmm + glibmm + libX11 + libgcc + pangomm + libsigc++ + libXinerama + + + /usr/bin/nitrogen + /usr/share + /usr/share/locale + /usr/share/man/man1 + + + + + 2021-12-12 + 2021.03.31 + First build from git. + fury + uglyside@yandex.ru + + + + + + packagekit + https://www.freedesktop.org/software/PackageKit/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + desktop.misc + A system designed to make installation and updates of packages easier. + PackageKit is a system designed to make installing and updating software on your computer easier. The primary design goal is to unify all the software graphical tools used in different distributions, and use some of the latest technology like PolicyKit. + http://www.freedesktop.org/software/PackageKit/releases/PackageKit-1.1.5.tar.xz + + sqlite-devel + gtk3-devel + gtk2-devel + intltool + polkit-devel + python3-devel + elogind-devel + gobject-introspection-devel + + desktop/misc/packagekit/pspec.xml + + + packagekit + + atk + gtk2 + gtk3 + cairo + glib2 + pango + sqlite + freetype + harfbuzz + fontconfig + gdk-pixbuf + + + /var + /etc + /usr/bin /usr/lib + /usr/libexec + /usr/share/locale + /usr/share/doc + /usr/share/gtk-doc + /usr/share/bash-completion + /usr/share/dbus-1 + /usr/share/PackageKit + /usr/share/polkit-1 + + + pisi.conf + + + + packagekit-devel + Development files for packagekit + + packagekit + glib2-devel + sqlite-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-06-05 + 1.1.5 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + picom + https://github.com/yshui/picom/ + + fury + uglyside@yandex.ru + + MIT + MPL-2 + app + desktop.misc + A compositor for X11. + This is forked from the original Compton because it seems to have become unmaintained. + https://github.com/yshui/picom/archive/refs/tags/v9.1.tar.gz + + cmake + meson + uthash + asciidoc + dbus-devel + mesa-devel + libev-devel + pixman-devel + libxcb-devel + libX11-devel + libpcre-devel + libxslt-devel + libglvnd-devel + libXext-devel + libconfig-devel + xcb-util-image-devel + xcb-util-renderutil-devel + + + config.patch + + desktop/misc/picom/pspec.xml + + + picom + + dbus + mesa + libev + libX11 + libxcb + pixman + libpcre + libglvnd + libconfig + xcb-util-image + xcb-util-renderutil + + + /etc/xdg + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2021-04-14 + 9.1 + First build. + fury + uglyside@yandex.ru + + + + + + pisi-appstream-data + https://github.com/pisilinux/pisi-appstream-data + + Pisi Linux Admins + admins@pisilinux.org + + CC-BY-SA 3.0 + data + desktop.misc + Appstream data for Pisi GNU/Linux + Appstream data for Pisi GNU/Linux in order to be used in applications such as GNOME Software, KDE Discover etc. + https://github.com/pisilinux/pisi-appstream-data/archive/refs/tags/20210710.tar.gz + + appstream-glib-devel + + desktop/misc/pisi-appstream-data/pspec.xml + + + pisi-appstream-data + + /usr/share/app-info/xmls + /usr/share/app-info/icons + + + + + 2021-07-10 + 20210710 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + pisi-lightdm-greeter + https://github.com/ayhanyalcinsoy/pisi-lightDM-greeter + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + LGPLv3 + desktop.misc + Qt5 greeter for LightDM + LightDM için Qt tabanlı bir giriş ekranı + Qt5 greeter for LightDM + LightDM için Qt tabanlı bir giriş ekranı + lightdm + https://github.com/ayhanyalcinsoy/pisi-lightDM-greeter/archive/refs/tags/v0.97.5.tar.gz + + lightdm-devel + liblightdm-qt5-devel + qt5-base-devel + extra-cmake-modules + qt5-webengine-devel + qt5-x11extras-devel + qt5-linguist + libXcursor-devel + libXrandr-devel + + desktop/misc/pisi-lightdm-greeter/pspec.xml + + + pisi-lightdm-greeter + + libX11 + libgcc + qt5-base + libXrandr + libXcursor + qt5-webengine + qt5-x11extras + liblightdm-qt5 + lightdm + + + /usr/bin + /etc + /usr/share/local + /usr/share/icons + /usr/share/xgreeters + /usr/share/doc + /usr/share/lightdm + + + + + 2022-01-22 + 0.97.5 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-06-04 + 0.97.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-30 + 0.97.4 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + sddm + https://github.com/sddm/sddm + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + library + app:console + desktop.misc + QML based X11 and Wayland display manager + QML tabanlı X11 ve Wayland ekran yöneticisi. + KDE Power Management module. Provides kded daemon DBus helper and KCM for configuring Power settings + https://github.com/sddm/sddm/releases/download/v0.19.0/sddm-0.19.0.tar.xz + https://github.com/sebo28/Sweet-Cat/archive/v0.1.tar.gz + + docutils + pam-devel + qt5-linguist + libxcb-devel + dejavu-fonts + elogind-devel + qt5-base-devel + python-docutils + fontconfig-devel + libxkbfile-devel + extra-cmake-modules + qt5-graphicaleffects + qt5-declarative-devel + qt5-quickcontrols2-devel + + + sddm-0.19.0-consolidate-1.patch + 0002-sddm-fix-build.patch + + desktop/misc/sddm/pspec.xml + + + sddm + + pam + libgcc + libxcb + elogind + qt5-base + fontconfig + dejavu-fonts + qt5-declarative + qt5-quickcontrols2 + qt5-graphicaleffects + + + /etc + /usr/share + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/man /usr/share/doc - kdenetwork + gdm + lightdm + lxdm + mdm + gdm + slim - - kdenetwork - + + System.Service + System.Package + + + sddm.conf + 10-backlight.rules + - + 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 0.19.0 + conf file move to /usr/lib/sddm/sddm.conf.d + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. + + 2022-02-27 + 0.19.0 + fix deps Kamil Atlı suvari@pisilinux.org - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-08-10 + 0.19.0 + fix deps + Kamil Atlı + suvari@pisilinux.org - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-06-04 + 0.19.0 + Rebuild. + Berk Çakar + berk2238@hotmail.com - 2018-02-03 - 17.12.1 - Version bump. + 2021-01-09 + 0.19.0 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2017-12-15 - 17.12.0 - Version bump. + 2020-12-07 + 0.19.0 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. + 2020-02-02 + 0.18.1 + Rebuild Kamil Atlı suvari@pisilinux.org + + 2019-10-29 + 0.18.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-10-12 + 0.18.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-02-22 + 0.18.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-18 + 0.14.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org + 2018-08-10 + 0.14.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2018-02-04 + 0.14.0 + Rebuild. + Ali Algul + aligulle3801@gmail.com + + + 2017-06-19 + 0.14.0 + Rebuild. + Ali Algul + aligulle3801@gmail.com - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) + 2017-03-05 + 0.14.0 + Rebuild. + Stefan Gronewold groni@pisilinux.org - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 + 2016-10-06 + 0.14.0 Version bump. Stefan Gronewold groni@pisilinux.org + + 2016-09-07 + 0.13.0 + Add conflict list + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + - 2016-07-31 - 16.04.3 - Version bump. + 2016-08-14 + 0.13.0 + Rebuild Yusuf Aydemir yusuf.aydemir@pisilinux.org - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org + 2016-07-15 + 0.13.0 + Fix session authorization issue and add rules + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2016-03-20 - 15.12.3 + 2015-11-18 + 0.13.0 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -153844,3978 +153333,1459 @@ It supports email, address books, calendars, tasks, news feeds and much more. - bomber - https://www.kde.org/applications/games/bomber/ + shared-mime-info + http://freedesktop.org/wiki/Software/shared-mime-info - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + data + desktop.misc + The shared MIME info database + Paylaşımlı MIME veritabanı tanımlamaları + shared-mim-info est un paquet contenant un grand nombre de types MIME communs, créés en fusionnant les bases de données KDE et GNOME existantes et en les convertissant au nouveau format, ainsi qu'un logiciel pour mettre à jour cette base en fonction des spécifications de share-mime-info. + shared-mime-info is a package containing a large number of common MIME types, created by converting the existing KDE and GNOME databases to the new format and merging them together, and software for updating the database based on the share-mime-info specification. + Bu pakette büyük miktarda dosya türü bilgisi bulunur. Bu bilgiler mevcut KDE ve GNOME veritabanlarının yeni biçime dönüştürülerek birleştirilmesinden oluşmuştur. Ayrıca, pakette bu veritabanını güncelleyen bir uygulama da bulunmaktadır. + https://gitlab.freedesktop.org/xdg/shared-mime-info/-/archive/2.2/shared-mime-info-2.2.tar.bz2 + https://gitlab.freedesktop.org/xdg/xdgmime/-/archive/95e31875b257058e482342095c72050e4ed56ae3/xdgmime-95e31875b257058e482342095c72050e4ed56ae3.tar.bz2 + + libxml2-devel + glib2-devel + intltool + itstool + xmlto + meson + + desktop/misc/shared-mime-info/pspec.xml + + + shared-mime-info + + libxml2 + glib2 + + + /etc/X11/xinit + /usr/bin + /usr/share/applications + /usr/share/mime + /usr/share/gettext/its + /usr/share/pkgconfig + /usr/share/locale/ + /usr/share/doc + /usr/share/man + + + System.PackageHandler + System.Package + + + update-mime-database.sh + defaults.list + mimeapps.list + mimetypefixes.xml + + + + + 2022-05-07 + 2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-15 + 2.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-28 + 2.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-19 + 2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-16 + 1.15 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2019-11-06 + 1.15 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-12-31 + 1.10 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 1.9 + Rebuild New T. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-17 + 1.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-19 + 1.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-05 + 1.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + startup-notification + http://www.freedesktop.org/software/startup-notification/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.misc + Application startup notification and feedback library + Uygulama başlangıç duyurusu ve geribildirim sistemi + startup-notification est un exemple d'implémentation de notification de démarrage (indiquant à l'environnement bureautique qu'une application a fini de démarrer). + startup-notification is a sample implementation of startup notification (telling the desktop environment when an app is done starting up). + startup-notification, bir program başlatıldığında bunu masaüstü ortamına bildirir. + http://www.freedesktop.org/software/startup-notification/releases/startup-notification-0.12.tar.gz + + libX11-devel + libxcb-devel + xcb-util-devel + + desktop/misc/startup-notification/pspec.xml + + + startup-notification + + libX11 + libxcb + xcb-util + + + /usr/lib + /usr/share/doc + + + + startup-notification-devel + Development files for startup-notification + startup-notification için geliştirme dosyaları + + startup-notification + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/*/*.txt + + + + + 2020-02-02 + 0.12 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.12 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 0.12 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 0.12 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + volumeicon + https://github.com/Maato/volumeicon + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + desktop.misc + A lightweight volume control applet with support for global keybindings. + Volume Icon aims to be a lightweight volume control that sits in your systray. + http://nullwise.com/files/volumeicon/volumeicon-0.5.1.tar.gz + + intltool + gtk3-devel + glib2-devel + gettext-devel + alsa-lib-devel + libnotify-devel + + + turkish_translation.patch + ru_translation.patch + ukranian_translation.patch + notify_cflags_set.patch + languas_list.patch + + desktop/misc/volumeicon/pspec.xml + + + volumeicon + + gtk3 + glib2 + cairo + libX11 + alsa-lib + libnotify + gdk-pixbuf + + + /usr/bin/volumeicon + /usr/share + /usr/share/locale + + + + + 2022-05-02 + 0.5.1 + First build. + fury + uglyside@yandex.ru + + + + + + xdg-user-dirs + http://freedesktop.org/wiki/Software/xdg-user-dirs + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + desktop.misc + Utilities to handle user data directories + Kullanıcı veri dizinlerini idare etmek için yardımcı uygulamalar + xdg-user-dirs is a tool to help manage "well known" user directories like the desktop folder and the music folder. It also handles localization (i.e. translation) of the filenames. + xdg-user-dirs, masaüstü ve müzik klasörleri gibi belli başlı kullanıcı dizinlerini yönetmek için bir araçtır. Ayrıca dosya adlarının yerelleştirilmesini de (ör. metin çevirileri) idare eder. + http://user-dirs.freedesktop.org/releases/xdg-user-dirs-0.17.tar.gz + + gettext-devel + docbook-xsl + libxml2-devel + libxslt-devel + + + defaults.patch + tr17.patch + xdg-user-dirs-0.15-libiconv.patch + + desktop/misc/xdg-user-dirs/pspec.xml + + + xdg-user-dirs + + /etc/X11 + /etc/xdg + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/man + + + xdg-user-dirs.sh + + + + + 2021-01-29 + 0.17 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-08 + 0.17 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-06 + 0.17 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 0.17 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-18 + 0.17 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-17 + 0.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 0.15 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 0.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-01 + 0.15 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + xdg-utils + https://www.freedesktop.org/wiki/Software/xdg-utils + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + desktop.misc + Utilitaires de bureaux communs. + Common desktop utilities + Ortak masaüstü komutları + Xdg-utils is a set of command line tools that assist applications with a variety of desktop integration tasks. About half of the tools focus on tasks commonly required during the installation of a desktop application and the other half focuses on integration with the desktop environment while the application is running. + https://portland.freedesktop.org/download/xdg-utils-1.1.3.tar.gz + + xmlto + docbook-xsl + util-linux + libxslt + lynx + + + 0001_better_pcmanfm_check.patch + + desktop/misc/xdg-utils/pspec.xml + + + xdg-utils + + /usr/bin + /usr/share/man + + + + + 2020-01-07 + 1.1.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-25 + 1.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 1.1.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-17 + 1.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-05 + 1.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-17 + 1.1.0_20140207 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.1.0_20140207 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-16 + 1.1.0_20140207 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + history-manager + https://github.com/PisiLinuxNew/history-manager/ + + Metehan Özbek + admin@pisilinux.org + + GPLv2 + app:gui + desktop.pisilinux + History Manager Tool for pisi + Pisi Geçmiş Yöneticisi uygulaması + History manager is a graphical interface to pisi snapshot facilities. + Pisi ile yapılan işlem geçmişini gösterme, sistemi belirli noktaya döndürme, yeni görüntü alma gibi geçmiş yönetimi işlemleri yapmayı sağlayan araç. + search + https://github.com/PisiLinuxNew/history-manager/archive/refs/tags/history-manager-0.2.9.tar.gz + + python-qt5-devel + pypolkit + qt5-base-devel + python-setuptools + qt5-linguist + + desktop/pisilinux/history-manager/pspec.xml + + + history-manager + + python-qt5 + pypolkit + + + /usr/bin + /usr/share/locale + /usr/lib/python* + /usr/share + + + + + 2022-06-03 + 0.2.9 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-03-18 + 0.2.8.1b + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-16 + 0.2.8.1b + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 0.2.8.0b + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-17 + 0.2.8.0b + fixed window title issue for other desktops. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-04-08 + 0.2.8.0b + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-18 + 0.2.8.0b + First release + Metehan Özbek + admin@pisilinux.org + + + + + + kaptan + https://pisilinux.org + + Metehan Özbek + mthnzbk@gmail.com GPLv3 app:gui - desktop.kde.games - A single player arcade game - Bomber is a single player arcade game. The player is invading various cities in a plane that is decreasing in height. - mirrors://kde/stable/release-service/22.04.1/src/bomber-22.04.1.tar.xz + desktop.pisilinux + Kaptan, Pisi Linux workspace configuration wizard + Pisi Linux Kaptan + Pisi Linux Kaptan + Kaptan lets you configure your workspace on first login. + Kaptan, bilgisayarınız ilk defa açıldığında çalışma ortamınızı kişiselleştirmenize yardımcı olur. + Kaptan, el asistente de inicio de Pisi Linux que le ayudará a personalizar su entorno de trabajo. + kaptan + https://github.com/PisiLinuxNew/kaptan/archive/refs/tags/7.4.3.tar.gz - extra-cmake-modules - qt5-base-devel - mesa-devel - kxmlgui-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kcrash-devel + python3-setuptools + python3-qt5-devel + python3-devel + qt5-linguist - desktop/kde/applications/bomber/pspec.xml + desktop/pisilinux/kaptan/pspec.xml - bomber + kaptan - ki18n - libgcc - kcrash - kconfig - kxmlgui - qt5-base - qt5-phonon - kcoreaddons - kdbusaddons - libkdegames - kconfigwidgets - kwidgetsaddons + python3-qt5 /usr/bin - /usr/share/appdata + /usr/share/kaptan + /usr/lib/python3*/site-packages /usr/share/applications - /usr/share - /usr/share/bomber - /usr/share/config.kcfg /usr/share/icons /usr/share/doc - /usr/share/kxmlgui5 + /usr/share/kaptan/languages + /etc - - 2022-05-17 - 22.04.1 - Version bump. + + 2021-10-24 + 7.4.3 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. + + 2021-04-03 + 7.4.3 + version bump Kamil Atlı suvari@pisilinux.org - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-05-30 + 7.4.0 + Rebuild. + Erkan IŞIK + erkanisik@pisilinux.org - 2018-03-22 - 17.12.3 + 2019-10-19 + 7.3.2 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Erkan IŞIK + erkanisik@pisilinux.org - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2019-10-19 + 7.3.1 + fix pisilinux.org links. + Erkan IŞIK + erkanisik@pisilinux.org - 2017-12-15 - 17.12.0 + 2019-02-03 + 7.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-11-11 - 17.08.3 + 2019-01-16 + 7.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-10-14 - 17.08.2 - Version bump. + 2018-10-17 + 7.2 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-02-07 + 7.2 + auto start closed. + Kamil Atlı + suvari@pisilinux.org - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com + 2018-02-07 + 7.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2017-06-29 - 17.04.2 + 2017-04-05 + 7.1 Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-22 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kapptemplate - http://www.kde.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app:gui - desktop.kde.sdk - Application template generator - Uygulama şablon oluşturucu. - KAppTemplate is a shell script that will create the necessary framework to develop several types of applications, including applications based on the KDE development platform. - Kapptemplate, çeşitli uygulamaları geliştirmek için gerekli olabilecek şablonlar oluşturmayı sağlar. - mirrors://kde/stable/release-service/22.04.1/src/kapptemplate-22.04.1.tar.xz - - qt5-base-devel - extra-cmake-modules - gettext - kcoreaddons-devel - kconfigwidgets-devel - kcompletion-devel - karchive-devel - kio-devel - ki18n-devel - kdoctools-devel - - desktop/kde/applications/kapptemplate/pspec.xml - - - kapptemplate - - qt5-base - kio - ki18n - libgcc - kconfig - karchive - kcompletion - kcoreaddons - kconfigwidgets - kwidgetsaddons - - - /usr/share - /usr/share/doc - /usr/bin - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild Ertuğrul Erata ertugrulerata@gmail.com - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-14 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-06-29 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - 2017-03-03 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-21 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-11 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - klickety - http://games.kde.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - desktop.kde.games - A kind of solitary game - Bir tür soliter oyunu - Klickety is a kind of solitary game that takes place on a Tetris-like board. - Klickety Tetris gibi tahta üzerinde yer alan bir tür soliter oyunu - klickety - mirrors://kde/stable/release-service/22.04.1/src/klickety-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kcoreaddons-devel - kconfig-devel - kwidgetsaddons-devel - ki18n-devel - kconfigwidgets-devel - kxmlgui-devel - kio-devel - kdoctools-devel - knotifyconfig-devel - kdbusaddons-devel - knotifications-devel - libkdegames-devel - qt5-declarative-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/klickety/pspec.xml - - - klickety - - kio - ki18n - libgcc - kconfig - kxmlgui - qt5-base - kcoreaddons - kdbusaddons - libkdegames - knotifyconfig - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/bin - /usr/share/applications - /usr/share/icons - /usr/share/kconf_update - /usr/share/klickety - /usr/share/knotifications5 - /usr/share/metainfo - /usr/share/kxmlgui5 - /usr/share/sounds - /usr/share/doc - /usr/share/locale - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 + 7.0 Version bump. Kamil Atlı suvari@pisilinux.org - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-15 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 + + 2017-03-03 + 6.0 Rebuild for new Toolchain. Stefan Gronewold(groni) groni@pisilinux.org - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-08-09 + 5.0 + Release Bump + Metehan Özbek + mthnzbk@gmail.com - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + 2016-07-20 + 5.1.2 + Release Bump + Metehan Özbek + mthnzbk@gmail.com - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-20 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - kwordquiz - https://www.kde.org - - Pisi Linux Admins + 2016-06-09 + 5.1.1 + Release Bump + Pisi Linux Community admin@pisilinux.org - - LGPLv2 - app:gui - desktop.kde.edu - Kwordquiz is a Flash Card Trainer - KWordQuiz is a tool that gives you a powerful way to master new vocabularies. It may be a language or any other kind of terminology.. - mirrors://kde/stable/release-service/22.04.1/src/kwordquiz-22.04.1.tar.xz - - qt5-base-devel - gettext-devel - ki18n-devel - kcrash-devel - sonnet-devel - kconfig-devel - kconfigwidgets-devel - kdoctools-devel - kguiaddons-devel - kiconthemes-devel - kitemviews-devel - knotifyconfig-devel - kio-devel - knewstuff-devel - knotifications-devel - kxmlgui-devel - kdelibs4-support-devel - kdeclarative-devel - kcoreaddons-devel - kwindowsystem-devel - kwidgetsaddons-devel - qt5-phonon-devel - libkeduvocdocument-devel - extra-cmake-modules - kdelibs4-support-devel - kdesignerplugin - cmake - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - - desktop/kde/applications/kwordquiz/pspec.xml - - - kwordquiz - - qt5-base - qt5-phonon - ki18n - kconfig - kconfigwidgets - kguiaddons - kiconthemes - kitemviews - knotifyconfig - knewstuff - knotifications - kxmlgui - kdelibs4-support - libgcc - kcoreaddons - kwindowsystem - kwidgetsaddons - libkeduvocdocument - - - /etc/xdg - /usr/bin - /usr/share - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-23 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2016-05-29 + 5.1.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-05-23 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org + 2016-05-17 + 5.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-03-24 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2016-05-17 + 5.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - pimcommon - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - desktop.kde.applications - Common libraries for KDE PIM - Common libraries for KDE PIM - mirrors://kde/stable/release-service/22.04.1/src/pimcommon-22.04.1.tar.xz - - qt5-base-devel - boost-devel - gpgme-devel - qt5-sql-sqlite - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - prison-devel - kmbox-devel - qt5-phonon-devel - akonadi-devel - libical-devel - libqjson-devel - libgpg-error-devel - libxslt-devel - openldap-client - cyrus-sasl-devel - kitemviews-devel - kio-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kmime-devel - kcontacts-devel - kcalendarcore-devel - kldap-devel - libkdepim-devel - extra-cmake-modules - akonadi-calendar-devel - akonadi-contacts-devel - akonadi-search-devel - akonadi-mime-devel - qt5-webkit-devel - qt5-webengine-devel - grantlee-qt5-devel - kdoctools-devel - knewstuff-devel - kpimtextedit-devel - kimap-devel - purpose-devel - - desktop/kde/applications/pimcommon/pspec.xml - - - pimcommon - - qt5-base - kio - ki18n - libgcc - kcodecs - kmime - kldap - kxmlgui - kwallet - karchive - kjobwidgets - qt5-webengine - kcalendarcore - kcontacts - kconfig - libxml2 - kservice - kguiaddons - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - ktextwidgets - kconfigwidgets - kwidgetsaddons - qt5-phonon - prison - akonadi - libkdepim - akonadi-contacts - kdoctools - knewstuff - kpimtextedit - grantlee-qt5 - kimap - cyrus-sasl - purpose - - - /etc/xdg - /usr/lib - /usr/share/doc - /usr/mkspecs/ - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/dbus-1 - /usr/share/config.kcfg - /usr/share/kf5 - /usr/share/config - /usr/share/akonadi - /usr/share/akonadicontact/grantleetheme/default - /usr/share/locale - /usr/share - - - - pimcommon-devel - Development package for pimcommon libraries - Contains development tools and header files for kdepim-common - - qt5-base-devel - boost-devel - pimcommon - - - /usr/lib/cmake - /usr/include - /usr/lib/gpgmepp - /usr/share/kde4/apps/cmake - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-15 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-26 - 17.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-11 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-14 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-06-23 - 17.04.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-25 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-29 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-22 - 16.08.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-04-25 - 16.04.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - korganizer - https://community.kde.org/KDE_PIM - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - desktop.kde.applications - Calendar and scheduling Program - KOrganizer is the calendar and scheduling component of Kontact, the integrated personal information manager from KDE. - https://download.kde.org/stable/release-service/22.04.1/src/korganizer-22.04.1.tar.xz - - gpgme-devel - extra-cmake-modules - kcmutils-devel - kcrash-devel - kdbusaddons-devel - kdoctools-devel - prison-devel - akonadi-devel - akonadi-search-devel - grantleetheme-devel - kpimtextedit-devel - libkdepim-devel - libkleo-devel - pimcommon-devel - qt5-base-devel - kitemmodels-devel - akonadi-mime-devel - kemoticons-devel - kinit-devel - kunitconversion-devel - knewstuff-devel - akonadi-contacts-devel - kidentitymanagement-devel - kmailtransport-devel - cyrus-sasl-devel - kcalutils-devel - kholidays-devel - kldap-devel - akonadi-calendar-devel - kontactinterface-devel - akonadi-notes-devel - mailcommon-devel - messagelib-devel - kimap-devel - incidenceeditor-devel - eventviews-devel - calendarsupport-devel - kparts-devel - kuserfeedback-devel - knotifications-devel - qt5-phonon-devel - - desktop/kde/applications/korganizer/pspec.xml - - - korganizer - Calendar and scheduling Program - - kio - ki18n - kmime - kcrash - kparts - libgcc - akonadi - kcodecs - kconfig - kxmlgui - kcalendarcore - kcmutils - kservice - qt5-base - kcalutils - kcontacts - kholidays - knewstuff - libkdepim - pimcommon - eventviews - kitemviews - mailcommon - qt5-phonon - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kitemmodels - kjobwidgets - akonadi-mime - kpimtextedit - akonadi-notes - kwindowsystem - akonadi-search - kconfigwidgets - kmailtransport - knotifications - kwidgetsaddons - calendarsupport - incidenceeditor - akonadi-calendar - akonadi-contacts - kdelibs4-support - kontactinterface - kidentitymanagement - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-17 - 22.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 17.12.3 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-09 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-04 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-08 - 16.12.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - ktp-auth-handler - https://community.kde.org/Real-Time_Communication_and_Collaboration - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - desktop.kde.network - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - mirrors://kde/stable/release-service/22.04.1/src/ktp-auth-handler-22.04.1.tar.xz - - extra-cmake-modules - qt5-base-devel - kwallet-devel - kwidgetsaddons-devel - ki18n-devel - kio-devel - kdewebkit-devel - telepathy-qt5-devel - ktp-common-internals-devel - telepathy-logger-qt-devel - qca2-qt5-devel - libaccounts-glib-devel - libaccounts-qt5-devel - kaccounts-integration-devel - signon-devel - - desktop/kde/applications/ktp-auth-handler/pspec.xml - - - ktp-auth-handler - Provide UI/KWallet Integration For Passwords and SSL Errors on Account Connect - - kio - ki18n - libgcc - signon - kconfig - qca2-qt5 - qt5-base - kcoreaddons - telepathy-qt5 - kwidgetsaddons - libaccounts-qt5 - ktp-common-internals - kaccounts-integration - - - /usr/lib - /usr/share/telepathy - /usr/share/dbus-1 - /usr/share/doc - /usr/share/locale - - - - - 2022-05-17 - 22.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 21.12.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2022-01-10 - 21.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-09 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 20.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 19.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 19.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-23 - 19.04.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-08 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 18.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 18.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 18.04.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-11 - 18.04.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 18.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 17.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 17.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 17.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 17.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-16 - 17.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-18 - 17.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-17 - 17.04.3 - Version bump - Ali Algul - aligulle3801@gmail.com - - - 2017-07-01 - 17.04.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-09 - 16.12.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-30 - 16.12.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 16.08.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-10-22 - 16.08.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-10-20 - 16.08.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-07-31 - 16.04.3 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-05-19 - 16.04.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-03-20 - 15.12.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libkvkontakte - https://www.digikam.org/ - - Stefan Gronewold - groni@pisilinux.org - - GPL - library - desktop.kde.applications - C++ library for asynchronous interaction with VK social network via its web API - C++ library for asynchronous interaction with VK social network via its web API - https://sourceforge.net/projects/pisilinux/files/source/libkvkontakte-5.0.0_20161106.tar.gz - - extra-cmake-modules - gettext-devel - glibc-devel - kcoreaddons-devel - kdewebkit-devel - ki18n-devel - kio-devel - qt5-base-devel - qt5-webkit-devel - kwidgetsaddons-devel - - desktop/kde/applications/libkvkontakte/pspec.xml - - - libkvkontakte - C++ library for asynchronous interaction with VK social network via its web API - - kcoreaddons - kdewebkit - ki18n - kio - qt5-base - qt5-webkit - kwidgetsaddons - libgcc - - - /usr/lib - /usr/share/doc - - - - libkvkontakte-devel - Development files for libkvkontakte - - libkvkontakte - qt5-base-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-05-17 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-09-15 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-07-22 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-18 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-03-11 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-12 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-01-12 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-26 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-08 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 5.0.0_20161106 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-09-14 - 5.0.0_20161106 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-11-09 - 5.0.0_20161106 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - kproperty - http://www.kexi-project.org/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2+ - app:console - desktop.kde.applications - A property editing framework with editor widget similar to what is known from Qt Designer - A property editing framework with editor widget similar to what is known from Qt Designer - https://download.kde.org/stable/kproperty/src/kproperty-3.2.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-linguist - kconfig-devel - kcoreaddons-devel - kwidgetsaddons-devel - kguiaddons-devel - ki18n-devel - - desktop/kde/applications/kproperty/pspec.xml - - - kproperty - A property editing framework with editor widget similar to what is known from Qt Designer - - libgcc - kconfig - qt5-base - kguiaddons - kwidgetsaddons - - - /usr/lib/libKProperty* - /usr/share - - - - kproperty-devel - Developments files for kproperty. - - qt5-base-devel - kproperty - - - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include - - - - - 2022-05-17 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-26 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-15 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-11 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-06 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-18 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-11 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-12 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-18 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-10 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 3.0.2 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-07-14 - 3.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-30 - 3.0.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-04 - 3.0.0 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - qt5-phonon - http://phonon.kde.org + mevlana + https://pisilinux.org Pisi Linux Admins admins@pisilinux.org - LGPLv2.1 - library - desktop.kde.phonon - Cross platform multimedia API for KDE4 using QT5 - Phonon was created as a solution to several problems with multimedia commonly faced by Unix desktops, especially KDE 3's outdated multimedia framework aRts. Phonon itself is not a multimedia framework, but interfaces with existing frameworks such as GStreamer or Xine via backends. - https://download.kde.org/stable/phonon/4.11.1/phonon-4.11.1.tar.xz - - extra-cmake-modules - qt5-declarative-devel - qt5-base-devel - qt5-designer-devel - qt5-linguist - alsa-lib-devel - gst-plugins-base-devel - pulseaudio-libs-devel - gstreamer-devel - mesa-devel - - desktop/kde/phonon/qt5-phonon/pspec.xml + GPLv3 + app:gui + desktop.pisilinux + A cursor theme for Pisi GNU/Linux + Pisi GNU/Linux için bir imleç teması + A cursor theme for Pisi GNU/Linux + Pisi GNU/Linux için bir imleç teması + mevlana + https://sourceforge.net/projects/pisilinux/files/source/Mevlana.tar.gz + desktop/pisilinux/mevlana/pspec.xml - qt5-phonon - - libgcc - qt5-base - qt5-designer - pulseaudio-libs - + mevlana - /usr/bin - /usr/lib/libphonon* - /usr/lib/qt5 - /usr/share/dbus-1 - /usr/share/phonon4qt5 - /usr/share/locale - - - - qt5-phonon-devel - Development files for phonon-qt5 - - qt5-phonon - qt5-base-devel - qt5-designer-devel - pulseaudio-libs-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake + /usr/share/icons - - 2022-04-18 - 4.11.1 - Rebuild qt5.15.3 - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 4.11.1 - Rebuild qt5.15.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-17 - 4.11.1 - Rebuild qt5.15.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 4.11.1 - Rebuild qt5.14.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-28 - 4.11.1 - Rebuild qt5.14.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 4.11.1 - Rebuild qt5.13.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-02 - 4.11.1 - Rebuild qt5.13.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-26 - 4.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 4.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-04 - 4.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-24 - 4.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 4.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-08 - 4.10.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-12 - 4.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 4.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 4.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-01 - 4.10.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-27 - 4.10.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 5.29.0 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-02-27 - 4.9.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-16 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-03 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2015-08-13 - 4.8.3 + 2021-04-22 + 0.1 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - qt5-phonon-backend-vlc - https://community.kde.org/Phonon + package-manager + https://www.pisilinux.org PisiLinux Community admins@pisilinux.org - LGPLv2.1 - library - desktop.kde.phonon - VLC Backend for qt5-phonon - phonon-backend-vlc allows Phonon (the KDE media library) to use VLC for audio and video playback. - mirrors://kde/stable/phonon/phonon-backend-vlc/0.11.1/phonon-backend-vlc-0.11.1.tar.xz + GPLv2 + app:gui + desktop.pisilinux + PiSi graphical user interface + PiSi kullanıcı grafik arayüzü + PiSi est une interface graphique permettant d'effectuer l'installation, la suppression et la mise à jour de paquet PiSi depuis un environnement graphique. + Package Manager is PiSi's easy-to-use graphical user interface. + PiSi paket yöneticisine ait paket kurma, kaldırma ve güncelleme gibi işlerin grafik ortamda yapılabilmesini sağlayan PiSi grafik arayüzü. + package-manager + https://github.com/PisiLinuxNew/package-manager/archive/refs/tags/PM.4.2.7.2.tar.gz - qt5-base-devel - qt5-linguist - qt5-phonon-devel - pulseaudio - vlc-devel - extra-cmake-modules + docutils + python-docutils + python-qt5-devel + python-sip + intltool + qt5-linguist - desktop/kde/phonon/qt5-phonon-backend-vlc/pspec.xml + + message_error_fixed.patch + + desktop/pisilinux/package-manager/pspec.xml - qt5-phonon-backend-vlc + package-manager - libgcc - qt5-base - qt5-phonon - vlc-libs + pisi + python-qt5 + python-sip + pisilinux-desktop-services + iconcan - /usr/lib - /usr/lib/qt5 - /usr/share/kde4/services - /usr/share/locale + /usr/bin + /usr/share + /usr/share/applications/ + /usr/share/icons /usr/share/doc - - 2019-11-17 - 0.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + + 2022-06-09 + 4.2.7.2 + fixed missing dependencies message. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - - 2019-09-26 - 0.11.1 + + 2022-06-03 + 4.2.7.2 + some improvements. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-05-24 + 4.2.7.1 + fixed update button functions + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-05-06 + 4.2.7.1 + added install/remove actions to installed tab + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-04-26 + 4.2.7.1 + fixed desktop entry and group icons + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-04-15 + 4.2.7 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-05-25 + 4.2.6 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2020-04-04 + 4.2.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-03-20 + 4.2.3 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2020-01-20 + 4.2.2 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-12-06 + 4.2.2 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-09-29 + 4.2.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-02-03 + 4.2.1 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2019-01-16 + 4.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 4.1.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + - 2019-09-18 - 0.11.0 + 2018-02-24 + 4.2.0 + fixed source + Kamil Atlı + suvari@pisilinux.org + + + 2018-02-11 + 4.1.9 + fixed icons issue. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-01-13 + 4.1.8 + fixed icons issue. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-09-01 + 4.1.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-08 + 4.1.7 + Version Bump, add new builddep. + Kamil Atlı + suvari@pisilinux.org + + + 2016-08-09 + 4.1.6 + Release Bump + Metehan Özbek + admin@pisilinux.org + + + 2016-08-08 + 4.1.5 + Release Bump + Metehan Özbek + admin@pisilinux.org + + + 2016-08-06 + 4.1.3 + Release Bump + Metehan Özbek + admin@pisilinux.org + + + 2016-07-01 + 4.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-28 + 4.1.1 + ported pyqt5 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pisilinux-desktop-services + https://www.pisilinux.org + + pisilinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.pisilinux + Pisi Linux Desktop Services + Pisi Linux Masaüstü Hizmetleri + pisilinux-desktop-services is a wrapper python module for integrating various desktop environments using PyQt. + pisilinux-desktop-services, Pisi Linux Uygulamalarının farklı masaüstü ortamları ile bütünleşik bir şekilde çalışmasını sağlayan bir Python modülüdür. + library + https://github.com/PisiLinuxNew/pds/archive/refs/tags/pds-2.1.2.tar.gz + + python-qt5-devel + + desktop/pisilinux/pisilinux-desktop-services/pspec.xml + + + pisilinux-desktop-services + + python-qt5 + + + /usr/lib + /usr/share/ + + + + + 2022-06-03 + 2.1.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-06-08 + 2.1.1 + Rebuild Gonme + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-21 + 2.1.1 + Version bump + Sami BABAT + samibabat@gmail.com + + + 2020-03-15 + 2.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 2.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 2.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-01 + 2.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-08 + 2.0.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-03 + 2.0.0 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-28 + 2.0.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pisilinux-welcome + https://pisilinux.org + + Metehan Özbek + mthnzbk@gmail.com + + GPLv3 + app:gui + desktop.pisilinux + Pisi Linux Welcome Application + Pisi Linux Hoşgeldin Uygulaması + Pisi Linux Welcome Application + Hoşgeldin uygulaması, bilgisayarınız ilk defa açıldığında sizi karşılar. + pisilinux-welcome + https://github.com/PisiLinuxNew/pisilinux-welcome/archive/v1.7.tar.gz + + python3-qt5 + qt5-linguist + python3-devel + python3-setuptools + + desktop/pisilinux/pisilinux-welcome/pspec.xml + + + pisilinux-welcome + + python3-qt5 + + + /etc + /usr/share/doc + /usr/bin + /usr/share + /usr/share/icons + /usr/share/pisilinux-welcome + /usr/share/applications + /usr/lib/python3*/site-packages + /usr/share/welcome/languages + + + + + 2022-03-13 + 1.7 + version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-07 + 1.6 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-20 + 1.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-07 + 1.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.4 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2019-02-19 + 1.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-06-24 - 0.10.2 + 2019-02-18 + 1.1 Version bump. Mustafa Cinasal muscnsl@gmail.com 2019-02-03 - 0.10.2 - Version bump. + 1.0 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2019-01-20 - 0.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2019-01-17 + 1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2018-10-18 - 0.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-10-17 + 1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-11 - 0.10.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-04-08 + 1.0 + New version + Osman Erkan + osman.erkan@yandex.com - 2018-04-12 - 0.10.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2017-05-28 + 1.0b + rebuild + Metehan Özbek + mthnzbk@gmail.com - 2018-02-18 - 0.9.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2016-08-26 + 1.0b + ek buton + Metehan Özbek + mthnzbk@gmail.com - 2017-02-27 - 0.9.1 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-07-30 + 1.0b + hatalar düzeltilmiş. + Metehan Özbek + mthnzbk@gmail.com - 2016-05-17 - 0.9.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-07-29 + 1.0b + güncellendi + Metehan Özbek + mthnzbk@gmail.com - 2016-04-02 - 0.8.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-05-17 + 1.0a + first + Metehan Özbek + mthnzbk@gmail.com - qt5-phonon-backend-gstreamer - https://github.com/KDE/phonon-gstreamer + pisiplayer + https://pisilinux.org - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - LGPLv2+ - library - desktop.kde.phonon - GStreamer qt5-phonon backend - Phonon is the Qt multimedia API, which provides a task-oriented abstraction layer for capturing, mixing, processing, and playing audio and video content. phonon-backend-gstreamer contains the GStreamer backend for Phonon. - http://download.kde.org/stable/phonon/phonon-backend-gstreamer/4.10.0/phonon-backend-gstreamer-4.10.0.tar.xz + GPLv3 + app:gui + desktop.pisilinux + Video Player + Video Player for Pisi Linux + pisiplayer + https://github.com/mthnzbk/pisi-player/archive/0.9.tar.gz - extra-cmake-modules - qt5-x11extras-devel - qt5-base-devel - qt5-linguist - qt5-phonon-devel - gstreamer-devel - gstreamer-devel - gst-plugins-base-devel - gst-plugins-base-devel - mesa-devel - libxml2-devel + python3-setuptools + python3-devel + python3-qt5 - desktop/kde/phonon/qt5-phonon-backend-gstreamer/pspec.xml + desktop/pisilinux/pisiplayer/pspec.xml - qt5-phonon-backend-gstreamer + pisiplayer - qt5-base - qt5-x11extras - qt5-phonon - mesa - glib2 - libgcc - gstreamer - gst-plugins-base + python3-qt5 + python3-sip + python3-youtube_dl - /usr/lib - /usr/lib/qt5 - /usr/share - - - - - 2019-11-17 - 4.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-03 - 4.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-18 - 4.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-24 - 4.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-11 - 4.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-18 - 4.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-11 - 4.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-27 - 4.9.0 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-16 - 4.9.0 - rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-03 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-08-18 - 4.8.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - kio-gdrive - https://projects.kde.org/kio-gdrive - - Stefan Gronewold - groni@pisilinux.org - - GPL - desktop.kde.network - Provides support for secure credentials storage - KIO Slave to access Google Drive - http://download.kde.org/stable/kio-gdrive/1.3.0/src/kio-gdrive-1.3.0.tar.xz - - extra-cmake-modules - kdesignerplugin - kdoctools-devel - libkgapi-devel - qt5-base-devel - qt5-keychain-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kio-devel - ki18n-devel - intltool - kcoreaddons-devel - ktp-accounts-kcm - kaccounts-providers - knotifications-devel - libaccounts-qt5-devel - libaccounts-glib-devel - kaccounts-integration-devel - - desktop/kde/network/kio-gdrive/pspec.xml - - - kio-gdrive - KIO Slave to access Google Drive - - libkgapi - qt5-base - qt5-keychain - kio - ki18n - libgcc - kcoreaddons - knotifications - libaccounts-qt5 - kaccounts-providers - ktp-accounts-kcm - kaccounts-integration - - - /usr/lib/qt5 - /usr/share + /usr/bin + /usr/lib/pisiplayer + /usr/lib/python3*/site-packages + /usr/share/applications + /usr/share/icons /usr/share/doc - - 2021-01-07 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-18 - 1.2.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-09 - 1.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-13 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-10-14 - 1.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-11-07 + 0.9 + Rebuild py3 + Pisi Linux Admins + admins@pisilinux.org - 2018-08-11 - 1.2.1 - Rebuild + 2019-04-22 + 0.9 + Rebuild. Ertuğrul Erata ertugrulerata@gmail.com - 2017-10-09 - 1.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-05-28 + 0.9 + rebuild + Pisi Linux Admins + admins@pisilinux.org - 2017-01-12 - 1.0.5 - First Release - Stefan Gronewold - groni@pisilinux.org + 2016-07-04 + 0.9 + First release + Metehan Özbek + admins@pisilinux.org - kget - https://apps.kde.org/kget + service-manager + https://www.pisilinux.org - Mathias Freire - mathiasfreire45@gmail.com + PisiLinux Community + admins@pisilinux.org GPLv2 app:gui - desktop.kde.network - Download manager for KDE - KDE için indirme yönetcisi. - KGet is an advanced download manager with support for Metalink and Bittorrent. - KGet, Metalink ve BitTorrent desteği olan bir indirme yöneticisidir. - mirrors://kde/stable/release-service/21.12.2/src/kget-21.12.2.tar.xz + desktop.pisilinux + System Service configuration GUI + Servis yönetim arayüzü + Le gestionnaire de Service est utilisé pour administrer les services lancés dans Pisi Linux. + This system service configuration software is developed for Pisi Linux. It provides managing system services. + Servis yöneticisi, Pisi Linux'da çalışan sunucu ve servislerin yönetilmesini sağlar + https://github.com/PisiLinuxNew/service-manager/archive/refs/tags/service-manager-3.1.3.tar.gz - kio-devel - gmp-devel - boost-devel - kinit-devel - ki18n-devel - gpgme-devel - kcrash-devel - kparts-devel - libmms-devel - qt5-sql-odbc - sqlite-devel - kconfig-devel - qt5-sql-mysql - kwallet-devel - kxmlgui-devel - qca2-qt5-devel - qt5-base-devel - qt5-sql-sqlite - kcmutils-devel - kservice-devel - libgcrypt-devel - gpgme-qt5-devel - kdoctools-devel - kitemviews-devel - kdbusaddons-devel - kiconthemes-devel - kcoreaddons-devel - libktorrent-devel - kcompletion-devel - qt5-sql-postgresql - ktextwidgets-devel - kwindowsystem-devel - extra-cmake-modules - knotifyconfig-devel - kwidgetsaddons-devel - kconfigwidgets-devel - knotifications-devel - kdelibs4-support-devel + pisilinux-desktop-services + docutils + python-docutils + python-qt5-devel - desktop/kde/network/kget/pspec.xml + desktop/pisilinux/service-manager/pspec.xml - kget + service-manager - kio - gpgme - ki18n - kinit - kparts - libgcc - libmms - kconfig - kwallet - kxmlgui - kcmutils - kservice - qt5-base - qca2-qt5 - gpgme-qt5 - kitemviews - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - libktorrent - knotifyconfig - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/locale - - - - - 2022-02-04 - 21.12.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libktorrent - https://apps.kde.org/ktorrent/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - library - desktop.kde.network - A BitTorrent protocol implementation - Bir BitTorrent protokol uygulaması - KTorrent is a BitTorrent application by KDE which allows you to download files using the BitTorrent protocol. - KTorrent, KDE'nin BitTorrent protokolünü kullanarak dosya indirmenize izin veren bir BitTorrent uygulamasıdır. - https://download.kde.org/stable/release-service/21.12.2/src/libktorrent-21.12.2.tar.xz - - doxygen - gmp-devel - kio-devel - boost-devel - solid-devel - ki18n-devel - kcrash-devel - karchive-devel - qt5-base-devel - qca2-qt5-devel - libgcrypt-devel - kcoreaddons-devel - extra-cmake-modules - - desktop/kde/network/libktorrent/pspec.xml - - - libktorrent - - gmp - kio - ki18n - libgcc - kconfig - qt5-base - qca2-qt5 - karchive - libgcrypt - kcoreaddons - - - /usr/share/locale - /usr/lib/libKF5Torrent.so* - /usr/share/doc - - - - libktorrent-devel - libktorrent development headers - libktorrent için geliştirme dosyaları - - libktorrent - - - /usr/include - /usr/lib/cmake/KF5Torrent - - - - - 2022-02-04 - 21.12.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-kde5 - http://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - desktop.kde.bindings - Python3 bindings for KDE5 - KDE5 için Python3 dil bağlayıcıları - python3-kde5 are the Python3 bindings for KDE5. - python3-kde5, KDE5 için Python3 dil bağlayıcısıdır. - https://github.com/groni/Sources/raw/master/python-kde5-4.90.81.tar.gz - - extra-cmake-modules - glibc-devel - python3-devel - kauth-devel - kitemmodels-devel - kitemviews-devel - karchive-devel - kplotting-devel - solid-devel - kcoreaddons-devel - sonnet-devel - kguiaddons-devel - kwidgetsaddons-devel - python3-sip - python3-qt5-devel - qt5-base-devel - - desktop/kde/bindings/python3-kde5/pspec.xml - - - python3-kde5 - app:console - library - - python3 - kauth - kitemmodels - kitemviews - karchive - kplotting - solid - kcoreaddons - sonnet - kguiaddons - kwidgetsaddons - libgcc - qt5-base + python-qt5 + pisilinux-desktop-services /usr/bin - /usr/share - /usr/lib - - - - python3-kde5-devel - Development files for python3-kde5 - python3-kde5 için geliştirme dosyaları - data - - python3-kde5 - - - /usr/share/sip + /usr/share + /usr/share/locale + /usr/share/applications - - 2020-06-04 - 4.90.81 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 4.90.81 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-14 - 4.90.81 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - 2019-01-20 - 4.90.81 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2022-06-03 + 3.1.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2018-11-13 - 4.90.81 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2021-11-28 + 3.1.2 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2018-10-14 - 4.90.81 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2019-12-06 + 3.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-11 - 4.90.81 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-10-17 + 3.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2018-02-02 - 4.90.81 - Rebuild - Kamil Atlı - suvari@pisilinux.org + 2018-01-11 + 3.1.1 + fixed icons and window title issues + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2017-04-29 - 4.90.81 - Release bump - Kamil Atlı - suvari@pisilinux.org + 2017-08-24 + 3.1.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com - 2016-11-20 - 4.90.81 + 2016-06-03 + 3.1.0 First release - Stefan Gronewold - groni@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org @@ -157945,279 +154915,175 @@ It supports email, address books, calendars, tasks, news feeds and much more. - newt - https://fedorahosted.org/newt/ + fltk + https://www.fltk.org/ PisiLinux Community admins@pisilinux.org - GPLv2 + LGPLv2.1 library - app:console desktop.toolkit - A windowing toolkit for text mode - Metin tabanlı bir pencere araç seti. - newt is a windowing toolkit for text mode, which provides many widgets and stackable windows. - Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar. - https://releases.pagure.org/newt/newt-0.52.21.tar.gz + FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit + FLTK, platformlar arası C++ kullanıcı arayüzü için bir araç takımı + FLTK fournit les fonctionnalités IHM sans fioritures et supporte les graphiques 3D via OpenGL et son émulation GLUT intégrée. FLTK est conçue pour être petite et suffisamment modulaire pour être associée statiquement, tout en restant parfaitement utilisable en tant que librairie partagée. FLTK inclus également un excellent constructeur d'IHM appelé FLUID pouvant être utilisé pour créer des applications en quelques minutes. + FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes. + FLTK sistemi yormadan modern bir arayüzün işlevselliğini sağlar. OpenGL ve kendi içinde bulunan GLUT emülasyonu sayesinde 3B görüntü de sağlayabilir. FLTK statik kitaplık olabilecek kadar küçük ve modülerdir, fakat paylaşılmış kitaplık olarak da çalışabilir. Ayrıca FLUID adlı grafik arayüz tasarım aracı sayesinde çok kısa sürede FLTK uygulamaları geliştirilebilir. + FLTK provee una funcionalidad de un GUI moderno sin demasiado complejidad y soporta gráficos 3D via OpenGL y su emulación GLUT incluido. FLTK fue diseñado para ser pequeño y modular para enlace estático, pero funciona bien como librería compartida. FLTK también incluye un entorno de desarrollo UI llamado FLUID con el cual se puede crear aplicaciones en minutos. + https://www.fltk.org/pub/fltk/1.3.5/fltk-1.3.5-source.tar.bz2 + + x-fluid.desktop + - tcl-devel - slang-devel - popt-devel - - desktop/toolkit/newt/pspec.xml - - - newt - - tcl - slang - popt - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - newt-devel - Development files for newt - newt için geliştirme dosyaları - - newt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-28 - 0.52.21 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 0.52.20 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 0.52.20 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-26 - 0.52.19 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.52.17 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-05 - 0.52.17 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - qtcreator - http://qt-project.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - app:gui - programming.environment - Lightweight, cross-platform integrated development environment - Hafif, çapraz platform tümleşik geliştirme ortamı - Lightweight, cross-platform integrated development environment - Hafif, çapraz platform tümleşik geliştirme ortamı - https://download.qt.io/official_releases/qtcreator/4.14/.4.14.1/qt-creator-opensource-src-4.14.1.tar.xz - - libgcc + zlib-devel libX11-devel - cmake - git - mesa-devel - openssh - qt5-quickcontrols - qt5-base-devel - qt5-declarative-devel - qt5-linguist - qt5-serialport-devel - qt5-quickcontrols2 - qt5-svg-devel - qt5-xmlpatterns - qt5-webkit-devel - qt5-x11extras-devel - qt5-assistant-devel - qt5-designer-devel - qt5-script-devel - qt5-webengine-devel - valgrind - llvm-clang-devel - llvm + libgcc + libpng-devel + libglvnd-devel + libXft-devel + libXext-devel + mesa-glu-devel + libXfixes-devel + libXcursor-devel + fontconfig-devel + libXinerama-devel + libjpeg-turbo-devel - desktop/toolkit/qtcreator/pspec.xml + + fltk-config-dynlibs.patch + + desktop/toolkit/fltk/pspec.xml - qtcreator - Lightweight, cross-platform integrated development environment + fltk - elfutils - llvm-libs - llvm-clang - qt5-svg - qt5-base - qt5-base-devel - qt5-script - qt5-webkit - qt5-designer - qt5-assistant - qt5-serialport - qt5-declarative - qt5-webengine + zlib + libX11 + libgcc + libpng + libglvnd + libXft + libXext + libXrender + mesa-glu + libXfixes + libXcursor + fontconfig + libXinerama + libjpeg-turbo - /usr/bin - /usr/libexec/qtcreator - /usr/lib/qtcreator - /usr/share/applications - /usr/share/licenses - /usr/share/qtcreator + /usr/lib /usr/share/doc - /usr/share/icons - /etc - /usr/share/metainfo + + fltk-32bit + emul32 + emul32 + + zlib-32bit + libX11-32bit + libgcc + libpng-32bit + libglvnd-32bit + libXft-32bit + libXext-32bit + mesa-glu-32bit + libXfixes-32bit + libXcursor-32bit + fontconfig-32bit + libXinerama-32bit + libjpeg-turbo-32bit + + + fltk + zlib-32bit + libX11-32bit + libpng-32bit + libglvnd-32bit + libXft-32bit + libXext-32bit + libXrender-32bit + mesa-glu-32bit + libXfixes-32bit + libXcursor-32bit + fontconfig-32bit + libXinerama-32bit + libjpeg-turbo-32bit + + + /usr/lib32 + + + + fltk-devel + Development files and utilities for FLTK + FLTK için geliştirme dosyaları ve yardımcı uygulamalar + app:console + app:gui + + fltk + libX11 + libgcc + libpng + + + /etc/env.d + /usr/share/man + /usr/bin + /usr/include + /usr/share/icons + /usr/share/mimelnk + /usr/share/doc/*/html + /usr/share/applications + + + 99fltk + + - - 2021-02-24 - 4.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-14 - 4.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-25 - 4.12.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-01-20 - 4.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-04 - 4.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 4.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 4.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-25 - 4.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-30 - 4.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-02-07 - 4.5.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-19 + 1.3.5 + Version bump + Pisi Linux Community + admin@pisilinux.org - 2017-05-13 - 4.3.0 - Version Bump - Ali Algul - aligulle3801@gmail.com + 2018-07-30 + 1.3.4.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-03-19 - 4.2.1 + 2018-01-07 + 1.3.4.2 Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Pisi Linux Community + admin@pisilinux.org - 2016-06-09 - 4.0.0 - Release Bump + 2017-02-12 + 1.3.4 + Version Bump Pisi Linux Community admin@pisilinux.org - 2016-05-22 - 4.0.0 - version bump and fixed prefix path - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2016-06-09 + 1.3.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2016-04-21 - 3.6.1 + 2016-04-09 + 1.3.3 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com @@ -158432,155 +155298,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - wxGTK2.8 - http://www.wxwidgets.org/ - - PisiLinux Community - admins@pisilinux.org - - wxWinLL-3 - GPLv2 - LGPLv2 - wxWinFDL-3 - library - desktop.toolkit - GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit - wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. - mirrors://sourceforge/wxwindows/wxGTK-2.8.12.tar.bz2 - - gst-plugins-base-devel - gstreamer-devel - gtk2-devel - libjpeg-turbo-devel - libSM-devel - libXinerama-devel - libXxf86vm-devel - libsdl-devel - mesa-devel - mesa-glu-devel - pango-devel - tiff-devel - - - make-abicheck-non-fatal.patch - wxGTK-collision.patch - wxGTK-2.8.10-CVE-2009-XXXX.diff - wxGTK-2.8.12.1-r2-gcc6.patch - - desktop/toolkit/wxGTK2.8/pspec.xml - - - wxGTK2.8 - - gst-plugins-base - gstreamer - gtk2 - libjpeg-turbo - libSM - libXinerama - libXxf86vm - libsdl - mesa - pango - tiff - glib2 - libX11 - libgcc - libpng - gdk-pixbuf - wxBase - - - /usr/bin/wx-config-2.8 - /usr/bin/wxconfig - /usr/lib/libwx_gtk* - /usr/lib/wx/config/gtk2-unicode-release-2.8 - - - - wxGTK2.8-devel - wxGTK-devel is the development files for wxGTK - - wxBase-devel - wxGTK2.8 - - - /usr/lib/wx/include - - - - wxBase - wxBase is the GUI independent part of wxWidgets - wxWidgets/wxGTK için arayüz bağımsız olan kitaplıklar - - libunwind - zlib - expat - libgcc - - - /usr/bin/wxrc - /usr/bin/wxrc-2.8 - /usr/share/doc - /usr/share/bakefile - /usr/share/locale - /usr/lib/libwx_base* - - - - wxBase-devel - wxBase-devel is the development files for wxBase - wxBase sınıfları için geliştirme dosyaları - - wxGTK2.8 - wxBase - zlib-devel - expat-devel - - - /usr/include - - - - - 2020-01-19 - 2.8.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-30 - 2.8.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 2.8.12 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 2.8.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-05 - 2.8.12 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - glade @@ -158683,309 +155400,219 @@ It supports email, address books, calendars, tasks, news feeds and much more. - mlkstyle - http://azsky2.html.xdomain.jp/soft/mlkstyle.html + granite + https://github.com/elementary/granite - fury - uglyside@yandex.ru + Berk Çakar + berk2238@hotmail.com - MIT - app:gui - desktop.toolkit.mlk - mlk style editor. - mlk widget style editor. - https://gitlab.com/azelpg/mlkstyle/-/archive/v1.0.4/mlkstyle-v1.0.4.tar.bz2 + LGPLv3 + desktop + Granite is a companion library for GTK and GLib. + Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary OS. + https://github.com/elementary/granite/archive/refs/tags/6.1.0.zip - zlib-devel - check-devel - libpng-devel - libX11-devel - libXext-devel - freetype-devel - fontconfig-devel - libXcursor-devel + gobject-introspection-devel + gtk3-devel + libgee-devel + vala-devel + meson - desktop/toolkit/mlk/mlkstyle/pspec.xml + desktop/toolkit/granite/pspec.xml - mlkstyle + granite - zlib - libpng - libX11 - libXext - freetype - fontconfig - libXcursor + cairo + gtk3 + glib2 + pango + libgee + gdk-pixbuf /usr/bin - /usr/share - /usr/share/doc/mlkstyle + /usr/lib/girepository-1.0 + /usr/lib/libgranite*.so* + /usr/share/applications + /usr/share/doc + /usr/share/icons + /usr/share/locale + /usr/share/metainfo - - - 2021-12-11 - 1.0.4 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-25 - 1.0.3 - First build - fury - uglyside@yandex.ru - - - - - - wxGTK - http://www.wxwidgets.org/ - - PisiLinux Community - admins@pisilinux.org - - wxWinLL-3 - GPLv2 - LGPLv2 - wxWinFDL-3 - library - desktop.toolkit - GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit - Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü - wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images. - wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. - wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir. - wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes. - https://github.com/wxWidgets/wxWidgets/releases/download/v3.0.5/wxWidgets-3.0.5.tar.bz2 - - pkgconfig - zlib-devel - tiff-devel - gtk2-devel + + granite-devel + Development files for granite + + granite gtk3-devel - expat-devel - libSM-devel - libpng-devel - libnotify-devel - libsdl2-devel - mesa-glu-devel - webkit2gtk-devel - libjpeg-turbo-devel - gconf-devel - gst-plugins-base-devel - - - make-abicheck-non-fatal.patch - - desktop/toolkit/wxGTK/pspec.xml - - - wxGTK - - gtk2 - tiff - cairo - glib2 - pango - libSM - libsdl2 - libX11 - libgcc - libpng - libglvnd - libnotify - gstreamer - gdk-pixbuf - libXxf86vm - webkit2gtk - libjpeg-turbo - libjpeg-turbo - gstreamer - gst-plugins-base - wxGTK-common - - - /usr/lib/libwx_gtk2u* - /usr/lib/wx/include/gtk2-unicode-3.0/wx/setup.h - /usr/bin/wx-config - /usr/lib/wx/config/gtk2-unicode-3.0 - - - - wxGTK3 - - wxGTK-common - gtk3 - tiff - cairo - glib2 - libSM - pango - libX11 - libgcc - libpng - libsdl2 - libnotify - libglvnd - gstreamer - gdk-pixbuf - libXxf86vm - webkit2gtk - libjpeg-turbo - gst-plugins-base - - - /usr/lib/libwx_gtk3u* - /usr/lib/wx/include/gtk3-unicode-3.0/wx/setup.h - /usr/bin/wx-config-gtk3 - /usr/lib/wx/config/gtk3-unicode-3.0 - /usr/lib/wx/3.0/web-extensions/webkit2_extu-3.0.so - - - - wxGTK-common - - zlib - expat - libgcc - - - /usr/bin/wxrc - /usr/bin/wxrc-3.0 - /usr/lib/libwx_baseu* - /usr/share/aclocal/ - /usr/share/bakefile/ - /usr/share/locale/ - /usr/share/doc/ - - - - wxGTK-devel - wxGTK-devel is the development files for wxGTK - wxGTK araç seti için geliştirme dosyaları - - wxGTK - - - /usr/include - - - - - 2021-03-01 - 3.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-28 - 3.0.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-12 - 3.0.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-08 - 3.0.4 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2018-02-20 - 3.0.3.1 - Release Bump - Mustafa Cinasal - admin@pisilinux.org - - - 2017-04-09 - 3.0.2 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 3.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-23 - 3.0.2 - First release - İbrahim KARAGÜZEL - ibrahimkaraguzel@windowslive.com - - - - - - gdk-pixbuf-xlib - https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib - - fury - uglyside@yandex.ru - - LGPL-2.1 - library - desktop.toolkit.gtk - Deprecated Xlib integration for GdkPixbuf. - GdkPixbuf-Xlib contains the deprecated API for integrating GdkPixbuf with Xlib data types. - https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib/-/archive/2.40.2/gdk-pixbuf-xlib-2.40.2.tar.bz2 - - meson - libxcb-devel - libX11-devel - gdk-pixbuf-devel - - desktop/toolkit/gtk/gdk-pixbuf-xlib/pspec.xml - - - gdk-pixbuf-xlib - - glib2 - libX11 - gdk-pixbuf - - - /usr/lib - - - - gdk-pixbuf-xlib-devel - - libX11-devel - gdk-pixbuf-xlib - gdk-pixbuf-devel + glib2-devel + libgee-devel /usr/include /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala - 2022-04-14 - 2.40.2 + 2021-07-15 + 6.1.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + atk + https://developer.gnome.org/atk/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + GTK+ and GNOME Accessibility Toolkit + GTK+ ve GNOME erişilebilirlik kitaplığı + Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. + These libraries provide tools for making software for people with disabilities. + Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. + mirrors://gnome/atk/2.38/atk-2.38.0.tar.xz + + gobject-introspection-devel + glib2-devel + meson + + desktop/toolkit/gtk/atk/pspec.xml + + + atk + + glib2 + + + /usr/lib/libatk* + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/doc + + + + atk-devel + Development files for atk + atk için geliştirme dosyaları + + atk + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + atk-32bit + 32-bit shared libraries for atk + atk için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + + + atk + glib2-32bit + + + /usr/lib32 + + + + + 2022-05-31 + 2.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-03 + 2.36.0 + Version bump. fury uglyside@yandex.ru + + 2020-01-08 + 2.34.0 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2018-07-27 + 2.30.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 2.28.1 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-19 + 2.28.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-08 + 2.27.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-06 + 2.22.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.16.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.16.0 + release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-04-17 + 2.16.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + @@ -159095,383 +155722,217 @@ It supports email, address books, calendars, tasks, news feeds and much more. - gtk4 - https://www.gtk.org + cairo + https://cairographics.org PisiLinux Community admins@pisilinux.org LGPLv2.1 + MPL-1.1 + library desktop.toolkit.gtk - The GIMP Toolkit version 4 - GTK grafik arayüz kitaplığı versiyon 4 - GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. - GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. - GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. - Wersja 4 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. - mirrors://gnome/gtk/4.6/gtk-4.6.5.tar.xz + Cairo est une librairie graphique 2D supportant de nombreux périphériques de sortie. + 2D graphics library with bindings of many programming languages + Birden çok çıktı cihazına destek veren bir 2 boyutlu grafik kitaplığı + Cairo is a 2D graphics library with support for multiple output devices (and fileformats). + https://download.gnome.org/sources/cairo/1.17/cairo-1.17.6.tar.xz - gettext-devel + lzo-devel + zlib-devel glib2-devel - gtk-doc - gi-docgen - sassc - docutils - libcloudproviders-devel - colord-devel - cups-devel - mesa-devel - colord-devel - libxkbcommon-devel - libXcursor-devel - libXdamage-devel + libX11-devel + libpng-devel + libxcb-devel + freetype-devel + expat-devel + fontconfig-devel + libXrender-devel + pixman-devel + xcb-util-devel libXext-devel - libXinerama-devel - libXi-devel - libXrandr-devel - libXcomposite-devel - at-spi2-atk-devel - gdk-pixbuf-devel - libepoxy-devel - pango-devel - iso-codes-devel - graphene-devel - ffmpeg-devel - gst-plugins-bad-devel - vulkan-devel - vulkan-headers - wayland-devel - wayland-protocols-devel - meson - gobject-introspection-devel - librsvg-devel - json-glib-devel - librest-devel - libjpeg-turbo-devel - python-docutils + libglvnd-devel + valgrind - desktop/toolkit/gtk/gtk4/pspec.xml + desktop/toolkit/gtk/cairo/pspec.xml - gtk4 + cairo - cups - tiff - cairo + lzo + zlib glib2 - libXi - pango - colord - libpng - ffmpeg libX11 - vulkan - fribidi - libXext - librest - wayland - graphene - harfbuzz - libepoxy - gstreamer - json-glib - libXfixes - libXrandr + libpng + libxcb + freetype fontconfig - gdk-pixbuf - libXcursor - libXdamage - libXinerama - libxkbcommon - libXcomposite - libjpeg-turbo - wayland-client - gst-plugins-bad - gst-plugins-base - libcloudproviders + libXrender + pixman + libXext + libglvnd /usr/bin - /usr/share/glib-2.0 - /usr/share/gtk-4.0 - /usr/share/gettext - /usr/share/man/man1/gtk4-broadwayd* - /usr/share/man/man1/gtk4-builder-tool* - /usr/share/man/man1/gtk4-encode-symbolic* - /usr/share/man/man1/gtk4-launch* - /usr/share/man/man1/gtk4-query-settings* + /usr/share/man /usr/share/doc - /usr/lib/libgtk* - /usr/lib/gtk-4.0 - /usr/lib/girepository-1.0 - /usr/share/locale + /usr/share/gtk-doc + /usr/share/info + /usr/lib - gtk4-demo - GTK4 demo applications - GTK4 demo uygulamaları - app:gui + cairo-devel + Development files for cairo + cairo için geliştirme dosyaları - gtk4 - librsvg - - - /usr/bin/gtk4-demo* - /usr/bin/gtk4-icon-browser - /usr/bin/gtk4-print-editor - /usr/bin/gtk4-widget-factory - /usr/share/applications - /usr/share/glib-2.0/schemas/org.gtk.Demo4.gschema.xml - /usr/share/icons - /usr/share/man/man1/gtk4-demo* - /usr/share/man/man1/gtk4-icon-browser* - /usr/share/man/man1/gtk4-widget-factory* - /usr/share/metainfo - - - - gtk4-docs - GTK4 reference documents - GTK4 referans dökümanları - data:doc - - /usr/share/gtk-doc - - - - gtk4-devel - Development files for GTK4 - GTK4 için geliştirme dosyaları - Pliki nagłówkowe do gtk4 - - gtk4 - pango-devel - libX11-devel - libXi-devel - cairo-devel + cairo glib2-devel + libX11-devel + libpng-devel + libxcb-devel + freetype-devel + pixman-devel libXext-devel - libepoxy-devel - libXfixes-devel - libXrandr-devel - gdk-pixbuf-devel fontconfig-devel - libXdamage-devel - libXcursor-devel - libXinerama-devel - libXcomposite-devel - vulkan-devel - vulkan-headers - graphene-devel - wayland-devel - libxkbcommon-devel - wayland-protocols-devel + libXrender-devel + libglvnd-devel /usr/include /usr/lib/pkgconfig - /usr/share/gir-1.0 + /usr/lib32/pkgconfig - gtk4-update-icon-cache - GTK4 icon cache updater - GTK4 için simge önbelleği güncelleyicisi + cairo-32bit + 32-bit shared libraries for cairo + cairo için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libglvnd-32bit + zlib-32bit + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit + - gtk4 + cairo + libglvnd-32bit + zlib-32bit + glib2-32bit + libX11-32bit + pixman-32bit + libpng-32bit + libxcb-32bit + libXext-32bit + freetype-32bit + fontconfig-32bit + libXrender-32bit - /usr/bin/gtk*-update-icon-cache - /usr/share/man/man1/gtk*-update-icon-cache* + /usr/lib32/lib* + /usr/lib32/cairo - + 2022-05-31 - 4.6.5 + 1.17.6 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2021-10-23 + 1.17.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-26 + 1.17.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-30 + 1.17.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-08 + 1.17.2 + version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-02-04 + 1.16.0 + version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.15.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-18 + 1.15.12 + version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-01-28 + 1.14.12 + version Bump + Mustafa Cinasal + muscnsl@gmail.com + - 2022-01-03 - 4.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-02-17 + 1.14.8 + version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2021-11-02 - 4.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-09 + 1.14.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2021-08-23 - 4.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-05-25 + 1.14.2 + Release Bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2021-05-28 - 4.2.1 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - spice-gtk - https://www.spice-space.org/ - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2.1 - library - app:console - desktop.toolkit.gtk - GTK+ client library for SPICE - GTK+ client library for SPICE - https://www.spice-space.org/download/gtk/spice-gtk-0.39.tar.xz - - meson - gtk-doc - valgrind - usbutils - lz4-devel - acl-devel - zlib-devel - gtk3-devel - cairo-devel - python3-six - spice-devel - glib2-devel - polkit-devel - phodav-devel - pixman-devel - libusb-devel - python3-devel - elogind-devel - libopus-devel - openssl-devel - libsoup-devel - usbredir-devel - spice-protocol - libcap-ng-devel - gstreamer-devel - json-glib-devel - libcacard-devel - cyrus-sasl-devel - gdk-pixbuf-devel - python3-pyparsing - libjpeg-turbo-devel - gst-plugins-base-devel - gobject-introspection-devel - - desktop/toolkit/gtk/spice-gtk/pspec.xml - - - spice-gtk - GTK+ client library for SPICE. - - lz4 - acl - gtk3 - zlib - cairo - glib2 - spice - libusb - polkit - phodav - pixman - python3 - libopus - openssl - libsoup - usbredir - libcap-ng - gstreamer - json-glib - libcacard - cyrus-sasl - python3-six - libjpeg-turbo - spice-protocol - gst-plugins-base - python3-pyparsing - gobject-introspection - - - /usr/bin - /usr/lib/libspice-client-gtk-3.0.so* - /usr/lib/libspice-client-glib-2.0.so* - /usr/share/doc/ - /usr/share/man - /usr/share/locale - /usr/share/polkit-1/actions - /usr/share/gtk-doc/html - /usr/lib/girepository-1.0 - /usr/libexec/spice-client-glib-usb-acl-helper - - - - spice-gtk-devel - Development files for spice-gtk - - lz4-devel - acl-devel - zlib-devel - gtk3-devel - glib2-devel - cairo-devel - python3-six - spice-devel - polkit-devel - phodav-devel - pixman-devel - libX11-devel - libusb-devel - wayland-devel - python3-devel - elogind-devel - libopus-devel - openssl-devel - libsoup-devel - libepoxy-devel - usbredir-devel - spice-protocol - libcap-ng-devel - gstreamer-devel - json-glib-devel - libcacard-devel - cyrus-sasl-devel - gdk-pixbuf-devel - python3-pyparsing - libjpeg-turbo-devel - gst-plugins-base-devel - gobject-introspection-devel - spice-gtk - - - /usr/share/gir-1.0 - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-10 - 0.39 + 2015-04-18 + 1.14.2 First release - Kamil Atlı - suvari@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -159583,106 +156044,825 @@ It supports email, address books, calendars, tasks, news feeds and much more. - gtksourceview5 - http://www.gnome.org/ + clutter + https://gitlab.gnome.org/GNOME/clutter - PisiLinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com - GPLv2 + LGPLv2.1 library desktop.toolkit.gtk - A text widget implementing syntax highlighting and other features - Gtksourceview improves the gtk+ text widget by implementing syntax highlighting and other features typical of a source editor. - mirrors://gnome/gtksourceview/5.4/gtksourceview-5.4.1.tar.xz + OpenGL GUI toolkit + OpenGL grafik arabirim kitaplığı + clutter is an open source software library for creating fast, visually rich graphical user interfaces. The most obvious example of potential usage is in media center type applications. + clutter görsel olarak zengin ve hızlı grafik arabirimler oluşturmak için hazırlanmış bir açık kodlu kitaplıktır. Kullanım alanlarına en belirgin örnek olarak çoklu ortam yazılımları gösterilebilir. + http://ftp.gnome.org/pub/gnome/sources/clutter/1.26/clutter-1.26.4.tar.xz - meson - python3 - itstool - valgrind - intltool - gtk-doc - vala-devel - gi-docgen - gtk4-devel - libpcre2-devel - fontconfig-devel - glib2-devel - yelp-tools - libxml2-devel - autoconf-archive + pango-devel + cairo-devel + gtk3-devel + mesa-devel + libXext-devel + libXrandr-devel + libXfixes-devel + libXdamage-devel + libXcomposite-devel + json-glib-devel gobject-introspection-devel - sysprof-devel - glade-devel - gtk4-update-icon-cache + gdk-pixbuf-devel + cogl-devel + glib2-devel + gtk-doc + wayland-client + wayland-server + wayland-devel + valgrind + libdrm-devel + libxkbcommon-devel - desktop/toolkit/gtk/gtksourceview5/pspec.xml + desktop/toolkit/gtk/clutter/pspec.xml - gtksourceview5 + clutter - gtk4 - libpcre2 - fontconfig - cairo - fribidi - glib2 + cogl pango - libxml2 + cairo + gtk3 + mesa + libXext + libXrandr + libXfixes + libXdamage + libXcomposite + json-glib + atk + libXi gdk-pixbuf + glib2 + libX11 + libdrm + wayland + freetype + harfbuzz + libglvnd + libXrandr + fontconfig + libxkbcommon + wayland-client + wayland-cursor + wayland-server /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/gir-1.0/ - /usr/share/glade/ - /usr/share/vala/vapi - /usr/share/icons - /usr/share/gtksourceview-5 + /usr/share/doc/clutter + /usr/share/gtk-doc + /usr/share/locale + /usr/share/clutter-1.0/valgrind/clutter.supp - gtksourceview5-docs - Reference documents of gtksourceview - data:doc - - /usr/share/doc/gtksourceview5/*.html - - - - gtksourceview5-devel - Development files for gtksourceview + clutter-devel + Development files for clutter - gtksourceview5 - gtk4-devel - glib2-devel + atk-devel + cogl-devel + gtk3-devel + gdk-pixbuf + mesa-devel + libXi-devel pango-devel - fribidi-devel - libxml2-devel - libpcre2-devel - fontconfig-devel + cairo-devel + glib2-devel + libX11-devel + libXext-devel + wayland-devel + json-glib-devel + gdk-pixbuf-devel + libXdamage-devel + libxkbcommon-devel + libXcomposite-devel + clutter + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + + 2021-09-23 + 1.26.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-10 + 1.26.2 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + clutter-gst + https://gitlab.gnome.org/GNOME/clutter-gst + + Berk Çakar + berk2238@hotmail.com + + LGPLv2.1 + desktop.toolkit.gtk + GStreamer bindings for clutter + GStreamer bindings for clutter + http://ftp.gnome.org/pub/gnome/sources/clutter-gst/3.0/clutter-gst-3.0.27.tar.xz + + gtk-doc + valgrind + glib2-devel + libX11-devel + clutter-devel + libgudev-devel + libgudev-devel + gstreamer-devel + gdk-pixbuf-devel + gst-plugins-good + libXdamage-devel + gst-plugins-base-devel + gobject-introspection-devel + + desktop/toolkit/gtk/clutter-gst/pspec.xml + + + clutter-gst + GStreamer bindings for clutter + + cogl + glib2 + libX11 + clutter + gdk-pixbuf + libgudev + gstreamer + gst-plugins-base + + + /usr/lib/girepository-1.0 + /usr/lib/gstreamer-1.0 + /usr/lib/libclutter-gst-3.0.so + /usr/lib/libclutter-gst-3.0.so.0 + /usr/lib/libclutter-gst-3.0.so.0.27.0 + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/gtk-doc + + + + clutter-gst-devel + + cogl-devel + glib2-devel + clutter-devel + gstreamer-devel + gst-plugins-base-devel + clutter-gst /usr/include /usr/lib/pkgconfig + + + 2021-04-21 + 3.0.27 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + clutter-gtk + https://github.com/GNOME/clutter-gtk + + Berk Çakar + berk2238@hotmail.com + + LGPLv2+ + library + desktop.toolkit.gtk + Clutter GTK support + Cluter GTK desteği + clutter-gtk provides GTK support for clutter. + clutter-gtk clutter için GTK desteği sağlar. + https://github.com/GNOME/clutter-gtk/archive/1.8.4.tar.gz + + meson + valgrind + cogl-devel + gtk3-devel + clutter-devel + gobject-introspection-devel + + desktop/toolkit/gtk/clutter-gtk/pspec.xml + + + clutter-gtk + clutter-gtk için geliştirme dosyaları + + cogl + gtk3 + cairo + glib2 + clutter + gdk-pixbuf + wayland-client + + + /usr/lib + /usr/share/doc/clutter-gtk + /usr/share/gtk-doc + /usr/share/locale + + + + clutter-gtk-devel + Development files for clutter-gtk + + cogl-devel + gtk3-devel + clutter-devel + clutter-gtk + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-04-10 + 1.8.4 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + cogl + https://gitlab.gnome.org/GNOME/cogl + + Berk Çakar + berk2238@hotmail.com + + LGPLv2.1 + library + desktop.toolkit.gtk + COGL is a low level OpenGL abstraction library developed for (and part of) Clutter. + COGL is a low level OpenGL abstraction library developed for (and part of) Clutter. + https://gitlab.gnome.org/GNOME/cogl/-/archive/1.22.8/cogl-1.22.8.tar.gz + + pango-devel + cairo-devel + mesa-devel + libXext-devel + libXfixes-devel + libXdamage-devel + libXcomposite-devel + json-glib-devel + gobject-introspection-devel + gdk-pixbuf-devel + gtk-doc + valgrind + libXrandr-devel + glib2-devel + libglvnd-devel + wayland-devel + harfbuzz-devel + libX11-devel + libdrm-devel + + desktop/toolkit/gtk/cogl/pspec.xml + + + cogl + + pango + cairo + mesa + libXext + libXfixes + libXdamage + libXcomposite + json-glib + gdk-pixbuf + libglvnd + libXrandr + glib2 + wayland-client + wayland-server + wayland + libX11 + libdrm + + + /usr/lib + /usr/share/doc/cogl + /usr/share/gtk-doc + /usr/share/locale + /usr/share/cogl + + + + cogl-devel + Development files for cogl + + cogl + mesa-devel + pango-devel + cairo-devel + glib2-devel + libX11-devel + libdrm-devel + libXext-devel + wayland-devel + libglvnd-devel + libXfixes-devel + libXrandr-devel + gdk-pixbuf-devel + libXdamage-devel + libXcomposite-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + - 2022-04-22 - 5.4.1 + 2021-05-25 + 1.22.8 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-10-04 - 5.2.0 - First release + 2021-04-10 + 1.22.6 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gdk-pixbuf + https://wiki.gnome.org/Projects/GdkPixbuf + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + GDK pixbuf library + GDK pixbuf kitaplığı + gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications + gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. + mirrors://gnome/gdk-pixbuf/2.42/gdk-pixbuf-2.42.8.tar.xz + + meson + gtk-doc + gi-docgen + glib2-devel + libX11-devel + tiff-devel + libjpeg-turbo-devel + libpng-devel + jasper-devel + shared-mime-info + python3-six + docbook-xsl + gobject-introspection-devel + + desktop/toolkit/gtk/gdk-pixbuf/pspec.xml + + + gdk-pixbuf + + glib2 + libpng + libX11 + tiff + jasper + libjpeg-turbo + shared-mime-info + + + /etc + /usr/bin + /usr/libexec + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share + /usr/share/gir-1.0 + + + System.PackageHandler + + + + gdk-pixbuf-devel + Development files for gdk-pixbuf + gdk-pixbuf için geliştirme dosyaları + + gdk-pixbuf + glib2-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + + + /usr/bin/gdk-pixbuf-csource + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + gdk-pixbuf-docs + Reference documents for gdk-pixbuf + gdk-pixbuf için başvuru belgeleri + + /usr/share/doc + + + + gdk-pixbuf-32bit + 32-bit shared libraries for gdk-pixbuf + gdk-pixbuf için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + glib2-32bit + libX11-32bit + libpng-32bit + jasper-32bit + libX11-32bit + + + gdk-pixbuf + tiff-32bit + glib2-32bit + libpng-32bit + libX11-32bit + jasper-32bit + libjpeg-turbo-32bit + + + /usr/bin/gdk-pixbuf-query-loaders-32 + /usr/lib32 + + + System.PackageHandler + + + + + 2022-05-31 + 2.42.8 + Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2021-05-26 + 2.42.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-01 + 2.40.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-04-17 + 2.36.12 + add runtime dep. + Pisi Linux Community + admin@pisilinux.org + + + 2019-03-24 + 2.36.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 2.36.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-17 + 2.36.12 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-28 + 2.36.11 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 2.36.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.31.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.31.4 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-25 + 2.31.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gdk-pixbuf-xlib + https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + desktop.toolkit.gtk + Deprecated Xlib integration for GdkPixbuf. + GdkPixbuf-Xlib contains the deprecated API for integrating GdkPixbuf with Xlib data types. + https://gitlab.gnome.org/Archive/gdk-pixbuf-xlib/-/archive/2.40.2/gdk-pixbuf-xlib-2.40.2.tar.bz2 + + meson + libxcb-devel + libX11-devel + gdk-pixbuf-devel + + desktop/toolkit/gtk/gdk-pixbuf-xlib/pspec.xml + + + gdk-pixbuf-xlib + + glib2 + libX11 + gdk-pixbuf + + + /usr/lib + + + + gdk-pixbuf-xlib-devel + + libX11-devel + gdk-pixbuf-xlib + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-14 + 2.40.2 + fury + uglyside@yandex.ru + + + + + + goocanvas + https://wiki.gnome.org/Projects/GooCanvas + + PisiLinux Community + suvari@pisilinux.org + + LGPLv2+ + library + desktop.toolkit.gtk + A cairo canvas widget for GTK+ + GTK+ için bir cairo tuval parçacığı + GooCanvas is a canvas widget for GTK+ that uses the cairo 2D library for drawing. + GooCanvas, GTK+ için cairo 2B çizim kitaplığını kullanan bir tuval parçacığıdır. + http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-2.0.4.tar.xz + + atk-devel + gtk3-devel + glib2-devel + cairo-devel + pango-devel + glib2-devel + python3 + gettext-devel + gdk-pixbuf-devel + python-pygobject-devel + gobject-introspection-devel + + desktop/toolkit/gtk/goocanvas/pspec.xml + + + goocanvas + + atk + gtk3 + cairo + pango + glib2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/locale + + + + goocanvas-devel + Development files for goocanvas + goocanvas için geliştirme dosyaları + + gtk3-devel + cairo-devel + goocanvas + + + /usr/include + /usr/lib/pkgconfig + + + + goocanvas-docs + API documentation for goocanvas + goocanvas paketine ait API belgeleri + data:doc + + goocanvas + + + /usr/share/gtk-doc + + + + + 2020-02-08 + 2.0.4 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2019-06-21 + 2.0.4 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + gtk-doc + http://www.gtk.org/gtk-doc + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + FDL-1.1 + app:console + desktop.toolkit.gtk + GTK+ API documentation generator + GTK+ API belge oluşturucusu + Gtk-Doc is typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code. + gtk-doc, GNOME ve GTK+ gibi kitaplıkların API'lerinin belgelendirilmesi için yazılmış bir uygulama projesidir. + mirrors://gnome/gtk-doc/1.32/gtk-doc-1.32.tar.xz + + itstool + python3-devel + sgml-common + docbook-xml + docbook-xsl + libxslt-devel + + desktop/toolkit/gtk/gtk-doc/pspec.xml + + + gtk-doc + + docbook-xsl + sgml-common + python3 + python3-Pygments + python3-lxml + python3-anytree + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + /usr/share/omf + /var/lib + + + + + 2021-01-24 + 1.32 + Version Bump + Idris Kalp + idriskalp@gmail.com + + + 2018-07-25 + 1.28 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-09 + 1.27 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-06 + 1.25 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-06 + 1.21 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + @@ -159959,1612 +157139,6 @@ It supports email, address books, calendars, tasks, news feeds and much more. - - - clutter - https://gitlab.gnome.org/GNOME/clutter - - Berk Çakar - berk2238@hotmail.com - - LGPLv2.1 - library - desktop.toolkit.gtk - OpenGL GUI toolkit - OpenGL grafik arabirim kitaplığı - clutter is an open source software library for creating fast, visually rich graphical user interfaces. The most obvious example of potential usage is in media center type applications. - clutter görsel olarak zengin ve hızlı grafik arabirimler oluşturmak için hazırlanmış bir açık kodlu kitaplıktır. Kullanım alanlarına en belirgin örnek olarak çoklu ortam yazılımları gösterilebilir. - http://ftp.gnome.org/pub/gnome/sources/clutter/1.26/clutter-1.26.4.tar.xz - - pango-devel - cairo-devel - gtk3-devel - mesa-devel - libXext-devel - libXrandr-devel - libXfixes-devel - libXdamage-devel - libXcomposite-devel - json-glib-devel - gobject-introspection-devel - gdk-pixbuf-devel - cogl-devel - glib2-devel - gtk-doc - wayland-client - wayland-server - wayland-devel - valgrind - libdrm-devel - libxkbcommon-devel - - desktop/toolkit/gtk/clutter/pspec.xml - - - clutter - - cogl - pango - cairo - gtk3 - mesa - libXext - libXrandr - libXfixes - libXdamage - libXcomposite - json-glib - atk - libXi - gdk-pixbuf - glib2 - libX11 - libdrm - wayland - freetype - harfbuzz - libglvnd - libXrandr - fontconfig - libxkbcommon - wayland-client - wayland-cursor - wayland-server - - - /usr/lib - /usr/share/doc/clutter - /usr/share/gtk-doc - /usr/share/locale - /usr/share/clutter-1.0/valgrind/clutter.supp - - - - clutter-devel - Development files for clutter - - atk-devel - cogl-devel - gtk3-devel - gdk-pixbuf - mesa-devel - libXi-devel - pango-devel - cairo-devel - glib2-devel - libX11-devel - libXext-devel - wayland-devel - json-glib-devel - gdk-pixbuf-devel - libXdamage-devel - libxkbcommon-devel - libXcomposite-devel - clutter - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - - 2021-09-23 - 1.26.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-10 - 1.26.2 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - atk - https://developer.gnome.org/atk/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - GTK+ and GNOME Accessibility Toolkit - GTK+ ve GNOME erişilebilirlik kitaplığı - Ces librairies fournissent des outils pour faire des logiciels pour personnes handicapées. - These libraries provide tools for making software for people with disabilities. - Bu kitaplıklar engelli insanlar için yapılan programlarda kullanılabilecek araçları içerir. - mirrors://gnome/atk/2.38/atk-2.38.0.tar.xz - - gobject-introspection-devel - glib2-devel - meson - - desktop/toolkit/gtk/atk/pspec.xml - - - atk - - glib2 - - - /usr/lib/libatk* - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/doc - - - - atk-devel - Development files for atk - atk için geliştirme dosyaları - - atk - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - atk-32bit - 32-bit shared libraries for atk - atk için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - - - atk - glib2-32bit - - - /usr/lib32 - - - - - 2022-05-31 - 2.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-03 - 2.36.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-01-08 - 2.34.0 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2018-07-27 - 2.30.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 - 2.28.1 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-19 - 2.28.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-08 - 2.27.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-06 - 2.22.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.16.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.16.0 - release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-04-17 - 2.16.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - goocanvas - https://wiki.gnome.org/Projects/GooCanvas - - PisiLinux Community - suvari@pisilinux.org - - LGPLv2+ - library - desktop.toolkit.gtk - A cairo canvas widget for GTK+ - GTK+ için bir cairo tuval parçacığı - GooCanvas is a canvas widget for GTK+ that uses the cairo 2D library for drawing. - GooCanvas, GTK+ için cairo 2B çizim kitaplığını kullanan bir tuval parçacığıdır. - http://ftp.gnome.org/pub/GNOME/sources/goocanvas/2.0/goocanvas-2.0.4.tar.xz - - atk-devel - gtk3-devel - glib2-devel - cairo-devel - pango-devel - glib2-devel - python3 - gettext-devel - gdk-pixbuf-devel - python-pygobject-devel - gobject-introspection-devel - - desktop/toolkit/gtk/goocanvas/pspec.xml - - - goocanvas - - atk - gtk3 - cairo - pango - glib2 - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/locale - - - - goocanvas-devel - Development files for goocanvas - goocanvas için geliştirme dosyaları - - gtk3-devel - cairo-devel - goocanvas - - - /usr/include - /usr/lib/pkgconfig - - - - goocanvas-docs - API documentation for goocanvas - goocanvas paketine ait API belgeleri - data:doc - - goocanvas - - - /usr/share/gtk-doc - - - - - 2020-02-08 - 2.0.4 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2019-06-21 - 2.0.4 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - gtkspell - http://gtkspell.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - Spell checking widget for GTK+ - GTK+ için yazım denetimi eklentisi - GtkSpell provides MSWord / MacOSX-style highlighting of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements. - GtkSpell, MSWord / MacOSX işletim sistemlerinde olduğu gibi, GTK+ metin gösterme zımbırtılarında yanlış yazılmış kelimeleri vurgular ve yanlış yazılmış kelimelere sağ tıkladığınızda, size yeni kelimeler önerir. - mirrors://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz - - gtk2-devel - enchant-devel - intltool - - desktop/toolkit/gtk/gtkspell/pspec.xml - - - gtkspell - - atk - gtk2 - cairo - glib2 - pango - enchant - freetype - fontconfig - gdk-pixbuf - - - /usr/lib - /usr/share/locale - /usr/share/doc - /usr/share/gtk-doc - - - - gtkspell-devel - Development files for gtkspell - gtkspell için geliştirme dosyaları - - gtkspell - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-15 - 2.0.16 - Rebuild - Pisi Linux Community - suvari@pisilinux.org - - - 2018-09-10 - 2.0.16 - Rebuild - Pisi Linux Community - suvari@pisilinux.org - - - 2017-04-11 - 2.0.16 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 2.0.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-20 - 2.0.16 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gtkmm3 - https://www.gtkmm.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - C++ binding for GTK+ - gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. - http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.24/gtkmm-3.24.6.tar.xz - - meson - doxygen - gtk3-devel - libxslt-devel - atkmm-devel - glibmm-devel - cairomm-devel - mm-common - gdk-pixbuf-devel - pangomm-devel - - desktop/toolkit/gtk/gtkmm3/pspec.xml - - - gtkmm3 - - gtk3 - atkmm - glib2 - glibmm - libgcc - cairomm - pangomm - libsigc++ - gdk-pixbuf - - - /usr/lib/libgdkmm* - /usr/lib/libgtkmm* - /usr/lib/gdkmm-3.0 - /usr/lib/gtkmm-3.0 - /usr/share/doc - /usr/share - - - - gtkmm3-devel - Development files for gtkmm - - gtkmm3 - atkmm-devel - pangomm-devel - glibmm-devel - gtk3-devel - cairomm-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-02 - 3.24.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-25 - 3.24.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 3.24.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gtkdatabox - http://sourceforge.net/projects/gtkdatabox - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - desktop.toolkit.gtk - A Gtk+ Widget for Fast Data Display - Hızlı veri gösterimi sağlayan bir Gtk+ kitaplığı - GtkDatabox is a widget for the Gtk+ library designed to display large amounts of numerical data fast and easy. - gtkdatabox, yüksek miktarda veriyi hızlı ve kolayca görüntülemeyi sağlayan bir Gtk+ kitaplığıdır. - https://sourceforge.net/projects/gtkdatabox/files/gtkdatabox-1/gtkdatabox-1.0.0.tar.gz/download - - gtk3-devel - cairo-devel - pango-devel - glade-devel - gtk-doc - - desktop/toolkit/gtk/gtkdatabox/pspec.xml - - - gtkdatabox - - atk - gtk3 - cairo - pango - glib2 - gdk-pixbuf - fontconfig - - - /usr/lib - /usr/share/doc - /usr/share/icons - - - - gtkdatabox-devel - Development files for gtkdatabox - gtkdatabox için geliştirim dosyaları - - gtkdatabox - cairo-devel - gtk3-devel - pango-devel - - - /usr/include - /usr/lib/pkgconfig - - - - gtkdatabox-glade - Glade 2 support for gtkdatabox - gtkdatabox için Glade 3 desteği - - gtkdatabox - atk - gtk3 - cairo - pango - glade - gdk-pixbuf - fontconfig - - - /usr/lib/glade - /usr/share/glade/catalogs - - - - gtkdatabox-docs - Development files for gtkdatabox - gtkdatabox için belgelendirme dosyaları - - gtkdatabox - - - /usr/share/gtk-doc - - - - - 2021-10-14 - 1.0.0 - First release - Erkan IŞIK - erkanisik@pisilinux.org - - - - - - libwnck2 - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - desktop.toolkit.gtk - A window navigation construction kit - libwnck (pronounced "libwink") is used to implement pagers, tasklists, and other such things. It allows applications to monitor information about open windows, workspaces, their names/icons, and so forth. - http://ftp.gnome.org/pub/gnome/sources/libwnck/2.31/libwnck-2.31.0.tar.xz - - startup-notification-devel - gobject-introspection-devel - libXres-devel - pango-devel - gtk2-devel - glib2-devel - intltool - libXt-devel - gettext - meson - - - libwnck-2.18.0-above.patch - - desktop/toolkit/gtk/libwnck2/pspec.xml - - - libwnck2 - - startup-notification - gdk-pixbuf - libXrender - libXres - pango - libX11 - cairo - gtk2 - atk - glib2 - - - /usr/lib - /usr/share/locale - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/share/doc - - - - libwnck2-devel - Development files for libwnck2 - - libwnck2 - gtk2-devel - cairo-devel - pango-devel - libXres-devel - glib2-devel - libX11-devel - startup-notification-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-01 - 2.31.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-08 - 2.32.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-24 - 2.31.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 2.31.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 2.31.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-18 - 2.30.7 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - nocsd - https://github.com/ZaWertun/gtk3-nocsd - - fury - uglyside@yandex.ru - - LGPLv2.1 - library - desktop.toolkit.gtk - A hack to disable gtk+ 3 client side decoration. - gtk3-nocsd is a small module used to disable the client side decoration of Gtk+ 3. - https://github.com/ZaWertun/gtk3-nocsd/archive/v3.0.4.tar.gz - - gtk3-devel - gobject-introspection-devel - - - Always_override_property_gtk-decoration-layout.patch - Fix_for_black_borders_around_some_application_windows.patch - - desktop/toolkit/gtk/nocsd/pspec.xml - - - nocsd - - /usr/bin/gtk3-nocsd - /usr/lib/libgtk3-nocsd.so.0 - /usr/share - /usr/share/man - /usr/share/doc/gtk3-nocsd - - - - - 2021-06-23 - 3.0.4 - First Beta release. - fury - uglyside@yandex.ru - - - - - - libglade - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - Glade interface builder - Glade arayüz oluşturucu - Libglade est une librairie effectuant un travail similaire aux routines de génération de source C dans le constructeur d'interface graphique GLADE. Là ou les routines de génération de GLADE génerent du code C à compiler, libglade construit l interface depuis un fichier XML (le format de sauvegarde de GLADE) à l'exécution. De cette manière, vous pouvez changer l'apparence de votre programme sans avoir à le recompiler. - Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C code that can then be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This way you can change the look of a program without needing to recompile. - Libglade, GLADE kullanıcı arayüzü yapıcısındaki C kaynak çıkışı yöntemine benzer iş yapan bir kitaplıktır. GLADE'in çıkış yöntemi derlenebilir C kodu oluştururken, libglade arayüzü bir XML dosyasında oluşturur. Böylece yeniden derlenmeye gerek kalmadan arayüz değiştirilebilir. - mirrors://gnome/libglade/2.6/libglade-2.6.4.tar.bz2 - - glib2-devel - libxml2-devel - atk-devel - pango-devel - gtk2-devel - python-devel - - - Makefile.in.am-2.4.2-xmlcatalog.patch - libglade-2.6.3-fix_tests-page_size.patch - libglade-2.0.1-nowarning.patch - - desktop/toolkit/gtk/libglade/pspec.xml - - - libglade - - glib2 - libxml2 - atk - pango - python - gtk2 - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share/xml - - - System.Package - - - - libglade-docs - Libglade reference documents - Libglade referans belgeleri - data:doc - - libglade - - - /usr/share/gtk-doc - - - - libglade-devel - Development files for libglade - libglade için geliştirme dosyaları - - libglade - gtk2-devel - libxml2-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-08 - 2.6.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 2.6.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 2.6.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-03 - 2.6.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pango - http://www.pango.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - FTL - library - desktop.toolkit.gtk - Outil de positionnement et de rendu de texte. - Text rendering and layout library - Metin görüntüleme kitaplığı - Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. - Pango, özellikle yerelleştirme ile birlikte metin düzenlemek ve biçimlendirmek için bir kitaplıktır. Pango metin biçimlendirmenin gerekli olduğu her yerde kullanılabilir ama şimdiye kadar ki birçok Pango çalışması GTK+ araç takımının parçası ile tamamlandı. Pango formları, GTK+-2.x. için temel metin ve yazı tipini yönetir. - mirrors://gnome/pango/1.50/pango-1.50.7.tar.xz - - libX11-devel - freetype-devel - cairo-devel - libXft-devel - harfbuzz-devel - graphite2-devel - fontconfig-devel - libXrender-devel - gtk-doc - python-six - gobject-introspection-devel - glib2-devel - fribidi-devel - meson - gi-docgen - help2man - - desktop/toolkit/gtk/pango/pspec.xml - - - pango - - glib2 - libX11 - freetype - cairo - libXft - fribidi - harfbuzz - fontconfig - libXrender - - - /etc/pango - /usr/bin - /usr/lib/libpango* - /usr/lib/girepository-1.0 - /usr/lib/pango - /usr/share/gir-1.0 - /usr/share/man - /usr/share/doc - - - System.Package - - - - pango-devel - Development files for pango - pango için geliştirme dosyaları - - pango - cairo-devel - libXft-devel - fribidi-devel - harfbuzz-devel - fontconfig-devel - freetype-devel - glib2-devel - libXrender-devel - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - pango-docs - Pango reference documents - Pango referans dokümanları - data:doc - - /usr/share/doc/Pango* - - - - pango-32bit - 32-bit shared libraries for pango - pango için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - fribidi-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - - - pango - cairo-32bit - glib2-32bit - libX11-32bit - libXft-32bit - fribidi-32bit - freetype-32bit - libXrender-32bit - fontconfig-32bit - libffi-32bit - harfbuzz-32bit - - - /usr/bin/pango-querymodules-32 - /usr/lib32/libpango* - /usr/lib32/girepository-1.0 - /usr/lib32/pango - - - - - 2022-05-31 - 1.50.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-11 - 1.50.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-24 - 1.50.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 1.50.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-11 - 1.50.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-07 - 1.50.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-11 - 1.48.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 1.48.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-12 - 1.48.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 1.48.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-23 - 1.48.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-08 - 1.44.7 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-15 - 1.42.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 1.40.14 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-28 - 1.40.14 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-18 - 1.40.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.38.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.38.1 - Release bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2016-01-25 - 1.38.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libwnck3 - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - desktop.toolkit.gtk - A window navigation construction kit - libwnck (pronounced "libwink") is used to implement pagers, tasklists, and other such things. It allows applications to monitor information about open windows, workspaces, their names/icons, and so forth. - http://ftp.gnome.org/pub/gnome/sources/libwnck/40/libwnck-40.1.tar.xz - - startup-notification-devel - gobject-introspection-devel - libXres-devel - pango-devel - gtk3-devel - glib2-devel - intltool - libXt-devel - gettext - meson - - - libwnck-2.18.0-above.patch - - desktop/toolkit/gtk/libwnck3/pspec.xml - - - libwnck3 - - startup-notification - gdk-pixbuf - libXrender - libXres - pango - libX11 - cairo - gtk3 - atk - glib2 - - - /usr/lib - /usr/share/locale - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/share/doc - - - - libwnck3-devel - Development files for libwnck3 - - libwnck3 - gtk3-devel - cairo-devel - pango-devel - libXres-devel - glib2-devel - libX11-devel - startup-notification-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-02-18 - 40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 3.32.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-08 - 2.32.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-24 - 2.31.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 2.31.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 2.31.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2014-05-18 - 2.30.7 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - pangox-compat - http://www.pangox-compat.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - desktop.toolkit.gtk - PangoX compatibility library - X Window System font support for Pango - mirrors://gnome/pangox-compat/0.0/pangox-compat-0.0.2.tar.xz - - pango-devel - - desktop/toolkit/gtk/pangox-compat/pspec.xml - - - pangox-compat - - pango - libX11 - - - /etc/pango - /usr/lib - /usr/share/doc - - - - pangox-compat-devel - Development files for pangox-compat - - pangox-compat - pango-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-02-08 - 0.0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-09 - 0.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-01 - 0.0.2 - First release. - Marcin Bojara - marcin@pisilinux.org - - - - - - cogl - https://gitlab.gnome.org/GNOME/cogl - - Berk Çakar - berk2238@hotmail.com - - LGPLv2.1 - library - desktop.toolkit.gtk - COGL is a low level OpenGL abstraction library developed for (and part of) Clutter. - COGL is a low level OpenGL abstraction library developed for (and part of) Clutter. - https://gitlab.gnome.org/GNOME/cogl/-/archive/1.22.8/cogl-1.22.8.tar.gz - - pango-devel - cairo-devel - mesa-devel - libXext-devel - libXfixes-devel - libXdamage-devel - libXcomposite-devel - json-glib-devel - gobject-introspection-devel - gdk-pixbuf-devel - gtk-doc - valgrind - libXrandr-devel - glib2-devel - libglvnd-devel - wayland-devel - harfbuzz-devel - libX11-devel - libdrm-devel - - desktop/toolkit/gtk/cogl/pspec.xml - - - cogl - - pango - cairo - mesa - libXext - libXfixes - libXdamage - libXcomposite - json-glib - gdk-pixbuf - libglvnd - libXrandr - glib2 - wayland-client - wayland-server - wayland - libX11 - libdrm - - - /usr/lib - /usr/share/doc/cogl - /usr/share/gtk-doc - /usr/share/locale - /usr/share/cogl - - - - cogl-devel - Development files for cogl - - cogl - mesa-devel - pango-devel - cairo-devel - glib2-devel - libX11-devel - libdrm-devel - libXext-devel - wayland-devel - libglvnd-devel - libXfixes-devel - libXrandr-devel - gdk-pixbuf-devel - libXdamage-devel - libXcomposite-devel - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - - 2021-05-25 - 1.22.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-10 - 1.22.6 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - gtkmm - https://www.gtkmm.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - desktop.toolkit.gtk - C++ binding for GTK+ - GTK+ için C++ bağlamı - gtkmm est l'interface C++ officiel de la librairie d'IHM GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. - gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. - gtkmm, grafik kullanıcı arayüzü kitaplığı GTK+'nın resmi C++ arayüzüdür. Tip-güvenli geri çağırmalar ve mirasla genişleyebilen tutarlı parçacıklardan oluşması, en önemli özelliklerini oluşturur. - http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.24/gtkmm-2.24.5.tar.xz - - gtk2-devel - atkmm-devel - glibmm-devel - cairomm-devel - pangomm-devel - libsigc++-devel - - desktop/toolkit/gtk/gtkmm/pspec.xml - - - gtkmm - - gtk2 - atkmm - glibmm - cairomm - pangomm - libsigc++ - gdk-pixbuf - - - /usr/lib - /usr/share/doc - /usr/share - - - - gtkmm-devel - Development files for gtkmm - gtkmm için geliştirme dosyaları - - gtkmm - atkmm-devel - pangomm-devel - glibmm-devel - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-08 - 2.24.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-15 - 2.24.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 2.24.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-21 - 2.24.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.24.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 2.24.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - gtk3 @@ -161860,845 +157434,522 @@ It supports email, address books, calendars, tasks, news feeds and much more. - gtk-doc - http://www.gtk.org/gtk-doc + gtk4 + https://www.gtk.org PisiLinux Community admins@pisilinux.org - GPLv3 - FDL-1.1 - app:console + LGPLv2.1 desktop.toolkit.gtk - GTK+ API documentation generator - GTK+ API belge oluşturucusu - Gtk-Doc is typically used to document the public API of GTK+ and GNOME libraries, but it can also be used to document application code. - gtk-doc, GNOME ve GTK+ gibi kitaplıkların API'lerinin belgelendirilmesi için yazılmış bir uygulama projesidir. - mirrors://gnome/gtk-doc/1.32/gtk-doc-1.32.tar.xz + The GIMP Toolkit version 4 + GTK grafik arayüz kitaplığı versiyon 4 + GTK+ est une boîte à outil multi-plateforme servant à créer des interfaces graphiques. Offrant un ensemble complet de widgets (objets graphiques), GTK+ convient aussi bien pour les petits projets que pour les suites complètes d'applications. + GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites. + GTK+, grafik kullanıcı arayüzü oluşturma amaçlı araçlardan oluşur. GTK+ hem küçük, hem de büyük uygulamalar için ideal olan, eksiksiz bir araçtır. + Wersja 4 bibliotek przeznaczonych do tworzenia interfejsów graficznych programów — GTK+. Interfejs GTK+ znany jest z takich programów, jak GIMP i Inkscape, oraz środowisk graficznych GNOME i Xfce. + mirrors://gnome/gtk/4.6/gtk-4.6.5.tar.xz - itstool - python3-devel - sgml-common - docbook-xml - docbook-xsl - libxslt-devel + gettext-devel + glib2-devel + gtk-doc + gi-docgen + sassc + docutils + libcloudproviders-devel + colord-devel + cups-devel + mesa-devel + colord-devel + libxkbcommon-devel + libXcursor-devel + libXdamage-devel + libXext-devel + libXinerama-devel + libXi-devel + libXrandr-devel + libXcomposite-devel + at-spi2-atk-devel + gdk-pixbuf-devel + libepoxy-devel + pango-devel + iso-codes-devel + graphene-devel + ffmpeg-devel + gst-plugins-bad-devel + vulkan-devel + vulkan-headers + wayland-devel + wayland-protocols-devel + meson + gobject-introspection-devel + librsvg-devel + json-glib-devel + librest-devel + libjpeg-turbo-devel + python-docutils - desktop/toolkit/gtk/gtk-doc/pspec.xml + desktop/toolkit/gtk/gtk4/pspec.xml - gtk-doc + gtk4 - docbook-xsl - sgml-common - python3 - python3-Pygments - python3-lxml - python3-anytree + cups + tiff + cairo + glib2 + libXi + pango + colord + libpng + ffmpeg + libX11 + vulkan + fribidi + libXext + librest + wayland + graphene + harfbuzz + libepoxy + gstreamer + json-glib + libXfixes + libXrandr + fontconfig + gdk-pixbuf + libXcursor + libXdamage + libXinerama + libxkbcommon + libXcomposite + libjpeg-turbo + wayland-client + gst-plugins-bad + gst-plugins-base + libcloudproviders /usr/bin - /usr/share - /usr/lib + /usr/share/glib-2.0 + /usr/share/gtk-4.0 + /usr/share/gettext + /usr/share/man/man1/gtk4-broadwayd* + /usr/share/man/man1/gtk4-builder-tool* + /usr/share/man/man1/gtk4-encode-symbolic* + /usr/share/man/man1/gtk4-launch* + /usr/share/man/man1/gtk4-query-settings* /usr/share/doc - /usr/share/omf - /var/lib + /usr/lib/libgtk* + /usr/lib/gtk-4.0 + /usr/lib/girepository-1.0 + /usr/share/locale + + + + gtk4-demo + GTK4 demo applications + GTK4 demo uygulamaları + app:gui + + gtk4 + librsvg + + + /usr/bin/gtk4-demo* + /usr/bin/gtk4-icon-browser + /usr/bin/gtk4-print-editor + /usr/bin/gtk4-widget-factory + /usr/share/applications + /usr/share/glib-2.0/schemas/org.gtk.Demo4.gschema.xml + /usr/share/icons + /usr/share/man/man1/gtk4-demo* + /usr/share/man/man1/gtk4-icon-browser* + /usr/share/man/man1/gtk4-widget-factory* + /usr/share/metainfo + + + + gtk4-docs + GTK4 reference documents + GTK4 referans dökümanları + data:doc + + /usr/share/gtk-doc + + + + gtk4-devel + Development files for GTK4 + GTK4 için geliştirme dosyaları + Pliki nagłówkowe do gtk4 + + gtk4 + pango-devel + libX11-devel + libXi-devel + cairo-devel + glib2-devel + libXext-devel + libepoxy-devel + libXfixes-devel + libXrandr-devel + gdk-pixbuf-devel + fontconfig-devel + libXdamage-devel + libXcursor-devel + libXinerama-devel + libXcomposite-devel + vulkan-devel + vulkan-headers + graphene-devel + wayland-devel + libxkbcommon-devel + wayland-protocols-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + gtk4-update-icon-cache + GTK4 icon cache updater + GTK4 için simge önbelleği güncelleyicisi + + gtk4 + + + /usr/bin/gtk*-update-icon-cache + /usr/share/man/man1/gtk*-update-icon-cache* - - 2021-01-24 - 1.32 - Version Bump - Idris Kalp - idriskalp@gmail.com - - 2018-07-25 - 1.28 - Version Bump + 2022-05-31 + 4.6.5 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-01-09 - 1.27 - Version Bump + 2022-01-03 + 4.6.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-02-06 - 1.25 - Version Bump - Pisi Linux Community - admin@pisilinux.org + 2021-11-02 + 4.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2016-06-09 - 1.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2021-08-23 + 4.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2015-04-06 - 1.21 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2021-05-28 + 4.2.1 + First release. + Mustafa Cinasal + muscnsl@gmail.com - clutter-gtk - https://github.com/GNOME/clutter-gtk + gtkdatabox + http://sourceforge.net/projects/gtkdatabox - Berk Çakar - berk2238@hotmail.com + PisiLinux Community + admins@pisilinux.org LGPLv2+ library desktop.toolkit.gtk - Clutter GTK support - Cluter GTK desteği - clutter-gtk provides GTK support for clutter. - clutter-gtk clutter için GTK desteği sağlar. - https://github.com/GNOME/clutter-gtk/archive/1.8.4.tar.gz + A Gtk+ Widget for Fast Data Display + Hızlı veri gösterimi sağlayan bir Gtk+ kitaplığı + GtkDatabox is a widget for the Gtk+ library designed to display large amounts of numerical data fast and easy. + gtkdatabox, yüksek miktarda veriyi hızlı ve kolayca görüntülemeyi sağlayan bir Gtk+ kitaplığıdır. + https://sourceforge.net/projects/gtkdatabox/files/gtkdatabox-1/gtkdatabox-1.0.0.tar.gz/download - meson - valgrind - cogl-devel gtk3-devel - clutter-devel - gobject-introspection-devel - - desktop/toolkit/gtk/clutter-gtk/pspec.xml - - - clutter-gtk - clutter-gtk için geliştirme dosyaları - - cogl - gtk3 - cairo - glib2 - clutter - gdk-pixbuf - wayland-client - - - /usr/lib - /usr/share/doc/clutter-gtk - /usr/share/gtk-doc - /usr/share/locale - - - - clutter-gtk-devel - Development files for clutter-gtk - - cogl-devel - gtk3-devel - clutter-devel - clutter-gtk - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-04-10 - 1.8.4 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - clutter-gst - https://gitlab.gnome.org/GNOME/clutter-gst - - Berk Çakar - berk2238@hotmail.com - - LGPLv2.1 - desktop.toolkit.gtk - GStreamer bindings for clutter - GStreamer bindings for clutter - http://ftp.gnome.org/pub/gnome/sources/clutter-gst/3.0/clutter-gst-3.0.27.tar.xz - - gtk-doc - valgrind - glib2-devel - libX11-devel - clutter-devel - libgudev-devel - libgudev-devel - gstreamer-devel - gdk-pixbuf-devel - gst-plugins-good - libXdamage-devel - gst-plugins-base-devel - gobject-introspection-devel - - desktop/toolkit/gtk/clutter-gst/pspec.xml - - - clutter-gst - GStreamer bindings for clutter - - cogl - glib2 - libX11 - clutter - gdk-pixbuf - libgudev - gstreamer - gst-plugins-base - - - /usr/lib/girepository-1.0 - /usr/lib/gstreamer-1.0 - /usr/lib/libclutter-gst-3.0.so - /usr/lib/libclutter-gst-3.0.so.0 - /usr/lib/libclutter-gst-3.0.so.0.27.0 - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/gtk-doc - - - - clutter-gst-devel - - cogl-devel - glib2-devel - clutter-devel - gstreamer-devel - gst-plugins-base-devel - clutter-gst - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-04-21 - 3.0.27 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - cairo - https://cairographics.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - MPL-1.1 - library - desktop.toolkit.gtk - Cairo est une librairie graphique 2D supportant de nombreux périphériques de sortie. - 2D graphics library with bindings of many programming languages - Birden çok çıktı cihazına destek veren bir 2 boyutlu grafik kitaplığı - Cairo is a 2D graphics library with support for multiple output devices (and fileformats). - https://download.gnome.org/sources/cairo/1.17/cairo-1.17.6.tar.xz - - lzo-devel - zlib-devel - glib2-devel - libX11-devel - libpng-devel - libxcb-devel - freetype-devel - expat-devel - fontconfig-devel - libXrender-devel - pixman-devel - xcb-util-devel - libXext-devel - libglvnd-devel - valgrind - - desktop/toolkit/gtk/cairo/pspec.xml - - - cairo - - lzo - zlib - glib2 - libX11 - libpng - libxcb - freetype - fontconfig - libXrender - pixman - libXext - libglvnd - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share/gtk-doc - /usr/share/info - /usr/lib - - - - cairo-devel - Development files for cairo - cairo için geliştirme dosyaları - - cairo - glib2-devel - libX11-devel - libpng-devel - libxcb-devel - freetype-devel - pixman-devel - libXext-devel - fontconfig-devel - libXrender-devel - libglvnd-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - cairo-32bit - 32-bit shared libraries for cairo - cairo için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libglvnd-32bit - zlib-32bit - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - cairo - libglvnd-32bit - zlib-32bit - glib2-32bit - libX11-32bit - pixman-32bit - libpng-32bit - libxcb-32bit - libXext-32bit - freetype-32bit - fontconfig-32bit - libXrender-32bit - - - /usr/lib32/lib* - /usr/lib32/cairo - - - - - 2022-05-31 - 1.17.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-23 - 1.17.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 1.17.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-30 - 1.17.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-08 - 1.17.2 - version Bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-02-04 - 1.16.0 - version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.15.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-18 - 1.15.12 - version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-01-28 - 1.14.12 - version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-17 - 1.14.8 - version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.14.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.14.2 - Release Bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-04-18 - 1.14.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ocrfeeder - https://gitlab.gnome.org/GNOME/ocrfeeder - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - desktop.toolkit.gtk - GTK+ document layout analysis and optical character recognition application - GTK+ document layout analysis and optical character recognition application - GTK + belge düzeni analizi ve optik karakter tanıma uygulaması - GTK + belge düzeni analizi ve optik karakter tanıma uygulaması - https://gitlab.gnome.org/GNOME/ocrfeeder/-/archive/0.8.5/ocrfeeder-0.8.5.tar.gz - - ocrad - itstool - intltool - gtk3-devel - glib2-devel - yelp-tools - gnome-common - gettext-devel - python3-sane - python3-devel - python3-odfpy - python3-reportlab - python3-enchant - python3-pillow-devel - python3-pygobject3-devel - goocanvas-devel - - desktop/toolkit/gtk/ocrfeeder/pspec.xml - - - ocrfeeder - - gtk3 - ocrad - glib2 - gtkspell3 - yelp-tools - gnome-common - python3-sane - python3 - python3-odfpy - python3-reportlab - python3-enchant - python3-pillow - python3-pygobject3 - goocanvas - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/doc - - - - - 2022-04-05 - 0.8.5 - Version Bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2021-04-26 - 0.8.3 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - gdk-pixbuf - https://wiki.gnome.org/Projects/GdkPixbuf - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - GDK pixbuf library - GDK pixbuf kitaplığı - gdk-pixbuf is a library that provides image loading and scaling support for gtk+ applications - gdk-pixbuf, gtk+ uygulamalarına resim açma ve ölçeklendirme desteği sağlayan bir kitaplıktır. - mirrors://gnome/gdk-pixbuf/2.42/gdk-pixbuf-2.42.8.tar.xz - - meson - gtk-doc - gi-docgen - glib2-devel - libX11-devel - tiff-devel - libjpeg-turbo-devel - libpng-devel - jasper-devel - shared-mime-info - python3-six - docbook-xsl - gobject-introspection-devel - - desktop/toolkit/gtk/gdk-pixbuf/pspec.xml - - - gdk-pixbuf - - glib2 - libpng - libX11 - tiff - jasper - libjpeg-turbo - shared-mime-info - - - /etc - /usr/bin - /usr/libexec - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share - /usr/share/gir-1.0 - - - System.PackageHandler - - - - gdk-pixbuf-devel - Development files for gdk-pixbuf - gdk-pixbuf için geliştirme dosyaları - - gdk-pixbuf - glib2-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - - - /usr/bin/gdk-pixbuf-csource - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - gdk-pixbuf-docs - Reference documents for gdk-pixbuf - gdk-pixbuf için başvuru belgeleri - - /usr/share/doc - - - - gdk-pixbuf-32bit - 32-bit shared libraries for gdk-pixbuf - gdk-pixbuf için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - glib2-32bit - libX11-32bit - libpng-32bit - jasper-32bit - libX11-32bit - - - gdk-pixbuf - tiff-32bit - glib2-32bit - libpng-32bit - libX11-32bit - jasper-32bit - libjpeg-turbo-32bit - - - /usr/bin/gdk-pixbuf-query-loaders-32 - /usr/lib32 - - - System.PackageHandler - - - - - 2022-05-31 - 2.42.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 2.42.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-01 - 2.40.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-17 - 2.36.12 - add runtime dep. - Pisi Linux Community - admin@pisilinux.org - - - 2019-03-24 - 2.36.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 2.36.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-17 - 2.36.12 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-28 - 2.36.11 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 2.36.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.31.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.31.4 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-25 - 2.31.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gtksourceview4 - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.toolkit.gtk - A text widget implementing syntax highlighting and other features - Sözdizimi vurgulaması için araçlar - Gtksourceview improves the gtk+ text widget by implementing syntax highlighting and other features typical of a source editor. - Gtksourceview, gtk+ metin kütüphanesini geliştiren ve bir kaynak kodu düzenleyicisinde olması gereken sözdizimi vurgulaması gibi özellikleri sağlayan bir araçtır. - mirrors://gnome/gtksourceview/4.8/gtksourceview-4.8.3.tar.xz - - intltool - python3 - python-six - itstool - valgrind - intltool - gtk-doc - vala-devel - gtk3-devel - glib2-devel - yelp-tools - libxml2-devel - autoconf-archive - gobject-introspection-devel - meson + cairo-devel + pango-devel glade-devel + gtk-doc - desktop/toolkit/gtk/gtksourceview4/pspec.xml + desktop/toolkit/gtk/gtkdatabox/pspec.xml - gtksourceview4 + gtkdatabox atk gtk3 cairo - fribidi - glib2 pango - libxml2 + glib2 gdk-pixbuf + fontconfig /usr/lib /usr/share/doc - /usr/share/locale - /usr/share/gir-1.0/ - /usr/share/glade/ - /usr/share/vala/vapi - /usr/share/gtksourceview-4 + /usr/share/icons - gtksourceview4-docs - Reference documents of gtksourceview - gtksourceview paketine ait referans belgeleri - data:doc - - /usr/share/gtk-doc - - - - gtksourceview4-devel - Development files for gtksourceview - gtksourceview için geliştirme dosyaları + gtkdatabox-devel + Development files for gtkdatabox + gtkdatabox için geliştirim dosyaları - gtksourceview4 - fribidi-devel + gtkdatabox + cairo-devel gtk3-devel - glib2-devel - libxml2-devel + pango-devel /usr/include /usr/lib/pkgconfig + + gtkdatabox-glade + Glade 2 support for gtkdatabox + gtkdatabox için Glade 3 desteği + + gtkdatabox + atk + gtk3 + cairo + pango + glade + gdk-pixbuf + fontconfig + + + /usr/lib/glade + /usr/share/glade/catalogs + + + + gtkdatabox-docs + Development files for gtkdatabox + gtkdatabox için belgelendirme dosyaları + + gtkdatabox + + + /usr/share/gtk-doc + + + + + 2021-10-14 + 1.0.0 + First release + Erkan IŞIK + erkanisik@pisilinux.org + + + + + + gtkmm + https://www.gtkmm.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + C++ binding for GTK+ + GTK+ için C++ bağlamı + gtkmm est l'interface C++ officiel de la librairie d'IHM GTK+. Au menu des callbacks (rappels) typesafe (avec vérification de type à la compilation) ainsi qu'un ensemble large et complet de widgets (objets graphiques) facilement extensible via héritage. + gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. + gtkmm, grafik kullanıcı arayüzü kitaplığı GTK+'nın resmi C++ arayüzüdür. Tip-güvenli geri çağırmalar ve mirasla genişleyebilen tutarlı parçacıklardan oluşması, en önemli özelliklerini oluşturur. + http://ftp.gnome.org/pub/GNOME/sources/gtkmm/2.24/gtkmm-2.24.5.tar.xz + + gtk2-devel + atkmm-devel + glibmm-devel + cairomm-devel + pangomm-devel + libsigc++-devel + + desktop/toolkit/gtk/gtkmm/pspec.xml + + + gtkmm + + gtk2 + atkmm + glibmm + cairomm + pangomm + libsigc++ + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share + + + + gtkmm-devel + Development files for gtkmm + gtkmm için geliştirme dosyaları + + gtkmm + atkmm-devel + pangomm-devel + glibmm-devel + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-08 + 2.24.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-15 + 2.24.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 2.24.5 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-21 + 2.24.5 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.24.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 2.24.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gtkmm3 + https://www.gtkmm.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + C++ binding for GTK+ + gtkmm is the official C++ interface for the popular GUI library GTK+. Highlights include typesafe callbacks, and a comprehensive set of widgets that are easily extensible via inheritance. + http://ftp.gnome.org/pub/GNOME/sources/gtkmm/3.24/gtkmm-3.24.6.tar.xz + + meson + doxygen + gtk3-devel + libxslt-devel + atkmm-devel + glibmm-devel + cairomm-devel + mm-common + gdk-pixbuf-devel + pangomm-devel + + desktop/toolkit/gtk/gtkmm3/pspec.xml + + + gtkmm3 + + gtk3 + atkmm + glib2 + glibmm + libgcc + cairomm + pangomm + libsigc++ + gdk-pixbuf + + + /usr/lib/libgdkmm* + /usr/lib/libgtkmm* + /usr/lib/gdkmm-3.0 + /usr/lib/gtkmm-3.0 + /usr/share/doc + /usr/share + + + + gtkmm3-devel + Development files for gtkmm + + gtkmm3 + atkmm-devel + pangomm-devel + glibmm-devel + gtk3-devel + cairomm-devel + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + + - 2022-05-31 - 4.8.3 + 2022-05-02 + 3.24.6 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-12 - 4.8.2 + 2021-05-25 + 3.24.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-04-05 - 4.8.1 + 2020-02-13 + 3.24.2 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -162814,6 +158065,311 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + gtksourceview4 + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + A text widget implementing syntax highlighting and other features + Sözdizimi vurgulaması için araçlar + Gtksourceview improves the gtk+ text widget by implementing syntax highlighting and other features typical of a source editor. + Gtksourceview, gtk+ metin kütüphanesini geliştiren ve bir kaynak kodu düzenleyicisinde olması gereken sözdizimi vurgulaması gibi özellikleri sağlayan bir araçtır. + mirrors://gnome/gtksourceview/4.8/gtksourceview-4.8.3.tar.xz + + intltool + python3 + python-six + itstool + valgrind + intltool + gtk-doc + vala-devel + gtk3-devel + glib2-devel + yelp-tools + libxml2-devel + autoconf-archive + gobject-introspection-devel + meson + glade-devel + + desktop/toolkit/gtk/gtksourceview4/pspec.xml + + + gtksourceview4 + + atk + gtk3 + cairo + fribidi + glib2 + pango + libxml2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/gir-1.0/ + /usr/share/glade/ + /usr/share/vala/vapi + /usr/share/gtksourceview-4 + + + + gtksourceview4-docs + Reference documents of gtksourceview + gtksourceview paketine ait referans belgeleri + data:doc + + /usr/share/gtk-doc + + + + gtksourceview4-devel + Development files for gtksourceview + gtksourceview için geliştirme dosyaları + + gtksourceview4 + fribidi-devel + gtk3-devel + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-31 + 4.8.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 4.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-05 + 4.8.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gtksourceview5 + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + A text widget implementing syntax highlighting and other features + Gtksourceview improves the gtk+ text widget by implementing syntax highlighting and other features typical of a source editor. + mirrors://gnome/gtksourceview/5.4/gtksourceview-5.4.1.tar.xz + + meson + python3 + itstool + valgrind + intltool + gtk-doc + vala-devel + gi-docgen + gtk4-devel + libpcre2-devel + fontconfig-devel + glib2-devel + yelp-tools + libxml2-devel + autoconf-archive + gobject-introspection-devel + sysprof-devel + glade-devel + gtk4-update-icon-cache + + desktop/toolkit/gtk/gtksourceview5/pspec.xml + + + gtksourceview5 + + gtk4 + libpcre2 + fontconfig + cairo + fribidi + glib2 + pango + libxml2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/gir-1.0/ + /usr/share/glade/ + /usr/share/vala/vapi + /usr/share/icons + /usr/share/gtksourceview-5 + + + + gtksourceview5-docs + Reference documents of gtksourceview + data:doc + + /usr/share/doc/gtksourceview5/*.html + + + + gtksourceview5-devel + Development files for gtksourceview + + gtksourceview5 + gtk4-devel + glib2-devel + pango-devel + fribidi-devel + libxml2-devel + libpcre2-devel + fontconfig-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-22 + 5.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-04 + 5.2.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + gtkspell + http://gtkspell.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + desktop.toolkit.gtk + Spell checking widget for GTK+ + GTK+ için yazım denetimi eklentisi + GtkSpell provides MSWord / MacOSX-style highlighting of misspelled words in a GtkTextView widget. Right-clicking a misspelled word pops up a menu of suggested replacements. + GtkSpell, MSWord / MacOSX işletim sistemlerinde olduğu gibi, GTK+ metin gösterme zımbırtılarında yanlış yazılmış kelimeleri vurgular ve yanlış yazılmış kelimelere sağ tıkladığınızda, size yeni kelimeler önerir. + mirrors://sourceforge/gtkspell/gtkspell-2.0.16.tar.gz + + gtk2-devel + enchant-devel + intltool + + desktop/toolkit/gtk/gtkspell/pspec.xml + + + gtkspell + + atk + gtk2 + cairo + glib2 + pango + enchant + freetype + fontconfig + gdk-pixbuf + + + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/gtk-doc + + + + gtkspell-devel + Development files for gtkspell + gtkspell için geliştirme dosyaları + + gtkspell + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-15 + 2.0.16 + Rebuild + Pisi Linux Community + suvari@pisilinux.org + + + 2018-09-10 + 2.0.16 + Rebuild + Pisi Linux Community + suvari@pisilinux.org + + + 2017-04-11 + 2.0.16 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 2.0.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-20 + 2.0.16 + First release + Alihan Öztürk + alihan@pisilinux.org + + + gtkspell3 @@ -162936,6 +158492,765 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + libglade + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + desktop.toolkit.gtk + Glade interface builder + Glade arayüz oluşturucu + Libglade est une librairie effectuant un travail similaire aux routines de génération de source C dans le constructeur d'interface graphique GLADE. Là ou les routines de génération de GLADE génerent du code C à compiler, libglade construit l interface depuis un fichier XML (le format de sauvegarde de GLADE) à l'exécution. De cette manière, vous pouvez changer l'apparence de votre programme sans avoir à le recompiler. + Libglade is a library that performs a similar job to the C source output routines in the GLADE user interface builder. Whereas GLADE's output routines create C code that can then be compiled, libglade builds the interface from an XML file (GLADE's save format) at runtime. This way you can change the look of a program without needing to recompile. + Libglade, GLADE kullanıcı arayüzü yapıcısındaki C kaynak çıkışı yöntemine benzer iş yapan bir kitaplıktır. GLADE'in çıkış yöntemi derlenebilir C kodu oluştururken, libglade arayüzü bir XML dosyasında oluşturur. Böylece yeniden derlenmeye gerek kalmadan arayüz değiştirilebilir. + mirrors://gnome/libglade/2.6/libglade-2.6.4.tar.bz2 + + glib2-devel + libxml2-devel + atk-devel + pango-devel + gtk2-devel + python-devel + + + Makefile.in.am-2.4.2-xmlcatalog.patch + libglade-2.6.3-fix_tests-page_size.patch + libglade-2.0.1-nowarning.patch + + desktop/toolkit/gtk/libglade/pspec.xml + + + libglade + + glib2 + libxml2 + atk + pango + python + gtk2 + gdk-pixbuf + + + /usr/lib + /usr/share/doc + /usr/share/xml + + + System.Package + + + + libglade-docs + Libglade reference documents + Libglade referans belgeleri + data:doc + + libglade + + + /usr/share/gtk-doc + + + + libglade-devel + Development files for libglade + libglade için geliştirme dosyaları + + libglade + gtk2-devel + libxml2-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-08 + 2.6.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 2.6.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 2.6.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-03 + 2.6.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libwnck2 + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + desktop.toolkit.gtk + A window navigation construction kit + libwnck (pronounced "libwink") is used to implement pagers, tasklists, and other such things. It allows applications to monitor information about open windows, workspaces, their names/icons, and so forth. + http://ftp.gnome.org/pub/gnome/sources/libwnck/2.31/libwnck-2.31.0.tar.xz + + startup-notification-devel + gobject-introspection-devel + libXres-devel + pango-devel + gtk2-devel + glib2-devel + intltool + libXt-devel + gettext + meson + + + libwnck-2.18.0-above.patch + + desktop/toolkit/gtk/libwnck2/pspec.xml + + + libwnck2 + + startup-notification + gdk-pixbuf + libXrender + libXres + pango + libX11 + cairo + gtk2 + atk + glib2 + + + /usr/lib + /usr/share/locale + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/doc + + + + libwnck2-devel + Development files for libwnck2 + + libwnck2 + gtk2-devel + cairo-devel + pango-devel + libXres-devel + glib2-devel + libX11-devel + startup-notification-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-01 + 2.31.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-08 + 2.32.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-24 + 2.31.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 2.31.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 2.31.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-18 + 2.30.7 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libwnck3 + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + desktop.toolkit.gtk + A window navigation construction kit + libwnck (pronounced "libwink") is used to implement pagers, tasklists, and other such things. It allows applications to monitor information about open windows, workspaces, their names/icons, and so forth. + http://ftp.gnome.org/pub/gnome/sources/libwnck/40/libwnck-40.1.tar.xz + + startup-notification-devel + gobject-introspection-devel + libXres-devel + pango-devel + gtk3-devel + glib2-devel + intltool + libXt-devel + gettext + meson + + + libwnck-2.18.0-above.patch + + desktop/toolkit/gtk/libwnck3/pspec.xml + + + libwnck3 + + startup-notification + gdk-pixbuf + libXrender + libXres + pango + libX11 + cairo + gtk3 + atk + glib2 + + + /usr/lib + /usr/share/locale + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/doc + + + + libwnck3-devel + Development files for libwnck3 + + libwnck3 + gtk3-devel + cairo-devel + pango-devel + libXres-devel + glib2-devel + libX11-devel + startup-notification-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-02-18 + 40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 3.32.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-08 + 2.32.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-24 + 2.31.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 2.31.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 2.31.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2014-05-18 + 2.30.7 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + nocsd + https://github.com/ZaWertun/gtk3-nocsd + + fury + uglyside@yandex.ru + + LGPLv2.1 + library + desktop.toolkit.gtk + A hack to disable gtk+ 3 client side decoration. + gtk3-nocsd is a small module used to disable the client side decoration of Gtk+ 3. + https://github.com/ZaWertun/gtk3-nocsd/archive/v3.0.4.tar.gz + + gtk3-devel + gobject-introspection-devel + + + Always_override_property_gtk-decoration-layout.patch + Fix_for_black_borders_around_some_application_windows.patch + + desktop/toolkit/gtk/nocsd/pspec.xml + + + nocsd + + /usr/bin/gtk3-nocsd + /usr/lib/libgtk3-nocsd.so.0 + /usr/share + /usr/share/man + /usr/share/doc/gtk3-nocsd + + + + + 2021-06-23 + 3.0.4 + First Beta release. + fury + uglyside@yandex.ru + + + + + + ocrfeeder + https://gitlab.gnome.org/GNOME/ocrfeeder + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + desktop.toolkit.gtk + GTK+ document layout analysis and optical character recognition application + GTK+ document layout analysis and optical character recognition application + GTK + belge düzeni analizi ve optik karakter tanıma uygulaması + GTK + belge düzeni analizi ve optik karakter tanıma uygulaması + https://gitlab.gnome.org/GNOME/ocrfeeder/-/archive/0.8.5/ocrfeeder-0.8.5.tar.gz + + ocrad + itstool + intltool + gtk3-devel + glib2-devel + yelp-tools + gnome-common + gettext-devel + python3-sane + python3-devel + python3-odfpy + python3-reportlab + python3-enchant + python3-pillow-devel + python3-pygobject3-devel + goocanvas-devel + + desktop/toolkit/gtk/ocrfeeder/pspec.xml + + + ocrfeeder + + gtk3 + ocrad + glib2 + gtkspell3 + yelp-tools + gnome-common + python3-sane + python3 + python3-odfpy + python3-reportlab + python3-enchant + python3-pillow + python3-pygobject3 + goocanvas + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/doc + + + + + 2022-04-05 + 0.8.5 + Version Bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2021-04-26 + 0.8.3 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + pango + http://www.pango.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + FTL + library + desktop.toolkit.gtk + Outil de positionnement et de rendu de texte. + Text rendering and layout library + Metin görüntüleme kitaplığı + Pango is a library for laying out and rendering of text, with an emphasis on internationalization. Pango can be used anywhere that text layout is needed, though most of the work on Pango so far has been done in the context of the GTK+ widget toolkit. Pango forms the core of text and font handling for GTK+-2.x. + Pango, özellikle yerelleştirme ile birlikte metin düzenlemek ve biçimlendirmek için bir kitaplıktır. Pango metin biçimlendirmenin gerekli olduğu her yerde kullanılabilir ama şimdiye kadar ki birçok Pango çalışması GTK+ araç takımının parçası ile tamamlandı. Pango formları, GTK+-2.x. için temel metin ve yazı tipini yönetir. + mirrors://gnome/pango/1.50/pango-1.50.7.tar.xz + + libX11-devel + freetype-devel + cairo-devel + libXft-devel + harfbuzz-devel + graphite2-devel + fontconfig-devel + libXrender-devel + gtk-doc + python-six + gobject-introspection-devel + glib2-devel + fribidi-devel + meson + gi-docgen + help2man + + desktop/toolkit/gtk/pango/pspec.xml + + + pango + + glib2 + libX11 + freetype + cairo + libXft + fribidi + harfbuzz + fontconfig + libXrender + + + /etc/pango + /usr/bin + /usr/lib/libpango* + /usr/lib/girepository-1.0 + /usr/lib/pango + /usr/share/gir-1.0 + /usr/share/man + /usr/share/doc + + + System.Package + + + + pango-devel + Development files for pango + pango için geliştirme dosyaları + + pango + cairo-devel + libXft-devel + fribidi-devel + harfbuzz-devel + fontconfig-devel + freetype-devel + glib2-devel + libXrender-devel + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + pango-docs + Pango reference documents + Pango referans dokümanları + data:doc + + /usr/share/doc/Pango* + + + + pango-32bit + 32-bit shared libraries for pango + pango için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + fribidi-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit + + + pango + cairo-32bit + glib2-32bit + libX11-32bit + libXft-32bit + fribidi-32bit + freetype-32bit + libXrender-32bit + fontconfig-32bit + libffi-32bit + harfbuzz-32bit + + + /usr/bin/pango-querymodules-32 + /usr/lib32/libpango* + /usr/lib32/girepository-1.0 + /usr/lib32/pango + + + + + 2022-05-31 + 1.50.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-11 + 1.50.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-24 + 1.50.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 1.50.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-11 + 1.50.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-07 + 1.50.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-11 + 1.48.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 1.48.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-12 + 1.48.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-26 + 1.48.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-23 + 1.48.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-08 + 1.44.7 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-15 + 1.42.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 1.40.14 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-28 + 1.40.14 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-18 + 1.40.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.38.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.38.1 + Release bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2016-01-25 + 1.38.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + pangomm @@ -163060,5524 +159375,769 @@ It supports email, address books, calendars, tasks, news feeds and much more. - xsettingsd - https://github.com/derat/xsettingsd - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - desktop.toolkit - Provides settings to X11 applications via the XSETTINGS specification - Provides settings to X11 applications via the XSETTINGS specification - xsettingsd - https://github.com/derat/xsettingsd/archive/refs/tags/v1.0.2.tar.gz - - libX11-devel - extra-cmake-modules - - desktop/toolkit/xsettingsd/pspec.xml - - - xsettingsd - - libX11 - libgcc - - - /usr/bin - /usr/lib - /usr/share - - - - - 2021-05-01 - 1.0.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - fltk - https://www.fltk.org/ + pangox-compat + http://www.pangox-compat.org PisiLinux Community admins@pisilinux.org - LGPLv2.1 + LGPLv2+ library - desktop.toolkit - FLTK (pronounced "fulltick") is a cross-platform C++ GUI toolkit - FLTK, platformlar arası C++ kullanıcı arayüzü için bir araç takımı - FLTK fournit les fonctionnalités IHM sans fioritures et supporte les graphiques 3D via OpenGL et son émulation GLUT intégrée. FLTK est conçue pour être petite et suffisamment modulaire pour être associée statiquement, tout en restant parfaitement utilisable en tant que librairie partagée. FLTK inclus également un excellent constructeur d'IHM appelé FLUID pouvant être utilisé pour créer des applications en quelques minutes. - FLTK provides modern GUI functionality without the bloat and supports 3D graphics via OpenGL and its built-in GLUT emulation. FLTK is designed to be small and modular enough to be statically linked, but works fine as a shared library. FLTK also includes an excellent UI builder called FLUID that can be used to create applications in minutes. - FLTK sistemi yormadan modern bir arayüzün işlevselliğini sağlar. OpenGL ve kendi içinde bulunan GLUT emülasyonu sayesinde 3B görüntü de sağlayabilir. FLTK statik kitaplık olabilecek kadar küçük ve modülerdir, fakat paylaşılmış kitaplık olarak da çalışabilir. Ayrıca FLUID adlı grafik arayüz tasarım aracı sayesinde çok kısa sürede FLTK uygulamaları geliştirilebilir. - FLTK provee una funcionalidad de un GUI moderno sin demasiado complejidad y soporta gráficos 3D via OpenGL y su emulación GLUT incluido. FLTK fue diseñado para ser pequeño y modular para enlace estático, pero funciona bien como librería compartida. FLTK también incluye un entorno de desarrollo UI llamado FLUID con el cual se puede crear aplicaciones en minutos. - https://www.fltk.org/pub/fltk/1.3.5/fltk-1.3.5-source.tar.bz2 - - x-fluid.desktop - + desktop.toolkit.gtk + PangoX compatibility library + X Window System font support for Pango + mirrors://gnome/pangox-compat/0.0/pangox-compat-0.0.2.tar.xz - zlib-devel - libX11-devel - libgcc - libpng-devel - libglvnd-devel - libXft-devel - libXext-devel - mesa-glu-devel - libXfixes-devel - libXcursor-devel - fontconfig-devel - libXinerama-devel - libjpeg-turbo-devel + pango-devel - - fltk-config-dynlibs.patch - - desktop/toolkit/fltk/pspec.xml + desktop/toolkit/gtk/pangox-compat/pspec.xml - fltk + pangox-compat - zlib + pango libX11 - libgcc - libpng - libglvnd - libXft - libXext - libXrender - mesa-glu - libXfixes - libXcursor - fontconfig - libXinerama - libjpeg-turbo + /etc/pango /usr/lib /usr/share/doc - fltk-32bit + pangox-compat-devel + Development files for pangox-compat + + pangox-compat + pango-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-02-08 + 0.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-09 + 0.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-01 + 0.0.2 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + spice-gtk + https://www.spice-space.org/ + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2.1 + library + app:console + desktop.toolkit.gtk + GTK+ client library for SPICE + GTK+ client library for SPICE + https://www.spice-space.org/download/gtk/spice-gtk-0.39.tar.xz + + meson + gtk-doc + valgrind + usbutils + lz4-devel + acl-devel + zlib-devel + gtk3-devel + cairo-devel + python3-six + spice-devel + glib2-devel + polkit-devel + phodav-devel + pixman-devel + libusb-devel + python3-devel + elogind-devel + libopus-devel + openssl-devel + libsoup-devel + usbredir-devel + spice-protocol + libcap-ng-devel + gstreamer-devel + json-glib-devel + libcacard-devel + cyrus-sasl-devel + gdk-pixbuf-devel + python3-pyparsing + libjpeg-turbo-devel + gst-plugins-base-devel + gobject-introspection-devel + + desktop/toolkit/gtk/spice-gtk/pspec.xml + + + spice-gtk + GTK+ client library for SPICE. + + lz4 + acl + gtk3 + zlib + cairo + glib2 + spice + libusb + polkit + phodav + pixman + python3 + libopus + openssl + libsoup + usbredir + libcap-ng + gstreamer + json-glib + libcacard + cyrus-sasl + python3-six + libjpeg-turbo + spice-protocol + gst-plugins-base + python3-pyparsing + gobject-introspection + + + /usr/bin + /usr/lib/libspice-client-gtk-3.0.so* + /usr/lib/libspice-client-glib-2.0.so* + /usr/share/doc/ + /usr/share/man + /usr/share/locale + /usr/share/polkit-1/actions + /usr/share/gtk-doc/html + /usr/lib/girepository-1.0 + /usr/libexec/spice-client-glib-usb-acl-helper + + + + spice-gtk-devel + Development files for spice-gtk + + lz4-devel + acl-devel + zlib-devel + gtk3-devel + glib2-devel + cairo-devel + python3-six + spice-devel + polkit-devel + phodav-devel + pixman-devel + libX11-devel + libusb-devel + wayland-devel + python3-devel + elogind-devel + libopus-devel + openssl-devel + libsoup-devel + libepoxy-devel + usbredir-devel + spice-protocol + libcap-ng-devel + gstreamer-devel + json-glib-devel + libcacard-devel + cyrus-sasl-devel + gdk-pixbuf-devel + python3-pyparsing + libjpeg-turbo-devel + gst-plugins-base-devel + gobject-introspection-devel + spice-gtk + + + /usr/share/gir-1.0 + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-10 + 0.39 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + mlkstyle + http://azsky2.html.xdomain.jp/soft/mlkstyle.html + + fury + uglyside@yandex.ru + + MIT + app:gui + desktop.toolkit.mlk + mlk style editor. + mlk widget style editor. + https://gitlab.com/azelpg/mlkstyle/-/archive/v1.0.4/mlkstyle-v1.0.4.tar.bz2 + + zlib-devel + check-devel + libpng-devel + libX11-devel + libXext-devel + freetype-devel + fontconfig-devel + libXcursor-devel + + desktop/toolkit/mlk/mlkstyle/pspec.xml + + + mlkstyle + + zlib + libpng + libX11 + libXext + freetype + fontconfig + libXcursor + + + /usr/bin + /usr/share + /usr/share/doc/mlkstyle + + + + + 2021-12-11 + 1.0.4 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-25 + 1.0.3 + First build + fury + uglyside@yandex.ru + + + + + + openmotif + http://www.motifzone.org/ + + PisiLinux Community + admins@pisilinux.org + + MOTIF + library + app + desktop.toolkit.motif + Open Motif implementation + Özgür Motif kitaplığı + Freely available version of the well known Motif user interface toolkit for Open Source operating systems. + Açık kaynak kodlu işletim sistemleri için yaygın olarak tanına Motif kullanıcı arabirimi araçlarının özgürce kullanılabilen sürümü. + mirrors://sourceforge/motif/motif-2.3.8.tar.gz + + libXmu-devel + libXft-devel + xbitmaps + fontconfig-devel + libXt-devel + libXext-devel + libjpeg-turbo-devel + libX11-devel + libpng-devel + + + openmotif-2.3.2-sanitise-paths.patch + 0003_fix_ftbfs_binutils-gold.patch + openmotif-uil.patch + openmotif-unaligned.patch + openMotif-2.3.0-no_X11R6.patch + motif-2.3.4-bindings.patch + motif-2.3.4-mwmrc_dir.patch + wmluiltok_fake_lex_main.patch + + desktop/toolkit/motif/openmotif/pspec.xml + + + openmotif + + libXmu + libXft + libXp + libSM + libICE + fontconfig + libXt + libXext + libjpeg-turbo + libX11 + libpng + freetype + + + /etc + /usr/bin + /usr/lib + /usr/share/X11/app-defaults + /usr/share/X11/bindings + /usr/share/doc + /usr/share/man + + + Mwm.defaults + + + + openmotif-devel + Development files for openmotif + openmotif için geliştirme dosyaları + + openmotif + libXft-devel + libXt-devel + libXmu-devel + libXext-devel + + + /usr/include + /usr/share/man/man3 + + + + openmotif-32bit + 32-bit shared libraries for openmotif emul32 emul32 - zlib-32bit - libX11-32bit - libgcc + libSM-32bit + libXt-32bit + libXp-32bit + libXmu-32bit libpng-32bit - libglvnd-32bit + libX11-32bit + libICE-32bit libXft-32bit libXext-32bit - mesa-glu-32bit - libXfixes-32bit - libXcursor-32bit fontconfig-32bit - libXinerama-32bit libjpeg-turbo-32bit - fltk - zlib-32bit - libX11-32bit + openmotif + libSM-32bit + libXt-32bit + libXp-32bit + libXmu-32bit libpng-32bit - libglvnd-32bit + libX11-32bit + libICE-32bit libXft-32bit libXext-32bit - libXrender-32bit - mesa-glu-32bit - libXfixes-32bit - libXcursor-32bit fontconfig-32bit - libXinerama-32bit + freetype-32bit libjpeg-turbo-32bit /usr/lib32 - - fltk-devel - Development files and utilities for FLTK - FLTK için geliştirme dosyaları ve yardımcı uygulamalar + + + 2020-01-28 + 2.3.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-31 + 2.3.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 2.3.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 2.3.7 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 2.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-08-17 + 2.3.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + newt + https://fedorahosted.org/newt/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library app:console - app:gui + desktop.toolkit + A windowing toolkit for text mode + Metin tabanlı bir pencere araç seti. + newt is a windowing toolkit for text mode, which provides many widgets and stackable windows. + Newt, metin tabanlı bir pencere araç setidir. Pek çok alet ve istiflenebilir pencere sağlar. + https://releases.pagure.org/newt/newt-0.52.21.tar.gz + + tcl-devel + slang-devel + popt-devel + + desktop/toolkit/newt/pspec.xml + + + newt - fltk - libX11 - libgcc - libpng + tcl + slang + popt - /etc/env.d + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/doc /usr/share/man - /usr/bin + + + + newt-devel + Development files for newt + newt için geliştirme dosyaları + + newt + + /usr/include - /usr/share/icons - /usr/share/mimelnk - /usr/share/doc/*/html - /usr/share/applications + /usr/lib/pkgconfig - - 99fltk - - 2020-01-19 - 1.3.5 + 2020-01-28 + 0.52.21 Version bump - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2018-07-30 - 1.3.4.2 - Rebuild. + 2018-08-13 + 0.52.20 + Version Bump Pisi Linux Community admin@pisilinux.org - 2018-01-07 - 1.3.4.2 + 2018-01-31 + 0.52.20 Version Bump Pisi Linux Community admin@pisilinux.org - 2017-02-12 - 1.3.4 + 2017-01-26 + 0.52.19 Version Bump Pisi Linux Community admin@pisilinux.org 2016-06-09 - 1.3.3 + 0.52.17 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-09 - 1.3.3 + 2014-07-05 + 0.52.17 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Serdar Soytetir + kaptan@pisilinux.org - qt5-svg - http://qt.digia.com/ + qscintilla2 + https://www.riverbankcomputing.com/software/qscintilla/intro Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for displaying the contents of SVG files - SVG dosyalarının içeriğini görüntüleme için sınıflar - Classes for displaying the contents of SVG files - SVG dosyalarının içeriğini görüntüleme için sınıflar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtsvg-everywhere-opensource-src-5.15.3.tar.xz + GPLv2 + GPLv3 + library + desktop.toolkit + Qt port of Scintilla + QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. + Port do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. + QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. + QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. + QScintilla jest portem do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. + https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.11.5/QScintilla-2.11.5.tar.gz - mesa-devel - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - zlib-devel - - - qt_kde.patch - - desktop/toolkit/qt5/qt5-svg/pspec.xml - - - qt5-svg - - libgcc - qt5-base - zlib - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - qt5-svg-devel - Development files for qt5-svg - qt5-svg için geliştirme dosyaları - - qt5-base-devel - qt5-svg - - - /usr/include/qt5/ - /usr/lib/pkgconfig - - - - qt5-svg-docs - - qt5-base - - - /usr/share/doc - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-18 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 5.15.2 - Rebuild kde patch. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-06 - 5.15.2 - Rebuild kde patch. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First Release. - Ayhan yYalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-remoteobjects - https://www.qt.io - - Blue Devil - bluedevil@sctzine.com - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Inter-process communication (IPC) module developed for Qt - Qt için işlemler-arası iletişim modülü. - qt5-remoteobjects, Inter-process communication (IPC) module developed for Qt - qt5-remoteobjects, Qt için işlemler-arası iletişim modülü sağlar. - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtremoteobjects-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-sql-sqlite - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-remoteobjects/pspec.xml - - - qt5-remoteobjects - Inter-process communication (IPC) module developed for Qt - - qt5-base - qt5-assistant - qt5-declarative - - - /usr/lib - /usr/bin - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-remoteobjects-devel - Development files for qt5-remoteobjects - qt5-remoteobjects için geliştirme dosyaları - qt5-remoteobjects-devel, qt5-remoteobjects için geliştirme dosyalarını içerir. - - qt5-remoteobjects - qt5-base-devel - qt5-declarative-devel - - - /usr/include/qt5 - /usr/lib/pkgconfig - - - - qt5-remoteobjects-docs - Documentation files for qt5-remoteobjects - qt5-remoteobjects için belgelendirme dosyaları - qt5-remoteobjects-docs, qt5-remoteobjects için belgelendirme dosyalarını içerir. - - qt5-remoteobjects - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-26 - 5.14.2 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - qt5-canvas3d - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - custom - FDL - GPL3 - LGPL3 - desktop - A JavaScript 3D rendering API for Qt Quick - A JavaScript 3D rendering API for Qt Quick - https://github.com/qt/qtcanvas3d/archive/refs/tags/v5.12.12.tar.gz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-canvas3d/pspec.xml - - - qt5-canvas3d - A JavaScript 3D rendering API for Qt Quick - - qt5-base - qt5-declarative - libgcc - - - /usr/lib/qt5 - /usr/share/doc - - - - - 2022-04-18 - 5.12.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.12.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.12.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.12.7 - Rebuild qt5-5.14.2. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.12.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.12.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.12.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.12.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.12.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-21 - 5.7.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-tools - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Development Tools, QtHelp) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). - A cross-platform application and UI framework (Development Tools, QtHelp) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz - - llvm - mesa-devel - llvm-clang-devel - lld-devel - qt5-base-devel - icon-theme-hicolor - qt5-declarative-devel - - - qt_kde.patch - - desktop/toolkit/qt5/qt5-tools/pspec.xml - - - qt5-assistant - - libgcc - llvm-libs - llvm-clang - qt5-base - qt5-declarative - - - /usr/bin/qdistancefieldgenerator - /usr/bin/assistant - /usr/bin/qhelpgenerator - /usr/bin/qhelpconverter - /usr/bin/qdoc - /usr/bin/qtattributionsscanner - /usr/lib/cmake/Qt5Help - /usr/lib/libQt5Help* - /usr/lib/libQt5CLucene* - /usr/lib/qt5/mkspecs/modules/qt_lib_clucene_private.pri - /usr/lib/qt5/mkspecs/modules/qt_lib_help* - /usr/share/applications/assistant5.desktop - /usr/share/qt5/translations/assistant_tr.qm - /usr/share/icons/hicolor/128x128/apps/assistant.png - /usr/share/icons/hicolor/32x32/apps/assistant.png - /usr/share/pixmaps/assistant5.png - /usr/lib/qt5/bin/qcollectiongenerator - /usr/bin/qcollectiongenerator - /usr/lib/cmake/Qt5DocTools/Qt5DocToolsConfig.cmake - /usr/lib/cmake/Qt5DocTools/Qt5DocToolsConfigVersion.cmake - /usr/lib/cmake/Qt5AttributionsScannerTools/Qt5AttributionsScannerToolsConfig.cmake - /usr/lib/cmake/Qt5AttributionsScannerTools/Qt5AttributionsScannerToolsConfigVersion.cmake - - - assistant.desktop - assistant.png - - - - qt5-assistant-devel - - qt5-base-devel - qt5-assistant - llvm-clang-devel - - - /usr/include/qt5/QtHelp - /usr/include/qt5/QtCLucene - /usr/lib/pkgconfig/Qt5Help.pc - /usr/lib/pkgconfig/Qt5CLucene.pc - - - - qt5-designer - - libgcc - qt5-base - qt5-declarative - - - /usr/bin/designer - /usr/bin/qtdiag - /usr/bin/qtpaths* - /usr/bin/pixeltool - /usr/bin/qtplugininfo - /usr/lib/cmake/Qt5Designer - /usr/lib/cmake/Qt5UiTools - /usr/lib/cmake/Qt5UiPlugin - /usr/lib/cmake/Qt5DesignerComponents/Qt5DesignerComponentsConfig.cmake - /usr/lib/cmake/Qt5DesignerComponents/Qt5DesignerComponentsConfigVersion.cmake - /usr/lib/qt5/plugins/designer - /usr/share/applications/designer5.desktop - /usr/share/qt5/translations/designer_tr.qm - /usr/share/icons/hicolor/128x128/apps/QtProject-designer.png - /usr/share/pixmaps/designer5.png - /usr/lib/libQt5Designer* - /usr/lib/libQt5UiPlugin.prl - /usr/lib/libQt5UiTools* - /usr/lib/qt5/mkspecs/modules/qt_lib_designer* - /usr/lib/qt5/mkspecs/modules/qt_lib_uitools* - /usr/lib/qt5/mkspecs/modules/qt_lib_uiplugin.pri - - - designer.desktop - designer.png - - - - qt5-designer-devel - - qt5-base-devel - qt5-designer - - - /usr/include/qt5/QtDesigner* - /usr/include/qt5/QtUiTools - /usr/include/qt5/QtUiPlugin - /usr/lib/pkgconfig/Qt5Designer* - /usr/lib/pkgconfig/Qt5UiTools.pc - /usr/lib/pkgconfig/Qt5UiPlugin.pc - - - - qt5-linguist - - libgcc - qt5-base - - - /usr/bin/lrelease* - /usr/bin/linguist - /usr/bin/lconvert - /usr/bin/lupdate* - /usr/bin/lprodump - /usr/lib/cmake/Qt5LinguistTools - /usr/share/applications/linguist5.desktop - /usr/share/icons/hicolor/128x128/apps/linguist.png - /usr/share/icons/hicolor/16x16/apps/linguist.png - /usr/share/icons/hicolor/32x32/apps/linguist.png - /usr/share/icons/hicolor/48x48/apps/linguist.png - /usr/share/icons/hicolor/64x64/apps/linguist.png - /usr/share/pixmaps/linguist5.png - /usr/share/qt5/phrasebooks - /usr/share/qt5/translations/linguist_tr.qm - - - linguist.desktop - linguist.png - - - - qt5-qdbusviewer - - libgcc - qt5-base - - - /usr/bin/qdbusviewer - /usr/bin/qdbus - /usr/share/applications/qdbusviewer5.desktop - /usr/share/icons/hicolor/128x128/apps/qdbusviewer.png - /usr/share/icons/hicolor/32x32/apps/qdbusviewer.png - /usr/share/pixmaps/qdbusviewer5.png - - - qdbusviewer.desktop - assistant.png - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-18 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-20 - 5.15.2 - Rebuild for mesa - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.15.2 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-30 - 5.15.2 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-24 - 5.15.2 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-08 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 5.15.1 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-28 - 5.14.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-28 - 5.13.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-29 - 5.12.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-19 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-18 - 5.11.2 - Rebuild llvm - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-imageformats - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Plugins for additional image formats: TIFF, MNG, TGA, WBMP - İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP - Plugins for additional image formats: TIFF, MNG, TGA, WBMP - İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtimageformats-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - jasper-devel - libmng-devel - libjpeg-turbo-devel - zlib-devel - tiff-devel - webp-devel - - desktop/toolkit/qt5/qt5-imageformats/pspec.xml - - - qt5-imageformats - - qt5-base - libgcc - libmng - tiff - webp - jasper - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-imageformats-docs - - qt5-base - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First Release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webkit - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for a WebKit2 based implementation and a new QML API - WebKit2 tabanlı uygulama ve yeni QML API için sınıflar - Classes for a WebKit2 based implementation and a new QML API - WebKit2 tabanlı uygulama ve yeni QML API için sınıflar - https://github.com/annulen/webkit/releases/download/qtwebkit-5.212.0-alpha4/qtwebkit-5.212.0-alpha4.tar.xz - - cmake - gperf - dbus-devel - ruby-devel - webp-devel - zlib-devel - libpng-devel - libpcre-devel - libxslt-devel - libxml2-devel - libX11-devel - libXtst-devel + chrpath + python-sip + python3-sip + python-devel python3-devel - gstreamer-devel - perl-Digest-MD5 - libXrender-devel - qt5-phonon-devel - fontconfig-devel - libXcomposite-devel - libjpeg-turbo-devel - perl-Text-ParseWords - flex - bison - icu4c-devel - eudev-devel + qscintilla2-python-common mesa-devel - leveldb-devel - glib2-devel - sqlite-devel - python-devel - qt5-linguist - qt5-base-devel - qt5-sql-sqlite - qt5-qdbusviewer - qt5-sensors-devel - qt5-designer-devel - qt5-location-devel - qt5-assistant-devel - qt5-multimedia-devel - qt5-webchannel-devel - qt5-declarative-devel - gst-plugins-base-devel + qt5-base-devel + qt5-script-devel + python-qt5-devel + python3-qt5-devel + qt5-designer-devel + qt5-xmlpatterns-devel - - icu68.patch - glib-2.68.patch - 78360c01.patch - d92b11fe.patch - - desktop/toolkit/qt5/qt5-webkit/pspec.xml + desktop/toolkit/qscintilla2/pspec.xml - qt5-webkit + qscintilla2 - mesa - webp - zlib - glib2 - icu4c - libX11 libgcc - libpng - sqlite - libxml2 - libxslt - libXrender - libXcomposite - libjpeg-turbo - gstreamer - gstreamer - gst-plugins-base - gst-plugins-base - qt5-base - qt5-location - qt5-sensors - qt5-webchannel - qt5-declarative + qt5-base /usr/lib - /usr/lib/qt5/plugins/webkit - /usr/lib/qt5/ - /usr/lib/qt5/bin/ - /usr/bin + /usr/lib/qt5/plugins /usr/share/doc + /usr/share/qt5/mkspecs + /usr/share/qt5/translations - qt5-webkit-devel - qt5-webkit için geliştirme dosyaları + qscintilla2-python-common + Common python qscintilla bindings files shared between qscintilla2-python and qscintilla2-python3 - mesa-devel - webp-devel - zlib-devel - glib2-devel - icu4c-devel - libX11-devel - libpng-devel - sqlite-devel - libxml2-devel - libxslt-devel - libXrender-devel - libXcomposite-devel - libjpeg-turbo-devel - gstreamer-devel - gst-plugins-base-devel - qt5-webkit - qt5-base-devel - qt5-sensors-devel - qt5-declarative-devel + qscintilla2 - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - - 2022-04-18 - 5.212.0 - Rebuild qt5-5.15.3 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.212.0 - Rebuild qt5-5.15.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.212.0 - Rebuild qt5-5.15.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.212.0 - Rebuild qt5-5.14.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-21 - 5.212.0 - Version bump alpha4 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.212.0 - Rebuild qt5.14.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 5.212.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.212.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.212.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.212.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.212.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-02 - 5.212.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.212.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 5.212.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-04 - 5.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-02 - 5.9.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-02 - 5.9.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-26 - 5.7.1 - Release Bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-quickcontrols - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Reusable Qt Quick based UI controls to create classic desktop-style user interfaces - Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri - Reusable Qt Quick based UI controls to create classic desktop-style user interfaces - Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtquickcontrols-everywhere-opensource-src-5.15.3.tar.xz - - mesa-devel - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml - - - qt5-quickcontrols - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ + /usr/share/qt5/qsci + /usr/share/sip - qt5-quickcontrols-docs - - qt5-base - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.5.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.5.6 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.5.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-connectivity - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to Bluetooth hardware - Bluetooth donanımlarına bağlantı sağlar - Provides access to Bluetooth hardware - Bluetooth donanımlarına bağlantı sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtconnectivity-everywhere-opensource-src-5.15.3.tar.xz - - bluez-libs-devel - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-connectivity/pspec.xml - - - qt5-connectivity - - qt5-base - qt5-declarative - bluez-libs - libgcc - - - /usr/bin - /usr/lib - /usr/share/licenses - /usr/lib/qt5 - /usr/lib/qt5/bin/ - - - - qt5-connectivity-devel - qt5-connectivity için geliştirme dosyaları - - qt5-connectivity - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-connectivity-docs + qscintilla2-python + Python 2.x bindings for qscintilla2 + qscintilla2 için Python bağlayıcıları + qscintilla2 + qscintilla2-python-common qt5-base - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-virtualkeyboard - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - GPL3 - desktop.toolkit.qt5 - Qt module for general purpose serial bus access - Virtual keyboard framework - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtvirtualkeyboard-everywhere-opensource-src-5.15.3.tar.xz - - libxcb-devel - hunspell-devel - qt5-svg-devel - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-virtualkeyboard/pspec.xml - - - qt5-virtualkeyboard - Virtual keyboard framework - - qt5-svg - qt5-base - qt5-declarative - libgcc - libxcb - hunspell - - - /usr/lib - /usr/lib/qt5 - /usr/share/qt5 - /usr/share/doc + /usr/lib/python2* - qt5-virtualkeyboard-devel - Development headers for qt5-virtualkeyboard + qscintilla2-python3 + Python 3.x bindings for qscintilla2 - qt5-virtualkeyboard - - - /usr/include/qt5 - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-18 - 5.7.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-3d - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - custom - FDL - GPL3 - LGPL3 - desktop - C++ and QML APIs for easy inclusion of 3D graphics - C++ and QML APIs for easy inclusion of 3D graphics - https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qt3d-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-declarative-devel - assimp-devel - vulkan-headers - zlib-devel - - desktop/toolkit/qt5/qt5-3d/pspec.xml - - - qt5-3d - C++ and QML APIs for easy inclusion of 3D graphics - - qt5-base - qt5-declarative - libgcc - assimp - - - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - qt5-3d-devel - Development files for qt5-3d - - qt5-base-devel - qt5-declarative-devel - qt5-3d - - - /usr/include/qt5 - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-20 - 5.15.2 - Version bump 5.15.3 kde. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-21 - 5.7.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-gamepad - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - custom - FDL - GPL3 - LGPL3 - desktop - A JavaScript 3D rendering API for Qt Quick - Adds support for getting events from gamepad devices - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtgamepad-everywhere-opensource-src-5.15.3.tar.xz - - eudev-devel - libsdl2-devel - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-gamepad/pspec.xml - - - qt5-gamepad - Adds support for getting events from gamepad devices - - eudev - libgcc - libsdl2 - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share - / - - - - qt5-gamepad-devel - Development files for qt5-gamepad - - qt5-base-devel - qt5-gamepad - - - /usr/include/qt5 - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 5.9.3 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-21 - 5.7.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-multimedia - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for audio, video, radio and camera functionality - Ses, video, radyo ve kamera işlevsellikleri için sınıflar - Classes for audio, video, radio and camera functionality - Ses, video, radyo ve kamera işlevsellikleri için sınıflar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtmultimedia-everywhere-opensource-src-5.15.3.tar.xz - - icu4c-devel - openal-devel - alsa-lib-devel - gstreamer-devel - pulseaudio-libs-devel - gst-plugins-bad-devel - mesa-devel - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - gst-plugins-base-devel - - desktop/toolkit/qt5/qt5-multimedia/pspec.xml - - - qt5-multimedia - - glib2 - libgcc - openal - alsa-lib - gstreamer - gst-plugins-bad - pulseaudio-libs - mesa - qt5-base - qt5-declarative - gst-plugins-base - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-multimedia-devel - qt5-multimedia için geliştirme dosyaları - - qt5-multimedia - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-multimedia-docs - - qt5-base - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump. - PisiLinux Community - admin@pisilinux.org - - - 2016-05-08 - 5.6.0 - Release Bump. - PisiLinux Community - admin@pisilinux.org - - - 2015-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-keychain - https://github.com/frankosterfeld/qtkeychain - - Stefan Gronewold - groni@pisilinux.org - - BSD - desktop.toolkit.qt5 - Provides support for secure credentials storage - Qt5-Keychain is a Qt API to store passwords and other secret data securely. How the data is stored depends on the platform - https://github.com/frankosterfeld/qtkeychain/archive/v0.11.1.tar.gz - - extra-cmake-modules - qt5-assistant-devel - qt5-base-devel - qt5-designer-devel - qt5-linguist - - desktop/toolkit/qt5/qt5-keychain/pspec.xml - - - qt5-keychain - Provides support for secure credentials storage - - libgcc - qt5-base - - - /usr/lib - /usr/share - /usr/share/doc - - - - qt5-keychain-devel - Development support for qt5-keychain - - qt5-keychain - - - /usr/lib/cmake - /usr/include - - - - - 2022-04-18 - 0.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 0.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 0.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 0.10.0 - Rebuild qt5-5.14.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 0.10.0 - Rebuild qt5-5.14.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 0.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 0.9.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 0.9.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 0.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 0.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 0.8.0 - Rebuild for qt5.12.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 0.8.0 - Rebuild for qt5.12.0 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 0.8.0 - Rebuild for qt5.11.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 0.8.0 - Rebuild for qt5.10.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 0.8.0 - Rebuild for qt5.9.5. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-02-01 - 0.8.0 - Rebuild for qt5.9.3 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 0.7.0 - Rebuild for new Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2017-01-12 - 0.7.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-networkauth - https://www.qt.io - - PisiLinux Community - admins@pisilinux.org - - 'GPL3' 'LGPL3' 'FDL' 'custom' - app:gui - desktop.toolkit.qt5 - Network authentication module - Ağ kimlik doğrulama modülü - Ağ kimlik doğrulama modülü - Ağ kimlik doğrulama modülü - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtnetworkauth-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - - desktop/toolkit/qt5/qt5-networkauth/pspec.xml - - - qt5-networkauth - - qt5-base - - - /usr/lib - /usr/share - - - - qt5-networkauth-devel - Development files for qt5-networkauth - - qt5-networkauth - qt5-base-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-04-18 - 5.15.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - qt5-webchannel - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar - Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients - HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwebchannel-everywhere-opensource-src-5.15.3.tar.xz - - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-webchannel/pspec.xml - - - qt5-webchannel - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-webchannel-devel - qt5-webchannel için geliştirme dosyaları - - qt5-webchannel - qt5-base-devel - qt5-declarative-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-webchannel-docs - - libgcc - qt5-base - qt5-declarative - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-declarative - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for QML and JavaScript languages - QML ve JavaScript dilleri için sınıflar - Classes for QML and JavaScript languages - QML ve JavaScript dilleri için sınıflar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtdeclarative-everywhere-opensource-src-5.15.3.tar.xz - python3 - qt5-base-devel - libxkbcommon-devel - mesa-devel - qt5-sql-sqlite - - - qt_kde.patch - - desktop/toolkit/qt5/qt5-declarative/pspec.xml - - - qt5-declarative - + qscintilla2 + qscintilla2-python-common + qt5-base libgcc - qt5-base - libglvnd - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin - /usr/bin/ + /usr/lib/python3* - qt5-declarative-devel - qt5-declarative için geliştirme dosyaları + qscintilla2-doc + HTML documentation for qscintilla2 + qscintilla2 için HTML belgeleri + + /usr/share/doc/qscintilla2/Scintilla + /usr/share/doc/qscintilla2/html + + + + qscintilla2-devel + Development files for qscintilla2 + qscintilla2 için geliştirme dosyaları + Pliki nagłówkowe dla QScintilla - qt5-base-devel - qt5-declarative + qscintilla2 - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/include/qt5 + /usr/include/qt5/Qsci - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-18 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 5.15.2 - Rebuild kde patch. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-06 - 5.15.2 - Rebuild kde patch. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-11 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-04 - 5.15.2 - Rebuild kde patch. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-28 - 5.14.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-09-05 - 5.13.1 + 2020-09-14 + 2.11.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-06-21 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.12.2 + 2020-04-04 + 2.11.4 Rebuild. Mustafa Cinasal muscnsl@gmail.com + + 2020-01-20 + 2.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2019-11-04 + 2.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-22 + 2.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-08 + 2.10.8 + Rebuild qt5. + Mustafa Cinasal + muscnsl@gmail.com + + 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump + 2.10.8 + Rebuild qt5. Mustafa Cinasal muscnsl@gmail.com - 2018-09-03 - 5.10.1 + 2019-02-02 + 2.10.8 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-05-02 - 5.9.5 + 2018-12-25 + 2.10.8 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-02-01 - 5.9.3 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.2 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-charts - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - GPL3 - desktop.toolkit.qt5 - Provides a set of easy to use chart components - Provides a set of easy to use chart components - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtcharts-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-charts/pspec.xml - - - qt5-charts - Provides a set of easy to use chart components - - qt5-base - qt5-declarative - libgcc - - - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - qt5-charts-devel - Development files for qt5-charts - - qt5-base-devel - qt5-charts - - - /usr/include/qt5 - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 + 2018-10-19 + 2.10.8 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-translations - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Translations) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) - A cross-platform application and UI framework (Translations) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttranslations-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - qt5-linguist - - - qt_kde.patch - - desktop/toolkit/qt5/qt5-translations/pspec.xml - - - qt5-translations - - qt5-base - - - /usr/share/qt5 - /usr/share/licenses/ - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 5.15.2 - Rebuild kde patch. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-serialport - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides access to hardware and virtual serial ports - Donanım ve sanal seri portlara erişim sağlar - Provides access to hardware and virtual serial ports - Donanım ve sanal seri portlara erişim sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtserialport-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - eudev-devel - - desktop/toolkit/qt5/qt5-serialport/pspec.xml - - - qt5-serialport - - qt5-base - eudev - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-serialport-devel - qt5-serialport için geliştirme dosyaları - - qt5-base-devel - qt5-serialport - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-serialport-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-speech - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - custom - FDL - GPL3 - LGPL3 - desktop.toolkit.qt5 - Qt module to make text to speech and speech recognition easy - Qt module to make text to speech and speech recognition easy - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtspeech-everywhere-opensource-src-5.15.3.tar.xz - - flite-devel - qt5-base-devel - speech-dispatcher-devel - - desktop/toolkit/qt5/qt5-speech/pspec.xml - - - qt5-speech - Qt module to make text to speech and speech recognition easy - - flite - qt5-base - libgcc - speech-dispatcher - - - /usr/lib - /usr/lib/qt5 - /usr/share/doc - - - - qt5-speech-devel - Development headers for qt5-speech - - qt5-speech - - - /usr/lib/cmake - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-18 - 5.15.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-01 - 5.9.5 - Rebuild for qt5.9.3 - Stefan Gronewold - groni@pisilinux.org - - - 2018-02-01 - 5.9.3 - Rebuild for qt5.9.3 - Stefan Gronewold - groni@pisilinux.org - - - 2018-02-01 - 5.5.0 - Rebuild for qt5.9.3 - Stefan Gronewold - groni@pisilinux.org - - - 2017-02-20 - 5.5.0 - Rebuild for new Toolchain. - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-26 - 5.5.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5-doc - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A cross-platform application and UI framework (Documentation) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) - A cross-platform application and UI framework (Documentation) - Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) - assistant5 - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtdoc-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-sql-sqlite - qt5-assistant - qt5-multimedia-docs - qt5-quickcontrols-docs - qt5-quickcontrols2-docs - qt5-x11extras-docs - qt5-webchannel-docs - qt5-webkit-docs - qt5-xmlpatterns-docs - qt5-svg-docs - qt5-script-docs - qt5-sensors-docs - qt5-translations - qt5-graphicaleffects-docs - qt5-imageformats-docs - qt5-websockets-docs - qt5-serialport-docs - qt5-location-docs - qt5-connectivity-docs - - desktop/toolkit/qt5/qt5-doc/pspec.xml - - - qt5-doc - - qt5-base - qt5-script - qt5-svg - qt5-xmlpatterns - qt5-assistant - qt5-declarative - - - /usr/share/licenses - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-23 - 5.10.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-02 - 5.9.3 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-06-14 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-websockets - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides WebSocket communication compliant with RFC 6455 - RFC 6455 ile yumuşak WebSocket iletişimi sağlar - Provides WebSocket communication compliant with RFC 6455 - RFC 6455 ile yumuşak WebSocket iletişimi sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwebsockets-everywhere-opensource-src-5.15.3.tar.xz - - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-websockets/pspec.xml - - - qt5-websockets - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - - - - qt5-websockets-devel - qt5-websockets için geliştirme dosyaları - - qt5-websockets - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-websockets-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-xmlpatterns - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Support for XPath, XQuery, XSLT and XML schema validation - XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar - Support for XPath, XQuery, XSLT and XML schema validation - XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtxmlpatterns-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml - - - qt5-xmlpatterns - - qt5-base - qt5-declarative - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-xmlpatterns-devel - qt5-xmlpatterns için geliştirme dosyaları - - qt5-xmlpatterns - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-xmlpatterns-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-21 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.12.2 + 2018-08-19 + 2.10.2 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-quickcontrols2 - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Next generation user interface controls based on Qt Quick - QtQuick tabanlı gelecek nesil kullanıcı arayüz kontrolleri - Next generation user interface controls based on Qt Quick - QtQuick tabanlı gelecek nesil kullanıcı arayüz kontrolleri - https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtquickcontrols2-everywhere-opensource-src-5.15.3.tar.xz - - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-graphicaleffects - qt5-xmlpatterns-devel - qt5-declarative-devel - - - qt_kde.patch - - desktop/toolkit/qt5/qt5-quickcontrols2/pspec.xml - - - qt5-quickcontrols2 - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses/ - - - - qt5-quickcontrols2-devel - - qt5-quickcontrols2 - qt5-base-devel - qt5-declarative-devel - - - /usr/include - /usr/lib/pkgconfig - - - - qt5-quickcontrols2-docs - - qt5-base - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-18 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-15 - 5.15.2 - Git Version 5.15.3 bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-04 - 5.11.2 + 2018-03-02 + 2.10.2 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-11-05 - 5.7.1 - fix deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-09-20 - 5.7.1 - Release Bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - + 2018-02-06 + 2.10.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-04 + 2.10 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + 2016-06-09 - 5.6.0 + 2.9.1 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - 2016-04-17 - 5.6.0 + 2016-05-28 + 2.9.1 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - - - qt5-scxml - http://qt-project.org/ - - Stefan Gronewold - groni@pisilinux.org - - custom - FDL - GPL3 - LGPL3 - desktop.toolkit.qt5 - Provides a set of easy to use chart components - Provides a set of easy to use chart components - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtscxml-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-scxml/pspec.xml - - - qt5-scxml - Provides a set of easy to use chart components - - qt5-base - qt5-declarative - libgcc - - - /usr/bin - /usr/lib/qt5 - /usr/lib - /usr/share/doc - - - - qt5-scxml-devel - Development files for qt5-scxml - - qt5-scxml - qt5-base-devel - qt5-declarative-devel - - - /usr/include/qt5 - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-05 - 5.9.5 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-02-01 - 5.9.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qt5ct - https://qt5ct.sourceforge.io/ - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Qt5 Configuration Utility - Qt5 Yapılandırma Yardımcı Programı - SThis program allows users to configure Qt5 settings (theme, font, icons, etc.) under DE/WM without Qt integration. - Bu program, kullanıcıların Qt entegrasyonu olmadan DE/WM altında Qt5 ayarlarını (tema, yazı tipi, simgeler vb.) yapılandırmasına olanak tanır. - mirrors://sourceforge/qt5ct/qt5ct-1.5.tar.bz2 - - cmake - dconf-devel - qt5-linguist - qt5-svg-devel - qt5-base-devel - - desktop/toolkit/qt5/qt5ct/pspec.xml - - - qt5ct - - dconf - libgcc - qt5-svg - qt5-base - - - /usr/share/qt5ct - /usr/share/applications - /usr/lib/qt5 - /usr/share/doc - /usr/bin - - - - - 2022-05-06 - 1.5 - First release - Kamil Atlı - suvari@pisilinux.org - - - qt5-location @@ -168815,2047 +160375,408 @@ It supports email, address books, calendars, tasks, news feeds and much more. - qt5-quick1 - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. - Qt4 uyumluluğu için Qt Declarative sunar - Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices. - Qt4 uyumluluğu için Qt Declarative sunar - http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz - - mesa-devel - qt5-base-devel - qt5-script-devel - qt5-assistant-devel - qt5-sql-sqlite - qt5-declarative-devel - qt5-xmlpatterns-devel - - desktop/toolkit/qt5/qt5-quick1/pspec.xml - - - qt5-quick1 - - mesa - libgcc - qt5-base - qt5-xmlpatterns - qt5-script - qt5-declarative - qt5-xmlpatterns - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-quick1-devel - Development file for qt5-quick1 - Development file for qt5-quick1 - - qt5-base-devel - qt5-script-devel - qt5-quick1 - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - - 2017-03-19 - 5.5.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-10-22 - 5.5.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.5.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.5.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.5.1 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2015-10-16 - 5.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-graphicaleffects - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Graphical effects for use with Qt Quick 2 - Qt Quick2 ile kullanım için grafiksel efektler - Graphical effects for use with Qt Quick 2 - Qt Quick2 ile kullanım için grafiksel efektler - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtgraphicaleffects-everywhere-opensource-src-5.15.3.tar.xz - - qt5-sql-sqlite - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml - - - qt5-graphicaleffects - - qt5-base - qt5-declarative - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - - - - qt5-graphicaleffects-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-webengine - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides support for web applications using the Chromium browser project - Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar - Provides support for web applications using the Chromium browser project - Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar - https://invent.kde.org/qt/qt/qtwebengine/-/archive/v5.15.9-lts/qtwebengine-v5.15.9-lts.tar.bz2 - https://sourceforge.net/projects/pisilinux/files/source/qtwebengine-chromium-87-20220314.tar.xz/download - - qtwebengine-5.15.7-build_fixes-1.patch - qtwebengine-everywhere-src-5.15.5-TRUE.patch - - - qt5-base-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-location-devel - qt5-sensors-devel - qt5-webchannel-devel - qt5-designer-devel - bison - wget - nodejs - re2-devel - re2c - ninja - gperf - snappy-devel - gobject-introspection-devel - expat-devel - glib2-devel - fontconfig-devel - freetype-devel - mesa-devel - eudev-devel - libpng-devel - webp-devel - harfbuzz-devel - json-c-devel - protobuf-devel - libdrm-devel - libopus-devel - libevent-devel - zlib-devel - libxml2-devel - libxslt-devel - libX11-devel - libXi-devel - libXcursor-devel - libXext-devel - libXfixes-devel - libXrender-devel - libXdamage-devel - libXcomposite-devel - libXtst-devel - libXrandr-devel - libXScrnSaver-devel - libcap-devel - pulseaudio-libs-devel - alsa-lib-devel - pciutils-devel - dbus-devel - nss-devel - perl - python-devel - python3-devel - libvpx-devel - libjpeg-turbo-devel - x264-devel - minizip-devel - icu4c-devel - ffmpeg-devel - git - lcms2-devel - jsoncpp-devel - poppler-cpp-devel - python-Jinja2 - libxkbcommon-devel - libxkbfile-devel - pipewire-0.2-devel - mit-kerberos-devel - - desktop/toolkit/qt5/qt5-webengine/pspec.xml - - - qt5-webengine - - re2 - nss - dbus - nspr - webp - expat - icu4c - lcms2 - ffmpeg - libxcb - glib2 - libX11 - libgcc - libpng - snappy - freetype - libXi - libXext - libXtst - libxslt - libopus - libxml2 - libvpx - qt5-base - alsa-lib - harfbuzz - libevent - libXfixes - libXrandr - fontconfig - libXcursor - libXScrnSaver - libXdamage - libXrender - qt5-location - libXcomposite - libjpeg-turbo - qt5-webchannel - qt5-declarative - zlib - minizip - protobuf - pulseaudio-libs - libxkbcommon - libxkbfile - pipewire-0.2 - - - /usr/lib/qt5/bin/ - /usr/bin - /usr/lib/libQt5Pdf* - /usr/lib/libQt5WebEngine* - /usr/lib/libQt5WebEngineWidgets* - /usr/lib/qt5 - /usr/share/qt5 - /usr/share/qt5/translations - - - - qt5-webengine-devel - - qt5-webengine - qt5-base-devel - qt5-declarative-devel - qt5-location-devel - qt5-webchannel-devel - - - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/include/qt5 - - - - qt5-webengine-docs - - qt5-base - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-01 - 5.15.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 5.15.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-27 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-01 - 5.15.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-30 - 5.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-04 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-26 - 5.13.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-22 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 5.9.3 - Release bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-03-01 - 5.9.3 - Release bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 5.7.1 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-27 - 5.6.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-15 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-x11extras - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides platform-specific APIs for X11 - X11 için platforma özgü API'ler sağlar - Provides platform-specific APIs for X11 - X11 için platforma özgü API'ler sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtx11extras-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - mesa-devel - - desktop/toolkit/qt5/qt5-x11extras/pspec.xml - - - qt5-x11extras - - qt5-base - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-x11extras-devel - qt5-x11extras için geliştirme dosyaları - - qt5-x11extras - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - qt5-x11extras-docs - - qt5-x11extras - qt5-base - - - /usr/share/doc/qt5/ - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-21 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-15 - 5.6.0 - Release Bump for gst - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-wayland - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Provides APIs for Wayland - Wayland için API'ler sağlar - Provides APIs for Wayland - Wayland için API'ler sağlar - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwayland-everywhere-opensource-src-5.15.3.tar.xz - - libgcc - libX11-devel - wayland-client - wayland-cursor - fontconfig-devel - libXrender-devel - libxkbcommon-devel - libXcomposite-devel - libxkbcommon-devel - vulkan-headers - eudev-devel - mesa-devel - glib2-devel - freetype-devel - qt5-base-devel - qt5-declarative-devel - - - qt_kde.patch - - desktop/toolkit/qt5/qt5-wayland/pspec.xml - - - qt5-wayland - - libX11 - libgcc - fontconfig - libXrender - libxkbcommon - libXcomposite - wayland-client - wayland-cursor - wayland-server - mesa - glib2 - freetype - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/lib/qt5/bin - /usr/bin - - - - qt5-wayland-devel - qt5-wayland için geliştirme dosyaları - - qt5-wayland - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include - - - - qt5-wayland-docs - - qt5-base - - - /usr/share/doc - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-18 - 5.15.2 - Rebuild kde patch - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 5.15.2 - Rebuild kde patch - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-06 - 5.15.2 - Rebuild kde patch - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-11 - 5.15.2 - Rebuild kde patch - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-10 - 5.15.2 - Rebuild kde patch - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-14 - 5.15.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 5.13.1 - Rebuild libxkbcommon. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-02 - 5.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-20 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-29 - 5.6.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-06-03 - 5.4.2 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-05-09 - 5.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-gstreamer + polkit-qt http://www.kde.org - Pisi Linux Admins - admin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - LGPLv2 - app:library + GPL2 + app:gui desktop.toolkit.qt5 - Qt5 bindings for GStreamer - QtGStreamer is a set of libraries providing C++ bindings for GStreamer with a Qt-style API, plus some helper classes and elements for integrating GStreamer better in Qt applications.The goal of this module is to allow easy use of GStreamer for applications targetting MeeGo Mobile or the KDE desktop. - http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz + A library that allows developers to access PolicyKit API with a nice Qt-style API + A library that allows developers to access PolicyKit API with a nice Qt-style API + https://download.kde.org/stable/polkit-qt-1/polkit-qt-1-0.114.0.tar.xz - cmake - doxygen - python3 - boost-devel - gstreamer-devel - gobject-introspection-devel - mesa-devel + qt5-base-devel glib2-devel - qt5-base-devel - gst-plugins-base-devel - qt5-declarative-devel - qt5-quickcontrols2-devel + polkit-devel + mesa-devel + cmake - - qt-gstreamer-1.6.patch - 0001-Fix-build-with-GStreamer-1.16.0.patch - qt-gstreamer-1.18.patch - - desktop/toolkit/qt5/qt5-gstreamer/pspec.xml + desktop/toolkit/qt5/polkit-qt/pspec.xml - qt5-gstreamer + polkit-qt - libgcc - gstreamer - libglvnd + qt5-base glib2 - qt5-base - qt5-declarative - gst-plugins-base + polkit + libgcc - /usr/bin - /usr/lib/qt5 - /usr/lib /usr/share/doc + /usr/lib - qt5-gstreamer-devel - Development files for qt5-gstreamer + polkit-qt-devel - glib2-devel - gstreamer-devel - qt5-gstreamer - qt5-base-devel - qt5-declarative-devel - gst-plugins-base-devel + polkit-qt + qt5-base-devel + glib2-devel + polkit-devel - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/include/polkit-qt5-1 2022-04-18 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-12 - 1.2.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 0.114.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2021-08-02 + 0.114.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2020-12-14 - 1.2.0 - Rebuild qt5-5.15.2 - Pisi Linux Community - admin@pisilinux.org + 0.113 + Rebuild for qt5.15.2 + Mustafa Cinasal + muscnsl@gmail.com 2020-09-09 - 1.2.0 - Rebuild qt5-5.15.1 - Pisi Linux Community - admin@pisilinux.org + 0.113 + Rebuild for qt5.15.1 + Mustafa Cinasal + muscnsl@gmail.com 2020-04-04 - 1.2.0 - Rebuild qt5-5.14.2 - Pisi Linux Community - admin@pisilinux.org + 0.113 + Rebuild for qt5.14.2 + Mustafa Cinasal + muscnsl@gmail.com 2020-02-27 - 1.2.0 - Rebuild qt5-5.14.1 - Pisi Linux Community - admin@pisilinux.org - - - 2019-12-22 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-11-02 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-09-05 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-06-20 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-03-14 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-02-01 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-05 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-10-15 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-04 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-01 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-01 - 1.2.0 - Rebuild for qt5.9.3 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-19 - 1.2.0 - Rebuild for new Toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-10-22 - 1.2.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.2.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-03 - 1.2.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-21 - 1.2.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - qt5-enginio - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - A Backend-as-a-Service solution to ease the backend development for connected and data-driven application - Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü - A Backend-as-a-Service solution to ease the backend development for connected and data-driven application - Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü - https://github.com/qt/qtenginio/archive/v5.6.3.tar.gz - - libgcc - qt5-base-devel - qt5-declarative-devel - qt5-assistant-devel - qt5-sql-sqlite - - - qtenginio-1.6.3-Qt-5.14.patch - - desktop/toolkit/qt5/qt5-enginio/pspec.xml - - - qt5-enginio - - libgcc - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5/ - /usr/share/licenses - /usr/lib/qt5/bin/ - /usr/bin/ - - - - qt5-enginio-devel - qt5-enginio için geliştirme dosyaları - - qt5-base-devel - qt5-enginio - - - /usr/lib/pkgconfig - /usr/include/qt5/ - - - - qt5-enginio-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2020-02-27 - 5.6.3 + 0.113 Rebuild for qt5.14.1 Mustafa Cinasal muscnsl@gmail.com - - 2019-12-22 - 5.6.3 + + 2020-02-16 + 0.113 Rebuild for qt5.14.0 Mustafa Cinasal muscnsl@gmail.com - + 2019-11-02 - 5.6.3 + 0.113 Rebuild for qt5.13.2 Mustafa Cinasal muscnsl@gmail.com - + 2019-09-05 - 5.6.3 + 0.113 Rebuild for qt5.13.1 Mustafa Cinasal muscnsl@gmail.com + + 2019-06-20 + 0.113 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + 2019-06-20 - 5.6.3 + 0.112 Rebuild for qt5.13.0 Mustafa Cinasal muscnsl@gmail.com 2019-03-14 - 5.6.3 + 0.112 Rebuild for qt5.12.2 Mustafa Cinasal muscnsl@gmail.com 2019-02-01 - 5.6.3 + 0.112 Rebuild for qt5.12.1 Mustafa Cinasal muscnsl@gmail.com 2018-12-05 - 5.6.3 + 0.112 Rebuild for qt5.12.0 Mustafa Cinasal muscnsl@gmail.com - 2018-10-15 - 5.6.3 - Rebuild for qt5.10.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.6.3 - Rebuild for qt5.10.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-01 - 5.6.3 - Rebuild for new Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-22 - 5.6.3 - Rebuild for new Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-20 - 5.6.2 - Rebuild for new Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-17 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-script - http://qt.digia.com/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility - Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar - Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility - Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar. - https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtscript-everywhere-opensource-src-5.15.3.tar.xz - - qt5-base-devel - qt5-assistant-devel - qt5-sql-sqlite - mesa-devel - libgcc - - desktop/toolkit/qt5/qt5-script/pspec.xml - - - qt5-script - - qt5-base - libgcc - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - - - - qt5-script-devel - qt5-script için geliştirme dosyaları - - qt5-base-devel - qt5-script - - - /usr/lib/pkgconfig - /usr/include/qt5 - - - - qt5-script-docs - - qt5-base - - - /usr/share/doc/qt5 - - - - - 2022-04-18 - 5.15.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-15 - 5.15.2 - Version bump 5.15.7. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 5.15.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-28 - 5.13.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 5.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 5.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 5.11.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 5.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 5.9.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 5.9.3 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-04-22 - 5.7.1 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-10-22 - 5.6.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-05-01 - 5.6.0 - Release Bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qt5-configuration - https://github.com/hawaii-desktop/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2.1-linking-exception - desktop.toolkit.qt5 - Settings API with change notifications for Qt - Settings API with change notifications for Qt - Settings API with change notifications for Qt - Settings API with change notifications for Qt - https://github.com/hawaii-desktop/qtconfiguration/archive/v0.3.1.tar.gz - - cmake - dconf-devel - glib2-devel - qt5-declarative-devel - qt5-base-devel - - desktop/toolkit/qt5/qt5-configuration/pspec.xml - - - qt5-configuration - - dconf - libgcc - glib2 - qt5-base - qt5-declarative - - - /usr/lib - /usr/lib/qt5 - /usr/share/licenses - /usr/share/doc - /usr/lib/qt5/bin/ - /usr/bin - - - - qt5-configuration-devel - - qt5-configuration - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-03-18 - 0.3.1 - Rebuild qt5-5.15.3 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-14 - 0.3.1 - Rebuild qt5-5.15.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 0.3.1 - Rebuild qt5-5.15.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 0.3.1 - Rebuild qt5-5.14.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 0.3.1 - Rebuild qt5-5.14.1 - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-22 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-02 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-05 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-05 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-02 - 0.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-15 - 0.3.1 + 2018-10-05 + 0.112 Rebuild for qt5.11.2 Mustafa Cinasal muscnsl@gmail.com 2018-09-03 - 0.3.1 + 0.112 Rebuild for qt5.10.1 Mustafa Cinasal muscnsl@gmail.com 2018-05-01 - 0.3.1 - Rebuild for qt5.9.3 + 0.112 + Rebuild for qt5.9.5 Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org 2018-02-01 - 0.3.1 + 0.112 Rebuild for qt5.9.3 Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org 2017-02-20 - 0.3.1 + 0.112 Rebuild for new Toolchain Pisi Linux Community admin@pisilinux.org - 2016-10-22 - 0.3.1 + 2016-10-21 + 0.112 Version Bump Pisi Linux Community admin@pisilinux.org 2016-06-09 - 0.3.1 + 0.112 Release Bump Pisi Linux Community admin@pisilinux.org 2016-05-16 - 0.3.1 + 0.112 Release Bump PisiLinux Community admin@pisilinux.org 2016-05-01 - 0.3.1 + 0.112 Release Bump PisiLinux Community admin@pisilinux.org 2016-04-17 - 0.3.1 + 0.112 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org + + + qt5-3d + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + custom + FDL + GPL3 + LGPL3 + desktop + C++ and QML APIs for easy inclusion of 3D graphics + C++ and QML APIs for easy inclusion of 3D graphics + https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qt3d-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-declarative-devel + assimp-devel + vulkan-headers + zlib-devel + + desktop/toolkit/qt5/qt5-3d/pspec.xml + + + qt5-3d + C++ and QML APIs for easy inclusion of 3D graphics + + qt5-base + qt5-declarative + libgcc + assimp + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + qt5-3d-devel + Development files for qt5-3d + + qt5-base-devel + qt5-declarative-devel + qt5-3d + + + /usr/include/qt5 + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-20 + 5.15.2 + Version bump 5.15.3 kde. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-21 + 5.7.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + qt5-accountsservice @@ -171570,6 +161491,4032 @@ It supports email, address books, calendars, tasks, news feeds and much more. + + + qt5-canvas3d + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + custom + FDL + GPL3 + LGPL3 + desktop + A JavaScript 3D rendering API for Qt Quick + A JavaScript 3D rendering API for Qt Quick + https://github.com/qt/qtcanvas3d/archive/refs/tags/v5.12.12.tar.gz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-canvas3d/pspec.xml + + + qt5-canvas3d + A JavaScript 3D rendering API for Qt Quick + + qt5-base + qt5-declarative + libgcc + + + /usr/lib/qt5 + /usr/share/doc + + + + + 2022-04-18 + 5.12.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.12.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.12.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.12.7 + Rebuild qt5-5.14.2. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.12.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.12.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.12.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.12.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.12.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-21 + 5.7.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qt5-charts + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPL3 + desktop.toolkit.qt5 + Provides a set of easy to use chart components + Provides a set of easy to use chart components + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtcharts-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-charts/pspec.xml + + + qt5-charts + Provides a set of easy to use chart components + + qt5-base + qt5-declarative + libgcc + + + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + qt5-charts-devel + Development files for qt5-charts + + qt5-base-devel + qt5-charts + + + /usr/include/qt5 + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qt5-configuration + https://github.com/hawaii-desktop/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Settings API with change notifications for Qt + Settings API with change notifications for Qt + Settings API with change notifications for Qt + Settings API with change notifications for Qt + https://github.com/hawaii-desktop/qtconfiguration/archive/v0.3.1.tar.gz + + cmake + dconf-devel + glib2-devel + qt5-declarative-devel + qt5-base-devel + + desktop/toolkit/qt5/qt5-configuration/pspec.xml + + + qt5-configuration + + dconf + libgcc + glib2 + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-configuration-devel + + qt5-configuration + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-03-18 + 0.3.1 + Rebuild qt5-5.15.3 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 0.3.1 + Rebuild qt5-5.15.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 0.3.1 + Rebuild qt5-5.15.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 0.3.1 + Rebuild qt5-5.14.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 0.3.1 + Rebuild qt5-5.14.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-02 + 0.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 0.3.1 + Rebuild for qt5.11.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 0.3.1 + Rebuild for qt5.10.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-01 + 0.3.1 + Rebuild for qt5.9.3 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-02-01 + 0.3.1 + Rebuild for qt5.9.3 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 0.3.1 + Rebuild for new Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-10-22 + 0.3.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.3.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 0.3.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 0.3.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-connectivity + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to Bluetooth hardware + Bluetooth donanımlarına bağlantı sağlar + Provides access to Bluetooth hardware + Bluetooth donanımlarına bağlantı sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtconnectivity-everywhere-opensource-src-5.15.3.tar.xz + + bluez-libs-devel + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-connectivity/pspec.xml + + + qt5-connectivity + + qt5-base + qt5-declarative + bluez-libs + libgcc + + + /usr/bin + /usr/lib + /usr/share/licenses + /usr/lib/qt5 + /usr/lib/qt5/bin/ + + + + qt5-connectivity-devel + qt5-connectivity için geliştirme dosyaları + + qt5-connectivity + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-connectivity-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-datavis3d + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPL3 + desktop + Provides a set of easy to use chart components + Qt Data Visualization module + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtdatavis3d-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-datavis3d/pspec.xml + + + qt5-datavis3d + Qt Data Visualization module + + qt5-base + qt5-declarative + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/doc + + + + qt5-datavis3d-devel + Development files for qt5-datavis3d + + qt5-base-devel + qt5-declarative-devel + qt5-datavis3d + + + /usr/include/qt5 + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version Bump + Ayhan Yalçınsoy + ayhyanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qt5-declarative + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for QML and JavaScript languages + QML ve JavaScript dilleri için sınıflar + Classes for QML and JavaScript languages + QML ve JavaScript dilleri için sınıflar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtdeclarative-everywhere-opensource-src-5.15.3.tar.xz + + python3 + qt5-base-devel + libxkbcommon-devel + mesa-devel + qt5-sql-sqlite + + + qt_kde.patch + + desktop/toolkit/qt5/qt5-declarative/pspec.xml + + + qt5-declarative + + libgcc + qt5-base + libglvnd + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin + /usr/bin/ + + + + qt5-declarative-devel + qt5-declarative için geliştirme dosyaları + + qt5-base-devel + qt5-declarative + + + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/include/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-18 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 5.15.2 + Rebuild kde patch. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-06 + 5.15.2 + Rebuild kde patch. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-11 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-04 + 5.15.2 + Rebuild kde patch. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-28 + 5.14.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-21 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.12.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.2 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-doc + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Documentation) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) + A cross-platform application and UI framework (Documentation) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Belgelendirme) + assistant5 + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtdoc-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-sql-sqlite + qt5-assistant + qt5-multimedia-docs + qt5-quickcontrols-docs + qt5-quickcontrols2-docs + qt5-x11extras-docs + qt5-webchannel-docs + qt5-webkit-docs + qt5-xmlpatterns-docs + qt5-svg-docs + qt5-script-docs + qt5-sensors-docs + qt5-translations + qt5-graphicaleffects-docs + qt5-imageformats-docs + qt5-websockets-docs + qt5-serialport-docs + qt5-location-docs + qt5-connectivity-docs + + desktop/toolkit/qt5/qt5-doc/pspec.xml + + + qt5-doc + + qt5-base + qt5-script + qt5-svg + qt5-xmlpatterns + qt5-assistant + qt5-declarative + + + /usr/share/licenses + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-23 + 5.10.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-02 + 5.9.3 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-06-14 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-enginio + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A Backend-as-a-Service solution to ease the backend development for connected and data-driven application + Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü + A Backend-as-a-Service solution to ease the backend development for connected and data-driven application + Bağlı ve veritabanlı uygulamlar için arka uç geliştirmeyi kolaylaştıran bir sevice çözümü + https://github.com/qt/qtenginio/archive/v5.6.3.tar.gz + + libgcc + qt5-base-devel + qt5-declarative-devel + qt5-assistant-devel + qt5-sql-sqlite + + + qtenginio-1.6.3-Qt-5.14.patch + + desktop/toolkit/qt5/qt5-enginio/pspec.xml + + + qt5-enginio + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5/ + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin/ + + + + qt5-enginio-devel + qt5-enginio için geliştirme dosyaları + + qt5-base-devel + qt5-enginio + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + qt5-enginio-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2020-02-27 + 5.6.3 + Rebuild for qt5.14.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.6.3 + Rebuild for qt5.14.0 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.6.3 + Rebuild for qt5.13.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.6.3 + Rebuild for qt5.13.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.6.3 + Rebuild for qt5.13.0 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.6.3 + Rebuild for qt5.12.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.6.3 + Rebuild for qt5.12.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.6.3 + Rebuild for qt5.12.0 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.6.3 + Rebuild for qt5.10.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.6.3 + Rebuild for qt5.10.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-01 + 5.6.3 + Rebuild for new Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-22 + 5.6.3 + Rebuild for new Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-20 + 5.6.2 + Rebuild for new Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-gamepad + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + custom + FDL + GPL3 + LGPL3 + desktop + A JavaScript 3D rendering API for Qt Quick + Adds support for getting events from gamepad devices + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtgamepad-everywhere-opensource-src-5.15.3.tar.xz + + eudev-devel + libsdl2-devel + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-gamepad/pspec.xml + + + qt5-gamepad + Adds support for getting events from gamepad devices + + eudev + libgcc + libsdl2 + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share + / + + + + qt5-gamepad-devel + Development files for qt5-gamepad + + qt5-base-devel + qt5-gamepad + + + /usr/include/qt5 + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 5.9.3 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-21 + 5.7.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qt5-graphicaleffects + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Graphical effects for use with Qt Quick 2 + Qt Quick2 ile kullanım için grafiksel efektler + Graphical effects for use with Qt Quick 2 + Qt Quick2 ile kullanım için grafiksel efektler + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtgraphicaleffects-everywhere-opensource-src-5.15.3.tar.xz + + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-graphicaleffects/pspec.xml + + + qt5-graphicaleffects + + qt5-base + qt5-declarative + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/share/doc + + + + qt5-graphicaleffects-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-gstreamer + http://www.kde.org + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2 + app:library + desktop.toolkit.qt5 + Qt5 bindings for GStreamer + QtGStreamer is a set of libraries providing C++ bindings for GStreamer with a Qt-style API, plus some helper classes and elements for integrating GStreamer better in Qt applications.The goal of this module is to allow easy use of GStreamer for applications targetting MeeGo Mobile or the KDE desktop. + http://gstreamer.freedesktop.org/src/qt-gstreamer/qt-gstreamer-1.2.0.tar.xz + + cmake + doxygen + python3 + boost-devel + gstreamer-devel + gobject-introspection-devel + mesa-devel + glib2-devel + qt5-base-devel + gst-plugins-base-devel + qt5-declarative-devel + qt5-quickcontrols2-devel + + + qt-gstreamer-1.6.patch + 0001-Fix-build-with-GStreamer-1.16.0.patch + qt-gstreamer-1.18.patch + + desktop/toolkit/qt5/qt5-gstreamer/pspec.xml + + + qt5-gstreamer + + libgcc + gstreamer + libglvnd + glib2 + qt5-base + qt5-declarative + gst-plugins-base + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + qt5-gstreamer-devel + Development files for qt5-gstreamer + + glib2-devel + gstreamer-devel + qt5-gstreamer + qt5-base-devel + qt5-declarative-devel + gst-plugins-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-12 + 1.2.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-12-14 + 1.2.0 + Rebuild qt5-5.15.2 + Pisi Linux Community + admin@pisilinux.org + + + 2020-09-09 + 1.2.0 + Rebuild qt5-5.15.1 + Pisi Linux Community + admin@pisilinux.org + + + 2020-04-04 + 1.2.0 + Rebuild qt5-5.14.2 + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-27 + 1.2.0 + Rebuild qt5-5.14.1 + Pisi Linux Community + admin@pisilinux.org + + + 2019-12-22 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-11-02 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-09-05 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-06-20 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-03-14 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-02-01 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-05 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-10-15 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-04 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-01 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-01 + 1.2.0 + Rebuild for qt5.9.3 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-19 + 1.2.0 + Rebuild for new Toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-10-22 + 1.2.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-03 + 1.2.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-03 + 1.2.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-21 + 1.2.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + qt5-imageformats + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Plugins for additional image formats: TIFF, MNG, TGA, WBMP + İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP + Plugins for additional image formats: TIFF, MNG, TGA, WBMP + İlave resim biçimleri için eklentiler: TIFF, MNG, TGA, WBMP + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtimageformats-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + jasper-devel + libmng-devel + libjpeg-turbo-devel + zlib-devel + tiff-devel + webp-devel + + desktop/toolkit/qt5/qt5-imageformats/pspec.xml + + + qt5-imageformats + + qt5-base + libgcc + libmng + tiff + webp + jasper + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-imageformats-docs + + qt5-base + + + /usr/share/doc + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First Release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-keychain + https://github.com/frankosterfeld/qtkeychain + + Stefan Gronewold + groni@pisilinux.org + + BSD + desktop.toolkit.qt5 + Provides support for secure credentials storage + Qt5-Keychain is a Qt API to store passwords and other secret data securely. How the data is stored depends on the platform + https://github.com/frankosterfeld/qtkeychain/archive/v0.11.1.tar.gz + + extra-cmake-modules + qt5-assistant-devel + qt5-base-devel + qt5-designer-devel + qt5-linguist + + desktop/toolkit/qt5/qt5-keychain/pspec.xml + + + qt5-keychain + Provides support for secure credentials storage + + libgcc + qt5-base + + + /usr/lib + /usr/share + /usr/share/doc + + + + qt5-keychain-devel + Development support for qt5-keychain + + qt5-keychain + + + /usr/lib/cmake + /usr/include + + + + + 2022-04-18 + 0.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 0.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 0.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 0.10.0 + Rebuild qt5-5.14.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 0.10.0 + Rebuild qt5-5.14.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 0.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 0.9.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 0.9.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 0.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 0.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 0.8.0 + Rebuild for qt5.12.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 0.8.0 + Rebuild for qt5.12.0 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 0.8.0 + Rebuild for qt5.11.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 0.8.0 + Rebuild for qt5.10.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 0.8.0 + Rebuild for qt5.9.5. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-02-01 + 0.8.0 + Rebuild for qt5.9.3 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 0.7.0 + Rebuild for new Toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2017-01-12 + 0.7.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qt5-multimedia + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for audio, video, radio and camera functionality + Ses, video, radyo ve kamera işlevsellikleri için sınıflar + Classes for audio, video, radio and camera functionality + Ses, video, radyo ve kamera işlevsellikleri için sınıflar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtmultimedia-everywhere-opensource-src-5.15.3.tar.xz + + icu4c-devel + openal-devel + alsa-lib-devel + gstreamer-devel + pulseaudio-libs-devel + gst-plugins-bad-devel + mesa-devel + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + gst-plugins-base-devel + + desktop/toolkit/qt5/qt5-multimedia/pspec.xml + + + qt5-multimedia + + glib2 + libgcc + openal + alsa-lib + gstreamer + gst-plugins-bad + pulseaudio-libs + mesa + qt5-base + qt5-declarative + gst-plugins-base + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-multimedia-devel + qt5-multimedia için geliştirme dosyaları + + qt5-multimedia + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-multimedia-docs + + qt5-base + + + /usr/share/doc + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump. + PisiLinux Community + admin@pisilinux.org + + + 2016-05-08 + 5.6.0 + Release Bump. + PisiLinux Community + admin@pisilinux.org + + + 2015-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-networkauth + https://www.qt.io + + PisiLinux Community + admins@pisilinux.org + + 'GPL3' 'LGPL3' 'FDL' 'custom' + app:gui + desktop.toolkit.qt5 + Network authentication module + Ağ kimlik doğrulama modülü + Ağ kimlik doğrulama modülü + Ağ kimlik doğrulama modülü + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtnetworkauth-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + + desktop/toolkit/qt5/qt5-networkauth/pspec.xml + + + qt5-networkauth + + qt5-base + + + /usr/lib + /usr/share + + + + qt5-networkauth-devel + Development files for qt5-networkauth + + qt5-networkauth + qt5-base-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qt5-quick1 + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. + Qt4 uyumluluğu için Qt Declarative sunar + Qt Quick is a free software application framework developed and maintained by the Qt Project within the Qt framework. It provides a way of building custom, highly dynamic user interfaces with fluid transitions and effects, which are becoming more common especially in mobile devices. + Qt4 uyumluluğu için Qt Declarative sunar + http://download.qt.io/official_releases/qt/5.5/5.5.1/submodules/qtquick1-opensource-src-5.5.1.tar.xz + + mesa-devel + qt5-base-devel + qt5-script-devel + qt5-assistant-devel + qt5-sql-sqlite + qt5-declarative-devel + qt5-xmlpatterns-devel + + desktop/toolkit/qt5/qt5-quick1/pspec.xml + + + qt5-quick1 + + mesa + libgcc + qt5-base + qt5-xmlpatterns + qt5-script + qt5-declarative + qt5-xmlpatterns + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-quick1-devel + Development file for qt5-quick1 + Development file for qt5-quick1 + + qt5-base-devel + qt5-script-devel + qt5-quick1 + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + + 2017-03-19 + 5.5.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-10-22 + 5.5.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.5.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.5.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.5.1 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2015-10-16 + 5.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-quickcontrols + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Reusable Qt Quick based UI controls to create classic desktop-style user interfaces + Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri + Reusable Qt Quick based UI controls to create classic desktop-style user interfaces + Klasik masaüstü biçimli kullanıcı arayüzleri oluşturmak için yeniden kullanılabilir Qt Quick tabanlı UI kontrolleri + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtquickcontrols-everywhere-opensource-src-5.15.3.tar.xz + + mesa-devel + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-quickcontrols/pspec.xml + + + qt5-quickcontrols + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + qt5-quickcontrols-docs + + qt5-base + + + /usr/share/doc + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.5.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.5.6 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.5.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-quickcontrols2 + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Next generation user interface controls based on Qt Quick + QtQuick tabanlı gelecek nesil kullanıcı arayüz kontrolleri + Next generation user interface controls based on Qt Quick + QtQuick tabanlı gelecek nesil kullanıcı arayüz kontrolleri + https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtquickcontrols2-everywhere-opensource-src-5.15.3.tar.xz + + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-graphicaleffects + qt5-xmlpatterns-devel + qt5-declarative-devel + + + qt_kde.patch + + desktop/toolkit/qt5/qt5-quickcontrols2/pspec.xml + + + qt5-quickcontrols2 + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + qt5-quickcontrols2-devel + + qt5-quickcontrols2 + qt5-base-devel + qt5-declarative-devel + + + /usr/include + /usr/lib/pkgconfig + + + + qt5-quickcontrols2-docs + + qt5-base + + + /usr/share/doc + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-18 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-15 + 5.15.2 + Git Version 5.15.3 bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-04 + 5.11.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-11-05 + 5.7.1 + fix deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-09-20 + 5.7.1 + Release Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-remoteobjects + https://www.qt.io + + Blue Devil + bluedevil@sctzine.com + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Inter-process communication (IPC) module developed for Qt + Qt için işlemler-arası iletişim modülü. + qt5-remoteobjects, Inter-process communication (IPC) module developed for Qt + qt5-remoteobjects, Qt için işlemler-arası iletişim modülü sağlar. + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtremoteobjects-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-sql-sqlite + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-remoteobjects/pspec.xml + + + qt5-remoteobjects + Inter-process communication (IPC) module developed for Qt + + qt5-base + qt5-assistant + qt5-declarative + + + /usr/lib + /usr/bin + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-remoteobjects-devel + Development files for qt5-remoteobjects + qt5-remoteobjects için geliştirme dosyaları + qt5-remoteobjects-devel, qt5-remoteobjects için geliştirme dosyalarını içerir. + + qt5-remoteobjects + qt5-base-devel + qt5-declarative-devel + + + /usr/include/qt5 + /usr/lib/pkgconfig + + + + qt5-remoteobjects-docs + Documentation files for qt5-remoteobjects + qt5-remoteobjects için belgelendirme dosyaları + qt5-remoteobjects-docs, qt5-remoteobjects için belgelendirme dosyalarını içerir. + + qt5-remoteobjects + + + /usr/share/doc + + + + + 2022-04-18 + 5.15.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-26 + 5.14.2 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + qt5-script + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility + Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar + Classes for making Qt applications scriptable. Provided for Qt 5.x compatibility + Çalıştırılabilir Qt uygulamaları oluşturmak için sınıflar. Qt 4.x için uyumluluk sağlar. + https://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtscript-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + mesa-devel + libgcc + + desktop/toolkit/qt5/qt5-script/pspec.xml + + + qt5-script + + qt5-base + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-script-devel + qt5-script için geliştirme dosyaları + + qt5-base-devel + qt5-script + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-script-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-15 + 5.15.2 + Version bump 5.15.7. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-28 + 5.13.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-04-22 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-scxml + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + custom + FDL + GPL3 + LGPL3 + desktop.toolkit.qt5 + Provides a set of easy to use chart components + Provides a set of easy to use chart components + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtscxml-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-scxml/pspec.xml + + + qt5-scxml + Provides a set of easy to use chart components + + qt5-base + qt5-declarative + libgcc + + + /usr/bin + /usr/lib/qt5 + /usr/lib + /usr/share/doc + + + + qt5-scxml-devel + Development files for qt5-scxml + + qt5-scxml + qt5-base-devel + qt5-declarative-devel + + + /usr/include/qt5 + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-05 + 5.9.5 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-02-01 + 5.9.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + qt5-sensors @@ -171959,30 +165906,249 @@ It supports email, address books, calendars, tasks, news feeds and much more. - qt5-datavis3d + qt5-serialport + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to hardware and virtual serial ports + Donanım ve sanal seri portlara erişim sağlar + Provides access to hardware and virtual serial ports + Donanım ve sanal seri portlara erişim sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtserialport-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + eudev-devel + + desktop/toolkit/qt5/qt5-serialport/pspec.xml + + + qt5-serialport + + qt5-base + eudev + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-serialport-devel + qt5-serialport için geliştirme dosyaları + + qt5-base-devel + qt5-serialport + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-serialport-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-speech http://qt-project.org/ Stefan Gronewold groni@pisilinux.org + custom + FDL GPL3 - desktop - Provides a set of easy to use chart components - Qt Data Visualization module - http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtdatavis3d-everywhere-opensource-src-5.15.3.tar.xz + LGPL3 + desktop.toolkit.qt5 + Qt module to make text to speech and speech recognition easy + Qt module to make text to speech and speech recognition easy + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtspeech-everywhere-opensource-src-5.15.3.tar.xz + flite-devel qt5-base-devel - qt5-declarative-devel + speech-dispatcher-devel - desktop/toolkit/qt5/qt5-datavis3d/pspec.xml + desktop/toolkit/qt5/qt5-speech/pspec.xml - qt5-datavis3d - Qt Data Visualization module + qt5-speech + Qt module to make text to speech and speech recognition easy + flite qt5-base - qt5-declarative libgcc + speech-dispatcher /usr/lib @@ -171991,17 +166157,1063 @@ It supports email, address books, calendars, tasks, news feeds and much more. - qt5-datavis3d-devel - Development files for qt5-datavis3d + qt5-speech-devel + Development headers for qt5-speech + + qt5-speech + + + /usr/lib/cmake + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-18 + 5.15.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-01 + 5.9.5 + Rebuild for qt5.9.3 + Stefan Gronewold + groni@pisilinux.org + + + 2018-02-01 + 5.9.3 + Rebuild for qt5.9.3 + Stefan Gronewold + groni@pisilinux.org + + + 2018-02-01 + 5.5.0 + Rebuild for qt5.9.3 + Stefan Gronewold + groni@pisilinux.org + + + 2017-02-20 + 5.5.0 + Rebuild for new Toolchain. + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-26 + 5.5.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qt5-svg + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for displaying the contents of SVG files + SVG dosyalarının içeriğini görüntüleme için sınıflar + Classes for displaying the contents of SVG files + SVG dosyalarının içeriğini görüntüleme için sınıflar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtsvg-everywhere-opensource-src-5.15.3.tar.xz + + mesa-devel + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + zlib-devel + + + qt_kde.patch + + desktop/toolkit/qt5/qt5-svg/pspec.xml + + + qt5-svg + + libgcc + qt5-base + zlib + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses/ + + + + qt5-svg-devel + Development files for qt5-svg + qt5-svg için geliştirme dosyaları qt5-base-devel + qt5-svg + + + /usr/include/qt5/ + /usr/lib/pkgconfig + + + + qt5-svg-docs + + qt5-base + + + /usr/share/doc + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-18 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 5.15.2 + Rebuild kde patch. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-06 + 5.15.2 + Rebuild kde patch. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First Release. + Ayhan yYalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-tools + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Development Tools, QtHelp) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). + A cross-platform application and UI framework (Development Tools, QtHelp) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) çatısı (Geliştirme Araçları, Qt Yardım). + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttools-everywhere-opensource-src-5.15.3.tar.xz + + llvm + mesa-devel + llvm-clang-devel + lld-devel + qt5-base-devel + icon-theme-hicolor qt5-declarative-devel - qt5-datavis3d + + + qt_kde.patch + + desktop/toolkit/qt5/qt5-tools/pspec.xml + + + qt5-assistant + + libgcc + llvm-libs + llvm-clang + qt5-base + qt5-declarative + + + /usr/bin/qdistancefieldgenerator + /usr/bin/assistant + /usr/bin/qhelpgenerator + /usr/bin/qhelpconverter + /usr/bin/qdoc + /usr/bin/qtattributionsscanner + /usr/lib/cmake/Qt5Help + /usr/lib/libQt5Help* + /usr/lib/libQt5CLucene* + /usr/lib/qt5/mkspecs/modules/qt_lib_clucene_private.pri + /usr/lib/qt5/mkspecs/modules/qt_lib_help* + /usr/share/applications/assistant5.desktop + /usr/share/qt5/translations/assistant_tr.qm + /usr/share/icons/hicolor/128x128/apps/assistant.png + /usr/share/icons/hicolor/32x32/apps/assistant.png + /usr/share/pixmaps/assistant5.png + /usr/lib/qt5/bin/qcollectiongenerator + /usr/bin/qcollectiongenerator + /usr/lib/cmake/Qt5DocTools/Qt5DocToolsConfig.cmake + /usr/lib/cmake/Qt5DocTools/Qt5DocToolsConfigVersion.cmake + /usr/lib/cmake/Qt5AttributionsScannerTools/Qt5AttributionsScannerToolsConfig.cmake + /usr/lib/cmake/Qt5AttributionsScannerTools/Qt5AttributionsScannerToolsConfigVersion.cmake + + + assistant.desktop + assistant.png + + + + qt5-assistant-devel + + qt5-base-devel + qt5-assistant + llvm-clang-devel + + + /usr/include/qt5/QtHelp + /usr/include/qt5/QtCLucene + /usr/lib/pkgconfig/Qt5Help.pc + /usr/lib/pkgconfig/Qt5CLucene.pc + + + + qt5-designer + + libgcc + qt5-base + qt5-declarative + + + /usr/bin/designer + /usr/bin/qtdiag + /usr/bin/qtpaths* + /usr/bin/pixeltool + /usr/bin/qtplugininfo + /usr/lib/cmake/Qt5Designer + /usr/lib/cmake/Qt5UiTools + /usr/lib/cmake/Qt5UiPlugin + /usr/lib/cmake/Qt5DesignerComponents/Qt5DesignerComponentsConfig.cmake + /usr/lib/cmake/Qt5DesignerComponents/Qt5DesignerComponentsConfigVersion.cmake + /usr/lib/qt5/plugins/designer + /usr/share/applications/designer5.desktop + /usr/share/qt5/translations/designer_tr.qm + /usr/share/icons/hicolor/128x128/apps/QtProject-designer.png + /usr/share/pixmaps/designer5.png + /usr/lib/libQt5Designer* + /usr/lib/libQt5UiPlugin.prl + /usr/lib/libQt5UiTools* + /usr/lib/qt5/mkspecs/modules/qt_lib_designer* + /usr/lib/qt5/mkspecs/modules/qt_lib_uitools* + /usr/lib/qt5/mkspecs/modules/qt_lib_uiplugin.pri + + + designer.desktop + designer.png + + + + qt5-designer-devel + + qt5-base-devel + qt5-designer + + + /usr/include/qt5/QtDesigner* + /usr/include/qt5/QtUiTools + /usr/include/qt5/QtUiPlugin + /usr/lib/pkgconfig/Qt5Designer* + /usr/lib/pkgconfig/Qt5UiTools.pc + /usr/lib/pkgconfig/Qt5UiPlugin.pc + + + + qt5-linguist + + libgcc + qt5-base + + + /usr/bin/lrelease* + /usr/bin/linguist + /usr/bin/lconvert + /usr/bin/lupdate* + /usr/bin/lprodump + /usr/lib/cmake/Qt5LinguistTools + /usr/share/applications/linguist5.desktop + /usr/share/icons/hicolor/128x128/apps/linguist.png + /usr/share/icons/hicolor/16x16/apps/linguist.png + /usr/share/icons/hicolor/32x32/apps/linguist.png + /usr/share/icons/hicolor/48x48/apps/linguist.png + /usr/share/icons/hicolor/64x64/apps/linguist.png + /usr/share/pixmaps/linguist5.png + /usr/share/qt5/phrasebooks + /usr/share/qt5/translations/linguist_tr.qm + + + linguist.desktop + linguist.png + + + + qt5-qdbusviewer + + libgcc + qt5-base + + + /usr/bin/qdbusviewer + /usr/bin/qdbus + /usr/share/applications/qdbusviewer5.desktop + /usr/share/icons/hicolor/128x128/apps/qdbusviewer.png + /usr/share/icons/hicolor/32x32/apps/qdbusviewer.png + /usr/share/pixmaps/qdbusviewer5.png + + + qdbusviewer.desktop + assistant.png + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-18 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-20 + 5.15.2 + Rebuild for mesa + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.15.2 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-30 + 5.15.2 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-24 + 5.15.2 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-08 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 5.15.1 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-28 + 5.14.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-28 + 5.13.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-29 + 5.12.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-19 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-18 + 5.11.2 + Rebuild llvm + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-translations + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + A cross-platform application and UI framework (Translations) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) + A cross-platform application and UI framework (Translations) + Qt bir çok platformda çalışabilen ve grafiksel kullanıcı arayüzü (GUI) oluşturmaya yarayan bir araç takımıdır(Çeviriler) + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qttranslations-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + qt5-linguist + + + qt_kde.patch + + desktop/toolkit/qt5/qt5-translations/pspec.xml + + + qt5-translations + + qt5-base + + + /usr/share/qt5 + /usr/share/licenses/ + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 5.15.2 + Rebuild kde patch. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-virtualkeyboard + http://qt-project.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPL3 + desktop.toolkit.qt5 + Qt module for general purpose serial bus access + Virtual keyboard framework + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtvirtualkeyboard-everywhere-opensource-src-5.15.3.tar.xz + + libxcb-devel + hunspell-devel + qt5-svg-devel + qt5-base-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-virtualkeyboard/pspec.xml + + + qt5-virtualkeyboard + Virtual keyboard framework + + qt5-svg + qt5-base + qt5-declarative + libgcc + libxcb + hunspell + + + /usr/lib + /usr/lib/qt5 + /usr/share/qt5 + /usr/share/doc + + + + qt5-virtualkeyboard-devel + Development headers for qt5-virtualkeyboard + + qt5-virtualkeyboard /usr/include/qt5 - /usr/lib/cmake - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/lib/cmake @@ -172113,12 +167325,12 @@ It supports email, address books, calendars, tasks, news feeds and much more. 2018-02-01 5.9.3 - Version Bump + Version Bump. Ayhan Yalçınsoy - ayhyanyalcinsoy@pisilinux.org + ayhanyalcinsoy@pisilinux.org - 2017-02-20 + 2017-02-18 5.7.1 First Release Stefan Gronewold @@ -172128,218 +167340,498 @@ It supports email, address books, calendars, tasks, news feeds and much more. - polkit-qt - http://www.kde.org + qt5-wayland + http://qt.digia.com/ Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - GPL2 - app:gui + LGPLv2.1-linking-exception desktop.toolkit.qt5 - A library that allows developers to access PolicyKit API with a nice Qt-style API - A library that allows developers to access PolicyKit API with a nice Qt-style API - https://download.kde.org/stable/polkit-qt-1/polkit-qt-1-0.114.0.tar.xz + Provides APIs for Wayland + Wayland için API'ler sağlar + Provides APIs for Wayland + Wayland için API'ler sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwayland-everywhere-opensource-src-5.15.3.tar.xz - qt5-base-devel - glib2-devel - polkit-devel + libgcc + libX11-devel + wayland-client + wayland-cursor + fontconfig-devel + libXrender-devel + libxkbcommon-devel + libXcomposite-devel + libxkbcommon-devel + vulkan-headers + eudev-devel mesa-devel - cmake + glib2-devel + freetype-devel + qt5-base-devel + qt5-declarative-devel - desktop/toolkit/qt5/polkit-qt/pspec.xml + + qt_kde.patch + + desktop/toolkit/qt5/qt5-wayland/pspec.xml - polkit-qt + qt5-wayland - qt5-base - glib2 - polkit + libX11 libgcc + fontconfig + libXrender + libxkbcommon + libXcomposite + wayland-client + wayland-cursor + wayland-server + mesa + glib2 + freetype + qt5-base + qt5-declarative - /usr/share/doc /usr/lib + /usr/lib/qt5 + /usr/lib/qt5/bin + /usr/bin - polkit-qt-devel + qt5-wayland-devel + qt5-wayland için geliştirme dosyaları - polkit-qt - qt5-base-devel - glib2-devel - polkit-devel + qt5-wayland + qt5-base-devel /usr/lib/pkgconfig - /usr/include/polkit-qt5-1 + /usr/include + + + + qt5-wayland-docs + + qt5-base + + + /usr/share/doc - + 2022-04-18 - 0.114.0 + 5.15.3 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2022-04-18 + 5.15.2 + Rebuild kde patch + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 5.15.2 + Rebuild kde patch + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-06 + 5.15.2 + Rebuild kde patch + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-11 + 5.15.2 + Rebuild kde patch + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-10 + 5.15.2 + Rebuild kde patch + Mustafa Cinasal + muscnsl@gmail.com + - 2021-08-02 - 0.114.0 + 2021-08-14 + 5.15.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 5.13.1 + Rebuild libxkbcommon. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-29 + 5.6.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-06-03 + 5.4.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-05-09 + 5.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-webchannel + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients + HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar + Provides access to QObject or QML objects from HTML clients for seamless integration of Qt applications with HTML/JavaScript clients + HTML/JavaScript istemcileri ile Qt uygulamalarının tam uyumu için HTML istemcilerinden QML veya QObject nesnelerine erişim sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwebchannel-everywhere-opensource-src-5.15.3.tar.xz + + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-webchannel/pspec.xml + + + qt5-webchannel + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-webchannel-devel + qt5-webchannel için geliştirme dosyaları + + qt5-webchannel + qt5-base-devel + qt5-declarative-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-webchannel-docs + + libgcc + qt5-base + qt5-declarative + + + /usr/share/doc + + + + + 2022-04-18 + 5.15.3 Version bump. Mustafa Cinasal muscnsl@gmail.com 2020-12-14 - 0.113 - Rebuild for qt5.15.2 - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-09 - 0.113 - Rebuild for qt5.15.1 + 5.15.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-04-04 - 0.113 - Rebuild for qt5.14.2 + 2020-09-09 + 5.15.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-27 - 0.113 - Rebuild for qt5.14.1 + 2020-04-04 + 5.14.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-02-16 - 0.113 - Rebuild for qt5.14.0 + 2020-02-27 + 5.14.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-11-02 - 0.113 - Rebuild for qt5.13.2 + 2019-12-22 + 5.14.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-09-05 - 0.113 - Rebuild for qt5.13.1 + 2019-11-02 + 5.13.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-06-20 - 0.113 + 2019-09-05 + 5.13.1 Version bump. Mustafa Cinasal muscnsl@gmail.com 2019-06-20 - 0.112 - Rebuild for qt5.13.0 + 5.13.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com 2019-03-14 - 0.112 - Rebuild for qt5.12.2 + 5.12.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com 2019-02-01 - 0.112 - Rebuild for qt5.12.1 + 5.12.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com 2018-12-05 - 0.112 - Rebuild for qt5.12.0 + 5.12.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-10-05 - 0.112 - Rebuild for qt5.11.2 + 2018-10-15 + 5.11.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com 2018-09-03 - 0.112 - Rebuild for qt5.10.1 + 5.10.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-05-01 - 0.112 - Rebuild for qt5.9.5 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com 2018-02-01 - 0.112 - Rebuild for qt5.9.3 + 5.9.3 + Version bump. Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org 2017-02-20 - 0.112 - Rebuild for new Toolchain - Pisi Linux Community - admin@pisilinux.org + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org - 2016-10-21 - 0.112 + 2016-10-22 + 5.6.2 Version Bump Pisi Linux Community admin@pisilinux.org 2016-06-09 - 0.112 + 5.6.0 Release Bump Pisi Linux Community admin@pisilinux.org 2016-05-16 - 0.112 + 5.6.0 Release Bump PisiLinux Community admin@pisilinux.org 2016-05-01 - 0.112 + 5.6.0 Release Bump PisiLinux Community admin@pisilinux.org 2016-04-17 - 0.112 + 5.6.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -172348,291 +167840,360 @@ It supports email, address books, calendars, tasks, news feeds and much more. - granite - https://github.com/elementary/granite - - Berk Çakar - berk2238@hotmail.com - - LGPLv3 - desktop - Granite is a companion library for GTK and GLib. - Granite is a companion library for GTK and GLib. Among other things, it provides complex widgets and convenience functions designed for use in apps built for elementary OS. - https://github.com/elementary/granite/archive/refs/tags/6.1.0.zip - - gobject-introspection-devel - gtk3-devel - libgee-devel - vala-devel - meson - - desktop/toolkit/granite/pspec.xml - - - granite - - cairo - gtk3 - glib2 - pango - libgee - gdk-pixbuf - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/libgranite*.so* - /usr/share/applications - /usr/share/doc - /usr/share/icons - /usr/share/locale - /usr/share/metainfo - - - - granite-devel - Development files for granite - - granite - gtk3-devel - glib2-devel - libgee-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2021-07-15 - 6.1.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - qscintilla2 - https://www.riverbankcomputing.com/software/qscintilla/intro + qt5-webengine + http://qt.digia.com/ Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - GPLv2 - GPLv3 - library - desktop.toolkit - Qt port of Scintilla - QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. - Port do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. - QScintilla2 is a port to Qt4 of Neil Hodgson's Scintilla C++ editor class. - QScintilla2, Neil Hodgson'un Scintilla C++ editör sınıfının bir Qt4 uyarlamasıdır. - QScintilla jest portem do Qt klas C++ edytora Scintilla autorstwa Neila Hodgsona. - https://www.riverbankcomputing.com/static/Downloads/QScintilla/2.11.5/QScintilla-2.11.5.tar.gz + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides support for web applications using the Chromium browser project + Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar + Provides support for web applications using the Chromium browser project + Chromium tarayıcı projelerini kullanan web uygulamaları için destek sağlar + https://invent.kde.org/qt/qt/qtwebengine/-/archive/v5.15.9-lts/qtwebengine-v5.15.9-lts.tar.bz2 + https://sourceforge.net/projects/pisilinux/files/source/qtwebengine-chromium-87-20220314.tar.xz/download + + qtwebengine-5.15.7-build_fixes-1.patch + qtwebengine-everywhere-src-5.15.5-TRUE.patch + - chrpath - python-sip - python3-sip - python-devel - python3-devel - qscintilla2-python-common + qt5-base-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-location-devel + qt5-sensors-devel + qt5-webchannel-devel + qt5-designer-devel + bison + wget + nodejs + re2-devel + re2c + ninja + gperf + snappy-devel + gobject-introspection-devel + expat-devel + glib2-devel + fontconfig-devel + freetype-devel mesa-devel - qt5-base-devel - qt5-script-devel - python-qt5-devel - python3-qt5-devel - qt5-designer-devel - qt5-xmlpatterns-devel + eudev-devel + libpng-devel + webp-devel + harfbuzz-devel + json-c-devel + protobuf-devel + libdrm-devel + libopus-devel + libevent-devel + zlib-devel + libxml2-devel + libxslt-devel + libX11-devel + libXi-devel + libXcursor-devel + libXext-devel + libXfixes-devel + libXrender-devel + libXdamage-devel + libXcomposite-devel + libXtst-devel + libXrandr-devel + libXScrnSaver-devel + libcap-devel + pulseaudio-libs-devel + alsa-lib-devel + pciutils-devel + dbus-devel + nss-devel + perl + python-devel + python3-devel + libvpx-devel + libjpeg-turbo-devel + x264-devel + minizip-devel + icu4c-devel + ffmpeg-devel + git + lcms2-devel + jsoncpp-devel + poppler-cpp-devel + python-Jinja2 + libxkbcommon-devel + libxkbfile-devel + pipewire-0.2-devel + mit-kerberos-devel - desktop/toolkit/qscintilla2/pspec.xml + desktop/toolkit/qt5/qt5-webengine/pspec.xml - qscintilla2 + qt5-webengine + re2 + nss + dbus + nspr + webp + expat + icu4c + lcms2 + ffmpeg + libxcb + glib2 + libX11 libgcc - qt5-base + libpng + snappy + freetype + libXi + libXext + libXtst + libxslt + libopus + libxml2 + libvpx + qt5-base + alsa-lib + harfbuzz + libevent + libXfixes + libXrandr + fontconfig + libXcursor + libXScrnSaver + libXdamage + libXrender + qt5-location + libXcomposite + libjpeg-turbo + qt5-webchannel + qt5-declarative + zlib + minizip + protobuf + pulseaudio-libs + libxkbcommon + libxkbfile + pipewire-0.2 - /usr/lib - /usr/lib/qt5/plugins - /usr/share/doc - /usr/share/qt5/mkspecs + /usr/lib/qt5/bin/ + /usr/bin + /usr/lib/libQt5Pdf* + /usr/lib/libQt5WebEngine* + /usr/lib/libQt5WebEngineWidgets* + /usr/lib/qt5 + /usr/share/qt5 /usr/share/qt5/translations - qscintilla2-python-common - Common python qscintilla bindings files shared between qscintilla2-python and qscintilla2-python3 + qt5-webengine-devel - qscintilla2 + qt5-webengine + qt5-base-devel + qt5-declarative-devel + qt5-location-devel + qt5-webchannel-devel - /usr/share/qt5/qsci - /usr/share/sip + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/include/qt5 - qscintilla2-python - Python 2.x bindings for qscintilla2 - qscintilla2 için Python bağlayıcıları + qt5-webengine-docs - qscintilla2 - qscintilla2-python-common - qt5-base + qt5-base - /usr/lib/python2* - - - - qscintilla2-python3 - Python 3.x bindings for qscintilla2 - - python3 - qscintilla2 - qscintilla2-python-common - qt5-base - libgcc - - - /usr/lib/python3* - - - - qscintilla2-doc - HTML documentation for qscintilla2 - qscintilla2 için HTML belgeleri - - /usr/share/doc/qscintilla2/Scintilla - /usr/share/doc/qscintilla2/html - - - - qscintilla2-devel - Development files for qscintilla2 - qscintilla2 için geliştirme dosyaları - Pliki nagłówkowe dla QScintilla - - qscintilla2 - - - /usr/include/qt5/Qsci + /usr/share/doc - - 2020-09-14 - 2.11.5 + + 2022-04-18 + 5.15.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-04-04 - 2.11.4 + + 2021-12-01 + 5.15.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 5.15.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 5.15.2 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2020-01-20 - 2.11.4 + + 2020-12-14 + 5.15.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - + + 2020-10-01 + 5.15.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-30 + 5.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + 2019-11-04 - 2.11.3 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-26 + 5.13.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-09-22 - 2.11.2 + 2019-06-20 + 5.13.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-07-08 - 2.10.8 - Rebuild qt5. + 2019-03-14 + 5.12.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-04-14 - 2.10.8 - Rebuild qt5. + 2019-02-01 + 5.12.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-02-02 - 2.10.8 + 2018-12-05 + 5.12.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-12-25 - 2.10.8 + 2018-10-15 + 5.11.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-10-19 - 2.10.8 + 2018-09-22 + 5.10.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-19 - 2.10.2 - Rebuild. + 2018-05-02 + 5.9.5 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-03-02 - 2.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2018-04-27 + 5.9.3 + Release bump + Kamil Atlı + suvari@pisilinux.org - 2018-02-06 - 2.10.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com + 2018-03-01 + 5.9.3 + Release bump + Kamil Atlı + suvari@pisilinux.org - 2017-06-04 - 2.10 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com + 2017-03-08 + 5.7.1 + Release bump. + Kamil Atlı + suvari@pisilinux.org - 2016-06-09 - 2.9.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-12-27 + 5.6.2 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-05-28 - 2.9.1 + 2016-06-15 + 5.6.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org @@ -172641,168 +168202,1192 @@ It supports email, address books, calendars, tasks, news feeds and much more. - openmotif - http://www.motifzone.org/ + qt5-webkit + http://qt.digia.com/ - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - MOTIF - library - app - desktop.toolkit.motif - Open Motif implementation - Özgür Motif kitaplığı - Freely available version of the well known Motif user interface toolkit for Open Source operating systems. - Açık kaynak kodlu işletim sistemleri için yaygın olarak tanına Motif kullanıcı arabirimi araçlarının özgürce kullanılabilen sürümü. - mirrors://sourceforge/motif/motif-2.3.8.tar.gz + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Classes for a WebKit2 based implementation and a new QML API + WebKit2 tabanlı uygulama ve yeni QML API için sınıflar + Classes for a WebKit2 based implementation and a new QML API + WebKit2 tabanlı uygulama ve yeni QML API için sınıflar + https://github.com/annulen/webkit/releases/download/qtwebkit-5.212.0-alpha4/qtwebkit-5.212.0-alpha4.tar.xz - libXmu-devel - libXft-devel - xbitmaps - fontconfig-devel - libXt-devel - libXext-devel - libjpeg-turbo-devel - libX11-devel + cmake + gperf + dbus-devel + ruby-devel + webp-devel + zlib-devel libpng-devel + libpcre-devel + libxslt-devel + libxml2-devel + libX11-devel + libXtst-devel + python3-devel + gstreamer-devel + perl-Digest-MD5 + libXrender-devel + qt5-phonon-devel + fontconfig-devel + libXcomposite-devel + libjpeg-turbo-devel + perl-Text-ParseWords + flex + bison + icu4c-devel + eudev-devel + mesa-devel + leveldb-devel + glib2-devel + sqlite-devel + python-devel + qt5-linguist + qt5-base-devel + qt5-sql-sqlite + qt5-qdbusviewer + qt5-sensors-devel + qt5-designer-devel + qt5-location-devel + qt5-assistant-devel + qt5-multimedia-devel + qt5-webchannel-devel + qt5-declarative-devel + gst-plugins-base-devel - openmotif-2.3.2-sanitise-paths.patch - 0003_fix_ftbfs_binutils-gold.patch - openmotif-uil.patch - openmotif-unaligned.patch - openMotif-2.3.0-no_X11R6.patch - motif-2.3.4-bindings.patch - motif-2.3.4-mwmrc_dir.patch - wmluiltok_fake_lex_main.patch + icu68.patch + glib-2.68.patch + 78360c01.patch + d92b11fe.patch - desktop/toolkit/motif/openmotif/pspec.xml + desktop/toolkit/qt5/qt5-webkit/pspec.xml - openmotif + qt5-webkit - libXmu - libXft - libXp - libSM - libICE - fontconfig - libXt - libXext - libjpeg-turbo + mesa + webp + zlib + glib2 + icu4c libX11 + libgcc libpng - freetype + sqlite + libxml2 + libxslt + libXrender + libXcomposite + libjpeg-turbo + gstreamer + gstreamer + gst-plugins-base + gst-plugins-base + qt5-base + qt5-location + qt5-sensors + qt5-webchannel + qt5-declarative - /etc - /usr/bin /usr/lib - /usr/share/X11/app-defaults - /usr/share/X11/bindings + /usr/lib/qt5/plugins/webkit + /usr/lib/qt5/ + /usr/lib/qt5/bin/ + /usr/bin /usr/share/doc - /usr/share/man - - - Mwm.defaults - - - - openmotif-devel - Development files for openmotif - openmotif için geliştirme dosyaları - - openmotif - libXft-devel - libXt-devel - libXmu-devel - libXext-devel - - - /usr/include - /usr/share/man/man3 - openmotif-32bit - 32-bit shared libraries for openmotif - emul32 - emul32 - - libSM-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit - libX11-32bit - libICE-32bit - libXft-32bit - libXext-32bit - fontconfig-32bit - libjpeg-turbo-32bit - + qt5-webkit-devel + qt5-webkit için geliştirme dosyaları - openmotif - libSM-32bit - libXt-32bit - libXp-32bit - libXmu-32bit - libpng-32bit - libX11-32bit - libICE-32bit - libXft-32bit - libXext-32bit - fontconfig-32bit - freetype-32bit - libjpeg-turbo-32bit + mesa-devel + webp-devel + zlib-devel + glib2-devel + icu4c-devel + libX11-devel + libpng-devel + sqlite-devel + libxml2-devel + libxslt-devel + libXrender-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-devel + gst-plugins-base-devel + qt5-webkit + qt5-base-devel + qt5-sensors-devel + qt5-declarative-devel - /usr/lib32 + /usr/lib/pkgconfig + /usr/include/qt5/ - - 2020-01-28 - 2.3.8 + + 2022-04-18 + 5.212.0 + Rebuild qt5-5.15.3 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.212.0 + Rebuild qt5-5.15.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.212.0 + Rebuild qt5-5.15.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.212.0 + Rebuild qt5-5.14.2 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-21 + 5.212.0 + Version bump alpha4 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.212.0 + Rebuild qt5.14.1 + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 5.212.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.212.0 Rebuild. - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.212.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.212.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.212.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-02 + 5.212.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.212.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 5.212.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-04 + 5.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-02 + 5.9.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-02 + 5.9.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-26 + 5.7.1 + Release Bump. + Stefan Gronewold + groni@pisilinux.org - 2018-08-31 - 2.3.8 + 2016-10-22 + 5.6.2 Version Bump Pisi Linux Community admin@pisilinux.org - 2018-01-31 - 2.3.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 2.3.7 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - 2016-06-09 - 2.3.4 + 5.6.0 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + - 2013-08-17 - 2.3.4 + 2016-04-17 + 5.6.0 First release - Osman Erkan - osman.erkan@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-websockets + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides WebSocket communication compliant with RFC 6455 + RFC 6455 ile yumuşak WebSocket iletişimi sağlar + Provides WebSocket communication compliant with RFC 6455 + RFC 6455 ile yumuşak WebSocket iletişimi sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtwebsockets-everywhere-opensource-src-5.15.3.tar.xz + + qt5-sql-sqlite + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-websockets/pspec.xml + + + qt5-websockets + + libgcc + qt5-base + qt5-declarative + + + /usr/lib + /usr/lib/qt5 + + + + qt5-websockets-devel + qt5-websockets için geliştirme dosyaları + + qt5-websockets + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-websockets-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-02 + 5.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-x11extras + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Provides platform-specific APIs for X11 + X11 için platforma özgü API'ler sağlar + Provides platform-specific APIs for X11 + X11 için platforma özgü API'ler sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtx11extras-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + mesa-devel + + desktop/toolkit/qt5/qt5-x11extras/pspec.xml + + + qt5-x11extras + + qt5-base + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + + + + qt5-x11extras-devel + qt5-x11extras için geliştirme dosyaları + + qt5-x11extras + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5/ + + + + qt5-x11extras-docs + + qt5-x11extras + qt5-base + + + /usr/share/doc/qt5/ + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-21 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump for gst + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5-xmlpatterns + http://qt.digia.com/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Support for XPath, XQuery, XSLT and XML schema validation + XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar + Support for XPath, XQuery, XSLT and XML schema validation + XPath, XQuery, XSLT ve XML şema doğrulama için destek sağlar + http://download.qt.io/official_releases/qt/5.15/5.15.3/submodules/qtxmlpatterns-everywhere-opensource-src-5.15.3.tar.xz + + qt5-base-devel + qt5-assistant-devel + qt5-sql-sqlite + qt5-declarative-devel + + desktop/toolkit/qt5/qt5-xmlpatterns/pspec.xml + + + qt5-xmlpatterns + + qt5-base + qt5-declarative + libgcc + + + /usr/lib + /usr/lib/qt5 + /usr/share/licenses + /usr/lib/qt5/bin/ + /usr/bin + + + + qt5-xmlpatterns-devel + qt5-xmlpatterns için geliştirme dosyaları + + qt5-xmlpatterns + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/qt5 + + + + qt5-xmlpatterns-docs + + qt5-base + + + /usr/share/doc/qt5 + + + + + 2022-04-18 + 5.15.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 5.15.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-09 + 5.15.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-22 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-02 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-05 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-21 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 5.12.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 5.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 5.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-05 + 5.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-15 + 5.11.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 5.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 5.9.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 5.9.3 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-20 + 5.7.1 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-10-22 + 5.6.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-15 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-05-01 + 5.6.0 + Release Bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-17 + 5.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qt5ct + https://qt5ct.sourceforge.io/ + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2.1-linking-exception + desktop.toolkit.qt5 + Qt5 Configuration Utility + Qt5 Yapılandırma Yardımcı Programı + SThis program allows users to configure Qt5 settings (theme, font, icons, etc.) under DE/WM without Qt integration. + Bu program, kullanıcıların Qt entegrasyonu olmadan DE/WM altında Qt5 ayarlarını (tema, yazı tipi, simgeler vb.) yapılandırmasına olanak tanır. + mirrors://sourceforge/qt5ct/qt5ct-1.5.tar.bz2 + + cmake + dconf-devel + qt5-linguist + qt5-svg-devel + qt5-base-devel + + desktop/toolkit/qt5/qt5ct/pspec.xml + + + qt5ct + + dconf + libgcc + qt5-svg + qt5-base + + + /usr/share/qt5ct + /usr/share/applications + /usr/lib/qt5 + /usr/share/doc + /usr/bin + + + + + 2022-05-06 + 1.5 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + qtcreator + http://qt-project.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2 + app:gui + programming.environment + Lightweight, cross-platform integrated development environment + Hafif, çapraz platform tümleşik geliştirme ortamı + Lightweight, cross-platform integrated development environment + Hafif, çapraz platform tümleşik geliştirme ortamı + https://download.qt.io/official_releases/qtcreator/4.14/.4.14.1/qt-creator-opensource-src-4.14.1.tar.xz + + libgcc + libX11-devel + cmake + git + mesa-devel + openssh + qt5-quickcontrols + qt5-base-devel + qt5-declarative-devel + qt5-linguist + qt5-serialport-devel + qt5-quickcontrols2 + qt5-svg-devel + qt5-xmlpatterns + qt5-webkit-devel + qt5-x11extras-devel + qt5-assistant-devel + qt5-designer-devel + qt5-script-devel + qt5-webengine-devel + valgrind + llvm-clang-devel + llvm + + desktop/toolkit/qtcreator/pspec.xml + + + qtcreator + Lightweight, cross-platform integrated development environment + + elfutils + llvm-libs + llvm-clang + qt5-svg + qt5-base + qt5-base-devel + qt5-script + qt5-webkit + qt5-designer + qt5-assistant + qt5-serialport + qt5-declarative + qt5-webengine + + + /usr/bin + /usr/libexec/qtcreator + /usr/lib/qtcreator + /usr/share/applications + /usr/share/licenses + /usr/share/qtcreator + /usr/share/doc + /usr/share/icons + /etc + /usr/share/metainfo + + + + + 2021-02-24 + 4.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-14 + 4.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-25 + 4.12.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-01-20 + 4.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-04 + 4.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 4.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 4.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-25 + 4.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-30 + 4.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-07 + 4.5.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-13 + 4.3.0 + Version Bump + Ali Algul + aligulle3801@gmail.com + + + 2017-03-19 + 4.2.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 4.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-22 + 4.0.0 + version bump and fixed prefix path + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-21 + 3.6.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org @@ -173025,45516 +169610,340 @@ It supports email, address books, calendars, tasks, news feeds and much more. - sil-lateef-font - https://software.sil.org/lateef/ - - Stefan Gronewold - groni@pisilinux.org - - custom:OFL - data:font - desktop.font - OpenType Arabic font from SIL - Lateef is named after Shah Abdul Lateef Bhitai, the famous Sindhi mystic and poet. It is intended to be an appropriate style for use in Sindhi and other languages of southern Asia.. - https://software.sil.org/downloads/r/lateef/LateefGR-1.200.zip - desktop/font/sil-lateef-font/pspec.xml - - - sil-lateef-font - - /usr/share/doc - /usr/share/fonts/sil-lateef - /usr/share/sil-lateef/documentation - /usr/share/sil-lateef/web - - - - - 2018-07-31 - 1.200 - Rebuild for New Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2018-05-08 - 1.200 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - cantarell-fonts - http://www.gnome.org - - Kamil Atlı - suvari@pisilinux.org - - GPLv2+ - desktop.font - GNOME Cantarell fonts - GNOME Cantarell fonts - required for GNOME 3 - https://download-fallback.gnome.org/sources/cantarell-fonts/0.303/cantarell-fonts-0.303.1.tar.xz - - meson - - desktop/font/cantarell-fonts/pspec.xml - - - cantarell-fonts - - /usr/share/fonts - /usr/share/fontconfig - /usr/share/doc - /usr/share/metainfo/org.gnome.cantarell.metainfo.xml - - - - - 2021-12-11 - 0.303.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-30 - 0.301 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - - - - msttcorefonts - http://corefonts.sourceforge.net/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - Microsoft - data:font - desktop.font - Web için Microsoft'un TrueType çekirdek yazı tipleri - Microsoft's TrueType Schriftarten für den Gebrauch im Web - Microsoft's TrueType core fonts for the Web - Core fonts for the Web war ein Projekt von Microsoft mit dem Ziel, eine Reihe von Schriftarten für den Gebrauch im Internet zu standardisieren. Folgende Schriftarten werden von diesem Paket bereitgestellt: Andale Mono, Arial, Comic Sans MS, Courier New, Georgia, Impact, Times New Roman, Trebuched MS, Verdana, Webdings - Core fonts for the Web was a project begun by Microsoft to make a standard pack of fonts for the Internet. Fonts included in this package are: Andale Mono, Arial, Comic Sans MS, Courier New, Georgia, Impact, Times New Roman, Trebuched MS, Verdana, Webdings. - https://root.cern.ch/download/ttf/ttf_fonts.tar.gz - - fontconfig-devel - - desktop/font/msttcorefonts/pspec.xml - - - msttcorefonts - - fontconfig - - - /usr/share/doc - /usr/share/fonts/msttcorefonts - - - - - 2021-12-04 - 1.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - fontconfig - http://fontconfig.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - desktop.font - A library for configuring and customizing font access - Yazıtiplerinin yapılandırılması ve özelleştirilmesi için bir kitaplık - Biblioteka do konfigurowania pospolitych czcionek - obsługa plików binarnych - Fontconfig est un librairie conçue pour fournir à tout le système accès à la possibilité de configurer, personnaliser et appliquer des fontes. - Fontconfig is a library designed to provide system-wide font configuration, customization and application access. - Fontconfig sistem genelindeki programlar için yazıtiplerinin ayarlanmasını, özelleştirilmesini ve programlar tarafından erişilmesini sağlar. - Fontconfig jest biblioteką do konfigurowania i dostosowywania do własnych potrzeb czcionek, które nie zależą od systemu X Window. Została zaprojektowana, aby znajdować czcionki w systemie i dobierać je do wymagań określanych przez aplikacje. - https://www.freedesktop.org/software/fontconfig/release/fontconfig-2.13.94.tar.xz - - gperf - expat-devel - python3-devel - freetype-devel - libutil-linux-devel - - - use_legacy_lcdfilter_on_small_monospace.patch - fontconfig-2.8.0-sleep-less.patch - deprecated-user-conf.patch - - desktop/font/fontconfig/pspec.xml - - - fontconfig - - expat - freetype - libutil-linux - - - /etc/fonts - /usr/bin - /usr/lib - /usr/share/doc - /var/cache/fontconfig - /usr/share - - - System.Package - System.PackageHandler - - - - fontconfig-devel - Development files for fontconfig - fontconfig için geliştirme dosyaları - Pliki nagłówkowe fontconfig - - fontconfig - libutil-linux-devel - freetype-devel - expat-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/fontconfig/fontconfig-devel.txt - /usr/share/man - - - - fontconfig-32bit - 32-bit shared libraries for fontconfig - fontconfig için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - expat-32bit - freetype-32bit - libutil-linux-32bit - - - fontconfig - expat-32bit - freetype-32bit - libutil-linux-32bit - - - /usr/lib32 - - - - - 2021-06-29 - 2.13.94 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 2.13.93 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 2.13.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2019-11-09 - 2.13.1 - Version Bump symlinks fix - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 2.13.0 - Rebuild for New Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-10 - 2.13.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-13 - 2.12.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.12.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.11.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.11.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-17 - 2.11.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - fontforge - http://fontforge.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - app:gui - desktop.font - Font editor and converter - Postscript yazı tipi düzenleyici ve çevirici - FontForge is a font editor that lets you create your own postscript, truetype, opentype, cid-keyed, multi-master, cff, svg and bitmap (bdf, FON, NFNT) fonts, or edit existing ones. Also lets you convert one format to another. FontForge also has support for many macintosh font formats. - FontForge kendi postscript, truetype, opentype, cid-keyed, multi-master, cff, svg, bitmap (bdf, FON, NFNT) fontlarınızı yaratmanıza veya hali hazırda varolan fontlarınızı düzenlemenize olanak tanıyan bir font düzenleyicidir. FontForge Macintosh font formatlarının çoğunu da desteklemektedir. - fontforge - https://github.com/fontforge/fontforge/releases/download/20220308/fontforge-20220308.tar.xz - https://fontforge.github.io/cidmaps.tgz - - git - cmake - libtool - xdg-utils - gtk3-devel - tiff-devel - libXi-devel - cairo-devel - pango-devel - libtool-ltdl - libpng-devel - libXft-devel - giflib-devel - python3-devel - libxml2-devel - freetype-devel - readline-devel - python3-sphinx - libspiro-devel - fontconfig-devel - shared-mime-info - desktop-file-utils - libjpeg-turbo-devel - - desktop/font/fontforge/pspec.xml - - - fontforge - - gtk3 - zlib - tiff - cairo - libXi - pango - glib2 - libX11 - libpng - libXft - giflib - potrace - python3 - libxml2 - freetype - readline - libspiro - libtool-ltdl - libjpeg-turbo - - - /usr/lib/libfontforge.so* - /usr/lib/python3.9/site-packages - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/pixmaps - /usr/share/icons - /usr/share/appdata - /usr/share/fontforge - /usr/share/metainfo - /usr/share/applications - /usr/share/locale - - - - - 2022-04-02 - 2.0.20220308 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 2.0.20190801 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-11 - 2.0.20190801 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 2.0.20190801 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.0.20170731 - Rebuild for new Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2018-03-26 - 2.0.20170731 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 2.0.20161005 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.0.20150824 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-28 - 2.0.20150824 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - noto-fonts-cjk - http://www.google.com/get/noto - - Osman Erkan - osman.erkan@pisilinux.org - - CUSTOM:SIL - data:font - desktop.font - Google Noto CJK fonts - Google Noto CJK yazı tipleri - noto-fonts-cjk, Google Noto CJK fonts. - Google Noto CJK yazı tipleri. - https://github.com/googlei18n/noto-cjk/archive/v1.004.tar.gz - desktop/font/noto-fonts-cjk/pspec.xml - - - noto-fonts-cjk - noto-fonts-cjk, Google Noto CJK fonts - - /usr/share/fonts/noto/*.ttc - /usr/share/doc/noto-fonts-cjk/ - - - - - 2018-07-31 - 0.0_20100919 - Rebuild for New Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2017-03-05 - 0.0_20100919 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 0.0_20100919 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-22 - 0.0_20100919 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - oxygen-fonts - https://projects.kde.org/projects/playground/artwork/oxygen-fonts - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - OFL - data:font - desktop.font - Oxygen font family - Oxygen yazı tipi ailesi - Oxygen font family is a desktop / GUI font family for integrated use with KDE. - Oxygen, KDE için bir masaüstü ve grafik kullanıcı arayüzü yazı tipi ailesidir. - http://download.kde.org/stable/plasma/5.4.3/oxygen-fonts-5.4.3.tar.xz - - cmake - extra-cmake-modules - fontconfig-devel - qt5-base-devel - fontforge - - desktop/font/oxygen-fonts/pspec.xml - - - oxygen-fonts - - /usr/share/fonts - /usr/share/doc - /usr/lib - - - - - 2018-08-15 - 5.4.3 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 5.4.3 - Rebuild for new toolchain. - Stefan Gronewold - groni@pisilinux.org - - - 2017-03-09 - 5.4.3 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.4.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-11 - 5.4.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - terminus-font - http://terminus-font.sourceforge.net/ - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - OFL - GPLv2 - data - desktop.font - Fixed width bitmap font. - Sabit boyutlu yazıtipi - La fonte Terminus est conçue pour travailler longtemps (8 heures ou plus par jour) devant l'ordinateur. - Terminus Font is a clean, fixed width bitmap font, designed for long (8 and more hours per day) work with computers. - Terminus yazıtipi bilgisayar karşısında uzun süreler (günde 8 saat ve fazlası) geçiren insanlar için tasarlanmıştır. - Die Terminus Schrift ist für lange Arbeitszeiten (8 Stunden und mehr pro Tag) ausgelegt - mirrors://sourceforge/terminus-font/terminus-font-4.49.1.tar.gz - - python3 - xorg-app - - desktop/font/terminus-font/pspec.xml - - - terminus-font - - /etc/fonts/conf.avail/75-yes-terminus.conf - /etc/fonts/conf.d/75-yes-terminus.conf - /usr/share/kbd/consolefonts - /usr/share/fonts/misc - /usr/share/doc - - - - - 2021-01-02 - 4.49.1 - Beta rebuild. - fury - uglyside@yandex.ru - - - - - - liberation-fonts - https://fedorahosted.org/liberation-fonts/ - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - GPLv2 - data:font - desktop.font - Font collection similar to ones found in Microsoft Windows - Microsoft Windows fontlarına benzeyen bir dizi font ailesi - A set of fonts similar to Microsoft Windows fonts. There are three sets: Sans (a substitute for Arial, Albany, Helvetica, Nimbus Sans L, and Bitstream Vera Sans), Serif (a substitute for Times New Roman, Thorndale, Nimbus Roman, and Bitstream Vera Serif) and Mono (a substitute for Courier New, Cumberland, Courier, Nimbus Mono L, and Bitstream Vera Sans Mono). - liberation-fonts MS Windows fontlarına benzer bir yazı tipi ailesidir. Sans, serif ve mono olmak üzere 3 setten oluşur. - http://dev-www.libreoffice.org/src/cfbf1ac6f61bf6cf45342a0cc9381be5-liberation-fonts-ttf-2.00.0.tar.gz - - fontforge - - desktop/font/liberation-fonts/pspec.xml - - - liberation-fonts - - /usr/share/fonts - /usr/share/doc - - - - - 2018-07-31 - 2.00.0 - Rebuild for new toolchain. - Stefan Gronewold - groni@pisilinux.org - - - 2017-03-02 - 2.00.0 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.00.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 2.00.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - open-sans-fonts - https://www.opensans.com/ - - Safa Arıman - safaariman@pisilinux.org - - Apache-2.0 - data:font - desktop.font - Open Sans is a humanist sans-serif typeface designed by Steve Matteson - Open Sans is a humanist sans-serif typeface designed by Steve Matteson - Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letter forms. - Open Sans is a humanist sans serif typeface designed by Steve Matteson, Type Director of Ascender Corp. This version contains the complete 897 character set, which includes the standard ISO Latin 1, Latin CE, Greek and Cyrillic character sets. Open Sans was designed with an upright stress, open forms and a neutral, yet friendly appearance. It was optimized for print, web, and mobile interfaces, and has excellent legibility characteristics in its letter forms. - https://www.opensans.com/download/open-sans.zip - https://www.opensans.com/download/open-sans-condensed.zip - desktop/font/open-sans-fonts/pspec.xml - - - open-sans-fonts - - /usr/share/doc - /usr/share/fonts - - - - - 2020-03-20 - 1.10 - First release - Safa Arıman - safaariman@pisilinux.org - - - - - - dejavu-fonts - http://www.dejavu-fonts.org - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - as-is - data:font - desktop.font - DejaVu yazıtipleri - DejaVu fonts - DejaVu fonts - DejaVu yazıtipleri - Les fontes DejaVu basées sur des fontes Bitstream avec des améliorations. - Contains DejaVu fonts that are based on Bitstream fonts, with improvements. - Bevat de DejaVu fonts die zijn gebasserd op de Bitstream fonts, met verbeteringen. - mirrors://sourceforge/dejavu/2.37/dejavu-fonts-2.37.tar.bz2 - - xorg-app-devel - fontforge - fontconfig-devel - perl-Font-TTF - perl-IO-String - unicode-ucd - giflib-devel - - desktop/font/dejavu-fonts/pspec.xml - - - dejavu-fonts - - /etc/fonts - /etc/X11/fontpath.d/dejavu - /usr/share/fonts - /usr/share/doc - - - - - 2022-04-02 - 2.37 - Rebuild for fontforge - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 2.37 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-11 - 2.37 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.37 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-02-28 - 2.37 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-09-18 - 2.34 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-27 - 2.34 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - Orkhun-fonts - http://turkcesivarken.com/ - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - OFL - data:font - desktop.font - Old Turkic fonts - Eski Türk alfabesi Yazıtipleri - Orkhun-fonts package contains old Turkic (Gokturks or Celestial Turks) fonts. - Orkhun-fonts paketi Göktürk Alfabesi'ne ait yazıtiplerini içermektedir. - https://sourceforge.net/projects/pisilinux/files/source/orkhun.tar.gz - desktop/font/Orkhun-fonts/pspec.xml - - - Orkhun-fonts - - /usr/share/fonts - /usr/share/doc - - - - - 2018-12-14 - 0.1 - First release - Sezai Yeniay - sezaiyeniay@pisilinux.org - - - - - - adobe-source-code-pro-fonts - http://www.gnome.org - - Pisi Linux Admins - admins@pisilinux.org - - OFL - desktop.font - Monospaced font family for user interface and coding environments. - Source Code Pro is a set of OpenType fonts that have been designed to work well in user interface (UI) environments. - https://github.com/adobe-fonts/source-code-pro/archive/refs/tags/2.038R-ro/1.058R-it/1.018R-VAR.tar.gz - desktop/font/adobe-source-code-pro-fonts/pspec.xml - - - adobe-source-code-pro-fonts - - /usr/share/fonts - /usr/share/doc - - - - - 2021-06-05 - 2.038R - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - zekton - http://www.myfonts.com/fonts/typodermic/zekton - - Osman Erkan - osman.erkan@pisilinux.org - - GPL - as-is - data:font - desktop.font - Zekton yazı fontu - Zekton yazı fontu - PiSiLinux için Zekton yazı fontu. - PiSiLinux için Zekton yazı fontu. - http://www.e17-stuff.org/CONTENT/content-files/50553-zekton.tar.gz - desktop/font/zekton/pspec.xml - - - zekton - - /usr/share/fonts/zekton - /usr/share/doc/zekton - - - - - 2021-12-04 - 061222 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - droid-fonts - https://www.droidfonts.com/ - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - Apache-2.0 - data:font - desktop.font - Droid, TrueType font ailesi - Droid is a TrueType font family intended for use on the small screens of mobile handsets - Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons - Android platformunda kullanılmak üzere oluşturulmuş font ailesi. - Droid is a font family created by Ascender Corporation for use by the Open Handset Alliance platform, Android. The font families, known simply as Droid, are Droid Sans, Droid Serif, and Droid Sans Mono. - Droid is een TrueType font familie gemaakt voor gebruik op de kleine schermen van mobiele telefoons - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/pardusarchives/droid_fonts_20100815.tar.gz - desktop/font/droid-fonts/pspec.xml - - - droid-fonts - - /etc/fonts - /usr/share/fonts - /usr/share/doc - - - 65-droid-fonts-sans-fontconfig.conf - 60-droid-fonts-sans-mono-fontconfig.conf - 59-droid-fonts-serif-fontconfig.conf - - - - - 2019-11-05 - 0.0_20100821 - Rebuild remove Ahem.ttf - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.0_20100821 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 0.0_20100821 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-09-18 - 0.0_20100821 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-28 - 0.0_20100821 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - exo-fonts-1 - https://fonts.google.com/specimen/Exo - - Blue Devil - bluedevil@sctzine.com - - OFL - data:doc - desktop.font - Exo Font Family - Exo Yazıyüzü Ailesi - Exo is a contemporary geometric sans serif typeface that tries to convey a technological/futuristic feeling while keeping an elegant design. - exo-fonts paketi Google tarafından desteklenen çağdaş geometrik sans serif türü bir yazıyüzüdür. - https://sourceforge.net/projects/pisilinux/files/source/exo-font.tar.gz - desktop/font/exo-fonts-1/pspec.xml - - - exo-fonts-1 - Exo Font Family. - - /usr/share/doc - /usr/share/fonts - - - - - 2020-08-30 - 1.0 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - amiri-fonts - https://www.amirifont.org - - Stefan Gronewold - groni@pisilinux.org - - custom:OFL - data:font - desktop.font - Arabic TTF fonts - Arapça TTF yazı tipleri - Amiri is a classical Arabic typeface. - Amiri klasik bir Arap yazıdır. - https://github.com/khaledhosny/amiri-font/releases/download/0.111/amiri-0.111.zip - desktop/font/amiri-fonts/pspec.xml - - - amiri-fonts - - /usr/share/doc - /usr/share/fonts/amiri - /usr/share/amiri-fonts - - - - - 2018-07-31 - 0.111 - Rebuild for new Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2018-05-08 - 0.111 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - noto-fonts - http://www.google.com/get/noto - - Osman Erkan - osman.erkan@pisilinux.org - - Apache - data:font - desktop.font - Google Noto TTF fonts - Google Noto TTF yazı tipleri - Noto fonts are open source. All Noto fonts are published under the SIL Open Font License, Version 1.1. Language data and some sample texts are from the Unicode CLDR project. - Tüm diller/karakterlerin desktelendiği yazı tipidir. - https://sourceforge.net/projects/pisilinux/files/source/noto-fonts-20190623.tar.xz - desktop/font/noto-fonts/pspec.xml - - - noto-fonts - - /etc/fonts - /usr/share/doc - /usr/share/fonts/noto - - - archlinux/66-noto-sans.conf - archlinux/66-noto-serif.conf - archlinux/66-noto-mono.conf - - - - noto-fonts-ttf-croscore - noto-fonts-ttf-croscore, Chrome OS core fonts - noto-fonts-ttf-croscore, Chrome OS için temel yazı tipleri - - /usr/share/fonts/TTF - - - - noto-fonts-extra - noto-fonts-ttf-croscore, Chrome OS core fonts Condensed SemiBold Medium Black Light - - /usr/share/fonts/noto/*-Condensed*.ttf - /usr/share/fonts/noto/*-SemiBold*.ttf - /usr/share/fonts/noto/*-SemiCondensed*.ttf - /usr/share/fonts/noto/*-Medium*.ttf - /usr/share/fonts/noto/*-Thin*.ttf - /usr/share/fonts/noto/*-Black*.ttf - /usr/share/fonts/noto/*-Light*.ttf - /usr/share/fonts/noto/*-Extra*.ttf - - - - - 2020-12-09 - 20190623 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-02-07 - 20190623 - Rebuild for New Toolchain - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2019-11-09 - 20190623 - Rebuild for New Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2018-07-31 - 20150929 - Rebuild for New Toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2017-03-05 - 20150929 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 20150929 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-12 - 20150929 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - unicode-ucd - http://www.unicode.org/ucd - - PisiLinux Community - admins@pisilinux.org - - MIT - desktop.font - Unicode Character Database - Unicode Karakter Veritabanı - The Unicode Character Database (UCD) consists of a number of data files listing Unicode character properties and related data. It also includes data files containing test data for conformance to several important Unicode algorithms. - Unicode karakter veritabanı, unicode karakter özelliklerini ve bilgilerini içeren birkaç veri dosyasından oluşur. - https://www.unicode.org/Public/zipped/12.1.0/UCD.zip - desktop/font/unicode-ucd/pspec.xml - - - unicode-ucd - - /usr/share/unicode/ucd - /usr/share/doc - - - copyright.html - - - - - 2020-01-18 - 12.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 11.0.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-14 - 11.0.0 - Rebuild and Version Bump - Stefan Gronewold - groni@pisilinux.org - - - 2017-03-01 - 9.0.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-27 - 6.3.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gnu-gs-fonts-std - https://www.ghostscript.com - - Sezai Yeniay - sezaiyeniay@pisilinux.org - - GPLv2 - data - desktop.font - Ghostscript standard fonts - Ghostscript standard yazıtipleri - Ces fontes ont été construites à partir des fontes URW distribuées avec ghostcript. Il n'y AUCUN changemen dans leur partie latine. - gnu-gs-fonts-std contains fonts that were made from the free URW fonts distributed with ghostcript. There are no changes in the latin part of them. - Bu yazıtipleri ghostscript ile birlikte dağıtılan özgür URW yazıtiplerinden türetilmiştir. Latin bölümünde hiçbir değişiklik yapılmamıştır. - mirrors://sourceforge/ghostscript/ghostscript-fonts-std-8.11.tar.gz - desktop/font/gnu-gs-fonts-std/pspec.xml - - - gnu-gs-fonts-std - - /usr/share/fonts/default/ghostscript - /usr/share/doc - - - - - 2020-02-12 - 8.11 - Rebuild for new Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 8.11 - Rebuild for new Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 8.11 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 8.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-23 - 8.11 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - noto-emoji-fonts - http://www.google.com/get/noto - - Sami BABAT - samibabat@gmail.com - - CUSTOM:SIL - data:font - desktop.font - Google Noto Emoji fonts - Google Noto Emoji yazı tipleri ve emojiler - noto-emoji-fonts, Google Noto Emoji fonts. - Google Noto Emoji yazı tipleri ve emoji - https://github.com/googlefonts/noto-emoji/archive/refs/tags/v2020-09-16-unicode13_1.tar.gz - desktop/font/noto-emoji-fonts/pspec.xml - - - noto-emoji-fonts - noto-emoji, Google Noto Emoji fonts - - /usr/share/fonts/noto/*.ttf - /usr/share/doc/noto-emoji-fonts/ - - - - - 2021-05-16 - 2020.09.6 - First release - Sami BABAT - samibabat@gmail.com - - - - - - harfbuzz - http://www.freedesktop.org/software/harfbuzz - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - desktop.font - OpenType text shaping engine - The Harfbuzz package contains an OpenType text shaping engine. - https://github.com/harfbuzz/harfbuzz/archive/4.3.0.tar.gz - - git - meson - cairo-devel - glib2-devel - icu4c-devel - graphite2-devel - freetype-devel - expat-devel - python-six - gtk-doc - docbook-xsl - gobject-introspection-devel - - desktop/font/harfbuzz/pspec.xml - - - harfbuzz - - cairo - glib2 - icu4c - libgcc - freetype - graphite2 - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/gir-1.0 - - - - harfbuzz-devel - - glib2-devel - icu4c-devel - graphite2-devel - freetype-devel - harfbuzz - - - /usr/include/harfbuzz - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - harfbuzz-32bit - 32-bit shared libraries for harfbuzz - emul32 - emul32 - - icu4c-32bit - freetype-32bit - fontconfig-32bit - cairo-32bit - - - cairo-32bit - libgcc - glib2-32bit - icu4c-32bit - freetype-32bit - - - /usr/lib32 - - - - harfbuzz-docs - harfbuzz reference documents - data:doc - - /usr/share/gtk-doc - - - - - 2022-05-25 - 4.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-13 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-27 - 3.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 2.8.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-26 - 2.7.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-23 - 2.7.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 2.6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-31 - 2.3.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-13 - 2.0.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 1.8.3 - Rebuild and version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2018-01-29 - 1.7.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.4.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.2.6 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-04-06 - 1.2.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - cln - http://www.ginac.de/CLN/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - CLN, une librairie de classes (C++) pour les nombres. - A class library (C++) for numbers - Sayılar için bir C++ sınıf kütüphanesi - cln is a library for efficient computations with all kinds of numbers in arbitrary precision. - cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir. - http://www.ginac.de/CLN/cln-1.3.6.tar.bz2 - - gmp-devel - - science/mathematics/cln/pspec.xml - - - cln - - gmp - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - cln-devel - Development files for cln - cln için geliştirme dosyaları - - cln - gmp-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-11 - 1.3.6 - Rebuild for new toolchain. - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-13 - 1.3.4 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-28 - 1.3.4 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-29 - 1.3.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - metis - http://glaros.dtc.umn.edu/gkhome/metis/metis/overview - - Blue Devil - bluedevil@sctzine.com - - custom - library - science.mathematics - A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices - Aralıklı matrisler için, çizgeleri bölümleme, sonlu eleman ağlarını bölümleme programları. - METIS est une famille de programmes pour partitionner des graphes non structurés, des hypergraphes et calculer la renumérotation de matrice pour réduire son remplissage. - METIS is a family of programs for partitioning unstructured graphs and hypergraphs and computing fill-reducing orderings of sparse matrices. - metis, aralıklı matrisler için, çizgeleri bölümleme, sonlu eleman ağlarını bölümleme programları sunar. - https://bitbucket.org/petsc/pkg-metis/get/v5.1.0-p8.tar.bz2 - - cmake - - science/mathematics/metis/pspec.xml - - - metis - A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices - - /usr/lib - /usr/share/doc - - - - metis-devel - Development files for metis - metis için geliştirme dosyaları - metis-devel, metis için geliştirme dosyalarını içerir. - - metis - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-26 - 5.1.0_p8 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - spread-sheet-widget - https://www.gnu.org - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - science.mathematics - Library for Gtk+ which provides a widget for viewing and manipulating 2 dimensional tabular data - Library for Gtk+ which provides a widget for viewing and manipulating 2 dimensional tabular data - spread-sheet-widget - http://alpha.gnu.org/gnu/ssw/spread-sheet-widget-0.6.tar.gz - - gtk3-devel - glib2-devel - python3-devel - - science/mathematics/spread-sheet-widget/pspec.xml - - - spread-sheet-widget - - gtk3 - - - /usr/lib - /usr/share/doc - /usr/share/info - - - - spread-sheet-widget-devel - - spread-sheet-widget - gtk3-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-09 - 0.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-04-10 - 0.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qrupdate - https://sourceforge.net/projects/qrupdate - - Blue Devil - bluedevil@sctzine.com - - GPLv3 - library - science.mathematics - Fortran library for fast updates of QR and Cholesky decompositions. - Hızlı QR ve Cholesky dekompozisyonları için Fortran kitaplığı. - qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. - qrupdate, hızlı QR ve Cholesky dekompozisyonları için Fortran kitaplığı sunar. - https://downloads.sourceforge.net/project/qrupdate/qrupdate/1.2/qrupdate-1.1.2.tar.gz - - blas-devel - libquadmath - lapack-devel - - science/mathematics/qrupdate/pspec.xml - - - qrupdate - Fortran library for fast updates of QR and Cholesky decompositions. - - blas - lapack - libgfortran - - - /usr/lib - /usr/share/doc/qrupdate - - - - - 2020-05-26 - 1.1.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - djbfft - http://cr.yp.to/djbfft.html - - PisiLinux Community - admins@pisilinux.org - - public-domain - library - science.mathematics - Fast float library - Hızlı küsürlü sayı kitaplığı - An extremely fast library for floating-point convolution. - djbfft çok hızlı küsürlü sayı bükülme kitaplığıdır. - http://cr.yp.to/djbfft/djbfft-0.76.tar.gz - - gcc3.patch - shared.patch - headers.patch - - science/mathematics/djbfft/pspec.xml - - - djbfft - - /usr/lib - /usr/share/doc - - - - djbfft-devel - Development files for djbfft - djbfft için geliştirme dosyaları - - djbfft - - - /usr/include - - - - - 2020-01-19 - 0.76 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.76 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 0.76 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.76 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.76 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - octave - https://www.gnu.org/software/octave/ - - Blue Devil - bluedevil@sctzine.com - - GPL - library - app:gui - science.mathematics - A high-level language, primarily intended for numerical computations. - Özellikle sayısal hesaplamalar için geliştirilmiş yüksek seviyeli bir programlama dili. - GNU Octave is software featuring a high-level programming language, primarily intended for numerical computations. Octave helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with MATLAB. It may also be used as a batch-oriented language. - octave, özellikle sayısal hesaplamalar için geliştirilmiş yüksek seviyeli bir programlama dilidir. Octave doğrusal ve doğrusal olmayan sayısal problemleri çözmede yardımcı olur. - https://ftp.gnu.org/gnu/octave/octave-5.2.0.tar.gz - - gperf - gnuplot - qrupdate - blas-devel - curl-devel - glpk-devel - hdf5-devel - fltk-devel - fftw3-devel - qhull-devel - arpack-devel - lapack-devel - qt5-linguist - libpcre-devel - freetype-devel - mesa-glu-devel - qt5-base-devel - readline-devel - sundials-devel - portaudio-devel - fontconfig-devel - libsndfile-devel - ghostscript-devel - qscintilla2-devel - SuiteSparse-devel - qt5-assistant-devel - GraphicsMagick-devel - - - octave-sundials4.patch - - science/mathematics/octave/pspec.xml - - - octave - A high-level language, primarily intended for numerical computations. - - blas - curl - fltk - glpk - hdf5 - fftw3 - qhull - arpack - lapack - libXft - libpcre - libXext - libgomp - alsa-lib - libglvnd - mesa-glu - freetype - qrupdate - qt5-base - readline - sundials - libXfixes - portaudio - fontconfig - libsndfile - libXcursor - libXrender - ghostscript - libgfortran - libXinerama - qscintilla2 - SuiteSparse - qt5-assistant - GraphicsMagick - - - /usr/lib - /usr/share/ - /usr/share/man - /usr/bin - /usr/libexec - /usr/share/doc/octave - /etc/ld.so.conf.d/octave.conf - - - - octave-devel - Development files for octave - octave için geliştirme dosyaları - octave-devel, octave için geliştirme dosyalarını içerir. - - octave - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-22 - 5.2.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - plotutils - http://www.gnu.org/software/plotutils/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - 2D vector graphics library - 2B vektörel grafik araçları - PlotUtils is a powerful C/C++ function library for exporting 2D vector graphics. - 2B vektörel grafik üretmeye yarayan C/C++ kütüphanesi ve araçlar - ftp://ftp.heanet.ie/pub/gnu/plotutils/plotutils-2.6.tar.gz - - libXaw-devel - libXext-devel - libXt-devel - - - plotutils-2.6-png15.patch - - science/mathematics/plotutils/pspec.xml - - - plotutils - - libSM - libICE - libXmu - libXaw - libXext - libXt - libX11 - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/libplot - /usr/share/ode - /usr/share/pic2plot - /usr/share/tek2plot - - - - plotutils-devel - Development files for plotutils - plotutils için geliştirme dosyaları - - plotutils - - - /usr/include - - - - - 2018-08-09 - 2.6 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-16 - 2.6 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 2.6 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gsl - http://www.gnu.org/software/gsl/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - science.mathematics - GNU scientific library - GNU bilimsel kütüphane - La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++. - The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. - C ve C++ programcıları tarafından kullanılan nümerik kütüphane - GNU Scientific Library (GSL) es una libería numérica para programadores C y C++. - https://ftp.gnu.org/gnu/gsl/gsl-2.6.tar.gz - science/mathematics/gsl/pspec.xml - - - gsl - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - gsl-devel - Development files for gsl - gsl için geliştirme dosyaları - - gsl - - - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2020-01-11 - 2.6 - Rebuild for toolchain - Kamil Atlı - suvari@pisilinux.org - - - 2019-10-05 - 2.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 2.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-30 - 1.16 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - rkward - http://rkward.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - science.mathematics - Veri analiz aracı - Veri işleme aracı - RKWard essaie de fournir une manière facile et extensible d'utiliser une EDI/IHM (IDE/GUI) pour le projet R. RKWar essaie de combiner la puissance du langage R avec la (relative) facilité d'utilisation des outils commerciaux de statistique. - RKWard aims to provide an easily extensible, easy to use IDE/GUI for the R-project. RKWard tries to combine the power of the R-language with the (relative) ease of use of commercial statistics tools. - RKWard, R projesi için kolayca genişleyebilir, ve kolay kullanılabilir bir grafik arayüz (geliştirme ortamı) sağlamayı amaçlar. R dilinin gücüyle ticari programların kullanım kolaylığını birleştirmeye çalışır. - https://download.kde.org/stable/rkward/0.7.0/src/rkward-0.7.0b.tar.gz - - extra-cmake-modules - R-devel - qt5-base-devel - qt5-webkit-devel - qt5-script-devel - kcoreaddons-devel - kdoctools-devel - ki18n-devel - kxmlgui-devel - ktexteditor-devel - kdewebkit-devel - - science/mathematics/rkward/pspec.xml - - - rkward - - R - kio - ki18n - kcrash - kparts - libgcc - kconfig - kxmlgui - kservice - qt5-base - kdewebkit - qt5-script - qt5-webkit - kcompletion - kcoreaddons - kjobwidgets - ktexteditor - kwindowsystem - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/applications - /usr/share/doc - /usr/share/icons - /usr/share/mime - /usr/share/kxmlgui5 - /usr/share/rkward - /usr/share/man - /usr/share/kservices5 - /usr/share/org.kde.syntax-highlighting - - - - - 2019-04-10 - 0.7.0b - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - sundials - https://computing.llnl.gov/projects/sundials - - Blue Devil - bluedevil@sctzine.com - - BSD - library - science.mathematics - Suite of nonlinear differential/algebraic equation solvers. - Doğrusal olmayan diferansiyel ve cebirsel eşitlik çözücüsü - sundials provides a suite of nonlinear differential/algebraic equation solvers. - sundials, doğrusal olmayan diferansiyel ve cebirsel eşitlik çözücüleri içeren bir kitaplıktır. - https://computation.llnl.gov/projects/sundials/download/sundials-5.3.0.tar.gz - - cmake - libquadmath - python-devel - openmpi-devel - SuiteSparse-devel - - science/mathematics/sundials/pspec.xml - - - sundials - A program that automatically solves layouts of Freecell and similar variants of Card Solitaire - - openmpi - libgomp - SuiteSparse - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - sundials-devel - Development files for sundials - - sundials - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-26 - 5.3.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - fftw3 - http://www.fftw.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - A library for computing the discrete Fourier transform (DFT) - Ayrık Fourier dönüşümü hesaplamak için bir kütüphane - FFTW v3 est une librairie sous-routine C pour le calcul discret de transformation de Fourier (DFT) dans une ou plusieurs dimensions, pour une entrée de taille arbitraire, aussi bien pour des données réeles ou complexes (ainsi que les données paires/impaires, i.e. la transformation discrète cosinus/sinus ou DCT/DST). - fftw3 is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). - fftw3, ayrık Fourier dönüşümü hesaplamak için kullanılabilecek bir C kütüphanesidir. - FFTW v3 es una librería con subrutinas C para computar la transformación Fourier discreta (DFT) en una o más dimensiones, con longitud de entrada arbitraria, para datos reales y complejos (y también de datos par/impar, i.e. transformación discreta coseno/seno DCT/DST). - ftp://ftp.fftw.org/pub/fftw/fftw-3.3.8.tar.gz - - libgfortran - libquadmath - gettext - - science/mathematics/fftw3/pspec.xml - - - fftw3 - - libquadmath - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/info - - - - fftw3-devel - Development files for fftw3 - fftw3 için geliştirme dosyaları - - fftw3 - - - /usr/lib/pkgconfig - /usr/include - /usr/share/doc/fftw3/html - - - - - 2020-01-12 - 3.3.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 3.3.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 3.3.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 3.3.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libqalculate - http://qalculate.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - science.mathematics - Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux. - Multi-purpose calculator library - Genel amaçlı hesap makinesi kütüphanesi - libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux. - libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir. - https://github.com/Qalculate/libqalculate/archive/v3.10.0.tar.gz - - doxygen - intltool - cln-devel - gmp-devel - curl-devel - mpfr-devel - glib2-devel - icu4c-devel - gettext-devel - libxml2-devel - ncurses-devel - readline-devel - perl-XML-Parser - perl-Locale-gettext - - science/mathematics/libqalculate/pspec.xml - - - libqalculate - Multi-purpose calculator library - - cln - gmp - curl - mpfr - icu4c - glib2 - libgcc - libxml2 - readline - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/qalculate - /usr/share/locale - - - - libqalculate-devel - Development files for libqalculate - libqalculate için geliştirme dosyaları - libqalculate-devel, libqalculate için geliştirme dosyalarını içerir. - - cln-devel - mpfr-devel - glib2-devel - libxml2-devel - libqalculate - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-26 - 3.10.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-03 - 3.7.0 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-15 - 2.6.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 0.9.10 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.9.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.9.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - matio - https://sourceforge.net/projects/matio/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - app:console - science.mathematics - C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files - Matlab dosyalarını okuyup/yazmak için bir C kitaplığı - matio is an open-source library for reading/writing MATLAB MAT files. This library is designed for use by programs/libraries that do not have access or do not want to rely on MATLAB's shared library. - matio, Matlab MAT dosyalarını okuyup/yazmak için geliştirilmiş, sınırlı Fortran 90 arayüzüne sahip bir C kitaplığıdır. - mirrors://sourceforge/matio/matio-1.5.17.tar.gz - - hdf5-devel - - science/mathematics/matio/pspec.xml - - - matio - - hdf5 - - - /usr/share - /usr/lib - /usr/bin - /usr/share/doc/matio - - - - matio-devel - Development files for matio - matio için geliştirme dosyaları - matio-devel, matio için geliştirme dosyalarını içerir. - - matio - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-06-08 - 1.5.17 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - SuiteSparse - http://faculty.cse.tamu.edu/davis/suitesparse.html - - Pisi Linux Community - admin@pisilinux.org - - GPL - library - science.mathematics - SuiteSparse, a suite of Sparse matrix software - Sparse matrix kütüphanesi - Librairie de matrices Sparse. - SuiteSparse is a single archive that contains sparse matrix libraries. - SuiteSparse, Sparse matrix kütüphanesi içerir. - https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v5.7.2.tar.gz - - cmake - blas-devel - metis-devel - libquadmath - lapack-devel - intel-tbb-devel - - - suitesparse-no-demo.patch - - science/mathematics/SuiteSparse/pspec.xml - - - SuiteSparse - SuiteSparse, a suite of Sparse matrix software - - blas - metis - lapack - libgomp - intel-tbb - - - /usr/lib - /usr/share/doc - - - - SuiteSparse-devel - Development files for SuiteSparse - SuiteSparse için geliştirme dosyaları - SuiteSparse-devel, SuiteSparse için geliştirme dosyalarını içerir. - - SuiteSparse - - - /usr/include - - - - - 2020-05-24 - 5.7.2 - Major Version Bump - Blue Devil - bluedevil@sctzine.com - - - 2017-04-24 - 4.4.4 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.4.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-11 - 4.4.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - netcdf - https://www.unidata.ucar.edu/software/netcdf/ - - PisiLinux Community - admins@pisilinux.org - - UCAR-Unidata - library - science.mathematics - Librairie scientifique et interface pour l'accès aux données orientées tableaux. - Scientific library and interface for array oriented data access - Dizi (array) odaklı veri erişimi için arayüz ve bilimsel kütüphane - netcdf (network common data form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. - ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.6.1.tar.gz - - hdf5-devel - curl-devel - libgfortran - - science/mathematics/netcdf/pspec.xml - - - netcdf - - hdf5 - curl - libgfortran - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/info - - - - netcdf-devel - Development files for netcdf - netcdf için geliştirme dosyaları - - netcdf - hdf5-devel - curl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2019-02-06 - 4.6.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-07 - 4.6.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-16 - 4.5.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-16 - 4.4.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-16 - 4.4.1 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-25 - 4.4.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - pspp - http://www.gnu.org/software/pspp/pspp.html - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - science.mathematics - GNU PSPP is a program for statistical analysis of sampled data - PSPP bir örneklenmiş veri istatistik uygulamasıdır - GNU PSPP is a program for statistical analysis of sampled data - PSPP bir örneklenmiş veri istatistik uygulamasıdır - pspp - http://ftp.gnu.org/gnu/pspp/pspp-1.4.1.tar.gz - - python3-devel - cairo-devel - gsl-devel - gtk3-devel - gtksourceview3-devel - plotutils-devel - postgresql-lib - ncurses-devel - readline-devel - texinfo - desktop-file-utils - libxml2-devel - libglade-devel - gettext-devel - zlib-devel - icon-theme-hicolor - spread-sheet-widget-devel - - science/mathematics/pspp/pspec.xml - - - pspp - GNU PSPP is a program for statistical analysis of sampled data - - gsl - gtk3 - zlib - cairo - glib2 - pango - libxml2 - ncurses - readline - gtksourceview3 - postgresql-lib - icon-theme-hicolor - spread-sheet-widget - - - /etc/pspp - /usr/bin - /usr/lib - /usr/share/appdata - /usr/share/applications - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/mime - /usr/share/pspp - /usr/share/metainfo/org.fsf.pspp.metainfo.xml - - - pspp.desktop - splash.png - - - - pspp-docs - Documents for PSPP - - pspp - - - /usr/share/doc - /usr/share/info - - - - - 2020-09-09 - 1.4.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-10-05 - 1.3.0a - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-28 - 1.3.0a - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libspiro - http://libspiro.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.mathematics - Library to simplify the drawing of beautiful curves - Eğri çizimi kütüphanesi - libspiro is a library that will take an array of spiro control points and convert them into a series of bezier splines which can then be used in the myriad of ways the world has come to use beziers. - libspiro, verilen kontrol noktalarını bezier eğrilerine çeviren bir kütüphanedir. - https://github.com/fontforge/libspiro/archive/refs/tags/20200505.tar.gz - science/mathematics/libspiro/pspec.xml - - - libspiro - - /usr/lib - /usr/share/doc - - - - libspiro-devel - Development files for libspiro - libspiro için geliştirme dosyaları - - libspiro - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2021-08-10 - 1.1.0.20200505 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 0.5.20190731 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 0.5.20190731 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.5.20150702 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-20 - 0.5.20150702 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 20071029 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 20071029 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - lapack - http://www.netlib.org/lapack - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.mathematics - Linear Algebra PACKage - Doğrusal cebir paketi - LAPACK is a standard library for numerical linear algebra. LAPACK provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. - LAPACK, nümerik doğrusal cebir için yazılmış standart bir kütüphanedir. Eşanlı doğrusal denklemler sistemini, doğrusal denklemler sistemindeki en küçük kareler tekniğini, özdeğer ve tekil değer problemlerini çözmek için pekçok yordamlar içerir. - https://github.com/Reference-LAPACK/lapack/archive/v3.9.0.tar.gz - - libgfortran - cmake - - - lapack-3.9.0-lapacke-shared.patch - - science/mathematics/lapack/pspec.xml - - - blas - Basic Linear Algebra Subprograms - Temel lineer cebir yordamları - Blas is a standard library which provides a number of basic algorithms for numerical algebra. - blas, temel lineer cebir yordamları içerir - - libgfortran - - - /usr/lib/libblas.so* - - - - blas-devel - Development files for blas - blas için geliştirme dosyaları - blas-devel, blas için geliştirme dosyaları içerir - static - - blas - - - /usr/lib/libblas.a - /usr/lib/pkgconfig/blas.pc - - - - cblas - C interface to BLAS - BLAS kitaplığının C arayüzü - Blas is a standard library which provides a number of basic algorithms for numerical algebra. - cblas, BLAS kitaplığının C arayüzü olan yordamları içerir - - blas - - - /usr/lib/libcblas.so* - - - - cblas-devel - Development files for CBLAS - cblas için geliştirme dosyaları - cblas-devel provides development files for cblas - cblas-devel, cblas için geliştirme dosyaları içerir - - blas-devel - cblas - - - /usr/lib/libcblas.a - /usr/include/cblas* - /usr/lib/pkgconfig/cblas.pc - /usr/lib/cmake/cblas-3.9.0/cblas* - - - - lapack - Linear Algebra PACKage - - libgcc - libgfortran - blas - - - /usr/share/doc - /usr/lib/liblapack.so* - - - - lapack-devel - Development files for lapack - lapack için geliştirme dosyaları - lapack-devel, lapack için geliştirme dosyaları içerir - static - - lapack - blas-devel - - - /usr/lib/cmake/lapack* - /usr/lib/liblapack.a - /usr/lib/pkgconfig/lapack.pc - - - - - 2020-11-07 - 3.9.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-12 - 3.9.0 - Fix dependency - Blue DeviL - bluedevil@sctzine.com - - - 2020-01-19 - 3.9.0 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2019-12-12 - 3.9.0 - Version bump - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-14 - 3.8.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-01 - 3.8.0 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-04-15 - 3.7.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-23 - 3.5.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - qalculate-gtk - https://qalculate.github.io/ - - Blue Devil - bluedevil@sctzine.com - - GPLv2+ - app:gui - science.mathematics - GTK frontend for libqalculate. - Qalculate! is a multi-purpose cross-platform desktop calculator. It is simple to use but provides power and versatility normally reserved for complicated math packages, as well as useful tools for everyday needs (such as currency conversion and percent calculation). - https://github.com/Qalculate/qalculate-gtk/archive/v3.10.0.tar.gz - - intltool - gtk3-devel - cairo-devel - pango-devel - gettext-devel - libxml2-devel - python3-devel - readline-devel - gdk-pixbuf-devel - libqalculate-devel - - science/mathematics/qalculate-gtk/pspec.xml - - - qalculate-gtk - GTK frontend for libqalculate. - - gtk3 - cairo - pango - libxml2 - python3 - gdk-pixbuf - libqalculate - - - /usr/share - /usr/lib - /usr/share/man - /usr/bin - /usr/share/doc/qalculate-gtk - - - - - 2020-05-26 - 3.10.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - ilmbase - http://www.openexr.com - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.misc - Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR - ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar - IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). - IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. - https://github.com/AcademySoftwareFoundation/openexr/archive/v2.5.3.tar.gz - science/misc/ilmbase/pspec.xml - - - ilmbase - - libgcc - - - /usr/lib - /usr/share/doc - - - - ilmbase-devel - Development files for ilmbase - ilmbase için geliştirme dosyaları - - ilmbase - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-20 - 2.5.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.2.1 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-08-06 - 2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 2.2.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 2.0.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ntl - https://www.shoup.net/ntl/ - - Blue Devil - bluedevil@sctzine.com - - LGPL - library - science.misc - A Library for doing Number Theory. - Sayı kuramı için bir kitaplık. - NTL is a high-performance, portable C++ library providing data structures and algorithms for manipulating signed, arbitrary length integers, and for vectors, matrices, and polynomials over the integers and over finite fields. - ntl, sayı kuramı için bir kitaplık sunar. - https://www.shoup.net/ntl/ntl-11.4.3.tar.gz - - gmp-devel - gf2x-devel - - science/misc/ntl/pspec.xml - - - ntl - A Library for doing Number Theory. - - gmp - gf2x - - - /usr/lib/libntl* - - - - ntl-devel - Development files for ntl - ntl için geliştirme dosyaları - ntl-devel, ntl için geliştirme dosyalarını içerir. - - ntl - - - /usr/include - /usr/lib/pkgconfig - - - - ntl-docs - Documentation files for ntl - ntl için belgelendirme dosyaları - ntl-docs, ntl için belgelendirme dosyalarını içerir. - - ntl - - - /usr/share/doc - - - - - 2020-05-20 - 11.4.3 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - fplll - https://github.com/fplll/fplll - - Blue Devil - bluedevil@sctzine.com - - LGPLv2.1 - library - app:console - science.misc - Lattice algorithms using floating-point arithmetic. - Kayan-noktalı sayıları aritmetiği kullanan latis algoritmaları. - fplll contains implementations of several lattice algorithms. The implementation relies on floating-point orthogonalization, and LLL [LLL82] is central to the code, hence the name. - fplll, kayan-noktalı sayıları aritmetiği kullanan latis algoritmaları sunar. - https://github.com/fplll/fplll/archive/5.3.2.tar.gz - - qd-devel - gmp-devel - mpfr-devel - - science/misc/fplll/pspec.xml - - - fplll - Lattice algorithms using floating-point arithmetic. - - qd - gmp - mpfr - - - /usr/bin - /usr/share/fplll - /usr/share/doc/fplll - /usr/lib/libfplll* - - - - fplll-devel - Development files for fplll - fplll için geliştirme dosyaları - fplll-devel, fplll için geliştirme dosyalarını içerir. - - fplll - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-20 - 5.3.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - m4rie - https://bitbucket.org/malb/m4rie - - Blue Devil - bluedevil@sctzine.com - - GPLv2+ - library - science.misc - Algorithms for linear algebra over F2^e. - F2^e üzerinden lineer cebir için algoritmalar. - M4RIE is a library for fast arithmetic with dense matrices over GF(2^e) for 2 ≤ e≤ 16. The name stems from the fact that is relies heavily on M4RI. M4RIE is available under the General Public License Version 2 or later (GPLv2+). - m4rie, F2^e üzerinden lineer cebir için algoritmalar sunar. - https://bitbucket.org/malb/m4rie/get/release-20200115.tar.gz - - m4ri-devel - - science/misc/m4rie/pspec.xml - - - m4rie - Algorithms for linear algebra over F2^e. - - m4ri - - - /usr/lib - /usr/share/doc/m4rie - - - - m4rie-devel - Development files for m4rie - m4rie için geliştirme dosyaları - m4rie-devel, m4rie için geliştirme dosyalarını içerir. - - m4rie - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-20 - 20200125 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - eigen3 - http://eigen.tuxfamily.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2-with-exceptions - library - science.misc - Lightweight C++ template library for linear algebra - Lineer cebir için hafif bir C++ şablon kitaplığı - eigen3 is a lightweight C++ template library for vector and matrix math, a.k.a. linear algebra. - Eigen3, lineer cebir için kullanılan hafif bir C++ şablon kitaplığıdır. - http://bitbucket.org/eigen/eigen/get/3.3.7.tar.bz2 - - cmake - freeglut-devel - fftw3-devel - gmp-devel - mpfr-devel - mesa-devel - - science/misc/eigen3/pspec.xml - - - eigen3 - - /usr/include - /usr/share - - - - - 2020-01-27 - 3.3.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 3.3.7 - Rebuild. - Erkan Işık - erkanisik@pisilinux.org - - - 2018-08-03 - 3.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 3.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-17 - 3.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.2.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-23 - 3.2.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libindi - http://www.indilib.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - library - science.misc - Astronomical control protocol library - indilib is a distributed control protocol designed to operate astronomical instrumentation. indilib is small, flexible, easy to parse, and scalable. - https://github.com/indilib/indi/archive/v1.9.3.tar.gz - - libjpeg-turbo-devel - qt5-base-devel - libtheora-devel - libnova-devel - cfitsio-devel - libusb-devel - fftw3-devel - boost-devel - curl-devel - zlib-devel - gsl-devel - pkgconfig - cmake - - science/misc/libindi/pspec.xml - - - libindi - - fftw3 - libogg - libtheora - libnova - cfitsio - gsl - curl - libjpeg-turbo - libusb - gsl - libgcc - zlib - - - /usr/bin - /usr/lib - /lib/udev/rules.d - /usr/share/indi - /usr/share/doc - - - - libindi-devel - Development files for libindi - - libindi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-14 - 1.9.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-14 - 1.9.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-12 - 1.8.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-27 - 1.8.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.8.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-07 - 1.7.4 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 1.6.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 1.6.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-18 - 1.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-18 - 1.2.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - opencascade - https://www.opencascade.com/ - - Blue Devil - bluedevil@sctzine.com - - LGPLv2.1 - app:console - library - science.misc - Open CASCADE Technology, 3D modeling and numerical simulation. - 3 boyutlu modelleme ve nümerik simülasyon kitaplık ve araçları. - Open CASCADE Technology (OCCT) is an object-oriented C++ class library designed for rapid production of sophisticated domain-specific CAD/CAM/CAE applications.. - opencascade, 3 boyutlu modelleme ve nümerik simülasyon kitaplık ve araçları sunar. - https://github.com/tpaviot/oce/releases/download/official-upstream-packages/opencascade-7.4.0p1.snapshot.tar.gz - - cmake - tcltk-devel - ffmpeg-devel - libXmu-devel - freetype-devel - qt5-base-devel - intel-tbb-devel - fontconfig-devel - - - fix-install-dir-references.patch - cmake-fix-variable.patch - - science/misc/opencascade/pspec.xml - - - opencascade - Open CASCADE Technology, 3D modeling and numerical simulation. - - tcl - tcltk - ffmpeg - libXmu - freetype - libglvnd - qt5-base - intel-tbb - fontconfig - - - /usr/lib - /usr/share/doc - /usr/bin - /etc/profile.d - /usr/share/opencascade - - - - opencascade-devel - Development files for opencascade - opencascade için geliştirme dosyaları - opencascade-devel, opencascade için geliştirme dosyalarını içerir. - - opencascade - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-28 - 7.4.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - libnova - http://libnova.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - science.misc - Celestial Mechanics and Astronomical Calculation Library - Gökyüzü mekaniği ve astronomik hesaplama kütüphanesi - libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library. - libnova genel amaçlı, çift hassasiyetli, gökyüzü mekaniği, astrometri ve astrodinamik kütüphanesidir. - https://sourceforge.net/projects/libnova/files/libnova/v%200.15.0/libnova-0.15.0.tar.gz - science/misc/libnova/pspec.xml - - - libnova - - /usr/bin - /usr/lib - /usr/share/doc - - - - libnova-devel - Development files for libnova - libnova için geliştirme dosyaları - - libnova - - - /usr/include - /usr/bin/libnovaconfig - - - - - 2020-01-27 - 0.15.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 0.15.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-13 - 0.15.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-18 - 0.14.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.14.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.14.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - muparser - http://muparser.beltoforion.de/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - science.misc - Mathematical expressions parser library - Matematiksel ifade ayrıştırma kitaplığı - muparser is a mathematical expressions parser library. It is based on transforming an expression into a bytecode and precalculating constant parts of it. - muparser, matematiksel ifadelerin ayrıştırılmasında kullanılan bir kitaplıktır. - https://github.com/beltoforion/muparser/archive/v2.2.6.tar.gz - science/misc/muparser/pspec.xml - - - muparser - - libgcc - - - /usr/lib - /usr/share/doc - - - - muparser-devel - Development files for muparser - muparser için geliştirme dosyaları - - muparser - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-27 - 2.2.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-07 - 2.2.5 - Release Bump - Rebuild with new toolchain - admin@pisilinux.org - - - 2017-04-15 - 2.2.5 - Release Bump - Rebuild with new toolchain - admin@pisilinux.org - - - 2016-06-09 - 2.2.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-08 - 2.2.5 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qhull - http://www.qhull.org/ - - Blue Devil - bluedevil@sctzine.com - - custom - app:console - library - science.misc - A general dimension code for computing convex hulls and related structures. - Dışbukey gövdeler ve ilgili yapılar için genel boyutlu algoritmalar. - Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. - qhull, dışbukey gövdeler ve ilgili yapılar için genel boyutlu algoritmalar sunar. - https://github.com/qhull/qhull/archive/2019.1.tar.gz - - cmake - - - qhull-pic.patch - qhull-no-static.patch - - science/misc/qhull/pspec.xml - - - qhull - A general dimension code for computing convex hulls and related structures. - - libgcc - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/doc/qhull - - - - qhull-devel - Development files for qhull - qhull için geliştirme dosyaları - qhull-devel, qhull için geliştirme dosyalarını içerir. - - qhull - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-27 - 2019.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - imath - https://www.openexr.com/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.misc - Library of 2D and 3D vector, matrix, and math operations for computer graphics - Bilgisayar grafikleri için 2B ve 3B vektör, matris ve matematik işlemleri kitaplığı - https://github.com/AcademySoftwareFoundation/Imath/archive/refs/tags/v3.1.3.tar.gz - - cmake - doxygen - boost-devel - boost-python3 - python3-devel - python3-numpy - python3-sphinx - python3-breathe - - - fedora/imath-python-test.patch - fedora/209.patch - fedora/imath-docs.patch - - science/misc/imath/pspec.xml - - - imath - - libgcc - python3 - boost-python3 - - - /usr/lib - /usr/share - /usr/share/doc - - - ilmbase - - - - imath-devel - Development files for imath - - imath - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - ilmbase-devel - - - - - 2021-10-26 - 3.1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - iml - https://cs.uwaterloo.ca/~astorjoh/iml.html - - Blue Devil - bluedevil@sctzine.com - - GPLv2+ - library - science.misc - IML - Integer Matrix Library. - Tamsayı matris algoritmaları C kitaplığı. - IML is a free library of C source code which implements algorithms for computing exact solutions to dense systems of linear equations over the integers. - iml, tamsayı matris algoritmaları C kitaplığı sunar. - http://www.cs.uwaterloo.ca/~astorjoh/iml-1.0.5.tar.bz2 - - gmp-devel - cblas-devel - - science/misc/iml/pspec.xml - - - iml - IML - Integer Matrix Library. - - gmp - cblas - - - /usr/share - /usr/lib - /usr/share/doc/iml - - - - iml-devel - Development files for iml - iml için geliştirme dosyaları - iml-devel, iml için geliştirme dosyalarını içerir. - - iml - - - /usr/include - - - - - 2020-05-20 - 1.0.5 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - m4ri - https://bitbucket.org/malb/m4ri - - Blue Devil - bluedevil@sctzine.com - - GPLv2+ - library - science.misc - Algorithms for linear algebra over F_2. - F2 üzerinden lineer cebir için algoritmalar. - M4RI is a library for fast arithmetic with dense matrices over F2. The name M4RI comes from the first implemented algorithm: The “Method of the Four Russians” inversion algorithm published by Gregory Bard. This algorithm in turn is named after the “Method of the Four Russians” multiplication algorithm which is probably better referred to as Kronrod's method. - m4ri, F2 üzerinden lineer cebir için algoritmalar sunar. - https://bitbucket.org/malb/m4ri/get/release-20200125.tar.gz - - libpng-devel - - science/misc/m4ri/pspec.xml - - - m4ri - Algorithms for linear algebra over F_2. - - libpng - - - /usr/lib - /usr/share/doc/m4ri - - - - m4ri-devel - Development files for m4ri - m4ri için geliştirme dosyaları - m4ri-devel, m4ri için geliştirme dosyalarını içerir. - - m4ri - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-20 - 20200125 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - wcslib - http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - science.misc - A C library that implements the 'World Coordinate System' (WCS) standard in FITS - The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. - ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-6.4.tar.bz2 - - gcc - flex - libgfortran - cfitsio-devel - - science/misc/wcslib/pspec.xml - - - wcslib - - cfitsio - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - wcslib-devel - Development files for wcslib - - wcslib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-27 - 6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-07 - 5.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 5.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-15 - 5.16 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-18 - 5.12 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - arpack - https://github.com/opencollab/arpack-ng - - Blue Devil - bluedevil@sctzine.com - - BSD - library - science.misc - Collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. - Büyük ölçekli özdeğer problemleri çözmek için tasarlanmış Fortran77 alt programları. - ARPACK-NG is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. - arpack, büyük ölçekli özdeğer problemleri çözmek için tasarlanmış Fortran77 alt programları sunar. - https://github.com/opencollab/arpack-ng/archive/3.7.0.tar.gz - - blas-devel - libquadmath - libgfortran - lapack-devel - openmpi-devel - - science/misc/arpack/pspec.xml - - - arpack - Collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. - - blas - lapack - openmpi - libgfortran - libquadmath - - - /usr/lib - /usr/share/doc/arpack - - - - arpack-devel - Development files for arpack - arpack için geliştirme dosyaları - arpack-devel, arpack için geliştirme dosyalarını içerir. - - arpack - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-24 - 3.7.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - coin - https://bitbucket.org/Coin3D/coin/wiki/Home - - PisiLinux Community - admin@pisilinux.org - - GPLv2 - app:console - science.misc - Coin3D is a high-level 3D graphics toolkit. - 3D Üst düzey grafiksel araç takımı - Is a high-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1. - coin,SGI Open Inventor 2.1 ile tam uyumlu grafiksel 3D araç takımı - https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz - - libXext-devel - mesa-devel - libSM-devel - libICE-devel - doxygen - libglade-devel - mesa-glu-devel - - - clang-name-lookup.diff - fix_gcc_4_8_1.patch - Coin-2.5.0-inttypes.patch - Coin-2.4.6-man3.diff - - science/misc/coin/pspec.xml - - - coin - - libX11 - libglvnd - libXext - mesa - libSM - libICE - libglade - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/Coin - - - - coin-devel - Development files for coin - coin için geliştirme dosyaları - - coin - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - coin-docs - Documents for Coin - coin belgeleri - - /usr/share/doc - - - - - 2020-01-27 - 3.1.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 3.1.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-15 - 3.1.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 3.1.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gf2x - https://gforge.inria.fr/projects/gf2x/ - - Blue Devil - bluedevil@sctzine.com - - GPL - LGPL - library - science.misc - A library for multiplying polynomials over the binary field. - İkilik alan üzerinden polinom çarpması yapabilen bir C kitaplığı. - gf2x is a library for multiplying polynomials over the binary field. - gf2x, ikilik alan üzerinden polinom çarpması yapabilen bir C kitaplığı sunar. - https://gforge.inria.fr/frs/download.php/file/38243/gf2x-1.3.0.tar.gz - - libgcc - - science/misc/gf2x/pspec.xml - - - gf2x - A library for multiplying polynomials over the binary field. - - libgcc - - - /usr/lib - /usr/share/doc/gf2x - - - - gf2x-devel - Development files for g2fx - gf2x için geliştirme dosyaları - gf2x-devel, gf2x için geliştirme dosyalarını içerir. - - gf2x - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-20 - 1.3.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - libcerf - https://jugit.fz-juelich.de/mlz/libcerf/ - - Blue Devil - bluedevil@sctzine.com - - custom - library - science.misc - A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. - Dawson, Faddeeva, ve Voigt yordamları ile beraber karmaşık hata yordamlarının kesin ve verimli bir uygulaması olan bağımsız sayısal kitaplık. - libcerf provides a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. - libcerf, Dawson, Faddeeva, ve Voigt yordamları ile beraber karmaşık hata yordamlarının kesin ve verimli bir uygulaması olan bağımsız sayısal kitaplık sunar. - https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v1.13/libcerf-v1.13.tar.gz - - cmake - - science/misc/libcerf/pspec.xml - - - libcerf - A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. - - /usr/lib - /usr/share/man - /usr/share/doc/libcerf - - - - libcerf-devel - Development files for libcerf - libcerf için geliştirme dosyaları - libcerf-devel, libcerf için geliştirme dosyalarını içerir. - - libcerf - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-20 - 1.13 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - cfitsio - https://heasarc.gsfc.nasa.gov/docs/software/fitsio/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - app:console - science.misc - C and Fortran library for manipulating FITS files - FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi - CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format. - CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar. - http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3450.tar.gz - science/misc/cfitsio/pspec.xml - - - cfitsio - - /usr/lib - /usr/bin - /usr/share/doc - - - - cfitsio-devel - Development files for cfitsio - cfitsio için geliştirme dosyaları - - cfitsio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2018-09-07 - 3.450 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 3.420 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-15 - 3.370 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.370 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-18 - 3.370 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - gnuplot - http://www.gnuplot.info/ - - Blue Devil - bluedevil@sctzine.com - - custom - app:console - science.misc - Plotting package which outputs to X11, PostScript, PNG, GIF, and others. - X11, PostScript, PNG, GIF, ve diğerlerine çıktı verebilen çizim yapma paketi. - Gnuplot is a portable command-line driven graphing utility for Linux, OS/2, MS Windows, OSX, VMS, and many other platforms. GNUPlot provides plotting package which outputs to X11, PostScript, PNG, GIF, and others. - gnuplot, X11, PostScript, PNG, GIF, ve diğerlerine çıktı verebilen çizim yapma paketi sunar. - https://downloads.sourceforge.net/sourceforge/gnuplot/gnuplot-5.2.8.tar.gz - - emacs - gd-devel - lua-devel - cairo-devel - pango-devel - wxGTK-devel - qt5-linguist - libcerf-devel - qt5-svg-devel - qt5-base-devel - readline-devel - libjpeg-turbo-devel - - - lua53_compat.patch - - science/misc/gnuplot/pspec.xml - - - gnuplot - A high-level language, primarily intended for numerical computations. - - gd - lua - emacs - cairo - pango - wxGTK - libcerf - qt5-svg - qt5-base - readline - wxGTK-common - libjpeg-turbo - - - /usr/share/ - /usr/bin - /usr/share/doc/gnuplot - - - - - 2020-05-22 - 5.2.8 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - flint - http://www.flintlib.org/ - - Blue Devil - bluedevil@sctzine.com - - LGPLv2+ - library - science.misc - Fast Library for Number Theory. - Sayı kuramı için hızlı bir kitaplık. - FLINT is a C library for doing number theory. FLINT supports arithmetic with numbers, polynomials, power series and matrices over many base rings. - flint, sayı kuramı için hızlı bir kitaplık sunar. - http://www.flintlib.org/flint-2.5.2.tar.gz - - gmp-devel - ntl-devel - mpfr-devel - - - flint-pie-hardening-conflict.patch - - science/misc/flint/pspec.xml - - - flint - Fast Library for Number Theory. - - gmp - ntl - mpfr - - - /usr/lib - /usr/share/doc/flint - - - - flint-devel - Development files for flint - flint için geliştirme dosyaları - flint-devel, flint için geliştirme dosyalarını içerir. - - flint - - - /usr/include - - - - - 2020-05-20 - 2.5.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - hdf5 - https://www.hdfgroup.org/HDF5/ - - PisiLinux Community - admins@pisilinux.org - - BSD - NCSA-HDF - library - science.misc - NCSA Hierarchical Data Format (HDF) Software Library and Utilities - NCSA hiyerarşik veri biçimi (Hierarchical Data Format - HDF) kütüphanesi ve araçları. - HDF5 est une librairie généraliste ainsi qu'un format de fichier pour stocker des informations scientifiques. - HDF5 is a general purpose library and file format for storing scientific data. - HDF5, bilimsel verileri saklamak için kullanılan bir dosya biçimi tanımını ve bu dosyaları kullanmak için gerekli kütüphane ve araçları sağlar. - HDF5 es una librería de uso general y un formato de archivos para almacenar datos científicos - https://support.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.10.5.tar.bz2 - - time - cmake - libgfortran - zlib-devel - net-tools - - science/misc/hdf5/pspec.xml - - - hdf5 - - zlib - libgcc - libgfortran - - - /usr/bin - /usr/lib - /usr/share/doc/hdf5 - /usr/share/hdf5_examples - - - - hdf5-devel - Development files for hdf5 - hdf5 için geliştirme dosyaları - - hdf5 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-27 - 1.10.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-07-14 - 1.10.5 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-02-03 - 1.10.4 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-05 - 1.10.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-15 - 1.10.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 1.8.17 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.8.16 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - - - - ngspice - http://ngspice.sourceforge.net/ - - Blue Devil - bluedevil@sctzine.com - - BSD - app:console - library - science.electronics - Mixed-level/Mixed-signal circuit simulator based on Spice3f5, Ciber1b1, and Xspice. - Spice3f5, Ciber1b1, ve Xspice temelli, karma-seviye ve karma-sinyal devre simülatörü. - ngspice is the open source spice simulator for electric and electronic circuits. - ngspice, karma-seviye ve karma-sinyal devre simülatörü araçları ve kitaplık dosyaları içerir. - https://downloads.sourceforge.net/project/ngspice/ng-spice-rework/32/ngspice-32.tar.gz - - libXaw-devel - libedit-devel - ncurses-devel - readline-devel - - science/electronics/ngspice/pspec.xml - - - ngspice - Mixed-level/Mixed-signal circuit simulator based on Spice3f5, Ciber1b1, and Xspice - - libXaw - libedit - libgomp - ncurses - readline - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/ngspice - - - - ngspice-devel - Development files for ngspice - ngspice için geliştirme dosyaları - ngspice-devel, ngspice için geliştirme dosyalarını içerir. - - ngspice - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-28 - 32 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - geda - http://geda-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - science.electronics - gEDA contains gschem, gnetlist, gsymcheck, gattrib, utilities and documentation from the gEDA project. - GEDA, GPL Elektronik Tasarım Otomasyon Araçları. - The gEDA project has produced and continues working on a full GPL'd suite and toolkit of Electronic Design Automation tools. - GEDA projesi, GPL lısansı altında Elektronik Tasarım Otomasyon Araçları ve geliştirme başlıkları içerir. - http://ftp.geda-project.org/geda-gaf/stable/v1.10/1.10.0/geda-gaf-1.10.0.tar.gz - - flex - gawk - doxygen - pkgconfig - gtk2-devel - guile-devel - glib2-devel - python-devel - - science/electronics/geda/pspec.xml - - - geda - - gtk2 - cairo - guile - glib2 - pango - gdk-pixbuf - - - /usr/share - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/gEDA - /usr/share/info - /usr/share/mime - /usr/share/icons - /usr/share/applications - /usr/share/locale - - - - geda-devel - Development files for geda - geda için geliştirme dosyaları - geda-devel, geda için geliştirme dosyalarını içerir. - - glib2-devel - guile-devel - gdk-pixbuf-devel - geda - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-29 - 1.10.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-16 - 1.8.2 - First release - PisiLinux Community - admins@pisilinux.org - - - 2018-04-03 - 1.8.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - kicad - http://kicad-pcb.org/ - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv1 - library - science.electronics - Electronic schematic and printed circuit board (PCB) design tools - Electronic schematic and printed circuit board (PCB) design tools - Electronic schematic and printed circuit board (PCB) design tools - Electronic schematic and printed circuit board (PCB) design tools - https://launchpad.net/kicad/4.0/4.0.7/+download/kicad-4.0.7.tar.xz - https://github.com/KiCad/kicad-i18n/archive/4.0.7.tar.gz - - swig - cmake - curl-devel - zlib-devel - glew-devel - cairo-devel - wxGTK-devel - boost-devel - libSM-devel - mesa-devel - doxygen - openssl-devel - python-devel - mesa-glu-devel - desktop-file-utils - - - boost-1.61.patch - CheckCXXSymbolExists.patch - - science/electronics/kicad/pspec.xml - - - kicad - - curl - glew - mesa - boost - cairo - wxGTK - libgcc - python - libgomp - openssl - mesa-glu - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2018-09-09 - 4.0.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-11 - 4.0.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-04 - 4.0.7 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - pcb - http://pcb.gpleda.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - science.electronics - Printed circuit board editor - Pcb X Pencere Sistem'i için bir baskı devre çizim programıdır. - PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time. - PCB, X11 Pencere Sistem'i üzerinde çalışan interaktif bir baskı devre çizim programıdır. PCB, tasarım kural denetleyicisi, karmaşık bağlantı(rats nest) özelliği bulundurmakta ve kart üretiminde kullanılan endüstri standartlarından RS-274-X (Gerber), NC drill ve Centroid veri formatlarında çıktı oluşturabilir. PCB, yerleştirme zamanınızı azaltacak, otomatik yönlendirme ve iz optimizasyonu gibi gelişmiş özellikler sunmaktadır. - https://sourceforge.net/projects/pcb/files/pcb/pcb-4.1.2/pcb-4.1.2.tar.gz - - intltool - dbus-devel - mesa-glu-devel - gtk2-devel - tcltk-devel - gd-devel - gdk-pixbuf-devel - gtkglext-devel - - - desktop_file.patch - - science/electronics/pcb/pspec.xml - - - pcb - - gtk2 - dbus - glib2 - mesa - cairo - tcltk - mesa-glu - gtkglext - gd - gdk-pixbuf - - - /usr/bin - /usr/share/doc/pcb - /usr/share/info - /usr/share/man - /usr/share/pcb - /usr/share/icons - /usr/share/mime - /usr/share/mimelnk - /usr/share/gEDA/scheme - /usr/share/appdata - /usr/include - /usr/lib - /usr/share/applications - /usr/share/locale - /usr/share/metainfo/pcb.appdata.xml - - - - - 2018-09-07 - 4.1.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-04 - 4.1.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - opencv - https://opencv.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - science.robotics - Computer vision library - Bilgisayarla görme kütüphanesi - Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym - opencv is a programming library mainly aimed at the real time computer vision. Example applications are human-computer interaction, object identification, face recognition, motion tracking, mobile robotics. - opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. - OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. - https://github.com/opencv/opencv/archive/4.5.4.tar.gz - https://github.com/opencv/opencv_contrib/archive/4.5.4.tar.gz - - cmake - hdf5-devel - gtk2-devel - gtk3-devel - cairo-devel - libv4l-devel - openexr-libs - jasper-devel - imath-devel - openexr-devel - lapack-devel - python-numpy - python-devel - python3-devel - python3-numpy - xine-lib-devel - libdc1394-devel - gstreamer-devel - gdk-pixbuf-devel - libjpeg-turbo-devel - libgphoto2-devel - gst-plugins-base-devel - intel-tbb-devel - eigen3 - opencl-icd-devel - libglvnd-devel - tiff-devel - webp-devel - freetype-devel - harfbuzz-devel - libpng-devel - protobuf-devel - opencl-icd-devel - ninja - openjpeg2-devel - - - 2a4348e0.patch - - science/robotics/opencv/pspec.xml - - - opencv - - gtk3 - hdf5 - cairo - zlib - glib2 - jasper - libgcc - libpng - libv4l - imath - libgphoto2 - openexr-libs - xine-lib - libdc1394 - gstreamer - gdk-pixbuf - gst-plugins-base - libjpeg-turbo - intel-tbb - opencl-icd - libglvnd - tiff - webp - freetype - harfbuzz - protobuf - opencl-icd - openjpeg2 - - - /usr/lib - /usr/bin - /usr/share/OpenCV - /usr/share/licenses - /usr/share/opencv4 - - - - opencv-docs - Computer vision library documents and examples - - /usr/share/doc/opencv - /usr/share/doc/opencv/samples - - - - opencv-devel - Development files for opencv - opencv için geliştirme dosyaları - Pliki naglowkowe do opencv - - opencv - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-09 - 4.5.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-23 - 4.5.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-12 - 4.5.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-09-19 - 4.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-13 - 4.2.0 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2019-01-11 - 3.4.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 3.4.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 3.4.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-14 - 3.2.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2017-09-22 - 3.2.0 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-07 - 3.2.0 - Release bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-04-17 - 3.2.0 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-11-06 - 2.4.13 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.4.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-15 - 2.4.11 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - postgis - http://postgis.refractions.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.gis - Adds support for geographic objects to PostgreSQL - Coğrafi nesneler için PostgreSQL eklentisi - PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. - postgis, PostgreSQL nesne yönelimli veritabanı için coğrafi nesneler ekleme desteği sağlayan bir pakettir. Gerçekte postgis, coğrafi bilgi sistemleri için kullanılan spatial veritabanı bağlayıcısında olduğu gibi (daha çok ESRI'nin SDE'sine veya Oracle'in Spatial eklentisine benzer) PostgreSQL sunucusunda da benzer işleri yapabilmenizi sağlar. - http://download.osgeo.org/postgis/source/postgis-3.0.2.tar.gz - - proj-devel - gdal-devel - geos-devel - json-c-devel - libxslt-devel - libxml2-devel - postgresql-lib - - science/gis/postgis/pspec.xml - - - postgis - Adds support for geographic objects to PostgreSQL - - proj - gdal - geos - zlib - json-c - libxml2 - libpcre - postgresql-lib - postgresql-server - - - /etc - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2020-09-25 - 3.0.2 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-18 - 2.5.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-07 - 2.4.4 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-16 - 2.3.6 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-30 - 2.3.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 2.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-25 - 2.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - proj - https://proj.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - app:console - science.gis - Cartographic Projections library - Kartografik görüntüleme kütüphanesi - Proj.4 cartographic projection software with updated NAD27 grids. - Güncellenmiş NAD27 gridlerini de içeren kartografik görüntüleme yazılımı. - https://download.osgeo.org/proj/proj-7.1.1.tar.gz - https://download.osgeo.org/proj/proj-datumgrid-1.8.tar.gz - - curl-devel - tiff-devel - sqlite-devel - - science/gis/proj/pspec.xml - - - proj - Cartographic Projections library - - tiff - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/proj - - - - proj-devel - Development files for proj - proj için geliştirme dosyaları - proj-devel, proj için geliştirme dosyalarını içerir. - - proj - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-09-24 - 7.1.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-07 - 5.1.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-15 - 4.9.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.9.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-24 - 4.9.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gdal - https://gdal.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - science.gis - A translator library for raster geospatial data formats (includes OGR support) - Coğrafi raster veri formatları için dönüştürücü bir kütüphane (OGR desteği de vardır) - GDAL is a translator library for raster geospatial data formats which presents a single abstract data model to the calling application for all supported formats. - GDAL çağıran uygulamaya tüm desteklenen formatlar için tek bir soyut veri modeli sunan raster veri formatı dönüştürücü bir kütüphanedir. - http://download.osgeo.org/gdal/3.1.3/gdal-3.1.3.tar.gz - - curl-devel - hdf5-devel - geos-devel - proj-devel - tiff-devel - expat-devel - libpng-devel - netcdf-devel - sqlite-devel - openjpeg2-devel - libgeotiff-devel - libspatialite-devel - python-devel - python-setuptools - - science/gis/gdal/pspec.xml - - - gdal - A translator library for raster geospatial data formats (includes OGR support) - - geos - hdf5 - proj - swig - tiff - expat - libpng - netcdf - libfreexl - openjpeg2 - libgeotiff - libjpeg-turbo - libspatialite - - - /usr/share - /usr/lib - /usr/bin - - - - python-gdal - gdal python bindings - gdal için python bağlayıcıları - python-gdal, gdal için python bağlayıcıları içerir. - - python - libgcc - python-numpy - gdal - - - /usr/bin/epsg_tr.py - /usr/bin/pct2rgb.py - /usr/bin/rgb2pct.py - /usr/bin/esri2wkt.py - /usr/bin/gcps2vec.py - /usr/bin/gcps2wld.py - /usr/bin/gdal2xyz.py - /usr/bin/gdalmove.py - /usr/bin/ogrmerge.py - /usr/bin/gdal_auth.py - /usr/bin/gdal_calc.py - /usr/bin/gdal_edit.py - /usr/bin/gdalident.py - /usr/bin/gdal2tiles.py - /usr/bin/gdal_merge.py - /usr/bin/gdal_sieve.py - /usr/bin/gdalchksum.py - /usr/bin/gdalimport.py - /usr/bin/gdal_retile.py - /usr/bin/gdalcompare.py - /usr/bin/mkgraticule.py - /usr/bin/gdal_proximity.py - /usr/bin/gdal_fillnodata.py - /usr/bin/gdal_pansharpen.py - /usr/bin/gdal_polygonize.py - /usr/lib/python2.7 - - - - gdal-devel - Development files for gdal - gdal için geliştirme dosyaları - gdal-devel, gdal için geliştirme dosyalarını içerir. - - gdal - - - /usr/include - /usr/share/man/man3 - - - - - 2020-09-24 - 3.1.3 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-02-07 - 2.3.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-15 - 2.2.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-14 - 2.2.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-30 - 2.2.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-24 - 2.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libgeotiff - http://geotiff.osgeo.org - - PisiLinux Community - admins@pisilinux.org - - as-is - library - science.gis - Library for reading TIFF files with embedded tags - Biblioteka GeoTIFF - Library for reading TIFF files with embedded tags for geographic (cartographic) information. - Coğrafik bilgi için gömülü etikletler içeren TIFF dosyalarını okumaya yarayan bir kütüphane. - Ta biblioteka pozwala na odczytywanie i analizowanie znaczników „GeoTIFF”, a także definiowanie i zapisywanie znaczników w nowych plikach. - http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.6.0.tar.gz - - doxygen - proj-devel - tiff-devel - zlib-devel - libjpeg-turbo-devel - - science/gis/libgeotiff/pspec.xml - - - libgeotiff - Library for reading TIFF files with embedded tags - - proj - tiff - zlib - libjpeg-turbo - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/epsg_csv - - - - libgeotiff-devel - Development files for libgeotiff - libgeotiff için geliştirme dosyaları - Pliki naglowkowe do libgeotiff - libgeotiff-devel, libgeotiff için geliştirme dosyalarını içerir. - - proj-devel - tiff-devel - zlib-devel - libjpeg-turbo-devel - libgeotiff - - - /usr/include - - - - - 2020-09-24 - 1.6.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-07 - 1.4.2 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-16 - 1.4.2 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-29 - 1.4.1 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libfreexl - https://www.gaia-gis.it/fossil/freexl/index - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - science.gis - Library to extract valid data from within an Excel (.xls) spreadsheet - FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. - http://www.gaia-gis.it/gaia-sins/freexl-1.0.5.tar.gz - science/gis/libfreexl/pspec.xml - - - libfreexl - - /usr/lib - /usr/share/doc/* - - - - libfreexl-devel - Development files for libfreexl - - libfreexl - - - /usr/include/* - /usr/lib/pkgconfig/freexl.pc - /usr/lib/libfreexl.so - - - - - 2018-09-07 - 1.0.5 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-16 - 1.0.4 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-15 - 1.0.2 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-25 - 1.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ogdi - https://src.fedoraproject.org/lookaside/extras/ogdi/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - science.gis - Open Geographical Datastore Interface, a GIS support library - Açık coğrafik veri kayıt arayüzü, GIS destek kütüphanesi - OGDI is an application programming interface (API) that uses a standardized access methods to work in conjunction with GIS software packages (the application) and various geospatial data products. - OGDI, GIS yazılım paketleri ve çeşitli mekansal/coğrafik veri ürünleriyle çalışabilecek standart erişim metodları içeren açık bir uygulama geliştirme arayüzüdür. - https://src.fedoraproject.org/lookaside/extras/ogdi/ogdi-3.2.1.tar.gz/sha512/74bb62dc437e83ec1364046621c66bcab9bd7c2e0f9bd62d8e5110b5f0adcc8519f76baefb2263aebdaa5fb76ec75c3075624559ce140b936f888bca5fa24a0a/ogdi-3.2.1.tar.gz - - proj-devel - zlib-devel - expat-devel - libtirpc-devel - unixODBC-devel - - - fedora/ogdi-3.2.0.beta2-sailer.patch - fedora/ogdi-3.2.1-cleanup.patch - fedora/ogdi-3.2.1-rpc.patch - fedora/ogdi-3.2.1-rpc-flags.patch - - science/gis/ogdi/pspec.xml - - - ogdi - - proj - zlib - expat - libtirpc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - ogdi-devel - Development files for ogdi - ogdi için geliştirme dosyaları - - ogdi - proj-devel - zlib-devel - expat-devel - libtirpc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2019-02-07 - 3.2.1 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-07 - 3.2.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-15 - 3.2.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.2.0_beta2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 3.2.0_beta2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libspatialite - https://www.gaia-gis.it/fossil/libspatialite/index - - PisiLinux Community - admins@pisilinux.org - - MPL-1.0 - library - science.gis - SQLite extension to support spatial data types and operations - Uzamsal veri türleri ve işlemlerini destekleyen sqlite uzantıları. - SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. - libspatialite, uzamsal veri türleri ve işlemlerini destekleyen sqlite uzantıları içeren kitaplıktır. - http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-5.0.0.tar.gz - - geos-devel - proj-devel - zlib-devel - sqlite-devel - libxml2-devel - minizip-devel - libfreexl-devel - - science/gis/libspatialite/pspec.xml - - - libspatialite - SQLite extension to support spatial data types and operations - - geos - proj - zlib - sqlite - libxml2 - libfreexl - - - /usr/lib - /usr/share/doc/* - - - - libspatialite-devel - Development files for libspatialite - libspatialite için geliştirme dosyaları - libspatialite-devel, libspatialite için geliştirme dosyalarını içerir. - - geos-devel - proj-devel - zlib-devel - sqlite-devel - libxml2-devel - libfreexl-devel - libspatialite - - - /usr/include/* - /usr/lib/pkgconfig/* - /usr/lib/libspatialite.so - - - - - 2020-09-22 - 5.0.0 - Major version bump. Turkish translations added - Blue Devil - bluedevil@sctzine.com - - - 2018-09-07 - 4.3.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-18 - 4.3.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-29 - 4.2.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - gpsd - https://gpsd.gitlab.io/gpsd/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app - library - science.gis - GPS daemon and library to support serial/USB GPS devices. - gpsd is a service daemon that monitor one or more GPSes attached to a host computer through serial or USB ports, making all data of the sensors available to be queried on TCP port 2947 of the host computer. - http://download-mirror.savannah.gnu.org/releases/gpsd/gpsd-3.23.1.tar.xz - - scons - xmlto - dbus-devel - libusb-devel - libxslt-devel - python3-devel - ncurses-devel - libsocket-devel - bluez-libs-devel - python3-pyserial - - - pylibdir_path.patch - use_os_environ.patch - - science/gis/gpsd/pspec.xml - - - gpsd - - dbus - libgcc - libusb - ncurses - libsocket - bluez-libs - python3-pyserial - - - /etc/conf.d - /usr/bin - /usr/sbin - /lib/udev/gpsd.hotplug - /usr/lib - /lib/udev/rules.d - /usr/share/man - /usr/share/gpsd/doc - - - System.Service - - - gpsd.sysconfig - - - - gpsd-clients - Various text based and graphical clients for gpsd. - - gpsd - dbus - libusb - ncurses - bluez-libs - python3-pyserial - - - /usr/bin/cgps - /usr/bin/gpscat - /usr/bin/gpsdecode - /usr/bin/gpspipe - /usr/bin/gpxlogger - /usr/bin/lcdgps - /usr/bin/xgps - /usr/bin/xgpsspeed - /usr/share/man/man1/gps.1* - /usr/share/man/man1/cgps* - /usr/share/man/man1/gpscat* - /usr/share/man/man1/gpsdecode* - /usr/share/man/man1/gpspipe* - /usr/share/man/man1/gpxlogger* - /usr/share/man/man1/cgpxlogger* - /usr/share/man/man1/lcdgps* - /usr/share/man/man1/xgps* - /usr/share/applications - /usr/share/gpsd/icons - /usr/share/pixmaps - - - data/gpsd-logo.png - data/xgps.desktop - data/xgpsspeed.desktop - - - - gpsd-devel - Development files for gpsd. - - gpsd - - - /usr/bin/gpsfake - /usr/lib/python*/site-packages/gps/fake.py - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man1/gpsfake.1 - - - - - 2021-10-24 - 3.23.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-27 - 3.21 - First build. - fury - uglyside@yandex.ru - - - - - - geos - https://trac.osgeo.org/geos/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - science.gis - Geometry engine library for Geographic Information Systems - Coğrafi bilgi sistemleri için geometri motoru sunan bir kütüphane - GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS). - GEOS (Açık Kaynak Geometri Motoru) Java Topology Suit (JTS) kütüphanesinin C++ portudur. - http://download.osgeo.org/geos/geos-3.9.1.tar.bz2 - - swig - doxygen - ruby-devel - python-devel - - - geos-gcc43.patch - - science/gis/geos/pspec.xml - - - geos - Geometry engine library for Geographic Information Systems - - ruby - libgcc - python - rubygems - - - /usr/lib - /usr/bin - /usr/share/doc/geos - - - - geos-devel - Development files for geos - geos için geliştirme dosyaları - geos-devel, geos için geliştirme dosyalarını içerir. - - ruby-devel - python-devel - geos - - - /usr/include - - - - geos-docs - Documentation files for geos - geos için belgelendirme dosyaları - geos-docs, geos için belgelendirme dosyalarını içerir. - - geos - - - /usr/share/doc/geos/html - - - - - 2021-06-28 - 3.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 3.8.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-20 - 3.7.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 3.6.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-15 - 3.6.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-15 - 3.6.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-24 - 3.5.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xplanet - http://xplanet.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - science.astronomy - Render a planetary image into an X window - Gezegen görüntülerini bir X penceresine çizdirir - Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator. A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular. - Xplanet, Dünya'nın bir görüntüsünü bir X penceresine çizdiren Xearth programından esinlenilerek yapılmıştır. Güneş Sistemi Simülatörü'ne benzer şekilde bir çok büyük gezegen ve uydu çizdirilebilir. Azimut, Lambert, Mercator, Mollweide, ortografik, dikdörtgen de dahil olmak üzere bir çok farklı harita projeksiyonunu destekler. - mirrors://sourceforge/project/xplanet/xplanet/1.3.1/xplanet-1.3.1.tar.gz - - tiff-devel - pango-devel - netpbm-devel - giflib-devel - libjpeg-turbo-devel - libXScrnSaver-devel - - - giflib6.patch - xplanet-1.3.1-remove-null-comparison.patch - - science/astronomy/xplanet/pspec.xml - - - xplanet - - tiff - pango - giflib - glib2 - libX11 - libgcc - libpng - netpbm - freetype - libXScrnSaver - libjpeg-turbo - - - /usr/bin - /usr/share/doc - /usr/share - /usr/share/man - - - - - 2018-09-07 - 1.3.1 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2017-06-06 - 1.3.1 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 1.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 1.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - eric6 - http://eric-ide.python-projects.org/index.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:gui - programming.environment.eric - Full featured Python IDE - Eric is a full featured Python and Ruby editor and IDE, written in python. - It is based on the cross platform Qt4 gui toolkit, integrating the highly flexible - Scintilla editor control. It is designed to be usable as everdays' quick and dirty - editor as well as being usable as a professional project management tool integrating - many advanced features Python offers the professional coder. - eric5 - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-cs-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-de-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-es-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-fr-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-it-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-ru-17.12.tar.gz - https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-tr-17.12.tar.gz - - qt5-base-devel - qt5-sql-mysql - python3-devel - qt5-sql-sqlite - python3-qt5 - qscintilla2-devel - qscintilla2-python3 - qt5-webkit-devel - qt5-svg-devel - python3-sip - - programming/environment/eric6/pspec.xml - - - eric6 - - qt5-base - python3 - python3-qt5 - qscintilla2-python3 - qt5-webkit - qt5-svg - - - /usr/bin - /usr/lib/python3.6/site-packages - /usr/share/qt5/qsci/api - /usr/share/applications - /usr/share/appdata - /usr/share/doc - /usr/share/pixmaps - /usr/share/metainfo - - - - - 2018-09-09 - 17.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-01 - 17.12 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-05 - 17.05 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 6.1.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-10 - 6.1.4 - Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - codeblocks - http://www.codeblocks.org/ - - Pisi Linux Community - admins@pisilinux.org - - GPLv3 - app:gui - programming.environment - A free C++ IDE built to meet the most demanding needs of its users - C++ için bütünleşik geliştirme araçlarını barındıran özgür yazılım - Code::Blocks is a free C++ IDE built to meet the most demanding needs of its users. It is designed to be very extensible and fully configurable. - Code::Blocks, yazılımcıların en çok ihtiyaç duydukları özellikleri sağlayan, tamamen kişiselleştirilebilen ve geliştirilebilen C++ editörüdür. - codeblocks - https://downloads.sourceforge.net/codeblocks/codeblocks_17.12.tar.xz - - fontconfig-devel - hunspell-devel - boost-devel - gamin-devel - wxGTK-devel - glib2-devel - gtk3-devel - wxGTK3 - - - codeblocks-17.12-scripting.patch - - programming/environment/codeblocks/pspec.xml - - - codeblocks - A free C++ IDE built to meet the most demanding needs of its users - - wxGTK-common - fontconfig - hunspell - wxBase - wxGTK3 - wxGTK - gamin - glib2 - gtk3 - - - /usr/share/applications - /usr/share/codeblocks - /usr/share/appdata - /usr/share/pixmaps - /usr/share/icons - /usr/share/mime - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - - - - codeblocks-devel - Development files of codeblocks - codeblocks paketlerine ait geliştirme dosyaları - codeblocks-devel, codeblocks için geliştirme dosyalarını içerir. - - codeblocks - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-24 - 17.12 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2017-05-10 - 16.01 - First release. - Erdinç Gültekin - admins@pisilinux.org - - - - - - valgrind - http://www.valgrind.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.profiler - Memory access debugger for X86 and PPC Linux platforms - X86 ve PPC Linux platformları için bellek erişimi hata ayıklayıcı - Valgrind is an award-winning suite of tools for debugging and profiling Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. - Valgrind, bu konuda ödül kazanmış Linux için çizge ve hata ayıklama araçları takımıdır. Valgrind ile gelen araçlar yardımıyla, birçok hafıza yönetimi ve iş parçacığı hatalarını otomatik olarak yakalayabilir, boşa geçen hata ayıklama saatlerinizi kazanabilir, programlarınızı daha kararlı bir hale getirebilirsiniz. Ayrıca programlarınızı daha hızlı çalışır yapmak ve kullandıkları hafızayı azaltmak için iş parçacıklarını detaylı olarak inceleyebilirsiniz. - ftp://sourceware.org/pub/valgrind/valgrind-3.18.1.tar.bz2 - - glibc-devel - boost-devel - gdb-devel - docbook-xsl - - - valgrind-3.7.0-respect-flags.patch - - programming/profiler/valgrind/pspec.xml - - - valgrind - - glibc - perl - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/doc/valgrind - /usr/share/man - - - - valgrind-devel - Development files for valgrind - - valgrind - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 3.18.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-15 - 3.16.1 - Rebu'ld - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-21 - 3.16.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-07 - 3.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 3.13.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 3.13.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 3.13.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-17 - 3.12.0 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 3.11.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-29 - 3.11.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - ocaml - https://ocaml.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - OPL - app:console - programming.language.ocaml - Fast modern type-inferring functional programming language - Hızlı ve modern bir programlama dili - A fast modern type-inferring functional programming language descended from the ML (Meta Language) family. - OcaML, ML dilinin soyundan gelen fonksiyonel bir programlama dilidir - https://caml.inria.fr/distrib/ocaml-4.11/ocaml-4.11.1.tar.xz - - zlib-devel - ncurses-devel - libX11-devel - chrpath - - - fedora/0001-Don-t-add-rpaths-to-libraries.patch - fedora/0003-configure-Allow-user-defined-C-compiler-flags.patch - fedora/0003-configure-Remove-incorrect-assumption-about-cross-co.patch - fedora/0004-Remove-configure-from-.gitattributes.patch - fedora/0005-Fix-type-mismatches-between-definition-and-declarati.patch - - programming/language/ocaml/ocaml/pspec.xml - - - ocaml - - zlib - ncurses - libX11 - - - /usr/bin/ - /usr/lib/ - /usr/share/doc/ - /usr/share/man/ - - - - ocaml-compiler-libs - ocaml-derleyici kütüphaneleri - - ocaml - - - /usr/lib/ocaml/compiler-libs/*.mli - /usr/lib/ocaml/compiler-libs/*.cmi - /usr/lib/ocaml/compiler-libs/*.cmo - /usr/lib/ocaml/compiler-libs/*.cma - /usr/lib/ocaml/compiler-libs/*.a - /usr/lib/ocaml/compiler-libs/*.cmxa - /usr/lib/ocaml/compiler-libs/*.cmx - /usr/lib/ocaml/compiler-libs/*.o - /usr/lib/ocaml/compiler-libs/*.cmt - /usr/lib/ocaml/compiler-libs/*.cmti - - - - - 2020-11-07 - 4.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-23 - 4.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-13 - 4.09.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-25 - 4.09.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-25 - 4.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-29 - 4.07.0 - Version bump, add fedora's patches. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-08 - 4.04.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.02.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-04 - 4.02.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - go - https://golang.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - BSD - app:console - programming.language - Compiler and tools for the Go programming language from Google - Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. - https://github.com/golang/go/archive/go1.15.tar.gz - https://dl.google.com/go/go1.15.linux-amd64.tar.gz - programming/language/go/pspec.xml - - - golang - Compiler and tools for the Go programming language from Google - - git - - - /etc - /usr/share/ - /usr/lib/ - /usr/bin/ - - - - - 2020-08-30 - 1.15 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 1.14.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.14.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-24 - 1.13.8 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-04-14 - 1.11.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-19 - 1.10.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-06-08 - 1.10.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-12-31 - 1.9.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-08-21 - 1.7.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 1.7.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-08-06 - 1.6.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.6.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-07 - 1.6.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-01-09 - 1.4.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ruby - http://www.ruby-lang.org/en/ - - PisiLinux Community - admins@pisilinux.org - - Ruby - app:console - programming.language.ruby - An object-oriented scripting language - Nesneye dayalı bir dil - Ruby est un langage de programmation dynamique, open source mettant l'accent sur la simplicité et la productivité. Il a une syntaxe élégante qui est naturelle à lire et facile à écrire. - Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. - Ruby, basitlik ve üretkenliğe odaklanan açık kaynaklı, dinamik bir betik dilidir. Okuması ve yazması kolay, şık bir sözdizime sahiptir. - Ruby es un lenguaje dinámico, de código abierto, y con enfoque en simplicidad y productividad. Tiene una sintaxis elegante que permite leer naturalmente y escribirlo de manera fácil. - https://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.1.tar.xz - - tcl-devel - gmp-devel - zlib-devel - gdbm-devel - tcltk-devel - libffi-devel - openssl-devel - libyaml-devel - - programming/language/ruby/ruby/pspec.xml - - - ruby - An object-oriented language for quick and easy programming - - tcl - gmp - zlib - gdbm - tcltk - libffi - openssl - libyaml - readline - - - /usr/bin - /usr/lib/ruby/3.0.0/ - /usr/lib/libruby.so.3.0.1 - /usr/lib/libruby.so.3.0 - /usr/lib/libruby.so - /usr/lib/ruby/site_ruby/3.0.0/ - /usr/lib/ruby/vendor_ruby/3.0.0/ - /usr/share/man/man1 - /usr/share/doc/ruby/LEGAL - /usr/share/doc/ruby/LICENSE - /usr/share/doc/ruby/README* - /usr/share/doc/ruby/COPYING* - - - - ruby-devel - Development files for ruby - ruby için geliştirme dosyaları - ruby-devel, ruby için geliştirme dosyalarını içerir. - - ruby - - - /usr/lib/pkgconfig/ - /usr/include - - - - ruby-docs - Documentation files for ruby - ruby için belgelendirme dosyaları - ruby-docs, libnotify için belgelendirme dosyalarını içerir. - - ruby - - - /usr/share/ri/ - - - - rubygems - rubygems, The Ruby standard for packaging ruby libraries - ruby için standart kitaplık dosyaları - rubygems, ruby için standart kitaplık dosyalarını içerir. - - ruby - - - /usr/bin/gem - /usr/lib/ruby/gems/ - /usr/share/ri/3.0.0/system/Gem - /usr/share/man/man5 - - - - - 2021-06-28 - 3.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 2.7.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-07 - 2.6.5 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-01 - 2.6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 2.5.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-06-06 - 2.5.0 - Rebuild for gdbm. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-01-31 - 2.5.0 - Release Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 2.4.0 - Release Bump - Muhammet Dilmaç - m.dilmac@pisilinux.org - - - 2016-06-09 - 2.2.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-04 - 2.2.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lua51 - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - Hafif bir programlama dili - lua51 is a powerful light-weight programming language designed for extending applications. - lua51, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. - Lua51 es un lenguaje de programación liviano y potente con todas las herramientas imaginables - http://www.lua.org/ftp/lua-5.1.5.tar.gz - - readline-devel - - - lua-5.1-cflags.diff - lua-arch.patch - - programming/language/lua51/pspec.xml - - - lua51 - - readline - - - /usr/lib - /usr/share/man/man1 - /usr/share/doc - /usr/bin - /sbin/lsmod - /usr/share/pixmaps - /usr/share/lua5.1 - /luac5.1.1/luac.1 - /lua5.1.1/lua.1 - - - lua.png - lua.pc - - - - lua51-devel - Development files for lua51 - lua51 için geliştirme dosyaları - - lua51 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-15 - 5.1.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-06 - 5.1.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-16 - 5.1.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-05-09 - 5.1.5 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - lua52 - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - lua is a powerful light-weight programming language designed for extending applications. - http://www.lua.org/ftp/lua-5.2.4.tar.gz - - lua.pc - - - readline-devel - - - liblua.so.patch - - programming/language/lua52/pspec.xml - - - lua52 - - readline - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/pixmaps - - - lua.png - lua.pc - - - - lua52-devel - Development files for lua52 - - lua52 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-22 - 5.2.4 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2018-08-06 - 5.2.4 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2018-03-27 - 5.2.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Net-SSLeay - https://metacpan.org/pod/Net::SSLeay - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Net::SSLeay - Perl extension for using OpenSSL - OpenSSL erişimi için Perl modülü - Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). - Net::SMPP, TCP üzerinden kısa mesaj gönderimi gerçeklemesidir. Bu iletişim kuralı genelde telekom alanında kısa mesaj servisini (SMS) gerçekleştirmek için kullanılır. - Net::SMPP es una implementación del protocolo TCP de mensajes cortos sobre Peer to Peer. Este protocolo está frecuentemente usado por operadoras de telecom y móviles para pasar mensajes cortos entre sistemas que implementan el servicio de mensajes cortos (SMS). - https://cpan.metacpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.88.tar.gz - - perl - openssl-devel - perl-Test-Exception - - programming/language/perl/perl-Net-SSLeay/pspec.xml - - - perl-Net-SSLeay - Net::SSLeay - Perl extension for using OpenSSL - - perl - zlib - openssl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Net-SSLeay - - - - - 2020-01-13 - 1.88 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.85 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.80 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.72 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.72 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Params-Util - https://metacpan.org/release/Params-Util - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Simple, compact and correct param-checking functions - Basit, az yer kaplayan ve doğru parametre kontrol fonksiyonları - perl-Params-Util is a Perl module that has simple, compact and correct param-checking functions. - perl-Params-Util basit, az yer kaplayan ve doğru parametre kontrol fonksiyonları içeren bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/A/AD/ADAMK/Params-Util-1.07.tar.gz - - perl - - programming/language/perl/perl-Params-Util/pspec.xml - - - perl-Params-Util - Simple, compact and correct param-checking functions - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-09-23 - 1.07 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTML-Form - https://metacpan.org/release/HTML-Form - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTML::Form - Bir HTML Form elemanını temsil eden perl sınıfı - HTML::Form sınıfının nesneleri tek bir <form> ... </form> örneğini temsil edebilirler. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTML-Form-6.07.tar.gz - - perl-LWP-Mediatypes - perl-HTTP-Message - perl-HTML-Parser - perl-URI - perl - - programming/language/perl/perl-HTML-Form/pspec.xml - - - perl-HTML-Form - HTML::Form - Class that represents an HTML form element - - perl-LWP-Mediatypes - perl-HTTP-Message - perl-HTML-Parser - perl-URI - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - /usr/share - - - - - 2020-02-22 - 6.07 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 6.06 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 6.05 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.03 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.03 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 6.03 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-AnyEvent - https://metacpan.org/release/AnyEvent - - Kamil Atlı - suvari@pisilinux.org - - unknown - library - programming.language.perl - AnyEvent - provide framework for multiple event loops - Çoklu olay döngüleri için çatı sağlayan bir Perl modülü - AnyEvent provides an identical interface to multiple event loops. This allows module authors to utilise an event loop without forcing module users to use the same event loop (as only a single event loop can coexist peacefully at any one time). - AnyEvent, çoklu olay döngülerine (multiple event loop) özdeş arayüz sağlamaktadır. Modülü kullananların aynı anda tek olay döngüsü çalışıyormuş gibi aynı olay döngüsünü kullanmalarına zorlamadan, bir olay döngüsü kullanılmasına olanak sağlayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.17.tar.gz - - perl - perl-Event - - programming/language/perl/perl-AnyEvent/pspec.xml - - - perl-AnyEvent - - perl - perl-Event - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 7.17 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2019-06-21 - 7.15 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Test-Warnings - https://metacpan.org/release/Test-Warnings - - Blue Devil - bluedevil@sctzine.com - - Perl 5 - library - programming.language.perl - Perl module to test for warnings and the lack of them - Bu perl modülü, perl için uyarılar üretir. - perl-Test-Warnings is a Perl module to test for warnings and the lack of them. - perl-Test-Warnings, perl için uyarılar üreten bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Warnings-0.030.tar.gz - - perl - - programming/language/perl/perl-Test-Warnings/pspec.xml - - - perl-Test-Warnings - Perl module to test for warnings and the lack of them - - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-03-27 - 0.030 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-03 - 0.028 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Pod-Coverage - https://metacpan.org/pod/Pod::Coverage - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - app:console - programming.language.perl - Checks if the documentation of a module is comprehensive - Bir modülün belgelendirmesinin kapsamını kontrol eder - perl-Pod-Coverage checks if the documentation of a module is comprehensive. - perl-Pod-Coverage bir modülün belgelendirmesinin kapsamını kontrol eden bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/Pod-Coverage-0.23.tar.gz - - perl - perl-Test-Pod - perl-Devel-Symdump - - programming/language/perl/perl-Pod-Coverage/pspec.xml - - - perl-Pod-Coverage - Checks if the documentation of a module is comprehensive - - perl - perl-Test-Pod - perl-Devel-Symdump - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 0.23 - Rebuilt - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 0.23 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.23 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.23 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Bytes-Random-Secure - https://metacpan.org/release/Bytes-Random-Secure - - PisiLinux Community - admins@pisilinux.org - - PerlArtistic - library - programming.language.perl - Perl extension to generate cryptographically-secure random bytes. - Perl extension to generate cryptographically-secure random bytes. - Perl extension to generate cryptographically-secure random bytes. - Perl extension to generate cryptographically-secure random bytes. - https://cpan.metacpan.org/authors/id/D/DA/DAVIDO/Bytes-Random-Secure-0.29.tar.gz - - perl-Crypt-Random-Seed - perl-Math-Random-ISAAC - perl - - programming/language/perl/perl-Bytes-Random-Secure/pspec.xml - - - perl-Bytes-Random-Secure - - perl-Crypt-Random-Seed - perl-Math-Random-ISAAC - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2021-10-14 - 0.29 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-String-ShellQuote - https://metacpan.org/pod/String::ShellQuote - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Quote strings for passing through the shell - Kabuk veya kabuk benzeri bir nesneden geçecek dizgeleri tırnak içine alma yordamları - This module contains some functions which are useful for quoting strings which are going to pass through the shell or a shell-like object. - Bu modül kabuk veya kabuk benzeri bir nesneden geçecek dizgeleri tırnak içine almak için fonksiyonlar içerir. - El módulo contiene algunas funciones útiles para encerrar cadenas de texto entre comillas, para pasarlo a una shell o a un objeto similar. - http://search.cpan.org/CPAN/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz - - perl - - programming/language/perl/perl-String-ShellQuote/pspec.xml - - - perl-String-ShellQuote - Quote strings for passing through the shell - - perl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc/perl-String-ShellQuote - - - - - 2020-01-13 - 1.04 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.04 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.04 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.04 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-scope-guard - https://metacpan.org/pod/Scope::Guard - - Kamil Atlı - suvari@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Lexically-scoped resource management - Sözcüksel olarak kapsamlı kaynak yönetimi - Lexically-scoped resource management - https://cpan.metacpan.org/authors/id/C/CH/CHOCOLATE/Scope-Guard-0.21.tar.gz - - perl - - programming/language/perl/perl-scope-guard/pspec.xml - - - perl-scope-guard - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-09 - 0.21 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Test-RequiresInternet - https://metacpan.org/pod/Test::RequiresInternet - - Blue Devil - bluedevil@sctzine.com - - Perl 5 - library - programming.language.perl - Test::RequiresInternet - Easily test network connectivity - Test::RequiresInternet - Kolay bir şekilde ağ baglantı durumunu denetler. - This module is intended to easily test network connectivity before functional tests begin to non-local Internet resources. It does not require any modules beyond those supplied in core Perl. - perl-Test-RequiresInternet, herhangi fazladan modül gerektirmeden internet bağlantısını denetleyebilen bir perl modülüdür. - https://cpan.metacpan.org/authors/id/M/MA/MALLEN/Test-RequiresInternet-0.05.tar.gz - - perl - - programming/language/perl/perl-Test-RequiresInternet/pspec.xml - - - perl-Test-RequiresInternet - Test::RequiresInternet - Easily test network connectivity - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-14 - 0.05 - First Pisi Release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-path-tiny - https://metacpan.org/release/Path-Tiny - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - programming.language.perl - File path utility - Dosya yolu aracı - This module provides a small, fast utility for working with file paths. - Bu modül dosya yolları ile çalışabilmek için hızlı ve küçük bir araç takımı sunar. - https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-0.114.tar.gz - - perl - - programming/language/perl/perl-path-tiny/pspec.xml - - - perl-path-tiny - File path utility - - perl - - - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-05-18 - 0.114 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 0.112 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 0.110 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 0.108 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-11-15 - 0.108 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTTP-Cookies - https://metacpan.org/pod/HTTP::Cookies - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP cookie jars - HTTP cerez veritabanı işlemleri - This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object knows about. - Bu modül "cookie jar - çerez kavanozu" olarak da adlandırılan içinde HTTP çerezlerinin bulunduğu bir veritabanı nesnesi sınıfı sağlar. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Cookies-6.08.tar.gz - - perl - perl-HTTP-Date - perl-HTTP-Message - - programming/language/perl/perl-HTTP-Cookies/pspec.xml - - - perl-HTTP-Cookies - HTTP cookie jars - - perl - perl-HTTP-Date - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-13 - 6.08 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.01 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.01 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.01 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-IO-HTML - https://metacpan.org/release/IO-HTML - - Blue Devil - bluedevil@sctzine.com - - Artistic - GPLv2 - library - programming.language.perl - IO::HTML Opens an HTML file with automatic charset detection - IO::HTML bir HTML dosyasını otomatik karakter seti tespiti ile açar. - IO::HTML provides an easy way to open a file containing HTML while automatically determining its encoding. - perl-IO-HTML, HTML içeren dosyayı açarken otomatik karakter seti sunarak açmayı kolaylaştıran bir yol sunar. - https://cpan.metacpan.org/authors/id/C/CJ/CJM/IO-HTML-1.004.tar.gz - - perl - - programming/language/perl/perl-IO-HTML/pspec.xml - - - perl-IO-HTML - IO::HTML Opens an HTML file with automatic charset detection - - perl - - - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-10-01 - 1.004 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 1.001 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-LWP-Mediatypes - https://metacpan.org/pod/LWP::MediaTypes - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - LWP::Mediatypes can guess media type for a file or a URL - Dosya veya URL'in ortam türünü öngörmeye yarayan perl modülü. - This module provides functions for handling media (also known as MIME) types and encodings. - Bu modül ortam türleri ve kodlaması hakkında yordamlar sağlar. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/LWP-MediaTypes-6.04.tar.gz - - perl-Test-Fatal - perl - - programming/language/perl/perl-LWP-Mediatypes/pspec.xml - - - perl-LWP-Mediatypes - LWP::MediaTypes can guess media type for a file or a URL - - perl - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2020-01-11 - 6.04 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.02 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.02 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.02 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-common-sense - https://metacpan.org/release/common-sense - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Implements some sane defaults for Perl programs - Perl programları için kabul edilebilir öntanımlar içerir - This module implements some sane defaults for Perl programs, as defined by two typical (or not so typical - use your common sense) specimens of Perl coders: - perl-common-sense, perl programları için kabul edilebilir öntanımlar içeren bir perl kütüphanesidir. - https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/common-sense-3.75.tar.gz - - perl - - programming/language/perl/perl-common-sense/pspec.xml - - - perl-common-sense - Implements some sane defaults for Perl programs - - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-04-08 - 3.75 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-02 - 3.74 - Rebuilt and translation fix - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 3.74 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 3.74 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.74 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 3.74 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-NetAddr-IP - https://metacpan.org/pod/NetAddr::IP - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Manages IPv4 and IPv6 addresses and subnets. - This module provides an object-oriented abstraction on top of IP addresses or IP subnets that allows for easy manipulations. - https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.079.tar.gz - - perl - - programming/language/perl/perl-NetAddr-IP/pspec.xml - - - perl-NetAddr-IP - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 4.079 - First build - fury - uglyside@yandex.ru - - - - - - perl-Mail-DKIM - https://metacpan.org/pod/Mail::DKIM - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Signs/verifies Internet mail with DKIM/DomainKey signatures. - This module implements the various components of the DKIM and DomainKeys message-signing and verifying standards for Internet mail. - https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20220408.tar.gz - - perl - perl-Clone - perl-Net-DNS - perl-mailtools - perl-YAML-LibYAML - perl-Crypt-OpenSSL-RSA - perl-Test-RequiresInternet - perl-Net-DNS-Resolver-Mock - perl-Mail-AuthenticationResults - - programming/language/perl/perl-Mail-DKIM/pspec.xml - - - perl-Mail-DKIM - - perl-Net-DNS - perl-mailtools - perl-Crypt-OpenSSL-RSA - perl-Mail-AuthenticationResults - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2022-04-14 - 1.20220408 - Version bump. - fury - uglyside@yandex.ru - - - 2021-09-18 - 1.20200907 - First build - fury - uglyside@yandex.ru - - - - - - perl-Sort-Versions - https://metacpan.org/release/Sort-Versions - - Blue Devil - bluedevil@sctzine.com - - Artistic - library - programming.language.perl - Sort::Versions - a perl 5 module for sorting of revision-like numbers. - Revizyon-benzeri sürüm numaralarını sıralayabilen perl modülüdür. - Sort::Versions allows easy sorting of mixed non-numeric and numeric strings, like the 'version numbers' that many shared library systems and revision control packages use.l. - Bu modül revizyon-benzeri sürüm numaralarını sıralayabilen perl modülüdür. - https://cpan.metacpan.org/authors/id/N/NE/NEILB/Sort-Versions-1.62.tar.gz - - perl - - programming/language/perl/perl-Sort-Versions/pspec.xml - - - perl-Sort-Versions - Sort::Versions - a perl 5 module for sorting of revision-like numbers. - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-10 - 1.62 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-XML-NamespaceSupport - https://metacpan.org/pod/XML::NamespaceSupport - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A Perl module that offers a simple to process namespaced XML names - XML adlarını işleyebilen bir perl modülü - This module offers a simple way to process namespaced XML names (unames) from within any application that may need them. - Gerek duyan uygulamalar tarafından kullanılabilen ve XML adlarını işleyebilen bir perl modülüdür. - Módulo Perl para procesamiento sencillo de nombres de espacio de nombres XML (unames) desde cualquier programa - http://www.cpan.org/authors/id/P/PE/PERIGRIN/XML-NamespaceSupport-1.12_9.tar.gz - - perl - - programming/language/perl/perl-XML-NamespaceSupport/pspec.xml - - - perl-XML-NamespaceSupport - A Perl module that offers a simple to process namespaced XML names - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-13 - 1.12 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.12 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2017-12-12 - 1.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Net-DNS-Resolver-Mock - https://metacpan.org/release/Net-DNS-Resolver-Mock - - PisiLinux Community - admins@pisilinux.org - - PerlArtistic - library - programming.language.perl - Mock a DNS Resolver object for testing - Mock a DNS Resolver object for testing - Mock a DNS Resolver object for testing - Mock a DNS Resolver object for testing - https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Net-DNS-Resolver-Mock-1.20200215.tar.gz - - perl - perl-Net-DNS - perl-Test-Exception - - programming/language/perl/perl-Net-DNS-Resolver-Mock/pspec.xml - - - perl-Net-DNS-Resolver-Mock - - perl - perl-Net-DNS - perl-Test-Exception - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2021-10-14 - 1.20200215 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Moo - https://metacpan.org/release/Moo - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Moo - Minimalist Object Orientation (with Moose compatibility) - Moo - Minimalist Nesne Yönelim Sistemi. - perl-Moo is an extremely light-weight Object Orientation system. It allows one to concisely define objects and roles with a convenient syntax that avoids the details of Perl's object system. Moo contains a subset of Moose and is optimised for rapid startup. - perl-Moo, minimalist nesne yönelim sistemi olan bir perl modülü sunar. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Moo-2.004000.tar.gz - - perl - perl-Role-Tiny - perl-Sub-Quote - perl-Module-Runtime - perl-Class-Method-Modifiers - perl-Test-Fatal - - programming/language/perl/perl-Moo/pspec.xml - - - perl-Moo - Moo - Minimalist Object Orientation (with Moose compatibility) - - perl - perl-Role-Tiny - perl-Sub-Quote - perl-Import-Into - perl-Module-Runtime - perl-Class-Method-Modifiers - perl-Devel-GlobalDestruction - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 2.004000 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Path-Class - https://metacpan.org/pod/Path::Class - - fury - uglyside@yandex.ru - - GPL-1 - library - programming.language.perl - Cross-platform path specification manipulation for Perl. - Cross-platform path specification manipulation for Perl. - https://cpan.metacpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-0.37.tar.gz - - perl - perl-Module-Build - - programming/language/perl/perl-Path-Class/pspec.xml - - - perl-Path-Class - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.37 - First build - fury - uglyside@yandex.ru - - - - - - perl-Sub-Quote - https://metacpan.org/release/Sub-Quote - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Sub::Quote - Efficient generation of subroutines via string eval - string eval ile verimli alt-rutin üretimi. - perl-Sub-Quote provides performant ways to generate subroutines from strings. - perl-Sub-Quote, string eval ile verimli alt-rutin üretimi yapan bir perl modülü sunar. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Sub-Quote-2.006006.tar.gz - - perl - perl-Test-Fatal - - programming/language/perl/perl-Sub-Quote/pspec.xml - - - perl-Sub-Quote - Sub::Quote - Efficient generation of subroutines via string eval - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 2.006006 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-NetPacket - https://metacpan.org/release/NetPacket - - Blue Devil - bluedevil@sctzine.com - - GPL - app:console - library - programming.language.perl - assemble/disassemble network packets at the protocol level - Protokol seviyesinde ağ paketlerini assemble/disassemble etmeye yarayan bir araç. - "NetPacket" provides a base class for a cluster of modules related to decoding and encoding of network protocols. Each "NetPacket" descendent module knows how to encode and decode packets for the network protocol it implements. Consult the documentation for the module in question for protocol-specific implementation. - NetPacket" ağ protokollerini encode/decode etmeye yarayan bir çok temel sınıf sağlayan bir perl kitaplığıdır. - https://cpan.metacpan.org/authors/id/Y/YA/YANICK/NetPacket-1.7.2.tar.gz - - perl - - programming/language/perl/perl-NetPacket/pspec.xml - - - perl-NetPacket - assemble/disassemble network packets at the protocol level - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-08 - 1.7.2 - Version bump - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTML-Tree - https://metacpan.org/pod/HTML::Tree - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - programming.language.perl - A Perl module that build and scan parse-trees of HTML - HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülü - Build and scan parse-trees of HTML. It allows to represent,create and extract information from HTML syntax trees. - HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülüdür. HTML ağaçlarındaki bilgileri oluşturmaya, çıkartmaya ve sunmaya yarar. - https://cpan.metacpan.org/authors/id/K/KE/KENTNL/HTML-Tree-5.07.tar.gz - - perl - perl-HTML-Parser - perl-Module-Build - perl-Test-Fatal - - programming/language/perl/perl-HTML-Tree/pspec.xml - - - perl-HTML-Tree - A Perl module that build and scan parse-trees of HTML - - perl - perl-libwww - perl-HTML-Parser - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-14 - 5.07 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 5.06 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 5.03 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 5.03 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-HTTP-Date - https://metacpan.org/pod/HTTP::Date - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP::Date - Provides date conversion routines - HTTP::Date tarih-zaman dönüşümleri sağlayan perl modülüdür - This module provides functions that deal the date formats used by the HTTP protocol (and then some more). Only the first two functions, time2str() and str2time(), are exported by default. - perl-HTTP-Date modülü, HTTP protokolü tarafından kullnaılan tarih biçemlerini tanımak ve dönüştürmek ile ilgilenen bir perl modülüdür. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Date-6.05.tar.gz - - perl - - programming/language/perl/perl-HTTP-Date/pspec.xml - - - perl-HTTP-Date - HTTP::Date - Provides date conversion routines - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-11 - 6.05 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.02 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.02 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 6.02 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-HTML-FormatText-WithLinks - https://metacpan.org/pod/HTML::FormatText::WithLinks - - Osman Erkan - osman.erkan@pisilinux.org - - PerlArtistic GPL - library - programming.language.perl - HTML to text conversion with links as footnotes. - Bağlantıları dipnot olarak alan HTML'den metine dönüşüm modülü - HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. - HTML::FormatText::WithLinks HTML'i alıp düz metne çevirebilen ve bunu yaparken tüm bağlantıları da dipnot olarak verebilen perl modülüdür. - http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-0.15.tar.gz - - perl - perl-URI - perl-Module-Build - perl-HTML-Formatter - perl-Test-Pod - perl-Test-Pod-Coverage - - programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml - - - perl-HTML-FormatText-WithLinks - HTML to text conversion with links as footnotes. - - perl - perl-URI - perl-HTML-Format - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-02-12 - 0.15 - Fix deps - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 0.15 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.15 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.15 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.15 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Mozilla-CA - https://metacpan.org/release/Mozilla-CA - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Mozilla::CA - Mozilla's CA cert bundle in PEM format - Mozilla::CA - PEM biçeminde Mozilla CA sertifikaları - Mozilla::CA provides a copy of Mozilla's bundle of Certificate Authority certificates in a form that can be consumed by modules and libraries based on OpenSSL. - Mozilla::CA, OpenSSL,e bağlı kitaplik ve modüller tarafından kullanılabilecek olan Mozilla Certificate Authority sertifikalarını toplu şekilde sunar. - https://cpan.metacpan.org/authors/id/A/AB/ABH/Mozilla-CA-20200520.tar.gz - - perl - - programming/language/perl/perl-Mozilla-CA/pspec.xml - - - perl-Mozilla-CA - Mozilla::CA - Mozilla's CA cert bundle in PEM format - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-05-24 - 20200520 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 20180117 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-09-08 - 20180117 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 20160104 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 20160104 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 20160104 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Devel-CheckLib - https://metacpan.org/pod/Devel::CheckLib - - fury - uglyside@yandex.ru - - perl_5 - library - programming.language.perl - Devel::CheckLib - check that a library is available. - Devel::CheckLib is a perl module that checks whether a particular C library and its headers are available. - https://cpan.metacpan.org/authors/id/M/MA/MATTN/Devel-CheckLib-1.14.tar.gz - - perl - perl-Mock-Config - perl-Capture-Tiny - - programming/language/perl/perl-Devel-CheckLib/pspec.xml - - - perl-Devel-CheckLib - - perl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2021-12-21 - 1.14 - First build. - fury - uglyside@yandex.ru - - - - - - perl-Class-Method-Modifiers - https://metacpan.org/release/Class-Method-Modifiers - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Provides Moose-like method modifiers - Moose benzeri yordam düzenleyici. - Class::Method::Modifiers provides three modifiers: before, around, and after. before and after are run just before and after the method they modify, but can not really affect that original method. around is run in place of the original method, with a hook to easily call that original method. - perl-Class-Method-Modifiers, moose benzeri yordam düzenleyici perl modülü sunar. - https://cpan.metacpan.org/authors/id/E/ET/ETHER/Class-Method-Modifiers-2.13.tar.gz - - perl - perl-Test-Fatal - perl-Test-Needs - perl-Test-Requires - - programming/language/perl/perl-Class-Method-Modifiers/pspec.xml - - - perl-Class-Method-Modifiers - Provides Moose-like method modifiers - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 2.13 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-XML-Simple - https://metacpan.org/pod/XML::Simple - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - XML::Simple Perl module - XML::Simple Perl kütüphanesi - XML::Simple is an easy API to read/write XML. This package provides XML::Simple's Perl module. - XML::Simple, XML okumak ve yazmak için kolay bir API'dir. Bu paket de, XML::Simple'in Perl kütüphanesini içermektedir. - http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-Simple-2.25.tar.gz - - perl - perl-XML-Parser - perl-XML-SAX - - programming/language/perl/perl-XML-Simple/pspec.xml - - - perl-XML-Simple - - perl - perl-XML-Parser - perl-XML-SAX - - - /usr/lib - /usr/share/man - - - - - 2020-02-13 - 2.25 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Net-DNS-Resolver-Programmable - https://metacpan.org/pod/Net::DNS::Resolver::Programmable - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - programmable DNS resolver class for offline emulation of DNS. - Net::DNS::Resolver::Programmable is a Net::DNS::Resolver descendant class that allows a virtual DNS to be emulated instead of querying the real DNS. - https://cpan.metacpan.org/authors/id/B/BI/BIGPRESH/Net-DNS-Resolver-Programmable-0.009.tar.gz - - perl - perl-Net-DNS - perl-Module-Build - - programming/language/perl/perl-Net-DNS-Resolver-Programmable/pspec.xml - - - perl-Net-DNS-Resolver-Programmable - - perl - perl-Net-DNS - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.009 - First build - fury - uglyside@yandex.ru - - - - - - perl-Config-Tiny - https://metacpan.org/release/Config-Tiny - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - A module for reading and writing .ini style files with as little code as possible - Mümkün olan en küçük kod ile .ini şeklindeki dosyaları okumaya ve yazmaya yarayan bir modül - perl-Config-Tiny is a perl class to read and write .ini style configuration files with as little code as possible, reducing load time and memory overhead. - perl-Config-Tiny, mümkün olan en küçük kod ile .ini şeklindeki dosyaları okumaya ve yazmaya yarayan perl modülü sunar. - https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/Config-Tiny-2.24.tgz - - perl - - programming/language/perl/perl-Config-Tiny/pspec.xml - - - perl-Config-Tiny - A module for reading and writing .ini style files with as little code as possible - - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-04-22 - 2.24 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-09 - 2.23 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-ExtUtils-MakeMaker - https://metacpan.org/release/ExtUtils-MakeMaker - - Blue DeviL - bluedevil@sctzine.com - - Perl 5 - library - programming.language.perl - Perl extension for creating a module Makefile - Makefile modülü yaratabilen bir perl eklentisi - This utility is designed to write a Makefile for an extension module from a Makefile.PL. It is based on the Makefile.SH model provided by Andy Dougherty and the perl5-porters. - Bu araç bir Makefile.PL dosyasından bir eklenti modülüne Makefile yaratmak için tasarlanmıstır. - https://cpan.metacpan.org/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-7.46.tar.gz - - perl - - programming/language/perl/perl-ExtUtils-MakeMaker/pspec.xml - - - perl-ExtUtils-MakeMaker - Perl extension for creating a module Makefile - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/perl - - - - - 2020-07-20 - 7.46 - Version bump - Blue DeviL - bluedevil@sctzine.com - - - 2020-01-29 - 7.44 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2020-01-07 - 7.42 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-12 - 7.38 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - perl-Digest-Nilsimsa - https://metacpan.org/pod/Digest::Nilsimsa - - fury - uglyside@yandex.ru - - LGPL-2 - library - programming.language.perl - Perl version of Nilsimsa code. - A nilsimsa signature is a statistic of n-gram occurance in a piece of text. It is a 256 bit value usually represented in hex. This module is a wrapper around nilsimsa implementation in C by cmeclax. - https://cpan.metacpan.org/authors/id/V/VI/VIPUL/Digest-Nilsimsa-0.06.tar.gz - - perl - - programming/language/perl/perl-Digest-Nilsimsa/pspec.xml - - - perl-Digest-Nilsimsa - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.06 - First build - fury - uglyside@yandex.ru - - - - - - perl-IO-Socket-SSL - https://metacpan.org/release/IO-Socket-SSL - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Nearly transparent SSL encapsulation for IO::Socket::INET - IO::Socket::INET için neredeyse saydam SSL kapsülleme desteği - IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET. - IO::Socket::SSL, SSL soketlerine nesne yönelimli arayüz sağlayan bir sınıftır. IO::Socket::INET'in gelişmişidir. - IO::Socket::SSL es una clase que implementa una inerfaz a sockets SSL, orientado a objetos. La clase es descendiente de IO::Socket::INET. - https://cpan.metacpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-2.068.tar.gz - - perl-Net-SSLeay - perl - - programming/language/perl/perl-IO-Socket-SSL/pspec.xml - - - perl-IO-Socket-SSL - Nearly transparent SSL encapsulation for IO::Socket::INET - - perl-Net-SSLeay - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-IO-Socket-SSL - - - - - 2020-04-08 - 2.068 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 2.067 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 2.066 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 2.052 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 2.047 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.043 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.024 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 2.024 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-IPC-Run3 - https://metacpan.org/pod/IPC::Run3 - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - BSD - library - programming.language.perl - Perl module to run a subprocess with input/ouput redirection - Girdi/Çıktı yönlendirmeli bir alt süreç çalıştıran Perl Modülü - perl-IPC-Run3 is a Perl module that runs a subprocess with input/ouput redirection. - perl-IPC-Run3, Girdi/Çıktı yönlendirmeli bir alt süreç çalıştıran bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/IPC-Run3-0.048.tar.gz - - perl - perl-Test-Pod - perl-Test-Pod-Coverage - - programming/language/perl/perl-IPC-Run3/pspec.xml - - - perl-IPC-Run3 - - perl - - - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 0.048 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Test-NoWarnings - https://metacpan.org/pod/Test::NoWarnings - - fury - uglyside@yandex.ru - - LGPL-2.1 - library - programming.language.perl - Make sure you didn't emit any warnings while testing. - Make sure you didn't emit any warnings while testing. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-NoWarnings-1.06.tar.gz - - perl - - programming/language/perl/perl-Test-NoWarnings/pspec.xml - - - perl-Test-NoWarnings - - perl-test-simple - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 1.06 - First build - fury - uglyside@yandex.ru - - - - - - perl-Sub-Exporter - https://metacpan.org/release/Sub-Exporter - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - A sophisticated exporter written in Perl for custom-built routines - Özelleştirilmiş karmaşık inşa yordamları için Perl dilinde yazılmış bir dışa aktarıcı - perl-Sub-Exporter is a Perl module that is a sophisticated exporter for custom-built routines. - perl-Sub-Exporter özelleştirilmiş karmaşık inşa yordamları için dışa aktarıcı bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-0.987.tar.gz - - perl - perl-Params-Util - perl-Sub-Install - perl-Data-OptList - - programming/language/perl/perl-Sub-Exporter/pspec.xml - - - perl-Sub-Exporter - A sophisticated exporter written in Perl for custom-built routines - - perl - perl-Params-Util - perl-Sub-Install - perl-Data-OptList - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-09-23 - 0.987 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTML-Tagset - https://metacpan.org/pod/HTML::Tagset - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Data tables useful in parsing HTML - HTML ayrıştırmak için yararlı bilgi tabloları - HTML-Tagset contains several data tables useful in various kinds of HTML parsing operations. - HTML-Tagset HTML ayrıştırmak için yararlı birçok bilgi tablosunu barındırır. - HTML-Tagset contiene varios tablas de datos útiles para varias operaciones de parsear HTML. - http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz - - perl - - programming/language/perl/perl-HTML-Tagset/pspec.xml - - - perl-HTML-Tagset - Data tables useful in parsing HTML - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-HTML-Tagset - - - - - 2020-01-02 - 3.20 - Rebuilt - Blue Devil - bluedevil@sctzine.com - - - 2018-09-08 - 3.20 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 3.20 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 3.20 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-importer - https://metacpan.org/release/Importer - - Kamil Atlı - suvari@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Alternative but compatible interface to modules that export symbols. - Sembol üreten modüllere bir alternatif. - Alternative but compatible interface to modules that export symbols. - perl-importer, sembol üreten modüllere alternatif bir perl modülü sunar. - https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Importer-0.026.tar.gz - - perl - - programming/language/perl/perl-importer/pspec.xml - - - perl-importer - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-08-30 - 0.026 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-09 - 0.025 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-AppConfig - https://metacpan.org/pod/AppConfig - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - programming.language.perl - Perl/CPAN AppConfig module - Read configuration files and parse command line arguments - Perl/CPAN AppConfig modülü - Perl/CPAN AppConfig module - Read configuration files and parse command line arguments - Perl/CPAN AppConfig modülü - Komut satırı argümanlarını ve ayar dosyalarını okuyabilen ve çözümleyebilen bir perl betiğidir. - https://www.cpan.org/authors/id/N/NE/NEILB/AppConfig-1.71.tar.gz - - perl - - programming/language/perl/perl-AppConfig/pspec.xml - - - perl-AppConfig - - perl - - - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2020-01-07 - 1.71 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-11-16 - 1.71 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Authen-SASL - https://metacpan.org/pod/Authen::SASL - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A Perl SASL interface - Perl için SASL modülü - SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL provides an implementation framework that all protocols should be able to share. The framework allows different implementations of the connection class to be plugged in. - SASL, ağ protokolleri tarafından kullanılan genel bir kimlik doğrulama tekniğidir. Authen::SASL, bütün protokollerin paylaşabileceği bir yapı sağlar. Bu yapı, kullanılacak bağlantı sınıfının farklı şekillerde uygulamalarına izin verir. - SASL es un mecanismo genérico de autenticación usado en varios protocolos de red. Authen::SASL facilita un capa de implementación, que todos los protocolos deberían poder compartir. El framework permite adjuntar implementaciones diferentes de la clase de conexión. - http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz - - perl - perl-GSSAPI - perl-Digest-HMAC - - programming/language/perl/perl-Authen-SASL/pspec.xml - - - perl-Authen-SASL - A Perl SASL interface - - perl - perl-GSSAPI - perl-Digest-HMAC - - - /usr/lib - /usr/share/doc/perl-Authen-SASL - /usr/share/man - - - - - 2020-01-02 - 2.16 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-08 - 2.16 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.16 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 2.16 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Import-Into - https://metacpan.org/release/Import-Into - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Import::Into - Import packages into other packages. - Paketleri diğer paketlere içe aktaran perl modülü - Import::Into provides global methods to import packages into other packages. - perl-Import-Into, paketleri diğer paketlere içe aktaran perl modülü sunar. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Import-Into-1.002005.tar.gz - - perl - perl-Module-Runtime - - programming/language/perl/perl-Import-Into/pspec.xml - - - perl-Import-Into - Import::Into - Import packages into other packages. - - perl - perl-Module-Runtime - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 1.002005 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Alien-Build - https://metacpan.org/release/Alien-Build - - Blue Devil - bluedevil@sctzine.com - - Artistic - library - programming.language.perl - A perl module to build external dependencies for use in CPAN - CPAN'da kullanabilmek için harici bağımlılıklar derleyebilen perl modülü - perl-Alien-Build provides tools for building external (non-CPAN) dependencies for CPAN. It is mainly designed to be used at install time of a CPAN client, and work closely with Alien::Base which is used at runtime. - Alien::Build, CPAN'da kullanabilmek için harici bağımlılıklar derleyebilen perl modülüdür. - https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-2.33.tar.gz - - perl - perl-path-tiny - perl-File-chdir - perl-File-Which - perl-FFI-CheckLib - - programming/language/perl/perl-Alien-Build/pspec.xml - - - perl-Alien-Build - A perl module to build external dependencies for use in CPAN - - perl - perl-path-tiny - perl-File-chdir - perl-File-Which - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-10-01 - 2.33 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-07-20 - 2.29 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 2.23 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 2.21 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-10 - 2.19 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTML-Formatter - https://metacpan.org/release/HTML-Formatter - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - library - programming.language.perl - A Perl module that format HTML as plaintext, RTF and PostScript - HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. - perl-HTML-Formatter HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - https://cpan.metacpan.org/authors/id/N/NI/NIGELM/HTML-Formatter-2.16.tar.gz - - perl-Module-Build - perl-File-Slurper - perl-HTML-Tree - perl-Font-AFM - perl - perl-Test-Warnings - - programming/language/perl/perl-HTML-Formatter/pspec.xml - - - perl-HTML-Formatter - A Perl module that format HTML as plaintext, RTF and PostScript - - perl-HTML-Tree - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-02-12 - 2.16 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-test-simple - https://metacpan.org/release/Test-Simple - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Basic utilities for writing tests. - Test yazmak için temel araçlar. - This is an extremely simple, extremely basic module for writing tests suitable for CPAN modules and other pursuits. If you wish to do more complicated testing, use the Test::More module (a drop-in replacement for this one). - perl-test-simple, CPAN'a uygun testler yazabilmek için çok uygun ve basit perl modülleri sunar. - https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-1.302181.tar.gz - - perl - - programming/language/perl/perl-test-simple/pspec.xml - - - perl-test-simple - Basic utilities for writing tests. - - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-12-17 - 1.302181 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-08-30 - 1.302177 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 1.302175 - Minor version bump, fix translation - Blue Devil - bluedevil@sctzine.com - - - 2020-04-09 - 1.302174 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Sub-Uplevel - https://metacpan.org/pod/Sub::Uplevel - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Module to apparently run a function in a higher stack frame - Bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmak için perl modülü - Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. - perl-Sub-Uplevel modülü, bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmaktadır. - http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.2800.tar.gz - - perl - - programming/language/perl/perl-Sub-Uplevel/pspec.xml - - - perl-Sub-Uplevel - Module to apparently run a function in a higher stack frame - - perl - - - /usr/lib - /usr/share/doc/perl-Sub-Uplevel - /usr/share/man - - - - - 2020-01-02 - 0.2800 - Rebuilt - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.2800 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.2600 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 0.25 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-WWW-Robotrules - https://metacpan.org/pod/WWW::RobotRules - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - database of robots.txt-derived permissions - robots.txt-turevi izinler veritabanı - This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site. - Bu modÜl robots.txt dosyasının ayarlarını çözümleyebilen perl yordamları sunar. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz - - perl - perl-URI - - programming/language/perl/perl-WWW-Robotrules/pspec.xml - - - perl-WWW-Robotrules - database of robots.txt-derived permissions - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-13 - 6.02 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.02 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.02 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 6.02 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-LWP-Protocol-https - https://metacpan.org/release/LWP-Protocol-https - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - LWP::Protocol::https - Provide https support for LWP::UserAgent - LWP::Protocol::https - LWP::UserAgent için https desteği - The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. - The LWP::Protocol::https LWP::UserAgent için https desteği sunar. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/LWP-Protocol-https-6.09.tar.gz - - perl - perl-NET-HTTP - perl-Mozilla-CA - perl-IO-Socket-SSL - - programming/language/perl/perl-LWP-Protocol-https/pspec.xml - - - perl-LWP-Protocol-https - LWP::Protocol::https - Provide https support for LWP::UserAgent - - perl - perl-libwww - perl-Try-Tiny - ca-certificates - perl-Mozilla-CA - perl-IO-Socket-SSL - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-07-20 - 6.09 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 6.07 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.07 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.06 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 6.06 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-FFI-CheckLib - https://metacpan.org/release/FFI-CheckLib - - Blue Devil - bluedevil@sctzine.com - - Artistic - GPLv2 - library - programming.language.perl - Check that a library is available for FFI - FFI için bir kitaplığın mevcut olup olmadığını kontrol eden perl modülü. - perl-FFI-CheckLib, checks if a library is available for FFI - perl-FFI-CheckLib, FFI için bir kitaplığın mevcut olup olmadığını kontrol eden perl modülü sunar. - https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/FFI-CheckLib-0.27.tar.gz - - perl - perl-test-exit - perl-test2-suite - - programming/language/perl/perl-FFI-CheckLib/pspec.xml - - - perl-FFI-CheckLib - Check that a library is available for FFI - - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-05-18 - 0.27 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-10 - 0.26 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-XML-LibXML - https://metacpan.org/release/XML-LibXML - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl Binding for libxml2 - libxml2 için Perl bağlayıcıları - This module implements much of the DOM Level 2 API as an interface to the Gnome libxml2 library. This makes it a fast and highly capable validating XML parser library, as well as a high performance DOM. - perl-XML-LibXML, libxml2 için Perl bağlayıcıları içerir. - https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0206.tar.gz - - perl - perl-XML-SAX - libxml2-devel - perl-Alien-Build - perl-Alien-Libxml2 - Perl-XML-SAX-BASE - perl-XML-NamespaceSupport - - programming/language/perl/perl-XML-LibXML/pspec.xml - - - perl-XML-LibXML - Perl Binding for libxml2 - - perl - perl-XML-SAX - perl-XML-NamespaceSupport - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-12-17 - 2.0206 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 2.0205 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-10 - 2.0204 - Fix dependencies and rpath analysis - Blue Devil - bluedevil@sctzine.com - - - 2020-04-09 - 2.0204 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Types-Serialiser - https://metacpan.org/pod/Types::Serialiser - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. - JSON ve CBOR gibi genel serileştirme biçemleri tarafından kullanılan bazı yeni veriyapıları sunar. - This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. The idea is to have a repository of simple/small constants and containers that can be shared by different implementations so they become interoperable between each other. - perl-Types-Serialiser, JSON ve CBOR gibi genel serileştirme biçemleri tarafından kullanılan bazı yeni veriyapıları sunar.. - http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.0.tar.gz - - perl - perl-common-sense - - programming/language/perl/perl-Types-Serialiser/pspec.xml - - - perl-Types-Serialiser - - perl - perl-common-sense - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 1.0 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.0 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.0 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-IO-Socket-INET6 - https://metacpan.org/pod/IO::Socket::INET6 - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Object interface for AF_INET|AF_INET6 domain sockets - AF_INET|AF_INET6 domain soketleri için nesne arayüzü - IO::Socket::INET6 provides an object interface to creating and using sockets in either AF_INET or AF_INET6 domains. It is built upon the IO::Socket interface and inherits all the methods defined by IO::Socket. - IO::Socket::INET6, AF_INET ya da AF_INET6 domainleri kullanılarak soket kullanma veya yaratmaya yarayan nesne arayüzü sağlar. - IO::Socket::INET6 facilita una interfaz a objetos para la creación y uso de sockets en dominios AF_INET o AF_INET6. Está construido sobre la interfaz IO::Socket y hereda todos los métodos definidos en IO::Socket. - http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/IO-Socket-INET6-2.72.tar.gz - - perl-Socket6 - perl-Test-Pod - perl-Module-Build - perl-Test-Pod-Coverage - perl-IO-Socket-SSL - perl - - programming/language/perl/perl-IO-Socket-INET6/pspec.xml - - - perl-IO-Socket-INET6 - - perl-Socket6 - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2016-04-24 - 2.72 - Docker built. - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2014-09-10 - 2.72 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-24 - 2.72 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-12-07 - 2.69 - Rebuild for perl - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-07 - 2.69 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Mock-Config - https://metacpan.org/pod/Mock::Config - - fury - uglyside@yandex.ru - - Artistic_2 - library - programming.language.perl - Mock::Config - temporarily set Config or XSConfig values. - Mock::Config - temporarily set Config or XSConfig values. - https://cpan.metacpan.org/authors/id/R/RU/RURBAN/Mock-Config-0.03.tar.gz - - perl - - programming/language/perl/perl-Mock-Config/pspec.xml - - - perl-Mock-Config - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2021-12-21 - 0.03 - First release - fury - uglyside@yandex.ru - - - - - - perl-B-COW - https://metacpan.org/pod/B::COW - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - B::COW additional B helpers to check COW status. - B::COW provides some naive additional B helpers to check the COW status of one SvPV. - https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/B-COW-0.004.tar.gz - - perl - - programming/language/perl/perl-B-COW/pspec.xml - - - perl-B-COW - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.004 - First build - fury - uglyside@yandex.ru - - - - - - perl-Glib - https://metacpan.org/pod/Glib - - Pisilinux Community - admins@pisilinux.org - - LGPL-2.1 - library - programming.language.perl - Perl wrappers for the GLib utility and Object libraries - This module provides perl access to Glib and GLib's GObject libraries. GLib is a portability and utility library; GObject provides a generic type system with inheritance and a powerful signal system. Together these libraries are used as the foundation for many of the libraries that make up the Gnome environment, and are used in many unrelated projects. - https://cpan.metacpan.org/authors/id/X/XA/XAOC/Glib-1.3293.tar.gz - - perl - perl-ExtUtils-Depends - perl-ExtUtils-PkgConfig - gobject-introspection-devel - - programming/language/perl/perl-Glib/pspec.xml - - - perl-Glib - - perl - glib2 - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2021-12-21 - 1.3293 - First build. - fury - uglyside@yandex.ru - - - - - - perl-template-toolkit - https://metacpan.org/release/Template-Toolkit - - PisiLinux Community - admins@pisilinux.org - - PerlArtistic - library - programming.language.perl - Perl template processing system - Perl taslak işleme sistemi - The Template Toolkit is a collection of Perl modules which implement a fast, flexible, powerful and extensible template processing system. - perl-template-toolkit, hızlı, esnek, genişletilebilir ve güçlü taslak işleme sistemi sunan perl modülleri kolleksiyonudur. - https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Template-Toolkit-3.009.tar.gz - - perl - perl-AppConfig - - programming/language/perl/perl-template-toolkit/pspec.xml - - - perl-template-toolkit - Perl template processing system - - perl - perl-AppConfig - - - /usr/share - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2020-07-20 - 3.009 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-08 - 3.008 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 3.007 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 3.003 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-11-16 - 2.28 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-parse-yapp - https://search.cpan.org/dist/Parse-Yapp - - Pisi Linux Admins - admin@pisilinux.org - - PerlArtistic - library - programming.language.perl - Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules - Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules - Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules - Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules - https://cpan.metacpan.org/authors/id/W/WB/WBRASWELL/Parse-Yapp-1.06.tar.gz - programming/language/perl/perl-parse-yapp/pspec.xml - - - perl-parse-yapp - - /usr/bin - /usr/lib/perl5 - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2020-12-18 - 1.21 - First release. - Pisi Linux Admins - admin@pisilinux.org - - - - - - perl-Gtk2 - https://metacpan.org/pod/Gtk2 - - fury - uglyside@yandex.ru - - LGPL-2.1 - library - programming.language.perl - Perl interface to the 2.x series of the Gimp Toolkit library. - This module allows you to write graphical user interfaces in a Perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API. - https://cpan.metacpan.org/authors/id/X/XA/XAOC/Gtk2-1.24993.tar.gz - - gtk2-devel - perl-Pango - perl-ExtUtils-Depends - perl-ExtUtils-PkgConfig - - programming/language/perl/perl-Gtk2/pspec.xml - - - perl-Gtk2 - - gtk2 - perl-Pango - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-12-21 - 1.24993 - First build. - fury - uglyside@yandex.ru - - - - - - perl-term-table - https://metacpan.org/pod/Term::Table - - Kamil Atlı - suvari@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Format a header and rows into a table - Üstbilgi ve satırları tabloya biçimlendirme - Format a header and rows into a table - https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Term-Table-0.015.tar.gz - - perl - perl-importer - - programming/language/perl/perl-term-table/pspec.xml - - - perl-term-table - - perl - perl-importer - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-09 - 0.015 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-XML-SAX-Base - https://metacpan.org/pod/XML::SAX::Base - - PisiLinux Community - admins@pisilinux.org - - Artistic - app:console - programming.language.perl - Base class SAX Drivers and Filters - SAX sürücü ve süzgeçleri içeren perl modülü. - This module has a very simple task - to be a base class for PerlSAX drivers and filters. It's default behaviour is to pass the input directly to the output unchanged. It can be useful to use this module as a base class so you don't have to, for example, implement the characters() callback. - perl-XML-SAX-BASE, SAX sürücü ve süzgeçleri içeren perl modülüdür. - https://cpan.metacpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-1.09.tar.gz - - perl - - programming/language/perl/perl-XML-SAX-Base/pspec.xml - - - perl-XML-SAX-Base - Base class SAX Drivers and Filters - - perl - - - /usr/lib/perl5/vendor_perl - /usr/share/doc - - - - - 2020-04-09 - 1.09 - Remove man. - Kamil Atlı - suvari@pisilinux.org - - - 2020-01-13 - 1.09 - Rebuild - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.09 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-12-12 - 1.09 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTML-Scrubber - https://metacpan.org/pod/HTML::Scrubber - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl extension for scrubbing/sanitizing html - HTML dosyalarını düzenlemek için bir perl modülü - If you wanna scrub or sanitize html input in a reliable an flexible fashion, then this module is for you. I wasn't satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought I'd write something similar that works directly with HTML::Parser. - perl-HTML-Scrubber, HTML dosyalarını düzenlemek için bir perl modülüdür. - https://cpan.metacpan.org/authors/id/N/NI/NIGELM/HTML-Scrubber-0.19.tar.gz - - perl-Module-Build - perl-HTML-Parser - perl - - programming/language/perl/perl-HTML-Scrubber/pspec.xml - - - perl-HTML-Scrubber - Perl extension for scrubbing/sanitizing html - - perl-HTML-Parser - perl - - - /usr/lib - /usr/share/man - - - - - 2020-01-14 - 0.19 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.15 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.15 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 0.11 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Test-Deep - https://metacpan.org/release/Test-Deep - - Pisi Linux Admins - admin@pisilinux.org - - as-is - library - programming.language.perl - A Perl module that gives you lots of flexibility when testing deep structures - Derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülü - perl-Test-Deep is a Perl module that gives you lots of flexibility when testing deep structures. - perl-Test-Deep derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Deep-1.130.tar.gz - - perl - - programming/language/perl/perl-Test-Deep/pspec.xml - - - perl-Test-Deep - A Perl module that gives you lots of flexibility when testing deep structures - - perl - - - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-03-05 - 1.130 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-02 - 1.128 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.127 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.126 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.120 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.120 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-JSON - https://metacpan.org/pod/JSON - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - JSON (JavaScript Object Notation) encoder/decoder - JSON (JavaScript Nesne Gösterimi) kodlayıcı/çözücü - This module converts between JSON (JavaScript Object Notation) and Perl data structure into each other. For JSON, see http://www.crockford.com/JSON/. - Bu modül JSON ve perl veri yapılarını birbirleri içerisinde dönüştürebilir. JSON için bakınız: http://www.crockford.com/JSON/. - https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-4.02.tar.gz - - perl - perl-JSON-XS - perl-Test-Pod - - programming/language/perl/perl-JSON/pspec.xml - - - perl-JSON - JSON (JavaScript Object Notation) encoder/decoder - - perl - perl-JSON-XS - perl-Test-Pod - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-01-13 - 4.02 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 2.90 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.90 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.90 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.90 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-AnyEvent-I3 - https://metacpan.org/release/AnyEvent-I3 - - Kamil Atlı - suvari@pisilinux.org - - GPL - library - programming.language.perl - This module connects to the i3 window manager using the UNIX socket based IPC interface it provides. - Bu modül, sağladığı UNIX soket tabanlı IPC arabirimini kullanarak i3 pencere yöneticisine bağlanır. - This module connects to the i3 window manager using the UNIX socket based IPC interface it provides (if enabled in the configuration file). You can then subscribe to events or send messages and receive their replies. - Bu modül, sağladığı UNIX soket tabanlı IPC arabirimini kullanarak (yapılandırma dosyasında etkinse) i3 pencere yöneticisine bağlanır. Daha sonra etkinliklere abone olabilir veya mesaj gönderebilir ve cevaplarını alabilirsiniz. - https://cpan.metacpan.org/authors/id/M/MS/MSTPLBG/AnyEvent-I3-0.17.tar.gz - - perl - perl-Event - perl-JSON-XS - perl-AnyEvent - - programming/language/perl/perl-AnyEvent-I3/pspec.xml - - - perl-AnyEvent-I3 - This module connects to the i3 window manager using the UNIX socket based IPC interface it provides. - - perl - perl-JSON-XS - perl-AnyEvent - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 0.17 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2019-06-21 - 0.17 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-ExtUtils-Depends - https://metacpan.org/pod/ExtUtils::Depends - - Pisilinux Community - admins@pisilinux.org - - GPL-2 - library - programming.language.perl - A library for easily build XS extensions that depend on XS extensions - This module tries to make it easy to build Perl extensions that use functions and typemaps provided by other Perl extensions. - https://cpan.metacpan.org/authors/id/X/XA/XAOC/ExtUtils-Depends-0.8001.tar.gz - - perl - - programming/language/perl/perl-ExtUtils-Depends/pspec.xml - - - perl-ExtUtils-Depends - - perl - - - /usr/lib/perl5 - /usr/share/doc - /usr/share/man/man3 - - - - - 2021-12-21 - 0.8001 - First build. - fury - uglyside@yandex.ru - - - - - - perl-URI - https://metacpan.org/release/URI - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl module for Uniform Resource Identifiers (absolute and relative) - Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri) icin perl arayüzü - A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). - Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri), soyut veya fiziki bir kaynağı belirleyen bir tekparça karakter dizgesidir. Bir URI, bir URL (Uniform Resource Locator – Tektip Kaynak Bulucu) veya bir URN (Uniform Resource Name – Tektip Kaynak Adı)’den daha ötede sınıflandırılabilir. - Un identificador de recurso uniformado (URI) es una cadena de caracteres compacta que identifica un recurso físico o abstracto. Se puede clasificar los URI en Uniform Resource Locator (URL) o Uniform Resource Name (URN). - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/URI-5.05.tar.gz - - perl - perl-Test-Needs - - programming/language/perl/perl-URI/pspec.xml - - - perl-URI - Perl module for Uniform Resource Identifiers (absolute and relative) - - perl - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-12-13 - 5.05 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-07 - 1.76 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.71 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.71 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.71 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.71 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Crypt-OpenSSL-RSA - https://metacpan.org/pod/Crypt::OpenSSL::RSA - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - RSA encoding and decoding, using the openSSL libraries. - Crypt::OpenSSL::RSA provides the ability to RSA encrypt strings which are somewhat shorter than the block size of a key. - https://cpan.metacpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.32.tar.gz - - openssl-devel - perl-Crypt-OpenSSL-Guess - perl-Crypt-OpenSSL-Random - - programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml - - - perl-Crypt-OpenSSL-RSA - - openssl - perl-Crypt-OpenSSL-Guess - perl-Crypt-OpenSSL-Random - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.32 - First build - fury - uglyside@yandex.ru - - - - - - perl-test2-suite - https://metacpan.org/release/Test2-Suite - - Kamil Atlı - suvari@pisilinux.org - - Artistic - library - programming.language.perl - Distribution with a rich set of tools built upon the Test2 framework. - Test2 çerçevesi üzerine inşa edilmiş zengin araçlarla dağıtım. - Rich set of tools, plugins, bundles, etc built upon the Test2 testing library. If you are interested in writing tests, this is the distribution for you. - Test2 test kitaplığı üzerine kurulmuş araçlar ve eklentiler sunan bir perl araç takımıdır. - https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-0.000135.tar.gz - - perl - perl-sub-info - perl-importer - perl-term-table - perl-test-simple - perl-scope-guard - perl-module-pluggable - - programming/language/perl/perl-test2-suite/pspec.xml - - - perl-test2-suite - Distribution with a rich set of tools built upon the Test2 framework. - - perl - perl-sub-info - perl-importer - perl-term-table - perl-test-simple - perl-scope-guard - perl-module-pluggable - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-07-20 - 0.000135 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-09 - 0.000129 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-timedate - https://metacpan.org/dist/TimeDate - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - time and date parsing and formatting perl library. - This is the perl5 TimeDate distribution. - https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/TimeDate-2.33.tar.gz - - perl - - programming/language/perl/perl-timedate/pspec.xml - - - perl-timedate - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 2.33 - First build - fury - uglyside@yandex.ru - - - - - - perl-Math-Random-ISAAC - https://metacpan.org/pod/Math::Random::ISAAC - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Perl interface to the ISAAC PRNG algorithm. - Perl interface to the ISAAC PRNG algorithm. - https://cpan.metacpan.org/authors/id/J/JA/JAWNSY/Math-Random-ISAAC-1.004.tar.gz - - perl - perl-Test-NoWarnings - - programming/language/perl/perl-Math-Random-ISAAC/pspec.xml - - - perl-Math-Random-ISAAC - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 1.004 - First build - fury - uglyside@yandex.ru - - - - - - perl-Net-Pcap - https://metacpan.org/release/Net-Pcap - - Blue Devil - bluedevil@sctzine.com - - GPL - app:console - library - programming.language.perl - Interface to pcap(3) LBL packet capture library - pcap(3) LBL paket yakalama kitaplığı arayüzü - The Net::Pcap module is a Perl binding to the LBL pcap(3) packet capture library. - Net::Pcap modülü, pcap(3) LBL paket yakalama kitaplığı için bir Perl arayüzüdür. - https://cpan.metacpan.org/authors/id/S/SA/SAPER/Net-Pcap-0.18.tar.gz - - perl - libpcap-devel - - - Net-Pcap-0.18-Adapt-a-test-to-libpcap-1.8.0.patch - Net-Pcap-0.18-Fix-build-with-libpcap-1.9.0.patch - - programming/language/perl/perl-Net-Pcap/pspec.xml - - - perl-Net-Pcap - Interface to pcap(3) LBL packet capture library - - perl - libpcap - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-08 - 0.18 - Version bump - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Test-Requires - https://metacpan.org/release/Test-Requires - - Blue Devil - bluedevil@sctzine.com - - Artistic-2 - GPLv1 - library - programming.language.perl - Checks to see if the module can be loaded. - Bir modülün yüklenip yüklenemeyeceğini denetlemek için Perl modülü - perl-Test-Requires is a Perl module to check if the module can be loaded. - perl-Test-Requires, bir modülün yüklenip yüklenemeyeceğini denetlemek için gerekli bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM/Test-Requires-0.11.tar.gz - - perl - - programming/language/perl/perl-Test-Requires/pspec.xml - - - perl-Test-Requires - Checks to see if the module can be loaded. - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-09-23 - 0.11 - First Pisi Release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Archive-Zip - https://metacpan.org/release/Archive-Zip - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - app:console - library - programming.language.perl - Perl interface to ZIP archive files - ZIP arşivlerine erişim için Perl modülü - The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files. This module uses the Compress::Zlib library to read and write the compressed streams inside the files. - Bu modül, Perl programlarının Zip arşiv dosyalarını oluşturmasını, düzenlemesini ve okumasını sağlar. Dosyaların içindeki akımları okumak ve yazmak için Compress:Zlib kütüphanesini kullanır. - El módulo Archive::Zip permite a programas Perl la creación, manipulación, lectura y escritura de archivos comprimidos ZIP. Este módulo utiliza la librería Compress::Zlib para leer y escribir los flujos (streams) comprimidos dentro de los archivos. - https://cpan.metacpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.68.tar.gz - - perl-Test-MockModule - perl - - programming/language/perl/perl-Archive-Zip/pspec.xml - - - perl-Archive-Zip - Perl interface to ZIP archive files - - perl - - - /usr/lib/perl5 - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2020-03-27 - 1.68 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-02 - 1.67 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.60 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.59 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.49 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-15 - 1.49 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Clone - https://metacpan.org/pod/Clone - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Clone - recursively copy Perl datatypes. - This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. - https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Clone-0.45.tar.gz - - perl - perl-B-COW - - programming/language/perl/perl-Clone/pspec.xml - - - perl-Clone - - perl - perl-B-COW - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.45 - First build - fury - uglyside@yandex.ru - - - - - - perl-JSON-XS - https://metacpan.org/release/JSON-XS - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - app:console - programming.language.perl - JSON serialising/deserialising, done correctly and fast - Doğru ve hızlı, JSON serileştirme/geri elde etme kitaplığı - This module converts Perl data structures to JSON and vice versa. Its primary goal is to be correct and its secondary goal is to be *fast*. To reach the latter goal it was written in C. - Bu modül Perl veri yapılarını JSON'a çevirir, tam tersini de yapabilir. Birincil amacı doğru çalışmak, ikincil amacı ise hızlı olmaktır. İkinciyi sağlamak için C dilinde yazılmıştır. - http://www.cpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-4.02.tar.gz - - perl - perl-common-sense - perl-Canary-Stability - perl-Types-Serialiser - - programming/language/perl/perl-JSON-XS/pspec.xml - - - perl-JSON-XS - JSON serialising/deserialising, done correctly and fast - - perl - perl-common-sense - perl-Canary-Stability - perl-Types-Serialiser - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 4.02 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2019-06-22 - 4.02 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-07-26 - 3.03 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 3.03 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 3.02 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Image-ExifTool - https://exiftool.org/index.html - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - A command-line application for reading, writing and editing meta information in image, audio and video files - Görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz bir komut satırı uygulaması - ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. - ExifTool; görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz platformdan bağımsız bir Perl kütüphanesi ve komut satırı uygulamasıdır. - https://cpan.metacpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-12.00.tar.gz - - perl - - programming/language/perl/perl-Image-ExifTool/pspec.xml - - - perl-Image-ExifTool - A command-line application for reading, writing and editing meta information in image, audio and video files - - perl - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/doc/perl-Image-ExifTool/Changes - - - - perl-Image-ExifTool-docs - Documentation of perl-Image-ExifTool - perl-Image-ExifTool için belgelendirme dosyaları - perl-Image-ExifTool-docs, perl-Image-ExifTool için belgelendirme dosyaları içerir - - perl-Image-ExifTool - - - /usr/share/doc - - - - - 2020-07-20 - 12.00 - Major version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 11.91 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 11.86 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 11.84 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 11.01 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 10.40 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 10.00 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-27 - 10.00 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - perl-Sub-Exporter-Progressive - https://metacpan.org/release/Sub-Exporter-Progressive - - Blue Devil - bluedevil@sctzine.com - - Artistic - GPLv2 - library - programming.language.perl - perl-Sub-Exporter-Progressive is a Sub::Exporter wrapper - Sub-Exporter için sarmalayıcı perl modülü - perl-Sub-Exporter-Progressive is a Sub::Exporter wrapper that will let your users just use Exporter if all they are doing is picking exports, but use Sub::Exporter if your users try to use Sub::Exporter's more advanced features, like renaming exports, if they try to use them. - perl-Sub-Exporter-Progressive, Sub-Exporter için sarmalayıcı perl modülü içerir. - https://cpan.metacpan.org/authors/id/F/FR/FREW/Sub-Exporter-Progressive-0.001013.tar.gz - - perl - - programming/language/perl/perl-Sub-Exporter-Progressive/pspec.xml - - - perl-Sub-Exporter-Progressive - perl-Sub-Exporter-Progressive is a Sub::Exporter wrapper - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-09-23 - 0.001013 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Test-Pod - https://metacpan.org/pod/Test::Pod - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - A perl module to check for errors in POD files - Pod dosyalarında hata olup olmadığını kontrol eden bir Perl Modülü - Check POD files for errors or warnings in a test file, using Pod::Simple. - Test::Pod, Pod::Simple modülünü kullanarak POD dosyalarında hata ya da uyarı olup olmadığını kontrol etmeye yarayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Pod-1.52.tar.gz - - perl - - programming/language/perl/perl-Test-Pod/pspec.xml - - - perl-Test-Pod - A perl module to check for errors in POD files - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 1.52 - Rebuild - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 1.52 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.51 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.51 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.51 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Super - https://metacpan.org/pod/SUPER - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Control superclass method dispatch. - Üst sınıf yönteminin gönderilmesini denetle. - Control superclass method dispatch. - perl-Super, ust sınıf yönteminin gönderilmesini denetler. - https://cpan.metacpan.org/authors/id/C/CH/CHROMATIC/SUPER-1.20190531.tar.gz - - perl - perl-Sub-Identify - perl-Module-Build - - programming/language/perl/perl-Super/pspec.xml - - - perl-Super - Control superclass method dispatch. - - perl - perl-Sub-Identify - perl-Module-Build - - - /usr/lib - /usr/share - /usr/share/doc - - - - - 2020-01-02 - 20190531 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 20141117 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 20141117 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Text-ParseWords - https://metacpan.org/pod/Text::ParseWords - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - library - app:console - programming.language.perl - Text::ParseWords - parse text into an array of tokens or array of arrays - Text::ParseWords - verilen metni çözümleyerek bir dizi oluşturur. - The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. - perl-Text-ParseWords, verilen metni çözümleyerek bir dizi oluşturabilen bir perl modülüdür. - http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz - - perl - - programming/language/perl/perl-Text-ParseWords/pspec.xml - - - perl-Text-ParseWords - Text::ParseWords - parse text into an array of tokens or array of arrays - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-13 - 3.30 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 3.30 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 3.30 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-26 - 3.30 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - perl-Probe-Perl - https://metacpan.org/pod/Probe::Perl - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Information about the currently running perl - Çalışan Perl hakkında bilgi verir - perl-Probe-Perl is a Perl module for getting information about the currently running perl. - perl-Probe-Perl çalışan Perl hakkında bilgi veren bir Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/Probe-Perl-0.03.tar.gz - - perl - - programming/language/perl/perl-Probe-Perl/pspec.xml - - - perl-Probe-Perl - - perl - - - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 0.03 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Pango - https://metacpan.org/pod/Pango - - fury - uglyside@yandex.ru - - LGPL-2.1 - library - programming.language.perl - Layout and render international text. - Pango is a library for laying out and rendering text, with an emphasis on internationalization. - https://cpan.metacpan.org/authors/id/X/XA/XAOC/Pango-1.227.tar.gz - - perl-Glib - perl-Cairo - pango-devel - perl-ExtUtils-Depends - perl-ExtUtils-PkgConfig - - programming/language/perl/perl-Pango/pspec.xml - - - perl-Pango - - pango - perl-Glib - perl-Cairo - - - /usr/lib/perl5 - /usr/share/man/man3 - /usr/share/doc - - - - - 2021-12-21 - 1.227 - First release - fury - uglyside@yandex.ru - - - - - - perl-File-Listing - https://metacpan.org/release/File-Listing - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - File::Listing - Dosya sistemi dizin listesini çözümler. - Bu modül "parse_dir()" adında dosya sistemi dizin listesini çözümleyebilen bir yordamı dışa aktarır. - https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Listing-6.07.tar.gz - - perl - perl-HTTP-Date - - programming/language/perl/perl-File-Listing/pspec.xml - - - perl-File-Listing - File::Listing - parse directory listing - - perl - perl-HTTP-Date - - - /usr/share - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-10-01 - 6.07 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 6.04 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.04 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.04 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.04 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-ExtUtils-PkgConfig - https://metacpan.org/pod/ExtUtils::PkgConfig - - Pisilinux Community - admins@pisilinux.org - - LGPL-2.1 - library - programming.language.perl - A library which converts Perl XS code into C code - The pkg-config program retrieves information about installed libraries, usually for the purposes of compiling against and linking to them. - https://cpan.metacpan.org/authors/id/X/XA/XAOC/ExtUtils-PkgConfig-1.16.tar.gz - - perl - - programming/language/perl/perl-ExtUtils-PkgConfig/pspec.xml - - - perl-ExtUtils-PkgConfig - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2021-12-21 - 1.16 - First build. - fury - uglyside@yandex.ru - - - - - - perl-Data-Dump - https://metacpan.org/pod/Data::Dump - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - Perl Module for pretty printing of data structures - Perl veri yapılarının hoş bir şekilde bastırılması - perl-Data-Dump is a perl module which provides a few functions that traverse their argument and produces a string as its result. - perl-Data-Dump argümanları takip edip sonucunu bir karakter dizisi olarak bastıran fonksiyonlar sağlayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/G/GA/GAAS/Data-Dump-1.23.tar.gz - - perl - - programming/language/perl/perl-Data-Dump/pspec.xml - - - perl-Data-Dump - Perl Module for pretty printing of data structures - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-07 - 1.23 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2014-09-10 - 1.22 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-05-28 - 1.22 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-01-01 - 1.22 - Rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-11-08 - 1.22 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2012-09-06 - 1.21 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Mail-SPF - https://metacpan.org/pod/Mail::SPF - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Mail::SPF - An object-oriented implementation of Sender Policy Framework. - Mail::SPF is an object-oriented implementation of Sender Policy Framework (SPF). - https://cpan.metacpan.org/authors/id/J/JM/JMEHNLE/mail-spf/Mail-SPF-v2.9.0.tar.gz - - perl - perl-URI - perl-Error - perl-NetAddr-IP - perl-Module-Build - perl-Net-DNS-Resolver-Programmable - - programming/language/perl/perl-Mail-SPF/pspec.xml - - - perl-Mail-SPF - - perl - perl-URI - perl-Error - perl-Net-DNS - perl-NetAddr-IP - perl-Net-DNS-Resolver-Programmable - - - /usr/bin - /usr/sbin - /usr/lib/perl5 - /usr/share/man - - - - - 2021-10-14 - 2.9.0 - First build - fury - uglyside@yandex.ru - - - - - - perl-Test-Number-Delta - https://metacpan.org/pod/Test::Number::Delta - - Pisilinux Community - admins@pisilinux.org - - Apache_2 - library - programming.language.perl - Compare the difference between numbers against a given tolerance. - At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. - https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Test-Number-Delta-1.06.tar.gz - - perl - - programming/language/perl/perl-Test-Number-Delta/pspec.xml - - - perl-Test-Number-Delta - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2021-12-21 - 1.06 - First build. - fury - uglyside@yandex.ru - - - - - - perl-Test-MockModule - https://metacpan.org/release/Test-MockModule - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Override subroutines in a module for unit testing. - Birim test için bir modüldeki altprogramları geçersiz kılın. - Test-MockModule lets you temporarily redefine subroutines in other packages for the purposes of unit testing. - perl-Test-MockModule birim test amaçları için diğer paketlerdeki altprogramları geçici olarak yeniden tanımlamanıza izin verir. - https://cpan.metacpan.org/authors/id/G/GF/GFRANKS/Test-MockModule-v0.175.0.tar.gz - - perl - perl-Super - perl-Module-Build - perl-Test-Warnings - perl-Test-Pod-Coverage - - programming/language/perl/perl-Test-MockModule/pspec.xml - - - perl-Test-MockModule - Override subroutines in a module for unit testing. - - perl - perl-Super - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2020-10-01 - 0.175.0 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-07-20 - 0.173.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 0.172.0 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-02 - 0.171.0 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.11 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-File-Slurper - https://metacpan.org/release/File-Slurper - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - A simple, sane and efficient module to slurp a file - Bir dosyayı indirmek için iyi ve verimli bir perl modülüdür. - perl-File-Slurper, provides a simple, sane and efficient module to slurp a file. - perl-File-Slurper Bir dosyayı indirmek için iyi ve verimli bir perl modülü sunar. - https://cpan.metacpan.org/authors/id/L/LE/LEONT/File-Slurper-0.012.tar.gz - - perl - perl-Test-Warnings - - programming/language/perl/perl-File-Slurper/pspec.xml - - - perl-File-Slurper - A simple, sane and efficient module to slurp a file - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-02-12 - 0.012 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTTP-Message - https://metacpan.org/release/HTTP-Message - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP::Message - HTTP tarzı mesaj (ana sınıf) - HTTP::Message nesnesi bazı HTTP başlıkları ve içerik gövdesi içerir. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Message-6.26.tar.gz - - perl - perl-IO-HTML - perl-HTTP-Date - perl-LWP-Mediatypes - perl-URI - perl-Try-Tiny - perl-Encode-Locale - - programming/language/perl/perl-HTTP-Message/pspec.xml - - - perl-HTTP-Message - HTTP::Message - HTTP style message (base class) - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man/man3 - - - - - 2020-10-01 - 6.26 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-07-20 - 6.25 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 6.24 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 6.22 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 6.18 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.13 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.06 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.06 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Test-Exception - https://metacpan.org/pod/Test::Exception - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Module for testing exception based codes - Perl için exception tabanlı kod denetleme modülü - This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. - perl-Test-Exception, perl için exception tabanlı kod denetleme modülü içerir. - http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/Test-Exception-0.43.tar.gz - - perl - perl-Sub-Uplevel - - programming/language/perl/perl-Test-Exception/pspec.xml - - - perl-Test-Exception - Module for testing exception based codes - - perl - perl-Sub-Uplevel - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Test-Exception - - - - - 2020-01-12 - 0.43 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.43 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.43 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.43 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 0.43 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-HTML-Parser - https://metacpan.org/release/HTML-Parser - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - HTML Parser - HTML ayrıştırmak için kütüphane - The HTML-Parser distribution is a collection of modules that parse and extract information from HTML documents. - HTML-Parser yazılımı, HTML dökümanlarından bilgi ayrıştıran ve seçip çıkaran bir modüller kolleksiyonudur. - La distribución HTML-Parser es una colección de módulos que analizan la sintaxis y extraen información de documentos HTML. - https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/HTML-Parser-3.75.tar.gz - - perl - perl-URI - perl-Test-Pod - perl-HTML-Tagset - perl-HTTP-Message - - programming/language/perl/perl-HTML-Parser/pspec.xml - - - perl-HTML-Parser - HTML Parser - - perl - perl-URI - perl-HTML-Tagset - perl-HTTP-Message - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-HTML-Parser - - - - - 2020-08-30 - 3.75 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-08-30 - 3.73 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-02 - 3.72 - Rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 3.72 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 3.72 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.71 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 3.71 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Crypt-Random-TESHA2 - https://metacpan.org/pod/Crypt::Random::TESHA2 - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Random numbers using timer/schedule entropy. - Crypt::Random::TESHA2 produces "userspace voodoo entropy" for people that do not have or don't want to use O/S supplied sources. - https://cpan.metacpan.org/authors/id/D/DA/DANAJ/Crypt-Random-TESHA2-0.01.tar.gz - - perl - - programming/language/perl/perl-Crypt-Random-TESHA2/pspec.xml - - - perl-Crypt-Random-TESHA2 - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.01 - First build - fury - uglyside@yandex.ru - - - - - - perl-HTML-Template-Pro - https://metacpan.org/pod/HTML::Template::Pro - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - LGPLv2 - library - programming.language.perl - Perl/XS module to use HTML Templates from CGI scripts - CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modülü - A fast and lightweight C/Perl+XS HTML Template engine implementation. - perl-HTML-Template-Pro, CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modüldür. - http://search.cpan.org/CPAN/authors/id/V/VI/VIY/HTML-Template-Pro-0.9510.tar.gz - - perl - perl-JSON - libpcre-devel - - programming/language/perl/perl-HTML-Template-Pro/pspec.xml - - - perl-HTML-Template-Pro - Perl/XS module to use HTML Templates from CGI scripts - - perl - libpcre - perl-JSON - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-01-14 - 0.9510 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.9510 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.9510 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.9510 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 0.9510 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-Test-Warn - https://metacpan.org/pod/Test::Warn - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Perl extension to test methods for warnings - Test uyarıları için Perl eklentisi - perl-Test-Warn module provides a few convenience methods for testing warning based code. - perl-Test-Warn modülü, uyarı temelli kodları test etmeye yarayan birkaç kolaylık metodu sağlamaktadır. - https://cpan.metacpan.org/authors/id/B/BI/BIGJ/Test-Warn-0.36.tar.gz - - perl - perl-Test-Pod - perl-Sub-Uplevel - - programming/language/perl/perl-Test-Warn/pspec.xml - - - perl-Test-Warn - Perl extension to test methods for warnings - - perl - perl-Sub-Uplevel - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 0.36 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.30 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.30 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.30 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Sub-Install - https://metacpan.org/release/Sub-Install - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Sub::Install - install subroutines into packages easily - Paketlere altyordamları kolayca yüklemeye yarayan bir Perl Modülü - perl-Sub-Install is a Perl module that installs subroutines into packages easily. - perl-Sub-Install, paketlere altyordamları kolayca yükleyen bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Install-0.928.tar.gz - - perl - - programming/language/perl/perl-Sub-Install/pspec.xml - - - perl-Sub-Install - Sub::Install - install subroutines into packages easily - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-09-23 - 0.928 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTTP-Negotiate - https://metacpan.org/pod/HTTP::Negotiate - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - A complete implementation of the HTTP content negotiation algorithm - HTTP içerik sorgulama algoritması uygulaması - This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. - Bu modül tam bir HTTP içerik sorgulama algoritması uygulaması içermektedir - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz - - perl - perl-HTTP-Date - perl-HTTP-Message - - programming/language/perl/perl-HTTP-Negotiate/pspec.xml - - - perl-HTTP-Negotiate - A complete implementation of the HTTP content negotiation algorithm - - perl - perl-HTTP-Date - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-13 - 6.01 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.01 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.01 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.01 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-HTML-FormatText-WithLinks-AndTables - https://metacpan.org/pod/HTML::FormatText::WithLinks::AndTables - - Osman Erkan - osman.erkan@pisilinux.org - - PerlArtistic GPL - library - programming.language.perl - Converts HTML to Text with tables in tact. - HTML'i metne tablolar ile beraber çeviren perl modülü - This module was inspired by HTML::FormatText::WithLinks which has proven to be a useful `lynx -dump` work-alike. - Bu modül HTML'i metne içersindeki tablolar ile beraber dönüştürür. - http://www.cpan.org/authors/id/D/DA/DALEEVANS/HTML-FormatText-WithLinks-AndTables-0.07.tar.gz - - perl - perl-URI - perl-HTML-FormatText-WithLinks - - programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml - - - perl-HTML-FormatText-WithLinks-AndTables - Converts HTML to Text with tables in tact. - - perl - perl-URI - perl-HTML-FormatText-WithLinks - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-14 - 0.07 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.07 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.07 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.06 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-HTTP-Daemon - https://metacpan.org/release/HTTP-Daemon - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - A simple http server class - Basit bir HTTP sunucu sınıfı - Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. - HTTP::Daemon sınıfı örnekleri HTTP/1.1 sunucusu üzerinden gelen istekleri dinler. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Daemon-6.12.tar.gz - - perl - perl-Module-Build - - - HTTP-Daemon-6.04-EU-MM-is-not-deprecated.patch - - programming/language/perl/perl-HTTP-Daemon/pspec.xml - - - perl-HTTP-Daemon - A simple http server class - - perl - perl-HTTP-Date - perl-HTTP-Message - perl-LWP-Mediatypes - - - /usr/share - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-07-20 - 6.12 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 6.06 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.01 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.01 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 6.01 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-IO-Socket-IP - https://metacpan.org/release/IO-Socket-IP - - Blue Devil - bluedevil@sctzine.com - - Artistic - library - programming.language.perl - Family-neutral IP socket supporting both IPv4 and IPv6 - Hem IPv4 hem de IPv6 soketlerini destekleyen perl modülü - This module provides a protocol-independent way to use IPv4 and IPv6 sockets, as a drop-in replacement for IO::Socket::INET. Most constructor arguments and methods are provided in a backward-compatible way. - IO::Socket::IP, Bu modül hem IPv4 hem de IPv6 soketlerini protokolden bağımsız kullanmayı destekler. - https://cpan.metacpan.org/authors/id/P/PE/PEVANS/IO-Socket-IP-0.41.tar.gz - - perl - perl-Module-Build - - programming/language/perl/perl-IO-Socket-IP/pspec.xml - - - perl-IO-Socket-IP - Family-neutral IP socket supporting both IPv4 and IPv6 - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2020-10-01 - 0.41 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-08 - 0.39 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-File-Which - https://metacpan.org/pod/File::Which - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - app:console - programming.language.perl - Portable Perl implementation of the "which" utility - Which komutunun Perl dilinde taşınabilir bir gerçekleştirimi - perl-File-Which is a Perl module that is portable implementation of the "which" utility. - perl-File-Which, which komutunun Perl dilinde taşınabilir bir gerçekleştirimi olan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Which-1.23.tar.gz - - perl - perl-Test-Script - - programming/language/perl/perl-File-Which/pspec.xml - - - perl-File-Which - - perl - perl-Test-Script - - - /usr/bin - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 1.23 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Test-Script - https://metacpan.org/pod/Test::Script - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Basic cross-platform tests for Perl scripts - Perl için temel çoklu platform test araçlarını içeren modül - perl-Test-Script is a Perl module that has basic cross-platform tests for scripts. - perl-Test-Script temel çoklu platform test araçlarını içeren bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Test-Script-1.26.tar.gz - - perl - perl-IPC-Run3 - perl-Probe-Perl - perl-test2-suite - perl-Capture-Tiny - - programming/language/perl/perl-Test-Script/pspec.xml - - - perl-Test-Script - - perl - perl-IPC-Run3 - perl-Probe-Perl - perl-test2-suite - perl-Capture-Tiny - - - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 1.26 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Role-Tiny - https://metacpan.org/release/Role-Tiny - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Role::Tiny - Roles: a nouvelle cuisine portion size slice of Moose - Minimal rol kompozisyon aracı - Role::Tiny is a minimalist role composition tool. - perl-Role-Tiny, minimal rol kompozisyon aracı olan perl modülü sunar. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Role-Tiny-2.001004.tar.gz - - perl - perl-Test-Fatal - - programming/language/perl/perl-Role-Tiny/pspec.xml - - - perl-Role-Tiny - Role::Tiny - Roles: a nouvelle cuisine portion size slice of Moose - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 2.001004 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-return-multilevel - https://metacpan.org/release/Data-Munge/ - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Various utility functions - Various utility functions - https://cpan.metacpan.org/authors/id/M/MA/MAUKE/Return-MultiLevel-0.05.tar.gz - - perl - perl-data-munge - perl-Test-Fatal - - programming/language/perl/perl-return-multilevel/pspec.xml - - - perl-return-multilevel - - perl - perl-data-munge - perl-Test-Fatal - - - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 0.05 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Capture-Tiny - https://metacpan.org/pod/Capture::Tiny - - Pisi Linux Admins - admins@pisilinux.org - - Apache-2.0 - library - programming.language.perl - Perl module to capture stdout and stderr from Perl, XS or external programs - Standart çıktı ve hata akışlarını yakalamaya yarayan Perl modülü - perl-Capture-Tiny is a Perl module to capture stdout and stderr from Perl, XS or external programs. - perl-Capture-Tiny, Perl, XS veya harici programların standart çıktı ve hata akışlarının yakalanmasını sağlayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.48.tar.gz - - perl - - programming/language/perl/perl-Capture-Tiny/pspec.xml - - - perl-Capture-Tiny - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 0.48 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.46 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.44 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.36 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.36 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Test-Fatal - https://metacpan.org/release/Test-Fatal - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Perl module to test code with exceptions - İstisna içeren kodları test etmek için Perl modülü - perl-Test-Fatal provides incredible simple helpers for testing Perl code with exceptions. - perl-Test-Fatal, istisna (exception) içeren kodları test etmek için çok basit bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.016.tar.gz - - perl - perl-Try-Tiny - - programming/language/perl/perl-Test-Fatal/pspec.xml - - - perl-Test-Fatal - Perl module to test code with exceptions - - perl - perl-Try-Tiny - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-11 - 0.016 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 0.014 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.14 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.14 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.14 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-test-exit - https://metacpan.org/release/Test-Exit - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Test whether code exits without terminating testing. - Testi sonlandırmadan kodun çıkıp çıkmadığını test edin. - Test whether code exits without terminating testing. - Testi sonlandırmadan kodun çıkıp çıkmadığını test edin. - https://cpan.metacpan.org/authors/id/A/AR/ARODLAND/Test-Exit-0.11.tar.gz - - perl - perl-return-multilevel - - programming/language/perl/perl-test-exit/pspec.xml - - - perl-test-exit - - perl - perl-return-multilevel - - - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 0.097 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Canary-Stability - https://metacpan.org/release/Canary-Stability - - Alihan Öztürk - alihan@pisilinux.org - - GPLv1 - library - programming.language.perl - CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules - Schmorp modülleri için perl uyumluluğunu deneteleyebilen Perl modülü - CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules - Bu modül, schmorp modülleri için perl uyumluluğunu deneteleyebilmektedir. - https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2013.tar.gz - - perl - - programming/language/perl/perl-Canary-Stability/pspec.xml - - - perl-Canary-Stability - CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules - - perl - - - /usr/lib - /usr/share - /usr/share/man - - - - - 2020-01-02 - 2013 - Version bump, translation added - Blue Devil - bluedevil@sctzine.com - - - 2019-04-20 - 2012 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-26 - 2012 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2012 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2011 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2011 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Font-FreeType - https://metacpan.org/pod/Font::FreeType - - fury - uglyside@yandex.ru - - perl_5 - library - programming.language.perl - Font::FreeType - read font files and render glyphs from Perl using FreeType2. - This module allows Perl programs to conveniently read information from font files. All the font access is done through the FreeType2 library, which supports many formats. It can render images of characters with high-quality hinting and antialiasing, extract metrics information, and extract the outlines of characters in scalable formats like TrueType. - https://cpan.metacpan.org/authors/id/D/DM/DMOL/Font-FreeType-0.16.tar.gz - - perl - freetype-devel - perl-File-Which - perl-Test-Warnings - perl-Devel-CheckLib - perl-ExtUtils-MakeMaker - - programming/language/perl/perl-Font-FreeType/pspec.xml - - - perl-Font-FreeType - - perl - freetype - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2021-12-21 - 0.16 - First build. - fury - uglyside@yandex.ru - - - - - - perl-Devel-GlobalDestruction - https://metacpan.org/release/Devel-GlobalDestruction - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Devel::GlobalDestruction - Provides function returning the equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls. - Devel::GlobalDestruction eski perl betikleri için ${^GLOBAL_PHASE} eq 'DESTRUCT' dengi yordam döndürür. - perl-Devel-GlobalDestruction provides function returning the equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls. - perl-Devel-GlobalDestruction, eski perl betikleri için ${^GLOBAL_PHASE} eq 'DESTRUCT' dengi yordam sunar. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.14.tar.gz - - perl - perl-Sub-Exporter-Progressive - - programming/language/perl/perl-Devel-GlobalDestruction/pspec.xml - - - perl-Devel-GlobalDestruction - Devel::GlobalDestruction - Provides function returning the equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls. - - perl - perl-Sub-Exporter-Progressive - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 0.14 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-File-chdir - https://metacpan.org/pod/File::chdir - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl module for changing directories - Dizin değiştirmek için bir Perl modülü. - Perl's chdir() has the unfortunate problem of being very, very, very global. If any part of your program calls chdir() or if any library you use calls chdir(), it changes the current working directory for the whole program. - Dizin değiştirmek için bir Perl modülü. - http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/File-chdir-0.1011.tar.gz - - perl - - programming/language/perl/perl-File-chdir/pspec.xml - - - perl-File-chdir - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-09 - 0.1011 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Cairo - https://metacpan.org/pod/Cairo - - Pisilinux Community - admins@pisilinux.org - - LGPL-2.1 - library - programming.language.perl - Perl bindings to the cairo graphics library - Cairo provides Perl bindings for the vector graphics library cairo. It supports multiple output targets, including PNG, PDF and SVG. Cairo produces identical output on all those targets. - https://cpan.metacpan.org/authors/id/X/XA/XAOC/Cairo-1.109.tar.gz - - perl - cairo-devel - perl-Font-FreeType - perl-ExtUtils-Depends - perl-Test-Number-Delta - perl-ExtUtils-PkgConfig - perl-ExtUtils-MakeMaker - - programming/language/perl/perl-Cairo/pspec.xml - - - perl-Cairo - - perl - cairo - freetype - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2021-12-21 - 1.109 - First build. - fury - uglyside@yandex.ru - - - - - - perl-libwww - https://metacpan.org/release/libwww-perl - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Application programming interface to the World-Wide Web - Perl için dünya çapında ağ programlama arayüzü - libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. - libwww-perl, perl ile dünya çapında ağ (www) programlama yapabilmek için çesitli perl arayüzleri sunar. - La colección libwww-perl es un conjunto de módulos Perl que facilitan una interfaz de programación de aplicación, simple y consistente para la Web. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-6.49.tar.gz - - perl - perl-NET-HTTP - perl-HTTP-Daemon - perl-HTML-Parser - perl-HTTP-Cookies - perl-File-Listing - perl-Encode-Locale - perl-HTTP-Negotiate - perl-WWW-Robotrules - perl-Test-Needs - perl-Test-Fatal - perl-Test-RequiresInternet - - programming/language/perl/perl-libwww/pspec.xml - - - perl-libwww - Application programming interface to the World-Wide Web - - perl - perl-NET-HTTP - perl-Try-Tiny - perl-Data-Dump - perl-HTTP-Daemon - perl-HTML-Parser - perl-HTTP-Cookies - perl-File-Listing - perl-Encode-Locale - perl-HTTP-Negotiate - perl-WWW-Robotrules - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2020-10-01 - 6.49 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-07-20 - 6.47 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 6.44 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 6.43 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.15 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.15 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 6.15 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Font-TTF - https://metacpan.org/pod/Font::TTF - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - Perl module for TrueType Font hacking - TrueType yazıtipleri için Perl modülü - perl-Font-TTF is a Perl module that allows you to do almost anything to a TrueType/OpenType Font including modifying and inspecting nearly all tables. - perl-Font-TTF, çok sayıda dosya biçimini TrueType/OpenType yazıtipine dönüştürmenizi sağlayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/B/BH/BHALLISSY/Font-TTF-1.06.tar.gz - - perl - perl-IO-String - - programming/language/perl/perl-Font-TTF/pspec.xml - - - perl-Font-TTF - Perl module for TrueType Font hacking - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-11 - 1.06 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.05 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.05 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.05 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.05 - First release - Ayhan Yalçınsoy - ayhanyalcinoys@pisilinux.org - - - - - - perl-Test-Needs - https://metacpan.org/pod/Test::Needs - - Blue Devil - bluedevil@sctzine.com - - Perl 5 - library - programming.language.perl - Test::Needs - Skip tests when modules not available - Bu perl modülü, olmayan perl modülü için hata vermez. - Skip test scripts if modules are not available. The requested modules will be loaded, and optionally have their versions checked. If the module is missing, the test script will be skipped. Modules that are found but fail to compile will exit with an error rather than skip. - perl-Test-Needs, olmayan perl modülü için hata vermeyen bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-Needs-0.002006.tar.gz - - perl - - programming/language/perl/perl-Test-Needs/pspec.xml - - - perl-Test-Needs - Test::Needs - Skip tests when modules not available - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-12-17 - 0.002006 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-07 - 0.002006 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Crypt-OpenSSL-Random - https://metacpan.org/pod/Crypt::OpenSSL::Random - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - OpenSSL/LibreSSL pseudo-random number generator access. - Crypt::OpenSSL::Random provides the ability to seed and query the OpenSSL and LibreSSL library's pseudo-random number generators. - https://cpan.metacpan.org/authors/id/R/RU/RURBAN/Crypt-OpenSSL-Random-0.15.tar.gz - - openssl-devel - perl-Crypt-OpenSSL-Guess - - programming/language/perl/perl-Crypt-OpenSSL-Random/pspec.xml - - - perl-Crypt-OpenSSL-Random - - openssl - perl-Crypt-OpenSSL-Guess - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.15 - First build - fury - uglyside@yandex.ru - - - - - - perl-Digest-MD5 - https://metacpan.org/pod/Digest::MD5 - - PisiLinux Community - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl interface to the MD5 Algorithm - MD5 Algoritmasına perl arayüzü - Perl interface to the MD5 Algorithm - perl-Digest-MD5, MD5 Algoritmasına perl arayüzü sunar. - http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.55.tar.gz - - perl - - programming/language/perl/perl-Digest-MD5/pspec.xml - - - perl-Digest-MD5 - Perl interface to the MD5 Algorithm - - perl - - - /usr/bin - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 2.55 - Rebuilt for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 2.55 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.55 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.53 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 2.53 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-NET-HTTP - https://metacpan.org/pod/Net::HTTP - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Low-level HTTP connection (client) - Düşük-seviye HTTP bağlantı istemcisi - The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. - Net::HTTP düşük-seviye HTTP bağlantı istemcisi sınıfı sunar. - https://cpan.metacpan.org/authors/id/O/OA/OALDERS/Net-HTTP-6.19.tar.gz - - perl - perl-URI - - programming/language/perl/perl-NET-HTTP/pspec.xml - - - perl-NET-HTTP - Low-level HTTP connection (client) - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-13 - 6.19 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 6.09 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 6.09 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.09 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 6.09 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Encode-Locale - https://metacpan.org/release/Encode-Locale - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2+ - app:console - programming.language.perl - NAME::Encode::Locale - Determine the locale encoding - NAME::Encode::Locale - yerel kodlamayi tespit eder. - In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. - Birçok uygulamada perl'ün söz katarları için unikod kullanmasını sağlamak akıllıca olur. Bu perl betiği unikod kullanmayı kolaylaştırır. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Encode-Locale-1.05.tar.gz - - perl - - programming/language/perl/perl-Encode-Locale/pspec.xml - - - perl-Encode-Locale - NAME::Encode::Locale - Determine the locale encoding - - perl - - - /usr/lib - /usr/share - - - - - 2020-01-07 - 1.05 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.05 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.05 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.05 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.05 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Mail-AuthenticationResults - https://metacpan.org/pod/Mail::AuthenticationResults - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Object Oriented Authentication-Results Headers. - This parser copes with most styles of Authentication-Results header seen in the wild, but is not yet fully RFC7601 compliant. - https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-AuthenticationResults-2.20210915.tar.gz - - perl - perl-JSON - perl-Clone - perl-Test-Exception - - programming/language/perl/perl-Mail-AuthenticationResults/pspec.xml - - - perl-Mail-AuthenticationResults - - perl-JSON - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 2.20210915 - First build - fury - uglyside@yandex.ru - - - - - - perl-Digest-HMAC - https://metacpan.org/pod/Digest::HMAC - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Keyed-Hashing for Message Authentication - HMAC-MD5 şifrelemesi sağlayan bir Perl modülü - This Perl module provides HMAC-MD5 hashing. - Bu Perl modülü HMAC-MD5 şifrelemesi sağlar. - Este módulo Perl facilita hashing HMAC-MD5 - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz - - perl - perl-Digest-SHA1 - - programming/language/perl/perl-Digest-HMAC/pspec.xml - - - perl-Digest-HMAC - Keyed-Hashing for Message Authentication - - perl - perl-Digest-SHA1 - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Digest-HMAC - - - - - 2020-01-02 - 1.03 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.03 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.03 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.03 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-DBI - https://dbi.perl.org/ - - Blue Devil - bluedevil@sctzine.com - - GPL - app:console - library - programming.language.perl - Database independent interface for Perl - Perl için veritabanından bağımsız arayüz. - The DBI is the standard database interface module for Perl. It defines a set of methods, variables and conventions that provide a consistent database interface independent of the actual database being used. - DBI Perl için standart veritabanı arayüzüdür. Birçok yordam, değişken ve kural tanımlar. - https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.643.tar.gz - - perl - - programming/language/perl/perl-DBI/pspec.xml - - - perl-DBI - Database independent interface for Perl - - perl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-02-05 - 1.643 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-08 - 1.642 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2016-04-22 - 1.634 - First release, built with docker. - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - perl-XML-SAX - https://metacpan.org/pod/XML::SAX - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl module for using and building Perl SAX2 XML parsers, filters, and drivers - Perl SAX2 XML ayıklacı, süzgeç ve sürücülerini kullanmak ve inşa etmek için gerekli Perl modülü - This module consists of several framework classes for using and building Perl SAX2 XML parsers, filters, and drivers. - perl-XML-SAX, SAX2 XML ayıklacı, süzgeç ve sürücülerini kullanmak ve inşa etmek için gerekli Perl modülüdür. - El módulo consiste de varias clases de framework para usar y construir (build) parsers, filtros y controladores SAX2 XML - https://cpan.metacpan.org/authors/id/G/GR/GRANTM/XML-SAX-1.02.tar.gz - - perl - libxml2-devel - perl-XML-SAX-Base - perl-XML-NamespaceSupport - - programming/language/perl/perl-XML-SAX/pspec.xml - - - perl-XML-SAX - Perl module for using and building Perl SAX2 XML parsers, filters, and drivers - - perl - libxml2 - perl-XML-SAX-Base - perl-XML-NamespaceSupport - - - /usr/lib - /usr/share/doc - /usr/share/man - - - System.Package - - - - - 2020-01-13 - 1.02 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.00 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-12-12 - 0.99 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-YAML-LibYAML - https://metacpan.org/pod/YAML::LibYAML - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Perl Binding to libyaml. - Perl YAML Serialization using XS and libyaml. - https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-0.83.tar.gz - - perl - - programming/language/perl/perl-YAML-LibYAML/pspec.xml - - - perl-YAML-LibYAML - - perl - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.83 - First build - fury - uglyside@yandex.ru - - - - - - perl-data-munge - https://metacpan.org/release/Data-Munge/ - - Kamil Atlı - suvari@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Various utility functions - Çeşitli yardımcı fonksiyonlar - Various utility functions - Çeşitli yardımcı fonksiyonlar - https://cpan.metacpan.org/authors/id/M/MA/MAUKE/Data-Munge-0.097.tar.gz - - perl - perl-test2-suite - perl-Capture-Tiny - perl-Test-Warnings - - programming/language/perl/perl-data-munge/pspec.xml - - - perl-data-munge - - perl - perl-test2-suite - perl-Capture-Tiny - perl-Test-Warnings - - - /usr/lib - /usr/share/man - - - - - 2020-04-09 - 0.097 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Net-RawIP - https://metacpan.org/pod/Net::RawIP - - Blue Devil - bluedevil@sctzine.com - - Artistic - library - programming.language.perl - Perl extension to manipulate raw IP packets with interface to libpcap - Raw IP adreslerini libpcap ile değiştirmeye yarayan perl eklentisi. - Net::RawIP, a perl module can to manipulate raw IP packets, with an optional feature for manipulating Ethernet headers. - Net::RawIP, ham IP paketlerini ve ethernet başlıklarını değiştirebilen bir perl modülüdür. - http://search.cpan.org/CPAN/authors/id/S/SA/SAPER/Net-RawIP-0.25.tar.gz - - perl - libpcap-devel - - programming/language/perl/perl-Net-RawIP/pspec.xml - - - perl-Net-RawIP - Perl extension to manipulate raw IP packets with interface to libpcap - - perl - libpcap - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-08 - 0.25 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Alien-Libxml2 - https://metacpan.org/release/Alien-Libxml2 - - Blue Devil - bluedevil@sctzine.com - - Artistic - library - programming.language.perl - Installs the C libxml2 library on your system. - Diğer modüllerin libxml2 kullanabilmesi için Perl bağlayıcıları. - This module provides libxml2 for other modules to use. - perl-Alien-Libxml2, diğer modüllerın lıbxml2 modülünü kullanabilmesi için gerekli modülleri sağlar. - https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Libxml2-0.16.tar.gz - - perl-Alien-Build - libxml2-devel - perl - - programming/language/perl/perl-Alien-Libxml2/pspec.xml - - - perl-Alien-Libxml2 - Installs the C libxml2 library on your system. - - perl-Alien-Build - libxml2 - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-22 - 0.16 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-04-10 - 0.15 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-HTML-Template - https://metacpan.org/pod/HTML::Template - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - Perl module to use HTML-like templating language - HTML benzeri taslak oluşturup kullanmak için perl modülü - This module attempts to make using HTML templates simple and natural. - Bu modül sayesinde oluşturduğunuz HTML taslaklarını perl ile kullanabilirsiniz. - https://cpan.metacpan.org/authors/id/S/SA/SAMTREGAR/HTML-Template-2.97.tar.gz - - perl - perl-CGI - - programming/language/perl/perl-HTML-Template/pspec.xml - - - perl-HTML-Template - Perl module to use HTML-like templating language - - perl - perl-CGI - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-14 - 2.97 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2019-04-20 - 2.95 - Rebuild perl-CGI - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-26 - 2.95 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.95 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.95 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 2.95 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-CGI - https://metacpan.org/release/CGI - - Alihan Öztürk - alihan@pisilinux.org - - Artistic - GPLv1 - library - programming.language.perl - Handle Common Gateway Interface requests and responses. - CGI istek ve yanıtlarını işleyebilmek için bir perl kütüphanesi - Handle Common Gateway Interface requests and responses. - perl-CGI, CGI istek ve yanıtlarını işleyebilmek için bir perl kütüphanesidir. - https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-4.50.tar.gz - - perl - perl-Test-Deep - perl-Test-Warn - perl-HTML-Parser - - programming/language/perl/perl-CGI/pspec.xml - - - perl-CGI - Handle Common Gateway Interface requests and responses. - - perl - perl-Test-Deep - perl-Test-Warn - perl-HTML-Parser - - - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-07-20 - 4.50 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 4.49 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 4.47 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 4.46 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 4.45 - Version bump and translations added - Blue Devil - bluedevil@sctzine.com - - - 2020-01-02 - 4.44 - Version bump and translations added - Blue Devil - bluedevil@sctzine.com - - - 2019-04-20 - 4.40 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-26 - 4.38 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 4.35 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.28 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 4.28 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Crypt-OpenSSL-Guess - https://metacpan.org/pod/Crypt::OpenSSL::Guess - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Guess OpenSSL include path. - Crypt::OpenSSL::Guess provides helpers to guess OpenSSL include path on any platforms. - https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-0.15.tar.gz - - perl-ExtUtils-MakeMaker - - programming/language/perl/perl-Crypt-OpenSSL-Guess/pspec.xml - - - perl-Crypt-OpenSSL-Guess - - perl - perl-ExtUtils-MakeMaker - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2022-04-14 - 0.15 - Version bump - fury - uglyside@yandex.ru - - - 2021-12-20 - 0.14 - Version bump - fury - uglyside@yandex.ru - - - 2021-09-18 - 0.13 - First build - fury - uglyside@yandex.ru - - - - - - perl-File-Slurp - https://metacpan.org/release/File-Slurp - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - A Perl module that is efficient in reading/writing of Complete Files - Complete dosyalarını verimli bir şekilde yazma/okuma olanağı - Efficient Reading/Writing of Complete Files. It provides subroutines to read or write entire files with as simple call. - perl-File-Slurp Complete dosyalarını verimli bir şekilde yazma/okuma olanağı sunan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/File-Slurp-9999.32.tar.gz - - perl - - programming/language/perl/perl-File-Slurp/pspec.xml - - - perl-File-Slurp - A Perl module that is efficient in reading/writing of Complete Files - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-12-17 - 9999.32 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-20 - 9999.32 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 9999.30 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 9999.29 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 9999.19 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-12-14 - 9999.19 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-HTTP-Body - https://metacpan.org/pod/HTTP::Body - - Osman Erkan - osman.erkan@pisilinux.org - - Artistic - GPLv2 - app:console - programming.language.perl - HTTP Body Parser - HTTP Gövde Çözümleyici - HTTP::Body parses chunks of HTTP POST data and supports application/octet-stream, application/x-www-form-urlencoded, and multipart/form-data. - HTTP::Body, HTTP POST verisini çözümler ve application/octet-stream, application/x-www-form-urlencoded, ile multipart/form-data verilerini destekler. - http://search.cpan.org/CPAN/authors/id/G/GE/GETTY/HTTP-Body-1.22.tar.gz - - perl - perl-Test-Pod - perl-Test-Deep - perl-HTTP-Message - perl-Test-Pod-Coverage - - programming/language/perl/perl-HTTP-Body/pspec.xml - - - perl-HTTP-Body - HTTP Body Parser - - perl - perl-HTTP-Message - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2020-01-14 - 1.22 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.22 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.22 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.22 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Crypt-Random-Seed - https://metacpan.org/pod/Crypt::Random::Seed - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Simple method to get strong randomness. - Crypt::Random::Seed provides a simple interface to get the strongest source of randomness on the current platform, typically for use in seeding a CSPRNG such as Math::Random::ISAAC. - https://cpan.metacpan.org/authors/id/D/DA/DANAJ/Crypt-Random-Seed-0.03.tar.gz - - perl - - programming/language/perl/perl-Crypt-Random-Seed/pspec.xml - - - perl-Crypt-Random-Seed - - perl - perl-Crypt-Random-TESHA2 - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 0.03 - First build - fury - uglyside@yandex.ru - - - - - - perl-Sub-Identify - https://metacpan.org/pod/Sub::Identify - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Perl module to retrieve names of code references - Kod referanslarının adlarını almak için Perl modülü - perl-Sub-Identify is a Perl module allowing you to retrieve the real name of code references through the introspection mechanism. - perl-Sub-Identify, introspection mekanizmasıyla kod referanslarının adlarını almaya yarayan bir Perl modülüdür. - http://www.cpan.org/authors/id/R/RG/RGARCIA/Sub-Identify-0.14.tar.gz - - perl - perl-Test-Pod - - programming/language/perl/perl-Sub-Identify/pspec.xml - - - perl-Sub-Identify - Perl module to retrieve names of code references - - perl - perl-Test-Pod - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 0.14 - Rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.14 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.12 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Socket6 - https://search.cpan.org/dist/Socket6 - - PisiLinux Community - admins@pisilinux.org - - PerlArtistic - library - programming.language.perl - A getaddrinfo/getnameinfo support module - A getaddrinfo/getnameinfo support module - A getaddrinfo/getnameinfo support module - A getaddrinfo/getnameinfo support module - https://cpan.metacpan.org/authors/id/U/UM/UMEMOTO/Socket6-0.29.tar.gz - - perl - - programming/language/perl/perl-Socket6/pspec.xml - - - perl-Socket6 - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2021-10-14 - 0.29 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - perl-Event - https://metacpan.org/release/Event - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - Artistic - library - programming.language.perl - Event loop processing module in Perl - Perl için olay döngüsü işleme modülü - The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute. - Event modülü çeşitli türde olayları izlemek için merkezi bir olanak sağlamakta ve bu olaylar meydana geldiğinde sisteme geri çağırım (callback) uyarmaktadır. - https://cpan.metacpan.org/authors/id/E/ET/ETJ/Event-1.27.tar.gz - - perl - - programming/language/perl/perl-Event/pspec.xml - - - perl-Event - Event loop processing module in Perl - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc/perl-Event - - - - - 2020-01-07 - 1.27 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2012-09-06 - 1.27 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-mailtools - https://metacpan.org/pod/MailTools - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - MailTools - bundle of ancient email modules. - MailTools is a bundle: an ancient form of combining packages into one distribution. - https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MailTools-2.21.tar.gz - - perl-timedate - - programming/language/perl/perl-mailtools/pspec.xml - - - perl-mailtools - - perl-timedate - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-09-18 - 2.21 - First build - fury - uglyside@yandex.ru - - - - - - perl-sub-info - https://metacpan.org/pod/Sub::Info - - Kamil Atlı - suvari@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Tool for inspecting subroutines. - Altyordamları denetleme aracı. - Tool for inspecting subroutines. - https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Sub-Info-0.002.tar.gz - - perl - perl-importer - - programming/language/perl/perl-sub-info/pspec.xml - - - perl-sub-info - - perl - perl-importer - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-09 - 0.002 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Net-SMTP-SSL - https://metacpan.org/pod/Net::SMTP::SSL - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - SSL Support for Net::SMTP - Net::SMTP için SSL desteği - perl-NET-SMTP-SSL implements the same API as Net::SMTP but uses IO::Socket::SSL for its network operations. - perl-Net-SMTP-SSL, SMTP protokolüne SSL desteği katarak güvenli e-posta gönderimi sağlar. - http://www.cpan.org/authors/id/R/RJ/RJBS/Net-SMTP-SSL-1.04.tar.gz - - perl - perl-IO-Socket-SSL - - programming/language/perl/perl-Net-SMTP-SSL/pspec.xml - - - perl-Net-SMTP-SSL - SSL Support for Net::SMTP - - perl - perl-IO-Socket-SSL - - - /usr/lib - /usr/share/perl - /usr/share/doc - /usr/share/man - - - - - 2020-01-13 - 1.04 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-09-08 - 1.04 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.04 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 1.03 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Module-Runtime - https://metacpan.org/release/Module-Runtime - - Blue Devil - bluedevil@sctzine.com - - Perlv5 - library - programming.language.perl - Module::Runtime - runtime module handling - Çalışma zamanında modülleri idare eden perl modülü - The functions exported by this module deal with runtime handling of Perl modules, which are normally handled at compile time. This module avoids using any other modules, so that it can be used in low-level infrastructure. - perl-Module-Runtime, çalışma zamanında modülleri idare eden perl modülü sunar. - https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-0.016.tar.gz - - perl - perl-Module-Build - perl-Test-Pod - perl-Test-Pod-Coverage - - programming/language/perl/perl-Module-Runtime/pspec.xml - - - perl-Module-Runtime - Module::Runtime - runtime module handling - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-09-23 - 0.016 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Net-DNS - https://metacpan.org/release/Net-DNS - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl interface to the DNS resolver - Net::DNS, bir DNS (Domain Name System -Alan Adı Sistemi) çözücüsü olarak işleyen bir Perl modülleri kolleksiyonudur. - Net::DNS is a collection of Perl modules that act as a Domain Name System (DNS) resolver. It allows the programmer to perform DNS queries that are beyond the capabilities of gethostbyname and gethostbyaddr. - Net::DNS, bir DNS (Domain Name System -Alan Adı Sistemi) çözücüsü olarak işleyen bir Perl modülleri kolleksiyonudur. Programcıya isim ile bağlantı sağlama (gethostbyname) ve adres ile bağlantı sağlamanın (gethostbyaddr) ötesinde olan DNS sorgularının çalışması için izin verir. - Net::DNS es una collección de módulos Perl con funciones de un servidor de nombres de dominio (DNS). Permite al programador realizar consultas DNS más allá de las facilidades de gethostbyname y gethostbyaddr. - https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-1.27.tar.gz - - perl - perl-Test-Pod - perl-Digest-HMAC - perl-Net-LibIDN2 - - programming/language/perl/perl-Net-DNS/pspec.xml - - - perl-Net-DNS - Perl interface to the DNS resolver - - perl - perl-Net-LibIDN2 - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2020-10-01 - 1.27 - Minor version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-07-20 - 1.26 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-06-02 - 1.24 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Digest-SHA1 - https://metacpan.org/pod/Digest::SHA1 - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - SHA1 message digest algorithm - NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlayan bir Perl modülü - The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input. - Bu modül NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlar. Farklı uzunluklardaki mesajları alan algoritma, çıktı olarak 160 bitlik parmakizi veya mesaj özeti üretir. - El módulo Digest::SHA1 permite usar el algoritmo NIST SHA-1 desde programas Perl. El algoritmo acepta como entrada un mensaje de longitud arbitraria y produce un "fingerprint" (huella digital) o "message digest" de 160-bit. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz - - perl - - programming/language/perl/perl-Digest-SHA1/pspec.xml - - - perl-Digest-SHA1 - - perl - - - /usr/lib - /usr/share/doc/perl-Digest-SHA1 - /usr/share/man - - - - - 2020-01-02 - 2.13 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 2.13 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.13 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 2.13 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-GSSAPI - https://metacpan.org/pod/GSSAPI - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Perl extension providing access to the GSSAPIv2 library - GSSAPI kitaplığına erişim sağlayan perl modülü - perl-GSSAPI module gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. - perl-GSSAPI, RFC 2744'de açıklandığı gibi GSSAPI C bağlayıcılarını kullanan bir perl eklentisidir. - http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz - - perl - mit-kerberos - e2fsprogs-devel - - - disable_failing_test.patch - - programming/language/perl/perl-GSSAPI/pspec.xml - - - perl-GSSAPI - Perl extension providing access to the GSSAPIv2 library - - perl - mit-kerberos - e2fsprogs - - - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2020-01-11 - 0.28 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.28 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.28 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.28 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 0.28 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-HTML-Format - https://metacpan.org/release/NIGELM/HTML-Format-2.12 - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - A Perl module that format HTML as plaintext, RTF and PostScript - HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. - perl-HTML-Format HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür - http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-2.12.tar.gz - - perl-Module-Build - perl-HTML-Tree - perl-Font-AFM - perl - - programming/language/perl/perl-HTML-Format/pspec.xml - - - perl-HTML-Format - A Perl module that format HTML as plaintext, RTF and PostScript - - perl-Module-Build - perl-HTML-Tree - perl-Font-AFM - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-14 - 2.12 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 2.12 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.12 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.12 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Error - https://metacpan.org/release/Error - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Error/exception handling in an OO-ish way - Hata/istisna yakalama ve işlemeye yarayan Nesne yönelimli mantıkla yazılmış bir perl modülü - The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. - perl-Error, Hata/istisna yakalama ve işleme işlerini gören, Nesne yönelimli mantıkla yazılmış bir perl modülüdür. - https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Error-0.17029.tar.gz - - perl - perl-Module-Build - - programming/language/perl/perl-Error/pspec.xml - - - perl-Error - Error/exception handling in an OO-ish way - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-29 - 0.17029 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-07 - 0.17028 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.17024 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.17024 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.17024 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.17024 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Crypt-SSLeay - https://metacpan.org/pod/Crypt::SSLeay - - fury - uglyside@yandex.ru - - PerlArtistic - library - programming.language.perl - Crypt::SSLeay - OpenSSL support for LWP. - Crypt::SSLeay - OpenSSL support for LWP. - https://cpan.metacpan.org/authors/id/N/NA/NANIS/Crypt-SSLeay-0.73_06.tar.gz - - perl - openssl-devel - perl-Try-Tiny - perl-Path-Class - perl-LWP-Protocol-https - perl-Bytes-Random-Secure - - programming/language/perl/perl-Crypt-SSLeay/pspec.xml - - - perl-Crypt-SSLeay - - perl - openssl - perl-Try-Tiny - perl-Path-Class - perl-LWP-Protocol-https - perl-Bytes-Random-Secure - - - /usr/lib/perl5 - /usr/share/man/man3 - - - - - 2021-12-20 - 0.73_06 - Rebuild - fury - uglyside@yandex.ru - - - 2021-09-18 - 0.73_04 - First build - fury - uglyside@yandex.ru - - - - - - perl-IO-String - https://metacpan.org/pod/IO::String - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - IO::File interface for in-core strings in Perl - Perl için çekirdek içi metinler için bir G/Ç Dosya arayüzü - perl-IO-String is an IO::File interface for in-core strings in Perl. - perl-IO-String, Perl dili için çekirdek içi metinlere yönelik bir G/Ç Dosya arayüzüdür. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz - - perl - - programming/language/perl/perl-IO-String/pspec.xml - - - perl-IO-String - IO::File interface for in-core strings in Perl - - perl - - - /usr/lib - /usr/share/man - - - - - 2020-01-11 - 1.08 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.08 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.08 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.08 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 1.08 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-module-pluggable - https://metacpan.org/pod/Module::Pluggable - - Kamil Atlı - suvari@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - automatically give your module the ability to have plugins - Modülünüze otomatik olarak eklenti kullanma yeteneği verin - automatically give your module the ability to have plugins - https://cpan.metacpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-5.2.tar.gz - - perl - - programming/language/perl/perl-module-pluggable/pspec.xml - - - perl-module-pluggable - - perl - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-04-09 - 5.2 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - perl-Font-AFM - https://metacpan.org/pod/Font::AFM - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - programming.language.perl - A Perl module that is a interface to Adobe Font Metrics files - Adobe Font Metrics dosyaları için bir Perl arayüz modülü - perl-Font-AFM is interface to Adobe Font Metrics files. It allows you to obtain information about the font and the metrics of the various glyphs in the font. - Adobe Font Metrics dosyaları için bir Perl arayüz mödülü. Bu modül ile yazı tipi ve biçimi hakkında bilgilere ulaşabilirsiniz. - http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Font-AFM-1.20.tar.gz - - perl - - programming/language/perl/perl-Font-AFM/pspec.xml - - - perl-Font-AFM - A Perl module that is a interface to Adobe Font Metrics files - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-11 - 1.20 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.20 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.20 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.20 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Data-OptList - https://metacpan.org/release/Data-OptList - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Perl module that parses and validates simple name/value option pairs - Basit isim/değer çiftlerini ayrıştıran ve doğrulayan bir Perl modülü - perl-Data-OptList is a Perl module that parses and validates simple name/value option pairs. - perl-Data-OptList basit isim/değer çiftlerini ayrıştıran ve doğrulayan bir Perl modülüdür. - https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Data-OptList-0.110.tar.gz - - perl - perl-Params-Util - perl-Sub-Install - - programming/language/perl/perl-Data-OptList/pspec.xml - - - perl-Data-OptList - Perl module that parses and validates simple name/value option pairs - - perl - perl-Params-Util - perl-Sub-Install - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-09-23 - 0.110 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Devel-Symdump - https://metacpan.org/pod/Devel::Symdump - - Pisi Linux Admins - admin@pisilinux.org - - Artistic - GPLv2 - library - programming.language.perl - Dump symbol names or the symbol table - Sembol isimlerinin veya sembol tablosunun dökümünü verir - perl-Devel-Symdump is a Perl module that dumps symbol names or the symbol table. - perl-Devel-Symdump sembol isimlerinin veya sembol tablosunun dökümünü veren bir Perl modülüdür. - http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-2.18.tar.gz - - perl - - programming/language/perl/perl-Devel-Symdump/pspec.xml - - - perl-Devel-Symdump - Dump symbol names or the symbol table - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 2.18 - Rebuilt - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 2.18 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 2.17 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.15 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Net-LibIDN2 - https://metacpan.org/release/Net-LibIDN2 - - Blue Devil - bluedevil@sctzine.com - - Artistic - library - programming.language.perl - Net::LibIDN2 - Perl bindings for GNU Libidn2 - GNU Libidn2 için perl bağlayıcıları. - Provides bindings for GNU Libidn2, a C library for handling internationalized domain names based on IDNA 2008, Punycode and TR46. - perl-Net-LibIDN2, GNU Libidn2 için perl bağlayıcıları sunar. - https://cpan.metacpan.org/authors/id/T/TH/THOR/Net-LibIDN2-1.01.tar.gz - - perl - libidn2-devel - perl-Module-Build - - programming/language/perl/perl-Net-LibIDN2/pspec.xml - - - perl-Net-LibIDN2 - Net::LibIDN2 - Perl bindings for GNU Libidn2 - - perl - libidn2 - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/perl - - - - - 2020-02-22 - 1.01 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - perl-Module-Build - https://metacpan.org/pod/Module::Build - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Build and install Perl modules. - Per modüllerini inşa eder ve sisteme yükler - perl-Module-Build Module::Build is a system for building, testing, and installing Perl modules. - perl-Module-Find, Module::Build Perl modüllerini yapan, test eden ve yükleyen bir sistemdir. - https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-0.4229.tar.gz - - perl - - programming/language/perl/perl-Module-Build/pspec.xml - - - perl-Module-Build - - perl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-02 - 0.4229 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-09-02 - 0.4220 - Remove unneded dependency - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-26 - 0.4220 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.4220 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.4216 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.4216 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - perl-Test-Pod-Coverage - https://metacpan.org/pod/Test::Pod::Coverage - - Pisi Linux Admins - admin@pisilinux.org - - as-is - library - programming.language.perl - Check for pod coverage in your distribution - Dağıtımınızın POD kapsamını kontrol eder - perl-Test-Pod-Coverage checks for pod coverage in your distribution. - perl-Test-Pod-Coverage dağıtımınızın POD kapsamını kontrol eden Perl modülüdür. - http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/Test-Pod-Coverage-1.10.tar.gz - - perl - perl-Pod-Coverage - - programming/language/perl/perl-Test-Pod-Coverage/pspec.xml - - - perl-Test-Pod-Coverage - Check for pod coverage in your distribution - - perl - perl-Pod-Coverage - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 1.10 - Rebuild - Blue Devil - bluedevil@sctzine.com - - - 2018-09-08 - 1.10 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.10 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.10 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Try-Tiny - https://metacpan.org/pod/Try::Tiny - - Pisi Linux Admins - admins@pisilinux.org - - Artistic-2 - GPLv1 - library - programming.language.perl - Perl module to implement minimal try/catch - Perl için basit bir try/catch gerçeklemesi - perl-Try-Tiny is a Perl module which implements a minimal try/catch with proper localization of $@. - perl-Try-Tiny, Perl için $@ yerelleştirmesi sağlayan basit bir try/catch gerçeklemesidir. - http://www.cpan.org/authors/id/E/ET/ETHER/Try-Tiny-0.30.tar.gz - - perl - perl-Capture-Tiny - - programming/language/perl/perl-Try-Tiny/pspec.xml - - - perl-Try-Tiny - Perl module to implement minimal try/catch - - perl - perl-Capture-Tiny - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-07 - 0.30 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.30 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.28 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.24 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - perl-Crypt-PasswdMD5 - https://metacpan.org/pod/Crypt::PasswdMD5 - - Selim Ok - admins@pisilinux.org - - Artistic - library - programming.language.perl - Crypt::PasswdMD5 module for perl - Perl için Crypt::PasswdMD5 modülü - Provides various crypt()-compatible interfaces to the MD5-based crypt() function. - MD5 tabanlı crypt() fonksiyonu için, crypt() uyumlu çeşitli arayüzler sağlar. - http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-1.40.tgz - - perl - perl-Module-Build - - programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml - - - perl-Crypt-PasswdMD5 - Crypt::PasswdMD5 module for perl - - perl - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-01-02 - 1.40 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 1.40 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.40 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.40 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-10 - 1.40 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - perl-HTTP-Server-Simple - https://metacpan.org/pod/HTTP::Server::Simple - - Pisi Linux Admins - admins@pisilinux.org - - Artistic - library - programming.language.perl - Lightweight HTTP Server - Basit bir HTTP Sunucusu - HTTP::Server::Simple is a very simple standalone HTTP daemon with no non-core module dependencies. It's ideal for building a standalone http-based UI to your existing tools. - HTTP::Server::Simple basit, perl çekirdek modülleri dışında bağımlılığı olmadan tek başına çalışabilen bir HTTP hizmetidir. Tek başına çalışan, HTTP temelli bir uygulama yazmak istiyorsanız idealdir. - http://search.cpan.org/CPAN/authors/id/B/BP/BPS/HTTP-Server-Simple-0.52.tar.gz - - perl - perl-URI - - programming/language/perl/perl-HTTP-Server-Simple/pspec.xml - - - perl-HTTP-Server-Simple - Lightweight HTTP Server - - perl - perl-URI - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-01-14 - 0.52 - Rebuild for new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-26 - 0.52 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.51 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.51 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 0.51 - First release - Alihan Öztürk - alhan@pisilinux.org - - - - - - tcl - http://www.tcl.tk - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.tcl - Tcl programming language - Tcl programlama dili - Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. - Tcl, çeşitli uygulamalar geliştirmek için kullanılabilen bir programlama dilidir. - Tcl provee una plataforma potente para crear aplicaciones de integración de diversos aplicaciones, protocolos, dispositivos y frameworks - mirrors://sourceforge/tcl/tcl8.6.10-src.tar.gz - - zlib-devel - - programming/language/tcl/tcl/pspec.xml - - - tcl - - zlib - - - /usr/bin - /usr/lib - /usr/lib/tcl8.6 - /usr/share/doc - /usr/share/man - - - - tcl-devel - Development files for tcl - tcl için geliştirme dosyaları - - tcl - zlib-devel - - - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/lib/tclConfig.sh - /usr/share/man/man3 - - - - sqlite-tcl - files for sqlite-tcl - - tcl - - - /usr/lib/sqlite3.13.0/libsqlite* - /usr/lib/tcl8/8.6/tdbc/sqlite3-1.0.4.tm - /usr/share/man/mann/tdbc_sqlite3.n - /usr/share/man/mann/sqlite3.n - - - - - 2020-01-15 - 8.6.10 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 8.6.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-30 - 8.6.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-26 - 8.6.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 8.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-11 - 8.6.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - tcltk - http://www.tcl.tk - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.tcl - Tk est une boîte à outils X11 implémentée avec le langage de script Tcl. - An X11 toolkit implemented with the Tcl scripting language - Tcl betik dili ile yazılmış X11 araç ve kitaplıkları - Tk is an X Windows widget set designed to work closely with the tcl scripting language. It allows you to write simple programs with full featured GUIs in only a little more time then it takes to write a text based interface. - Tk, tcl betik dili ile birlikte kullanılması için tasarlanmış bir X Windows araç setidir. Metin tabanlı arayüzlere oranla daha kısa sürede tam özellikli grafik arayüzlere sahip basit programlar yazmanızı sağlar. - mirrors://sourceforge/tcl/tk8.6.10-src.tar.gz - - tcl-devel - libX11-devel - libXft-devel - fontconfig-devel - - - tk-8.6.9-conf.patch - tk-8.6.4-no-fonts-fix.patch - tk-8.6.1-make.patch - - programming/language/tcl/tcltk/pspec.xml - - - tcltk - - tcl - libX11 - libXft - fontconfig - - - /usr/bin - /usr/lib - /usr/lib/tk8.6 - /usr/share/doc - /usr/share/man - - - - tcltk-devel - Development files for tcltk - tcltk için geliştirme dosyaları - - tcltk - libX11-devel - tcl-devel - - - /usr/include - /usr/lib/*.a - /usr/lib/tkConfig.sh - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-01-18 - 8.6.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 - 8.6.8 - Rebuild for New Toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-27 - 8.6.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-31 - 8.6.6 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 8.6.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 8.6.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - clisp - http://clisp.cons.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.language.lisp - Implémente de manière conforme à ANSI Common Lisp. - An ANSI Common Lisp Implementation - Bir ANSI Common Lisp Uygulaması - ANSI Common Lisp is a high-level, general-purpose programming language. - ANSI Common Lisp üst düzey, genel amaçlı programlama dili. - https://haible.de/bruno/gnu/clisp-2.49.92.tar.bz2 - - dbus-devel - gdbm-devel - libsigsegv-devel - ffcall-devel - libglade-devel - fcgi-devel - gtk2-devel - postgresql-lib - libSM-devel - libXaw-devel - libXft-devel - libXmu-devel - libXrender-devel - libXt-devel - libXpm-devel - libXext-devel - gdk-pixbuf-devel - - - clisp-2.49.92-after_glibc_cfree_bdb.patch - - programming/language/lisp/clisp/pspec.xml - - - clisp - - atk - gtk2 - dbus - gdbm - zlib - fcgi - cairo - glib2 - libSM - pango - ffcall - libICE - libX11 - libXau - libpcre - libxml2 - ncurses - libXpm - libXext - freetype - harfbuzz - readline - fontconfig - libglade - libsigsegv - gdk-pixbuf - postgresql-lib - - - /usr/bin - /usr/lib - /usr/share/vim - /usr/share/emacs - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - clisp-devel - Development files for clisp - clisp için geliştirme dosyaları - - clisp - - - /usr/share/aclocal - - - - - 2014-01-20 - 2.49.92 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - rust - https://www.rust-lang.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.language - Systems programming language focused on safety, speed and concurrency - Güvenlik, hız ve eşzamanlılık odaklı sistem programlama dili - Język programowania systemów skoncentrowany na bezpieczeństwie, szybkości i współbieżności - Systems programming language focused on safety, speed and concurrency - Rust inanılmaz hızlı ve bellek tasarrufludur. Çöp toplayıcısı veya çalışma zamanı olmadan performans açısından kritik öneme sahip servisleri çalıştırabilir, gömülü cihazlarda çalışabilir ve diğer dillerle kolayca entegre olabilir. - Rust jest niesamowicie szybki i wydajny w pamięci. Może uruchamiać usługi krytyczne pod względem wydajności bez modułu odśmiecania pamięci lub środowiska wykonawczego, działać na urządzeniach osadzonych i łatwo integrować się z innymi językami. - https://static.rust-lang.org/dist/rustc-1.60.0-src.tar.gz - https://static.rust-lang.org/dist/rust-1.60.0-x86_64-unknown-linux-gnu.tar.gz - - bootstrap-config.toml - - - rust - perl - llvm - cmake - ninja - ocaml - valgrind-devel - zlib-devel - glibc-devel - libxml2-devel - openssl-devel - libssh2-devel - gdb-devel - curl-devel - python3-devel - libffi-devel - - programming/language/rust/pspec.xml - - - rust - - curl - zlib - libgcc - libssh2 - openssl - llvm-libs - - - /usr/bin - /usr/libexec - /etc - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - /usr/share/zsh - - - - rust-docs - Development files for rust - - rust - - - /usr/share/doc/rust/html - - - - - 2022-05-01 - 1.60.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-02-14 - 1.58.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-10-25 - 1.56.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-16 - 1.55.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-06 - 1.52.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-24 - 1.50.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-12-26 - 1.48.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-09-22 - 1.46.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-02 - 1.44.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-05 - 1.43.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-28 - 1.42.0 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-21 - 1.38.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-29 - 1.35.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2019-05-27 - 1.34.2 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2019-04-17 - 1.34.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2019-02-11 - 1.32.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2018-12-19 - 1.31.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2018-10-29 - 1.30.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2018-10-29 - 1.29.2 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2018-08-30 - 1.27.0 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-04-17 - 1.25.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2017-11-13 - 1.21.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2017-09-26 - 1.20.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - expect - https://core.tcl-lang.org/expect/index - - Kamil Atlı - suvari@pisilinux.org - - BSD - app:console - library - programming.language - Outil pour automatiser les applications interactives - A tool for automating interactive applications - İnteraktif uygulamaları otomatikleştirmek için kullanılan bir araç. - Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc. Expect really makes this stuff trivial. Expect is also useful for testing these same applications. - mirrors://sourceforge/expect/Expect/5.45.4/expect5.45.4.tar.gz - - tcl-devel - - - expect-5.44.1.15-ldflags.patch - expect-5.43.0-fixformatsecurity.patch - expect-fedora-5.32.2-random.patch - expect-fedora-5.43.0-log_file.patch - - programming/language/expect/pspec.xml - - - expect - - tcl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2022-05-01 - 5.45.4 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - cargo-c - https://github.com/lu-zero/cargo-c - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language - A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries - A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries - A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries - A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries - https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.9.5-deploy.tar.gz - - rust - curl-devel - zlib-devel - openssl-devel - - programming/language/cargo-c/pspec.xml - - - cargo-c - - /usr/bin - /usr/share/doc - - - - - 2021-11-02 - 0.9.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vala - http://live.gnome.org/Vala - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - programming.language - A modern programming language for GNOME - GNOME için modern bir programlama dili - Kompilator języka opartego na bibliotece GObject - Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. - Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. - Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. - mirrors://gnome/vala/0.56/vala-0.56.1.tar.xz - - help2man - glib2-devel - gobject-introspection-devel - libxslt-devel - dbus-devel - - programming/language/vala/pspec.xml - - - vala - app:console - library - - glib2 - - - /usr/lib/vala - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/vala-*/vapi - /usr/share/vala/vapi/libvala-*.vapi - /usr/share/vim/vimfiles - - - vim/vala.syntax - vim/vala.ftdetect - - - - vala-docs - GNOME devhelp documentation for Vala - Vala için GNOME devhelp kitabı - Pliki dokumentacji dla kompilatora vala - data:doc - - /usr/share/devhelp - - - - vala-devel - Development files for vala - vala için geliştirme dosyaları - Pliki nagłówkowe dla kompilatora vala - - vala - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/pkgconfig - /usr/share/aclocal - /usr/share/vala/Makefile.vapigen - /usr/share/man/man3 - - - - - 2022-06-02 - 0.56.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-31 - 0.54.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-09 - 0.54.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-16 - 0.54.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-29 - 0.54.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-30 - 0.54.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-23 - 0.54.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-04 - 0.54.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-23 - 0.54.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 0.52.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 0.52.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 0.52.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-15 - 0.48.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 0.44.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 0.40.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 0.40.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-29 - 0.36.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-27 - 0.36.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-19 - 0.34.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 0.28.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-05-22 - 0.28.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - java-openjdk - https://openjdk.java.net/ - - Safa Arıman - safa@ariman.gen.tr - - GPLv2 - app:gui - programming.language.java - OpenJDK Java development kit - OpenJDK Java 13 development kit - OpenJDK is a development environment for building applications, applets, and components using the Java programming language. - OpenJDK is a development environment for building applications, applets, and components using the Java programming language. - https://hg.openjdk.java.net/jdk-updates/jdk15u/archive/jdk-15.0.3+0.tar.gz - - cpio - zip - unzip - cups-devel - libX11-devel - libXrender-devel - libXtst-devel - libXt-devel - libXext-devel - libXrandr-devel - alsa-lib-devel - freetype-devel - libjpeg-turbo-devel - giflib-devel - libpng-devel - lcms2-devel - fontconfig-devel - jdk-openjdk - - programming/language/java/java-openjdk/pspec.xml - - - jre-openjdk-headless - OpenJDK Java headless runtime environment - - lcms2 - freetype - libjpeg-turbo - - - /usr/lib/jvm/java-openjdk/bin/jaotc - /usr/lib/jvm/java-openjdk/bin/java - /usr/lib/jvm/java-openjdk/bin/jfr - /usr/lib/jvm/java-openjdk/bin/jjs - /usr/lib/jvm/java-openjdk/bin/jrunscript - /usr/lib/jvm/java-openjdk/bin/keytool - /usr/lib/jvm/java-openjdk/bin/pack200 - /usr/lib/jvm/java-openjdk/bin/rmid - /usr/lib/jvm/java-openjdk/bin/rmiregistry - /usr/lib/jvm/java-openjdk/bin/unpack200 - /usr/lib/jvm/java-openjdk/conf - /etc/java-openjdk - /usr/share/licenses/java-openjdk/java.base* - /usr/share/licenses/java-openjdk/java.compiler* - /usr/share/licenses/java-openjdk/java.datatransfer* - /usr/share/licenses/java-openjdk/java.desktop* - /usr/share/licenses/java-openjdk/java.instrument* - /usr/share/licenses/java-openjdk/java.logging* - /usr/share/licenses/java-openjdk/java.management* - /usr/share/licenses/java-openjdk/java.naming* - /usr/share/licenses/java-openjdk/java.net.http* - /usr/share/licenses/java-openjdk/java.prefs* - /usr/share/licenses/java-openjdk/java.rmi* - /usr/share/licenses/java-openjdk/java.scripting* - /usr/share/licenses/java-openjdk/java.se* - /usr/share/licenses/java-openjdk/java.security* - /usr/share/licenses/java-openjdk/java.smartcardio* - /usr/share/licenses/java-openjdk/java.sql* - /usr/share/licenses/java-openjdk/java.transaction.xa* - /usr/share/licenses/java-openjdk/java.xml* - /usr/share/licenses/java-openjdk/jdk.accessibility* - /usr/share/licenses/java-openjdk/jdk.aot* - /usr/share/licenses/java-openjdk/jdk.charsets* - /usr/share/licenses/java-openjdk/jdk.crypto* - /usr/share/licenses/java-openjdk/jdk.dynalink* - /usr/share/licenses/java-openjdk/jdk.httpserver* - /usr/share/licenses/java-openjdk/jdk.internal* - /usr/share/licenses/java-openjdk/jdk.jdwp.agent* - /usr/share/licenses/java-openjdk/jdk.jfr* - /usr/share/licenses/java-openjdk/jdk.jsobject* - /usr/share/licenses/java-openjdk/jdk.localedata* - /usr/share/licenses/java-openjdk/jdk.management* - /usr/share/licenses/java-openjdk/jdk.naming* - /usr/share/licenses/java-openjdk/jdk.net* - /usr/share/licenses/java-openjdk/jdk.pack* - /usr/share/licenses/java-openjdk/jdk.scripting.nashorn* - /usr/share/licenses/java-openjdk/jdk.sctp* - /usr/share/licenses/java-openjdk/jdk.security* - /usr/share/licenses/java-openjdk/jdk.unsupported* - /usr/share/licenses/java-openjdk/jdk.xml.dom* - /usr/share/licenses/java-openjdk/jdk.zipfs* - /usr/lib/jvm/java-openjdk/legal - /usr/share/licenses/jre-openjdk-headless - /usr/lib/jvm/java-openjdk/man - /usr/lib/jvm/java-openjdk/release - /usr/lib/jvm/java-openjdk/lib/modules - /usr/lib/jvm/java-openjdk/lib/security - /usr/lib/jvm/java-openjdk/lib/server - /usr/lib/jvm/java-openjdk/lib/tzdb.dat - /usr/lib/jvm/java-openjdk/lib/jvm.cfg - /usr/lib/jvm/java-openjdk/lib/jrt-fs.jar - /usr/lib/jvm/java-openjdk/lib/classlist - /usr/lib/jvm/java-openjdk/lib/jexec* - /usr/lib/jvm/java-openjdk/lib/jfr* - /usr/lib/jvm/java-openjdk/lib/jspawnhelper* - /usr/lib/jvm/java-openjdk/lib/libawt.* - /usr/lib/jvm/java-openjdk/lib/libawt_headless.* - /usr/lib/jvm/java-openjdk/lib/libdtcket* - /usr/lib/jvm/java-openjdk/lib/libextnet* - /usr/lib/jvm/java-openjdk/lib/libfontmanager* - /usr/lib/jvm/java-openjdk/lib/libinstrument* - /usr/lib/jvm/java-openjdk/lib/libj2gss* - /usr/lib/jvm/java-openjdk/lib/libj2pcsc* - /usr/lib/jvm/java-openjdk/lib/libj2pkcs11* - /usr/lib/jvm/java-openjdk/lib/libjaas* - /usr/lib/jvm/java-openjdk/lib/libjava* - /usr/lib/jvm/java-openjdk/lib/libjavajpeg* - /usr/lib/jvm/java-openjdk/lib/libjdwp* - /usr/lib/jvm/java-openjdk/lib/libjimage* - /usr/lib/jvm/java-openjdk/lib/libjli* - /usr/lib/jvm/java-openjdk/lib/libjsig* - /usr/lib/jvm/java-openjdk/lib/liblcms* - /usr/lib/jvm/java-openjdk/lib/libmanagement* - /usr/lib/jvm/java-openjdk/lib/libmlib_image* - /usr/lib/jvm/java-openjdk/lib/libnet* - /usr/lib/jvm/java-openjdk/lib/libnio* - /usr/lib/jvm/java-openjdk/lib/libprefs* - /usr/lib/jvm/java-openjdk/lib/librmi* - /usr/lib/jvm/java-openjdk/lib/libsctp* - /usr/lib/jvm/java-openjdk/lib/libsunec* - /usr/lib/jvm/java-openjdk/lib/libunpack* - /usr/lib/jvm/java-openjdk/lib/libverify* - /usr/lib/jvm/java-openjdk/lib/libzip* - /usr/lib/jvm/java-openjdk/lib/psfont* - /usr/share/man/man1/jaotc-openjdk15.1 - /usr/share/man/man1/java-openjdk15.1 - /usr/share/man/man1/jfr-openjdk15.1 - /usr/share/man/man1/jjs-openjdk15.1 - /usr/share/man/man1/jrunscript-openjdk15.1 - /usr/share/man/man1/keytool-openjdk15.1 - /usr/share/man/man1/pack200-openjdk15.1 - /usr/share/man/man1/rmid-openjdk15.1 - /usr/share/man/man1/rmiregistry-openjdk15.1 - /usr/share/man/man1/unpack200-openjdk15.1 - - - System.Package - - - freedesktop-java.desktop - freedesktop-jconsole.desktop - freedesktop-jshell.desktop - - - - jre-openjdk - OpenJDK Java full runtime environment - - jre-openjdk-headless - libXi - giflib - libX11 - libpng - libXext - libXtst - alsa-lib - libXrender - libjpeg-turbo - - - /usr/lib/jvm/java-openjdk/lib/libawt_xawt* - /usr/lib/jvm/java-openjdk/lib/libjawt* - /usr/lib/jvm/java-openjdk/lib/libjsound* - /usr/lib/jvm/java-openjdk/lib/libsplashscreen* - - - - jdk-openjdk - OpenJDK Java development kit - - jre-openjdk-headless - - - /usr/lib/jvm/java-openjdk/bin/jstatd - /usr/lib/jvm/java-openjdk/bin/jshell - /usr/lib/jvm/java-openjdk/bin/jarsigner - /usr/lib/jvm/java-openjdk/bin/javap - /usr/lib/jvm/java-openjdk/bin/jstack - /usr/lib/jvm/java-openjdk/bin/javadoc - /usr/lib/jvm/java-openjdk/bin/jdeprscan - /usr/lib/jvm/java-openjdk/bin/jmap - /usr/lib/jvm/java-openjdk/bin/jconsole - /usr/lib/jvm/java-openjdk/bin/jmod - /usr/lib/jvm/java-openjdk/bin/jcmd - /usr/lib/jvm/java-openjdk/bin/jar - /usr/lib/jvm/java-openjdk/bin/javac - /usr/lib/jvm/java-openjdk/bin/rmic - /usr/lib/jvm/java-openjdk/bin/jps - /usr/lib/jvm/java-openjdk/bin/jpackage - /usr/lib/jvm/java-openjdk/bin/serialver - /usr/lib/jvm/java-openjdk/bin/jstat - /usr/lib/jvm/java-openjdk/bin/jdb - /usr/lib/jvm/java-openjdk/bin/jinfo - /usr/lib/jvm/java-openjdk/bin/jhsdb - /usr/lib/jvm/java-openjdk/bin/jlink - /usr/lib/jvm/java-openjdk/bin/jimage - /usr/lib/jvm/java-openjdk/bin/jdeps - /usr/lib/jvm/java-openjdk/include - /usr/lib/jvm/java-openjdk/demo - /usr/lib/jvm/java-openjdk/jmods - /usr/lib/jvm/java-openjdk/lib/ct.sym - /usr/lib/jvm/java-openjdk/lib/libsaproc* - /usr/lib/jvm/java-openjdk/lib/libdt_socket* - /usr/lib/jvm/java-openjdk/lib/libattach* - /usr/share/man/man1/jstatd-openjdk15.1 - /usr/share/man/man1/jshell-openjdk15.1 - /usr/share/man/man1/jarsigner-openjdk15.1 - /usr/share/man/man1/javap-openjdk15.1 - /usr/share/man/man1/jstack-openjdk15.1 - /usr/share/man/man1/javadoc-openjdk15.1 - /usr/share/man/man1/jdeprscan-openjdk15.1 - /usr/share/man/man1/jmap-openjdk15.1 - /usr/share/man/man1/jconsole-openjdk15.1 - /usr/share/man/man1/jmod-openjdk15.1 - /usr/share/man/man1/jcmd-openjdk15.1 - /usr/share/man/man1/jar-openjdk15.1 - /usr/share/man/man1/javac-openjdk15.1 - /usr/share/man/man1/rmic-openjdk15.1 - /usr/share/man/man1/jps-openjdk15.1 - /usr/share/man/man1/serialver-openjdk15.1 - /usr/share/man/man1/jstat-openjdk15.1 - /usr/share/man/man1/jdb-openjdk15.1 - /usr/share/man/man1/jinfo-openjdk15.1 - /usr/share/man/man1/jhsdb-openjdk15.1 - /usr/share/man/man1/jlink-openjdk15.1 - /usr/share/man/man1/jimage-openjdk15.1 - /usr/share/man/man1/jdeps-openjdk15.1 - /usr/share/man/man1/jpackage-openjdk15.1 - /usr/share/icons - /usr/share/applications - /usr/share/licenses/java-openjdk - - - System.Package - - - - openjdk-src - OpenJDK Java sources - - /usr/lib/jvm/java-openjdk/lib/src.zip - - - - openjdk-doc - OpenJDK Java documentation - - /usr/share/doc - - - - - 2021-03-10 - 15.0.3.0 - First release. - Safa Arıman - safa@ariman.gen.tr - - - - - - rhino - http://www.mozilla.org/rhino/ - - PisiLinux Community - admins@pisilinux.org - - GPL2 - programming.language.java - Open-source implementation of JavaScript written entirely in Java - Open-source implementation of JavaScript written entirely in Java - https://github.com/mozilla/rhino/archive/Rhino1_7_7_2_Release.tar.gz - http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz - - rhino - rhino.1 - rhino-jsc - rhino-jsc.1 - rhino-debugger - rhino-debugger.1 - - - ant - jdk8-openjdk - - programming/language/java/rhino/pspec.xml - - - rhino - - jdk8-openjdk - - - /usr/share/man - /usr/bin - /usr/share/java/ - - - - - 201-03-10 - 1.7.7.2 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-06-04 - 1.7.7.2 - Rebuild ant. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 1.7.7.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-22 - 1.7.7.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-28 - 1.7.7.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-16 - 1.7.7.1 - Rebuild New T.jdk7-2.6.14 - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-11 - 1.7.7.1 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 1.7.7.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.7.7.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - icedtea-web-java7 - https://www.x.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.java - Java web browser plugin - Web tarayıcıları için Java eklentisi - Free Software web browser plugin running applets written in the Java programming language and an implementation of Java Web Start, originally based on the NetX project. - Java uygulamacıklarını (applet) çalıştıran, Java Web Start'ın özgür yazılım sürümü. - http://icedtea.wildebeest.org/download/source/icedtea-web-1.6.2.tar.gz - - firefox - jdk7-openjdk - rhino - libXtst-devel - npapi-sdk-devel - desktop-file-utils - glib2-devel - - programming/language/java/icedtea-web-java7/pspec.xml - - - icedtea-web-java7 - - glib2 - libgcc - desktop-file-utils - jre7-openjdk - - - /usr/lib - /usr/lib/mozilla - /usr/lib/browser-plugins - /usr/share - /usr/share/doc - /usr/share/man - /usr/share/applications - - - - - 2020-01-15 - 1.6.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-22 - 1.6.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-30 - 1.6.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2018-08-17 - 1.6.2 - Rebuild. - Serdar Soytetir - kaptan@pisilinux.org - - - 2017-01-08 - 1.6.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - java8-openjdk - http://icedtea.classpath.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - programming.language.java - Open Java Development Kit - OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). - http://icedtea.wildebeest.org/download/source/icedtea-3.19.0.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/corba.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/hotspot.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/jaxp.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/jaxws.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/jdk.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/langtools.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/nashorn.tar.xz - http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/openjdk.tar.xz - - wget - p7zip - fastjar - nss-devel - zlib-devel - attr-devel - xorg-proto - gtk2-devel - cups-devel - libffi-devel - libXt-devel - libSM-devel - lcms2-devel - jdk8-openjdk - libICE-devel - libpng-devel - giflib-devel - libxslt-devel - libXtst-devel - alsa-lib-devel - libXinerama-devel - libjpeg-turbo-devel - libXcomposite-devel - chrpath - jre8-openjdk-headless - zip - cpio - unzip - libXp-devel - - programming/language/java/java8-openjdk/pspec.xml - - - jre8-openjdk-headless - Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs - - atk - cups - gtk2 - zlib - cairo - glib2 - lcms2 - libXi - pango - libX11 - libgcc - libXext - libXtst - freetype - fontconfig - gdk-pixbuf - libXrender - libXcomposite - libjpeg-turbo - - - /usr/bin/jfr - /usr/bin/hsdb - /usr/bin/clhsdb - /usr/bin/orbd - /usr/bin/rmid - /usr/bin/java - /usr/bin/jjs - /usr/bin/jdeps - /etc/env.d/25java_jre.csh - /etc/env.d/25java_jre - /etc/java-8-openjdk/ - /usr/bin/pack200 - /usr/bin/keytool - /usr/bin/tnameserv - /usr/bin/unpack200 - /usr/share/man/man1/rmid.1 - /usr/share/man/man1/orbd.1 - /usr/share/man/man1/java.1 - /usr/bin/servertool - /usr/bin/rmiregistry - /usr/share/doc/java8-openjdk/ - /usr/share/man/ja/man1/rmid.1 - /usr/share/man/ja/man1/java.1 - /usr/share/man/man1/pack200.1 - /usr/share/man/man1/keytool.1 - /usr/share/man/ja/man1/orbd.1 - /usr/share/man/man1/tnameserv.1 - /usr/share/man/man1/unpack200.1 - /usr/share/man/ja/man1/pack200.1 - /usr/share/man/man1/servertool.1 - /usr/share/man/ja/man1/keytool.1 - /usr/share/man/man1/rmiregistry.1 - /usr/share/man/ja/man1/tnameserv.1 - /usr/share/man/ja/man1/unpack200.1 - /usr/share/man/ja/man1/servertool.1 - /usr/share/doc/jre8-openjdk-headless - /usr/share/man/ja/man1/rmiregistry.1 - /usr/lib/jvm/java-8-openjdk/jre/lib - /usr/lib/jvm/java-8-openjdk/bin/jfr - /usr/lib/jvm/java-8-openjdk/bin/hsdb - /usr/lib/jvm/java-8-openjdk/bin/clhsdb - /usr/lib/jvm/java-8-openjdk/bin/jdeps - /usr/lib/jvm/java-8-openjdk/bin/jjs - /usr/lib/jvm/java-8-openjdk/jre/java - /usr/lib/jvm/java-8-openjdk/jre/orbd - /usr/lib/jvm/java-8-openjdk/jre/rmid - /usr/lib/jvm/java-8-openjdk/jre/bin/ - /usr/lib/jvm/java-8-openjdk/jre/keytool - /usr/lib/jvm/java-8-openjdk/jre/pack200 - /usr/lib/jvm/java-8-openjdk/jre/bin/orbd - /usr/lib/jvm/java-8-openjdk/jre/bin/java - /usr/lib/jvm/java-8-openjdk/jre/bin/rmid - /usr/lib/jvm/java-8-openjdk/jre/tnameserv - /usr/lib/jvm/java-8-openjdk/jre/unpack200 - /usr/lib/jvm/java-8-openjdk/jre/servertool - /usr/lib/jvm/java-8-openjdk/jre/policytool - /usr/lib/jvm/java-8-openjdk/jre/rmiregistry - /usr/lib/jvm/java-8-openjdk/jre/bin/keytool - /usr/lib/jvm/java-8-openjdk/jre/bin/pack200 - /usr/lib/jvm/java-8-openjdk/lib/*/jli/libjli.so - /usr/lib/jvm/java-8-openjdk/jre/bin/tnameserv - /usr/lib/jvm/java-8-openjdk/jre/bin/unpack200 - /usr/lib/jvm/java-8-openjdk/jre/bin/servertool - /usr/lib/jvm/java-8-openjdk/jre/bin/rmiregistry - /usr/lib/jvm/java-8-openjdk/lib/amd64/libjawt.so - /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/xawt/libmawt.so - /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/headless/libmawt.so - - - 25java_jre - 25java_jre.csh - - - - jre8-openjdk - Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - Full Java runtime environment - needed for executing Java GUI and Webstart programs - - zlib - giflib - libX11 - libpng - libXext - alsa-lib - libjpeg-turbo - jre8-openjdk-headless - - - /usr/share/doc/openjdk - /usr/bin/policytool - /usr/share/icons/hicolor/ - /usr/share/man/man1/policytool.1 - /usr/share/man/ja/man1/policytool.1 - /usr/share/applications/policytool-jdk8.desktop - /usr/lib/jvm/java-8-openjdk/jre/bin/policytool - /usr/lib/jvm/java-8-openjdk/jre/lib/*/libjsoundalsa.so - /usr/lib/jvm/java-8-openjdk/jre/lib/*/libpulse-java.so - /usr/lib/jvm/java-8-openjdk/jre/lib/*/libsplashscreen.so - /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/libjsoundalsa.so - /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/libpulse-java.so - /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/libsplashscreen.so - - - sun-jre - - - sun-jre - - - - jdk8-openjdk - Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - SDK - - zlib - libX11 - libgcc - jre8-openjdk-headless - - - /etc/env.d/25java_jdk.csh - /etc/env.d/25java_jdk - /usr/share/man/man1/ - /usr/share/man/ja/man1/ - /usr/bin/jar - /usr/bin/xjc - /usr/bin/apt - /usr/bin/jdb - /usr/bin/jps - /usr/bin/jmap - /usr/bin/idlj - /usr/bin/jcmd - /usr/bin/jhat - /usr/bin/rmic - /usr/bin/javac - /usr/bin/javah - /usr/bin/javap - /usr/bin/jinfo - /usr/bin/wsgen - /usr/bin/jstat - /usr/bin/jstack - /usr/bin/jstatd - /usr/bin/javadoc - /usr/bin/extcheck - /usr/bin/jconsole - /usr/bin/wsimport - /usr/bin/jarsigner - /usr/bin/jsadebugd - /usr/bin/schemagen - /usr/bin/serialver - /usr/bin/jrunscript - /usr/bin/appletviewer - /usr/bin/native2ascii - /usr/share/applications/jconsole-jdk8.desktop - /usr/lib/jvm/java-8-openjdk/include - /usr/lib/jvm/java-8-openjdk/bin/apt - /usr/lib/jvm/java-8-openjdk/bin/jar - /usr/lib/jvm/java-8-openjdk/bin/jdb - /usr/lib/jvm/java-8-openjdk/bin/jps - /usr/lib/jvm/java-8-openjdk/bin/xjc - /usr/lib/jvm/java-8-openjdk/bin/rmic - /usr/lib/jvm/java-8-openjdk/bin/rmid - /usr/lib/jvm/java-8-openjdk/bin/idlj - /usr/lib/jvm/java-8-openjdk/bin/orbd - /usr/lib/jvm/java-8-openjdk/bin/java - /usr/lib/jvm/java-8-openjdk/bin/jhat - /usr/lib/jvm/java-8-openjdk/bin/jmap - /usr/lib/jvm/java-8-openjdk/bin/jcmd - /usr/lib/jvm/java-8-openjdk/bin/javac - /usr/lib/jvm/java-8-openjdk/bin/javah - /usr/lib/jvm/java-8-openjdk/bin/javap - /usr/lib/jvm/java-8-openjdk/bin/jinfo - /usr/lib/jvm/java-8-openjdk/bin/jstat - /usr/lib/jvm/java-8-openjdk/bin/wsgen - /usr/lib/jvm/java-8-openjdk/bin/jstatd - /usr/lib/jvm/java-8-openjdk/bin/jstack - /usr/lib/jvm/java-8-openjdk/bin/pack200 - /usr/lib/jvm/java-8-openjdk/bin/javadoc - /usr/lib/jvm/java-8-openjdk/bin/keytool - /usr/lib/jvm/java-8-openjdk/bin/wsimport - /usr/lib/jvm/java-8-openjdk/bin/extcheck - /usr/lib/jvm/java-8-openjdk/bin/jconsole - /usr/lib/jvm/java-8-openjdk/bin/tnameserv - /usr/lib/jvm/java-8-openjdk/bin/unpack200 - /usr/lib/jvm/java-8-openjdk/bin/schemagen - /usr/lib/jvm/java-8-openjdk/bin/serialver - /usr/lib/jvm/java-8-openjdk/bin/jarsigner - /usr/lib/jvm/java-8-openjdk/bin/jsadebugd - /usr/lib/jvm/java-8-openjdk/bin/jrunscript - /usr/lib/jvm/java-8-openjdk/bin/policytool - /usr/lib/jvm/java-8-openjdk/bin/servertool - /usr/lib/jvm/java-8-openjdk/bin/rmiregistry - /usr/lib/jvm/java-8-openjdk/bin/java-rmi.cgi - /usr/lib/jvm/java-8-openjdk/bin/native2ascii - /usr/lib/jvm/java-8-openjdk/bin/appletviewer - /usr/lib/jvm/java-8-openjdk/lib/jexec - /usr/lib/jvm/java-8-openjdk/lib/ct.sym - /usr/lib/jvm/java-8-openjdk/lib/dt.jar - /usr/lib/jvm/java-8-openjdk/lib/ir.idl - /usr/lib/jvm/java-8-openjdk/lib/orb.idl - /usr/lib/jvm/java-8-openjdk/lib/tools.jar - /usr/lib/jvm/java-8-openjdk/lib/sa-jdi.jar - /usr/lib/jvm/java-8-openjdk/lib/jconsole.jar - - - sun-jdk - - - sun-jdk - - - 25java_jdk.csh - 25java_jdk - - - - openjdk8-src - Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - sources - - jdk8-openjdk - - - /usr/lib/jvm/java-8-openjdk/src.zip - - - - openjdk8-doc - Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - documentation - - jdk8-openjdk - - - /usr/share/doc/openjdk8-doc/ - - - - - 2021-11-27 - 8u_292.3.19.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-09 - 8u_282.3.18.0 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2020-12-18 - 8u_275.3.17.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-01 - 8u_252.3.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-26 - 8u_242.3.15.0 - Version Bump devir 3. - Pisi Linux Community - admin@pisilinux.org - - - 2019-09-20 - 8u_222.3.13.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-06-17 - 8u_212.3.12.0 - First release devir 3. - Pisi Linux Community - admin@pisilinux.org - - - - - - fastjar - http://savannah.nongnu.org/projects/fastjar - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:web - programming.language.java - Sun java jar compatible archiver - Sun java jar compatible archiver - Sun java jar compatible archiver - Sun java jar compatible archiver. - http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz - - zlib-devel - - programming/language/java/fastjar/pspec.xml - - - fastjar - - zlib - - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - - - - - 2020-06-04 - 0.98 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-16 - 0.98 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-16 - 0.98 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-11 - 0.98 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.98 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-05 - 0.98 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - npapi-sdk - http://code.google.com/p/npapi-sdk/ - - Osman Erkan - osman.erkan@pisilinux.org - - MPLv1.1 - app:gui - programming.language.java - NPAPI-SDK is a bundle of Netscape Plugin Application Programming Interface headers by Mozilla. - NPAPI-SDK is a bundle of Netscape Plugin Application Programming Interface headers by Mozilla. This package provides a clear way to install those headers and depend on them. - https://ftp.osuosl.org/pub/blfs/conglomeration/npapi-sdk/npapi-sdk-0.27.2.tar.bz2 - programming/language/java/npapi-sdk/pspec.xml - - - npapi-sdk - - /usr/share/doc - - - - npapi-sdk-devel - Development files for nnapi-sdk - npapi-sdk için geliştirme dosyaları - - npapi-sdk - - - /usr/lib/pkgconfig - /usr/include/npapi-sdk - - - - - 2020-01-16 - 0.27.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-16 - 0.27.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-08 - 0.27.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - eclipse-ecj - http://www.eclipse.org - - PisiLinux Community - admins@pisilinux.org - - EPL - app:web - programming.language.java - Eclipse java bytecode compiler - Eclipse java bytecode compiler - https://sourceforge.net/projects/pisilinux/files/source/ecjsrc-4.6.3.jar - - ant - jdk8-openjdk - - - 01-ecj-include-props.patch - 02-buildxml-fix-manifest.patch - - programming/language/java/eclipse-ecj/pspec.xml - - - eclipse-ecj - - jdk7-openjdk - - - /usr/share/man - /usr/bin - /usr/share/java - - - ecj - - - - - 2021-03-10 - 4.6.3_201703010400 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-06-04 - 4.6.3_201703010400 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 4.4.2_201502041700 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-22 - 4.4.2_201502041700 - Rebuild jdk7-2.6.19 - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-29 - 4.4.2_201502041700 - Rebuild jdk7-2.6.17 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-16 - 4.4.2_201502041700 - Rebuild New T.jdk7-2.6.14 - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-15 - 4.4.2_201502041700 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-10 - 4.4.2_201502041700 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-03 - 4.4.2_201502041700 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - R-lang - http://www.r-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - programming.language - A free software environment for statistical computing and graphics - This package includes the core R userspace and all R development components. - http://cran.r-project.org/src/base/R-3/R-3.6.3.tar.gz - - libXmu-devel - icu4c-devel - jdk7-openjdk - xdg-utils - blas-devel - lapack-devel - libXt-devel - libSM-devel - cairo-devel - pango-devel - libjpeg-turbo-devel - tiff-devel - libgfortran - xz-devel - readline-devel - curl-devel - minizip-devel - - - R-3.4.1-parallel.patch - R-3.4.1-rmath-shared.patch - - programming/language/R-lang/pspec.xml - - - R - - blas - make - tiff - libXt - icu4c - libSM - cairo - pango - libXmu - lapack - xdg-utils - libgfortran - jre7-openjdk - libjpeg-turbo - xz - curl - zlib - bzip2 - glib2 - libX11 - libpng - libpcre - readline - - - /etc - /usr/bin - /usr/lib/R - /usr/share/man - /usr/share/R - - - System.Package - - - 99R - ld.so.conf - - - - R-mathlib - Math library for R - R Mathlib kitaplığı - library - - R - - - /usr/lib - /usr/include/Rmath.h - /usr/include/R/Rmath.h - /usr/lib/pkgconfig/libRmath.pc - - - - R-docs - Documents for R - R belgeleri - data:doc - - /usr/share/doc/R - - - - R-devel - Development files for R - R için geliştirme dosyaları - - R - - - /usr/include - /usr/lib/pkgconfig/libR.pc - - - - - 2021-02-27 - 3.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 3.5.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-06 - 3.5.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-23 - 3.5.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-09-09 - 3.5.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-08 - 3.5.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-01 - 3.4.3 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-12-01 - 3.4.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-06-08 - 3.4.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-27 - 3.3.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-snowballstemmer - https://snowballstem.org/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python - Snowball stemming library collection for Python - Snowball, python için sözcük kökeni bulma kitaplığıdır. - Snowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. - Snowball, sıklıkla kullanılan bilgi çekme yapılırken kullanılan sözcük kökü bulma işlemi için yaratılmış küçük bir sözcük işleme kitaplığıdır. - https://pypi.python.org/packages/source/s/snowballstemmer/snowballstemmer-2.0.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-snowballstemmer/pspec.xml - - - python-snowballstemmer - Snowball stemming library collection for Python - - /usr/share/doc/python-snowballstemmer - /usr/lib/python2* - - - - - 2019-12-06 - 2.0.0 - Rebuilt - Blue Devil - bluedevil@sctzine.com - - - 2019-12-06 - 2.0.0 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-pycparser - https://github.com/eliben/pycparser - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python - Complete C99 parser in pure Python - Python ile yazilmis C99 cozumleyicisi - pycparser is a parser for the C language, written in pure Python. It is a module designed to be easily integrated into applications that need to parse C source code. - pycparser, C kaynak kodunu çözümlemesi gereken uygulamalara kolaylıkla bütünleşebilen bir python modülüdür. - https://github.com/eliben/pycparser/archive/release_v2.20.tar.gz - - python-setuptools - python - - programming/language/python/python-pycparser/pspec.xml - - - python-pycparser - Complete C99 parser in pure Python - - /usr/share/doc/python-pycparser - /usr/lib/python2* - - - - - 2020-03-04 - 2.20 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-07 - 2.19 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-nose - https://nose.readthedocs.io/en/latest/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - programming.language.python - A unittest extension offering automatic test suite discovery and easy test authoring - Python için unittest genişlemesi - python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. - python-nose alternatif test tanıtma ve keşif kitaplığı. - https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz - - python-devel - - programming/language/python/python-nose/pspec.xml - - - python-nose - A unittest extension offering automatic test suite discovery and easy test authoring - - python - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2019-12-29 - 1.3.7 - Rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-05 - 1.3.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.3.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 1.3.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-mako - http://www.makotemplates.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - programming.language.python - A python templating language - Python şablonlama dili - python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. - python-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. - https://files.pythonhosted.org/packages/42/64/fc7c506d14d8b6ed363e7798ffec2dfe4ba21e14dda4cfab99f4430cba3a/Mako-1.1.2.tar.gz - - python-MarkupSafe - python-setuptools - python-beaker - python-devel - - programming/language/python/python-mako/pspec.xml - - - python-mako - A python templating language - - python-MarkupSafe - python-beaker - - - /usr/bin - /usr/share/doc - /usr/lib - - - - python-mako-docs - Documentation files for python-mako - python-mako için belgelendirme dosyaları - python-mako-docs, python-mako için belgelendirme dosyalarını içerir. - - python-mako - - - /usr/share/doc/*/html - /usr/share/doc/*/build - /usr/share/doc/*/examples - - - - - 2020-03-04 - 1.1.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 1.1.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 1.0.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 1.0.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.0.6 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-09-22 - 0.9.1 - Release Bump - Oğuzhan BÖLÜKBAŞ - oguzhan.bolukbas18@gmail.com - - - 2014-04-16 - 0.9.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - python-h11 - https://pypi.org/project/h11/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 - Sadece python ile hazırlanmış, HTTP/1.1 için kendi-giriş-çıkış-uygulamanı-getir uygulaması. - This is a little HTTP/1.1 library written from scratch in Python, heavily inspired by hyper-h2. - python-h11, hyper-h2'den esınlenen bu kitaplık sıfırdan yazılmış bir HTTP/1.1 kitaplığıdır. - https://files.pythonhosted.org/packages/34/5a/abaa557d20b210117d8c3e6b0b817ce9b329b2e81f87612e60102a924323/h11-0.9.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-h11/pspec.xml - - - python-h11 - A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 - - /usr/lib - /usr/share/man - /usr/share/doc/python-h11 - - - - - 2020-01-15 - 0.9.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-pyaspects - https://github.com/ionelmc/python-aspectlib - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Aspect-Oriented development for Python - Aspect-Oriented Development modules for Python. - https://github.com/baris/pyaspects/archive/0.4.4.tar.gz - programming/language/python/python-pyaspects/pspec.xml - - - python-pyaspects - Aspect-Oriented development for Python - - /usr/lib/python2* - /usr/share/doc/python-pyaspects - - - - - 2020-01-20 - 0.4.4 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 0.4.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.4.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.4.4 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.4.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-12-07 - 0.4.4 - First release - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - - - - python-cffi - https://cffi.readthedocs.io/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Foreign Function Interface for Python calling C code - Python için C kodu cağıran dış fonksiyon arayüzü - Foreign Function Interface for Python calling C code - Python için C kodu cağıran dış fonksiyon arayüzü kitaplığıdır. - https://bitbucket.org/cffi/cffi/get/v1.14.0.tar.gz - - python-setuptools - python-devel - libffi-devel - - programming/language/python/python-cffi/pspec.xml - - - python-cffi - Foreign Function Interface for Python calling C code - - python-enum34 - python-six - - - /usr/lib - /usr/share/doc/python-cffi - - - - - 2020-02-08 - 1.14.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 1.13.2 - Rebuilt, clean and fix flags - Blue Devil - bluedevil@sctzine.com - - - 2019-12-11 - 1.13.2 - Rebuilt and split packages - Blue Devil - bluedevil@sctzine.com - - - 2019-11-07 - 1.13.2 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-importlib_metadata - https://gitlab.com/python-devs/importlib_metadata - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - importlib_metadata is a library to access the metadata for a Python package. - Python paketlerinin metaverisine erişmek için python kitaplığı - importlib_metadata is a library to access the metadata for a Python package. - python-importlib_metadata, Python paketlerinin metaverisine erişmek için python kitaplığı sağlar. - https://gitlab.com/python-devs/importlib_metadata/-/archive/v2.0.0/importlib_metadata-v2.0.0.tar.gz - - python-devel - python-setuptools - python-setuptools-scm - - programming/language/python/python-importlib_metadata/pspec.xml - - - python-importlib_metadata - Python development support library (note: maintenance only) - - python-zipp - python-pathlib2 - python-contextlib2 - python-configparser - - - /usr/lib/python2* - /usr/share/doc/python-importlib_metadata - - - - - 2020-09-23 - 2.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 1.6.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.5.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-17 - 1.5.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-packaging - https://github.com/pypa/packaging - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - Core utilities for Python packages - Python paketleri için çekirdek araçları. - Core utilities for Python packages - python-packaging projesi python paketleri yapmayı kolaylaştıran, sürümleme, belirteçler işaretçiler gereklilikler(bağımlılık), etiketler ve araçları içerir. - https://github.com/pypa/packaging/archive/20.4.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-packaging/pspec.xml - - - python-packaging - Core utilities for Python packages - - python - - - /usr/lib/python2* - /usr/share/doc/python-packaging - - - - - 2020-05-24 - 20.4 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 20.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 20.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 20.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 19.2 - First Release - Blue Devil - bluedevil@sctzine.com - - - - - - python-rfc3986 - https://pypi.org/project/rfc3986/ - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - Validating URI References per RFC 3986. - Her RFC 3986 için URI referanslarını değerlendirir. - A Python implementation of RFC 3986 including validation and authority parsing. - python-rfc3986, değerlendirme ve yetkilendirme çözümleyicisi de içeren python3 uygulamasıdır. - https://github.com/python-hyper/rfc3986/archive/1.4.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-rfc3986/pspec.xml - - - python-rfc3986 - Validating URI References per RFC 3986. - - /usr/share/doc/python-rfc3986 - /usr/share/man - /usr/lib - - - - - 2020-04-08 - 1.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 1.3.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-smbc - http://cyberelk.net/tim/software/pysmbc - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Python interface to the libsmbclient library - libsmbclient kitaplığı için Python arayüzü - python-smbc is a Python binding for the libsmbclient library. - python-smbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır. - https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.22.tar.gz - - samba-devel - python-devel - python-setuptools - - programming/language/python/python-smbc/pspec.xml - - - python-smbc - Python interface to the libsmbclient library - - samba - python - - - /usr/lib/python2* - /usr/share/doc/python-smbc - - - - - 2020-05-24 - 1.0.22 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 1.0.21 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 1.0.20 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.0.19 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 1.0.18 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-15 - 1.0.15.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.0.13 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 1.0.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-pathlib2 - https://github.com/mcmtroffaes/pathlib2 - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Fork of pathlib aiming to support the full stdlib Python API. - Python API standart kitaplığındaki pathlib çatalı. - Backport of pathlib aiming to support the full stdlib Python API. As of January 1 2020, this repository will no longer receive any further updates, as Python 2 is no longer supported. - python-pathlib2, Python API standart kitaplığındaki pathlib çatalıdır ve geriye dönüklüğü sağlar. - https://github.com/mcmtroffaes/pathlib2/archive/2.3.5.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-pathlib2/pspec.xml - - - python-pathlib2 - Fork of pathlib aiming to support the full stdlib Python API. - - python-scandir - - - /usr/share/doc/python-pathlib2 - /usr/lib/python2* - - - - - 2020-02-18 - 2.3.5 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-path-py - https://pypi.org/project/path.py/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - A module wrapper for os.path. - python-path-py (aka path pie) implements path objects as first-class entities, allowing common operations on files to be invoked on those path objects directly.. - https://pypi.org/packages/source/p/path.py/path.py-11.5.2.tar.gz - - python-devel - python-setuptools - python-setuptools-scm - - programming/language/python/python-path-py/pspec.xml - - - python-path-py - A module wrapper for os.path. - - python - - - /usr/lib/python2* - /usr/share/doc/python-path-py - - - - - 2020-05-24 - 11.5.2 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python-itsdangerous - https://palletsprojects.com/p/itsdangerous/ - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python - Safely pass trusted data to untrusted environments and back. - Güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiir. - python3-itsdangerous provides safely pass trusted data to untrusted environments and back. - python-itsdangerous,güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiren python kitaplığı sunar. - https://github.com/pallets/itsdangerous/archive/1.1.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-itsdangerous/pspec.xml - - - python-itsdangerous - Safely pass trusted data to untrusted environments and back. - - /usr/lib/python2* - /usr/share/doc/python-itsdangerous - - - - - 2020-02-15 - 1.1.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-qt5 - https://www.riverbankcomputing.com/software/pyqt/intro - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python - A set of Python bindings for the Qt 5.x Toolkit - Qt5.x araçları için python bağlayıcıları - Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. - Qt5, C++ kütüphaneleri dizisi ve geliştirme araçları olup grafik kullanıcı arabirimleri için, ağ bağlantısı, iş parçacığı, Unicode, düzenli ifadeler, SQL veritabanları, SVG, OpenGL, XML ve kullanıcıve uygulama ayarları gibi platform bağımsız uygulamalara ayrılır. PyQt, Python modülü seti olarak bu sınıftan 440 kadar uygulamayı çalıştırır. - https://files.pythonhosted.org/packages/3b/27/fd81188a35f37be9b3b4c2db1654d9439d1418823916fe702ac3658c9c41/PyQt5-5.15.6.tar.gz - - dbus-devel - dbus-python - python-devel - python-enum34 - dbus-python-common - python-sip - qt5-svg-devel - qt5-base-devel - python-pyqt5-sip - qt5-script-devel - qt5-webkit-devel - qt5-sensors-devel - qt5-designer-devel - qt5-location-devel - qt5-x11extras-devel - qt5-webengine-devel - qt5-websockets-devel - qt5-multimedia-devel - qt5-serialport-devel - qt5-webchannel-devel - qt5-declarative-devel - qt5-networkauth-devel - qt5-xmlpatterns-devel - qt5-connectivity-devel - qt5-quickcontrols2-devel - - - restore-sip4-support.patch - - programming/language/python/python-qt5/pspec.xml - - - python-qt5 - A set of Python 2.x bindings for the Qt 5.x Toolkit - - libgcc - dbus - python - python-enum34 - python-sip - qt5-webengine - qt5-svg - qt5-base - qt5-sensors - qt5-webkit - qt5-location - qt5-designer - qt5-x11extras - qt5-multimedia - qt5-serialport - qt5-webchannel - qt5-websockets - qt5-declarative - qt5-xmlpatterns - qt5-connectivity - python-pyqt5-sip - qt5-networkauth - - - /usr/bin/py2uic5 - /usr/lib/python2.7/site-packages - /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so - /usr/lib/qt5/plugins/designer/libpy2qt5.so - /usr/share/qt5/qsci/api/python/Py2Qt5.api - /usr/bin/py2rcc5 - /usr/bin/py2lupdate5 - - - - python-qt5-devel - Development files for python-qt5 - - libgcc - qt5-base - python-qt5 - - - /usr/share/sip/Py2Qt5 - - - - - 2022-04-18 - 5.15.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-06 - 5.15.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-21 - 5.15.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-19 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-29 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-04 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-13 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-06 - 5.13.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.11.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-02 - 5.11.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-14 - 5.11.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-11 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 5.10.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-01 - 5.9.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-02 - 5.9.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-03 - 5.7.1 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-08 - 5.7.1 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-07 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-25 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 5.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-beaker - https://github.com/bbangert/beaker - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - A Session and Caching library with WSGI Middleware - Oturum ve önbellekleme kitaplığı - python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. - python-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. - https://github.com/bbangert/beaker/archive/1.11.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-beaker/pspec.xml - - - python-beaker - A Session and Caching library with WSGI Middleware - - /usr/lib/ - /usr/share/doc - - - - - 2020-01-17 - 1.11.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 1.10.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-26 - 1.9.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.8.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-11-04 - 1.6.4 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python-editor - https://github.com/fmoo/python-editor - - Blue Devil - bluedevil@sctzine.com - - Apache2.0 - library - programming.language.python - Programmatically open an editor, capture the result. - Sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı. - python-editor is a library that provides the editor module for programmatically interfacing with your system's $EDITOR. - python-editor sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı sağlar. - https://github.com/fmoo/python-editor/archive/1.0.4.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-editor/pspec.xml - - - python-editor - Programmatically open an editor, capture the result. - - /usr/lib/python2* - /usr/share/doc/python-editor - - - - - 2020-02-18 - 1.0.4 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-argparse - https://pypi.python.org/pypi/argparse - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python - Python command-line parsing library - Python için komut satırı çözümleme kitaplığı - The argparse module makes it easy to write user friendly command line interfaces. - python-argparse, Python için komut satırı çözümleme kitaplığı sunar. - https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-argparse/pspec.xml - - - python-argparse - Python command-line parsing library - - /usr/lib/python2* - /usr/share/doc/python-argparse - - - - - 2019-12-30 - 1.4.0 - Rebuilt,translate and clean. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 1.4.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-01 - 1.4.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.4.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-colorama - https://pypi.python.org/pypi/colorama - - Alihan Öztürk - alihan@pisilinux.org - - BSD - library - programming.language.python - Cross-platform colored terminal text. - Uçbirim metinlerini renklendirebilen python modülüdür. - Python API for cross-platform colored terminal text. - python-colorama, uçbirim metinlerini renklendirebilen python modülüdür. - https://github.com/tartley/colorama/archive/0.4.3.tar.gz - - python-devel - - programming/language/python/python-colorama/pspec.xml - - - python-colorama - Cross-platform colored terminal text. - - /usr/lib/python2* - /usr/share/doc/python-colorama - - - - - 2019-12-24 - 0.4.3 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-29 - 0.3.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-26 - 0.3.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.3.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.3.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-websocket-client - https://github.com/websocket-client/websocket-client - - Alihan Öztürk - alihan@pisilinux.org - - BSD - app:console - programming.language.python - WebSocket client library for Python - Python icin ag soketleri kitapligi - websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. - python-websocket-client, WebSocket icin dusuk seviye apiler sunar. Tum apiler senkron yordamlardir. - https://github.com/websocket-client/websocket-client/archive/v0.57.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-websocket-client/pspec.xml - - - python-websocket-client - WebSocket client library for Python - - python-six - python - - - /usr/bin/wsdump-py2.py - /usr/lib/python2* - /usr/share/doc/python-websocket-client - - - - - 2019-12-26 - 0.57.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 0.48.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 0.47.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 0.40.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.37.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.37.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-pyblock - http://git.fedoraproject.org/git/pyblock.git - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python - Python modules for dealing with block devices - Blok aygıtları ile ilgili python modülleri içerir. - The pyblock contains Python modules for dealing with block devices. - Pyblock blok aygıtları ile ilgili python modülleri içerir. - http://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/pyblock-0.53.tar.bz2/f6d33a8362dee358517d0a9e2ebdd044/pyblock-0.53.tar.bz2 - - device-mapper-devel - python-devel - dmraid-devel - - - fix-underlinking.patch - build.patch - - programming/language/python/python-pyblock/pspec.xml - - - python-pyblock - Python modules for dealing with block devices - - device-mapper - dmraid - python - - - /usr/lib - /usr/share/doc - - - - - 2020-01-20 - 0.53 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 0.53 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.53 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.53 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.53 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.53 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-hyperframe - https://github.com/python-hyper/hyperframe - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Pure-Python HTTP/2 framing - Pure-Python HTTP/2 çatısı. - This library contains the HTTP/2 framing code used in the hyper project. It provides a pure-Python codebase that is capable of decoding a binary stream into HTTP/2 frames. - python-hyperframe, bu kitaplık "hyper" projelerinde kullanılmak üzere "HTTP/2" çerçeveleri içerir. İkilik bir akışı HTTP/2 çerçevelerine çözebilen python kod tabanı sunar. - https://github.com/python-hyper/hyperframe/archive/v6.0.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-hyperframe/pspec.xml - - - python-hyperframe - Pure-Python HTTP/2 framing - - /usr/lib - /usr/share/man - /usr/share/doc/python-hyperframe - - - - - 2020-09-23 - 6.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 5.2.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-udev - https://pypi.org/project/pyudev/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Python bindings for libudev library - libudev için Python bağlayıcısı - These bindings enable using of udev library in Python programs. - Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. - https://github.com/pyudev/pyudev/archive/v0.22.tar.gz - - python-setuptools - eudev-devel - - programming/language/python/python-udev/pspec.xml - - - python-udev - Python bindings for libudev library - - /usr/lib - /usr/share/doc - - - - - 2020-01-29 - 0.22 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 0.21.0 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 0.21.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.21.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.21.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.16.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-02 - 0.16.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - python-pbr - https://pypi.org/project/pbr/ - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - Python Build Reasonableness - Python İnşa Uygunluğu - PBR is a library that injects some useful and sensible default behaviors into your setuptools run. - python-pbr, python setuptools ile olan kurulumunuza bazı işlevsel davranışlar ekleyen bir python3 kitaplığıdır. - https://pypi.org/packages/source/p/pbr/pbr-5.4.5.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-pbr/pspec.xml - - - python-pbr - Python Build Reasonableness - - python-setuptools - - - /usr/bin/pbr-py2 - /usr/share/doc - /usr/lib - /usr/share - - - - - 2020-04-08 - 5.4.5 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 5.4.4 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python-typing - https://pypi.org/project/typing/ - - Blue Devil - bluedevil@sctzine.com - - PSF - library - programming.language.python - Backport of the standard library typing module - Geriye dönük Python 2.7 typing bağlayıcıları - This is a backport of the standard library typing module to Python versions older than 3.5. Typing defines a standard notation for Python function and variable type annotations. The notation can be used for documenting code in a concise, standard format, and it has been designed to also be used by static and runtime type checkers, static analyzers, IDEs and other tools. - Python 3.5'dan önceki sürümler için geriye dönüklük destegi saglayan pyton2 bağlayıcısıdır. - https://pypi.io/packages/source/t/typing/typing-3.7.4.1.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-typing/pspec.xml - - - python-typing - Backport of the standard library typing module - - /usr/share/doc/python-typing - /usr/lib - - - - - 2019-11-13 - 3.7.4.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python-wheel - https://github.com/pypa/wheel - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - The official binary distribution format for Python. - This library is the reference implementation of the Python wheel packaging standard, as defined in PEP 427. - https://github.com/pypa/wheel/archive/0.35.1.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-wheel/pspec.xml - - - python-wheel - The official binary distribution format for Python. - - python-setuptools - - - /usr/lib/python2* - /usr/bin/wheel-py2 - /usr/share/doc/python-wheel - - - - - 2020-08-30 - 0.35.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-pynacl - https://github.com/pyca/pynacl/ - - Blue DeviL - bluedevil@sctzine.com - - Apache - library - programming.language.python - Python binding to the Networking and Cryptography (NaCl) library - Python için NaCl modülü - python-pynacl PyNaCl is a Python binding to libsodium, which is a fork of the Networking and Cryptography library. These libraries have a stated goal of improving usability, security and speed. - PyNaCl, ağ ve kriptografi kitaplığınından geliştirilen libsodium kitaplığının python modülüdür. - https://github.com/pyca/pynacl/archive/1.3.0.tar.gz - - python-cffi - python-devel - python-pycparser - python-setuptools - - programming/language/python/python-pynacl/pspec.xml - - - python-pynacl - PyNaCl module for python - - python - python-cffi - - - /usr/lib - /usr/share/doc - - - - - 2019-11-25 - 1.3.0 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-chardet - https://github.com/chardet/chardet - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - programming.language.python - Chardet: The Universal Character Encoding Detector - Chardet: Evrensel Karakter Kodlaması Bulucusu(The Universal Character Encoding Detector) - Character encoding auto-detection in Python. As smart as your browser. Open source. - python-chardet, python ile karakter kodlaması yapabilmeyi sağlayan ve karakter kodlamasını otomatik bulabilmeyi sağlayan bir python bağlayıcısıdır. - https://github.com/chardet/chardet/archive/3.0.4.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-chardet/pspec.xml - - - python-chardet - Chardet: The Universal Character Encoding Detector - - /usr/bin/chardetect-py2 - /usr/lib/python2* - /usr/share/doc/python-chardet - - - - - 2020-12-09 - 3.0.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-24 - 3.0.4 - Rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 3.0.4 - First release. - PisiLinux Community - admins@pisilinux.org - - - 2018-05-22 - 3.0.4 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - python-cairo - http://cairographics.org/pycairo - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo. - Python wrapper for cairo graphics library - Cairo vektörel grafik kitaplığı için Python bağlayıcıları - Pycairo is set of Python bindings for the cairo graphics library. - python-cairo, Cairo vektörel grafik kitaplığı için Python bağlayıcıları sunar. - https://github.com/pygobject/pycairo/releases/download/v1.18.2/pycairo-1.18.2.tar.gz - - python-devel - cairo-devel - - programming/language/python/python-cairo/pspec.xml - - - python-cairo - Python wrapper for cairo graphics library - - cairo - - - /usr/lib - /usr/share/doc - - - - python-cairo-devel - Development files for python-cairo - python-cairo için geliştirme dosyaları - python-cairo-devel, python-cairo için geliştirme dosyalarını içerir. - - python-cairo - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-17 - 1.18.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-07-31 - 1.17.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-25 - 1.16.2 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.10.0 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-01 - 1.10.0 - First release - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - - - - pygame - http://www.pygame.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Python game library - Python oyun kütüphanesi - Liens (bindings) Python pour dsl et autres librairies facilitant la création de jeux. - Python bindings to sdl and other libs that facilitate game production. - Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri içerir. - Acceso con Python a sdl y otras librerías que facilitan produccion de juegos - https://github.com/pygame/pygame/archive/1.9.6.tar.gz - - libjpeg-turbo-devel - python-setuptools - sdl-image-devel - sdl-mixer-devel - portmidi-devel - freetype-devel - sdl-ttf-devel - libpng-devel - libsdl-devel - python-devel - - programming/language/python/pygame/pspec.xml - - - pygame - Python game library - - libjpeg-turbo - sdl-image - sdl-mixer - freetype - portmidi - sdl-ttf - python - libpng - libsdl - - - /usr/lib - - - - pygame-devel - Development files for python game library - pygame için geliştirme dosyaları - pygame-devel, pygame için geliştirme dosyalarını içerir. - - pygame - sdl-image-devel - sdl-mixer-devel - sdl-ttf-devel - - - /usr/include - /usr/share/doc/pygame/examples/* - - - - pygame-doc - Documentation files for python game library - - pygame - - - /usr/share/doc/pygame/README.rst - - - - - 2020-01-20 - 1.9.6 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 1.9.4 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-09 - 1.9.3 - Rebuild and version bump - Stefan Gronewold - groni@pisilinux.org - - - 2013-11-03 - 1.9.1 - Rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2011-05-06 - 1.9.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python-pluggy - https://github.com/pytest-dev/pluggy - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - A minimalist production ready plugin system - Minimalist bir hazır üretim eklenti sistemi. - pluggy is the crystallized core of plugin management and hook calling for pytest. It enables 500+ plugins to extend and customize pytest’s default behaviour. - python-pluggy, minimalist bir hazır üretim eklenti sistemi içerir. - https://github.com/pytest-dev/pluggy/archive/0.13.1.tar.gz - - python-setuptools-scm - python-setuptools - python-devel - - programming/language/python/python-pluggy/pspec.xml - - - python-pluggy - A minimalist production ready plugin system - - python-importlib_metadata - - - /usr/lib/python2* - /usr/share/doc/python-pluggy - - - - - 2020-02-18 - 0.13.1 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-numpy - https://numpy.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python - The fundamental package needed for scientific computing with Python - Python ile bilimsel hesaplama için ihtiyaç duyulan temel paket - Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities. - Numpy, N-boyutlu güçlü bir dizi, gelişmiş fonksiyonlar, C/C++ ve Fortran kodunu entegre etmek için araçlar, doğrusal cebir ve rastgele sayı özelliği içerir. - Numpy contiene un potente objeto de array N-dimensional, funciones sofisticadas (broadcasting), herramientas para la integración de código C/C++ y Fortran, y facilidades útiles de algebra lineal, transformación Fourier, y número aleatorios. - https://github.com/numpy/numpy/archive/v1.16.6.tar.gz - - python-setuptools - lapack-devel - python-devel - cblas-devel - libgfortran - cython - cblas - libquadmath - - programming/language/python/python-numpy/pspec.xml - - - python-numpy - The fundamental package needed for scientific computing with Python - - lapack - cblas - blas - libquadmath - - - /usr/bin/f2py-py2 - /usr/bin/f2py2 - /usr/bin/f2py2.7 - /usr/share/doc - /usr/share/man - /usr/lib - - - - python-numpy-docs - Documentation files for python-numpy - python-numpy için belgelendirme dosyaları - python-numpy-docs, python-numpy için belgelendirme dosyalarını içerir. - - python-numpy - - - /usr/share/doc/python-numpy/doc - - - - - 2020-11-07 - 1.16.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-01 - 1.16.6 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-14 - 1.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 1.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-17 - 1.12.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-29 - 1.8.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - python-urllib3 - https://github.com/shazow/urllib3 - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python - urllib3 is a powerful, sanity-friendly HTTP client for Python. - urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. - urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries. - urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. urllib3 Python standart kütüphanesinde bulunmayan kritik özellikleri içerir. - https://github.com/urllib3/urllib3/archive/1.25.9.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-urllib3/pspec.xml - - - python-urllib3 - urllib3 is a powerful, sanity-friendly HTTP client for Python. - - /usr/lib/python2* - /usr/share/doc/python-urllib3 - - - - - 2020-12-09 - 1.25.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-24 - 1.25.9 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 1.25.8 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-24 - 1.25.7 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 1.23 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-22 - 1.22 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python-decorator - http://www.phyast.pitt.edu/~micheles/python/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - Python module to simplify the usage of decorators - Dekoratör kullanımını kolaylaştıran python modulü - python-decorator simplifies the usage of decorators for the average programmer. - python-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. - https://github.com/micheles/decorator/archive/4.4.2.tar.gz - - python-setuptools - python-nose - - programming/language/python/python-decorator/pspec.xml - - - python-decorator - Python module to simplify the usage of decorators - - /usr/share/doc/python-decorator - /usr/lib/python2* - - - - - 2020-03-04 - 4.4.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-27 - 4.4.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 4.3.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-26 - 4.2.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 4.0.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 4.0.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 4.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python-Unidecode - http://pypi.python.org/pypi/Unidecode/ - - PisiLinux Community - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.python - US-ASCII transliterations of Unicode text - Unicode karakterlerinin US-ASCII harf çevirileri - python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module. - python-Unidecode, Unicode karakterlerinin US-ASCII harf çevirilerini sağlar. Text::Unidecode Perl modülünün Python diliyle yazılmış halidir. - https://files.pythonhosted.org/packages/b1/d6/7e2a98e98c43cf11406de6097e2656d31559f788e9210326ce6544bd7d40/Unidecode-1.1.1.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-Unidecode/pspec.xml - - - python-Unidecode - US-ASCII transliterations of Unicode text - - /usr/bin/unidecode-py2 - /usr/lib/python2* - /usr/share/doc/python-Unidecode - - - - - 2020-01-18 - 1.1.1 - Version bump. - GMK - metehankaraguzel@gmail.com - - - 2018-08-29 - 1.0.22 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-26 - 1.0.22 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.04.20 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.04.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 0.04.18 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-click - https://palletsprojects.com/p/click/ - - Blue Devil - bluedevil@sctzine.com - - BSD-3 - library - programming.language.python3 - Python composable command line interface toolkit - Python için komut satırı yaratma arayüzü - Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. - Click, python için en az komut gerektirecek sekilde tasarlanmış komut satırı arayüzü yaratma paketidir. Açılımı "Command Line Interface Creation Kit - Komut Satırı Arayüzü Yaratma Araç Takımı" olan Click bazı varsayılanlarla beraber gelsede yüksek seviyede ayarlanabilir bir yapıya sahiptir. - https://github.com/pallets/click/archive/7.1.2.tar.gz - - python - python-setuptools - - programming/language/python/python-click/pspec.xml - - - python-click - Python composable command line interface toolkit - - /usr/lib/python2* - /usr/share/doc/python-click - - - - - 2020-05-24 - 7.1.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 7.1.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-15 - 7.0 - Moved from contrib and rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-06 - 7.0 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-bcrypt - https://github.com/pyca/bcrypt - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - Modern(-ish) password hashing for your software and your servers - Yazılımlarınız ve sunucularınız için bir parola hashi üreten python modülüdür. - python-bcrypt is a good password hashing for your software and your servers - python-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 - - python-setuptools - python-devel - - programming/language/python/python-bcrypt/pspec.xml - - - python-bcrypt - Modern(-ish) password hashing for your software and your servers - - python-cffi - - - /usr/lib/python2* - /usr/share/doc/python-bcrypt - - - - - 2019-12-13 - 3.1.7 - Rebuilt and split packages - Blue Devil - bluedevil@sctzine.com - - - 2019-11-07 - 3.1.7 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-reportlab - http://www.reportlab.com/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - PDF generator library - PDF üretim kitaplığı - ReportLab is an PDF generation library with extensive features. - python-reportlab gelişmiş özellikleri olan bir PDF üretim kitaplığıdır ve PDF dosyaları oluşturmada kullanılır. - https://files.pythonhosted.org/packages/2a/02/078c875d81f231fc11ecda3158a2e2cfccc390a534c316e2524db007e245/reportlab-3.5.67.tar.gz - - mercurial - python-pillow - freetype-devel - python-devel - - programming/language/python/python-reportlab/pspec.xml - - - python-reportlab - - python - freetype - - - /usr/lib - - - - python-reportlab-docs - - python-reportlab - - - /usr/share/doc - - - - - 2021-04-26 - 3.5.67 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - pip - https://pypi.python.org/pypi/pip - - Yusuf Aydemir - Yusuf.aydemir@istanbul.com - - MIT - programming.language.python - The PyPA recommended tool for installing Python packages - Python paketleri yükleme aracı - The PyPA recommended tool for installing Python packages - pip, pypa tarafından önerilen python modülleri yükleme aracıdır. - https://github.com/pypa/pip/archive/20.1.tar.gz - - python-devel - python-setuptools - - programming/language/python/pip/pspec.xml - - - pip - The PyPA recommended tool for installing Python packages - - python-setuptools - - - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2020-05-16 - 20.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-23 - 20.0.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 19.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 18.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 9.0.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-24 - 9.0.1 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-08-22 - 8.1.2 - Release Bump - Ali Şafak - aliemresafak@gmail.com - - - 2016-06-06 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-30 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-28 - 8.1.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-scandir - https://github.com/benhoyt/scandir - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python - Better directory iterator and faster os.walk(), now in the Python 3.5 stdlib. - Standart kitaplıkta bulunan os.walk() yordamından daha iyi ve hızlı dizin döndürücüsü. - scandir() is a directory iteration function like os.listdir(), except that instead of returning a list of bare filenames, it yields DirEntry objects that include file type and stat information along with the name. - python-scandir, standart kitaplıkta bulunan os.walk() yordamından daha iyi ve hızlı dizin döndürücüsü sağlar. - https://github.com/benhoyt/scandir/archive/v1.10.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-scandir/pspec.xml - - - python-scandir - Better directory iterator and faster os.walk(), now in the Python 3.5 stdlib. - - /usr/share/doc/python-scandir - /usr/lib/python2* - - - - - 2020-02-18 - 1.10.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-anytree - https://github.com/c0fec0de/anytree - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python - Powerful and Lightweight Python Tree Data Structure - AnyTree için Python bağlayıcıları. - Simple, lightweight and extensible Tree data structure. - python-anytree, python için güçlü ve hafif ağaç veri yapıları sunan bir python kitaplığıdır. - https://github.com/c0fec0de/anytree/archive/2.8.0.tar.gz - - python-setuptools - python-devel - python-six - - programming/language/python/python-anytree/pspec.xml - - - python-anytree - Powerful and Lightweight Python Tree Data Structure - - python-six - - - /usr/lib/python2* - /usr/share/doc/python-anytree - - - - - 2020-01-23 - 2.8.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-h2 - https://github.com/python-hyper/hyper-h2 - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - HTTP/2 State-Machine based protocol implementation - HTTP/2 Durum-Makinesi temelli protokol uygulanaması - This repository contains a pure-Python implementation of a HTTP/2 protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can speak HTTP/2 regardless of your programming paradigm. - python-h2, bu repo sadece python ile yazılmış HTTP/2 protokol yığını içerir. Programlama paradigmanız ne olursa olsun HTTP/2 konuştuğunuz sürece istediğiniz progrma gömebileceğiniz şekilde yazılmıştır. - https://github.com/python-hyper/hyper-h2/archive/v4.0.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-h2/pspec.xml - - - python-h2 - HTTP/2 State-Machine based protocol implementation - - python-hpack - python-enum34 - python-hyperframe - - - /usr/lib - /usr/share/man - /usr/share/doc/python-h2 - - - - - 2020-09-23 - 4.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-23 - 3.2.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 3.1.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-setuptools-scm - https://github.com/pypa/setuptools_scm - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python - Python setuptools-scm module - Python setuptools-scm modülü - Tsetuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file. - setuptools-scm python paket versiyonlarını SCM metadataları kullanarak yönetmenizi sağlayan python modülüdür. - https://github.com/pypa/setuptools_scm/archive/v3.5.0.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-setuptools-scm/pspec.xml - - - python-setuptools-scm - Python setuptools-scm module - - python-setuptools - - - /usr/lib/python2* - /usr/share/doc/python-setuptools-scm - - - - - 2020-02-18 - 3.5.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 3.4.3 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-28 - 3.3.3 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-ipaddress - https://github.com/phihag/ipaddress - - Blue DeviL - bluedevil@sctzine.com - - PSFL - library - programming.language.python - Python 3.3+'s ipaddress for older Python versions - Python için ipaddress modülü - python-ipaddress ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. This module is a backport for python 2.7 and python versions up to 3.2. - python-ipaddress modülü Python3.3 ile gelen ipaddress modülünün python 2.7 ve python 3.2'ye kadar olan sürümlerinde de çalışmasını sağlar. - https://github.com/phihag/ipaddress/archive/v1.0.23.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-ipaddress/pspec.xml - - - python-ipaddress - ipaddress module for python - - /usr/lib - /usr/share/doc - - - - - 2019-11-25 - 1.0.23 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-pygobject3 - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Bindings (liens) GLib/GObject/GIO/GTK+ pour Python. - Python Bindings for GLib/GObject/GIO/GTK+ - GLib/GObject/GIO/GTK+ için python bağlayıcıları - pygobject is GLib's GObject library bindings for Python3. - pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. - http://ftp.acc.umu.se/pub/GNOME/sources/pygobject/3.36/pygobject-3.36.1.tar.xz - - meson - glib2-devel - libffi-devel - python-devel - python-cairo-devel - gobject-introspection-devel - - programming/language/python/python-pygobject3/pspec.xml - - - python-pygobject3 - Python Bindings for GLib/GObject/GIO/GTK+ - - glib2 - cairo - libffi - python-cairo - gobject-introspection - - - /usr/share/doc - /usr/share/pygobject - /usr/lib/python2.7 - /usr/lib/libpyglib-gi-2.0-python2.7.so* - - - - python-pygobject3-devel - Development files for python3-pygobject3 - python-pygobject3 için geliştirme dosyaları - python-pygobject3-devel, python-pygobject3 için geliştirme dosyalarını içerir. - - glib2-devel - libffi-devel - gobject-introspection-devel - python-pygobject3 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-18 - 3.36.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 3.36.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-19 - 3.34.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-09-14 - 3.32.2 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-13 - 3.27.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-25 - 3.27.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 3.22.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 3.22.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.18.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 3.18.2 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-08 - 3.18.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-idna - https://github.com/kjd/idna - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python - Internationalized Domain Names in Applications (IDNA) - IDNA protokolünü desktekleyen python kitaplığıdır. - Support for the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891. This library also provides support for Unicode Technical Standard 46, Unicode IDNA Compatibility Processing. - RFC 5891 belgelendirmesinde belirtilen IDNA(Internationalised Domain Names in Applications - Uygulamalardaki Uluslararasılaşmış Alan Adları) protokolünü destekleyen python kitaplığıdır. Bu kitaplık ayrıca Unikod(Unicode) teknik standardı 46'yı da kapsar. - https://github.com/kjd/idna/archive/v2.9.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-idna/pspec.xml - - - python-idna - Internationalized Domain Names in Applications (IDNA) - - /usr/lib/python2* - /usr/share/doc/python-idna - - - - - 2020-12-09 - 2.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 2.9 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-24 - 2.8 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-29 - 2.7 - First release - PisiLinux Community - admins@pisilinux.org - - - 2018-05-22 - 2.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python-backports - http://bitbucket.org/brandon/backports - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Namespace for backported Python features. - Geriye dönüklüğü olan python modülleri için alan adı. - python-backports provides namespace for backported Python features. - python-backport, geriye dönüklüğü olan python modülleri için alan adı sağlar. - https://bitbucket.org/brandon/backports/get/tip.tar.gz - - __init__.py - - - python-setuptools - python-devel - - programming/language/python/python-backports/pspec.xml - - - python-backports - Namespace for backported Python features - - /usr/share/doc/python-backports - /usr/lib/python2* - - - - - 2020-02-17 - 1.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-toml - https://github.com/uiri/toml - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Python lib for parsing TOML - TOML çözümleyen python kitaplığı. - A Python library for parsing and creating TOML. - python-toml, TOML çözümleyen python kitaplığı sunar. - https://github.com/uiri/toml/archive/0.10.1.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-toml/pspec.xml - - - python-toml - Python lib for parsing TOML - - python - - - /usr/lib/python2* - /usr/share/doc/python-toml - - - - - 2020-05-18 - 0.10.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-hpack - https://github.com/python-hyper/hpack - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - HTTP/2 Header Encoding for Python. - Python için HTTP/2 başlık kodlaması. - This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2. - python-hpack, HTTP/2yi kullanan uygulamalar için HTTP/2 başlık kodlaması sunar. - https://github.com/python-hyper/hpack/archive/v4.0.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-hpack/pspec.xml - - - python-hpack - HTTP/2 Header Encoding for Python. - - /usr/lib - /usr/share/man - /usr/share/doc/python-hpack - - - - - 2020-09-23 - 4.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 3.0.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-contextlib2 - https://github.com/jazzband/contextlib2 - - Blue Devil - bluedevil@sctzine.com - - PSF - library - programming.language.python - contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. - contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. - contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. It also serves as a real world proving ground for possible future enhancements to the standard library version. - python-contextlib2, contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. - https://github.com/jazzband/contextlib2/archive/v0.6.0.post1.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-contextlib2/pspec.xml - - - python-contextlib2 - contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. - - /usr/share/doc/python-contextlib2 - /usr/lib/python2* - - - - - 2020-02-17 - 0.6.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-importlib_resources - https://gitlab.com/python-devs/importlib_resources - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - Design and implementation for a planned importlib.resources - Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı. - The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics. - python-importlib_resources, Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı sunar. Ana amacı pkg_resources madülünün yerini almaktır. - https://gitlab.com/python-devs/importlib_resources/-/archive/v1.5.0/importlib_resources-v1.5.0.tar.gz - - python-toml - python-devel - python-setuptools - python-setuptools-scm - - programming/language/python/python-importlib_resources/pspec.xml - - - python-importlib_resources - Design and implementation for a planned importlib.resources - - python-pathlib2 - python-contextlib2 - python-singledispatch - python-importlib_metadata - - - /usr/lib/python2* - /usr/share/doc/python-importlib_resources - - - - - 2020-05-18 - 1.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-18 - 1.3.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - sip - https://www.riverbankcomputing.com/software/sip/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - programming.language.python - SIP is a tool for generating bindings for C++ classes so that they can be used by Python - SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python. It takes any C or C++ libraries and converts them into Python extension modules. - https://www.riverbankcomputing.com/static/Downloads/sip/4.19.25/sip-4.19.25.tar.gz - - python-devel - - programming/language/python/sip/pspec.xml - - - python-sip - Python 2.x SIP bindings for C and C++ libraries - - libgcc - python - - - /usr/bin - /usr/lib - /usr/include - - - - python-pyqt5-sip - Python 2.x pyqt5 SIP bindings for C and C++ libraries - - libgcc - - - /usr/lib/python2.7/site-packages/PyQt5* - - - - - 2021-10-21 - 4.19.25 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-19 - 4.19.24 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-10 - 4.19.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 4.19.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 4.19.21 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-29 - 4.19.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-13 - 4.19.19 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-13 - 4.19.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 4.19.14 - Rebuild pyqt5 sip. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-14 - 4.19.12 - Rebuild pyqt5 sip. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 4.19.12 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-18 - 4.19.6 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-18 - 4.19 - Release Bump - Stefan Gronewold - groni@pisilinux.org - - - 2017-02-25 - 4.19 - Release Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 4.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-20 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 4.16.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python-zipp - https://github.com/jaraco/zipp - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - A pathlib-compatible Zipfile object wrapper. - pathlib-uyumlu ZipDosyası sarmalayıcı python modülü - A pathlib-compatible Zipfile object wrapper. A backport of the Path object. - python-zipp, pathlib-uyumlu ZipDosyası sarmalayıcı python modülü, path nesnesinin geriye dönüklüğünü sağlar. - https://github.com/jaraco/zipp/archive/v3.0.0.tar.gz - - python-setuptools-scm - python-setuptools - python-devel - - programming/language/python/python-zipp/pspec.xml - - - python-zipp - A pathlib-compatible Zipfile object wrapper. - - /usr/share/doc/python-zipp - /usr/lib/python2* - - - - - 2020-02-18 - 3.0.0 - Ver. bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-17 - 2.2.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-mutagen - https://github.com/quodlibet/mutagen + wxGTK + http://www.wxwidgets.org/ PisiLinux Community admins@pisilinux.org - GPLv2 - library - programming.language.python - An audio tag editing library - Müzik dosyalarının etiketlerini düzenlemek için bir python kitaplığı - Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, MP4, Monkey’s Audio, MP3, Musepack, Ogg Opus, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG, and AIFF audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level. - python-mutagen, müzik dosyalarının etiketlerini düzenlemeye yarayan python ile yazılmış bir kütüphanedir. - https://github.com/quodlibet/mutagen/archive/release-1.43.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-mutagen/pspec.xml - - - python-mutagen - An audio tag editing library - - /usr/bin/mid3cp-py2 - /usr/bin/mid3v2-py2 - /usr/bin/moggsplit-py2 - /usr/bin/mid3iconv-py2 - /usr/bin/mutagen-pony-py2 - /usr/bin/mutagen-inspect-py2 - /usr/lib/python2* - /usr/share/man/man1/mid3cp-py2.1 - /usr/share/man/man1/mid3iconv-py2.1 - /usr/share/man/man1/mid3v2-py2.1 - /usr/share/man/man1/moggsplit-py2.1 - /usr/share/man/man1/mutagen-inspect-py2.1 - /usr/share/man/man1/mutagen-pony-py2.1 - /usr/share/doc/python-mutagen - - - - - 2019-12-24 - 1.43.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 1.41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 1.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.36.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-18 - 1.32 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - python-configparser - https://github.com/jaraco/configparser/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Backport of configparser from Python 3. - Python3'ten geriye dönüklüğü sağlamak için configparser modülü. - The ancient ConfigParser module available in the standard library 2.x has seen a major update in Python 3.2. This is a backport of those changes so that they can be used directly in Python 2.6 - 3.5. - python-configparser, python3'te gelen configparser modülünün geriye dönüklüğünü sağlar. - https://github.com/jaraco/configparser/archive/v5.0.0.tar.gz - - python-setuptools-scm - python-setuptools - python-devel - - programming/language/python/python-configparser/pspec.xml - - - python-configparser - Backport of configparser from Python 3 - - /usr/share/doc/python-configparser - /usr/lib/python2* - - - - - 2020-03-27 - 5.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-17 - 4.0.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - wxPython - http://www.wxpython.org/ - - PisiLinux Community - admin@pisilinux.org - wxWinLL-3 + GPLv2 + LGPLv2 + wxWinFDL-3 library - programming.language.python - Python bindings for wxGTK - wxGTK için Python bağlayıcıları. - wxPython is a GUI toolkit for the Python programming language. It allows Python programmers to create programs with a robust, highly functional graphical user interface, simply and easily. It is implemented as a Python extension module (native code) that wraps the popular wxWindows cross platform GUI library, which is written in C++. - mirrors://sourceforge/wxpython/wxPython-src-3.0.2.0.tar.bz2 + desktop.toolkit + GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit + Birçok platform için ortak C++ arayüz araç takımı olan wxWindows'un GTK+ sürümü + wxWidgets/GTK2 est le port GTK2 de la librairie graphique multi-plateforme wxWidgets, offrant des classes pour les contrôles IHM communs ainsi qu'un ensemble complet de classes d'aides pour les tâches applicatives habituelles, allant du réseau à l'affichage HTML en passant par la manipulation d'images. + wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. + wxWidgets/GTK2 birçok platform için ortak bir C++ arayüz kitaplığı olan wxWidgets'ın GTK2 sürümüdür. Ağ araçları, HTML gösterimi ve resim işleme gibi en yaygın kullanılan uygulama görevleri için kapsamlı bir sınıf kümesinin yanında tüm genel GUI denetimlerini içerir. + wxWidgets/GTK2 es la versión portada a GTK2 de la librería GUI wxWidgets cross-plataforma en C++, con clases para todos los controles GUI comunes y tambien un conjunto de clases con ayudantes para la mayoría de las tareas comunes de aplicaciones, desde networking a visualización HTML y manipulación de imagenes. + https://github.com/wxWidgets/wxWidgets/releases/download/v3.0.5/wxWidgets-3.0.5.tar.bz2 - wxGTK3 - wxGTK-devel - mesa-devel - mesa-glu-devel - libjpeg-turbo-devel + pkgconfig + zlib-devel tiff-devel - pango-devel + gtk2-devel + gtk3-devel + expat-devel + libSM-devel + libpng-devel + libnotify-devel + libsdl2-devel + mesa-glu-devel + webkit2gtk-devel + libjpeg-turbo-devel + gconf-devel + gst-plugins-base-devel + + + make-abicheck-non-fatal.patch + + desktop/toolkit/wxGTK/pspec.xml + + + wxGTK + + gtk2 + tiff + cairo + glib2 + pango + libSM + libsdl2 + libX11 + libgcc + libpng + libglvnd + libnotify + gstreamer gdk-pixbuf + libXxf86vm + webkit2gtk + libjpeg-turbo + libjpeg-turbo + gstreamer + gst-plugins-base + wxGTK-common + + + /usr/lib/libwx_gtk2u* + /usr/lib/wx/include/gtk2-unicode-3.0/wx/setup.h + /usr/bin/wx-config + /usr/lib/wx/config/gtk2-unicode-3.0 + + + + wxGTK3 + + wxGTK-common + gtk3 + tiff + cairo + glib2 + libSM + pango + libX11 + libgcc + libpng + libsdl2 + libnotify + libglvnd + gstreamer + gdk-pixbuf + libXxf86vm + webkit2gtk + libjpeg-turbo + gst-plugins-base + + + /usr/lib/libwx_gtk3u* + /usr/lib/wx/include/gtk3-unicode-3.0/wx/setup.h + /usr/bin/wx-config-gtk3 + /usr/lib/wx/config/gtk3-unicode-3.0 + /usr/lib/wx/3.0/web-extensions/webkit2_extu-3.0.so + + + + wxGTK-common + + zlib + expat + libgcc + + + /usr/bin/wxrc + /usr/bin/wxrc-3.0 + /usr/lib/libwx_baseu* + /usr/share/aclocal/ + /usr/share/bakefile/ + /usr/share/locale/ + /usr/share/doc/ + + + + wxGTK-devel + wxGTK-devel is the development files for wxGTK + wxGTK araç seti için geliştirme dosyaları + + wxGTK + + + /usr/include + + + + + 2021-03-01 + 3.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-28 + 3.0.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-12 + 3.0.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-08 + 3.0.4 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2018-02-20 + 3.0.3.1 + Release Bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-04-09 + 3.0.2 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 3.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-23 + 3.0.2 + First release + İbrahim KARAGÜZEL + ibrahimkaraguzel@windowslive.com + + + + + + wxGTK2.8 + http://www.wxwidgets.org/ + + PisiLinux Community + admins@pisilinux.org + + wxWinLL-3 + GPLv2 + LGPLv2 + wxWinFDL-3 + library + desktop.toolkit + GTK+ version of wxWidgets, a cross-platform C++ GUI toolkit + wxWidgets/GTK2 is the GTK2 port of the C++ cross-platform wxWidgets GUI library, offering classes for all common GUI controls as well as a comprehensive set of helper classes for most common application tasks, ranging from networking to HTML display and image manipulation. + mirrors://sourceforge/wxwindows/wxGTK-2.8.12.tar.bz2 + gst-plugins-base-devel gstreamer-devel - gtk3-devel + gtk2-devel + libjpeg-turbo-devel libSM-devel libXinerama-devel libXxf86vm-devel - python-devel - - programming/language/python/wxPython/pspec.xml - - - wxPython - - bzip2 - python - wxGTK3 - wxGTK-common - - - /usr/bin - /usr/lib - /usr/share/doc - - - - wxPython-devel - Development files for wxPython - wxPython için geliştirme dosyaları - - wxPython - - - /usr/include - - - - - 2020-01-31 - 3.0.2.0 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2018-08-30 - 3.0.2.0 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2018-02-03 - 3.0.2.0 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2017-01-25 - 3.0.2.0 - Rebuild for new toolchain - Pisi Linux Admins - admin@pisilinux.org - - - 2016-07-02 - 3.0.2.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python-ecdsa - https://github.com/warner/python-ecdsa - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python - ECDSA implementation for Python - Python için ECDSA Kriptografi Uygulaması - This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm), implemented purely in Python, released under the MIT license. With this library, you can quickly create keypairs (signing key and verifying key), sign messages, and verify the signatures. The keys and signatures are very short, making them easy to handle and incorporate into other protocols. - Python için kolay kullanımlı, MIT lisanslı ECDSA kriptografi (Elliptic Curve Digital Signature Algorithm) modülü. Bu kitaplık ile hızlıca anahtar oluşturabilir (giriş ahahtarı ve doğrulama anahtarı), iletileri imzalayabilir ve imzalarınızı doğrulayabilirsiniz. Anahtar ile imzalar çok kısadır ve diğer protokollere bütünlleştirmek oldukça kolaydır. - https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.15.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-ecdsa/pspec.xml - - - python-ecdsa - ECDSA module for python - - python-six - - - /usr/share/doc/python-ecdsa - /usr/lib/python2* - - - - - 2020-01-23 - 0.15 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-21 - 0.14.1 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-01 - 0.13 - First Pisi Release, built with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - python-pyzmq - https://github.com/zeromq/pyzmq/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - programming.language.python - PyZMQ: Python bindings for zeromq - PyZMQ: ZeroMQ için Python bağlayıcıları - This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation. - python-pyzmq, ZeroMQ için Python bağlayıcıları içerir. - https://github.com/zeromq/pyzmq/archive/v19.0.1.tar.gz - - cython - python-devel - zeromq-devel - python-setuptools - - programming/language/python/python-pyzmq/pspec.xml - - - python-pyzmq - PyZMQ: Python bindings for zeromq - - python - zeromq - - - /usr/lib/python2* - /usr/share/doc/python-pyzmq - - - - - 2020-05-18 - 19.0.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 19.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-31 - 18.1.1 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-pillow - https://python-pillow.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python - The friendly PIL fork (Python Imaging Library) - Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. As of 2019, Pillow development is supported by Tidelift. - https://github.com/python-pillow/Pillow/archive/6.2.2.tar.gz - - libjpeg-turbo-devel - libimagequant-devel - python-setuptools - openjpeg2-devel - freetype-devel - python-devel - lcms2-devel - tiff-devel - webp-devel - zlib-devel - - programming/language/python/python-pillow/pspec.xml - - - python-pillow - The friendly PIL fork (Python Imaging Library) - - libjpeg-turbo - libimagequant - openjpeg2 - freetype - lcms2 - tiff - webp - zlib - - - /usr/bin - /usr/share/doc - /usr/lib - - - - python-pillow-devel - Development files for python-pillow - python-pillow için geliştirme dosyaları - python-pillow-devel, python-pillow için geliştirme dosyalarını içerir. - - python-pillow - libjpeg-turbo-devel - python-devel - zlib-devel - - - /usr/include - - - - - 2020-01-20 - 6.2.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 5.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-03 - 4.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 4.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-18 - 3.1.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - python-cups - http://cyberelk.net/tim/software/pycups - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python - Python interface to the CUPS API - CUPS programlama arayüzü için Python desteği - python-cups contains python bindings to wrap the CUPS API. - python-cups, CUPS programlama arayüzü için Python bağlayıcıları içeren bir pakettir. - https://files.pythonhosted.org/packages/00/ce/836a0deb8b24bcd5f850f8fb97f99fb4abd7374e078b9e6df5a0838f8eb5/pycups-1.9.74.tar.bz2 - - cups-devel - python-devel - - programming/language/python/python-cups/pspec.xml - - - python-cups - - cups - - - /usr/lib - /usr/share/doc - - - - - 2019-10-19 - 1.9.74 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.9.73 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.9.73 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.9.72 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-21 - 1.9.72 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - python-backports-ssl-match-hostname - https://pypi.python.org/pypi/backports.ssl_match_hostname - - Alihan Öztürk - alihan@pisilinux.org - - PSF-2.2 - app - programming.language.python - The ssl.match_hostname() function from Python 3.4 - Python3.4 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamı - The ssl.match_hostname() function from Python 3.4 - python-backports-ssl-match-hostname, Python3.4 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamını sağlar. - https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-backports-ssl-match-hostname/pspec.xml - - - python-backports-ssl-match-hostname - The ssl.match_hostname() function from Python 3.4 - - /usr/lib/python* - /usr/share/doc - - - - - 2020-01-20 - 3.7.0.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 3.5.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 3.5.0.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-15 - 3.4.0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-singledispatch - https://pypi.org/project/singledispatch/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - This library is a backport of functools.singledispatch to Python 2.6 - 3.3. - functools.singledispatch yordamının python 3.4'ten geriye dönüklüğünü sağlayan kitaplık. - This library is a backport of this functionality to Python 2.6 - 3.3. PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. - python-singledispatch, functools.singledispatch yordamının python 3.4'ten geriye dönüklüğünü sağlayan kitaplığı sağlar. - https://bitbucket.org/ambv/singledispatch/get/3.4.0.3.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-singledispatch/pspec.xml - - - python-singledispatch - This library is a backport of functools.singledispatch to Python 2.6 - 3.3. - - /usr/share/doc/python-singledispatch - /usr/lib/python2* - - - - - 2020-03-18 - 3.4.0.3 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-enchant - https://github.com/pyenchant/pyenchant - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - programming.language.python - Python bindings for the Enchant spellchecking system - Enchant yazım denetleyicisi için hızlı bir Python modulü - python-enchant is an efficient Python module for Enchant spellchecker. - python-enchant, Enchant yazım denetleyicisi için hızlı bir Python modulüdür. - https://pypi.python.org/packages/9e/54/04d88a59efa33fefb88133ceb638cdf754319030c28aadc5a379d82140ed/pyenchant-2.0.0.tar.gz - - python-setuptools - enchant2-devel - python-devel - - - enchant-2.patch - - programming/language/python/python-enchant/pspec.xml - - - python-enchant - Python bindings for the Enchant spellchecking system - - enchant2 - - - /usr/lib/python2* - /usr/share/doc/python-enchant - - - - - 2020-01-18 - 2.0.0 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 2.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 2.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.6.8 - Rebuild for new toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-24 - 1.6.8 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - python-gtk - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - GTK+ bindings for Python - Python için GTK+ bağlayıcıları - Bindings (liens) GTK+2 pour Python. - python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. - python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. - mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 - - cairo-devel - pango-devel - gtk2-devel - glib2-devel - python-devel - libglade-devel - python-pygobject-devel - python-numpy - python-cairo-devel - - - 0001-Fix-leaks-of-Pango-objects.patch - pygtk-Drop-the-PangoFont-find_shaper-virtual-method.patch - python27.patch - - programming/language/python/python-gtk/pspec.xml - - - python-gtk - - atk - gtk2 - cairo - glib2 - pango - libglade - gdk-pixbuf - - - /usr/lib - /usr/share/doc - - - - python-gtk-demo - Demo applications for python-gtk - python-gtk için demo uygulamalar - app:gui - - python-gtk - - - /usr/bin/pygtk-demo - /usr/lib/pygtk/2.0/pygtk-demo.py - /usr/lib/pygtk/2.0/demos - - - - python-gtk-docs - Reference documents for python-gtk - python-gtk için referans belgeleri - data:doc - - python-gtk - - - /usr/share/gtk-doc - - - - python-gtk-devel - Development files for python-gtk - python-gtk için geliştirme dosyaları - - python-gtk - python-pygobject-devel - gtk2-devel - libglade-devel - - - /usr/bin/pygtk-codegen-2.0 - /usr/include - /usr/lib/pkgconfig - /usr/share/pygtk - - - - - 2021-08-10 - 2.24.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-04 - 2.24.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 2.24.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-25 - 2.24.0 - Rebuild for brokens - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 2.24.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 2.24.0 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.24.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-04 - 2.24.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - pyparted - https://github.com/dcantrell/pyparted - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - programming.language.python - Python bindings for parted - Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. - pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. - pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. - pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. - https://github.com/dcantrell/pyparted/archive/v3.11.4.tar.gz - - parted-devel - python-decorator - python-devel - - programming/language/python/pyparted/pspec.xml - - - pyparted - Python bindings for parted - - python-decorator - parted - - - /usr/lib/python2* - /usr/share/doc/pyparted - - - - - 2020-02-12 - 3.11.4 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-10-17 - 3.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 3.11.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-26 - 3.11.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-21 - 3.10.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 3.10.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.10.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-10 - 3.10.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - cython - https://cython.org/ - - Blue DeviL - bluedevil@sctzine.com - - Apache-2.0 - app:console - library - programming.language.python - C extensions for the Python - Python için C eklentileri - Cython is a language that makes writing C extensions for the Python language as easy as Python itself. - Cython, Python için C eklentileri yazmayı kolaylaştıran bir dildir. - https://github.com/cython/cython/archive/0.29.21.tar.gz - - python-devel - python-setuptools - - programming/language/python/cython/pspec.xml - - - cython - C extensions for the Python - - python - python-setuptools - - - /usr/share/doc/cython - /usr/lib/python2* - /usr/bin/cygdb-py2 - /usr/bin/cython-py2 - /usr/bin/cythonize-py2 - - - - - 2020-07-21 - 0.29.21 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 0.29.19 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-14 - 0.29.17 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 0.29.16 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 0.29.15 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-31 - 0.29.14 - Rebuilt - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-07 - 0.29.14 - Split packages - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-11 - 0.29.14 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-22 - 0.24 - First release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - python-blinker - https://github.com/jek/blinker - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - A fast Python in-process signal/event dispatching system. - Python için hızlı bir proses-içi sinyal/olay dağıtım dizimi - Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals". - python-blinker, istekli/ilgili partilerin olay veya sinyallere kaydolmasına izin veren hızlı bir dağıtım dizimi sağlar. - https://github.com/jek/blinker/archive/rel-1.4.tar.gz - - python-setuptools - python-devel - python-nose - - programming/language/python/python-blinker/pspec.xml - - - python-blinker - A fast Python in-process signal/event dispatching system. - - /usr/share/doc/python-blinker - /usr/lib/python2* - - - - - 2020-02-12 - 1.4 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-pyatspi - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2+ - library - programming.language.python - Python bindings for at-spi2-core - at-spi2-core altyapısı için Python bağlayıcısı - python-pyatspi provides a python client library for the AT-SPI D-Bus accessibility infrastructure. - python-pyatspi AT-SPI D-Bus erişilebilirlik altyapısı için python istemci kitaplığıdır. - http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.36/pyatspi-2.36.0.tar.xz - - python-pygobject3-devel - at-spi2-core-devel - - programming/language/python/python-pyatspi/pspec.xml - - - python-pyatspi - Python bindings for at-spi2-core - - python-pygobject3 - at-spi2-core - - - /usr/share/doc/python-pyatspi - /usr/lib/python* - - - - - 2020-03-27 - 2.36.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 2.34.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 2.26.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - 2018-05-06 - 2.26.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python-werkzeug - https://palletsprojects.com/p/werkzeug/ - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python - The comprehensive WSGI web application library. - WSGI ağ uygulamaları kitaplığı. - Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries. - python-werkzeug, WSGI ağ uygulamaları kitaplığı içerir. - https://github.com/pallets/werkzeug/archive/1.0.1.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-werkzeug/pspec.xml - - - python-werkzeug - The comprehensive WSGI web application library - - /usr/share/doc/python-werkzeug - /usr/lib/python2* - - - - - 2020-04-07 - 1.0.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-15 - 1.0.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-docker - https://github.com/docker/docker-py - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - A Python library for the Docker Engine API. - Docker motoru apileri için python kitaplığı. - A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. - python-docker, docker motoru apileri için python kitaplığı sunar. - https://github.com/docker/docker-py/archive/4.1.0.tar.gz - - python-websocket-client - python-setuptools - python-requests - python-devel - python-six - - programming/language/python/python-docker/pspec.xml - - - python-docker - A Python library for the Docker Engine API. - - python-backports-ssl-match-hostname - python-websocket-client - python-requests - python-six - - - /usr/lib/python2* - /usr/share/doc/python-docker - - - - - 2020-01-15 - 4.10 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python-tqdm - https://github.com/tqdm/tqdm - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - A Fast, Extensible Progress Bar for Python and CLI. - Python ile komut satırı için hızlı ve genişletilebilir ilerleme çubugu kitaplığı - python-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done! - python-tqdm, python ile komut satırı için hızlı ve genişletilebilir ilerleme çubuğu kitaplığı sunar. Bu modül ile döngülerinize akıllı ilerleme çubuğu ekleyebilirsiniz. - https://github.com/tqdm/tqdm/archive/v4.46.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-tqdm/pspec.xml - - - python-tqdm - A Fast, Extensible Progress Bar for Python and CLI. - - python-setuptools - - - /usr/lib/python2* - /usr/bin/tqdm-py2 - /usr/share/doc/python-tqdm - - - - - 2020-05-18 - 4.46.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-08 - 4.45.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 4.44.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 4.43.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-05 - 4.42.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-27 - 4.42.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 4.41.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-25 - 4.41.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python-sphinxcontrib-websupport - https://www.sphinx-doc.org/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python - Sphinx API for Web Apps - python-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. - sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application. - python-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. python3-sphinxcontrib-websupport, ağ uygulamalarınız için Sphinx ile bütünleşebilen python apisi sunar. - https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.2.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-sphinxcontrib-websupport/pspec.xml - - - python-sphinxcontrib-websupport - sphinxcontrib-websupport module for python - - python-Jinja2 - python-docutils - python-setuptools - - - /usr/lib/python2* - /usr/share/doc/python-sphinxcontrib-websupport - - - - - 2020-05-18 - 1.2.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.2.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-24 - 1.2.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-13 - 1.1.2 - Rebuilt and clean - Blue Devil - bluedevil@sctzine.com - - - 2019-11-13 - 1.1.2 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-certifi - https://certifi.io/ - - Blue DeviL - bluedevil@sctzine.com - - MPL-2.0 - library - programming.language.python - Python package for providing Mozilla's CA Bundle - Certifi, Mozillanın sertifikalarını sağlayan python kitaplığıdır. - Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. - Certifi, TLS sahiplerinin SSL sertifikalarını doğrulanmasını sağlayan, kök sertifikalarının toplandığı bir kitaplıktır. - https://pypi.org/packages/source/c/certifi/certifi-2020.6.20.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-certifi/pspec.xml - - - python-certifi - Python package for providing Mozilla's CA Bundle - - /usr/lib - /usr/share/doc - - - - - 2020-07-21 - 2020.6.20 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 2020.4.5.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-28 - 2019.11.28 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-07 - 2019.9.11 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-attrs - https://www.attrs.org/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python - Python Classes Without Boilerplate - Şablonsuz python sınıfları. - attrs is the Python package that will bring back the joy of writing classes by relieving you from the drudgery of implementing object protocols (aka dunder methods). - python-attrs, şablonsuz python sınıfları içerir. bu sayede daha hızlı ve karmaşık olmayan kod yazmanızı sağlar. - https://github.com/python-attrs/attrs/archive/20.2.0.tar.gz - - python-devel - python-setuptools - - programming/language/python/python-attrs/pspec.xml - - - python-attrs - Python Classes Without Boilerplate - - /usr/lib/python2* - /usr/share/doc/python-attrs - - - - - 3020-09-23 - 20.2.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-15 - 19.3.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - notify-python - http://galago-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.language.python - Python bindings for libnotify - libnotify'ın Python bağlayıcıları - Galago est un framework (cadre de développement) de présence bureautique, conçu pour transmettre des informations de présences entre programmes. Pour faire simple, il recense les présents et agrège les informations concernant leur état depuis un logiciel de messagerie instantannée (tel que gaim) ou de programmes similaires et permet à d'autre logiciels (tels que Evolution) d'avoir accès à cette information. - notify-python are Python bindings for the Galago project's notification library libnotify. -  Galago programlar arası duruş/görünüm bilgisini iletecek şekilde dizayn edilmiş bir masaüstü görüntü çerçevesidir. Daha basitçe açıklamak gerekirse, bir anlık ileti programından (gaim gibi) veya benzeri başka programlardan kimlerin çevrimiçi, boş/uzakta olduğu bilgisini alıp diğer programların (örn. Evolution) bu bilgiyi kullanmasını sağlar. - Galego es un entorno de presencia de escritorio, diseñado para transmitir informaciones entre programas. En términos sencillos: Puede tomar información sobre quien está en linea, y el estado ausente/inactivo de un programa de mensajería instantánea, como pidgin o similar, y pasar la información a otros programas (ejemplo Evolution) para hacer uso de ello. - http://galago-project.org/files/releases/source/notify-python/notify-python-0.1.1.tar.gz - - libnotify-devel - python-devel - python-gtk-devel - gtk2-devel - - - link-with-python.patch - notify-python-0.1.1-fix-GTK-symbols.patch - libnotify0.7.patch - - programming/language/python/notify-python/pspec.xml - - - notify-python - Python bindings for libnotify - - atk - gtk2 - cairo - glib2 - pango - python - freetype - libnotify - fontconfig - gdk-pixbuf - - - /usr/lib - /usr/lib/pkgconfig - /usr/share/pygtk/2.0/defs - - - - - 2020-01-17 - 0.1.1 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 0.1.1 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 0.1.1 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 0.1.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-cryptography - https://cryptography.io/ - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python - Cryptographic recipes for Python - Python için kriptografik tarifler - A package designed to expose cryptographic recipes and primitives to Python developers - python-cryptography, Python geliştiricileri icin kriptografik tarifler ve ilkeler sunan bir pakettir. - https://github.com/pyca/cryptography/archive/3.1.tar.gz - - python-cffi - python-devel - openssl-devel - python-pycparser - python-setuptools - - programming/language/python/python-cryptography/pspec.xml - - - python-cryptography - Cryptographic recipes for Python - - python - python-cffi - - - /usr/lib/python2* - /usr/share/doc/python-cryptography/LICENSE - /usr/share/doc/python-cryptography/README.rst - - - - - 2020-08-30 - 3.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 2.9.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 2.9.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-08 - 2.9 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-06 - 2.8 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-docker-py - https://github.com/dotcloud/docker-py - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python - Python client for Docker. - A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. - https://github.com/docker/docker-py/archive/2.0.2.tar.gz - - python-devel - python-setuptools - python-websocket-client - python-six - python-requests - pip - - programming/language/python/python-docker-py/pspec.xml - - - python-docker-py - Python client for Docker. - - python - python-websocket-client - python-six - python-requests - - - /usr/lib - /usr/share/doc - - - - - 2018-08-29 - 2.0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 2.0.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.8.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gst-python - https://gstreamer.freedesktop.org/modules/gst-python.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - GStreamer Python bindings - GStreamer Python bağlayıcıları - gst-python is a Python frontend to GStreamer. - gst-python GStreamer için Python arabirimidir. - https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.16.2.tar.xz - - python-pygobject3-devel - glib2-devel - gstreamer-devel - python-devel - gst-plugins-base-devel - - programming/language/python/gst-python/pspec.xml - - - gst-python - - glib2 - python - gstreamer - gst-plugins-base - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2022-05-11 - 1.16.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.16.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-19 - 1.16.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.16.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 1.16.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.12.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-25 - 1.10.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.10.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.10.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-21 - 0.10.22 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - python-lxml - https://lxml.de/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - library - programming.language.python - lxml is the most feature-rich and easy-to-use library - Zengin içerikli ve kolay kullanımlı bir kütüphane. - lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. - Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. - https://github.com/lxml/lxml/archive/lxml-4.5.1.tar.gz - - cython - python-devel - libxslt-devel - libxml2-devel - - programming/language/python/python-lxml/pspec.xml - - - python-lxml - lxml is the most feature-rich and easy-to-use library - - python - libxml2 - libxslt - - - /usr/lib/python2* - - - - python-lxml-docs - API documentation of python-lxml - python-lxml paketine ait API belgeleri - python-lxml-docs, python-lxml paketine ait API belgeleri içerir. - - python-lxml - - - /usr/share/doc - - - - - 2020-05-24 - 4.5.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 4.5.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 4.4.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-07 - 4.1.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 4.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 3.7.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.3.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-05 - 3.3.5 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - python-dateutil - https://github.com/dateutil/dateutil - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python - python-dateutil provides powerful extensions to datetime - Python datetime için güçlü genişletmeler içeren python modülü - The dateutil module provides powerful extensions to the standard datetime module, available in Python. - python-dateutil, Python 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 - - python-setuptools-scm - python-setuptools - python-devel - - programming/language/python/python-dateutil/pspec.xml - - - python-dateutil - python-dateutil provides powerful extensions to datetime - - python-six - - - /usr/lib/python2* - /usr/share/doc/python-dateutil - - - - - 2019-12-24 - 2.8.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - telepathy-python - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.language.python - Python libraries for Telepathy - Telepathy için Python kitaplıkları - telepathy-python is the Python libraries for use in Telepathy client and connection managers. - telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. - http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz - - libxslt-devel - - - telepathy-python-0.15.19-mkdir_p.patch - dont-compile-py.patch - python-telepathy-no_double_errors-py.patch - - programming/language/python/telepathy-python/pspec.xml - - - telepathy-python - - /usr/lib - /usr/share/doc - - - - - 2018-08-30 - 0.15.19 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.15.19 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.15.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.15.19 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python-enum34 - https://bitbucket.org/stoneleaf/enum34/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - programming.language.python - An enumeration is a set of symbolic names (members) bound to unique, constant values. Within an enumeration, the members can be compared by identity, and the enumeration itself can be iterated over. - python-enum34, python3.4'ten python2.4ye kadar ger'ye dönüklüğü sağlar. - python-enum34 is the new Python stdlib enum module available in Python 3.4 backported for previous versions of Python from 2.4 to 3.3. tested on 2.6, 2.7, and 3.3+ - Bir numaralandırma, benzersiz, sabit değerlere bağlı bir dizi sembolik isimdir (üyeler). Bir numaralandırmada, üyeler kimlikle karşılaştırılabilir ve numaralandırma kendisi üzerinde yinelenebilir. - https://bitbucket.org/stoneleaf/enum34/get/1.1.10.tar.gz - - python-setuptools - python-devel - - programming/language/python/python-enum34/pspec.xml - - - python-enum34 - The enum module from Python3.4 backported from 3.3 - 2.4 - - /usr/share/doc - /usr/lib - - - - - 2020-03-11 - 1.1.10 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 1.1.9 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-23 - 1.1.8 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 1.1.6 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-10-18 - 1.1.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python-imaging - http://www.pythonware.com/products/pil/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python - Python Imaging Library (PIL) - Python Görüntü İşleme Kitaplığı - The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. - python-imaging, python2 görüntü işleme kitaplığı dosyalarını sunar. - La librería Python Imaging Library (PIL) facilita el procesamiento de imágenes desde Python. Esta librería soporta muchos formatos de archivos y provee potentes facilidades de procesamiento de gráficos. - http://effbot.org/media/downloads/Imaging-1.1.7.tar.gz - - sane-backends-devel - libjpeg-turbo-devel - freetype-devel - python-devel - lcms-devel - zlib-devel - - - local_only_initial_value.patch - gentoo-imaging-sane.patch - anka-imaging-tiffendian.patch - gentoo-imaging-giftrans.patch - - programming/language/python/python-imaging/pspec.xml - - - python-imaging - Python Imaging Library (PIL) - - libjpeg-turbo - sane-backends - xdg-utils - freetype - tcltk - lcms - tcl - - - /usr/bin - /usr/lib - /usr/include - /usr/share/doc - - - - - 2020-01-20 - 1.1.7 - Clean and rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 1.1.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.1.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 1.1.7 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - python-pygobject - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python - Bindings (liens) glib pour Python. - Glib bindings for Python - glib için python bağlayıcıları - pygobject is GLib's GObject library bindings for Python. - pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. - http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.7.tar.xz - - glib2-devel - python-devel - python-cairo-devel - - - pygobject-2.16.1-fixdetection.patch - - programming/language/python/python-pygobject/pspec.xml - - - python-pygobject - - python-cairo - libffi - glib2 - - - /usr/lib - /usr/share/doc - - - - python-pygobject-devel - pygobject development files - pygobject geliştirme dosyaları - pygobject-devel, pygobject için geliştirme dosyalarını içerir. - - python-pygobject - libffi-devel - glib2-devel - - - /usr/bin/pygobject-codegen-2.0 - /usr/share/pygobject - /usr/lib/pkgconfig - /usr/include - - - - python-pygobject-docs - API documents for pygobject - pygobject için API dökümanları - pygobject-docs, pygobject için belgelendirme dosyalarını içerir. - data:doc - - /usr/share/gtk-doc - - - - - 2020-01-20 - 2.28.7 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-14 - 2.28.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 2.28.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-06 - 2.28.6 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 2.28.6 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.28.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-04 - 2.28.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python-PyYAML - https://pyyaml.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python - The next generation YAML parser and emitter for Python - Python için yeni nesil YAML ayrıştırıcısı - python-pyyaml is the next generation YAML parser and emitter for Python. - python-pyyaml python için yeni nesil YAML ayrıştırıcısıdır. - https://github.com/yaml/pyyaml/archive/5.3.1.tar.gz - - _yaml.c - - - libyaml-devel - python-devel - - programming/language/python/python-PyYAML/pspec.xml - - - python-PyYAML - The next generation YAML parser and emitter for Python - - libyaml - - - /usr/share/doc/python-PyYAML - /usr/lib/python2* - - - - - 2020-04-07 - 5.3.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-22 - 5.3 - Clean and rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 5.3 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2019-01-02 - 5.2 - Version bump and rebuilt w/ gcc9. - Blue Devil - bluedevil@sctzine.com - - - 2019-10-03 - 5.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 3.13 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 3.12 - Rebuild for new toolchain - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-16 - 3.12 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 3.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-27 - 3.11 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pyqtermwidget5 - https://github.com/Rmys/pyqtermwidget5 - - Harun Gültekin - hrngultekin@gmail.com - - GPLv2 - library - programming.language.python - Python binding of terminal widget for Qt - PyQt5 tabanlı uygulamalar için basit bir terminal modulü - A simple terminal widget for using with PyQt based applications - https://github.com/Rmys/pyqtermwidget5/archive/v0.1.2.tar.gz - - python-sip - python-devel - qtermwidget5-devel - qt5-base-devel - python-qt5-devel - - - py2config.patch - qtermwidget5-1.0.0.patch - - programming/language/python/pyqtermwidget5/pspec.xml - - - pyqtermwidget5 - Python binding of terminal widget for Qt - - libgcc - qt5-base - qtermwidget5 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-11-14 - 0.1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-19 - 0.1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-26 - 0.1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 0.1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-09 - 0.1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-07 - 0.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-09 - 0.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-16 - 0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-25 - 0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-10 - 0.1 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-21 - 0.1 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-28 - 0.1 - Rebuild - Harun Gültekin - hrngultekin@gmail.com - - - 2014-06-19 - 0.1 - First release - Harun Gültekin - hrngultekin@gmail.com - - - - - - python3-PyShellCode - https://github.com/thomaskeck/PyShellCode/ - - Blue Devil - bluedevil@sctzine.com - - GPL3 - library - programming.language.python3 - Execute ShellCode / "Inline-Assembler" in Python - Python3 ile shellcode koşmanızı sağlar - Execute ShellCode in Python. In other words, allows to use "inline assembler" in Python. - python3-PyShellCode, python3 içerisinde assembly(NASM sözdizimi ile) ya da shellkod koşmanızı sağlar. - https://github.com/thomaskeck/PyShellCode/archive/v1.0.tar.gz - - python3-devel - cmake - - programming/language/python3/python3-PyShellCode/pspec.xml - - - python3-PyShellCode - Execute ShellCode / "Inline-Assembler" in Python - - python3 - - - /usr/lib - /usr/lib/python3* - /usr/share/doc/python3-PyShellCode - - - - python3-PyShellCode-devel - Development headers for the python3-PyShellCode module - - python3-PyShellCode - - - /usr/include/ - - - - - 2021-10-28 - 1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-09 - 1.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pylint - https://pylint.org/ - - Blue Devil - bluedevil@sctzine.com - - GPL - library - programming.language.python3 - A python code static checker tools. - Python kaynak kodlarını hatalara karşı tarayan bir araç. - python3-pylint is a Python static code analysis tool which looks for programming errors, helps enforcing a coding standard, sniffs for code smells and offers simple refactoring suggestions. - python3-pylint, bir Python modülünün standartlara uyup uymadığını, hatalar içerip içermediğini analiz eden bir uygulamadır. - https://github.com/PyCQA/pylint/archive/refs/tags/v2.11.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pylint/pspec.xml - - - python3-pylint - A Python module for decorators, wrappers and monkey patching. - - python3 - python3-toml - python3-isort - python3-mccabe - python3-astroid - python3-setuptools - - - /usr/share/doc/ - /usr/bin - /usr/lib/python3* - - - - - 2021-10-13 - 2.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 2.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 2.6.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-html5lib - https://github.com/html5lib/html5lib-python - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Standards-compliant library for parsing and serializing HTML documents and fragments in Python - Python ile HTML belgeleri ve parçalerinin çözümleyebilen standart-uyumlu kitaplik. - python3-html5lib is a pure-python library for parsing HTML. It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers. - python3-html5lib python ile yazilmis HTML cozumleme kitapligidir. Neredeyse tum buyun ag gozaticilari tarafindan kullanilan, WHATWG HTML ile belirlenen ozelliklere uymak uzere tasarlanmistir. - https://github.com/html5lib/html5lib-python/archive/1.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-html5lib/pspec.xml - - - python3-html5lib - Standards-compliant library for parsing and serializing HTML documents and fragments in Python - - python3 - python3-six - python3-webencodings - - - /usr/lib/python3* - /usr/share/doc/python3-html5lib - - - - - 2021-10-22 - 1.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-07-22 - 1.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 1.0.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-aiml - https://github.com/ArtificialIntelligenceToolkit/aiml - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - aiml implements an interpreter for AIML - aiml implements an interpreter for AIML - aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. - aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. - https://github.com/paulovn/python-aiml/archive/0.9.3.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-aiml/pspec.xml - - - python3-aiml - aiml implements an interpreter for AIML - - python3 - - - /usr/bin* - /usr/lib/python3* - /usr/share/doc/python3-aiml - - - - - 2022-01-23 - 0.9.3 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-webencodings - https://github.com/gsnedders/python-webencodings - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Character encoding for the web. - Genel ağ icin karakter kodlaması. - python3-webencodings is a Python implementation of the WHATWG Encoding standard. - python3-webencodings, genel ağ için karakter kodlaması kitaplığı sunar. - https://github.com/gsnedders/python-webencodings/archive/v0.5.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-webencodings/pspec.xml - - - python3-webencodings - Character encoding for the web. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-webencodings - - - - - 2021-10-25 - 0.5.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-20 - 0.5.1 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-wheel - https://github.com/pypa/wheel - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - The official binary distribution format for Python. - Python için resmi ikilik dosya dağıtım biçimi - This library is the reference implementation of the Python wheel packaging standard, as defined in PEP 427. - python3-wheel, PEP427'de tanımlanan Python için "wheel" paketleme standardı uygulamasıdır. - https://github.com/pypa/wheel/archive/0.36.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-wheel/pspec.xml - - - python3-wheel - The official binary distribution format for Python. - - python3 - - - /usr/bin/wheel - /usr/lib/python3* - /usr/share/doc/python3-wheel - - - - - 2021-10-22 - 0.36.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 0.35.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask-mail - https://github.com/mattupstate/flask-mail - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Flask-Mail adds SMTP mail sending to your Flask applications. - Flask uygulamalarınız için SMTP posta uygulaması. - Flask-Mail is a Flask extension providing simple email sending capabilities. - python3-flask-login, flask uygulamalarınız için SMTP posta uygulaması kitaplığı sağlar. - https://github.com/mattupstate/flask-mail/archive/0.9.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-mail/pspec.xml - - - python3-flask-mail - Flask-Mail adds SMTP mail sending to your Flask applications. - - python3-blinker - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-mail - - - - - 2021-10-28 - 0.9.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 0.9.1 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pafy - https://github.com/mps-youtube/pafy - - Blue Devil - bluedevil@sctzine.com - - LGPLv3 - library - programming.language.python3 - Python library to download YouTube content and retrieve metadata. - Youtube için Python APIsi - python3-pafy can retrieve YouTube content and metadata. - python3-pafy, Python ile YouTube içerik ve metadatanın çekilmesine olanak tanıyan python apisi sunar. - https://github.com/mps-youtube/pafy/archive/v0.5.5.tar.gz - - python3-setuptools - python3-youtube_dl - python3-devel - - programming/language/python3/python3-pafy/pspec.xml - - - python3-pafy - A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". - - python3-youtube_dl - python3 - - - /usr/bin/ytdl - /usr/lib/python3* - /usr/share/doc/python3-pafy - - - - - 2021-10-28 - 0.5.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-26 - 0.5.5 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-Babel - https://babel.pocoo.org - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - A collection of tools for internationalizing Python applications - Python uygulamalarını uluslararasılaştırmak için bir takım koleksiyonu - Babel is composed of two major parts: 1) tools to build and work with gettext message catalogs , 2) a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc. - Babel temelde iki parçadan oluşur: 1) gettext mesaj kataloglarıyla çalışmak ve onları derlemek için araçlar 2) CLDR(Common Locale Data Repository), Genel Yerel Veri Deposuna, çeşitli yerel gösterim isimlerine ulaşımı sağlamak, yerelleştirilmiş numara ve tarih biçimlerini desteklemek gibi özellikler sağlayan bir python arayüzü. - https://github.com/python-babel/babel/archive/v2.9.1.tar.gz - https://www.unicode.org/Public/cldr/37/core.zip - - python3-setuptools - python3-devel - python3-pytz - - programming/language/python3/python3-Babel/pspec.xml - - - python3-Babel - A collection of tools for internationalizing Python applications - - python3-pytz - python3 - - - /usr/share/doc/python3-Babel - /usr/lib/python3* - /usr/bin - - - - - 2021-10-22 - 2.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-23 - 2.8.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 2.7.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-28 - 2.6.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python3-werkzeug - https://palletsprojects.com/p/werkzeug/ - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - The comprehensive WSGI web application library. - WSGI ağ uygulamaları kitaplığı. - Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries. - python3-werkzeug, WSGI ağ uygulamaları kitaplığı içerir. - https://github.com/pallets/werkzeug/archive/2.0.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-werkzeug/pspec.xml - - - python3-werkzeug - The comprehensive WSGI web application library - - python3 - - - /usr/share/doc/python3-werkzeug - /usr/lib/python3* - - - - - 2021-10-25 - 2.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 1.0.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-13 - 1.0.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-sphinxcontrib-devhelp - https://github.com/sphinx-doc/sphinxcontrib-devhelp - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx extension which outputs Devhelp document. - Devhelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. - sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. - python3-sphinxcontrib-devhelp, Devhelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. - https://github.com/sphinx-doc/sphinxcontrib-devhelp/archive/1.0.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-devhelp/pspec.xml - - - python3-sphinxcontrib-devhelp - sphinxcontrib-devhelp module for python - - python3 - - - /usr/share/doc/python3-sphinxcontrib-devhelp - /usr/lib/python3* - - - - - 2021-10-22 - 1.0.2 - Rebuild. - Pisi Linux Admins - admins@pisilinux.org - - - 2020-03-04 - 1.0.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 1.0.1 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask-migrate - https://github.com/miguelgrinberg/Flask-Migrate/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - SQLAlchemy database migrations for Flask applications using Alembic. - Alembic kullanarak Flask uygulamalarınız için SQLAlchemy veritabanı göç aracı. - Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. The database operations are provided as command-line arguments under the flask db command. - python3-flask-migrate, flask uygulamalarınız için alembic kullanarak sqlalchemy veritabanınızı göç ettirmenizi sağlayan betikleri sunar. - https://github.com/miguelgrinberg/Flask-Migrate/archive/v3.1.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-migrate/pspec.xml - - - python3-flask-migrate - SQLAlchemy database migrations for Flask applications using Alembic. - - python3-alembic - python3-flask - python3 - - - /usr/share/doc/python3-flask-migrate - /usr/lib/python3* - - - - - 2021-10-28 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-29 - 3.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-18 - 2.5.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-19 - 2.5.2 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-email-validator - https://github.com/JoshData/python-email-validator - - PisiLinux Community - admins@pisilinux.org - - custom - app - programming.language.python3 - A robust email syntax and deliverability validation library for Python - A robust email syntax and deliverability validation library for Python - Python için sağlam bir e-posta sözdizimi ve teslim edilebilirlik doğrulama kitaplığı - Python için sağlam bir e-posta sözdizimi ve teslim edilebilirlik doğrulama kitaplığı - https://github.com/JoshData/python-email-validator/archive/refs/tags/v1.1.3.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-email-validator/pspec.xml - - - python3-email-validator - - python3 - python3-idna - python3-dnspython - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 1.1.3 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-06-29 - 1.1.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-pyparsing - https://github.com/pyparsing/pyparsing/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python3 parsing module - Python3 cözümleme modülü. - The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code. - python3-pyparsing modülü lex/yacc yaklaşımı veya regex dışında basit dilbilgisi yaratma ve çalıştırmak için alternatif bir yaklaşım sunar. - https://files.pythonhosted.org/packages/c1/47/dfc9c342c9842bbe0036c7f763d2d6686bcf5eb1808ba3e170afdb282210/pyparsing-2.4.7.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-pyparsing/pspec.xml - - - python3-pyparsing - Python3 parsing module - - python3 - - - /usr/share/doc/python3-pyparsing - /usr/lib/python3* - - - - - 2021-10-22 - 2.4.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 2.4.7 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 2.4.6 - First Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-fixtures - https://launchpad.net/python-fixtures - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Python fixtures for testing / resource management. - Test ve kaynak yöçetimi icin python fikstürleri. - python3-fixtures provides python fixtures for testing / resource management. - python3-fixtures, test ve kaynak yönetimi için python fikstürleri sağlar. - https://files.pythonhosted.org/packages/84/be/94ecbc3f2487bd14aa8b44852f498086219b7cc0c8250ee65a03e2c63119/fixtures-3.0.0.tar.gz - - python3-setuptools - python3-devel - python3-pbr - pip3 - - programming/language/python3/python3-fixtures/pspec.xml - - - python3-fixtures - Python fixtures for testing / resource management. - - python3-setuptools - python3-testtools - python3-extras - python3-pbr - python3-six - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-fixtures - - - - - 2021-10-28 - 3.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-20 - 3.0.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pychromecast - https://github.com/balloob/pychromecast - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python3 module to talk to Google Chromecast. - YouTube Chromecast APIsi sağlayan python3 bağlayıcısı. - python3-pychromecast provides a way to talk with the Google Chromecast. - python3-pychromecast, Google Chromecast ile konuşmayı sağayan bir python3 kitaplığıdır. - https://github.com/home-assistant-libs/pychromecast/archive/9.3.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pychromecast/pspec.xml - - - python3-pychromecast - Python3 module to talk to Google Chromecast. - - python3 - python3-six - python3-requests - python3-zeroconf - python3-protobuf - python3-setuptools - - - /usr/lib/python3* - /usr/share/doc/python3-pychromecast - - - - - 2021-10-28 - 9.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-31 - 7.2.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-19 - 5.2.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-requests - http://www.python-requests.org/ - - Ergün Salman - ergunsalman@hotmail.com - - MIT - library - programming.language.python3 - Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. - Requests insanlar için yapılmış basit bir HTTP kitaplığıdır. - Python’s standard urllib2 module provides most of the HTTP capabilities you need - Requests HTTP/1.1 isteklerini çok basit bir şekilde göndermenize olanak tanıyan bir python kitaplığıdır. - https://github.com/psf/requests/archive/v2.26.0.tar.gz - - python3-devel - python3-setuptools - - - certs.patch - - programming/language/python3/python3-requests/pspec.xml - - - python3-requests - Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. - - python3 - python3-idna - python3-chardet - python3-urllib3 - - - /usr/share/doc/python3-requests - /usr/lib/python3* - - - - - 2021-10-22 - 2.26.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 2.24.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 2.23.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-24 - 2.22.0 - Rebuilt w/ py3.8 and added translations. - Blue Devil - bluedevil@sctzine.com - - - 2019-07-11 - 2.22.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-21 - 2.19.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-21 - 2.18.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 2.13.0 - Release Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.9.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 2.9.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 2.9.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-testtools - https://github.com/testing-cabal/testtools - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Testtools - tasteful testing for python. - testtools, python standart kitaplığındaki birim test çatısına eklentiler içerir. - testtools is a set of extensions to the Python standard library's unit testing framework. - python3-testtools, python standart kitaplığındaki birim test çatısına eklentiler sağlayan python modüllerini içerir. - https://pypi.io/packages/source/t/testtools/testtools-2.5.0.tar.gz - - python3-setuptools - python3-devel - python3-pbr - - programming/language/python3/python3-testtools/pspec.xml - - - python3-testtools - Testtools - tasteful testing for python. - - python3-setuptools - python3-extras - python3-six - python3-pbr - python3 - - - /usr/share/doc/python3-testtools - /usr/lib/python3* - - - - - 2021-10-28 - 2.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-17 - 2.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-20 - 2.3.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - pip3 - https://pypi.python.org/pypi/pip - - Pisi Linux Community - admin@pisilinux.org - - MIT - programming.language.python3 - The PyPA recommended tool for installing Python packages - Python3 paketleri yükleme aracı - The PyPA recommended tool for installing Python packages - pip3, pypa tarafından önerilen python3 modülleri yükleme aracıdır. - https://github.com/pypa/pip/archive/22.1.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/pip3/pspec.xml - - - pip3 - The PyPA recommended tool for installing Python packages - - python3 - python3-setuptools - - - /usr/bin/pip - /usr/bin/pip3* - /usr/lib/python3* - /usr/share/doc - - - - - 2022-06-03 - 22.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-20 - 21.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 21.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 20.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 20.0.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 19.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-09 - 19.0.3 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-29 - 18.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-01 - 9.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-18 - 8.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 8.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-30 - 8.1.2 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-28 - 8.1.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-more-itertools - https://github.com/erikrose/more-itertools - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - More routines for operating on iterables, beyond itertools. - itertools'un ötesinde, itertablolarıyla çalısmak için yeni rutinler - Python's itertools library is a gem - you can compose elegant solutions for a variety of problems with the functions it provides. In more-itertools we collect additional building blocks, recipes, and routines for working with Python iterables. - python3-more-itertools, itertools'un ötesinde, itertablolarıyla çalısmak için yeni rutinler sağlar. - https://github.com/more-itertools/more-itertools/archive/refs/tags/v8.8.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-more-itertools/pspec.xml - - - python3-more-itertools - More routines for operating on iterables, beyond itertools. - - python3 - - - /usr/share/doc/python3-more-itertools - /usr/lib/python3* - - - - - 2021-08-21 - 8.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 8.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-16 - 8.3.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 8.2.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-shiboken2 - https://www.pyside.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - app:console - programming.language.python3 - Shiboken the Binding Generator - Shiboken is the CPython-based binding code generator for C or C++ libraries. It uses an ApiExtractor library to parse the C or C++ headers and get the type information, using Clang. - https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-5.15.2-src/pyside-setup-opensource-src-5.15.2.tar.xz - - llvm - cmake - libxslt-devel - python3-devel - qt5-base-devel - llvm-clang-devel - qt5-xmlpatterns-devel - - programming/language/python3/python3-shiboken2/pspec.xml - - - shiboken2 - Shiboken2 is the binding generator used to create the PySide2 bindings. - - libxslt - qt5-base - llvm-clang - - - /usr/share/doc - /usr/bin/shiboken2 - /usr/lib/libshiboken2* - /usr/share/man/man1/shiboken2.1 - /usr/bin/shiboken_tool.py - - - - python3-shiboken2 - Python3 shared library files used by shiboken2. - Python3 için shiboken2 bağlayıcı modülü - python3-shiboken2, Python3 için shiboken2 bağlayıcı modülü içerir. - - python3 - shiboken2 - - - /usr/lib/python3*/site-packages/shiboken2* - /usr/lib/libshiboken2.cpython-36m-x86_64-linux-gnu.so* - - - - python3-shiboken2-devel - Development headers for the shiboken2 library. - python3-shiboken2 için geliştime dosyaları - python3-shiboken2-devel, python3-shiboken2 için geliştime dosyaları içerir. - - python3-shiboken2 - - - /usr/lib/cmake/ - /usr/include/shiboken2/ - /usr/lib/pkgconfig/shiboken2.pc - - - - - 2021-10-28 - 5.15.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-24 - 5.15.2 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-11-13 - 5.15.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-05-25 - 5.14.2 - Patch version bump. - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-pytest-runner - https://pytest.org/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Invoke py.test as distutils command with dependency resolution - Bağımlılık çözünürlüğü ile beraber distutils komutu olarak py.test çalıştırır. - python3-pytest-runner invokes py.test as distutils command with dependency resolution. - python3-pytest-runner, bağımlılık çözünürlüğü ile beraber distutils komutu olarak py.test çalıştırır. - https://files.pythonhosted.org/packages/2a/04/c3223812b3427ffa95110c5781eae7fe8bc3e9e1fe4e2328bee17b9e5820/pytest-runner-5.3.1.tar.gz - - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-pytest-runner/pspec.xml - - - python3-pytest-runner - Simple powerful testing with Python - - python3 - python3-pytest - - - /usr/lib/python3* - /usr/share/doc/python3-pytest-runner - - - - - 2021-10-22 - 5.3.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 5.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 5.2 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-gtts - https://github.com/pndurette/gTTS - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - Google Text to Speech (TTS) API - Google Text to Speech (TTS) API - Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API - Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API - https://github.com/pndurette/gTTS/archive/v2.2.3.tar.gz - - python3-devel - python3-setuptools - python3-click - python3-requests - - programming/language/python3/python3-gtts/pspec.xml - - - python3-gtts - Google Text to Speech (TTS) API - - python3 - - - /usr/bin* - /usr/lib/python3* - /usr/share/doc/python3-gtts - - - - - 2022-01-23 - 2.2.3 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-dnspython - https://pypi.org/project/dnspython/ - - Pisi Linux Admins - admin@pisilinux.org - - ISC - app - programming.language.python3 - A DNS toolkit for Python - A DNS toolkit for Python - A DNS toolkit for Python - A DNS toolkit for Python - https://files.pythonhosted.org/packages/13/27/5277de856f605f3429d752a39af3588e29d10181a3aa2e2ee471d817485a/dnspython-2.1.0.zip - - python3-devel - python3-setuptools - python3-ecdsa - python3-idna - python3-pycryptodome - - programming/language/python3/python3-dnspython/pspec.xml - - - python3-dnspython - - python3 - python3-setuptools - python3-ecdsa - python3-idna - python3-pycryptodome - - - /usr/lib - /usr/share/doc - - - - - 2021-10-25 - 2.1.0 - Rebuild - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-20 - 2.1.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-flask-script - https://github.com/smurfix/flask-script - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Flask extension to help writing external scripts for Flask applications. - Flask uygulamalarınız için harici betikler geliştirmenizi/yazmanızı sağlayan flask eklentisi. - A set of utilities for use with the Flask framework which provide decorators, classes and helpers for writing your own script commands. - python3-flask-script, flask uygulamalarınız için harici betikler geliştirmenizi/yazmanızı sağlayan flask eklentisi sağlar. - https://github.com/smurfix/flask-script/archive/v2.0.6.tar.gz - - python3-setuptools - python3-devel - - - Usingflask_scriptEverywhereInsteadOfflask.ext.script.patch - - programming/language/python3/python3-flask-script/pspec.xml - - - python3-flask-script - Flask extension to help writing external scripts for Flask applications. - - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-script - - - - - 2021-10-22 - 2.0.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 2.0.6 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-configobj - https://github.com/DiffSK/configobj - - fury - uglyside@yandex.ru - - BSD - library - programming.language.python3 - An ini file round tripper. - Ayar(ini) dosyalarını okuyup yazabilen python modülü - ConfigObj is a simple but powerful config file reader and writer. - python3-configobj, basit ama güçlü bir ayar dosyaları okuyup yazabilen bir python modülüdür. - https://files.pythonhosted.org/packages/source/c/configobj/configobj-5.0.6.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-configobj/pspec.xml - - - python3-configobj - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-11-04 - 5.0.6 - First build. - fury - uglyside@yandex.ru - - - - - - python3-importlib_metadata - https://gitlab.com/python-devs/importlib_metadata - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - importlib_metadata is a library to access the metadata for a Python package. - Python paketlerinin metaverisine erişmek için python kitaplığı - importlib_metadata is a library to access the metadata for a Python package. - python3-importlib_metadata, Python paketlerinin metaverisine erişmek için python kitaplığı sağlar. - https://gitlab.com/python-devs/importlib_metadata/-/archive/v2.0.0/importlib_metadata-v2.0.0.tar.gz - - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-importlib_metadata/pspec.xml - - - python3-importlib_metadata - Python development support library (note: maintenance only) - - python3 - python3-zipp - - - /usr/lib/python3* - /usr/share/doc/python3-importlib_metadata - - - - - 2021-10-22 - 2.0.0 - Rebuild - Pisi Linux Admins - admin@pisilinux.org - - - 2020-09-23 - 2.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-07-21 - 1.7.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 1.6.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.5.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 1.5.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-jsonpatch - https://github.com/stefankoegl/python-json-patch - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.language.python3 - An implementation of the JSON Patch format - An implementation of the JSON Patch format - https://github.com/stefankoegl/python-json-patch/archive/refs/tags/v1.32.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python-jsonpatch/pspec.xml - - - python-jsonpatch - - python3 - python3-six - - - /usr/bin - /usr/lib/python3.9/site-packages - /usr/share/doc/python-jsonpatch - - - - - 2022-01-09 - 1.32 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-rdflib - https://pypi.org/project/rdflib/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app - programming.language.python3 - A Python library for working with RDF, a simple yet powerful language for representing information - A Python library for working with RDF, a simple yet powerful language for representing information - A Python library for working with RDF, a simple yet powerful language for representing information - A Python library for working with RDF, a simple yet powerful language for representing information - https://files.pythonhosted.org/packages/source/r/rdflib/rdflib-6.1.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-rdflib/pspec.xml - - - python3-rdflib - - python3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-01-18 - 6.1.1 - Version bump - Pisilinux Community - admins@pisilinux.org - - - 2021-10-14 - 6.0.1 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-10-09 - 6.0.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-sip - https://www.riverbankcomputing.com/news - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - programming.language.python3 - SIP is a tool for generating bindings for C++ classes so that they can be used by Python3 - C ve C++ kütüphaneleri için python bağlayıcıları oluşturan bir araç - Generator powiązań Pythona z bibliotekami klas C++ - SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python3. It takes any C or C++ libraries and converts them into Python extension modules. - SIP3 C ve C++ kütüphanelerini Python'da kullanabilmek için bağlayıcılar oluşturan bir araçtır. Herhangi bir C veya C++ kütüphanesini Python genişletme modülüne dönüştürür. - Generuje powiązania Pythona z bibliotekami klas C++ ze zbioru plików ze specyfikacjami klas. Obsługiwany jest Python 2 i 3. - https://www.riverbankcomputing.com/static/Downloads/sip/4.19.25/sip-4.19.25.tar.gz - - python3-devel - - programming/language/python3/python3-sip/pspec.xml - - - python3-sip - Python 3.x SIP bindings for C and C++ libraries - - libgcc - python3 - - - /usr/bin - /usr/lib - /usr/include - /usr/share/licenses - - - - python3-pyqt5-sip - Python 3.x pyqt5 SIP bindings for C and C++ libraries - C ve C++ kütüphaneleri için python PyQt5 bağlayıcıları oluşturan bir araç - SIP3 C ve C++ kütüphanelerini Python'da PyQt5 ile kullanabilmek için bağlayıcılar oluşturan bir araçtır. Herhangi bir C veya C++ kütüphanesini Python PyQt5 genişletme modülüne dönüştürür. - - libgcc - - - /usr/lib/python3*/site-packages/PyQt5* - - - - python3-sip-docs - Documentation files for python3-sip - python3-sip için belgelendirme dosyaları - python3-sip-docs, python3-sip için belgelendirme dosyalarını içerir. - - python3-sip - - - /usr/share/doc/python3-sip - - - - - 2021-10-22 - 4.19.25 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-19 - 4.19.24 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-10 - 4.19.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 4.19.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 4.19.21 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 4.19.20 - Rebuild bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 4.19.20 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-09-13 - 4.19.19 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-13 - 4.19.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 4.19.14 - Rebuild pyqt5 sip. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-14 - 4.19.12 - Rebuild pyqt5 sip. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 4.19.12 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-10 - 4.19.6 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 4.19.1 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-18 - 4.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-11 - 4.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-20 - 4.18 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 4.16.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-blinker - https://github.com/jek/blinker - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A fast Python in-process signal/event dispatching system. - Python için hızlı bir proses-içi sinyal/olay dağıtım dizimi - Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals". - python3-blinker, istekli/ilgili partilerin olay veya sinyallere kaydolmasına izin veren hızlı bir dağıtım dizimi sağlar. - https://github.com/jek/blinker/archive/rel-1.4.tar.gz - - python3-setuptools - python3-devel - python3-nose - - programming/language/python3/python3-blinker/pspec.xml - - - python3-blinker - A fast Python in-process signal/event dispatching system. - - python3 - - - /usr/share/doc/python3-blinker - /usr/lib/python3* - - - - - 2021-10-25 - 1.4 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2020-02-12 - 1.4 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-docker - https://github.com/docker/docker-py - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - A Python library for the Docker Engine API. - Docker motoru apileri için python kitaplığı. - A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. - python3-docker, docker motoru apileri için python kitaplığı sunar. - https://github.com/docker/docker-py/archive/5.0.0.tar.gz - - python3-devel - python3-websocket-client - python3-setuptools - python3-requests - python3-six - - programming/language/python3/python3-docker/pspec.xml - - - python3-docker - A Python library for the Docker Engine API. - - python3 - python3-websocket-client - python3-requests - python3-six - - - /usr/lib - /usr/share/doc - - - python3-docker-py - - - - - 2021-10-22 - 5.0.0 - Rebu'ld. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 5.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 5.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 4.10 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pycryptodome - https://www.pycryptodome.org/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A self-contained Python package of low-level cryptographic primitives - Düşük seviye kriptografik ilkeler içeren python3 paketidir. - PyCryptodome is a self-contained Python package of low-level cryptographic primitives.PyCryptodome is a fork of PyCrypto. It brings several enhancements with respect to the last official version of PyCrypto (2.6.1) - PyCrypto'dan çatallanan PyCryptodome düşük seviye kriptografik ilkeler içeren bir python3 kitaplığıdır. - https://github.com/Legrandin/pycryptodome/archive/v3.11.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pycryptodome/pspec.xml - - - python3-pycryptodome - A self-contained Python package of low-level cryptographic primitives - - gmp - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pycryptodome - - - - - 2021-10-25 - 3.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 3.9.8 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 3.9.7 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-cycler - https://github.com/matplotlib/cycler - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - cycler: composable cycles. - cycler: birleştirilebilir döngüler. - python3-cycler provides composable style cycles. - python3-cycler, birleştirilebilir stil döngüler içeren python kitaplığı sunar. - https://github.com/matplotlib/cycler/archive/v0.10.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-cycler/pspec.xml - - - python3-cycler - cycler: composable cycles. - - python3-six - python3 - - - /usr/share/doc/python3-cycler - /usr/lib/python3* - - - - - 2021-10-28 - 0.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 0.10.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-idle - https://www.python.org/ - - PisiLinux Community - admins@pisilinux.org - - custom - programming.language - An Integrated Development Environment for Python - An Integrated Development Environment for Python - https://www.python.org/ftp/python/3.9.7/Python-3.9.7.tar.xz - - bzip2 - xz-devel - tcl-devel - gdbm-devel - zlib-devel - tcltk-devel - expat-devel - libffi-devel - sqlite-devel - python3-devel - ncurses-devel - openssl-devel - readline-devel - mpdecimal-devel - - programming/language/python3/python3-idle/pspec.xml - - - python3-tk - Python modules for Tk - library - programming.language.python3 - - tcl - tcltk - python3 - - - /usr/lib/python3*/tkinter - /usr/lib/python3.9/turtledemo - /usr/lib/python3.9/lib-dynload/_tkinter.cpython-39-x86_64-linux-gnu.so - - - - idle3 - An Integrated Development Environment for Python - Python için bütünleşik geliştirme ortamı - idle3, Python için bütünleşik geliştirme ortamı sunar. - app:gui - programming.environment - idle - - python3 - python3-tk - - - /usr/share/pixmaps - /usr/bin/idle3* - /usr/share/applications - /usr/lib/python*/idlelib - - - python-logo.png - idle.desktop - - - - - 2021-12-14 - 3.9.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 3.9.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-20 - 3.8.9 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-08-30 - 3.8.5 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-07-22 - 3.8.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-28 - 3.8.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-10 - 3.8.0 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - python3-virtualenv - https://github.com/pypa/virtualenv/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - app:console - programming.language.python3 - Virtual Python Environment builder. - Sanal Python ortamı üreteci. - python3-virtualenv is a a tool and library for creating isolated virtual python environments. - python3-virtualenv, sanal bir python çalışma ortamı yaratan araç ve kitaplıkları sunar. - https://github.com/pypa/virtualenv/archive/20.8.0.tar.gz - - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-virtualenv/pspec.xml - - - python3-virtualenv - Virtual Python Environment builder. - - python3 - python3-six - python3-appdirs - python3-distlib - python3-filelock - python3-setuptools - - - /usr/lib/python3* - /usr/bin/virtualenv - /usr/share/doc/python3-virtualenv - - - - - 2021-10-28 - 20.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-31 - 20.0.31 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 20.0.21 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 20.0.20 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 20.0.18 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 20.0.16 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 20.0.15 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 20.0.14 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 20.0.10 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-03 - 20.0.7 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-rfc3986 - https://pypi.org/project/rfc3986/ - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Validating URI References per RFC 3986. - Her RFC 3986 için URI referanslarını değerlendirir. - A Python implementation of RFC 3986 including validation and authority parsing. - python3-rfc3986, değerlendirme ve yetkilendirme çözümleyicisi de içeren python3 uygulamasıdır. - https://github.com/python-hyper/rfc3986/archive/1.5.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-rfc3986/pspec.xml - - - python3-rfc3986 - Validating URI References per RFC 3986. - - python3 - - - /usr/share/doc/python3-rfc3986 - /usr/share/man - /usr/lib - - - - - 2021-10-28 - 1.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-08 - 1.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 1.3.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-Pygments - https://pygments.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - A syntax highlighting package written in Python - Python dilinde yazılmış bir sözdizimi belirtme aracı - python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. - python3-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır. - https://github.com/pygments/pygments/archive/2.9.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-Pygments/pspec.xml - - - python3-Pygments - A syntax highlighting package written in Python - - python3-setuptools - - - /usr/lib/python3* - /usr/bin - /usr/share/man - - - - python3-Pygments-docs - Documentation files for python3-Pygments - - /usr/share/doc/python3-Pygments - - - - - 2021-10-22 - 2.9.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 2.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-11 - 2.6.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-29 - 2.5.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-27 - 2.2.0 - First release - Pisi Linux Community - admin@pisilinux.org - - - - - - python3-curio - https://github.com/dabeaz/curio - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Curio - Concurrent I/O - 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.5.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-curio/pspec.xml - - - python3-curio - Curio - Concurrent I/O - - python3 - - - /usr/share/doc/python3-curio - /usr/share/man - /usr/lib - - - - - 2021-10-28 - 1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 1.2 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 1.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 1.0 - Ver. bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 0.9 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-itsdangerous - https://palletsprojects.com/p/itsdangerous/ - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - Safely pass trusted data to untrusted environments and back. - Güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiir. - python3-itsdangerous provides safely pass trusted data to untrusted environments and back. - python3-itsdangerous,güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiren python kitaplığı sunar. - https://github.com/pallets/itsdangerous/archive/2.0.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-itsdangerous/pspec.xml - - - python3-itsdangerous - Safely pass trusted data to untrusted environments and back. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-itsdangerous - - - - - 2021-10-25 - 2.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 1.1.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-defusedxml - https://pypi.org/project/defusedxml/ - - Pisi Linux Admins - admin@pisilinux.org - - Python - app - programming.language.python3 - XML bomb protection for Python stdlib modules - XML bomb protection for Python stdlib modules - XML bomb protection for Python stdlib modules - XML bomb protection for Python stdlib modules - https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-defusedxml/pspec.xml - - - python3-defusedxml - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-10-28 - 0.7.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-26 - 0.7.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python-setproctitle - https://github.com/dvarrazzo/py-setproctitle - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.language.python3 - Allows a python process to change its process title - Allows a python process to change its process title - https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-1.2.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python-setproctitle/pspec.xml - - - python-setproctitle - - python3 - - - /usr/share/doc/python-setproctitle - /usr/lib/python3.9/site-packages - - - - - 2022-01-09 - 1.2.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-pyatspi - http://www.linuxfoundation.org/collaborate/workgroups/accessibility - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2+ - library - programming.language.python3 - Python bindings for at-spi2-core - at-spi2-core altyapısı için Python bağlayıcısı - python3-pyatspi provides a python client library for the AT-SPI D-Bus accessibility infrastructure. - python3-pyatspi AT-SPI D-Bus erişilebilirlik altyapısı için python istemci kitaplığıdır. - http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.38/pyatspi-2.38.2.tar.xz - - python3-pygobject3-devel - python-pygobject3-devel - at-spi2-core-devel - - programming/language/python3/python3-pyatspi/pspec.xml - - - python3-pyatspi - Python bindings for at-spi2-core - - python3-pygobject3 - at-spi2-core - python3 - - - /usr/lib/python* - /usr/share/doc - - - - - 2021-12-10 - 2.38.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2.38.1 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-04 - 2.38.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-17 - 2.36.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 2.34.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 2.30.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-pyrsistent - https://github.com/tobgu/pyrsistent - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Persistent/Immutable/Functional data structures for Python. - Kalıcı/Değismez/İşlevsel veriyapıları kitaplığı. - Pyrsistent is a number of persistent collections (by some referred to as functional data structures). Persistent in the sense that they are immutable. - python3-pyrsistent python için Kalıcı/Değişmez/İşlevsel veriyapıları kitaplığı sağlar. - https://github.com/tobgu/pyrsistent/archive/v0.18.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-pyrsistent/pspec.xml - - - python3-pyrsistent - Persistent/Immutable/Functional data structures for Python. - - python3-six - python3 - - - /usr/share/doc/python3-pyrsistent - /usr/lib/python3* - - - - - 2021-10-28 - 0.18.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-27 - 0.16.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-19 - 0.15.7 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-h11 - https://pypi.org/project/h11/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 - Sadece python ile hazırlanmış, HTTP/1.1 için kendi-giriş-çıkış-uygulamanı-getir uygulaması. - This is a little HTTP/1.1 library written from scratch in Python, heavily inspired by hyper-h2. - python3-h11, hyper-h2'den esınlenen bu kitaplık sıfırdan yazılmış bir HTTP/1.1 kitaplığıdır. - https://files.pythonhosted.org/packages/bd/e9/72c3dc8f7dd7874812be6a6ec788ba1300bfe31570963a7e788c86280cb9/h11-0.12.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-h11/pspec.xml - - - python3-h11 - A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 - - python3 - - - /usr/lib - /usr/share/man - /usr/share/doc/python3-h11 - - - - - 2021-10-28 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 0.9.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-lazy-object-proxy - https://github.com/ionelmc/python-lazy-object-proxy - - Blue Devil - bluedevil@sctzine.com - - BSDv2 - library - programming.language.python3 - A fast and thorough lazy object proxy. - Hızlı ve esaslı tembel proxy nesnesi. - python3-lazy-object-proxy provides a fast and thorough lazy object proxy. - python3-lazy-object-proxy, hızlı ve esaslı tembel proxy nesnesi sunar. - https://github.com/ionelmc/python-lazy-object-proxy/archive/v1.6.0.tar.gz - - pip3 - python3-devel - python3-setuptools - - programming/language/python3/python3-lazy-object-proxy/pspec.xml - - - python3-lazy-object-proxy - A fast and thorough lazy object proxy. - - python3 - python3-setuptools - - - /usr/share/doc/ - /usr/lib/python3* - - - - - 2021-10-13 - 1.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 1.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 1.5.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-cryptography - https://cryptography.io/ - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Cryptographic recipes for Python3 - Python için kriptografik tarifler. - A package designed to expose cryptographic recipes and primitives to Python developers - 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 - python3-sphinx - python3-sphinx_rtd_theme - - programming/language/python3/python3-cryptography/pspec.xml - - - python3-cryptography - Cryptographic recipes for Python3 - - python3 - python3-cffi - - - /usr/lib/python3* - /usr/share/doc/python3-cryptography/LICENSE - /usr/share/doc/python3-cryptography/README.rst - - - - python3-cryptography-docs - Documentation files for python3-cryptography - python3-cryptography için belgelendirme dosyaları - python3-cryptography-docs, python3-cryptography için belgelendirme dosyaları içerir. - - python3-cryptography - - - /usr/share/doc/python3-cryptography/html - - - - - 2021-10-28 - 3.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 3.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-16 - 2.9.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 2.9.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 2.9 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-06 - 2.8 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-argparse - https://pypi.python.org/pypi/argparse - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python3 - Python command-line parsing library - Python için komut satırı çözümleme kitaplığı - The argparse module makes it easy to write user friendly command line interfaces. - python3-argparse, Python için komut satırı çözümleme kitaplığı sunar. - https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-argparse/pspec.xml - - - python3-argparse - Python command-line parsing library - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-argparse - - - - - 2021-10-22 - 1.4.0 - Rebuild py3.9. - Pisi Linux Community - admin@pisilinux.org - - - 2019-12-30 - 1.4.0 - Rebuilt w/ py3.8 and clean. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 1.4.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-01 - 1.4.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.4.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-zeroconf - https://github.com/jstasiak/python-zeroconf - - Blue Devil - bluedevil@sctzine.com - - LGPLv2 - library - programming.language.python3 - A pure python3 implementation of multicast DNS service discovery. - Python3 için çoklu dağıtımı destekleyen DNS hizmeti keşfi uygulaması - python3-zeroconf is a pure Python3 Multicast DNS Service Discovery Library (Bonjour/Avahi compatible). - python3-zeroconf, çoklu dağıtım(multicast) DNS hizmetlerini python üzerinden bulabilmenize olanak sağlayan bir python kitaplığıdır. - https://github.com/jstasiak/python-zeroconf/archive/0.36.9.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-zeroconf/pspec.xml - - - python3-zeroconf - A pure python3 implementation of multicast DNS service discovery. - - python3 - python3-ifaddr - - - /usr/lib/python3* - /usr/share/doc/python3-zeroconf - - - - - 2021-10-28 - 0.36.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-31 - 0.28.3 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-19 - 0.26.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-appdirs - https://github.com/ActiveState/appdirs - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". - Platforma özel dizin belirleyebilen küçük bir python3 kitaplığı. - What directory should your app use for storing user data? This small Python module is for determining appropriate platform-specific dirs, e.g. a "user data dir". - python3-appdirs, yazdığınız uygulama kullanıcı verisini nerede saklamalı sorusuna yanıt vermeye çalışan küçük bir python3 kitaplığıdır. - https://pypi.org/packages/source/a/appdirs/appdirs-1.4.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-appdirs/pspec.xml - - - python3-appdirs - A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". - - python3 - - - /usr/share/doc/python3-appdirs - /usr/lib/python3* - - - - - 2021-10-28 - 1.4.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 1.4.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-24 - 1.4.3 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-websocket-client - https://github.com/websocket-client/websocket-client - - Alihan Öztürk - alihan@pisilinux.org - - BSD - app:console - programming.language.python3 - WebSocket client library for Python - Python3 icin ag soketleri kitapligi - websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. - python3-websocket-client, WebSocket icin dusuk seviye apiler sunar. Tum apiler senkron yordamlardir. - https://github.com/websocket-client/websocket-client/archive/v1.1.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-websocket-client/pspec.xml - - - python3-websocket-client - WebSocket client library for Python - - python3-six - python3 - - - /usr/bin/wsdump.py - /usr/lib/python3* - /usr/share/doc/python3-websocket-client - - - - - 2021-10-22 - 1.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-26 - 0.57.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 0.48.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 0.47.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 0.46.0 - Release Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-01 - 0.40.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.37.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.37.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-wcwidth - https://github.com/jquast/wcwidth - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Measures number of Terminal column cells of wide-character codes. - Terminal ekranına basılan unikod karakter katarlarının genişliğini ölçen python kitaplığı. - Python library that measures the width of unicode strings rendered to a terminal - python3-wcwidth, terminal ekranına basılan unikod karakter katarlarının genişliğini ölçen python kitaplığı sunar. - https://github.com/jquast/wcwidth/archive/0.2.5.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-wcwidth/pspec.xml - - - python3-wcwidth - Measures number of Terminal column cells of wide-character codes. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-wcwidth - - - - - 2021-10-22 - 0.2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 0.2.5 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 0.1.9 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 0.1.8 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - gst-python3 - https://gstreamer.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python3 - GStreamer Python3 bindings - GStreamer Python bağlayıcıları - gst-python3 is a Python frontend to GStreamer. - gst-python3 GStreamer için Python arabirimidir. - https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.20.2.tar.xz - - meson - glib2-devel - python3-pygobject3-devel - gstreamer-devel - python3-devel - gst-plugins-base-devel - - programming/language/python3/gst-python3/pspec.xml - - - gst-python3 - - glib2 - python3 - gstreamer - gst-plugins-base - - - /usr/lib - /usr/share/doc - /usr/share - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-14 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-22 - 1.16.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.12.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-24 - 1.10.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.10.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-21 - 0.10.22 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - python3-pysmbc - http://cyberelk.net/tim/software/pysmbc - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - library - programming.language.python3 - Python interface to the libsmbclient library - libsmbclient kitaplığı için Python arayüzü - python-smbc is a Python binding for the libsmbclient library. - python3-pysmbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır. - https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.23.tar.gz - - samba-devel - python3-devel - python3-setuptools - - programming/language/python3/python3-pysmbc/pspec.xml - - - python3-pysmbc - Python3 interface to the libsmbclient library - - samba - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pysmbc - - - - - 2021-10-22 - 1.0.23 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-24 - 1.0.22 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 1.0.21 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 1.0.20 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.0.19 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 1.0.18 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-PLY - https://www.dabeaz.com/ply/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.language.python3 - Implementation of lex and yacc parsing tools - PLY is an implementation of lex and yacc parsing tools for Python. - https://sourceforge.net/projects/pisilinux/files/source/ply-3.11.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-PLY/pspec.xml - - - python3-PLY - - python3 - - - /usr/bin - /usr/lib - /usr/include - /usr/share/doc - - - - - 2021-10-28 - 3.11 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-01-15 - 3.11 - First release - İdris Kalp - idriskalp@gmail.com - - - - - - python3-sqlalchemy - https://www.sqlalchemy.org/ - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - The Python SQL Toolkit and Object Relational Mapper - Python SQL Araç Kiti ve İlişkisel Nesne Haritalandırıcısı - SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. - SQLAlchemy, geliştiricisine SQL'in tüm güç ve esnekliğini verebilen, python sql araç kiti ve ilişkisel nesne haritalandırıcısı sunan bir python modülüdür. - https://github.com/sqlalchemy/sqlalchemy/archive/rel_1_4_26.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sqlalchemy/pspec.xml - - - python3-sqlalchemy - The Python SQL Toolkit and Object Relational Mapper - - python3 - - - /usr/share/doc - /usr/lib - - - - - 2021-10-25 - 1.4.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-31 - 1.3.19 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 1.3.17 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-08 - 1.3.16 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-18 - 1.3.15 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 1.3.14 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 1.3.13 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-08 - 1.3.11 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-keyutils - https://github.com/sassoftware/python-keyutils - - Kamil Atlı - suvari@pisilinux.org - - Apache - library - programming.language.python3 - A set of python bindings for keyutils - Keyutils için bir dizi python bağlayıcısı - Un ensemble de liaisons python pour keyutils - A set of python bindings for keyutils - Keyutils için bir dizi python bağlayıcısı - https://github.com/sassoftware/python-keyutils/archive/refs/tags/0.6.tar.gz - - pip3 - keyutils - python3-devel - python3-wheel - python3-setuptools - - programming/language/python3/python-keyutils/pspec.xml - - - python-keyutils - - python3 - keyutils - python3-wheel - - - /usr/lib/python3* - /usr/share/doc/python-keyutils - - - - - 2021-10-27 - 0.6 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2021-09-25 - 0.6 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-commonmark - https://pypi.org/project/commonmark/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - programming.language.python3 - Python parser for the CommonMark Markdown spec - Python parser for the CommonMark Markdown spec - CommonMark Markdown spesifikasyonu için Python ayrıştırıcısı - CommonMark Markdown spesifikasyonu için Python ayrıştırıcısı - https://files.pythonhosted.org/packages/60/48/a60f593447e8f0894ebb7f6e6c1f25dafc5e89c5879fdc9360ae93ff83f0/commonmark-0.9.1.tar.gz - - python3-devel - python3-future - python3-sphinx - python3-setuptools - - programming/language/python3/python3-commonmark/pspec.xml - - - python3-commonmark - - python3 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-25 - 0.9.1 - Rebuild - Pisi Linux Admins - admin@pisilinux.org - - - 2021-05-16 - 0.9.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-olefile - https://github.com/decalage2/olefile - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Python package to parse, read and write Microsoft OLE2 files. - Microsoft OLE2 dosyalarını çözümleyebilen python kitaplığı. - python3-olefile (formerly OleFileIO_PL) is a Python package to parse, read and write Microsoft OLE2 files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office 97-2003 documents, vbaProject.bin in MS Office 2007+ files, Image Composer and FlashPix files, Outlook MSG files, StickyNotes, several Microscopy file formats, McAfee antivirus quarantine files, etc. - python3-olefile, Microsoft OLE2 dosyalarını çözümleyebilen python kitaplığı sunar. - https://github.com/decalage2/olefile/archive/v0.46.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-olefile/pspec.xml - - - python3-olefile - Python package to parse, read and write Microsoft OLE2 files. - - python3 - - - /usr/share/doc/python3-olefile - /usr/lib/python3* - - - - - 2021-10-22 - 0.46 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 0.46 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-iniconfig - https://pypi.org/project/iniconfig/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.language.python3 - brain-dead simple config-ini parsing - brain-dead simple config-ini parsing - brain-dead simple config-ini parsing - brain-dead simple config-ini parsing - https://files.pythonhosted.org/packages/23/a2/97899f6bd0e873fed3a7e67ae8d3a08b21799430fb4da15cfedf10d6e2c2/iniconfig-1.1.1.tar.gz - - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-iniconfig/pspec.xml - - - python3-iniconfig - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 1.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-atomicwrites - https://github.com/untitaker/python-atomicwrites - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Powerful Python library for atomic file writes. - Atomik dosya yazma için çok güçlü python kitaplığı. - python3-atomicwrites provides powerful Python library for atomic file writes. - python3-atomicwrites, atomik dosya yazma için çok güçlü python kitaplığı sunar. - https://github.com/untitaker/python-atomicwrites/archive/1.4.0.tar.gz - - python3-setuptools - python3-devel - python3-pytest - python3-iniconfig - - programming/language/python3/python3-atomicwrites/pspec.xml - - - python3-atomicwrites - Powerful Python library for atomic file writes. - - python3 - - - /usr/share/doc/python3-atomicwrites - /usr/lib/python3* - - - - - 2021-10-28 - 1.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 1.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 1.3.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-importlib_resources - https://gitlab.com/python-devs/importlib_resources - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Design and implementation for a planned importlib.resources - Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı. - The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics. - python3-importlib_resources, Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı sunar. Ana amacı pkg_resources madülünün yerini almaktır. - https://gitlab.com/python-devs/importlib_resources/-/archive/v3.0.0/importlib_resources-v3.0.0.tar.gz - - pip3 - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-importlib_resources/pspec.xml - - - python3-importlib_resources - Design and implementation for a planned importlib.resources - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-importlib_resources - - - - - 2021-10-28 - 3.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-22 - 3.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 1.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 8020-03-18 - 1.3.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-distro - https://github.com/nir0s/distro - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2+ - app:console - programming.language.python3 - Linux Distribution - a Linux OS platform information API - Python'un platform.linux_distribution() yordamından çok daha özenli ve ayrıntılı, yenilenmiş alternatifi - Linux Distribution - a Linux OS platform information API - python3-distro, Python'un platform.linux_distribution() yordamından çok daha özenli ve ayrıntılı, yenilenmiş alternatifi olabılecek uygulama ve python kitaplığı sunarç - https://github.com/nir0s/distro/archive/v1.5.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-distro/pspec.xml - - - python3-distro - Linux Distribution - a Linux OS platform information API - - python3-setuptools - python3 - - - /usr/share/doc/python3-distro - /usr/bin/distro - /usr/lib/python3* - - - - - 2021-10-22 - 1.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 1.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-27 - 1.4.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-httptools - https://github.com/MagicStack/httptools - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A collection of framework independent HTTP protocol utils. - Toplu Özgür HTTP protokol araçları - httptools is a Python binding for nodejs HTTP parser. It's still in a very early development stage, expect APIs to break. - python3-httptools, nodejs HTTP çözümleyicisi için python3 bağlayıcılarını içerir. - https://github.com/MagicStack/httptools/archive/v0.1.1.tar.gz - https://github.com/nodejs/http-parser/archive/v2.9.3.tar.gz - - pip3 - python3-wheel - python3-setuptools - python3-devel - - programming/language/python3/python3-httptools/pspec.xml - - - python3-httptools - A collection of framework independent HTTP protocol utils. - - python3 - - - /usr/share/doc/python3-httptools - /usr/share/man - /usr/lib - - - - - 2021-10-28 - 0.1.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-08 - 0.1.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 0.1.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 0.0.13 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pluggy - https://github.com/pytest-dev/pluggy - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A minimalist production ready plugin system - Minimalist bir hazır üretim eklenti sistemi. - pluggy is the crystallized core of plugin management and hook calling for pytest. It enables 500+ plugins to extend and customize pytest’s default behaviour. - python3-pluggy, minimalist bir hazır üretim eklenti sistemi içerir. - https://github.com/pytest-dev/pluggy/archive/0.13.1.tar.gz - - pip3 - python3-setuptools-scm - python3-setuptools - python3-devel - - programming/language/python3/python3-pluggy/pspec.xml - - - python3-pluggy - A minimalist production ready plugin system - - python3-importlib_metadata - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pluggy - - - - - 2021-10-22 - 0.13.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 0.13.1 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-backports.functools_lru_cache - https://github.com/jaraco/backports.functools_lru_cache - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Backport of functools.lru_cache from Python 3.3 - 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.4.tar.gz - - pip3 - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-backports.functools_lru_cache/pspec.xml - - - python3-backports.functools_lru_cache - Backport of functools.lru_cache from Python 3.3 - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-backports.functools_lru_cache - - - - - 2021-10-28 - 1.6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-24 - 1.6.1 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-hpack - https://github.com/python-hyper/hpack - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - HTTP/2 Header Encoding for Python. - Python için HTTP/2 başlık kodlaması. - This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2. - python3-hpack, HTTP/2yi kullanan uygulamalar için HTTP/2 başlık kodlaması sunar. - https://github.com/python-hyper/hpack/archive/v4.0.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-hpack/pspec.xml - - - python3-hpack - HTTP/2 Header Encoding for Python. - - python3 - - - /usr/lib - /usr/share/man - /usr/share/doc/python3-hpack - - - - - 2021-10-28 - 4.0.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-23 - 4.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 3.0.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-tqdm - https://github.com/tqdm/tqdm - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A Fast, Extensible Progress Bar for Python and CLI. - Python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubugu kitaplığı - python3-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done! - python3-tqdm, python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubuğu kitaplığı sunar. Bu modül ile döngülerinize akıllı ilerleme çubuğu ekleyebilirsiniz. - https://files.pythonhosted.org/packages/e3/c1/b3e42d5b659ca598508e2a9ef315d5eef0a970f874ef9d3b38d4578765bd/tqdm-4.62.3.tar.gz - - pip3 - python3-devel - python3-setuptools - - programming/language/python3/python3-tqdm/pspec.xml - - - python3-tqdm - A Fast, Extensible Progress Bar for Python and CLI. - - python3 - python3-setuptools - - - /usr/share/doc/python3-tqdm - /usr/lib/python3* - /usr/bin/tqdm - - - - - 2021-10-28 - 4.62.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-31 - 4.48.2 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 4.46.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 4.45.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 4.44.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 4.43.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-05 - 4.42.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-27 - 4.42.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 4.41.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-25 - 4.41.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask-paranoid - https://github.com/miguelgrinberg/flask-paranoid/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Simple user session protection. - Basit kullanıcı oturumu koruması. - python3-flask-paranoid provides simple user session protection. - python3-flask-paranoid, flask uygulamalarınız basit kullanıcı oturumu koruması kitaplığı sağlar. - https://github.com/miguelgrinberg/flask-paranoid/archive/v0.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-paranoid/pspec.xml - - - python3-flask-paranoid - Simple user session protection. - - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-paranoid - - - - - 2021-10-22 - 0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 0.2 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-toml - https://github.com/uiri/toml - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python lib for parsing TOML - TOML çözümleyen python kitaplığı. - A Python library for parsing and creating TOML. - python3-toml, TOML çözümleyen python kitaplığı sunar. - https://github.com/uiri/toml/archive/0.10.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-toml/pspec.xml - - - python3-toml - Python lib for parsing TOML - - python3 - - - /usr/share/doc/ - /usr/lib/python3* - - - - - 2021-10-22 - 0.10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 0.10.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-dbusmock - https://github.com/martinpitt/python-dbusmock - - Berk Çakar - berk2238@hotmail.com - - LGPLv3 - programming.language.python3 - Mock D-Bus objects for tests - Mock D-Bus objects for tests - https://github.com/martinpitt/python-dbusmock/releases/download/0.23.1/python-dbusmock-0.23.1.tar.gz - - dbus-python3 - python-pygobject3 - python3-setuptools - - programming/language/python3/python3-dbusmock/pspec.xml - - - python3-dbusmock - Mock D-Bus objects for tests - - dbus-python3 - python-pygobject3 - - - /usr/lib/python3* - /usr/share/doc - - - - - 2021-08-21 - 0.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-21 - 0.23.0 - First release - Berk Çakar - berk2238@hotmail.com - - - - - - python3-sphinxcontrib-htmlhelp - https://github.com/sphinx-doc/sphinxcontrib-htmlhelp - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx extension which renders HTML help files. - python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilir/görüntüleyebilir. - sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files. - python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilen/görüntüleyebilen sphinx genişleme modülüdür. - https://files.pythonhosted.org/packages/eb/85/93464ac9bd43d248e7c74573d58a791d48c475230bcf000df2b2700b9027/sphinxcontrib-htmlhelp-2.0.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-htmlhelp/pspec.xml - - - python3-sphinxcontrib-htmlhelp - sphinxcontrib-htmlhelp module for python - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-sphinxcontrib-htmlhelp - - - - - 2021-10-22 - 2.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-23 - 1.0.3 - version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 1.0.2 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-bcrypt - https://github.com/pyca/bcrypt - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Modern(-ish) password hashing for your software and your servers - 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.2.0.tar.gz - - python3-setuptools - python3-devel - pip3 - - programming/language/python3/python3-bcrypt/pspec.xml - - - python3-bcrypt - Modern(-ish) password hashing for your software and your servers - - python3-cffi - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-bcrypt - - - - - 2021-10-28 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-13 - 3.1.7 - Rebuilt and split packages - Blue Devil - bluedevil@sctzine.com - - - 2019-11-07 - 3.1.7 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pocketsphinx - https://github.com/AzatAI/pocketsphinx-python - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. - Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. - This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. - This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. - https://files.pythonhosted.org/packages/13/6f/280431fc903d7bc1a0b7efe5dc837602f0f193e382b36006bf23178acab5/pocketsphinx2-0.1.17.tar.gz - - python3-devel - swig - alsa-lib-devel - pulseaudio-libs-devel - python-setuptools - python3-setuptools - - programming/language/python3/python3-pocketsphinx/pspec.xml - - - python3-pocketsphinx - Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. - - python3 - python3-soupsieve - - - /usr/lib/python3* - /usr/share/doc/python3-pocketsphinx - - - - python-pocketsphinx - Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. - - python - - - /usr/lib/python* - /usr/share/doc/python-pocketsphinx - - - - - 2022-01-23 - 0.1.17 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-click - https://palletsprojects.com/p/click/ - - Blue Devil - bluedevil@sctzine.com - - BSD-3 - library - programming.language.python3 - Python3 composable command line interface toolkit - Python3 için komut satırı yaratma arayüzü - Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. - Click, python3 için en az komut gerektirecek sekilde tasarlanmış komut satırı arayüzü yaratma paketidir. Açılımı "Command Line Interface Creation Kit - Komut Satırı Arayüzü Yaratma Araç Takımı" olan Click bazı varsayılanlarla beraber gelsede yüksek seviyede ayarlanabilir bir yapıya sahiptir. - https://github.com/pallets/click/archive/8.0.3.tar.gz - - python3-setuptools - python3 - - programming/language/python3/python3-click/pspec.xml - - - python3-click - Python3 composable command line interface toolkit - - python3 - - - /usr/share/doc/python3-click - /usr/lib/python3* - - - - - 2021-10-25 - 8.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 7.1.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 7.1.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-15 - 7.0 - Moved from contrib and rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-06 - 7.0 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-sphinxcontrib-websupport - https://www.sphinx-doc.org/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx API for Web Apps - python3-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. - python3-sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application. - python3-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. python3-sphinxcontrib-websupport, ağ uygulamalarınız için Sphinx ile bütünleşebilen python apisi sunar. - https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-sphinxcontrib-websupport/pspec.xml - - - python3-sphinxcontrib-websupport - sphinxcontrib-websupport module for python - - python3 - python3-Jinja2 - python3-docutils - python3-setuptools - - - /usr/lib/python3* - /usr/share/doc/python3-sphinxcontrib-websupport - - - - - 2021-10-22 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 1.2.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-16 - 1.2.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 1.2.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-08 - 1.2.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-13 - 1.1.2 - Rebuilt w/ py3.8 - Blue Devil - bluedevil@sctzine.com - - - 2019-11-13 - 1.1.2 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python-docopt - https://github.com/docopt/docopt - - Kamil Atlı - suvari@pisilinux.org - - MIT - app:gui - programming.language.python3 - Pythonic argument parser, that will make you smile - docopt güzel komut satırı arayüzleri oluşturur - docopt crée de belles interfaces de ligne de commande - docopt creates beautiful command-line interfaces - docopt güzel komut satırı arayüzleri oluşturur - https://github.com/docopt/docopt/archive/refs/tags/0.6.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python-docopt/pspec.xml - - - python-docopt - - python3 - - - /usr/bin - /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 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python-discid - https://python-discid.readthedocs.org/ - - Kamil Atlı - suvari@pisilinux.org - - LGPL3 - library - programming.language.python3 - Python binding of MusicBrainz libdiscid - MusicBrainz libdiscid'in Python bağlanması - The main purpose is the calculation of an identifier for audio discs (Disc ID) to use for the MusicBrainz database. Additionally the disc MCN and track ISRCs can be extracted. - Temel amaç, MusicBrainz veritabanı için kullanılacak ses diskleri (Disk Kimliği) için bir tanımlayıcının hesaplanmasıdır. Ek olarak, disk MCN ve iz ISRC'leri çıkarılabilir. - https://github.com/JonnyJD/python-discid/archive/v1.2.0.tar.gz - - libdiscid-devel - python3-devel - - programming/language/python3/python-discid/pspec.xml - - - python-discid - Python Classes Without Boilerplate - - python3 - - - /usr/lib/python3* - /usr/share/doc/python-discid - - - - - 2021-10-24 - 1.2.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-11 - 1.2.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-astroid - https://github.com/PyCQA/astroid - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Useful miscellaneous modules used by Logilab projects. - Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller. - python3-astrid provides a common base representation of python source code. It is currently the library powering pylint’s capabilities. - python3-astroid, Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller içerir. Pylınt yeteneklerini artırır. - https://github.com/PyCQA/astroid/archive/refs/tags/v2.8.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-astroid/pspec.xml - - - python3-astroid - Useful miscellaneous modules used by Logilab projects. - - python3 - python3-six - python3-wrapt - python3-setuptools - python3-lazy-object-proxy - - - /usr/share/doc/ - /usr/lib/python3* - - - python3-logilab-astng - - - python3-logilab-astng - - - - - 2021-10-13 - 2.8.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 2.8.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 2.4.2 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pytz - https://pythonhosted.org/pytz/ - - PisiLinux Community - admins@pisilinux.org - - MIT - ZPL - library - programming.language.python3 - World Timezone Definitions for Python - Python için Dünya Saat Dilimi(World Time Zone) tanımları - python-pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python. It also solves the issue of ambiguous times at the end of daylight savings, which you can read more about in the Python Library Reference (datetime.tzinfo).Almost all (over 540) of the Olson timezones are supported. - python3-pytz, Olson tz veritabanını Python'a taşımaktadır. Bu kütüphane Python kullanarak doğru ve farklı platformlar üzerinde hesaplamalar yapmayı sağlar. Aynı zamanda gün ışığından kazanmak için saat ayarlama ile ilgili belirsizlikleri de çözmektedir. Bu konuda Python Library Reference (datetime.tzinfo) kısmında ayrıntılı bilgi bulabilirsiniz. 540'a yakın Olson zaman dilimi desteklenmektedir. - https://pypi.org/packages/source/p/pytz/pytz-2021.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pytz/pspec.xml - - - python3-pytz - World Timezone Definitions for Python - - python3 - - - /usr/lib - /usr/share/doc/python3-pytz - - - - - 2021-10-22 - 2021.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 2020.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-27 - 2019.3 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-29 - 2018.4 - First release - Pisi Linux Community - admin@pisilinux.org - - - - - - python3-cairo - http://cairographics.org/pycairo - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python3 - wrapper (version enrobée) Python3 de la librairie de graphisme vectoriel cairo. - Python3 wrapper for cairo graphics library - Cairo vektörel grafik kitaplığı için Python3 bağlayıcıları - Pycairo is set of Python3 bindings for the cairo graphics library. - python3-cairo, Cairo vektörel grafik kitaplığı için Python bağlayıcıları sunar. - https://github.com/pygobject/pycairo/archive/v1.20.1.tar.gz - - python3-devel - cairo-devel - - programming/language/python3/python3-cairo/pspec.xml - - - python3-cairo - Python3 wrapper for cairo graphics library - - python3 - cairo - - - /usr/lib - /usr/share/doc - - - - python3-cairo-devel - Development files for python3-cairo - python3-cairo için geliştirme dosyaları - python3-cairo-devel, python3-cairo için geliştirme dosyalarını içerir. - - python3-cairo - cairo-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/pkgconfig - - - - - 2021-10-22 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 1.19.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 1.19.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-07 - 1.18.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 1.17.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-25 - 1.16.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 1.15.4 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.10.0 - Release Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 1.10.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-pycparser - https://github.com/eliben/pycparser - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Complete C99 parser in pure Python - Python ile yazılmış C99 cözümleyicisi. - pycparser is a parser for the C language, written in pure Python. It is a module designed to be easily integrated into applications that need to parse C source code. - pycparser, C kaynak kodunu çözümlemesi gereken uygulamalara kolaylıkla bütünleşebilen bir python modülüdür. - https://github.com/eliben/pycparser/archive/release_v2.20.tar.gz - - python3-setuptools - python3 - - programming/language/python3/python3-pycparser/pspec.xml - - - python3-pycparser - Complete C99 parser in pure Python - - python3 - - - /usr/share/doc/python3-pycparser - /usr/lib/python3* - - - - - 2021-10-22 - 2.20 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 2.20 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-07 - 2.19 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-numpy - https://numpy.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - The fundamental package needed for scientific computing with Python - Python ile bilimsel hesaplama için ihtiyaç duyulan temel paket - Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities. - Numpy, N-boyutlu güçlü bir dizi, gelişmiş fonksiyonlar, C/C++ ve Fortran kodunu entegre etmek için araçlar, doğrusal cebir ve rastgele sayı özelliği içerir. - Numpy contiene un potente objeto de array N-dimensional, funciones sofisticadas (broadcasting), herramientas para la integración de código C/C++ y Fortran, y facilidades útiles de algebra lineal, transformación Fourier, y número aleatorios. - https://github.com/numpy/numpy/archive/v1.21.2.tar.gz - - cython3 - libgfortran - cblas-devel - lapack-devel - python3-nose - python3-devel - python3-setuptools - - programming/language/python3/python3-numpy/pspec.xml - - - python3-numpy - The fundamental package needed for scientific computing with Python - - blas - cblas - lapack - python3 - libquadmath - python3-setuptools - - - /usr/lib - /usr/bin - /usr/share/doc/python3-numpy/README* - /usr/share/doc/python3-numpy/LICENSE* - - - - python3-numpy-docs - Documentation files for python3-numpy - python3-numpy için belgelendirme dosyaları - python3-numpy-docs, python3-numpy için belgelendirme dosyalarını içerir. - - python3-numpy - - - /usr/share/doc/python3-numpy/doc - - - - - 2021-10-22 - 1.21.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-22 - 1.19.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 1.19.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 1.18.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 1.18.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-24 - 1.18.2 - Patch version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 1.18.1 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2018-08-14 - 1.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-24 - 1.14.1 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - python3-flask-compress - http://pypi.python.org/pypi/Flask-Compress/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Compress responses in your Flask app. - Flask uygulamanızdaki yanıtları sıkıştırır. - Flask-Compress allows you to easily compress your Flask application's responses with gzip. - python3-flask-compress, flask uygulamanızdaki yanıtları gzip kullanarak kolayca sıkıştırmanıza olanak verir. - https://github.com/colour-science/flask-compress/archive/v1.10.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-compress/pspec.xml - - - python3-flask-compress - Compress responses in your Flask app. - - python3-brotli - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-compress - - - - - 2021-10-28 - 1.10.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-29 - 1.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-17 - 1.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-14 - 1.4.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-future - http://python-future.org/ - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Clean single-source support for Python 3 and 2 - Python3 future modülü - python-future is the missing compatibility layer between Python 2 and Python 3. It allows you to use a single, clean Python 3.x-compatible codebase to support both Python 2 and Python 3 with minimal overhead. - python3-future python2 ile python3 arasındaki kayıp uyumluluk katmanıdır. Python2 ile Python3 arasında python3 uyumlu bir kod katmanı kullanabilmenizi sağlar. - https://pypi.io/packages/source/f/future/future-0.18.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-future/pspec.xml - - - python3-future - Clean single-source support for Python 3 and 2 - - python3-setuptools - python3 - - - /usr/bin/futurize - /usr/bin/pasteurize - /usr/lib/python3* - /usr/share/doc/python3-future - - - - - 2021-10-25 - 0.18.2 - Rebuilt - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-13 - 0.18.2 - Rebuilt and split packages - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-20 - 0.18.2 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-22 - 0.15.2 - First Pisi Release Built with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - python3-flask-wtf - https://github.com/lepture/flask-wtf/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration. - CSRF, dosya yükleme ve ReCaptcha bütünleşmesi dahil Flask ve WTForms'u bütünleştiren python modülü. - Flask-Wtf provides simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration. - python3-flask-wtf, CSRF, dosya yükleme ve ReCaptcha bütünlesmesi dahil Flask ve WTForms'u bütünleştiren python modülü sağlar. - https://github.com/wtforms/flask-wtf/archive/refs/tags/v0.15.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-wtf/pspec.xml - - - python3-flask-wtf - Simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration. - - python3-itsdangerous - python3-wtforms - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-wtf - - - - - 2021-10-22 - 0.15.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-29 - 0.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 0.14.3 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-isort - https://github.com/PyCQA/isort - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A Python utility / library to sort imports. - Python importlarını sıralamak için python kitaplık ve araçları. - python3-isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections and by type. - python3-isort, python importlarını sıralamak için python kitaplık ve araçları sağlar. - https://pypi.org/packages/source/i/isort/isort-5.9.3.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-isort/pspec.xml - - - python3-isort - A Python utility / library to sort imports. - - python3 - python3-setuptools - - - /usr/share/doc/ - /usr/lib/python3* - /usr/bin/isort - /usr/bin/isort-identify-imports - - - - - 2021-10-13 - 5.9.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 5.9.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 5.5.3 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-idna - https://github.com/kjd/idna - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Internationalized Domain Names in Applications (IDNA) - IDNA protokolünü desktekleyen python kitaplığıdır. - Support for the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891. This library also provides support for Unicode Technical Standard 46, Unicode IDNA Compatibility Processing. - RFC 5891 belgelendirmesinde belirtilen IDNA(Internationalised Domain Names in Applications - Uygulamalardaki Uluslararasılaşmış Alan Adları) protokolünü destekleyen python kitaplığıdır. Bu kitaplık ayrıca Unikod(Unicode) teknik standardı 46'yı da kapsar. - https://github.com/kjd/idna/archive/v3.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-idna/pspec.xml - - - python3-idna - Internationalized Domain Names in Applications (IDNA) - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-idna - - - - - 2021-10-22 - 3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-22 - 2.10 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 2.9 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-24 - 2.8 - Version bump and built w/ py3.8 - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-15 - 2.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-22 - 2.6 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - python3-lit - https://pypi.org/project/lit/ - - Pisi Linux Admins - admin@pisilinux.org - - Apache - app - programming.language.python3 - lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures. - lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures. - lit, LLVM ve Clang tarzı test takımlarını yürütmek, sonuçlarını özetlemek ve arızaların göstergesini sağlamak için taşınabilir bir araçtır. - lit, LLVM ve Clang tarzı test takımlarını yürütmek, sonuçlarını özetlemek ve arızaların göstergesini sağlamak için taşınabilir bir araçtır. - https://files.pythonhosted.org/packages/f7/fc/aba44ef618619519d4fb56e604163fd85f4b598a4fd8a105e32e4e456798/lit-13.0.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-lit/pspec.xml - - - python3-lit - - python3-devel - python3-setuptools - - - /usr/bin - /usr/lib/python* - /usr/share/doc - - - - - 2021-10-28 - 13.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-05 - 12.0.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-anytree - https://github.com/c0fec0de/anytree - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Powerful and Lightweight Python Tree Data Structure - AnyTree için Python bağlayıcıları. - Simple, lightweight and extensible Tree data structure. - python3-anytree, anytree için Python bağlayıcılarını içerir. - https://github.com/c0fec0de/anytree/archive/2.8.0.tar.gz - - python3-setuptools - python3-devel - python3-six - - programming/language/python3/python3-anytree/pspec.xml - - - python3-anytree - Powerful and Lightweight Python Tree Data Structure - - python3-six - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-anytree - - - - - 2021-10-22 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 2.8.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-23 - 2.8.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 2.7.3 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - python3-sshtunnel - https://github.com/pahaz/sshtunnel - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - SSH tunnels to remote server. - Python icin ssh uygulaması. - python3-sshtunnel provides pure python SSH tunnels. - python3-sshtunnel, python ile ssh tüneli açarak uzak sunucuya bağlanmanızı sağlayan modülleri sunar. - https://github.com/pahaz/sshtunnel/archive/0.4.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sshtunnel/pspec.xml - - - python3-sshtunnel - SSH tunnels to remote server. - - python3-setuptools - python3-pycparser - python3-paramiko - python3 - - - /usr/share/doc/python3-sshtunnel - /usr/bin/sshtunnel - /usr/lib/python3* - - - - - 2021-10-28 - 0.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-19 - 0.1.5 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-random2 - https://pypi.org/project/random2/ - - PisiLinux Community - admins@pisilinux.org - - PSF - app - programming.language.python3 - Python 3 compatible port of Python 2 random module - Python2 rastgele modülünün Python 3'e uygun olan portu. - Python 3 compatible port of Python 2 random module - python3-random2, Python2 rastgele modülünün Python 3'e uygun olan bir port sağlar. - https://files.pythonhosted.org/packages/ee/b5/5aca5217501fbd06b1e5aed6d5986baa0da5380880e6bb6f421ed18e3a32/random2-1.0.1.zip - - python3-six - python3-devel - python3-setuptools - - programming/language/python3/python3-random2/pspec.xml - - - python3-random2 - Python 3 compatible port of Python 2 random module - - python3 - - - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-10-28 - 1.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.0.1 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-11-11 - 1.0.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-flask-principal - https://github.com/mattupstate/flask-principal - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Identity management for Flask applications. - Flask uygulamaları için kimlik yönetim sistemi. - python3-flask-principal provides identity management for Flask applications. - python3-flask-principal, flask uygulamalarınız için kimlik yönetim sistemi sağlar. - https://github.com/mattupstate/flask-principal/archive/0.4.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-principal/pspec.xml - - - python3-flask-principal - Identity management for Flask applications. - - python3-blinker - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-principal - - - - - 2021-10-22 - 0.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 0.4.0 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-httpcore - https://github.com/encode/httpcore - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - A minimal HTTP client. - Minimal bir HTTP istemcisi - The HTTP Core package provides a minimal low-level HTTP client, which does one thing only. Sending HTTP requests. - python3-httpcore, python3 için minimal düşük seviyeli bir HTTP istemcisidir. Sadece HTTP istekleri gönderir. - https://github.com/encode/httpcore/archive/0.13.7.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-httpcore/pspec.xml - - - python3-httpcore - The next generation HTTP client. - - python3 - python3-h2 - python3-h11 - python3-sniffio - - - /usr/lib/python3* - /usr/share/doc/python3-httpcore - - - - - 2021-10-28 - 0.13.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 0.10.2 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 0.9.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-sphinx_rtd_theme - https://github.com/readthedocs/sphinx_rtd_theme - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Sphinx theme for readthedocs.org. - readthedocs.org için sphinx teması. - This Sphinx theme was designed to provide a great reader experience for documentation users on both desktop and mobile devices. - Hem mobil hem masaüstü belgelendirme kullanıcılarına çok iyi bir okuma deneyimi sunmak amacıyla tasarlanmış bir sphinx teması. - https://github.com/readthedocs/sphinx_rtd_theme/archive/0.5.2.tar.gz - - nodejs - python3-devel - python3-setuptools - - - python-sphinx_rtd_theme-unbundle-fonts.patch - python-sphinx_rtd_theme-html5shiv.patch - 2ab605a455.patch - - programming/language/python3/python3-sphinx_rtd_theme/pspec.xml - - - python3-sphinx_rtd_theme - Sphinx theme for readthedocs.org. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-sphinx_rtd_theme - - - - - 2021-10-22 - 0.5.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 0.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 0.4.3 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python-netifaces - https://alastairs-place.net/netifaces/ - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.language.python3 - Portable module to access network interface information in Python - Portable module to access network interface information in Python - https://files.pythonhosted.org/packages/a6/91/86a6eac449ddfae239e93ffc1918cf33fd9bab35c04d1e963b311e347a73/netifaces-0.11.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python-netifaces/pspec.xml - - - python-netifaces - - python3 - - - /usr/lib/python3.9/site-packages - /usr/share/doc/python-netifaces - - - - - 2022-01-09 - 0.11.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-sanic - https://pypi.org/project/sanic/ - - Ismet Sezer Simsek - ismetsezer1996@gmail.com - - MIT - library - app:console - programming.language.python3 - A web server and web framework that's written to go fast. Build fast. Run fast. - python3-sanic, hızlı çalışması, hızlı inşa etmesi ve hızlı yazılması üzerinde özellikleri geliştirilmiş bir ağ sunucu ve çatısıdır. - Sanic is a Python 3.6+ web server and web framework that's written to go fast. It allows the usage of the async/await syntax added in Python 3.5, which makes your code non-blocking and speedy. - python3-sanic, hızlı çalışması için tasarlanmış bir python3 ağ sunucu ve çatısıdır. - https://github.com/huge-success/sanic/archive/v21.9.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-sanic/pspec.xml - - - python3-sanic - A web server and web framework that's written to go fast. Build fast. Run fast. - - python3 - python3-httpx - python3-aiofiles - python3-httptools - python3-multidict - python3-websockets - - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2021-10-28 - 21.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 20.6.3 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 20.3.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 19.12.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 0.7.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 0.7.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-08-15 - 0.6.0 - First Release - Ismet Sezer Simsek - ismetsezer1996@gmail.com - - - - - - python3-mako - https://www.makotemplates.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - library - programming.language.python3 - A python3 templating language - Python şablonlama dili - python3-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. - python3-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. - https://pypi.org/packages/source/m/mako/Mako-1.1.5.tar.gz - - python3-devel - python3-beaker - python3-setuptools - python3-MarkupSafe - - programming/language/python3/python3-mako/pspec.xml - - - python3-mako - A python3 templating language - - python3 - python3-beaker - python3-MarkupSafe - - - /usr/lib - /usr/share/doc - /usr/bin - - - - python3-mako-docs - Documentation files for python3-mako - python3-mako için belgelendirme dosyaları - python3-mako-docs, python3-mako için belgelendirme dosyalarını içerir. - - python3-mako - - - /usr/share/doc/*/html - /usr/share/doc/*/build - /usr/share/doc/*/examples - - - - - 2021-10-29 - 1.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 1.1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 1.1.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 1.1.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 1.1.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-08 - 1.1.0 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2019-04-08 - 1.0.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-28 - 1.0.7 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - python3-nose - https://readthedocs.org/docs/nose/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - programming.language.python3 - A unittest extension offering automatic test suite discovery and easy test authoring - Python için unittest genişlemesi - python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. - python3-nose alternatif test tanıtma ve keşif kitaplığı. - https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-nose/pspec.xml - - - python3-nose - A unittest extension offering automatic test suite discovery and easy test authoring - - python3 - - - /usr/share/man - /usr/bin - /usr/lib/python3* - /usr/share/doc/python3-nose - - - - - 2021-10-22 - 1.3.7 - Rebuilt. - Pisi Linux Community - admin@pisilinux.org - - - 2019-12-12 - 1.3.7 - Rebuilt. - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-30 - 1.3.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-01 - 1.3.7 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.3.7 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-08-04 - 1.3.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-h2 - https://github.com/python-hyper/hyper-h2 - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - HTTP/2 State-Machine based protocol implementation - HTTP/2 Durum-Makinesi temelli protokol uygulanaması - This repository contains a pure-Python implementation of a HTTP/2 protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can speak HTTP/2 regardless of your programming paradigm. - python3-h2, bu repo sadece python ile yazılmış HTTP/2 protokol yığını içerir. Programlama paradigmanız ne olursa olsun HTTP/2 konuştuğunuz sürece istediğiniz progrma gömebileceğiniz şekilde yazılmıştır. - https://github.com/python-hyper/hyper-h2/archive/v4.1.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-h2/pspec.xml - - - python3-h2 - HTTP/2 State-Machine based protocol implementation - - python3 - python3-hpack - python3-hyperframe - - - /usr/lib - /usr/share/man - /usr/share/doc/python3-h2 - - - - - 2021-10-28 - 4.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-23 - 4.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 3.2.0 - Ver. bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 3.1.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pysol_cards - https://pypi.org/project/pysol-cards/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Deal PySol FC Cards - PySol FC Kartlarını Dağıtır - The pysol-cards python modules allow the python developer to generate the initial deals of some PySol FC games. It also supports PySol legacy deals and Microsoft FreeCell / Freecell Pro deals. - python3-pysol_cards, pysol-cards python modülleri python geliştiricisine PySol FC oyunları için kart dağıtma yordamları sunar. - https://pypi.io/packages/source/p/pysol_cards/pysol_cards-0.12.0.tar.gz - - pip3 - python3-devel - python3-setuptools - - programming/language/python3/python3-pysol_cards/pspec.xml - - - python3-pysol_cards - Deal PySol FC Cards - - python3 - python3-pbr - - - /usr/share - /usr/lib - /usr/share/doc - - - - - 2021-10-28 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 0.10.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-29 - 0.8.9 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 0.8.8 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 0.8.7 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-wtforms - https://github.com/wtforms/wtforms - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A flexible forms validation and rendering library for Python. - Esnek bir form değerlendirme ve render kitaplığı. - WTForms is a flexible forms validation and rendering library for Python web development. It is framework agnostic and can work with whatever web framework and template engine you choose. - python3-wtforms, python icin esnek bir form değerlendirme ve render kitaplığı sağlar. - https://github.com/wtforms/wtforms/archive/2.3.3.tar.gz - - python3-Babel - python3-devel - python3-setuptools - - programming/language/python3/python3-wtforms/pspec.xml - - - python3-wtforms - A flexible forms validation and rendering library for Python. - - python3 - python3-MarkupSafe - - - /usr/lib/python3* - /usr/share/doc/python3-wtforms - - - - - 2021-10-25 - 2.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 2.3.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 2.3.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 2.2.1 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-lxml - https://lxml.de/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - library - programming.language.python3 - The lxml XML toolkit for Python. - Zengin içerikli ve kolay kullanımlı bir kütüphane. - lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. - Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. - https://github.com/lxml/lxml/archive/lxml-4.6.3.tar.gz - - cython3 - python3-devel - libxslt-devel - libxml2-devel - python3-sphinx - python3-Pygments - python3-setuptools - - programming/language/python3/python3-lxml/pspec.xml - - - python3-lxml - The lxml XML toolkit for Python. - - libxml2 - libxslt - python3 - - - /usr/lib/python3* - - - - python3-lxml-docs - API documentation of python3-lxml - python3-lxml paketine ait API belgeleri - python3-lxml-docs, python3-lxml için belgelendirme dosyalarını içerir. - - python3-lxml - - - /usr/share/doc/python3-lxml - - - - - 2021-10-22 - 4.6.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 4.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-13 - 4.6.2 - Version bump - Pisi Linux Admins - admin@pisilinux.org - - - 2020-07-21 - 4.5.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 4.5.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 4.5.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 4.4.2 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - python-py3c - https://github.com/encukou/py3c - - Kamil Atlı - suvari@pisilinux.org - - MIT - library - programming.language.python3 - py3c helps you port C extensions to Python 3 - It provides a detailed guide, and a set of macros to make porting easy and reduce boilerplate. - https://github.com/encukou/py3c/archive/v1.3.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python-py3c/pspec.xml - - - python-py3c - - python3 - - - /usr/lib/python3* - /usr/share/doc - - - - python-py3c-devel - Development files for python-py3c - - python-py3c - - - /usr/include - /usr/share/pkgconfig/py3c.pc - - - - - 2021-10-22 - 1.3.1 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2021-03-11 - 1.3.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-pycryptodomex - https://pypi.org/project/pycryptodomex/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A self-contained Python package of low-level cryptographic primitives and doesn't conflict with pycrypto. - Düşük seviye kriptografik ilkeler içeren python3 paketidir. - PyCryptodomex is a self-contained Python package of low-level cryptographic primitives.PyCryptodome is a fork of PyCrypto. It brings several enhancements with respect to the last official version of PyCrypto (2.6.1) - PyCrypto'dan çatallanan PyCryptodomex düşük seviye kriptografik ilkeler içeren bir python3 kitaplığıdır. - https://pypi.org/packages/source/p/pycryptodomex/pycryptodomex-3.11.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pycryptodomex/pspec.xml - - - python3-pycryptodomex - A self-contained Python package of low-level cryptographic primitives - - python3 - gmp - - - /usr/lib/python3* - /usr/share/doc/python3-pycryptodomex - - - - - 2021-10-28 - 3.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 3.9.8 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-24 - 3.9.7 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-beaker - https://github.com/bbangert/beaker - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - A Session and Caching library with WSGI Middleware - Oturum ve önbellekleme kitaplığı - python3-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. - python3-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. - https://github.com/bbangert/beaker/archive/1.11.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-beaker/pspec.xml - - - python3-beaker - - /usr/lib/ - /usr/share/doc - - - - - 2021-10-22 - 1.11.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2020-01-08 - 1.11.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-08 - 1.10.1 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-28 - 1.10.0 - First release - Pisi Linux Community - admin@pisilinux.org - - - - - - python3-qt5 - https://www.riverbankcomputing.com/software/pyqt/intro - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - GPLv3 - library - programming.language.python3 - A set of Python bindings for the Qt 5.x Toolkit - Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. - https://files.pythonhosted.org/packages/3b/27/fd81188a35f37be9b3b4c2db1654d9439d1418823916fe702ac3658c9c41/PyQt5-5.15.6.tar.gz - - dbus-devel - dbus-python3 - dbus-python-common - python3-devel - python3-sip - qt5-svg-devel - qt5-base-devel - qt5-script-devel - qt5-webkit-devel - qt5-sensors-devel - qt5-location-devel - qt5-designer-devel - python3-pyqt5-sip - qt5-x11extras-devel - qt5-webengine-devel - qt5-multimedia-devel - qt5-serialport-devel - qt5-webchannel-devel - qt5-websockets-devel - qt5-declarative-devel - qt5-xmlpatterns-devel - qt5-networkauth-devel - qt5-connectivity-devel - qt5-quickcontrols2-devel - - - restore-sip4-support.patch - - programming/language/python3/python3-qt5/pspec.xml - - - python3-qt5 - A set of Python 3.x bindings for the Qt 5.x Toolkit - - libgcc - dbus - python3 - python3-sip - qt5-designer - qt5-webengine - qt5-svg - qt5-base - qt5-sensors - qt5-location - qt5-webkit - qt5-x11extras - qt5-multimedia - qt5-serialport - qt5-webchannel - qt5-websockets - qt5-declarative - qt5-xmlpatterns - qt5-connectivity - qt5-networkauth - python3-pyqt5-sip - - - /usr/bin/pyuic5 - /usr/lib/python3.9/site-packages - /usr/lib/qt5/plugins/PyQt5/libpyqt5qmlplugin.so - /usr/lib/qt5/plugins/designer/libpyqt5.so - /usr/share/doc - /usr/share/qt5/qsci/api/python/PyQt5.api - /usr/bin/pyrcc5 - /usr/bin/pylupdate5 - - - - python3-qt5-devel - Development files for python3-qt5 - - libgcc - qt5-base - python3-qt5 - - - /usr/share/sip/PyQt5 - - - - - 2022-04-18 - 5.15.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-06 - 5.15.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-21 - 5.15.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 5.15.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-12 - 5.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-19 - 5.15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 5.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-29 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-04 - 5.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-13 - 5.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-06 - 5.13.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 5.11.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-02 - 5.11.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-14 - 5.11.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-11 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 5.11.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 5.10.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-01 - 5.9.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-22 - 5.9.2 - version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-03 - 5.7.1 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-07 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-25 - 5.6 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-08 - 5.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-parso - https://github.com/davidhalter/parso - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A Python Parser. - Bir python çözümleyicisi. - Parso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. - python3-parso, python ile yazdığınız kodlardaki sözdizim hatalarını bulabilen hata düzeltmelerini destekleyen bir python kitaplığıdır. - https://github.com/davidhalter/parso/archive/refs/tags/v0.8.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-parso/pspec.xml - - - python3-parso - A Python Parser. - - python3 - - - /usr/share/doc/python3-parso - /usr/lib/python3* - - - - - 2021-08-21 - 0.8.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-22 - 0.7.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-06 - 0.6.2 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-kiwisolver - https://github.com/nucleic/kiwi - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Efficient C++ implementation of the Cassowary constraint solving algorithm. - Python3 için Cassowary kısıtı hesaplama uygulaması kitaplığı. - Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm. Kiwi is an implementation of the algorithm based on the seminal Cassowary paper. - python3-kiwisolver, python3 için Cassowary kısıtı hesaplama uygulaması kitaplığı sunar. - https://github.com/nucleic/kiwi/archive/1.3.2.tar.gz - - python3-setuptools - python3-devel - python3-cppy - - programming/language/python3/python3-kiwisolver/pspec.xml - - - python3-kiwisolver - Efficient C++ implementation of the Cassowary constraint solving algorithm. - - python3 - - - /usr/share/doc/python3-kiwisolver - /usr/lib/python3* - - - - - 2021-10-28 - 1.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-27 - 1.2.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-03 - 1.1.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-distutils-extra - https://launchpad.net/python-distutils-extra - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2+ - app:console - programming.language.python3 - Enhancements to the Python build system - Enhancements to the Python build system - https://launchpad.net/python-distutils-extra/trunk/2.39/+download/python-distutils-extra-2.39.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-distutils-extra/pspec.xml - - - python3-distutils-extra - - python3 - - - /usr/share/doc - /usr/lib/python3* - - - - - 2021-10-22 - 2.39 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-11 - 2.39 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-23 - 2.39 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-speaklater - https://github.com/mitsuhiko/speaklater/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Implements a lazy string for python useful for use with gettext. - Gettext ile kullanımı yararlı, pythonda tembel söz katarları uygulaması. - A module that provides lazy strings for translations. Basically you get an object that appears to be a string but changes the value every time the value is evaluated based on a callable you provide. - python3-speaklater, gettext ile kullanımı yararlı, pythonda tembel söz katarları uygulaması sunar. - https://files.pythonhosted.org/packages/03/47/eaa6a52849915456aa144fea9e41332ae9b1a246a899095a231c995aab7e/speaklater3-1.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-speaklater/pspec.xml - - - python3-speaklater - Implements a lazy string for python useful for use with gettext. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-speaklater - - - - - 2021-10-28 - 1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-19 - 1.3 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-reportlab - https://pypi.org/project/reportlab/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - programming.language.python3 - A proven industry-strength PDF generating solution - A proven industry-strength PDF generating solution - A proven industry-strength PDF generating solution - A proven industry-strength PDF generating solution - https://files.pythonhosted.org/packages/16/31/81ff7e3f9fd345cd4685f964fbc3d89a06f39a4f552ab1c2a5769a0f9013/reportlab-3.6.9.tar.gz - - python3-devel - freetype-devel - python3-pillow-devel - - programming/language/python3/python3-reportlab/pspec.xml - - - python3-reportlab - - python3 - freetype - - - /usr/lib - /usr/share/doc - - - - - 2022-05-05 - 3.6.9 - version Bump - Pisi Linux Admins - admin@pisilinux.org - - - 2021-04-26 - 3.5.67 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-backports-ssl-match-hostname - https://pypi.python.org/pypi/backports.ssl_match_hostname - - Alihan Öztürk - alihan@pisilinux.org - - PSF-2.2 - library - programming.language.python3 - The ssl.match_hostname() function from Python 3.7 - Python3.7 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamı - The ssl.match_hostname() function from Python 3.7 - python3-backports-ssl-match-hostname, Python3.7 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamını sağlar. - https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-backports-ssl-match-hostname/pspec.xml - - - python3-backports-ssl-match-hostname - The ssl.match_hostname() function from Python 3.7 - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-backports-ssl-match-hostname - - - - - 2021-10-22 - 3.7.0.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-12-30 - 3.7.0.1 - Built w/ py3.8 and version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 3.5.0.1 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-01 - 3.5.0.1 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-15 - 3.4.0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-psycopg2 - https://www.psycopg.org/ - - Blue Devil - bluedevil@sctzine.com - - LGPL3 - library - programming.language.python3 - PostgreSQL database adapter for the Python programming language. - Python programlama dili için PostgreSQL veritabanı adaptörü. - Psycopg is the most popular PostgreSQL database adapter for the Python programming language. Its main features are the complete implementation of the Python DB API 2.0 specification and the thread safety (several threads can share the same connection). - python3-psycopg2, python programlama dili için PostgreSQL veritabanı adaptörü sunar. - https://github.com/psycopg/psycopg2/archive/2_9_1.tar.gz - - python3-setuptools - postgresql-lib - python3-devel - - programming/language/python3/python3-psycopg2/pspec.xml - - - python3-psycopg2 - PostgreSQL database adapter for the Python programming language. - - postgresql-lib - python3 - - - /usr/share/doc/python3-psycopg2 - /usr/lib/python3* - - - - - 2021-10-28 - 2.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 2.8.5 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-20 - 2.8.4 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-breathe - https://github.com/michaeljones/breathe - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - ReStructuredText and Sphinx bridge to Doxygen. - Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü. - python3-breathe is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output. - python3-breathe, Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü sunar. - https://github.com/michaeljones/breathe/archive/v4.31.0.tar.gz - - python3-devel - python3-sphinx - python3-setuptools - - programming/language/python3/python3-breathe/pspec.xml - - - python3-breathe - ReStructuredText and Sphinx bridge to Doxygen. - - python3 - python3-sphinx - python3-setuptools - - - /usr/share/doc/ - /usr/lib/python3* - /usr/bin/breathe-apidoc - - - - - 2021-10-26 - 4.31.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 4.22.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyasn1-modules - https://github.com/etingof/pyasn1-modules/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A collection of ASN.1-based protocols modules. - Python3 için ASN.1-temelli protokol modülleri kolleksiyonu - A collection of ASN.1 modules expressed in form of pyasn1 classes. Includes protocols PDUs definition (SNMP, LDAP etc.) and various data structures (X.509, PKCS etc.). - python3-pyasn1-modules Python3 için ASN.1-temelli protokol modülleri kolleksiyonunu içerir. - https://github.com/etingof/pyasn1-modules/archive/v0.2.8.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pyasn1-modules/pspec.xml - - - python3-pyasn1-modules - A collection of ASN.1-based protocols modules. - - python3 - python3-pyasn1 - - - /usr/lib/python3* - /usr/share/doc/python3-pyasn1-modules - - - - - 2021-10-28 - 0.2.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-23 - 0.2.8 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyalsaaudio - http://larsimmisch.github.io/pyalsaaudio/ - - PisiLinux Community - admins@pisilinux.org - - PSF - library - programming.language.python3 - This package contains wrappers for accessing the ALSA API from Python. - This package contains wrappers for accessing the ALSA API from Python. - It is fairly complete for PCM devices and Mixer access. - It is fairly complete for PCM devices and Mixer access. - https://files.pythonhosted.org/packages/a9/bd/24f576c07953671edfeba2545c3c92c46e97384f622957ecf95967c2b456/pyalsaaudio-0.9.2.tar.gz - - python3-devel - python-setuptools - python-devel - python3-setuptools - alsa-lib-devel - - programming/language/python3/python3-pyalsaaudio/pspec.xml - - - python3-pyalsaaudio - This package contains wrappers for accessing the ALSA API from Python. - - python3 - alsa-lib - - - /usr/lib/python3* - /usr/share/doc/python3-pyalsaaudio - - - - python-pyalsaaudio - This package contains wrappers for accessing the ALSA API from Python. - - python - alsa-lib - - - /usr/lib/python2.7 - - - - - 2022-06-03 - 0.9.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-23 - 0.9.0 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-snowballstemmer - https://snowballstem.org/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Snowball stemming library collection for Python3 - Snowball, python3 için sözcük kökeni bulma kitaplığıdır. - Snowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. - Snowball, sıklıkla kullanılan bilgi çekme yapılırken kullanılan sözcük kökü bulma işlemi için yaratılmış küçük bir sözcük işleme kitaplığıdır. - https://pypi.python.org/packages/source/s/snowballstemmer/snowballstemmer-2.1.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-snowballstemmer/pspec.xml - - - python3-snowballstemmer - snowballstemmer module for python3 - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-snowballstemmer - - - - - 2021-10-22 - 2.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-06 - 2.0.0 - Rebuilt w/ py3.8 - Blue Devil - bluedevil@sctzine.com - - - 2019-12-06 - 2.0.0 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-recommonmark - https://github.com/readthedocs/recommonmark - - Pisi Linux Admins - admin@pisilinux.org - - MIT - app - programming.language.python3 - Markdown parser for docutils - Markdown parser for docutils - Belgeler için Markdown ayrıştırıcısı - Belgeler için Markdown ayrıştırıcısı - https://github.com/readthedocs/recommonmark/archive/refs/tags/0.7.1.tar.gz - - python3-devel - python3-sphinx - python3-pytest - python3-docutils - python3-commonmark - python3-setuptools - - programming/language/python3/python3-recommonmark/pspec.xml - - - python3-recommonmark - - python3 - python3-sphinx - python3-commonmark - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-25 - 0.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-16 - 0.6.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-contextlib2 - https://github.com/jazzband/contextlib2 - - Blue Devil - bluedevil@sctzine.com - - PSF - library - programming.language.python3 - contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. - contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. - contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. It also serves as a real world proving ground for possible future enhancements to the standard library version. - python-contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. - https://github.com/jazzband/contextlib2/archive/v0.6.0.post1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-contextlib2/pspec.xml - - - python3-contextlib2 - contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. - - python3 - - - /usr/share/doc/python3-contextlib2 - /usr/lib/python3* - - - - - 2021-10-28 - 0.6.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 0.6.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-cffi - https://cffi.readthedocs.io/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Foreign Function Interface for Python calling C code - Python3 için C kodu çağıran dış fonksiyon arayüzü. - Foreign Function Interface for Python calling C code - python3-cffi, python3 için C kodu çağıran dış fonksiyon arayüzü sunar. - https://foss.heptapod.net/pypy/cffi/-/archive/v1.14.6/cffi-v1.14.6.tar.gz - - python3-setuptools - python3-devel - libffi-devel - - programming/language/python3/python3-cffi/pspec.xml - - - python3-cffi - Foreign Function Interface for Python calling C code - - python3-six - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-cffi - - - - - 2021-10-22 - 1.14.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-08 - 1.14.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-11 - 1.13.2 - Rebuilt and split packages - Blue Devil - bluedevil@sctzine.com - - - 2019-11-07 - 1.13.2 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-zappa - https://github.com/Miserlou/Zappa - - Ismet Sezer Simsek - ismetsezer1996@gmail.com - - LGPLv2.1 - library - app:console - programming.language.python3 - Zappa - Serverless Python - Zappa - Sunucusuz Python - Server-less Python Web Services for AWS Lambda and API Gateway - python3-zappa, AWS Lambda ve API Ağ geçidi için sunucusuz Python ağ hizmetleri sunan python arayüzüdür. - https://files.pythonhosted.org/packages/38/d1/92037f8194028d720e4ab50aff0a0c6355aab1d5240e593e4797f2b4ada8/zappa-0.54.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-zappa/pspec.xml - - - python3-zappa - Zappa - Serverless Python - - python3 - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2021-10-28 - 0.54.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-11 - 0.51.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 0.50.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 0.49.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 0.48.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 0.46.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-08-15 - 0.43.2 - First Release - Ismet Sezer Simsek - ismetsezer1996@gmail.com - - - - - - python3-pbr - https://pypi.org/project/pbr/ - - Blue Devil - bluedevil@sctzine.com - - Apache - app:console - library - programming.language.python3 - Python Build Reasonableness - Python İnşa Uygunluğu - PBR is a library that injects some useful and sensible default behaviors into your setuptools run. - python3-pbr, python setuptools ile olan kurulumunuza bazı işlevsel davranışlar ekleyen bir python3 kitaplığıdır. - https://pypi.org/packages/source/p/pbr/pbr-5.6.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-pbr/pspec.xml - - - python3-pbr - Python Build Reasonableness - - python3-setuptools - python3 - - - /usr/bin - /usr/share/doc - /usr/lib - /usr/share - - - - - 2021-10-28 - 5.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-08 - 5.4.5 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-14 - 5.4.4 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-typogrify - https://pypi.org/project/typogrify/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - programming.language.python3 - filters to make caring about typography on the web a bit easier - filters to make caring about typography on the web a bit easier - filters to make caring about typography on the web a bit easier - filters to make caring about typography on the web a bit easier - https://files.pythonhosted.org/packages/8a/bf/64959d6187d42472acb846bcf462347c9124952c05bd57e5769d5f28f9a6/typogrify-2.0.7.tar.gz - - python3-devel - python3-setuptools - python3-smartypants - - programming/language/python3/python3-typogrify/pspec.xml - - - python3-typogrify - - python3 - python3-smartypants - - - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 2.0.7 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-05-26 - 2.0.7 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-imagesize - https://github.com/shibukawa/imagesize_py - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Getting image size from png/jpeg/jpeg2000/gif file. - Png / jpeg / jpeg2000 / gif dosyasından görüntü boyutu elde etme. - This module analyzes jpeg/jpeg2000/png/gif image header and return image size. - Bu modül jpeg / jpeg2000 / png / gif resim başlığını ve dönüş resim boyutunu analiz eder. - https://files.pythonhosted.org/packages/e4/9f/0452b459c8ba97e07c3cd2bd243783936a992006cf4cd1353c314a927028/imagesize-1.2.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-imagesize/pspec.xml - - - python3-imagesize - Getting image size from png/jpeg/jpeg2000/gif file. - - python3 - - - /usr/bin - /usr/lib/python3* - /usr/share/doc/python3-imagesize - - - - - 2021-10-22 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-30 - 1.2.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-28 - 1.0.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python3-setuptools-scm - https://github.com/pypa/setuptools_scm - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python3 setuptools-scm module - Python3 setuptools-scm modülü - Tsetuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file. - setuptools-scm python paket versiyonlarını SCM metadataları kullanarak yönetmenizi sağlayan python3 modülüdür. - https://files.pythonhosted.org/packages/57/38/930b1241372a9f266a7df2b184fb9d4f497c2cef2e016b014f82f541fe7c/setuptools_scm-6.0.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-setuptools-scm/pspec.xml - - - python3-setuptools-scm - Python3 setuptools-scm module - - python3 - python3-setuptools - - - /usr/lib/python3* - /usr/share/doc/python3-setuptools-scm - - - - - 2021-10-22 - 6.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 6.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 4.1.2 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 4.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 3.5.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 3.4.3 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-11 - 3.3.3 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-28 - 3.3.3 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-passlib - https://passlib.readthedocs.io/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Passlib is a password hashing library for Python 2 and 3. - Passlib python 2 ve 3 için parola hashleri kitaplığıdır. - Passlib is a password hashing library for Python 2 and 3, which provides cross-platform implementations of over 30 password hashing algorithms, as well as a framework for managing existing password hashes. It's designed to be useful for a wide range of tasks, from verifying a hash found in /etc/shadow, to providing full-strength password hashing for multi-user application. - python3-passlib, python 2 ve 3 için 30dan fazla parola hashleri algoritmaları kitaplığı sağlar. - https://files.pythonhosted.org/packages/b6/06/9da9ee59a67fae7761aab3ccc84fa4f3f33f125b370f1ccdb915bf967c11/passlib-1.7.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-passlib/pspec.xml - - - python3-passlib - Passlib is a password hashing library for Python 2 and 3. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-passlib - - - - - 2021-10-28 - 1.7.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-19 - 1.7.2 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-validictory - https://github.com/jamesturk/validictory - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A general purpose Python3 data validator. - Python3 için genel maksatlı veri onaylama kitaplığı - python3-validictory is a general purpose Python3 data validator. - python3-validictory, Python için genel maksatlı veri onaylama kitaplığı sunar. - https://github.com/jamesturk/validictory/archive/1.1.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-validictory/pspec.xml - - - python3-validictory - A general purpose Python3 data validator. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-validictory - - - - - 2021-10-28 - 1.1.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-23 - 1.1.2 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-mutagen - https://github.com/quodlibet/mutagen - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python3 - An audio tag editing library - Müzik dosyalarının etiketlerini düzenlemek için bir python3 kitaplığı - Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, MP4, Monkey’s Audio, MP3, Musepack, Ogg Opus, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG, and AIFF audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level. - python3-mutagen, müzik dosyalarının etiketlerini düzenlemeye yarayan python ile yazılmış bir kütüphanedir. - https://github.com/quodlibet/mutagen/archive/release-1.45.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-mutagen/pspec.xml - - - python3-mutagen - An audio tag editing library - - python3 - - - /usr/bin/mid3cp - /usr/bin/mid3v2 - /usr/bin/moggsplit - /usr/bin/mid3iconv - /usr/bin/mutagen-pony - /usr/bin/mutagen-inspect - /usr/lib/python3* - /usr/share/man/man1/mid3cp.1 - /usr/share/man/man1/mid3v2.1 - /usr/share/man/man1/mid3iconv.1 - /usr/share/man/man1/moggsplit.1 - /usr/share/man/man1/mutagen-pony.1 - /usr/share/man/man1/mutagen-inspect.1 - /usr/share/doc/python3-mutagen - - - - - 2021-10-28 - 1.45.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 1.45.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 1.44.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-24 - 1.43.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-simplejson - https://github.com/simplejson/simplejson - - Blue Devil - bluedevil@sctzine.com - - AFL - MIT - library - programming.language.python3 - Simple, fast, extensible JSON encoder/decoder for Python. - Python için hızlı, genisletilebilir, basit bir JSON kodlayıcı/çozücü kitaplık. - simplejson is a simple, fast, complete, correct and extensible JSON (http://json.org) encoder and decoder for Python 3.3+ with legacy support for Python 2.5+. It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. - Python için hızlı, genisletilebilir, basit bir JSON kodlayıcı/çozücü kitaplık modülü sunar. - https://github.com/simplejson/simplejson/archive/v3.17.5.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-simplejson/pspec.xml - - - python3-simplejson - Simple, fast, extensible JSON encoder/decoder for Python. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-simplejson - - - - - 2021-10-28 - 3.17.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 3.17.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-24 - 3.17.0 - First Pisi Release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pillow - https://python-pillow.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - wrapper (version enrobée) Python3 de la librairie de graphisme vectoriel cairo. - PIL is the fork of Python Imaging Library. - Python Görsel Kitaplığı (PIL - Python Imaging Library) çatalıdır. - Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. As of 2019, Pillow development is supported by Tidelift. - python3-pillow, özgür python PIL(Python Imaging Library - Python Görsel Kitaplığı) kütüphanesinin özgür yazılımcılar tarafından geliştirilen çatalıdır. - https://github.com/python-pillow/Pillow/archive/8.3.1.tar.gz - - tiff-devel - webp-devel - zlib-devel - lcms2-devel - libxcb-devel - python3-devel - freetype-devel - python3-Jinja2 - openjpeg2-devel - python3-setuptools - libjpeg-turbo-devel - libimagequant-devel - python3-tk - python3-cffi - python3-sphinx - python3-olefile - python3-pycparser - python3-sphinx-removed-in - python3-sphinx_rtd_theme - python3-charset-normalizer - python3-sphinx-copybutton - - - python-pillow_spinxwarn.patch - python-pillow_sphinx.patch - - programming/language/python3/python3-pillow/pspec.xml - - - python3-pillow - PIL is the fork of Python Imaging Library. - - tiff - webp - zlib - lcms2 - libxcb - python3 - freetype - openjpeg2 - libjpeg-turbo - libimagequant - python3-Jinja2 - python3-sphinx-removed-in - python3-sphinx-copybutton - python3-charset-normalizer - - - /usr/share/doc - /usr/lib - - - - python3-pillow-devel - Development files for python3-pillow - python3-pillow için geliştirme dosyaları - python3-pillow-devel, python3-pillow için geliştirme dosyalarını içerir. - - zlib-devel - python3-devel - libjpeg-turbo-devel - python3-pillow - - - /usr/include - - - - python3-pillow-docs - Documentation files for python3-pillow - python3-pillow için belgelendirme dosyaları - python3-pillow-docs, python3-pillow için belgelendirme dosyaları içerir. - - python3-pillow - - - /usr/share/doc/python3-pillow/html - - - - - 2021-10-22 - 8.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 7.2.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 7.1.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 7.1.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 7.0.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 5.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-10 - 4.3.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-01-25 - 4.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-18 - 3.1.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - python3-PyYAML - https://pyyaml.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - The next generation YAML parser and emitter for Python3 - Python3 için yeni nesil YAML ayrıştırıcısı - python3-pyyaml is the next generation YAML parser and emitter for Python3. - python3-pyyaml python3 için yeni nesil YAML ayrıştırıcısıdır. - https://github.com/yaml/pyyaml/archive/5.4.1.1.tar.gz - - _yaml.c - - - libyaml-devel - python3-devel - python3-setuptools - - programming/language/python3/python3-PyYAML/pspec.xml - - - python3-PyYAML - The next generation YAML parser and emitter for Python - - python3 - libyaml - python3-setuptools - - - /usr/share/doc/python3-PyYAML - /usr/lib/python3* - - - - - 2021-10-22 - 5.4.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-27 - 5.3.1 - Patch version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-02-22 - 5.3 - Clean and rebuilt. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-11 - 5.3 - Version bump - Blue Devil - bluedevil@sctzine.com - - - 2019-01-02 - 5.2 - Version bump and rebuilt w/ py3.8. - Blue Devil - bluedevil@sctzine.com - - - 2019-10-03 - 5.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 3.13 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-01 - 3.12 - Rebuild for py3.6.0 - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-01-16 - 3.12 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-bs4 - https://www.crummy.com/software/BeautifulSoup/index.html - - PisiLinux Community - admins@pisilinux.org - - custom:unknown - library - programming.language.python3 - This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g - This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g - The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. - The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. - https://files.pythonhosted.org/packages/source/b/bs4/bs4-0.0.1.tar.gz - - python3-devel - python3-setuptools - python3-beautifulsoup4 - - programming/language/python3/python3-bs4/pspec.xml - - - python3-bs4 - This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-bs4 - - - - - 2022-01-23 - 0.0.1 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-pytest - https://pytest.org/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Simple powerful testing with Python - Basit ve güçlü python3 için test modülü. - The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries. - python3-pytest, python3 için güçlü ve basit test modülü içerir. - https://files.pythonhosted.org/packages/5b/98/92bbda5f83ed995ef8953349ef30c77c934abcc251c42ab3d7787a40c49c/pytest-6.2.4.tar.gz - - python3-six - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-pytest/pspec.xml - - - python3-pytest - Simple powerful testing with Python - - python3 - python3-py - python3-attrs - python3-pluggy - python3-wcwidth - python3-packaging - python3-setuptools - python3-more-itertools - - - /usr/lib/python3* - /usr/bin/pytest - /usr/bin/py.test - /usr/share/doc/python3-pytest - - - - - 2021-10-22 - 6.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 6.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-23 - 6.0.2 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 5.4.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-17 - 5.4.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-13 - 5.3.5 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-xdg - https://gitlab.freedesktop.org/xdg - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2+ - app:console - programming.language.python3 - X client library for Python3. - X client library for Python3. - https://gitlab.freedesktop.org/xdg/pyxdg/-/archive/rel-0.27/pyxdg-rel-0.27.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-xdg/pspec.xml - - - python3-xdg - X client library for Python3. - - python3 - - - /usr/share/doc/python3-xdg - /usr/lib/python3* - - - - - 2021-10-22 - 0.27 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 0.26 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-smartypants - https://github.com/leohemsted/smartypants.py - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - programming.language.python3 - Python with the SmartyPants - Python with the SmartyPants - Python with the SmartyPants - Python with the SmartyPants - https://github.com/leohemsted/smartypants.py/archive/refs/tags/v2.0.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-smartypants/pspec.xml - - - python3-smartypants - - python3 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 2.0.1 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-05-26 - 2.0.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-cppy - https://github.com/nucleic/cppy - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - A collection of C++ headers which make it easier to write Python C extension modules. - Python3 için C genişleme modülleri yazmayı kolaylaştıran C++ başlıkları. - A small C++ header library which makes it easier to write Python extension modules. The primary feature is a PyObject smart pointer which automatically handles reference counting and provides convenience methods for performing common object operations. - python3-cppy, python3 için C genişleme modülleri yazmayı kolaylaştıran C++ başlıkları sunar. - https://github.com/nucleic/cppy/archive/1.1.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-cppy/pspec.xml - - - python3-cppy - A collection of C++ headers which make it easier to write Python C extension modules. - - python3 - - - /usr/share/doc/python3-cppy - /usr/lib/python3* - - - - - 2021-10-28 - 1.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-29 - 1.1.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-fuzzywuzzy - https://github.com/seatgeek/fuzzywuzzy - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - library - programming.language.python3 - Fuzzy String Matching in Python. - Python3 ile sözcük karşılaştırma/bulma modülü - Fuzzy string matching like a boss. It uses Levenshtein Distance to calculate the differences between sequences in a simple-to-use package. - python3-fuzzywuzzy Levenshtein uzaklığını kullanarak bölümler arası ayrımları hesaplayan kullanımı basit bir python3 modülüdür. - https://github.com/seatgeek/fuzzywuzzy/archive/0.18.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-fuzzywuzzy/pspec.xml - - - python3-fuzzywuzzy - Fuzzy String Matching in Python - - python3-Levenshtein - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-fuzzywuzzy - - - - - 2021-10-28 - 0.18.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 0.18.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - 2019-12-26 - 0.17.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - cython3 - https://cython.org/ - - Blue DeviL - bluedevil@sctzine.com - - Apache-2.0 - app:console - library - programming.language.python3 - C extensions for the Python3 - Python3 için C eklentileri - Cython is a language that makes writing C extensions for the Python language as easy as Python itself. - Cython3, Python3 için C eklentileri yazmayı kolaylaştıran bir dildir. - https://github.com/cython/cython/archive/0.29.24.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/cython3/pspec.xml - - - cython3 - C extensions for the Python3 - - python3 - python3-setuptools - - - /usr/bin - /usr/lib/python3* - /usr/share/doc/cython3 - - - - - 2021-10-22 - 0.29.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 0.29.23 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 0.29.21 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 0.29.21 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 0.29.19 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-14 - 0.29.17 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 0.29.16 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 0.29.15 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-10 - 0.29.14 - Rebuilt w/ py3.8. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-10 - 0.29.14 - Rebuilt. - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-11 - 0.29.14 - rebuilt and split packages - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-11 - 0.29.14 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-22 - 0.24 - First release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - python3-extras - https://github.com/testing-cabal/extras - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Extra code that should be part of the standard library but isn't. - Standart python kitaplığında olması gereken ama olmayan kodlar. - extras is a set of extensions to the Python standard library, originally written to make the code within testtools cleaner, but now split out for general use outside of a testing context. - python3-extras, standart python kitaplığında olması gereken ama olmayan (testtools) kodları sağlar. - https://github.com/testing-cabal/extras/archive/1.0.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-extras/pspec.xml - - - python3-extras - Extra code that should be part of the standard library but isn't. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-extras - - - - - 2021-10-28 - 1.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-20 - 1.0.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-enchant - https://github.com/pyenchant/pyenchant - - Blue Devil - bluedevil@sctzine.com - - LGPLv3 - library - programming.language.python3 - Python bindings for the Enchant spellchecking system - Enchant yazım denetleyicisi için hızlı bir Python modulü - python3-enchant is an efficient Python module for Enchant spellchecker. - python3-enchant, Enchant yazım denetleyicisi için hızlı bir Python modulüdür. - https://github.com/pyenchant/pyenchant/archive/v3.2.2.tar.gz - - python3-devel - enchant2-devel - python3-setuptools - - programming/language/python3/python3-enchant/pspec.xml - - - python3-enchant - Python bindings for the Enchant spellchecking system - - python3 - enchant2 - - - /usr/lib/python3* - /usr/share/doc/python3-enchant - - - - - 2021-10-28 - 3.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-22 - 3.1.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 3.1.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 3.0.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-18 - 2.0.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-Jinja2 - https://palletsprojects.com/p/jinja/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - programming.language.python3 - A small but fast and easy to use stand-alone template engine written in pure python - Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci - Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code. - Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır. - https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-3.0.3.tar.gz - - python3-MarkupSafe - python3-setuptools - python3-devel - python3-pytest - python3-sphinxcontrib-log-cabinet - python3-pallets-sphinx-themes - python3-sphinx-issues - python3-sphinx - python3-charset-normalizer - - programming/language/python3/python3-Jinja2/pspec.xml - - - python3-Jinja2 - A small but fast and easy to use stand-alone template engine written in pure python - - python3-MarkupSafe - python3 - - - /usr/share/doc/python3-Jinja2/LICENSE.rst - /usr/share/doc/python3-Jinja2/README.rst - /usr/share/doc/python3-Jinja2/PKG-INFO - /usr/lib/python3* - - - - python3-Jinja2-docs - Documentation files for python3-Jinja2 - python3-Jinja2 için belgelendirme dosyaları - python3-Jinja2-docs, python3-Jinja2 için belgelendirme dosyaları içerir. - - /usr/share/doc/python3-Jinja2/html - - - - - 2021-11-11 - 3.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 3.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-22 - 2.11.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 2.11.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-29 - 2.11.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 2.10.3 - Rebuilt w/ py3.8 and clean. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-04 - 2.10.3 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-28 - 2.10 - First release. - Pisi Linux Community - admin@pisilinux.org - - - - - - gi-docgen - https://gitlab.gnome.org/GNOME/gi-docgen - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - programming.language.python3 - Documentation generator for GObject-based libraries - Documentation generator for GObject-based libraries - GObject tabanlı kitaplıklar için belge oluşturucu - GObject tabanlı kitaplıklar için belge oluşturucu - https://gitlab.gnome.org/GNOME/gi-docgen/-/archive/2022.1/gi-docgen-2022.1.tar.gz - - python3-devel - python3-toml - python3-Jinja2 - python3-markdown - python3-Pygments - python3-MarkupSafe - python3-typogrify - python3-setuptools - - programming/language/python3/gi-docgen/pspec.xml - - - gi-docgen - - python3 - python3-toml - python3-Jinja2 - python3-markdown - python3-Pygments - python3-MarkupSafe - python3-typogrify - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-05-31 - 2022.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-02 - 2021.8 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 2021.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-21 - 2021.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 2021.6 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-sphinxcontrib-applehelp - https://github.com/sphinx-doc/sphinxcontrib-applehelp - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx extension which outputs Apple help books. - Apple yardım kitapları olarak çıktı verebilen sphinx genişleme modülüdür. - sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books. - python3-sphinxcontrib-applehelp, Apple yardım kitapları olarak çıktı verebilen sphinx genişleme modülüdür. - https://github.com/sphinx-doc/sphinxcontrib-applehelp/archive/1.0.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-applehelp/pspec.xml - - - python3-sphinxcontrib-applehelp - sphinxcontrib-applehelp module for python - - python3 - - - /usr/share/doc/python3-sphinxcontrib-applehelp - /usr/lib/python3* - - - - - 2021-10-22 - 1.0.2 - Rebuild. - Pisi Linux Admins - admins@pisilinux.org - - - 2020-03-04 - 1.0.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 1.0.1 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-websockets - https://github.com/aaugustin/websockets - - Blue Devil - bluedevil@sctzine.com - - BSD3 - library - programming.language.python3 - Library for building WebSocket servers and clients in Python. - Websocket sunucu ve istemcileri inşa etmek için gerekli python kitaplığı - websockets is a library for building WebSocket servers and clients in Python with a focus on correctness and simplicity. - python3-websockets, doğruluk ve sadeliği esas alarak, Websocket sunucu ve istemcileri yapmak için gerekli python kitaplığını içerir. - https://github.com/aaugustin/websockets/archive/9.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-websockets/pspec.xml - - - python3-websockets - Library for building WebSocket servers and clients in Python. - - python3 - - - /usr/lib - /usr/share/man - /usr/share/doc/python3-websockets - - - - - 2021-10-22 - 9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 8.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pallets-sphinx-themes - https://github.com/pallets/pallets-sphinx-themes - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - Sphinx themes for Pallets and related projects. - Pallets ve benzeri projeler için sphinx teması. - python3-pallets-sphinx-themes provides sphinx themes for Pallets and related projects. - python3-pallets-sphinx-themes, pallets ve benzeri projeler için sphinx teması sağlar. - https://files.pythonhosted.org/packages/da/ff/dc403f870b3e7886aabc4abab24feeeae0ca8b6278cca2a402d3249ed4f3/Pallets-Sphinx-Themes-2.0.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-pallets-sphinx-themes/pspec.xml - - - python3-pallets-sphinx-themes - Sphinx themes for Pallets and related projects. - - python3-importlib_metadata - python3-sphinx - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pallets-sphinx-themes - - - - - 2021-10-22 - 2.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 1.2.3 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-soupsieve - https://facelessuser.github.io/soupsieve/ - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A modern CSS selector implementation for Beautiful Soup. - Beautiful Soup için çağdaş bir CSS seçici uygulaması - Soup Sieve is a CSS selector library designed to be used with Beautiful Soup 4. It aims to provide selecting, matching, and filtering using modern CSS selectors. Soup Sieve currently provides selectors from the CSS level 1 specifications up through the latest CSS level 4 drafts and beyond (though some are not yet implemented). - Soup Sieve, Beautiful Soup 4 ile kullanılmak üzere geliştirilmiş bir CSS seçici python3 kitaplığıdır. - https://github.com/facelessuser/soupsieve/archive/2.2.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-soupsieve/pspec.xml - - - python3-soupsieve - A modern CSS selector implementation for Beautiful Soup. - - python3 - python3-backports.functools_lru_cache - - - /usr/lib/python3* - /usr/share/doc/python3-soupsieve - - - - - 2021-10-28 - 2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-24 - 2.0.1 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-psutil - https://github.com/giampaolo/psutil - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - A cross-platform process utilities module for Python - Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü - python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. - python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. - https://github.com/giampaolo/psutil/archive/release-5.8.0.tar.gz - - python3-devel - - programming/language/python3/python3-psutil/pspec.xml - - - python3-psutil - A cross-platform process utilities module for Python - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-psutil - - - - - 2021-10-22 - 5.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 5.7.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 5.7.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-07 - 5.6.7 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-19 - 5.4.6 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-23 - 5.4.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-01 - 5.0.1 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 4.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 4.0.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-pynacl - https://github.com/pyca/pynacl/ - - Blue DeviL - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Python3 binding to the Networking and Cryptography (NaCl) library - Python3 için NaCl modülü - python3-pynacl PyNaCl is a Python3 binding to libsodium, which is a fork of the Networking and Cryptography library. These libraries have a stated goal of improving usability, security and speed. - PyNaCl, ağ ve kriptografi kitaplığından geliştirilen libsodium kitaplığının python3 modülüdür. - https://github.com/pyca/pynacl/archive/1.4.0.tar.gz - - pip3 - python3-devel - python3-setuptools - - programming/language/python3/python3-pynacl/pspec.xml - - - python3-pynacl - PyNaCl module for python3 - - python3 - python3-cffi - - - /usr/lib/python3* - /usr/share/doc/python3-pynacl - - - - - 2021-10-28 - 1.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 1.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-11 - 1.3.0 - Rebuilt - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-25 - 1.3.0 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python-jsonschema - https://pypi.python.org/pypi/jsonschema - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.language.python3 - An implementation of JSON Schema validation for Python - An implementation of JSON Schema validation for Python - http://repository.timesys.com/buildsources/p/python-jsonschema/python-jsonschema-3.2.0/jsonschema-3.2.0.tar.gz - - python3-devel - python3-setuptools-scm - - programming/language/python3/python-jsonschema/pspec.xml - - - python-jsonschema - - python3 - python3-idna - python3-setuptools - python3-pyrsistent - python3-importlib_metadata - python3-attrs - - - /usr/bin - /usr/lib/python3.9/site-packages - /usr/share/doc/python-jsonschema - - - - - 2022-01-09 - 3.2.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-pygobject3 - http://www.pygtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.language.python3 - Bindings (liens) glib pour Python3. - Python Bindings for GLib/GObject/GIO/GTK+ - GLib/GObject/GIO/GTK+ için python3 bağlayıcıları. - pygobject is GLib's GObject library bindings for Python3. - python3-pygobject, Python3 için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. - http://ftp.acc.umu.se/pub/GNOME/sources/pygobject/3.42/pygobject-3.42.1.tar.xz - - meson - glib2-devel - libffi-devel - python3-devel - python3-cairo-devel - gobject-introspection-devel - - programming/language/python3/python3-pygobject3/pspec.xml - - - python3-pygobject3 - Python Bindings for GLib/GObject/GIO/GTK+ - - cairo - glib2 - libffi - python3 - python3-cairo - gobject-introspection - - - /usr/share/doc - /usr/share/pygobject - /usr/lib/python3* - /usr/lib/libpyglib-gi-2.0-python3*.so* - - - - python3-pygobject3-devel - Development files for python3-pygobject3 - python3-pygobject3 için geliştirme dosyaları - python3-pygobject3-devel, python3-pygobject3 için geliştirme dosyalarını içerir. - - glib2-devel - libffi-devel - gobject-introspection-devel - python3-pygobject3 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-31 - 3.42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 3.40.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-31 - 3.40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 3.36.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 3.36.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-07 - 3.34.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-05 - 3.32.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2019-09-14 - 3.32.2 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 3.27.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 3.27.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-08-01 - 3.22.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 3.22.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 3.22.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.18.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 3.18.2 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-08 - 3.18.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-urllib3 - https://github.com/shazow/urllib3 - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - urllib3 is a powerful, sanity-friendly HTTP client for Python. - urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. - urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries. - urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. urllib3 Python standart kütüphanesinde bulunmayan kritik özellikleri içerir. - https://github.com/urllib3/urllib3/archive/1.26.6.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-urllib3/pspec.xml - - - python3-urllib3 - urllib3 is a powerful, sanity-friendly HTTP client for Python. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-urllib3 - - - - - 2021-10-22 - 1.26.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-24 - 1.25.9 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 1.25.8 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-24 - 1.25.7 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 1.23 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-22 - 1.22 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-six - http://pypi.python.org/pypi/six/ - - Alihan Öztürk - alihan@pisilinux.org - - MIT - app:console - programming.language.python3 - Python 2 and 3 compatibility utilities. - Python2 ve python3 uyumluluk programı. - python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. - python3-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. - https://pypi.org/packages/source/s/six/six-1.16.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-six/pspec.xml - - - python3-six - Python 2 and 3 compatibility utilities. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-six - - - - - 2021-10-22 - 1.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-24 - 1.15.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-21 - 1.14.0 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-11 - 1.13.0 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-06 - 1.11.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-24 - 1.11.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-22 - 1.10.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-01 - 1.10.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.9.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-08 - 1.9.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-sphinx-issues - https://github.com/sloria/sphinx-issues - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A Sphinx extension for linking to your project's issue tracker. - Projeniz için olay izleme sphinx genişlemesi. - A Sphinx extension for linking to your project's issue tracker. Includes roles for linking to issues, pull requests, user profiles, with built-in support for GitHub (though this works with other services). - python3-sphinx-issues, projeniz için olay izleme sphinx genişlemesi sunar. - https://github.com/sloria/sphinx-issues/archive/1.2.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinx-issues/pspec.xml - - - python3-sphinx-issues - A Sphinx extension for linking to your project's issue tracker. - - python3-docutils - python3-sphinx - python3 - - - /usr/share/doc/python3-sphinx-issues - /usr/lib/python3* - - - - - 2021-10-22 - 1.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-22 - 1.2.0 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-httpx - https://github.com/encode/httpx - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - The next generation HTTP client. - Gelecek nesil HTTP istemcisi - HTTPX is a fully featured HTTP client for Python 3, which provides sync and async APIs, and support for both HTTP/1.1 and HTTP/2. - python3-httpx, tam donanımlı python3 için HTTP istemcisidir. Asenkron APIler sunar ve hem HTT11/1'i hem de http/2'yi destekler. - https://github.com/encode/httpx/archive/0.20.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-httpx/pspec.xml - - - python3-httpx - The next generation HTTP client. - - python3 - python3-certifi - python3-chardet - python3-rfc3986 - python3-sniffio - python3-urllib3 - python3-httpcore - python3-hstspreload - - - /usr/bin/httpx - /usr/share/man - /usr/lib/python3* - /usr/share/doc/python3-httpx - - - - - 2021-10-28 - 0.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 0.14.2 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-24 - 0.13.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 0.12.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 0.12.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 0.11.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 0.11.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-sphinxcontrib-serializinghtml - https://github.com/sphinx-doc/sphinxcontrib-serializinghtml - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx extension which outputs "serialized" HTML files (json and pickle). - python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişletmesi. - sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). - python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişleme modülüdür. - https://files.pythonhosted.org/packages/b5/72/835d6fadb9e5d02304cf39b18f93d227cd93abd3c41ebf58e6853eeb1455/sphinxcontrib-serializinghtml-1.1.5.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-serializinghtml/pspec.xml - - - python3-sphinxcontrib-serializinghtml - sphinxcontrib-serializinghtml module for python - - python3 - - - /usr/share/doc/python3-sphinxcontrib-serializinghtml - /usr/lib/python3* - - - - - 2021-10-22 - 1.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 1.1.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 1.1.3 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - yt-dlp - https://github.com/yt-dlp/yt-dlp - - Kamil Atlı - suvari@pisilinux.org - - as-is - library - programming.language.python3 - A youtube-dl fork with additional features and fixes - Ek özelliklere ve düzeltmelere sahip bir youtube-dl çatalı - A youtube-dl fork with additional features and fixes - Ek özelliklere ve düzeltmelere sahip bir youtube-dl çatalı - https://github.com/yt-dlp/yt-dlp/archive/refs/tags/2022.03.08.1.tar.gz - - aria2-devel - ffmpeg-devel - python3-wheel - python3-devel - rtmpdump-devel - python3-mutagen - python3-setuptools - python3-websockets - python3-pycryptodomex - - programming/language/python3/yt-dlp/pspec.xml - - - yt-dlp - A youtube-dl fork with additional features and fixes - - aria2 - ffmpeg - python3 - rtmpdump - python3-wheel - python3-mutagen - python3-websockets - python3-pycryptodomex - - - /usr/bin - /usr/share/man/man1 - /usr/share/bash-completion/completions - /usr/share/fish/vendor_completions.d - /usr/share/zsh/site-functions - /usr/share/doc/yt_dlp - /usr/share/doc/yt-dlp - /usr/lib/python3.9/site-packages/yt_dlp - - - - - 2022-03-29 - 2022.03.08.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-pexpect - https://pexpect.readthedocs.org/en/stable/ - - Pisi Linux Admins - admin@pisilinux.org - - MIT - library - programming.language.python3 - For controlling and automating applications - For controlling and automating applications - For controlling and automating applications - For controlling and automating applications - https://github.com/pexpect/pexpect/archive/4.8.0.tar.gz - - python3-devel - python3-ptyprocess - python3-setuptools - - programming/language/python3/python3-pexpect/pspec.xml - - - python3-pexpect - - python3 - python3-ptyprocess - - - /usr/lib/python3* - /usr/share/doc - - - - - 2021-10-22 - 4.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-03 - 4.8.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-docker-py - https://github.com/dotcloud/docker-py - - Alihan Öztürk - alihan@pisilinux.org - - apache - app:console - programming.language.python3 - Python client for Docker. - A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. - https://github.com/docker/docker-py/archive/1.8.1.tar.gz - - python3-devel - python3-setuptools - python3-websocket-client - python3-six - python3-requests - - programming/language/python3/python3-docker-py/pspec.xml - - - python3-docker-py - Python client for Docker. - - python3 - python3-websocket-client - python3-six - python3-requests - - - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 1.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-03-19 - 1.8.1 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-19 - 1.8.1 - Version Down to fix gonullu. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-04-21 - 1.8.1 - Version Down to fix gonullu. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-01 - 2.0.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 1.8.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-pgi - https://github.com/pygobject/pgi - - PisiLinux Community - admins@pisilinux.org - - LGPL 2.1+ - library - programming.language.python3 - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. - https://github.com/pygobject/pgi/archive/refs/tags/0.0.11.2.tar.gz - - python3-devel - python3-setuptools - gobject-introspection-devel - - programming/language/python3/python3-pgi/pspec.xml - - - python3-pgi - GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. - - python3 - gobject-introspection - - - /usr/bin* - /usr/lib/python3* - /usr/share/doc* - - - - - 2022-05-01 - 0.0.11.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-pycountry - https://github.com/flyingcircusio/pycountry - - Blue DeviL - bluedevil@sctzine.com - - LGPLv2.1 - library - programming.language.python3 - ISO country, subdivision, language, currency and script definitions and their translations. - Python3 pycountry modülü - This is the pycountry module, a Python library to access ISO country, subdivision, language, currency and script definitions and their translations. - python3-pycountry modülü ISO ülke, kur bilgisi ve bunların çevirilerine ait kitaplık sunar. - https://github.com/flyingcircusio/pycountry/archive/20.7.3.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pycountry/pspec.xml - - - python3-pycountry - ISO country, subdivision, language, currency and script definitions and their translations. - - python3 - python3-setuptools - - - /usr/lib/python3* - /usr/share/doc/python3-pycountry - - - - - 2021-10-28 - 20.7.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 20.7.3 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-10 - 19.8.18 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-mimeparse - https://github.com/dbtsai/python-mimeparse - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Basic functions for handling mime-types in python. - Python ile mime-türlerini işleyebilmek için python kitaplığı. - python3-mimeparse, provides basic functions for handling mime-types. It can handle matching mime-types against a list of media-ranges. - python3-mimeparse, python ile mime-türlerini işleyebilmek için python kitaplığı sunar. - https://github.com/dbtsai/python-mimeparse/archive/1.6.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-mimeparse/pspec.xml - - - python3-mimeparse - Basic functions for handling mime-types in python. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-mimeparse - - - - - 2021-10-28 - 1.6.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-20 - 1.6.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-configobj - https://github.com/DiffSK/configobj - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.language.python3 - Simple config file reader and writer - Simple config file reader and writer - https://github.com/DiffSK/configobj/archive/refs/heads/master.zip - - python3-devel - python3-setuptools - - programming/language/python3/python-configobj/pspec.xml - - - python-configobj - - python3 - python3-six - - - /usr/lib/python3.9/site-packages - /usr/share/doc/python-configobj - - - - - 2022-01-09 - 5.0.6 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-pyelftools - https://github.com/eliben/pyelftools - - Blue DeviL - bluedevil@sctzine.com - - Public Domain - library - app:console - programming.language.python3 - Python3 library for analyzing ELF files and DWARF debugging information - Python3 için pyelftools modülü - pyelftools is a pure-Python library for parsing and analyzing ELF files and DWARF debugging information. - pyelftools ELF ve DWARF dosyaları için çözümleme, inceleme ve hata ayıklamak için python ile yazılmış bir kitaplıktır. - https://github.com/eliben/pyelftools/archive/v0.27.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pyelftools/pspec.xml - - - python3-pyelftools - Python3 library for analyzing ELF files and DWARF debugging information - - python3 - - - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2021-10-28 - 0.27 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-12 - 0.26 - First pisi release. - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-attrs - https://www.attrs.org/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python Classes Without Boilerplate - Şablonsuz python sınıfları. - attrs is the Python package that will bring back the joy of writing classes by relieving you from the drudgery of implementing object protocols (aka dunder methods). - python3-attrs, şablonsuz python sınıfları içerir. bu sayede daha hızlı ve karmaşık olmayan kod yazmanızı sağlar. - https://files.pythonhosted.org/packages/ed/d6/3ebca4ca65157c12bd08a63e20ac0bdc21ac7f3694040711f9fd073c0ffb/attrs-21.2.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-attrs/pspec.xml - - - python3-attrs - Python Classes Without Boilerplate - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-attrs - - - - - 2021-10-22 - 21.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 21.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 3020-09-23 - 20.2.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-13 - 19.3.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-scour - https://github.com/scour-project/scour - - Blue Devil - bluedevil@sctzine.com - - Apachev2.0 - library - programming.language.python3 - Scour - An SVG Optimizer / Cleaner - SVG iyileştirici/temizleyici. - Scour is an SVG optimizer/cleaner that reduces the size of scalable vector graphics by optimizing structure and removing unnecessary data written in Python. - python3-scour, SVG çizim dosyalarının yapısını düzelten, bunu yaparken boyutlarını da düşürerek iyileştirme yapan bir python kitaplığıdır. - https://github.com/scour-project/scour/archive/refs/tags/v0.38.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-scour/pspec.xml - - - python3-scour - Scour - An SVG Optimizer / Cleaner - - python3 - - - /usr/bin/scour - /usr/lib/python3* - /usr/share/doc/python3-scour - - - - - 2021-10-28 - 0.38.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-15 - 0.38.1 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyudev - https://pypi.org/project/pyudev/ - - Blue Devil - bluedevil@sctzine.com - - LGPLv2.1 - library - programming.language.python3 - Python3 bindings for libudev library - libudev için Python3 bağlayıcısı - These bindings enable using of udev library in Python programs. - Bu bağlayıcı, Python3 programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. - https://github.com/pyudev/pyudev/archive/v0.22.tar.gz - - python3-setuptools - python3-devel - eudev-devel - - programming/language/python3/python3-pyudev/pspec.xml - - - python3-pyudev - Python3 bindings for libudev library - - python3-six - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-10-28 - 0.22 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-29 - 0.22 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-20 - 0.21.0 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask-login - https://github.com/maxcountryman/flask-login/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Flask user session management. - Flask için kullanıcı oturumu yönetimi. - Flask-Login provides user session management for Flask. It handles the common tasks of logging in, logging out, and remembering your users' sessions over extended periods of time.. - python3-flask-login, flask için kullanıcı oturumu yönetimi kitaplığı sağlar. - https://github.com/maxcountryman/flask-login/archive/0.5.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-login/pspec.xml - - - python3-flask-login - Flask user session management. - - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-login - - - - - 2021-10-28 - 0.5.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 0.5.0 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-charset-normalizer - https://pypi.org/project/charset-normalizer/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.language.python3 - Like Chardet. Package for encoding language detection. Charset detection - Like Chardet. Package for encoding language detection. Charset detection - Like Chardet. Package for encoding language detection. Charset detection - Like Chardet. Package for encoding language detection. Charset detection - https://files.pythonhosted.org/packages/e7/4e/2af0238001648ded297fb54ceb425ca26faa15b341b4fac5371d3938666e/charset-normalizer-2.0.4.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-charset-normalizer/pspec.xml - - - python3-charset-normalizer - - python3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-10-14 - 2.0.4 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-10-22 - 2.0.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-Levenshtein - https://pypi.org/project/python-Levenshtein/ - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - library - programming.language.python - Python extension for computing string edit distances and similarities - 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/2a/dc/97f2b63ef0fa1fd78dcb7195aca577804f6b2b51e712516cc0e902a9a201/python-Levenshtein-0.12.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-Levenshtein/pspec.xml - - - python3-Levenshtein - Python extension for computing string edit distances and similarities - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-Levenshtein - - - - - 2021-10-28 - 0.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-23 - 0.12.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-ptyprocess - https://github.com/pexpect/ptyprocess - - Pisi Linux Admins - admin@pisilinux.org - - ISC - library - programming.language.python3 - Run a subprocess in a pseudo terminal - Run a subprocess in a pseudo terminal - Run a subprocess in a pseudo terminal - Run a subprocess in a pseudo terminal - https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-ptyprocess/pspec.xml - - - python3-ptyprocess - - python3 - - - /usr/lib/python3* - /usr/share/doc - - - - - 2021-10-22 - 0.7.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-03 - 0.7.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-certifi - https://certifi.io/ - - Blue DeviL - bluedevil@sctzine.com - - MPL-2.0 - library - programming.language.python3 - Python3 package for providing Mozilla's CA Bundle - Certifi, Mozillanın sertifikalarını sağlayan python3 kitaplığıdır. - Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. - Certifi, TLS sahiplerinin SSL sertifikalarını doğrulanmasını sağlayan, kök sertifikalarının toplandığı bir kitaplıktır. - https://pypi.org/packages/source/c/certifi/certifi-2021.5.30.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-certifi/pspec.xml - - - python3-certifi - certifi module for python3 - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-certifi - - - - - 2021-10-22 - 2021.5.30 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 2020.6.20 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 2020.4.5.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-11 - 2019.11.28 - Rebuilt. - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-07 - 2019.9.11 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-kappa - https://github.com/garnaat/kappa - - Ismet Sezer Simsek - ismetsezer1996@gmail.com - - LGPLv2.1 - library - app:console - programming.language.python3 - A CLI tool for AWS Lambda developers - AWS Lambda geliştiricileri için komut satırı arayüzü - Kappa is a command line tool that (hopefully) makes it easier to deploy, update, and test functions for AWS Lambda. - python3-kappa, AWS Lambdayı güncelleme, çalıştırma, test yapmayı kolaylaştıran bir komut satırı arayüzüdür. - https://pypi.python.org/packages/9e/67/c064a0b48f3aaee38aa810e09e6c3c97857e9c9a69cb2e6f79da650ec054/kappa-0.7.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-kappa/pspec.xml - - - python3-kappa - A CLI tool for AWS Lambda developers - - python3 - - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2021-10-28 - 0.7.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 0.7.0 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 0.7.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-15 - 0.7.0 - First Release - Ismet Sezer Simsek - ismetsezer1996@gmail.com - - - - - - python3-sphinxcontrib-qthelp - https://github.com/sphinx-doc/sphinxcontrib-qthelp - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx extension which outputs Qthelp document. - Qthelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. - sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document - python3-sphinxcontrib-qthelp, Qthelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. - https://github.com/sphinx-doc/sphinxcontrib-qthelp/archive/1.0.3.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-qthelp/pspec.xml - - - python3-sphinxcontrib-qthelp - sphinxcontrib-qthelp module for python - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-sphinxcontrib-qthelp - - - - - 2021-10-22 - 1.0.3 - Rebuild. - Pisi Linux Admins - admins@pisilinux.org - - - 2020-03-04 - 1.0.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 1.0.2 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pycrypto - https://www.dlitz.net/software/pycrypto/ - - Blue DeviL - bluedevil@sctzine.com - - PD - library - programming.language.python3 - Python3 pycrypto module - Python3 pycrypto modülü - A collection of cryptographic algorithms and protocols, implemented for use from Python2. - python3-pycrypto, Python2 için kriptografik algoritmalar ve protokoller içeren bir kitaplıktır. - https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz - - gmp-devel - python3-devel - python3-setuptools - - programming/language/python3/python3-pycrypto/pspec.xml - - - python3-pycrypto - Python3 pycrypto module - - gmp - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pycrypto - - - - - 2021-10-28 - 2.6.1 - First pisi release - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-21 - 2.7a.1 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-flask-security - https://github.com/mattupstate/flask-security - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Quick and simple security for Flask applications. - Flask uygulamalarınız için hızlı ve basit güvenlik. - python3-flask-security, quickly adds security features to your Flask application. - python3-flask-security, flask uygulamalarınız için hızlı ve basit güvenlik bir şekilde güvenlik sunar. - https://github.com/mattupstate/flask-security/archive/3.0.0.tar.gz - - python3-setuptools - python3-devel - pip3 - - programming/language/python3/python3-flask-security/pspec.xml - - - python3-flask-security - Quick and simple security for Flask applications. - - python3-flask-principal - python3-flask-babelex - python3-flask-login - python3-flask-mail - python3-flask-wtf - python3-passlib - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-security - - - - - 2021-10-22 - 3.0.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 3.0.0 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-sqlparse - https://github.com/andialbrecht/sqlparse - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - A non-validating SQL parser module for Python. - Python için doğrulamasız SQL çözümleyici. - sqlparse is a non-validating SQL parser for Python. It provides support for parsing, splitting and formatting SQL statements. - python3-sqlparse, python ile doğrulamasız sql çözümleme yapmanıza yarayacak python modülleri sunar. - https://github.com/andialbrecht/sqlparse/archive/0.4.2.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sqlparse/pspec.xml - - - python3-sqlparse - A non-validating SQL parser module for Python. - - python3-setuptools - python3 - - - /usr/share/doc/python3-sqlparse - /usr/bin/sqlformat - /usr/lib/python3* - - - - - 2021-10-28 - 0.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 0.3.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-19 - 0.3.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-colorama - https://pypi.python.org/pypi/colorama - - Alihan Öztürk - alihan@pisilinux.org - - BSD - library - programming.language.python3 - Cross-platform colored terminal text. - Uçbirim metinlerini renklendirebilen python3 modülüdür. - Python API for cross-platform colored terminal text. - python-colorama, uçbirim metinlerini renklendirebilen python3 modülüdür. - https://github.com/tartley/colorama/archive/0.4.4.tar.gz - - python3-devel - - programming/language/python3/python3-colorama/pspec.xml - - - python3-colorama - Cross-platform colored terminal text. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-colorama - - - - - 2021-10-22 - 0.4.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-24 - 0.4.3 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-29 - 0.3.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-26 - 0.3.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.3.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-06 - 0.3.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-pyasn1 - https://github.com/etingof/pyasn1 - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Python bindings for ASN.1 types and codecs - Python3 için ASN.1 kitaplığı - Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208) - python3-pyasn1 ASN.1 türleri ve DER/BER/CER kodekleri (X.208) içeren bir python kitaplığıdır. - https://github.com/etingof/pyasn1/archive/v0.4.8.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pyasn1/pspec.xml - - - python3-pyasn1 - Python bindings for ASN.1 types and codecs - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pyasn1 - - - - - 2021-10-28 - 0.4.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-23 - 0.4.8 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-hyperframe - https://github.com/python-hyper/hyperframe - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Pure-Python HTTP/2 framing - Pure-Python HTTP/2 çatısı. - This library contains the HTTP/2 framing code used in the hyper project. It provides a pure-Python codebase that is capable of decoding a binary stream into HTTP/2 frames. - python3-hyperframe, bu kitaplık "hyper" projelerinde kullanılmak üzere "HTTP/2" çerçeveleri içerir. İkilik bir akışı HTTP/2 çerçevelerine çözebilen python kod tabanı sunar. - https://github.com/python-hyper/hyperframe/archive/v6.0.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-hyperframe/pspec.xml - - - python3-hyperframe - Pure-Python HTTP/2 framing - - python3 - - - /usr/lib - /usr/share/man - /usr/share/doc/python3-hyperframe - - - - - 2021-10-28 - 6.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-23 - 6.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 5.2.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-sphinx-alabaster-theme - https://github.com/bitprophet/alabaster - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Sphinx default theme. - Sphinx varsayılan teması. - Alabaster is a visually (c)lean, responsive, configurable theme for the Sphinx documentation system. It is Python 2+3 compatible. - Alabaster, Sphinx dokümantasyon sistemi için görsel (c) yalın, duyarlı, yapılandırılabilir bir temadır. Python 2 + 3 uyumludur. - https://github.com/bitprophet/alabaster/archive/0.7.12.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinx-alabaster-theme/pspec.xml - - - python3-sphinx-alabaster-theme - Sphinx default theme. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-sphinx-alabaster-theme - - - - - 2021-10-22 - 0.7.12 - Version bump. - Pisi Linux Admins - admins@pisilinux.org - - - 2019-12-30 - 0.7.12 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-28 - 0.7.11 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - python3-markdown - https://pypi.org/project/Markdown/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - programming.language.python3 - Python implementation of John Gruber's Markdown - Python implementation of John Gruber's Markdown - Python implementation of John Gruber's Markdown - Python implementation of John Gruber's Markdown - https://files.pythonhosted.org/packages/49/02/37bd82ae255bb4dfef97a4b32d95906187b7a7a74970761fca1360c4ba22/Markdown-3.3.4.tar.gz - - python3-devel - python3-PyYAML - python3-setuptools - - programming/language/python3/python3-markdown/pspec.xml - - - python3-markdown - - python3 - python3-PyYAML - python3-setuptools - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 3.3.4 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-05-26 - 3.3.4 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-sphinxcontrib-log-cabinet - https://github.com/davidism/sphinxcontrib-log-cabinet - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Organize changelog directives in Sphinx docs. - Sphinx belgesinde "changelog" etkinliğini düzenler. - Organize changelogs generated by versionadded, versionchanged, deprecated directives. The log will be sorted by newest to oldest version. For HTML docs, older versions will be collapsed by default. - python3-sphinxcontrib-log-cabinet, sphinx belgesinde "changelog" etkinliğini düzenlemeye yarayan python kitaplığını içerir. - https://github.com/davidism/sphinxcontrib-log-cabinet/archive/1.0.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-log-cabinet/pspec.xml - - - python3-sphinxcontrib-log-cabinet - Organize changelog directives in Sphinx docs. - - python3 - - - /usr/share/doc/python3-sphinxcontrib-log-cabinet - /usr/lib/python3* - - - - - 2021-10-22 - 1.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-22 - 1.0.1 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-chardet - https://github.com/chardet/chardet - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app - programming.language.python3 - Chardet: The Universal Character Encoding Detector - Chardet: Evrensel Karakter Kodlaması Bulucusu(The Universal Character Encoding Detector) - Character encoding auto-detection in Python. As smart as your browser. Open source. - python3-chardet, python3 ile karakter kodlaması yapabilmeyi sağlayan ve karakter kodlamasını otomatik bulabilmeyi saglayan bir python3 bağlayıcısıdır. - https://github.com/chardet/chardet/archive/4.0.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-chardet/pspec.xml - - - python3-chardet - Chardet: The Universal Character Encoding Detector - - python3 - - - /usr/bin/chardetect - /usr/lib/python3* - /usr/share/doc/python3-chardet - - - - - 2021-10-22 - 4.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-24 - 3.0.4 - Rebuilt w/ py3.8. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-29 - 3.0.4 - First release. - PisiLinux Community - admins@pisilinux.org - - - 2018-05-22 - 3.0.4 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - python3-sphinx-copybutton - https://pypi.org/project/sphinx-copybutton/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.language.python3 - Add a copy button to code cells in Sphinx docs - Add a copy button to code cells in Sphinx docs - Add a copy button to code cells in Sphinx docs - Add a copy button to code cells in Sphinx docs - https://files.pythonhosted.org/packages/d0/79/d57ca42f4be2ac21f660300a5e1a285ce42b23c45b5a4b9a21ce973a3b2f/sphinx-copybutton-0.4.0.tar.gz - - python3-devel - python3-sphinx - python3-setuptools - - programming/language/python3/python3-sphinx-copybutton/pspec.xml - - - python3-sphinx-copybutton - - python3 - python3-sphinx - - - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-10-14 - 0.4.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-10-22 - 0.4.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-wrapt - https://github.com/GrahamDumpleton/wrapt - - Blue Devil - bluedevil@sctzine.com - - BSDv2 - library - programming.language.python3 - A Python module for decorators, wrappers and monkey patching. - Çalışma zamanında uygulama yamayabilen(monkey patching), sarmalayıcı yordamlar ve dekoratörler için python modülü. - python3-wrapt provides a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions. - python3-wrapt, çalışma zamanında uygulama yamayabilen(monkey patching), sarmalayıcı yordamlar ve dekoratörler için python modülü sağlar. - https://github.com/GrahamDumpleton/wrapt/archive/1.13.2.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-wrapt/pspec.xml - - - python3-wrapt - A Python module for decorators, wrappers and monkey patching. - - python3 - python3-setuptools - - - /usr/share/doc/ - /usr/lib/python3* - - - - - 2021-10-13 - 1.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 1.13.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 1.12.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyinotify - https://github.com/seb-m/pyinotify - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - Monitoring filesystems events with inotify on Linux. - Monitoring filesystems events with inotify on Linux. - Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. - Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. - https://github.com/seb-m/pyinotify/archive/refs/tags/0.9.6.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pyinotify/pspec.xml - - - python3-pyinotify - Monitoring filesystems events with inotify on Linux. - - python3 - - - /usr/bin* - /usr/lib/python3* - /usr/share/doc* - - - - - 2022-01-23 - 0.9.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-sphinxcontrib-jsmath - https://github.com/sphinx-doc/sphinxcontrib-jsmath - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Sphinx extension which renders display math in HTML via JavaScript. - python3-sphinxcontrib-jsmath, javascript kullanarak html içerisinde matematiksel karakterlerin görüntülenmesini sağlar. - sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript. - python3-sphinxcontrib-jsmath, javascript kullanarak html içerisinde matematiksel karakterlerin görüntülenmesini sağlayan sphinx genisleme modülüdür. - https://github.com/sphinx-doc/sphinxcontrib-jsmath/archive/1.0.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-sphinxcontrib-jsmath/pspec.xml - - - python3-sphinxcontrib-jsmath - sphinxcontrib-jsmath module for python - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-sphinxcontrib-jsmath - - - - - 2021-10-22 - 1.0.1 - Rebuild. - Pisi Linux Admins - admins@pisilinux.org - - - 2019-12-30 - 1.0.1 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-multidict - https://github.com/aio-libs/multidict - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - The multidict implementation. - Multidict uygulaması. - Multidict is dict-like collection of key-value pairs where key might be occurred more than once in the container. - python3-multidict, sözlük benzeri anahtar-değer ikilisinden oluşan ama konteynerde birden fazla aynı anahtar olmasına olanak verek python modülüdür. - https://github.com/aio-libs/multidict/archive/v5.1.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-multidict/pspec.xml - - - python3-multidict - The multidict implementation. - - python3 - - - /usr/share/doc/python3-multidict - /usr/bin - /usr/share/man - /usr/lib - - - - - 2021-10-28 - 5.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 4.7.6 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-23 - 4.7.5 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 4.7.4 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask-babelex - https://github.com/mrjoes/flask-babelex - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - i18n and l10n support for Flask based on Babel and pytz. - Flask uygulamalarınız için Babel ve pytz temelli i18n ve l10n desteği. - Implements i18n and l10n support for Flask. This is fork of the official Flask-Babel extension with additional features. - python3-flask-babelex, flask uygulamalarınız için Babel ve pytz temelli i18n ve l10n desteği sunar. - https://github.com/mrjoes/flask-babelex/archive/0.9.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask-babelex/pspec.xml - - - python3-flask-babelex - i18n and l10n support for Flask based on Babel and pytz. - - python3-speaklater - python3-Jinja2 - python3-Babel - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-babelex - - - - - 2021-10-28 - 0.9.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-27 - 0.9.4 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-xlib - https://github.com/python-xlib/python-xlib - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2+ - library - programming.language.python3 - X client library for Python3. - Python için X istemci kitaplığı. - The Python X Library is intended to be a fully functional X client library for Python programs. It is written entirely in Python, in contrast to earlier X libraries for Python (the ancient X extension and the newer plxlib) which were interfaces to the C Xlib. - python3-xlib, python için X istemci kitaplığı sunar. - https://github.com/python-xlib/python-xlib/archive/0.31.tar.gz - - pip3 - python3-setuptools - python3-devel - - programming/language/python3/python3-xlib/pspec.xml - - - python3-xlib - X client library for Python3. - - python3-six - python3 - - - /usr/share/doc/python3-xlib - /usr/lib/python3* - - - - - 2021-10-02 - 0.31 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-08 - 0.27 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-27 - 0.26 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-sniffio - https://github.com/python-trio/sniffio - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - Sniff out which async library your code is running under - Yazdığınız kod hangi asenkron kitaplık altında koşuyor bunu dinleyen kitaplık. - This is a tiny package whose only purpose is to let you detect which async library your code is running under. - python3-sniffio, yazdığınız kod hangi asenkron kitaplık altında koşuyor, bunu dinleyen ve tespit edebilen bir python kitaplığıdır. - https://github.com/python-trio/sniffio/archive/v1.2.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-sniffio/pspec.xml - - - python3-sniffio - Sniff out which async library your code is running under - - python3 - python3-curio - - - /usr/lib - /usr/share/man - /usr/share/doc/python3-sniffio - - - - - 2021-10-28 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 1.1.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-mccabe - https://github.com/PyCQA/mccabe - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - McCabe complexity checker for Python - Python kod denetleyicisi, flake8 için bir eklenti. - python3-mccabe, provides a plugin for flake8, the Python code checker. - python3-mccabe, Python kod denetleyicisi, flake8 için bir eklenti sağlar. - https://github.com/PyCQA/mccabe/archive/0.6.1.tar.gz - - pip3 - python3-devel - python3-setuptools - - programming/language/python3/python3-mccabe/pspec.xml - - - python3-mccabe - McCabe complexity checker for Python - - python3 - - - /usr/share/doc/ - /usr/lib/python3* - - - - - 2021-10-13 - 0.6.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 0.6.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python-oauthlib - https://python-oauthlib.io - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.language.python3 - A generic, spec-compliant, thorough implementation of the OAuth request-signing logic - A generic, spec-compliant, thorough implementation of the OAuth request-signing logic. - https://files.pythonhosted.org/packages/9e/84/001a3f8d9680f3b26d5e7711e13d5ff92e4b511766a72ac6b4a4e5f06796/oauthlib-3.1.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python-oauthlib/pspec.xml - - - python-oauthlib - - python3 - python3-cryptography - - - /usr/lib/python3.9/site-packages - /usr/share/doc/python-oauthlib - - - - - 2022-01-09 - 3.1.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - python3-sphinx - https://www.sphinx-doc.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - library - programming.language.python3 - Python documentation generator. It can generate HTML or Latex outputs - Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor - It's a very common documentation generator especially using for python3 based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. - Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor. - https://pypi.org/packages/source/S/Sphinx/Sphinx-5.0.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-sphinx/pspec.xml - - - python3-sphinx - Python documentation generator. It can generate HTML or Latex outputs - - python3 - python3-six - python3-Babel - python3-Jinja2 - python3-certifi - python3-requests - python3-Pygments - python3-docutils - python3-pyparsing - python3-imagesize - python3-packaging - python3-setuptools - python3-charset-normalizer - python3-snowballstemmer - python3-sphinx_rtd_theme - python3-sphinxcontrib-qthelp - python3-sphinxcontrib-jsmath - python3-sphinxcontrib-devhelp - python3-sphinxcontrib-htmlhelp - python3-sphinx-alabaster-theme - python3-sphinxcontrib-applehelp - python3-sphinxcontrib-serializinghtml - - - /usr/bin - /usr/lib/python3* - /usr/share/doc/python3-sphinx/LICENSE - - - - python3-sphinx-docs - Documentation files for python3-sphinx - python3-sphinx için belgelendirme dosyaları - python3-sphinx-docs, python3-sphinx için belgelendirme dosyaları içerir. - - python3-sphinx - - - /usr/share/doc/python3-sphinx - - - - - 2022-06-03 - 5.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-30 - 5.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-23 - 4.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-11 - 4.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-23 - 4.1.2 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 4.1.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 4.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 3.5.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 3.2.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-16 - 3.0.3 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 3.0.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 3.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 2.4.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-24 - 2.4.3 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 2.4.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 2.4.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-30 - 2.3.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-06 - 1.6.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-28 - 1.6.5 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-editor - https://github.com/fmoo/python-editor - - Blue Devil - bluedevil@sctzine.com - - Apache2.0 - library - programming.language.python3 - Programmatically open an editor, capture the result. - Sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı. - python-editor is a library that provides the editor module for programmatically interfacing with your system's $EDITOR. - python3-editor sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı sağlar. - https://github.com/fmoo/python-editor/archive/1.0.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-editor/pspec.xml - - - python3-editor - Programmatically open an editor, capture the result. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-editor - - - - - 2021-10-25 - 1.0.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-18 - 1.0.4 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-matplotlib - https://github.com/matplotlib/matplotlib - - Blue Devil - bluedevil@sctzine.com - - PSF - library - programming.language.python3 - matplotlib: plotting with Python. - matplotlib: python grafik çizim kitaplığı. - Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. - python3-matplotlib, python ile hareketli, durağan ve etkileşimli çizgeler yapılmasını sağlayan kapsamlı bir python kitaplığı sunar. - https://github.com/matplotlib/matplotlib/archive/v3.3.1.tar.gz - - pip3 - python3-devel - python3-numpy - freetype-devel - python3-setuptools - - programming/language/python3/python3-matplotlib/pspec.xml - - - python3-matplotlib - matplotlib: plotting with Python. - - libpng - python3 - freetype - python3-numpy - python3-cycler - python3-dateutil - python3-pyparsing - python3-kiwisolver - - - /usr/lib/python3* - /usr/share/doc/python3-matplotlib - - - - - 2021-10-28 - 3.3.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 3.3.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-18 - 3.2.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-05 - 3.2.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-aiofiles - https://github.com/Tinche/aiofiles - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.language.python3 - File support for asyncio. - 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://files.pythonhosted.org/packages/06/f0/af90f3fb4066b0707b6a5af3ffd5fd9b3809bbb52f0153a3c7550e594de3/aiofiles-0.7.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-aiofiles/pspec.xml - - - python3-aiofiles - File support for asyncio. - - python3 - - - /usr/share/doc/python3-aiofiles - /usr/share/man - /usr/lib - - - - - 2021-10-28 - 0.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-22 - 0.5.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 0.4.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - gonullu - https://github.com/PisiLinuxNew/gonullu - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - app:console - programming.language.python3 - Volunteer application is developed to compile the packages for Pisi distributions - Gonullu uygulamasi, pisi linux dağıtımının paketlerini derlemek üzere hazırlanmıştır. - Application build the packages waiting at queue of build system as PISI packages using docker images and again, sent them to build system. - Uygulama docker imajlarını kullanarak, derleme sisteminin kuyruğundan bekleyen paketleri pisi paketi haline getirir ve derleme sistemine gönderir. - https://github.com/PisiLinuxNew/gonullu/archive/v1.2.2.tar.gz - - python3-devel - python3-setuptools - - - python-docker.patch - - programming/language/python3/gonullu/pspec.xml - - - gonullu - - docker - python3 - python3-argparse - python3-backports-ssl-match-hostname - python3-colorama - python3 - python3-docker - python3-psutil - python3-PyYAML - python3-requests - python3-sip - python3-six - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 1.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 1.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-19 - 1.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-03 - 1.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-28 - 1.2.0 - Version bump nasm. - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-16 - 1.1.9 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-01-31 - 1.1.7 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-12-31 - 1.1.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-12-08 - 1.1.6 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-08 - 1.1.6 - Added runtime dependency - Erdem Ersoy - erdemersoy@live.com - - - 2017-05-27 - 1.1.6 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-27 - 1.1.4 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-15 - 1.1.3 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-14 - 1.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - python3-Unidecode - http://pypi.python.org/pypi/Unidecode/ - - PisiLinux Community - admins@pisilinux.org - - Artistic - GPLv2 - library - programming.language.python3 - US-ASCII transliterations of Unicode text - Unicode karakterlerinin US-ASCII harf çevirileri - python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module. - python3-Unidecode, Unicode karakterlerinin US-ASCII harf çevirilerini sağlar. Text::Unidecode Perl modülünün Python diliyle yazılmış halidir. - https://files.pythonhosted.org/packages/cd/31/245d8a384939aa0ee152c76fc62890f79f35fc41cd12839f5df268d9081d/Unidecode-1.2.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-Unidecode/pspec.xml - - - python3-Unidecode - US-ASCII transliterations of Unicode text - - python3 - - - /usr/bin/unidecode - /usr/lib/python3* - /usr/share/doc/python3-Unidecode - - - - - 2021-10-24 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 1.1.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-youtube_dl - https://ytdl-org.github.io/youtube-dl/index.html - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3 - app:console - programming.language.python3 - Youtube Video Downloader - Youtube video indirici. - Youtube Video Downloader - Youtube ve benzeri video oynatan sitelerden video indirmeyi sağlayan bir uygulama. - youtube_dl - https://github.com/ytdl-org/youtube-dl/archive/2021.12.17.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-youtube_dl/pspec.xml - - - python3-youtube_dl - Youtube Video Downloader - - python3-setuptools - python3 - - - /etc/fish - /usr/share/doc/ - /usr/bin - /usr/lib/python3* - /usr/share/man/man1 - /etc/bash_completion.d - /usr/share/applications - - - - - 2022-01-04 - 2021.12.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2021.06.06 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-17 - 2021.06.06 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-04 - 2021.05.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-17 - 2021.01.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-31 - 2020.07.28 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-06-28 - 2020.06.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 2020.05.08 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 2020.03.24 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-11 - 2020.03.08 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 2020.03.01 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 2020.02.16 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 2020.01.24 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 2020.01.15 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-10 - 2020.01.01 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-26 - 2019.12.25 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-10-28 - 2019.10.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-24 - 2019.06.21 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 2018.12.17 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 2018.12.17 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 2018.11.18 - version bump - Aydin Atmaca - aydinatmaca@gmail.com - - - 2018-10-03 - 2018.09.26 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 2018.08.04 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 2018.01.21 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-01 - 2017.01.31 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-08-26 - 2016.08.24.1 - version bump - Metehan Özbek - mthnzbk@gmail.com - - - 2016-08-06 - 2016.08.06 - version bump - Metehan Özbek - admins@pisilinux.org - - - 2016-07-21 - 2016.07.17 - First release - Metehan Özbek - admins@pisilinux.org - - - - - - python3-pypcap - https://github.com/pynetwork/pypcap - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Python3 pcap module - Python3 pcap modülü - This is a simplified object-oriented Python wrapper for libpcap - the current tcpdump.org version, and the WinPcap port for Windows. - python3-pypcap, python3 için basitleştirilmiş, nesne tabanlı bir sarmalayıcı modüldür. - https://pypi.org/packages/source/p/pypcap/pypcap-1.2.3.tar.gz - - pip3 - libpcap-devel - python3-devel - python3-setuptools - - - pypcap-python3.9.patch - - programming/language/python3/python3-pypcap/pspec.xml - - - python3-pypcap - Python3 pcap module - - libpcap - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pypcap - - - - - 2021-10-28 - 1.2.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-13 - 1.2.3 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-cups - http://cyberelk.net/tim/software/pycups - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python3 - Python3 interface to the CUPS API - CUPS programlama arayüzü için Python3 desteği - python3-cups contains python3 bindings to wrap the CUPS API. - python3-cups, CUPS programlama arayüzü için Python3 bağlayıcıları içeren bir pakettir. - https://pypi.org/packages/source/p/pycups/pycups-2.0.1.tar.gz - - cups-devel - python3-devel - - programming/language/python3/python3-cups/pspec.xml - - - python3-cups - Python3 interface to the CUPS API - - cups - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-10-13 - 2.0.1 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-13 - 2.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 2.0.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-15 - 1.9.74 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-19 - 1.9.74 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 1.9.73 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.9.73 - First Relase. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-jedi - https://github.com/davidhalter/jedi - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Awesome autocompletion and static analysis library for python. - Python için otomatik tamamlama ve durağan çözümleme kitaplığı. - Jedi is a static analysis tool for Python that can be used in IDEs/editors. Jedi has a focus on autocompletion and goto functionality. Jedi is fast and is very well tested. It understands Python and stubs on a deep level. - python3-jedi, python için otomatik tamamlama ve durağan çözümleme kitaplığı sunar. - https://github.com/davidhalter/jedi/archive/v0.18.0.tar.gz - https://github.com/davidhalter/typeshed/archive/jedi_v0.16.0.tar.gz - https://github.com/davidhalter/django-stubs/archive/refs/tags/1.7.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-jedi/pspec.xml - - - python3-jedi - Awesome autocompletion and static analysis library for python. - - python3 - python3-parso - - - /usr/lib/python3* - /usr/share/doc/python3-jedi - - - - - 2021-08-21 - 0.18.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 0.17.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 0.17.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-06 - 0.16.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask-gravatar - https://github.com/zzzsochi/Flask-Gravatar/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - Small and simple gravatar usage in Flask. - Flask için küçük ve basit gravatar kullanımı. - python3-flask-gravatar provides small and simple integration gravatar into flask. - python3-flask-gravatar, flask için küçük ve basit gravatar kullanımı sağlar. - https://github.com/zzzsochi/Flask-Gravatar/archive/v0.5.0.tar.gz - - python3-setuptools - python3-devel - pip3 - - programming/language/python3/python3-flask-gravatar/pspec.xml - - - python3-flask-gravatar - Small and simple gravatar usage in Flask. - - python3-flask - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-flask-gravatar - - - - - 2021-10-28 - 0.5.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 0.5.0 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-imdbpy - https://imdbpy.sourceforge.io/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - app - programming.language.python3 - Python bindings for the Internet Movie Database (IMDb) - Python bindings for the Internet Movie Database (IMDb) - Python bindings for the Internet Movie Database (IMDb) - Python bindings for the Internet Movie Database (IMDb) - https://github.com/alberanid/imdbpy/archive/refs/tags/2021.04.18.tar.gz - - python3-devel - python3-lxml - python3-pytest - python3-setuptools - - programming/language/python3/python3-imdbpy/pspec.xml - - - python3-imdbpy - - python3 - python3-lxml - python3-pytest - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 2021.04.18 - Rebuild - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-25 - 2021.04.18 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-sane - https://python-sane.readthedocs.io/en/latest/ - - Pisi Linux Admins - admin@pisilinux.org - - MIT - app - programming.language.python3 - Python interface to the SANE scanner and frame grabber. - Python interface to the SANE scanner and frame grabber. - Python interface to the SANE scanner and frame grabber. - Python interface to the SANE scanner and frame grabber. - https://github.com/python-pillow/Sane/archive/refs/tags/v2.9.1.tar.gz - - python3-devel - python3-setuptools - sane-backends-devel - - programming/language/python3/python3-sane/pspec.xml - - - python3-sane - - python3 - sane-backends - - - /usr/lib - /usr/share/doc - - - - - 2021-04-26 - 2.9.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-alembic - https://bitbucket.org/zzzeek/alembic - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A database migration tool for SQLAlchemy. - 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.7.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-alembic/pspec.xml - - - python3-alembic - A database migration tool for SQLAlchemy. - - python3-setuptools - python3-sqlalchemy - python3-dateutil - python3-editor - python3-mako - python3 - - - /usr/share/doc/python3-alembic - /usr/bin/alembic - /usr/lib/python3* - - - - - 2021-10-28 - 1.7.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-27 - 1.4.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 1.4.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 1.4.0 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-filelock - https://github.com/benediktschmitt/py-filelock - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A platform independent file lock for Python. - Python için platform bağımsız dosya kilidi. - python3-filelock contains a single module, which implements a platform independent file lock in Python, which provides a simple way of inter-process communication. - python3-filelock, python için platform bağımsız dosya kilidi olan tek bir modül içerir. - https://github.com/tox-dev/py-filelock/archive/refs/tags/3.3.1.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-filelock/pspec.xml - - - python3-filelock - A platform independent file lock for Python. - - python3 - - - /usr/share/doc/python3-filelock - /usr/lib/python3* - - - - - 2021-10-28 - 3.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-03 - 3.0.12 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyserial - https://pyserial.readthedocs.io/en/latest/shortintro.html - - fury - uglyside@yandex.ru - - BSD-3-Clause - library - programming.language.python3 - This module encapsulates the access for the serial port. - This module encapsulates the access for the serial port. It provides backends for Python running on Windows, OSX, Linux, BSD (possibly any POSIX compliant system) and IronPython. The module named “serial” automatically selects the appropriate backend. - https://files.pythonhosted.org/packages/source/p/pyserial/pyserial-3.5.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pyserial/pspec.xml - - - python3-pyserial - - python3 - python3-urllib3 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 3.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-03 - 3.5 - First build - fury - uglyside@yandex.ru - - - - - - python3-beautifulsoup4 - https://www.crummy.com/software/BeautifulSoup/index.html - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - HTML/XML parser for quick-turnaround applications like screen-scraping - 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.10.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-beautifulsoup4/pspec.xml - - - python3-beautifulsoup4 - HTML/XML parser for quick-turnaround applications like screen-scraping - - python3 - python3-soupsieve - - - /usr/lib/python3* - /usr/share/doc/python3-beautifulsoup4 - - - - - 2021-10-28 - 4.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-19 - 4.9.1 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-08 - 4.9.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 4.8.2 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-24 - 4.8.1 - Rebuilt, split packages and fix dependency - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-21 - 4.8.1 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-05 - 4.4.1 - Version bump. - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2013-11-05 - 4.3.2 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2013-09-04 - 4.3.1 - First release - Fatih Turgel - hitaf@pisilinux.org - - - - - - python3-gtts-token - https://github.com/Boudewijn26/gTTS-token - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - Google Text to Speech token - Google Text to Speech token - A python implementation of the token validation of Google Translate. - A python implementation of the token validation of Google Translate. - https://files.pythonhosted.org/packages/source/g/gTTS-token/gTTS-token-1.1.4.tar.gz - - python3-devel - python3-setuptools - python3-requests - - programming/language/python3/python3-gtts-token/pspec.xml - - - python3-gtts-token - Google Text to Speech token - - python3 - - - /usr/bin* - /usr/lib/python3* - /usr/share/doc/python3-gtts-token - - - - - 2022-01-23 - 1.1.4 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - dbus-python3 - https://dbus.freedesktop.org/doc/dbus-python/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - AFL-2.1 - library - programming.language.python3 - D-Bus Python bindings - D-Bus için Python bağlayıcıları - dbus-python provides a Python module which wraps the D-Bus programming API. - dbus-python, D-Bus için Python bağlayıcılarını içerir. - https://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.18.tar.gz - - dbus-glib-devel - libpcre-devel - python3-devel - glib2-devel - dbus-devel - - programming/language/python3/dbus-python3/pspec.xml - - - dbus-python3 - D-Bus Python3 bindings - programming.language.python3 - - dbus-glib - python3 - glib2 - dbus - - - /usr/lib/python3* - - - - - 2021-10-22 - 1.2.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-05 - 1.2.16 - Rebuild dbus. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 1.2.16 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-12 - 1.2.14 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2018-08-03 - 1.2.4 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-05-01 - 1.2.4 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.2.4 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 1.2.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - python3-pkgconfig - https://github.com/matze/pkgconfig - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A Python interface to the pkg-config command line tool. - pkg-config komut satırı aracı için python arayüzü. - pkgconfig is a Python module to interface with the pkg-config command line tool and supports Python 2.6+ and 3.3+.. - python3-pkgconfig, pkg-config komut satırı aracı için python arayüzü sunar. - https://pypi.io/packages/source/p/pkgconfig/pkgconfig-1.5.5.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-pkgconfig/pspec.xml - - - python3-pkgconfig - A Python interface to the pkg-config command line tool. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pkgconfig - - - - - 2021-10-28 - 1.5.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-20 - 1.5.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyzmq - https://github.com/zeromq/pyzmq/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - PyZMQ: Python3 bindings for zeromq - PyZMQ: ZeroMQ için Python3 bağlayıcıları - This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation. - python3-pyzmq, ZeroMQ için Python3 bağlayıcıları içerir. - https://github.com/zeromq/pyzmq/archive/v22.3.0.tar.gz - - python3-setuptools - python3-devel - zeromq-devel - cython3 - - programming/language/python3/python3-pyzmq/pspec.xml - - - python3-pyzmq - PyZMQ: Python3 bindings for zeromq - - python3 - zeromq - - - /usr/share/doc/python3-pyzmq - /usr/lib/python3* - - - - - 2021-10-28 - 22.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 19.0.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 19.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-31 - 18.1.1 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - python3-sphinx-removed-in - https://pypi.org/project/sphinx-removed-in/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app - programming.language.python3 - versionremoved and removed-in directives for Sphinx - versionremoved and removed-in directives for Sphinx - versionremoved and removed-in directives for Sphinx - versionremoved and removed-in directives for Sphinx - https://files.pythonhosted.org/packages/85/cc/69f0d8a3cef9fed0faa0c103500d6fd8b2dc1d53e98095fc9b1ac9268e38/sphinx-removed-in-0.2.1.tar.gz - - python3-devel - python3-sphinx - python3-setuptools - - programming/language/python3/python3-sphinx-removed-in/pspec.xml - - - python3-sphinx-removed-in - - python3 - python3-sphinx - - - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-10-14 - 0.2.1 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2021-10-22 - 0.2.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - python3-paramiko - https://github.com/paramiko/paramiko/ - - PisiLinux Community - admins@pisilinux.org - - LGPL - library - programming.language.python3 - SSH2 implementation for Python - Python3 için SSH2 Protokolü Uygulaması - python-paramiko is a module for python 2.2 (or higher) that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. - Paramiko, python 2.2 ya da üzeri için, uzak makinelere güvenli (şifrelenmiş ve doğrulanmış) bağlantılar kurmak amacıyla SSH2 protokolünü uygulayan bir Python Modülüdür. - paramiko es un módulo para python 2.2 (o posterior) que implementa el protocolo SSH2 para conexiones seguras (encriptado y autenticado) con equipos remotos. - https://github.com/paramiko/paramiko/archive/2.8.0.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-paramiko/pspec.xml - - - python3-paramiko - Paramiko module for python3 - - python3-cryptography - python3-pynacl - python3-bcrypt - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-paramiko - - - - - 2021-10-28 - 2.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-13 - 2.7.1 - Version bump and Rebuilt - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-22 - 2.6.0 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-03-31 - 1.16.0 - Version bump, rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2013-11-19 - 1.12.0 - Version bump - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2012-11-15 - 1.7.7.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - python3-isodate - https://github.com/gweis/isodate/ - - fury - uglyside@yandex.ru - - BSD - library - programming.language.python3 - ISO 8601 date/time parser. - This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option. - https://github.com/gweis/isodate/archive/refs/tags/0.6.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-isodate/pspec.xml - - - python3-isodate - - python3 - - - /usr/lib - /usr/share - - - - - 2022-01-18 - 0.6.1 - Version bump - fury - uglyside@yandex.ru - - - 2021-10-28 - 0.6.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-18 - 0.6.0 - First build - fury - uglyside@yandex.ru - - - - - - python3-flask-sqlalchemy - https://github.com/pallets/flask-sqlalchemy - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - Adds SQLAlchemy support to Flask. - Flask uygulamanıza SQLAlchemy desteği ekler. - Flask-SQLAlchemy is an extension for Flask that adds support for SQLAlchemy to your application. It aims to simplify using SQLAlchemy with Flask by providing useful defaults and extra helpers that make it easier to accomplish common tasks. - python3-flask-sqlalchemy, flask uygulamalarınıza SQLAlchemy desteği ekler. - https://github.com/pallets/flask-sqlalchemy/archive/2.5.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-flask-sqlalchemy/pspec.xml - - - python3-flask-sqlalchemy - Adds SQLAlchemy support to Flask. - - python3 - python3-flask - python3-sqlalchemy - - - /usr/lib/python3* - /usr/share/doc/python3-flask-sqlalchemy - - - - - 2021-10-22 - 2.5.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-29 - 2.5.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-22 - 2.4.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 2.4.1 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - py3game - http://www.pygame.org/ - - Blue Devil - bluedevil@sctzine.com - - LGPLv2.1 - library - programming.language.python3 - Python3 game library - Python3 oyun kütüphanesi - Liens (bindings) Python pour dsl et autres librairies facilitant la création de jeux. - Python bindings to sdl and other libs that facilitate game production. - Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri içerir. - Acceso con Python a sdl y otras librerías que facilitan produccion de juegos - https://github.com/pygame/pygame/archive/2.0.1.tar.gz - - libjpeg-turbo-devel - python3-setuptools - sdl2-image-devel - sdl2-mixer-devel - portmidi-devel - freetype-devel - sdl2-ttf-devel - libpng-devel - libsdl2-devel - python3-devel - libX11-devel - - programming/language/python3/py3game/pspec.xml - - - py3game - Python3 game library - - libjpeg-turbo - sdl2-image - sdl2-mixer - freetype - portmidi - sdl2-ttf - python3 - libpng - libsdl2 - libX11 - - - /usr/lib - - - - py3game-devel - Development files for python3 game library - py3game için geliştirme dosyaları - py3game-devel, py3game için geliştirme dosyalarını içerir. - - py3game - sdl2-image-devel - sdl2-mixer-devel - sdl2-ttf-devel - - - /usr/include - /usr/share/doc/py3game/examples/* - - - - py3game-doc - Documentation files for python3 game library - - py3game - - - /usr/share/doc/py3game/README.rst - - - - - 2021-10-22 - 2.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-20 - 1.9.6 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-dateutil - https://github.com/dateutil/dateutil - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - python3-dateutil provides powerful extensions to datetime - 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.2.tar.gz - - python3-setuptools-scm - python3-setuptools - python3-devel - - programming/language/python3/python3-dateutil/pspec.xml - - - python3-dateutil - python3-dateutil provides powerful extensions to datetime - - python3-six - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-dateutil - - - - - 2021-10-28 - 2.8.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-24 - 2.8.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-ifaddr - https://github.com/pydron/ifaddr - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python3 Library to enumerate all network interfaces. - Sistemdeki tüm ağ kartlarının IP addreslerini numaralandırıp sıralayabilen bir python3 kitaplığıdır. - python3-ifaddr is a small Python library that allows you to find all the IP addresses of the computer. - python3-ifaddr, bilgisayarınızda bulunan tüm ağ kartlarının ip adreslerini döndürebilen bir python3 kitaplığıdır. - https://github.com/pydron/ifaddr/archive/0.1.7.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-ifaddr/pspec.xml - - - python3-ifaddr - Python3 Library to enumerate all network interfaces. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-ifaddr - - - - - 2020-07-21 - 0.1.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 0.1.7 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-25 - 0.1.6 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - python3-decorator - https://github.com/micheles/decorator - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Python3 module to simplify the usage of decorators - Dekoratör kullanımını kolaylaştıran python modulü - python-decorator simplifies the usage of decorators for the average programmer. - python3-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. - https://github.com/micheles/decorator/archive/5.0.9.tar.gz - - python3-setuptools - python3-nose - - programming/language/python3/python3-decorator/pspec.xml - - - python3-decorator - Python3 module to simplify the usage of decorators - - python3 - - - /usr/share/doc/python3-decorator - /usr/lib/python3* - - - - - 2021-10-22 - 5.0.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 4.4.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-27 - 4.4.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 4.3.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 4.2.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 4.0.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 4.0.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 4.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-ecdsa - https://github.com/warner/python-ecdsa - - Blue DeviL - bluedevil@sctzine.com - - MIT - library - programming.language.python - ECDSA implementation for Python - Python3 için ECDSA Kriptografi Uygulaması - This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm), implemented purely in Python, released under the MIT license. With this library, you can quickly create keypairs (signing key and verifying key), sign messages, and verify the signatures. The keys and signatures are very short, making them easy to handle and incorporate into other protocols. - Python3 için kolay kullanımlı, MIT lisanslı ECDSA kriptografi (Elliptic Curve Digital Signature Algorithm) modülü. Bu kitaplık ile hızlıca anahtar oluşturabilir (giriş ahahtarı ve doğrulama anahtarı), iletileri imzalayabilir ve imzalarınızı doğrulayabilirsiniz. Anahtar ile imzalar çok kısadır ve diğer protokollere bütünlleştirmek oldukça kolaydır. - https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.17.0.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-ecdsa/pspec.xml - - - python3-ecdsa - ECDSA module for python - - python3-six - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-ecdsa - - - - - 2021-10-25 - 0.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-23 - 0.15 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-21 - 0.14.1 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-01 - 0.13 - First Pisi Release, built with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - python3-pypdf2 - https://mstamy2.github.com/PyPDF2 - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.language.python3 - A utility to read and write pdfs with Python - Python3 pypdf2 modülü - PyPDF2 is a pure-python PDF toolkit originating from the pyPdf project. PyPDF2 can extract data from PDF files, or manipulate existing PDFs to produce a new file. PyPDF2 is compatible with Python versions 2.6, 2.7, and 3.2 - 3.5. - PyPDF2 artık güncellenmeyen pypdf aracının devam projesidir. PyPDF2 PDF dosyalarından veri çıkartabilir veya eski PDF'i değistirerek yeni bir PDF oluşturabilir. - https://github.com/mstamy2/PyPDF2/archive/1.26.0.tar.gz - - python3-devel - - programming/language/python3/python3-pypdf2/pspec.xml - - - python3-pypdf2 - Python3 pyPDF2 module - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pypdf2 - - - - - 2021-10-28 - 1.26.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-13 - 1.26.0 - Rebuilt and split packages - Blue Devil - bluedevil@sctzine.com - - - - - - python3-markups - https://github.com/retext-project/pymarkups - - Stefan Gronewold - groni@pisilinux.org - - BSD - library - programming.language.python3 - Wrapper around various text markups - Çesitli metin "markup"ları için sarmalayıcı python yordamları. - This module provides a wrapper around various text markup languages. - python3-markups, çesitli markup dilleri için sarmalayıcı python yordamları sunar. - https://github.com/retext-project/pymarkups/archive/3.1.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-markups/pspec.xml - - - python3-markups - Wrapper around various text markups - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 3.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 3.0.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-08-30 - 2.6.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-01 - 2.6.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-01 - 2.6.8 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-11-21 - 2.6.7 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - python3-setproctitle - https://github.com/dvarrazzo/py-setproctitle - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - MIT - library - programming.language.python3 - Allows a python process to change its process title - Allows a python process to change its process title - https://github.com/dvarrazzo/py-setproctitle/archive/refs/tags/version-1.2.2.tar.gz - - procps - python3-devel - python3-pytest - python3-setuptools - - programming/language/python3/python3-setproctitle/pspec.xml - - - python3-setproctitle - - procps - python3 - python3-pytest - - - /usr/lib - /usr/share/doc - - - - - 2021-10-25 - 1.2.2 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-25 - 1.2.2 - Version bump - Pisi Linux Admins - admin@pisilinux.org - - - 2020-03-23 - 1.1.10 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - python3-zipp - https://github.com/jaraco/zipp - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - A pathlib-compatible Zipfile object wrapper. - pathlib-uyumlu ZipDosyası sarmalayıcı python modülü - A pathlib-compatible Zipfile object wrapper. A backport of the Path object. - python3-zipp, pathlib-uyumlu ZipDosyası sarmalayıcı python modülü, path nesnesinin geriye dönüklüğünü sağlar. - https://files.pythonhosted.org/packages/38/f9/4fa6df2753ded1bcc1ce2fdd8046f78bd240ff7647f5c9bcf547c0df77e3/zipp-3.4.1.tar.gz - - python3-setuptools-scm - python3-setuptools - python3-devel - python3-toml - - programming/language/python3/python3-zipp/pspec.xml - - - python3-zipp - Python development support library (note: maintenance only) - - python3 - - - /usr/share/doc/python3-zipp - /usr/lib/python3* - - - - - 2021-10-22 - 3.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 3.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 3.1.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 3.0.0 - Ver. bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 2.2.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-MarkupSafe - https://pypi.python.org/pypi/MarkupSafe - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.language.python3 - Implements a XML/HTML/XHTML Markup safe string for Python - XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi - python3-MarkupSafe, implements a unicode subclass that supports HTML strings. - python3-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar. - https://files.pythonhosted.org/packages/bf/10/ff66fea6d1788c458663a84d88787bae15d45daa16f6b3ef33322a51fc7e/MarkupSafe-2.0.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-MarkupSafe/pspec.xml - - - python3-MarkupSafe - - /usr/lib/python3.* - /usr/share/doc - - - - - 2021-10-22 - 2.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-08 - 1.1.1 - Rebuild for new python - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-08 - 1.1.1 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-20 - 1.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - - - - python3-odfpy - https://pypi.org/project/odfpy/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - programming.language.python3 - Python API and tools to manipulate OpenDocument files - Python API and tools to manipulate OpenDocument files - Python API and tools to manipulate OpenDocument files - Python API and tools to manipulate OpenDocument files - https://files.pythonhosted.org/packages/97/73/8ade73f6749177003f7ce3304f524774adda96e6aaab30ea79fd8fda7934/odfpy-1.4.1.tar.gz - - python3-devel - python3-defusedxml - python3-setuptools - - programming/language/python3/python3-odfpy/pspec.xml - - - python3-odfpy - - python3 - python3-defusedxml - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2021-10-28 - 1.4.1 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-04-26 - 1.4.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - python3-PyAudio - http://people.csail.mit.edu/hubert/pyaudio/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.language.python3 - Python Bindings for PortAudio. - Python Bindings for PortAudio. - ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) - ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) - https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz - - python3-devel - portaudio-devel - - programming/language/python3/python3-PyAudio/pspec.xml - - - python3-PyAudio - Python Bindings for PortAudio. - - python3 - portaudio - - - /usr/lib/python3* - /usr/share/doc/python3-PyAudio - - - - - 2022-01-23 - 0.2.11 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-distlib - https://bitbucket.org/pypa/distlib/ - - Blue Devil - bluedevil@sctzine.com - - PSF - library - programming.language.python3 - Low-level components of distutils2/packaging. - distutils2/packaging'in düşük seviye bileşenleri. - python3-distlib Low-level parts of packaging/distutils2 which implement the relevant PEPs and which could be used by third-party packaging tools to achieve interoperability, enhanced with additional features for dependency resolution, package resource management and more. - python3-distlib, distutils2/packaging'in düşük seviye bileşenlerini içerir. - https://bitbucket.org/pypa/distlib/get/0.3.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-distlib/pspec.xml - - - python3-distlib - Low-level components of distutils2/packaging. - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-distlib - - - - - 2021-10-22 - 0.3.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-22 - 0.3.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-03 - 0.3.0 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pyttsx3 - https://github.com/nateshmbhat/pyttsx3 - - PisiLinux Community - admins@pisilinux.org - - MPL2 - library - programming.language.python3 - pyttsx3 is a text-to-speech conversion library in Python. - pyttsx3 is a text-to-speech conversion library in Python. - pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. - pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. - https://github.com/nateshmbhat/pyttsx3/archive/v.2.90.tar.gz - - python3-devel - python3-setuptools - espeak-devel - python3-sphinx - - programming/language/python3/python3-pyttsx3/pspec.xml - - - python3-pyttsx3 - pyttsx3 is a text-to-speech conversion library in Python. - - python3 - espeak - python3-sphinx - - - /usr/lib/python3* - /usr/share/doc/python3-pyttsx3 - - - - - 2022-01-23 - 2.90 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - python3-ipaddress - https://github.com/phihag/ipaddress - - Blue DeviL - bluedevil@sctzine.com - - PSFL - library - programming.language.python3 - Python 3.3+'s ipaddress for older Python versions - Python3.2 ve daha düşük sürümler için ipaddress modülü - python-ipaddress ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. This module is a backport for python 2.7 and python versions up to 3.2. - python-ipaddress modülü Python3.3 ile gelen ipaddress modülünün python 2.7 ve python 3.2'ye kadar olan sürümlerinde de çalışmasını sağlar. - https://github.com/phihag/ipaddress/archive/v1.0.23.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-ipaddress/pspec.xml - - - python3-ipaddress - ipaddress module for python3.2- - - python3 - - - /usr/lib - /usr/share/doc - - - - - 2021-08-21 - 1.0.23 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-25 - 1.0.23 - First release - Blue DeviL - bluedevil@sctzine.com - - - - - - py3parted - https://github.com/dcantrell/pyparted - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - programming.language.python3 - Python3 bindings for parted - Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. - pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. - pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. - pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. - https://github.com/dcantrell/pyparted/archive/v3.11.7.tar.gz - - parted-devel - python3-decorator - python3-devel - - programming/language/python3/py3parted/pspec.xml - - - py3parted - Python3 bindings for parted - - python3-decorator - python3 - parted - - - /usr/lib - /usr/share/doc - - - - - 2021-10-22 - 3.11.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-11 - 3.11.6 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 3.11.4 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 3.11.3 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-04-26 - 3.11.2 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-31 - 3.11.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-15 - 3.10.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 3.10.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.10.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-10 - 3.10.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - python3-hstspreload - https://github.com/sethmlarson/hstspreload - - Blue Devil - bluedevil@sctzine.com - - BSD3 - library - programming.language.python3 - Chromium HSTS Preload list as a Python package and updated daily. - Chromium HSTS Preload listesi python paketi gibi günlük güncellenir. - Chromium HSTS Preload list as a Python package and updated daily. The package provides a single function: in_hsts_preload() which takes an IDNA-encoded host and returns either True or False regarding whether that host should be only accessed via HTTPS. - python3-hstspreload, "in_hsts_preload()" adında tek bir yordam sağlar. Bu yordam IDNA-kodlanmış alanı alır ve HTTPS ile erişilip erişilmeme durumuna göre doğru/yanlış bilgisi döndürür. - https://github.com/sethmlarson/hstspreload/archive/2021.10.1.tar.gz - - python3-devel - python3-setuptools - - programming/language/python3/python3-hstspreload/pspec.xml - - - python3-hstspreload - Chromium HSTS Preload list as a Python package and updated daily. - - python3 - - - /usr/share/man - /usr/lib/python3* - /usr/share/doc/python3-hstspreload - - - - - 2021-10-28 - 2021.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-30 - 2020.8.25 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-22 - 2020.4.21 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-07 - 2020.4.7 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-27 - 2020.3.25 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-18 - 2020.3.17 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-04 - 2020.3.4 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-22 - 2020.2.21 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-21 - 2020.2.20 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-18 - 2020.2.15 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-06 - 2020.2.5 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-23 - 2020.1.22 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-15 - 2020.1.15 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-py - https://github.com/pytest-dev/py - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.language.python3 - Python development support library (note: maintenance only) - Python geliştirme destek kitaplığı - The python3-py lib is a Python development support library. - python3-py kitaplığı python geliştirmek icin destek kitaplığı sunar. - https://files.pythonhosted.org/packages/0d/8c/50e9f3999419bb7d9639c37e83fa9cdcf0f601a9d407162d6c37ad60be71/py-1.10.0.tar.gz - - pip3 - python3-devel - python3-setuptools - python3-setuptools-scm - - programming/language/python3/python3-py/pspec.xml - - - python3-py - Python development support library (note: maintenance only) - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-py - - - - - 2021-10-22 - 1.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 1.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-21 - 1.9.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 1.8.1 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-flask - https://palletsprojects.com/p/flask/ - - Blue Devil - bluedevil@sctzine.com - - BSDv3 - library - programming.language.python3 - The Python micro framework for building web applications. - Ağ uygulamaları geliştirmek için python mikroçatısı. - Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja and has become one of the most popular Python web application frameworks. - python3-flask, hafif bir WSGI ağ uygulamaları çatısıdır. Flask çabuk ve kolayca, aynı zamanda basitten zora doğru ağ uygulamaları geliştirmek için tasarlanmıştır. - https://github.com/pallets/flask/archive/1.1.4.tar.gz - - python3-setuptools - python3-devel - - programming/language/python3/python3-flask/pspec.xml - - - python3-flask - The Python micro framework for building web applications. - - python3-itsdangerous - python3-setuptools - python3-werkzeug - python3-Jinja2 - python3-click - python3 - - - /usr/share/doc/python3-flask - /usr/bin/flask - /usr/lib/python3* - - - - - 2021-10-25 - 1.1.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-29 - 1.1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-07 - 1.1.2 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-14 - 1.1.1 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - python3-pylibacl - https://pylibacl.k1024.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.language.python3 - This python 2.2+ extension module allows you to manipulate the POSIX.1e Access Control Lists present in some os/filesystem combinations - POSIX.1e Access Control Listelerini manipüle eden bir python 2.2+ eklentisi. - Ce module d'extension de python 2.2+ permet de manipuler les Listes de Contrôle d'Accès POSIX.1e présentes dans certaines combinaisons de systèmes d'exploitations/systèmes de fichiers. - python-libacl is a C extension module for Python which implements POSIX ACLs manipulation. It is a wrapper on top of the systems's acl C library. - Bu python 2.2+ eklentisi sayesinde bazı işletim sistemi/dosya sistemi kombinasyonlarındaki POSIX.1e Erişim Kontrol Listeleri işlenebilir. - https://pylibacl.k1024.org/downloads/pylibacl-0.6.0.tar.gz - - acl-devel - python3-devel - python3-setuptools - - programming/language/python3/python3-pylibacl/pspec.xml - - - python3-pylibacl - This python 2.2+ extension module allows you to manipulate the POSIX.1e Access Control Lists present in some os/filesystem combinations - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-pylibacl - - - - - 2021-10-28 - 0.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-13 - 0.5.4 - Rebuilt and split packages - Blue DeviL - bluedevil@sctzine.com - - - 2019-11-21 - 0.5.4 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2016-04-03 - 0.5.3 - Version bump, rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2013-11-16 - 0.5.1 - Rebuild - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - 2010-04-30 - 0.5.1 - First release - Erdinç Gültekin - admins@pisilinux.org - - - - - - lua - http://www.lua.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.language - A light-weight programming language - Hafif bir programlama dili - lua is a powerful light-weight programming language designed for extending applications. - lua, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. - Lua es un lenguaje de programación liviano y potente con todas las herramientas imaginables - http://www.lua.org/ftp/lua-5.3.6.tar.gz - - lua.pc - - - readline-devel - - - liblua.so.patch - - programming/language/lua/pspec.xml - - - lua - - readline - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/pixmaps - - - lua.png - - - - lua-devel - Development files for lua - lua için geliştirme dosyaları - - lua - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-05 - 5.3.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 5.3.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-03 - 5.3.5 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 5.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-08 - 5.3.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-02 - 5.3.4 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-14 - 5.3.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-03 - 5.2.4 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - scratch - https://scratch.mit.edu - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - app:gui - programming.language - Programming language learning environment for stories, games, music and art. - Çocuklar için, sanat, müzik ve öyküler ile geliştirme yapılan programlama dili ve ortamı. - Scratch is a programming language that makes it easy to create your own interactive stories, animations, games, music, and art -- and share your creations on the web. - Scratch, çcuklar için sanat, müzik ve öyküler ile geliştirme yapılan programlama dili ve ortamı sunar. - https://download.scratch.mit.edu/scratch-1.4.0.7.src.tar.gz - - gtk2-devel - pango-devel - - programming/language/scratch/pspec.xml - - - scratch - Programming language learning environment for stories, games, music and art. - - gtk2 - pango - squeak-vm - shared-mime-info - desktop-file-utils - - - /usr/share/ - /usr/lib/ - /usr/bin - /usr/share/doc/fplll - - - - - 2020-05-21 - 1.4.0.7 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - libsigc++ - https://libsigcplusplus.github.io/libsigcplusplus/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Système de rappels à types sûrs (typesafe callback) pour C++. - Typesafe signal framework for C++ - C++ için sinyal altyapısı - libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. - libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır. - mirrors://gnome/libsigc++/2.10/libsigc++-2.10.8.tar.xz - - mm-common - - programming/misc/libsigc++/pspec.xml - - - libsigc++ - - libgcc - - - /usr/lib - /usr/share/doc - - - - libsigc++-devel - Development files for libsigc++ - libsigc++ için geliştirme dosyaları - - libsigc++ - - - /usr/include - /usr/lib/sigc++*/include - /usr/lib/pkgconfig - - - - libsigc++-docs - Development documents for libsigc++ - libsigc++ için geliştirme belgeleri - - /usr/share/doc/libsigc++/html - - - - - 2022-06-01 - 2.10.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 2.10.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 2.10.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-12 - 2.10.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 2.10.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.10.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-21 - 2.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - tinyxml2 - http://www.grinninglizard.com/tinyxml2/ - - Pisi Linux Admins - admins@pisilinux.org - - zlib - library - programming.misc - Simple XML parser made for easy integration - Simple XML parser made for easy integration - Simple XML parser made for easy integration - Simple XML parser made for easy integration - https://github.com/leethomason/tinyxml2/archive/7.1.0.tar.gz - - cmake - - programming/misc/tinyxml2/pspec.xml - - - tinyxml2 - - libgcc - - - /usr/lib - /usr/share/doc - - - - tinyxml2-devel - Development files for tinyxml2 - - tinyxml2 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2020-01-15 - 7.1.0 - Version bump - Pisi Linux Admins - admins@pisilinux.org - - - 2018-08-13 - 6.2.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - 2017-10-18 - 5.0.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - xsd - http://www.codesynthesis.com/products/xsd - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - An open-source, cross-platform W3C XML Schema to C++ data binding compiler - Kompilator schematów W3C XML do wiązań danych C++ - CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. You can then access the data stored in XML using types and functions that semantically correspond to your application domain rather than dealing with intricacies of reading and writing XML. - CodeSynthesis XSD to mający otwarte źródła wieloplatformowy kompilator schematów W3C XML do wiązań danych C++. Na podstawie specyfikacji instancji XML (schematu XML) generuje klasy C++ reprezentujące podany słownik, a także kod analizujący i serializujący. Następnie można odwoływać się do danych zapisanych w XML-u przy użyciu typów i funkcji semantycznie odpowiadających działaniu aplikacji, bez zajmowania się skomplikowaniem odczytu i zapisu XML-a. - https://codesynthesis.com/~boris/tmp/xsd/4.1.0.a11/xsd-4.1.0.a11+dep.tar.bz2 - - xerces-c-devel - boost-devel - ghostscript-devel - - programming/misc/xsd/pspec.xml - - - xsd - - xerces-c - boost - - - /usr/bin - /usr/share/man - - - - xsd-devel - Development files for xsd - xsd için geliştirme dosyaları - Pliki nagłówkowe xsd - - xsd - - - /usr/include - /usr/lib/pkgconfig - - - - xsd-docs - Document files for xsd - - xsd - - - /usr/share/doc - - - - - 2021-03-12 - 4.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-09 - 4.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 4.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-14 - 4.0.0 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-17 - 4.0.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 4.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-24 - 4.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - npth - http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - New portable threads library - Yeni GNU Taşınabilir iş parçacıkları kitaplığı - Un librairie de threads portable pour les plateformes Unix. Elle permet la synchronisation non-préemptive pour l'exécution de threads ("multithreading") au sein d'applications serveur. - is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems. - Pth Unix platformları için derlenmiş taşınabilir kitaplığıdır. Bir çok iç sunucu uygulamalarının yerine getirilmesi işlerinin öncelikli olmayan planlamasını yapar. - ftp://ftp.gnupg.org/gcrypt/npth/npth-1.6.tar.bz2 - programming/misc/npth/pspec.xml - - - npth - - /usr/lib - /usr/share/doc - - - - npth-devel - Development files for pth - npth için geliştirme dosyaları - - npth - - - /usr/bin/npth-config - /usr/include - /usr/share/aclocal - /usr/share/man - - - - - 2020-01-19 - 1.6 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2018-08-03 - 1.5 - Rebuild. - Mustafa Cianasal - muscnsl@gmail.com - - - 2018-02-21 - 1.5 - Version Bump - Mustafa Cianasal - muscnsl@gmail.com - - - 2017-03-05 - 1.3 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-12 - 1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libgsf - http://www.gnome.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - programming.misc - Gnome structured file library - Gnome yapılandırılmış dosya kitaplığı - The libgsf is a library for reading and writing structured files (eg MS OLE and Zip). - Libgsf MS, OLE ve Zip gibi yapılandırılmış dosyaları okuyup yazmaya yarayan bir kitaplığıdır. - mirrors://gnome/libgsf/1.14/libgsf-1.14.49.tar.xz - - libbonobo-devel - gtk2-devel - python-gtk-devel - orbit2-devel - glib2-devel - libxml2-devel - intltool - gettext-devel - perl - gobject-introspection-devel - gtk-doc - python-six - gdk-pixbuf-devel - - programming/misc/libgsf/pspec.xml - - - libgsf - app:console - library - - zlib - bzip2 - glib2 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/thumbnailers/gsf-office.thumbnailer - /usr/share/gir-1.0/Gsf-1.gir - /usr/share/man - - - - libgsf-gnome - Gnome support for libgsf - libgsf için Gnome desteği - app:console - library - - libgsf - gdk-pixbuf - - - /etc - /usr/bin/gsf-office-thumbnailer - /usr/lib/libgsf-gnome* - /usr/lib/python*/site-packages/gsf/gnome* - /usr/share/man/man1/gst-office-thumbnailer* - - - - libgsf-docs - Libgsf reference documents - libgsf referans belgeleri - data:doc - - libgsf - - - /usr/share/doc - /usr/share/gtk-doc - - - - libgsf-devel - Development files for libgsf - libgsf paketi geliştirme dosyaları - library - - libgsf - libgsf-gnome - libbonobo-devel - glib2-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-06-01 - 1.14.49 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-28 - 1.14.48 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-25 - 1.14.47 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.14.44 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-01 - 1.14.41 - Version Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 1.14.31 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-07 - 1.14.31 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - libsoup3 - http://live.gnome.org/LibSoup - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - An HTTP library implementation in C - libsoup is an HTTP client/server library for GNOME. - https://download.gnome.org/sources/libsoup/3.0/libsoup-3.0.6.tar.xz - - meson - libgcrypt-devel - gtk-doc - mit-kerberos - python3-devel - glib2-devel - libxml2-devel - sqlite-devel - intltool - gettext-devel - vala-devel - libpsl-devel - zlib-devel - mit-kerberos-devel - python-six - glib-networking - sysprof-devel - libnghttp2-devel - gobject-introspection-devel - - programming/misc/libsoup3/pspec.xml - - - libsoup3 - - glib2 - libxml2 - sqlite - libpsl - zlib - libnghttp2 - mit-kerberos - glib-networking - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/vala - /usr/share/locale/ - /usr/lib/girepository-1.0/Soup-2.4.typelib - - - - libsoup3-docs - libsoup reference documents - data:doc - - libsoup3 - - - /usr/share/gtk-doc - - - - libsoup3-devel - Development files for libsoup3 - - zlib-devel - glib2-devel - sqlite-devel - libpsl-devel - libxml2-devel - sysprof-devel - libnghttp2-devel - gobject-introspection-devel - libsoup3 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2022-05-31 - 3.0.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-06 - 3.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 3.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-26 - 3.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-08 - 2.99.8 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - gtest - http://code.google.com/p/googletest/ - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - programming.misc - GoogleTest - Google Testing and Mocking Framework - Google C++ test çatısı - Google's framework for writing C++ tests on a variety of platforms (GNU/Linux, Mac OS X, Windows, Windows CE, and Symbian). Based on the xUnit architecture. Supports automatic test discovery, a rich set of assertions, user-defined assertions, death tests, fatal and non-fatal failures, various options for running the tests, and XML test report generation. - gtest, birçok platformda C++ testleri yazmayı sağlayan bir test çatısıdır. - https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz - - cmake - python3-devel - - programming/misc/gtest/pspec.xml - - - gtest - - libgcc - python3 - - - /usr/lib/libgtest* - /usr/lib/libgmock* - - - - gtest-devel - Development files for gtest - gtest için geliştirme dosyaları - - gtest - - - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include - - - - - 2022-05-03 - 1.11.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - acorn - https://github.com/acornjs/acorn - - Blue Devil - bluedevil@sctzine.com - - MIT - app:console - library - programming.misc - A tiny, fast JavaScript parser, written completely in JavaScript. - Tamamen javascript ile yazılmış küçük ve hızlı bir Javascript çözümleyicisi. - acorn is a tiny, fast JavaScript parser, written completely in JavaScript. - acorn kitaplığı, tamamen javascript ile yazılmış küçük ve hızlı bir Javascript çözümleyicisi sunar. - https://registry.npmjs.org/acorn/-/acorn-8.0.1.tgz - - rsync - nodejs - - programming/misc/acorn/pspec.xml - - - acorn - A tiny, fast JavaScript parser, written completely in JavaScript - - nodejs - - - /usr/lib - /usr/share/doc - /usr/bin - - - - - 2020-09-08 - 8.0.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - libwpd - http://libwpd.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C++ library designed to help process WordPerfect documents - WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı - Library that handles Word Perfect documents. - Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır. - mirrors://sourceforge/libwpd/libwpd-0.10.3.tar.xz - - doxygen - libgsf-devel - boost-devel - librevenge-devel - libtool - grep - pkgconfig - - programming/misc/libwpd/pspec.xml - - - libwpd - - librevenge - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwpd-devel - Development files for libwpd - libwpd için geliştirme dosyaları - - libwpd - librevenge-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libwpd-docs - Documentation for libwpd - - /usr/share/doc/libwpd/html - - - - - 2021-10-21 - 0.10.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-10 - 0.10.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-22 - 0.10.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 0.10.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-16 - 0.10.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-06 - 0.10.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xapian-core - http://www.oligarchy.co.uk/xapian - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - programming.misc - Probabilistic Information Retrieval library - İstatistiksel Bilgi Çıkarma kitaplığı - Xapian is an Open Source Probabilistic Information Retrieval Library. It offers a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to applications. - Xapian, Açık Kaynak Kodlu bir İstatistiksel Bilgi Çıkarma kitaplığıdır. Geliştiricilerin uygulamalara kolaylıkla gelişmiş kataloglama ve arama becerileri eklemelerini sağlayan hayli uyumlu bir araç takımına sahiptir. - https://oligarchy.co.uk/xapian/1.4.18/xapian-core-1.4.18.tar.xz - - libutil-linux-devel - zlib-devel - - programming/misc/xapian-core/pspec.xml - - - xapian-core - Probabilistic Information Retrieval library - - libutil-linux - libgcc - zlib - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - /usr/share - - - - xapian-core-devel - Development headers for xapian-core - xapian-core için geliştirme başlıkları - xapian-core-devel provides development headers for xapian-core. - xapian-core-devel, xapian-core için geliştirme başlıklarını içerir. - library - - xapian-core - - - /usr/bin/xapian-config* - /usr/lib/cmake/xapian - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/include - - - - xapian-core-docs - Documentation files for xapian-core - xapian-core için belgelendirme dosyaları - xapian-core-docs provides documentation files for xapian-core. - xapian-core-docs, xapian-core için belgelendirme dosyalarını içerir. - data:doc - - xapian-core - - - /usr/share/doc/xapian-core/apidoc.pdf - /usr/share/doc/xapian-core/apidoc/ - /usr/share/doc/xapian-core/*html - - - - - 2021-01-22 - 1.4.18 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2020-03-11 - 1.4.15 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-12-08 - 1.4.14 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-09 - 1.4.7 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-20 - 1.4.3 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-03-03 - 1.12.18 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.12.18 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - critical - 2014-09-02 - 1.12.18 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - yajl - http://lloyd.github.com/yajl - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - programming.misc - Yet Another JSON Library (YAJL) - JSON kitaplığı - yajl is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator. - yajl, ANSI C ile yazılmış olay-tabanlı (SAX tarzı) ufak bir JSON ayıklayıcıdır. - http://github.com/lloyd/yajl/tarball/2.1.0/lloyd-yajl-2.1.0.tar.gz - - cmake - - programming/misc/yajl/pspec.xml - - - yajl - - /usr/bin - /usr/lib - /usr/share/doc - - - - yajl-devel - Development headers for yajl - yajl kitaplığı için geliştirme başlıkları - - yajl - - - /usr/include - /usr/share/pkgconfig - - - - - 2020-03-13 - 2.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 2.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-21 - 2.1.0 - Release Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 2.1.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - setconf - http://setconf.roboticoverlords.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - console - programming.misc - Utility to easily change settings in configuration files - setconf, Utility to easily change settings in configuration files - http://setconf.roboticoverlords.org/setconf-0.7.5.tar.xz - programming/misc/setconf/pspec.xml - - - setconf - - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2020-01-15 - 0.7.5 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-08 - 0.7.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-06 - 0.7.5 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2014-07-04 - 0.6.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - rasqal - http://librdf.org/rasqal - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2 - Apache-2.0 - app:console - library - programming.misc - Library that handles Resource Description Framework (RDF) - RDF (Resource Description Framework) işleme kitaplığı - Rasqal is a C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings. The supported query languages are SPARQL and RDQL. - Rasqal RDF (Resource Description Framework) sözdizimindeki sorguları işleyebilen bir C kitaplığıdır. SPARQL ve RDQL biçimlerini destekler. - http://download.librdf.org/source/rasqal-0.9.33.tar.gz - - raptor2-devel - libpcre-devel - libxml2-devel - mpfr-devel - - programming/misc/rasqal/pspec.xml - - - rasqal - - raptor2 - libpcre - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - rasqal-devel - Development files for rasqal - rasqal için geliştirme dosyaları - library - - rasqal - raptor2-devel - - - /usr/bin/rasqal-config - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/man/man1/rasqal-config* - - - - rasqal-docs - Development documents for rasqal in HTML format - rasqal için HTML formatında geliştirme belgeleri - data:doc - - /usr/share/doc/rasqal/html - - - - - 2020-02-26 - 0.9.33 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-02 - 0.9.33 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-03 - 0.9.33 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - qd - https://www.davidhbailey.com/dhbsoftware/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - app:console - programming.misc - C++/Fortran-90 double-double and quad-double library. - C++/Fortran-90 double-double ve quad-double için C kitaplığı. - A double-double and quad-double package for Fortran and C++. - qd, C++/Fortran-90 double-double ve quad-double için C kitaplığı sunar. - https://www.davidhbailey.com/dhbsoftware/qd-2.3.22.tar.gz - programming/misc/qd/pspec.xml - - - qd - C++/Fortran-90 double-double and quad-double library. - - /usr/share - /usr/lib - /usr/bin - /usr/share/doc/qd - - - - qd-devel - Development files for qd - qd için geliştirme dosyaları - qd-devel, qd için geliştirme dosyalarını içerir. - - qd - - - /usr/include - - - - - 2020-05-20 - 2.3.22 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - raptor2 - http://librdf.org/raptor - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - programming.misc - The RDF Parser Toolkit - RDF ayrıştırıcı araç kiti - Raptor est une boîte à outils d'analyse RDF pour Redland fournissant un ensemble d'analyseurs et de sérialiseurs (serializers) pour Resource Description Framework (RDF - Cadre de Développement pour description de ressource). - Raptor2 is the RDF Parser Toolkit for Redland that provides a set of Resource Description Framework (RDF) parsers and serializers. - librdf, RDF ayrıştırıcılar ve yorumlayıcılar için gerekli kitaplığı ve araçları içerir. - http://download.librdf.org/source/raptor2-2.0.15.tar.gz - - gtk-doc - python-six - curl-devel - icu4c-devel - glib2-devel - libxslt-devel - - programming/misc/raptor2/pspec.xml - - - raptor2 - library - - curl - icu4c - libxml2 - libxslt - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/man/man1 - - - - raptor2-devel - Development headers for raptor2 - Raptor için başlık dosyaları - raptor2-devel raptor2 için başlık dosyalarını içerir. - library - - raptor2 - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/bin/raptor-config - /usr/share/man/man1/raptor-config.1 - - - - raptor2-docs - Documentation files for raptor - Raptor için belgelendirme dosyaları - raptor2-docs raptor2 için belgelendirme dosyalarını içerir. - data:doc - - raptor2 - - - /usr/share/doc/raptor2/html - - - - - 2020-02-26 - 2.0.15 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-16 - 2.0.15 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-02-01 - 2.0.15 - First Release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libdbusmenu-qt - https://launchpad.net/libdbusmenu-qt - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - Qt implementation of the DBusMenu spec - DBusMenu spesifikasyonunun Qt gerçeklemesi - libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec. - libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar. - http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu-qt/libdbusmenu-qt_0.9.3+16.04.20160218.orig.tar.gz - - libqjson-devel - mesa-devel - qt5-base-devel - doxygen - cmake - - programming/misc/libdbusmenu-qt/pspec.xml - - - libdbusmenu-qt - - qt5-base - libgcc - - - /usr/lib - /usr/share/doc - - - - libdbusmenu-qt-devel - Development files for libdbusmenu-qt - libdbusmenu-qt için geliştirme dosyaları - - libdbusmenu-qt - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-02 - 0.9.3_16.04.20160218 - Rebuild New qt5. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.9.3_16.04.20160218 - Rebuild New qt5. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.9.3_16.04.20160218 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 0.9.3_16.04.20160218 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.9.3_20150604 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-18 - 0.9.3_20150604 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ctpl - https://ctpl.tuxfamily.org/ - - fury - uglyside@yandex.ru - - GPL-3 - library - programming.misc - CTPL − C Template (Parser) Library. - CTPL is a template engine library written in C and distributed under the terms of the GNU GPLv3+ - http://download.tuxfamily.org/ctpl/releases/ctpl-0.3.4.tar.gz - - gtk-doc - python-six - glib2-devel - - programming/misc/ctpl/pspec.xml - - - ctpl - - glib2 - gtk-doc - python-six - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man/man1 - /usr/share/doc - - - - ctpl-docs - GTK reference documents for ctpl - - /usr/share/gtk-doc - - - - ctpl-devel - Development files for ctpl - - glib2-devel - ctpl - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-15 - 0.3.4 - Rebuild. - fury - uglyside@yandex.ru - - - 2019-10-18 - 0.3.4 - Rebuild. - fury - uglyside@yandex.ru - - - 2019-04-21 - 0.3.4 - First build - fury - uglyside@yandex.ru - - - - - - libIDL - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Constructeur d'arbre CORBA - CORBA tree builder - CORBA ağacı inşa aracı - libIDL provides parsing .idl files and generate errors and warning messages in gcc-like format. - libIDL .idl dosyalarını ayrıştırmayı sağlar ve gcc biçimine benzer hata ve uyarı mesajları üretir. - mirrors://gnome/libIDL/0.8/libIDL-0.8.14.tar.bz2 - - glib2-devel - - programming/misc/libIDL/pspec.xml - - - libIDL - - glib2 - - - /usr/bin - /usr/lib - /usr/share/info - /usr/share/doc - - - - libIDL-devel - Development files for libIDL - - libIDL - - - /usr/bin/libIDL-config-2 - /usr/lib/pkgconfig - /usr/include - - - - - 2020-01-26 - 0.8.14 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 0.8.14 - Release Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.8.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.8.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.8.14 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libdaemon - http://0pointer.de/lennart/projects/libdaemon - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Library for writing UNIX daemons - UNIX hizmetleri yazmak için bir kitaplığı - libdaemon is a lightweight C library which eases the writing of UNIX daemons. - libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. - http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz - programming/misc/libdaemon/pspec.xml - - - libdaemon - - /usr/lib - /usr/share/doc - - - - libdaemon-devel - Development files for libdaemon - libdaemon için geliştirme dosyaları - - libdaemon - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man/man3 - - - - libdaemon-32bit - 32-bit shared libraries for libdaemon - emul32 - emul32 - - libdaemon - - - /usr/lib32 - - - - - 2020-01-18 - 0.14 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 0.14 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.14 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 0.14 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - apr-util - http://apr.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Apache portable runtime utils - Apache çalışma ortamı araçları (eski sürüm) - L'Apache Portable Runtime Utils (APR-Utils) contient des interfaces utilitaires supplémentaires pour APR fournissant un support pour, XML, LDAP,des interfaces pour les bases de données, d'analyse d'URI, et plus encore. La numéro de version majeur commence par un 1. - Apache portable runtime utils (APR-Util) contains additional utility interfaces for APR; including support for XML, database interfaces, URI parsing and more. - Apache portatif çalışma ortamı araçları (APR-Util) ek arabirimleri içerir; XML, LDAP, veritabanı, URI ve diğer arabirimler. Bu sürüm 0 ile başlar. - Narzędzie APR to biblioteka narzędziowa zaimplementowana na bazie apr, oferująca dostęp do bazy danych, przetwarzanie XML oraz inne przydatne funkcje. - mirrors://apache/apr/apr-util-1.6.1.tar.bz2 - - db-devel - zlib-devel - expat-devel - sqlite-devel - libutil-linux-devel - openssl-devel - unixODBC-devel - apr-devel - mariadb-lib - postgresql-lib - cyrus-sasl-devel - openldap-client - - programming/misc/apr-util/pspec.xml - - - apr-util - - db - zlib - expat - sqlite - libutil-linux - openssl - apr - unixODBC - mariadb-lib - postgresql-lib - cyrus-sasl - openldap-client - - - /usr/lib - /usr/share/doc - /usr/bin - - - - apr-util-devel - Development files for apr-util - - apr-util - apr-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-27 - 1.6.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-09 - 1.6.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-20 - 1.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-06 - 1.5.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xerces-c - http://xml.apache.org/xerces-c - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Xerces-C++ is a validating XML parser written in a portable subset of C++ - C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcı - Xerces-C++ est un analyseur XML validant écrit dans un sous-ensemble portable du C++. - Xerces-C++ is a validating XML parser written in a portable subset of C++. - Xerces-C++, C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcıdır. - Xerces-C++ es un analizador XML con validación, escrito con un subconjunto portable de C++ - http://archive.apache.org/dist/xerces/c/3/sources/xerces-c-3.2.3.tar.gz - - icu4c-devel - curl-devel - libgcc - - programming/misc/xerces-c/pspec.xml - - - xerces-c - - icu4c - curl - libgcc - - - /usr/bin - /usr/lib - - - - xerces-c-devel - Development files for xerces-c - xerces-c için geliştirme dosyaları - - xerces-c - - - /usr/include - /usr/lib/pkgconfig - - - - xerces-c-docs - Document files for xerces-c - xerces-c için yardım dosyaları ve API belgeleri - - xerces-c - - - /usr/share/doc - - - - - 2021-03-12 - 3.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-25 - 3.2.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-09 - 3.2.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 3.2.0 - Version bump for icu4c - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-17 - 3.1.2 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 3.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 3.1.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - liboauth - http://liboauth.sourceforge.net - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - MIT - library - programming.misc - C library implementing the OAuth secure authentication protocol - liboauth is a collection of POSIX-c functions implementing the OAuth Core RFC 5849 standard. - mirrors://sourceforge/liboauth/liboauth-1.0.3.tar.gz - - curl-devel - nss-devel - - - liboauth-1.0.1-doxygen-out-of-tree.patch - liboauth-1.0.3-openssl-1.1.patch - liboauth-1.0.3-openssl-1.1_2.patch - - programming/misc/liboauth/pspec.xml - - - liboauth - - nss - curl - nspr - - - /usr/lib/lib*.so* - /usr/share/licenses - /usr/share/man - /usr/share/doc - - - - liboauth-devel - Development files for liboauth - - liboauth - nss-devel - curl-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-28 - 1.0.3 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libxklavier - http://www.freedesktop.org/Software/LibXklavier - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - High level XKB library - Yüksek seviyeli bir XKB kitaplığı - libxklavier is a library can be used to develop XKB-based applications. - libxklavier, XKB tabanlı uygulamalar geliştirmek için kullanılabilen bir kitaplığıdır. - http://cgit.freedesktop.org/libxklavier/snapshot/libxklavier-5.4.zip - - libxkbfile-devel - libxkbcommon-devel - libXfixes-devel - xkeyboard-config - gobject-introspection-devel - libXi-devel - iso-codes-devel - vala-devel - glib2-devel - libX11-devel - libxml2-devel - gtk-doc - intltool - python-six - - programming/misc/libxklavier/pspec.xml - - - libxklavier - - libxkbfile - libXi - iso-codes - glib2 - libX11 - libxml2 - - - /usr/lib - /usr/share/doc - /usr/share - /usr/share/libxklavier - - - - libxklavier-devel - Development files for libxklavier - libxklavier için geliştirme dosyaları - - glib2-devel - libxml2-devel - libxklavier - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-15 - 5.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-20 - 5.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-05 - 5.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-30 - 5.4 - Rebuild - Kamil Atlı - admin@pisilinux.org - - - 2016-07-02 - 5.4 - First release - PisiLinux Community - admin@pisilinux.org - - - - - - json-glib - http://live.gnome.org/JsonGlib - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - Library for JavaScript Object Notation format - JavaScript Nesne Notasyon biçimi için bir kitaplık - json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. - json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. - mirrors://gnome/json-glib/1.6/json-glib-1.6.6.tar.xz - - meson - gtk-doc - glib2-devel - gobject-introspection-devel - - programming/misc/json-glib/pspec.xml - - - json-glib - - gobject-introspection - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/gir* - /usr/lib/girepository-1.0 - /usr/libexec/installed-tests/json-glib-1.0 - /usr/share/installed-tests/json-glib-1.0 - /usr/share/locale - - - - json-glib-devel - Development files for json-glib - json-glib için geliştirme dosyaları - - json-glib - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - json-glib-32bit - 32-bit shared libraries for json-glib - json-glib için 32-bit paylaşımlı kitaplıklar - emul32 - _emul32 - - glib2-32bit - - - glib2-32bit - json-glib - - - /usr/lib32 - /usr/lib32/girepository-1.0 - - - - - 2021-10-02 - 1.6.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-24 - 1.6.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 1.6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-07 - 1.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 1.4.4 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-01-17 - 1.4.4 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-07-27 - 1.4.2 - Rebuild for New Toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-28 - 1.4.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-06 - 1.2.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.0.2 - Release bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-03-18 - 1.0.2 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - rnnoise - https://gitlab.xiph.org/xiph/rnnoise - - Pisi Linux Admins - admin@pisilinux.org - - custom - library - programming.misc - Recurrent neural network for audio noise reduction - Recurrent neural network for audio noise reduction - Ses gürültüsünü azaltmak için tekrarlayan sinir ağı - Ses gürültüsünü azaltmak için tekrarlayan sinir ağı - https://gitlab.xiph.org/xiph/rnnoise/-/archive/7f449bf8bd3b933891d12c30112268c4090e4d59/rnnoise-7f449bf8bd3b933891d12c30112268c4090e4d59.tar.gz - programming/misc/rnnoise/pspec.xml - - - rnnoise - - /usr/lib - /usr/share - /usr/share/doc - - - - rnnoise-devel - Development files for rnnoise - - rnnoise - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-09-23 - 0.4.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - dotconf - https://github.com/williamh/dotconf - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A library to parse configuration files - Yapılandırma dosyası ayıklama kitaplığı - dotconf is a simple-to-use and powerful configuration file parser library written in C. - dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır. - https://src.fedoraproject.org/lookaside/extras/dotconf/dotconf-1.3.tar.gz/35c19ec9b96648f53e987e47e52dbc4c/dotconf-1.3.tar.gz - programming/misc/dotconf/pspec.xml - - - dotconf - - /usr/lib - /usr/share/doc - - - - dotconf-devel - Development headers and documentation for dotconf - dotconf kitaplığı için geliştirme başlıkları ve belgeleri - - dotconf - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/dotconf/examples - /usr/share/doc/dotconf/dotconf-api.txt - - - - - 2020-02-02 - 1.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-10 - 1.3 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-25 - 1.3 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - btyacc - https://www.siber.com/btyacc - - PisiLinux Community - admins@pisilinux.org - - freedist - app:console - programming.misc - Backtracking YACC - modified from Berkeley YACC - This is original Berkeley Yacc modified to better fit production environment (and to have less bugs, too). - http://www.siber.com/btyacc/btyacc-3-0.tar.gz - - btyacc-3.0-includes.patch - btyacc-3.0-makefile.patch - - programming/misc/btyacc/pspec.xml - - - btyacc - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2020-01-16 - 3.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 3.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-14 - 3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-11 - 3.0 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libgtop - http://www.gnome.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - System monitoring library - Sistem izleme kitaplığı - libgtop is a library to get system specific data such as CPU and Memory Usage and information about running processes. - libgtop, çalışan süreçler hakkında CPU ve bellek kullanımı gibi sistem bilgisini almak için bir kitaplığıdır. - mirrors://gnome/libgtop/2.40/libgtop-2.40.0.tar.xz - - gtk-doc - yelp-devel - glib2-devel - gobject-introspection-devel - - programming/misc/libgtop/pspec.xml - - - libgtop - - glib2 - libXau - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/gir-1.0 - - - - libgtop-docs - libgtop reference documents - libgtop başvuru belgeleri - data:doc - - /usr/share/gtk-doc - - - - libgtop-devel - Development files for libgtop - libgtop için geliştirme dosyaları - - glib2-devel - libgtop - - - /usr/include - /usr/lib/pkgconfig - /usr/share/info - - - - - 2020-02-29 - 2.40.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - grantlee-qt5 - https://github.com/steveire/grantlee - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - Qt string template engine based on the Django template system - Django şablon sistemi benzeri bir Qt metin şablon motoru - grantlee is a plugin based String Template system written using the Qt framework. The goals of the project are to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming. - grantlee, Qt çatısı kullanılarak yazılmış bir eklenti destekli metin şablon sistemidir. Projenin amaçları; belgelerin yapısını, içerdikleri veriden ayırarak uygulama geliştiricilerinin işini kolaylaştırmak ve tema desteği için imkan sağlamaktır. - https://github.com/steveire/grantlee/archive/v5.2.0.tar.gz - - mesa-devel - qt5-base-devel - qt5-declarative-devel - cmake - - programming/misc/grantlee-qt5/pspec.xml - - - grantlee-qt5 - - qt5-base - qt5-declarative - libgcc - - - /usr/lib - /usr/share/doc - - - - grantlee-qt5-devel - Development files for grantlee - grantlee için geliştirme dosyaları - - grantlee-qt5 - qt5-base-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-01-11 - 5.2.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-03 - 5.2.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-20 - 5.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-05 - 5.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-28 - 5.1.0 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-12-25 - 5.1.0 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-09 - 5.1.0 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-10 - 5.1.0 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-08-13 - 5.1.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-09 - 5.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-18 - 5.0.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - redland - http://librdf.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - Apache-2.0 - library - programming.misc - High-level interface for the Resource Description Framework - RDF (Resource Description Framework) için üst seviye katman kitaplıkları - Redland is a set of free software C libraries that provide support for the Resource Description Framework (RDF). - Redland, RDF (Resource Description Framework) desteği sağlayan C kitaplıklarından oluşur. - http://download.librdf.org/source/redland-1.0.17.tar.gz - - rasqal-devel - unixODBC-devel - - programming/misc/redland/pspec.xml - - - redland - - rasqal - raptor2 - unixODBC - libtool-ltdl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/gtk-doc/html/redland/ - /usr/share/man - /usr/share/redland - - - - redland-devel - Development files for redland - redland için geliştirme dosyaları - - redland - raptor2-devel - rasqal-devel - - - /usr/include - /usr/bin/redland-config - /usr/lib/pkgconfig - /usr/share/man/man1/redland-config* - - - - - 2020-02-26 - 1.0.17 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-02 - 1.0.17 - First Relase - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-04 - 1.0.17 - First Relase - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libyaml - http://pyyaml.org/wiki/LibYAML - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - YAML 1.1 parser and emitter written in C - C ile yazılmış YAML 1.1 ayrıştırıcısı - libyaml is a YAML 1.1 parser and emitter written in C. - libyaml C ile yazılmış bir YAML 1.1 ayrıştırıcısıdır. - http://pyyaml.org/download/libyaml/yaml-0.2.2.tar.gz - programming/misc/libyaml/pspec.xml - - - libyaml - YAML 1.1 parser and emitter written in C - - /usr/lib - /usr/share/doc - - - - libyaml-devel - Development headers for libyaml - libyaml için başlık dosyaları - libyaml-devel provides development headers for libyaml. - libyaml-devel, libyaml için başlık dosyalarını içerir. - - libyaml - - - /usr/include - /usr/lib/pkgconfig - - - - libyaml-docs - Documentation files for libyaml - libyaml için belgelendirme dosyaları - libyaml-docs, libyaml için belgelendirme dosyalarını içerir. - - libyaml - - - /usr/share/doc/libyaml/html/ - - - - - 2020-11-07 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 0.2.2 - Rebuilt for the new toolchain - Blue Devil - bluedevil@sctzine.com - - - 2019-10-03 - 0.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.1.7 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-09-20 - 0.1.7 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-22 - 0.1.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libwpg - http://libwpg.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C++ library designed to help process WordPerfect Graphics documents - WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı - Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations. - Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır. - https://sourceforge.net/projects/libwpg/files/libwpg/libwpg-0.3.3/libwpg-0.3.3.tar.xz - - doxygen - libwpd-devel - libtool - grep - pkgconfig - - programming/misc/libwpg/pspec.xml - - - libwpg - - libwpd - librevenge - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwpg-devel - Development files for libwpg - libwpg için geliştirme dosyaları - - libwpd-devel - librevenge-devel - libwpg - - - /usr/include - /usr/lib/pkgconfig - - - - libwpg-docs - Documentation for libwpg - - /usr/share/doc/libwpg/html - - - - - 2021-10-21 - 0.3.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-10 - 0.3.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-22 - 0.3.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 0.3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-16 - 0.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-02 - 0.3.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - jq - https://github.com/stedolan/jq - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.misc - lightweight and flexible command-line JSON processor - lightweight and flexible command-line JSON processor - lightweight and flexible command-line JSON processor - lightweight and flexible command-line JSON processor - https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz - - oniguruma-devel - - programming/misc/jq/pspec.xml - - - jq - - oniguruma - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - jq-devel - Development files for jq - - jq - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-09 - 1.6 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2020-06-07 - 1.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gtkglext - https://sourceforge.net/projects/gtkglext/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - programming.misc - OpenGL extension to GTK+ - GTK+ için OpenGL eklentisi - GtkGLExt is an OpenGL extension to GTK+ 2.0 or later - GTK+ 2.0 veya sonraki sürümler için OpenGL eklentisi - mirrors://sourceforge/gtkglext/gtkglext-1.2.0.tar.bz2 - - python3-devel - gtk2-devel - freeglut-devel + libsdl-devel mesa-devel mesa-glu-devel - libXmu-devel - libXt-devel - atk-devel - cairo-devel - fontconfig-devel pango-devel - pangox-compat-devel - libSM-devel - libICE-devel + tiff-devel - support-pango.diff - 01_fix_fontcache_nullderef.dpatch - gtkglext-1.2.0-bz677457.diff - gtkglext-gcc8.patch + make-abicheck-non-fatal.patch + wxGTK-collision.patch + wxGTK-2.8.10-CVE-2009-XXXX.diff + wxGTK-2.8.12.1-r2-gcc6.patch - programming/misc/gtkglext/pspec.xml + desktop/toolkit/wxGTK2.8/pspec.xml - gtkglext + wxGTK2.8 + gst-plugins-base + gstreamer gtk2 - freeglut - mesa - mesa-glu - libXmu - libXt - atk - cairo - fontconfig - pango - pangox-compat + libjpeg-turbo libSM - libICE + libXinerama + libXxf86vm + libsdl + mesa + pango + tiff + glib2 + libX11 + libgcc + libpng gdk-pixbuf + wxBase - /usr/lib - /usr/share/doc + /usr/bin/wx-config-2.8 + /usr/bin/wxconfig + /usr/lib/libwx_gtk* + /usr/lib/wx/config/gtk2-unicode-release-2.8 - gtkglext-devel - Development headers for gtkglext - gtkglext için geliştirme başlıkları - gtkglext-devel provides development headers for gtkglext. - gtkglext için geliştirme başlıklarını içerir. + wxGTK2.8-devel + wxGTK-devel is the development files for wxGTK - gtkglext - gtk2-devel - pango-devel - pangox-compat-devel + wxBase-devel + wxGTK2.8 - /usr/include - /usr/lib/gtkglext-1.0/include/ - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/share/gtk-doc + /usr/lib/wx/include - - - 2020-03-06 - 1.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-07 - 1.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-04 - 1.2.0 - First release. - Marcin Bojara - marci@pisilinux.org - - - - - - libsoup - http://live.gnome.org/LibSoup - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - An HTTP library implementation in C - C için HTTP kitaplık gerçekleyicisi - libsoup is an HTTP client/server library for GNOME. - libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. - mirrors://gnome/libsoup/2.74/libsoup-2.74.2.tar.xz - - meson - libgcrypt-devel - gtk-doc - mit-kerberos - python3-devel - glib2-devel - libxml2-devel - sqlite-devel - intltool - gettext-devel - vala-devel - libpsl-devel - zlib-devel - mit-kerberos-devel - python-six - glib-networking - sysprof-devel - gobject-introspection-devel - - programming/misc/libsoup/pspec.xml - - libsoup + wxBase + wxBase is the GUI independent part of wxWidgets + wxWidgets/wxGTK için arayüz bağımsız olan kitaplıklar - glib2 - libxml2 - sqlite - libpsl + libunwind zlib - mit-kerberos - glib-networking + expat + libgcc - /usr/lib + /usr/bin/wxrc + /usr/bin/wxrc-2.8 /usr/share/doc - /usr/share/gir-1.0 - /usr/share/vala - /usr/share/locale/ - /usr/lib/girepository-1.0/Soup-2.4.typelib + /usr/share/bakefile + /usr/share/locale + /usr/lib/libwx_base* - libsoup-gnome - - glib2 - libsoup - - - /usr/lib/lib*gnome* - /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib - - - - libsoup-docs - libsoup reference documents - libsoup başvuru belgeleri - data:doc - - libsoup - - - /usr/share/gtk-doc - - - - libsoup-devel - Development files for libsoup - libsoup için geliştirme dosyaları + wxBase-devel + wxBase-devel is the development files for wxBase + wxBase sınıfları için geliştirme dosyaları + wxGTK2.8 + wxBase zlib-devel - glib2-devel - sqlite-devel - libpsl-devel - libxml2-devel - sysprof-devel - gobject-introspection-devel - libsoup + expat-devel /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - 2022-06-02 - 2.74.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-25 - 2.74.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2.74.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-17 - 2.74.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-23 - 2.74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 2.72.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.68.3 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-19 - 2.62.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 2.61.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2018-01-07 - 2.61.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-19 + 2.8.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-02-17 - 2.56.0 - Version Bump. + 2018-08-30 + 2.8.12 + Rebuild. Pisi Linux Community admin@pisilinux.org + 2017-04-11 + 2.8.12 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + 2016-06-09 - 2.54.1 + 2.8.12 Release Bump Pisi Linux Community admin@pisilinux.org - - 2016-05-08 - 2.54.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - 2015-06-14 - 2.50.0 + 2015-01-05 + 2.8.12 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -218543,1620 +169952,255 @@ It supports email, address books, calendars, tasks, news feeds and much more. - liblrdf - http://lrdf.sourceforge.net + xsettingsd + https://github.com/derat/xsettingsd - Serdar Soytetir - kaptan@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv2 - library - programming.misc - A lightweight RDF library with special support for LADSPA plugins - LADSPA eklentilerine özel destek sunan hafif bir RDF kitaplığı - Une librairie RDF légère avec un support spécial pour les plugins (greffons) LADSPA. - A lightweight RDF library with special support for LADSPA plugins. - LADSPA eklentilerine özel destek sunan hafif bir RDF kitaplığıdır. - Librería RDF liviana, con soporte especial para plugins LADSPA - https://github.com/swh/LRDF/archive/refs/tags/v0.6.1.tar.gz + app:gui + desktop.toolkit + Provides settings to X11 applications via the XSETTINGS specification + Provides settings to X11 applications via the XSETTINGS specification + xsettingsd + https://github.com/derat/xsettingsd/archive/refs/tags/v1.0.2.tar.gz - ladspa-sdk - raptor2-devel + libX11-devel + extra-cmake-modules - programming/misc/liblrdf/pspec.xml + desktop/toolkit/xsettingsd/pspec.xml - liblrdf + xsettingsd - raptor2 - ladspa-sdk + libX11 + libgcc + /usr/bin /usr/lib - /usr/share/doc - /usr/share/ladspa - - - - liblrdf-devel - Development files for liblrdf - liblrdf için geliştirme dosyaları - - liblrdf - - - /usr/include - /usr/lib/pkgconfig + /usr/share - 2012-10-09 - 0.6.1 + 2021-05-01 + 1.0.2 First release - Kamil Atlı - suvari@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - unixODBC - http://www.unixodbc.org/ + xfce4-clipman-plugin + https://docs.xfce.org/panel-plugins/xfce4-clipman-plugin - PisiLinux Community - admins@pisilinux.org + fury + uglyside@yandex.ru GPLv2 - LGPLv2.1 - app:console - programming.misc - ODBC Interface for Linux - The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms. - ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.7.tar.gz + app:gui + desktop.xfce.addon + Clipboard manager for the Xfce Panel. + Clipboard Manager for the Xfce Panel and as a standalone application (it is a bundle). It keeps the clipboard contents around (even after an application quits), it is able to handle text and images, and has a feature to execute actions on specific text selection by matching them against regexes. + https://archive.xfce.org/src/panel-plugins/xfce4-clipman-plugin/1.6/xfce4-clipman-plugin-1.6.2.tar.bz2 - libtool-ltdl + intltool + gtk3-devel + glib2-devel + libXpm-devel + xfconf-devel + libXtst-devel + qrencode-devel + libxfce4ui-devel + xfce4-panel-devel - programming/misc/unixODBC/pspec.xml + desktop/xfce/addon/xfce4-clipman-plugin/pspec.xml - unixODBC + xfce4-clipman-plugin - libtool-ltdl + gtk3 + glib2 + xfconf + libX11 + libXtst + qrencode + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util /etc /usr/bin /usr/lib - /usr/share/man - /usr/share/doc/unixODBC/AUTHORS - /usr/share/doc/unixODBC/README - - - - unixODBC-devel - Development files for unixODBC - unixODBC için geliştirme dosyaları. - - unixODBC - - - /usr/bin/odbc_config - /usr/include - - - - unixODBC-docs - Documentation for unixODBC - unixODBC için belgelendirme dosyaları. - data:doc - - /usr/share/doc/unixODBC - - - - - 2020-01-12 - 2.3.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 2.3.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 2.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.3.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libxmlb - https://github.com/hughsie/libxmlb - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - programming.library - Library for querying compressed XML metadata - A library to help create and query binary XML blobs - Library for querying compressed XML metadata - A library to help create and query binary XML blobs - https://people.freedesktop.org/~hughsient/releases/libxmlb-0.2.0.tar.xz - - meson - gtk-doc - docbook-xsl - glib2-devel - shared-mime-info - gobject-introspection-devel - - programming/misc/libxmlb/pspec.xml - - - libxmlb - Library for querying compressed XML metadata - - glib2 - - - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/gtk-doc - /usr/lib/libxmlb.* - /usr/lib/xb-tool - /usr/share/girepository-1.0 - /usr/lib/girepository-1.0 - - - - libxmlb-devel - Development files for libxmlb - libxmlb için geliştirme dosyaları - libxmlb-devel, libxmlb için geliştirme dosyalarını içerir. - - glib2-devel - libxmlb - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-02 - 0.2.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-01 - 0.1.14 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gdl - https://gitlab.gnome.org/GNOME/gdl - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.misc - Gnome Docking library - GNOME geliştirme kitaplıkları - Provides docking features for gtk+. - Bu paket, GNOME geliştirme araçları arasında paylaşılan kitaplıkları ve bileşenleri içerir. - https://download.gnome.org/sources/gdl/3.40/gdl-3.40.0.tar.xz - - gtk-doc - intltool - gtk3-devel - python3-six - libxml2-devel - gobject-introspection-devel - - programming/misc/gdl/pspec.xml - - - gdl - Provides docking features for gtk+. - - atk - gtk3 - cairo - glib2 - pango - libxml2 - gdk-pixbuf - - - /usr/lib + /usr/share /usr/share/locale - /usr/share/doc/gdl/README - /usr/share/doc/gdl/COPYING - /usr/share/gir-1.0/Gdl-3.gir - - - - gdl-devel - Development files for gdl - gdl için geliştirme dosyaları - gdl-devel, gdl için geliştirme dosyalarını içerir. - - gtk3-devel - libxml2-devel - gdl - - - /usr/include - /usr/lib/pkgconfig - - - - gdl-docs - Documentation files for gdl - gdl için başvuru belgeleri - gdl-docs provides documentation files for gdl. - gdl-docs, gdl için belgelendirme dosyalarını içerir. - data:doc - - gdl - - - /usr/share/gtk-doc/html - - - - - 2021-08-27 - 3.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-30 - 3.34.0 - Ver. bump - fury - uglyside@yandex.ru - - - 2013-10-29 - 3.8.1 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-07-31 - 3.8.1 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-07-30 - 2.31.3 - Rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-12-22 - 2.31.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libtevent - http://tevent.samba.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - programming.misc - Event system based on the talloc memory management library - talloc bellek yönetim kitaplığına dayanan olay sistemi kitaplığı - libtevent is an event system based on the talloc memory management library. It is the core event system used in Samba. Tevent has support for many event types, including timers, signals, and the classic file descriptor events. - libtevent Samba uygulamasının en temel olay sistem kitaplığıdır. Zamanlayıcı, dosya tanımlayıcı gibi çeşitli olay türlerini desteklemektedir. - https://www.samba.org/ftp/tevent/tevent-0.10.2.tar.gz - - python-devel - python3-devel - libbsd-devel - gdb-devel - libtalloc-devel - libxslt - docbook-xsl - libtirpc-devel - rpcsvc-proto-devel - - programming/misc/libtevent/pspec.xml - - - libtevent - - libtalloc - libbsd - python - python3 - - - /usr/lib - - - - libtevent-devel - Development files for libtevent - libtevent için geliştirme dosyaları - - libtevent - libtalloc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 0.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-19 - 0.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 0.10.2 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2019-04-04 - 0.9.39 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 0.9.37 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-08 - 0.9.36 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-27 - 0.9.34 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 0.9.31 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 0.9.28 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-09 - 0.9.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 0.9.25 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libedit - https://www.thrysoee.dk/editline - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - An autotool and libtoolized port of the NetBSD Editline library - NetBSD Editline kitaplığının Linux portu - libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. - libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. - http://thrysoee.dk/editline/libedit-20191231-3.1.tar.gz - - ncurses-devel - - programming/misc/libedit/pspec.xml - - - libedit - - ncurses - - - /usr/lib - /usr/share/man /usr/share/doc - - libedit-devel - Development files for libedit - libedit için geliştirme dosyaları - - libedit - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - 2020-11-07 - 3.1.20191231 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 3.1.20191231 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-07-25 - 3.1.20180525 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-02 - 3.1.20170329 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-02 - 3.1_20160903 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-06-09 - 3.1_20150325 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2021-07-23 + 1.6.2 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com - 2015-06-25 - 3.1_20150325 - First release - Ertuğrul Erata - ertugrulerata@gmail.com + 2020-12-05 + 1.6.1 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com - mm-common - https://www.gtkmm.org/ + catfish + https://docs.xfce.org/apps/catfish/start Pisi Linux Admins admin@pisilinux.org - GPLv2 - library - programming.misc - Common build files of the C++ bindings - Common build files of the C++ bindings - Common build files of the C++ bindings - Common build files of the C++ bindings - https://download.gnome.org/sources/mm-common/1.0/mm-common-1.0.4.tar.xz - - meson - doxygen - libxslt-devel - - programming/misc/mm-common/pspec.xml - - - mm-common - - doxygen - libxslt - - - /usr/bin - /usr/share - /usr/share/aclocal - /usr/share/man - /usr/share/doc - /usr/share/pkgconfig - - - - - 2022-02-13 - 1.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-26 - 1.0.3 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libunique - https://wiki.gnome.org/Attic/LibUnique - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A library for writing single instance applications - Basit ve örnek uygulamalar yazmak için kitaplığı - Unique is a library for writing single instance applications. If you launch a single instance application twice, the second instance will either just quit or will send a message to the running instance. - Unique, basit ve örnek uygulamalar yazmak için bir kitaplığıdır. Eğer örnek uygulama iki kere başlatılırsa; ikincisi ya kapanacak, ya da birincisine mesaj gönderecektir. - https://download.gnome.org/sources/libunique/1.1/libunique-1.1.6.tar.bz2 - - dbus-glib-devel - gtk2-devel - gtk-doc - intltool - libxslt-devel - docbook-xsl - python-six - gobject-introspection-devel - - - libunique-1.1.6-upstream_fixes-1.patch - 99_ltmain_as-needed.patch - fix-disable-deprecated.patch - - programming/misc/libunique/pspec.xml - - - libunique - - gtk2 - glib2 - libX11 - dbus-glib - - - /usr/lib - /usr/share - /usr/share/doc - - - - libunique-devel - libunique development files - libunique geliştirme dosyaları - - libunique - gtk2-devel - - - /usr/lib/pkgconfig - /usr/include - - - - libunique-docs - Unique reference documents - libunique belgeleri - data:doc - - libunique - - - /usr/share/gtk-doc - - - - - 2021-05-25 - 1.1.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-30 - 1.1.6 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 1.1.6 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - libassuan - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - GPLv3 library - programming.misc - Librairie IPC (communication inter-processus) auto-suffisante utilisée par gpg, gpgme et newpg. - IPC library for GnuPG related projects - GnuPG, GPGME ve newpg tarafından kullanılan IPC kitaplığı - This is the IPC library used by GnuPG 2, GPGME and a few other packages. - https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-2.5.5.tar.bz2 - - libgpg-error-devel - - programming/misc/libassuan/pspec.xml - - - libassuan - - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/info - - - - libassuan-devel - Development files for libassuan - libassuan için geliştirme dosyaları - - libassuan - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - - 2021-05-28 - 2.5.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 2.5.3 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2020-06-03 - 2.5.3 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-08-03 - 2.5.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 2.5.1 - Release bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 2.4.3 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-12-24 - 2.4.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 2.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-21 - 2.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - guile2.0 - https://www.gnu.org/software/guile/ - - Blue Devil - bluedevil@sctzine.com - - GPL - app:console - library - programming.misc - Interpréteur et librairie GNU Scheme. - GNU Scheme interpreter and library - GNU Scheme yorumlayıcısı ve kitaplığı - Język GNU Extension language. - GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. - https://ftp.gnu.org/pub/gnu/guile/guile-2.0.14.tar.xz - - gc-devel - gmp-devel - libffi-devel - gettext-devel - readline-devel - libunistring-devel - - programming/misc/guile2.0/pspec.xml - - - guile2.0 - GNU Scheme interpreter and library - - gc - gmp - - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/guile - /usr/lib/guile/2.0 - /usr/lib/libguile-2.0* - /usr/lib/libguilereadline-v-18* - - - - guile2.0-devel - Development files for guile2.0 - guile2.0 için geliştirme dosyaları - Pliki nagłówkowe guile2.0. - guile2.0-devel, guile2.0 için geliştirme dosyalarını içerir. - - gc-devel - gmp-devel - guile2.0 - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2020-12-09 - 2.0.14 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-07 - 2.0.14 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - libspectre - http://libspectre.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - A small library for rendering Postscript documents - Postscript belgeleri görüntüleştirme için küçük bir kitaplığı - libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. - libspectre, postscript belgeleri görüntüleştirme için kullanımı kolay bir API sağlar. - http://libspectre.freedesktop.org/releases/libspectre-0.2.8.tar.gz - - ghostscript-devel - cairo-devel - - - libspectre-0.2.7-gs918.patch - - programming/misc/libspectre/pspec.xml - - - libspectre - - ghostscript - - - /usr/lib - /usr/share/doc - - - - libspectre-devel - Development files for libspectre - libspectre için geliştirme dosyaları - - libspectre - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libspectre-32bit - 32-bit shared libraries for libspectre - emul32 - emul32 - - ghostscript-32bit - cairo-32bit - - - libspectre - ghostscript-32bit - - - /usr/lib32 - - - - - 2018-08-08 - 0.2.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 0.2.8 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.2.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-02 - 0.2.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dbus-c++ - https://sourceforge.net/projects/dbus-cplusplus/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C++ bindings for DBus library - DBus kitaplığı için C++ bağlayıcıları - dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop. - dbus-c++, DBus kitaplığı için C++ programlama arayüzü sunan bir kitaplıktır. - https://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/0.9.0/libdbus-c%2B%2B-0.9.0.tar.gz - - dbus-devel - expat-devel - glib2-devel - - - disable-threading.patch - fix-writechar.patch - gcc47.patch - - programming/misc/dbus-c++/pspec.xml - - - dbus-c++ - - dbus - libgcc - expat - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - - - - dbus-c++-devel - - dbus-c++ - dbus-devel - expat-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-11-07 - 0.9.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.0_20090907 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.0_20090907 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.0_20090907 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-28 - 0.0_20090907 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libnotify - http://www.galago-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - Desktop notification library - Masaüstü bildirim kitaplığı - Envoie les notifications bureautiques à un daemon de notification. - libnotify sends desktop notifications to a notification daemon. - Libnotify, masaüstü uyarılarını uyarı birimine gönderir. - Envía notificaciones de escritorio al demonio de notificaciones - https://download.gnome.org/sources/libnotify/0.7/libnotify-0.7.12.tar.xz - - gobject-introspection-devel - gdk-pixbuf-devel - python-pyatspi - libXtst-devel - gnome-common - gtk3-devel - gtk-doc - xmlto - meson - - programming/misc/libnotify/pspec.xml - - - libnotify - Desktop notification library - - gdk-pixbuf - libXtst - glib2 - - - /usr/share/doc/libnotify/COPYING - /usr/share/gir-1.0/ - /usr/bin - /usr/lib - - - - libnotify-devel - Development files for libnotify - libnotify için geliştirme dosyaları - libnotify-devel, libnotify için geliştirme dosyalarını içerir. - - libnotify - gdk-pixbuf-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libnotify-docs - Documentation files for libnotify - libnotify için belgelendirme dosyaları - libnotify-docs, libnotify için belgelendirme dosyalarını içerir. - - libnotify - - - /usr/share/doc/libnotify/SPECIFICATION - /usr/share/doc/libnotify/README* - /usr/share/doc/libnotify/spec - /usr/share/gtk-doc/html - - - - - 2022-05-31 - 0.7.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 0.7.8 - Clean and split docs. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-17 - 0.7.8 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-07-31 - 0.7.7 - Rebuild New T - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 0.7.7 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.7.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 0.7.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - tinyxml - http://www.grinninglizard.com/tinyxml - - PisiLinux Community - admins@pisilinux.org - - ZLIB - library - programming.misc - A simple, small, C++ XML parser - Basit ve hafif bir XML ayrıştırıcı - TinyXML is a simple, small, C++ XML parser that can be easily integrating into other programs. - TinyXML, C++ için basit ve hafif bir XML ayrıştırıcıdır. Diğer programlara kolayca entegre edilebilir. - mirrors://sourceforge/tinyxml/tinyxml/2.6.2/tinyxml_2_6_2.zip - - setconf - - - enforce-use-stl.patch - entity.patch - - programming/misc/tinyxml/pspec.xml - - - tinyxml - - libgcc - - - /usr/lib - /usr/share/doc - /usr/share/doc/tinyxml/html - - - - tinyxml-devel - Development files for tinyxml - tinyxml için geliştirme başlıkları - - tinyxml - - - /usr/include - /usr/lib/pkgconfig - - - tinyxml.pc - - - - - 2020-01-15 - 2.6.2 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2018-09-09 - 2.6.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-06 - 2.6.2 - Rebuild for Pisi Linux 2.0 - Stefan Gronewold - groni@pisilinux.org - - - 2014-07-04 - 2.6.2 - version bump - Kamil Atlı - suvarice@gmail.com - - - 2014-03-09 - 2.6.1 - Rebuild - Varol Maksutoğlu - waroi@pisilinux.org - - - 2011-01-19 - 2.6.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libtalloc - https://talloc.samba.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - programming.misc - Hierarchical pool based memory allocator - Bellek yönetim kitaplığı - libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba. - libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır. - https://www.samba.org/ftp/talloc/talloc-2.3.2.tar.gz - - docbook-xsl - libxslt-devel - python-devel - python3-devel - libbsd-devel - attr-devel - libtirpc-devel - rpcsvc-proto-devel - - programming/misc/libtalloc/pspec.xml - - - libtalloc - - python - python3 - libbsd - attr - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libtalloc-devel - Development files for libtalloc - libtalloc için geliştirme dosyaları - - libtalloc - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/man/man3 - - - - libtalloc-32bit - 32-bit shared libraries for libtalloc - libtalloc için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxslt-32bit - attr-32bit - - - attr-32bit - libtalloc - - - /usr/lib32 - - - - - 2021-10-23 - 2.3.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-20 - 2.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.3.1 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2019-04-04 - 2.1.16 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 2.1.14 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-08 - 2.1.13 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-27 - 2.1.10 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 2.1.8 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-07-25 - 2.1.6 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-09 - 2.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-06-28 - 2.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libdbusmenu - https://launchpad.net/dbusmenu - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - programming.misc - Library for applications to pass a menu scructure accross DBus - Uygulamaların DBus üzerinden menü yapılarını gönderebilmelerini sağlayan bir kitaplık - libdbusmenu is a small little library that was created by pulling out some common code out of indicator-applet. It passes a menu structure across DBus so that a program can create a menu simply without worrying about how it is displayed on the other side of the bus. - libdbusmenu, indicator-applet uygulamasında kullanılan bazı genel kodların ayrı bir kitaplık haline getirilmesiyle oluşturulmuş bir kitaplıktır. Bu kitaplık ile uygulamaların menü yapısı DBus ile başka uygulamalara iletilebilir, bu sayede uygulamalar karşı tarafta menünün nasıl gösterileceğini dikkate almadan menüler oluşturabilirler. - https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz + desktop.xfce.addon + Versatile file searching tool + Versatile file searching tool + Çok yönlü dosya arama aracı + Çok yönlü dosya arama aracı + https://archive.xfce.org/src/apps/catfish/4.16/catfish-4.16.3.tar.bz2 intltool - gtk2-devel + xdg-utils gtk3-devel - gnome-doc-utils - json-glib-devel - gtk-doc - gobject-introspection-devel + dbus-python3 + python3-xdg + xfconf-devel + python3-pexpect + python3-cairo-devel + python3-ptyprocess + python3-pygobject3-devel + python3-distutils-extra - - 0001_autoconf.patch - - programming/misc/libdbusmenu/pspec.xml + desktop/xfce/addon/catfish/pspec.xml - libdbusmenu-glib - GLIB bindings for libdbusmenu - libdbusmenu için GLIB bağlayıcıları + catfish - libdbusmenu-common - json-glib - - - /usr/lib/libdbusmenu-glib* - /usr/lib/libdbusmenu-json* - /usr/share/libdbusmenu - /usr/share/gtk-doc/html/libdbusmenu-glib - - - - libdbusmenu-common - Common files for libdbusmenu libraries - libdbusmenu kitaplıkları için ortak dosyalar - - /usr/share/doc - /usr/share/vala/vapi/Dbusmenu-*.vapi - /usr/share/gir-1.0/Dbusmenu-*.gir - /usr/lib/girepository-1.0/Dbusmenu-*.typelib - - - - libdbusmenu-gtk - GTK 2.x libraries for libdbusmenu - libdbusmenu için GTK 2.x kitaplıkları - - libdbusmenu-glib - libdbusmenu-common - gtk2 - atk - cairo - pango - freetype - harfbuzz - gdk-pixbuf - fontconfig - - - /usr/lib/libdbusmenu-gtk.so* - /usr/share/vala/vapi/DbusmenuGtk-*.vapi - /usr/share/gir-1.0/DbusmenuGtk-*.gir - /usr/lib/girepository-1.0/DbusmenuGtk-*.typelib - /usr/share/gtk-doc/html/libdbusmenu-gtk - - - - libdbusmenu-gtk3 - GTK 3.x libraries for libdbusmenu - libdbusmenu için GTK 3.x kitaplıkları - - libdbusmenu-glib - libdbusmenu-common + xdg-utils gtk3 - atk - cairo - pango - gdk-pixbuf + dbus-python3 + python3-xdg + xfconf + python3-pexpect + python3-cairo + python3-ptyprocess + python3-pygobject3 + python3-distutils-extra - /usr/lib/libdbusmenu-gtk3.so* - /usr/share/vala/vapi/DbusmenuGtk3-*.vapi - /usr/share/gir-1.0/DbusmenuGtk3-*.gir - /usr/lib/girepository-1.0/DbusmenuGtk3-*.typelib - - - - libdbusmenu-tools - Some examples for testing libdbusmenu - libdbusmenu testleri için çeşitli örnekler - - libdbusmenu-glib - libdbusmenu-common - json-glib - - - /usr/libexec - /usr/share/doc/libdbusmenu/*dbusmenu-bench* - - - - libdbusmenu-devel - Development files for libdbusmenu - libdbusmenu için geliştirme dosyaları - - libdbusmenu-glib - libdbusmenu-gtk - gtk2-devel - gdk-pixbuf-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig + /usr/bin + /usr/lib/python3.* + /usr/share + /usr/share/locale + /usr/share/icons + /usr/share/metainfo + /usr/share/applications + /usr/share/pixmaps + /usr/share/doc + + 2021-10-24 + 4.16.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-27 + 4.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-21 + 4.16.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + - 2020-11-19 - 16.04.0 + 2021-02-02 + 4.16.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gigolo + https://www.uvena.de/gigolo/ + + Merve Yüzbaşıoğlu + admins@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + A frontend to easily manage connections to remote filesystems using GIO/GVfs + GIO/GVfs kullanarak uzak dosya sistemleri için bağlantıları yönetme arayüzü + Gigolo allows you to quickly connect/mount local and remote filesystems and manage bookmarks of such. + Gigolo, yerel ve uzak dosya sistemlerinin kolayca bağlanmasını ve yönetilmesini sağlayan bir arayüzdür. + https://archive.xfce.org/src/apps/gigolo/0.5/gigolo-0.5.2.tar.bz2 + + intltool + gtk3-devel + glib2-devel + desktop-file-utils + + desktop/xfce/addon/gigolo/pspec.xml + + + gigolo + + gvfs + gtk3 + dbus + glib2 + libX11 + gvfs-fuse + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-03-31 + 0.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-21 + 0.5.1 Rebuild.For Beta System Ali Cengiz Kurt alicengizkurt@gmail.com @@ -220165,5196 +170209,892 @@ It supports email, address books, calendars, tasks, news feeds and much more. - http-parser - https://github.com/nodejs/http-parser - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.misc - A http request/response parser for c. - C için HTTP istek/yanıt çözümleyicisi - This is a parser for HTTP messages written in C. It parses both requests and responses. The parser is designed to be used in performance HTTP applications. It does not make any syscalls nor allocations, it does not buffer data, it can be interrupted at anytime. - HTTP mesajları için C ile yazılmış bu kitaplık, HTTP istek ve yanıtlarını çözümleyen bir C kitaplığıdır. - https://github.com/nodejs/http-parser/archive/v2.9.4.tar.gz - - meson.build - - - meson - - programming/misc/http-parser/pspec.xml - - - http-parser - A http request/response parser for c. - - /usr/share/doc/http-parser - /usr/include - /usr/lib - - - - - 2021-10-28 - 2.9.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-08 - 2.9.3 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - libnice - https://nice.freedesktop.org + keybinder + https://lazka.github.io/pgi-docs/Keybinder-3.0/index.html PisiLinux Community admins@pisilinux.org - MPL-1.1 - LGPLv2.1 - app:console - library - programming.misc - GLib ICE library - GLIB ICE kitaplığı - Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE). - Nice, IETF'ye ait bir taslak olan Etkileşimli Bağlanırlık Birliği standardı uygulamasıdır. - http://nice.freedesktop.org/releases/libnice-0.1.15.tar.gz - - glib2-devel - gnutls-devel - gobject-introspection-devel - gstreamer-devel - - programming/misc/libnice/pspec.xml - - - libnice - - glib2 - gnutls - libxml2 - gstreamer - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - libnice-devel - Development files for libnice - libnice için geliştirme dosyaları - - libnice - glib2-devel - gnutls-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2019-04-22 - 0.1.15 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-06-09 - 0.1.14 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 0.1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-27 - 0.1.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - openmp - https://openmp.llvm.org/ - - Idris Kalp - idriskalp@gmail.com - - MIT - library - programming.misc - LLVM OpenMP runtime library - LLVM OpenMP çalışma zamanı kitaplığı - openmp provides runtime for OpenMP by LLVM - openmp, LLVM tarafından OpenMP çalışma zamanı kitaplıklarını içerir - https://github.com/llvm/llvm-project/releases/download/llvmorg-11.0.0/openmp-11.0.0.src.tar.xz - - cmake - libffi-devel - elfutils-devel - - programming/misc/openmp/pspec.xml - - - openmp - - llvm-libs - libcxx - - - /usr/lib - /usr/share/doc - - - - openmp-32bit - openmp 32-bit libraries - openmp 32-bit kitaplıkları - emul32 - emul32 - - libffi-32bit - elfutils-32bit - - - openmp - libcxx-32bit - - - /usr/lib32 - - - - openmp-devel - Development files for openmp - openmp için geliştirme dosyaları - - openmp - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2020-11-14 - 11.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-28 - 10.0.0 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - flann - https://github.com/mariusmuja/flann - - Osman Erkan - osman.erkan@pisilinux.org - - BSD - library - programming.misc - FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional space. - FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. - https://github.com/mariusmuja/flann/archive/1.9.1.tar.gz - - cmake - hdf5-devel - - - flann-1.9.1-cmake-3.11.patch - - programming/misc/flann/pspec.xml - - - flann - - libgcc - libgomp - hdf5-devel - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/flann - - - - flann-devel - Development files for flann - - flann - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-05 - 1.9.1 - Rebuild. - Kamil Atlı - admin@pisilinux.org - - - 2019-02-07 - 1.9.1 - Rebuild. - Kamil Atlı - admin@pisilinux.org - - - 2018-09-02 - 1.9.1 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2017-04-30 - 1.8.4 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 1.8.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-25 - 1.8.4 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - ragel - http://www.complang.org/ragel/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - programming.misc - Ragel compiles executable finite state machines from regular languages. - Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. - http://www.colm.net/files/ragel/ragel-6.10.tar.gz - programming/misc/ragel/pspec.xml - - - ragel - - libgcc - - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/vim/ - - - - - 2018-09-09 - 6.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-30 - 6.10 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 6.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-19 - 6.9 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - clucene - http://clucene.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - Apache-2.0 - library - programming.misc - A high-performance indexing and searching API - Yüksek performanslı bir indeksleme ve arama API'si - CLucene is a high-performance, scalable, cross platform, full-featured, open-source indexing and searching API. It is written in C++. - CLucene yüksek performanslı, ölçeklenebilir, platform bağımsız, çok özellikli, açık kaynak arama ve indeksleme programlama arayüzüdür. C++ ile yazılmıştır. - CLucene es una API para indexación y búsqueda de alta performance, escalable, cross plataforma, full-featured, código abierto. Está escrito en C++. - http://downloads.sourceforge.net/clucene/clucene-core-2.3.3.4.tar.gz - - boost-devel - cmake - zlib-devel - - - clucene-2.3.3.4-gcc6.patch - clucene-core-2.3.3.4-pkgconfig.patch - clucene-2.3.3.4-contribs_lib-1.patch - fix_zlib_detections.diff - clucene-core-2.3.3.4-usleep.patch - clucene-warnings.patch - clucene-gcc-atomics.patch - clucene-debug.patch - clucene-narrowing-conversions.patch - clucene-multimap-put.patch - - programming/misc/clucene/pspec.xml - - - clucene - - /usr/lib - /usr/share - - - - clucene-devel - Development files for clucene - clucene için geliştirme dosyaları - - clucene - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-26 - 2.3.3.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-02 - 2.3.3.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 2.3.3.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 2.3.3.4 - First Release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - boost - http://boost.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - Peer-reviewed portable C++ source libraries - Açık kaynak kodlu ve taşınabilir C++ kaynak kitaplıkları - Boost propose des librairies C++ gratuites, portables et relues en comité. L'accent est porté sur les librairies portables qui fonctionnent bien avec la Librairie Standard C++. - Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. - Boost, kaynak kodları gözden geçirilmiş C++ kitaplıklarını içerir. - https://boostorg.jfrog.io/ui/native/main/release/1.77.0/source/boost_1_77_0.tar.bz2 - - bzip2 - xz-devel - zstd-devel - zlib-devel - icu4c-devel - python3-devel - libxslt-devel - openmpi-devel - python3-numpy - - programming/misc/boost/pspec.xml - - - boost - Peer-reviewed portable C++ source libraries - - xz - zlib - zstd - bzip2 - icu4c - libgcc - openmpi - - - /usr/share/boostbook - /usr/share/boost-build - /usr/bin - /usr/share/doc - /usr/lib - - - - boost-devel - Headers and library documentation for boost - boost için başlık dosyaları ve kitaplık belgeleri - boost-devel, boost için geliştirme ve başlık dosyalarını içerir. - data:doc - - boost - - - /usr/share/doc/*/html - /usr/include - /usr/lib/cmake - - - - boost-python3 - A C++ library which enables seamless interoperability between C++ and the Python3 - boost için python3 kitaplık belgeleri - boost-python3, boost için python3 kitaplık belgelerini içerir. - - boost - libgcc - openmpi - - - /usr/lib/python3.9 - /usr/lib/libboost_numpy39.so* - /usr/lib/libboost_python39.so* - /usr/lib/libboost_mpi_python39.so* - - - - - 2021-10-21 - 1.77.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-21 - 1.77.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-07-07 - 1.75.0 - Rebuild boost-build - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 1.75.0 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2020-11-07 - 1.72.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 1.72.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-10 - 1.72.0 - Symlink and translations fix - Blue Devil - bluedevil@sctzine.com - - - 2020-01-12 - 1.72.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.66.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 1.66.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-19 - 1.63.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-09 - 1.63.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-08 - 1.63.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-01 - 1.63.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.60.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.60.0 - Release bump. - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2016-05-08 - 1.60.0 - First release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - iniparser - http://ndevilla.free.fr/iniparser/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - app:console - programming.misc - A free ini file parsing library - Bir ini dosyası ayrıştırma kitaplığı - iniparser is a free stand-alone ini file parsing library written in portable ANSI C. - iniparser, ücretsiz ve ANSI C ile taşınabilir bir şekilde yazılmış INI dosyası ayrıştırma kitaplığıdır. - https://github.com/ndevilla/iniparser/archive/v4.1.tar.gz - programming/misc/iniparser/pspec.xml - - - iniparser - - /usr/share/doc - /usr/lib - - - - iniparser-devel - Development files for iniparser - iniparser için geliştirme dosyaları - - iniparser - - - /usr/include - - - - - 2020-01-19 - 4.1 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-08-06 - 4.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 4.0 - Version Bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-05-22 - 3.1 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - apr - http://apr.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - library - programming.misc - Apache portable runtime library - Apache portatif çalışma ortamı kitaplığı (eski sürüm) - Apache Portable Runtime – przenośna biblioteka uruchomieniowa - L'Apache Portable Runtime (APR) a pour mission de fournir une librairie libre C de structures de donnés et de routines. Le numéro de version majeur commence par un 0. - The mission of the Apache portable runtime (APR) is to provide a free library of C data structures and routines. - Apache portatif çalışma ortamı kitaplığı (APR), C data yapıları için özgür kitaplığı sağlar. Bu sürüm 0 ile başlar. - APR to Przenośna Biblioteka Fazy Wykonywania Apache, zaprojektowana jako biblioteka wspomagająca, która udostępnia przewidywalny i spójny interfejs do podstawowych, specyficznych dla platformy implementacji. - mirrors://apache/apr/apr-1.7.0.tar.gz - - libutil-linux-devel - - programming/misc/apr/pspec.xml - - - apr - - libutil-linux - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/aclocal - /usr/lib/apr-1/build - - - - apr-devel - Development files for apr - Development files for apr - - apr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-27 - 1.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-09 - 1.6.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-20 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-01 - 1.5.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - log4c - http://log4c.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C library for flexible logging - C için bir günlük kitaplığı - log4c is a C language library for flexible logging to files, syslog and other destinations. It is modeled after the Log for Java library (log4j), staying as close to their API as is reasonable. - log4c, dosyalara, syslog hizmetine ve diğer hedeflere kolayca günlük tutmayı sağlayan bir C kitaplığıdır. - mirrors://sourceforge/log4c/log4c-1.2.4.tar.gz - programming/misc/log4c/pspec.xml - - - log4c - A C library for flexible logging - - /usr/lib - /usr/share/doc - /usr/share/man - - - - log4c-devel - Development files for log4c - log4c için geliştirme dosyaları - log4c-devel, log4c için geliştirme dosyalarını içerir. - - log4c - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - - - - - 2020-01-23 - 1.2.4 - Rebuild for new toolchain - Blue Devil - bluedevil@sctzine.com - - - - - - htmlcxx - http://htmlcxx.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPL - app:library - programming.misc - htmlcxx is a simple non-validating css1 and html parser for C++ - htmlcxx is the name of both the library and the utility application that comes with this package. Although the htmlcxx (the application) is mostly useless for programming, you can use it to easily see how htmlcxx (the library) would parse your html code. - http://sourceforge.net/projects/htmlcxx/files/htmlcxx/0.86/htmlcxx-0.86.tar.gz - - flex - bison - libtool - - - fix-gcc-4.6-ftbfs.patch - reduce-linking.patch - - programming/misc/htmlcxx/pspec.xml - - - htmlcxx - - libgcc - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - htmlcxx-devel - Development files for htmlcxx - - htmlcxx - - - /usr/include - /usr/lib/pkgconfig - - - - - 2018-09-16 - 0.86 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-23 - 0.86 - Rebuild with new toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-20 - 0.86 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libxmlpp - http://libxmlplusplus.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C++ wrapper for the libxml2 XML parser library - libxml++ is a C++ wrapper for the libxml XML parser library. - http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/3.2/libxml++-3.2.0.tar.xz - - glibmm-devel - libsigc++-devel - libxml2-devel - - programming/misc/libxmlpp/pspec.xml - - - libxmlpp - - libgcc - libxml2 - glibmm - - - /usr/lib - /usr/share/doc - - - - libxmlpp-devel - Development files for libxmlpp - libxmlpp için geliştirme dosyaları - - libxmlpp - glibmm-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/libxml++-2.6 - - - - libxmlpp-docs - Development documents for libxmlpp in HTML - libxmlpp için HTML formatında geliştirme belgeleri - - /usr/share/doc/libxmlpp/html - /usr/share/devhelp - - - - - 2020-01-12 - 3.2.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 3.0.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.40.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.38.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-05-21 - 2.38.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - physfs - http://icculus.org/physfs/ - - PisiLinux Community - admins@pisilinux.org - - ZLIB - library - programming.misc - Filesystem library - Dosya sistemi kitaplığı - Warstwa abstrakcji plików dla gier - Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux. - Abstraction layer for filesystems. - physfs dosya sistemi katmanı kitaplığıdır. - Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos - PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów. - http://icculus.org/physfs/downloads/physfs-3.0.1.tar.bz2 - - cmake - zlib - - programming/misc/physfs/pspec.xml - - - physfs - - /usr/lib - /usr/share/doc - - - - physfs-devel - Development files for physfs - physfs için geliştirme dosyaları - - physfs - - - /usr/include - - - - - 2018-09-09 - 3.0.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-08 - 2.0.3 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 2.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - source-highlight - https://www.gnu.org/software/src-highlite/ - - Blue DeviL - bluedevil@sctzine.com - - GPL - app::console - programming.misc - Source code to syntax highlighted document converter. - Kaynak koddan sözdizim renklendirmesi olan belgeye çeviriciç - source-highlight, given a source file, produces a document with syntax highlighting. It also provides a C++ highlight library. - source-highlight, verilen kaynak kodu sözdizim kurallarına göre renklendirip belgeye çeviren yazılımdır. - https://ftp.gnu.org/gnu/src-highlite/source-highlight-3.1.9.tar.gz - - ctags - boost-devel - - programming/misc/source-highlight/pspec.xml - - - source-highlight - Source code to syntax highlighted document converter. - app::console - - boost - - - /usr/share/man - /usr/bin - /usr/share/info - /usr/share/source-highlight - /usr/lib/libsource-highlight* - /usr/share/bash-completion/completions/source-highlight - - - - source-highlight-devel - Development headers for source-highlight - source-highlight için geliştirme dosyaları - source-highlight-devel provides development headers for source-highlight. - source-highlight-devel, source-highlight için geliştirme dosyalarını içerir. - library - - source-highlight - - - /usr/include - /usr/lib/pkgconfig - - - - source-highlight-docs - Documentation files for source-highlight - source-highlight için belgelendirme dosyaları - source-highlight-docs provides documentation files for source-highlight. - source-highlight-docs, source-highlight için belgelendirme dosyalarını içerir. - data:doc - - source-highlight - - - /usr/share/doc/source-highlight - - - - - 2021-10-21 - 3.1.9 - Rebuild boost. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 3.1.9 - Rebuild boost. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 3.1.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-07 - 3.1.9 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - libofa - https://code.google.com/archive/p/musicip-libofa/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - The Open Fingerprint Architecture library - Müzik dosyaları için akustik parmak izi oluşturma kitaplığı - libofa is a library for generating acoustic fingerprints that can be used to identify music files using the MusicDNS service. - libofa, MısicDNS servisini kullanarak müzik dosyalarının akustik parmak izini oluşturmak için kullanılan bir kitaplığıdır. - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/musicip-libofa/libofa-0.9.3.tar.gz - - fftw3-devel - expat-devel - curl-devel - - - compile.patch - gcc44.patch - pkgconfig.patch - libofa-0.9.3-gcc47.patch - libofa-0.9.3-curl.patch - - programming/misc/libofa/pspec.xml - - - libofa - - fftw3 - expat - libgcc - - - /usr/lib - /usr/share/doc - - - - libofa-devel - Development files for libofa - libofa için geliştirme dosyaları - - libofa - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-08 - 0.9.3 - Rebuild. - Pisi Linux Admins - admins@pisilinux.org - - - 2018-08-19 - 0.9.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - 2017-01-07 - 0.9.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcxx - http://libcxx.llvm.org/ - - Idris Kalp - idriskalp@gmail.com - - MIT - library - programming.misc - LLVM C++ standard library. - libcxx provides standard c++ library by LLVM - https://github.com/llvm/llvm-project/releases/download/llvmorg-11.1.0/llvm-project-11.1.0.src.tar.xz - - llvm - llvm-libs - llvm-clang - lld - cmake - python3-devel - - programming/misc/libcxx/pspec.xml - - - libcxx - - /usr/lib - /usr/share/doc - - - - libcxx-32bit - libcxx 32bit shared libraries. - emul32 - emul32 - - libcxx - - - /usr/lib32 - - - - libcxx-devel - Development files for libcxx - - libcxx - - - /usr/include - - - - - 2021-02-20 - 11.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-2 - 11.0.0 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2020-03-26 - 10.0.0 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - oniguruma - https://github.com/kkos/oniguruma/ - - İdris Kalp - idriskalp@gmail.com - - BSD - library - programming.misc - A regular expressions library - Oniguruma is a modern and flexible regular expressions library. It encompasses features from different regular expression implementations that traditionally exist in different languages. - https://github.com/kkos/oniguruma/archive/refs/tags/v6.9.7.1.tar.gz - - gettext-devel - - programming/misc/oniguruma/pspec.xml - - - oniguruma - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/ - /usr/share/man/man1 - - - - oniguruma-devel - Development files for oniguruma - - oniguruma - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-09 - 6.9.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-08 - 6.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-22 - 6.9.4 - First release. - İdris Kalp - idriskalp@gmail.com - - - - - - icu4c - http://site.icu-project.org/home - - PisiLinux Community - admins@pisilinux.org - - as-is - library - programming.misc - International Components for Unicode - Unicode desteği için uluslarası bileşenler - ICU est un ensemble mature de librairies C/C++ et Java pour le support de l'Unicode, l'internationalisation et la globalisation de logiciel (i18n/g11n). Ce paquet contient les librairies C/C++. - ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries. - ICU, Unicode desteği, yazılım uluslararasılaştırma ve yerelleştirme konusunda yaygın olarak kullanılan gelişmiş bir kitaplıktır. ICU, Unicode ve u10a desteği için C/C++ ve Java kitaplıklarını içerir. - ICU es un conjunto maduro y muy utilizado de librerías C/C++ y Java para soporte Unicode, internacionalización y globalización de software (i18n/g11n). Este paque te contiene las librerías C/C++. - https://github.com/unicode-org/icu/releases/download/release-68-2/icu4c-68_2-src.tgz - - libgcc - - programming/misc/icu4c/pspec.xml - - - icu4c - - libgcc - - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc/icu4c/html - - - - icu4c-devel - Development files for icu4c - icu4c için geliştirme dosyaları - - icu4c - - - /usr/bin/icu-config - /usr/lib/icu - /usr/share/icu - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/ - - - - icu4c-32bit - 32-bit shared libraries for icu4c - emul32 - _emul32 - - libgcc - - - icu4c - libgcc - - - /usr/lib32/libicu* - /usr/lib32/icu - - - - - 2021-02-26 - 68.2 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-11-07 - 65.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 65.1 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-01-06 - 64.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-06 - 60.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-23 - 60.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 60.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-29 - 60.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-31 - 58.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 55.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 55.1 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-03 - 55.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - vigra - http://ukoethe.github.io/vigra - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.misc - Generic programming library for computer vision - Bilgisayarlı görü (computer vision) için genel programlama kitaplığı - vigra stands for "Vision with Generic Algorithms". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. - vigra, "Genel Algoritmalarla Görü (Vision with Generic Algorithms)" anlamına gelir. Özelleştirilebilir algoritma ve veri yapılarını vurgulayan yeni bir bilgisayarlı görü kitaplığıdır. - https://github.com/ukoethe/vigra/archive/Version-1-11-1.tar.gz - - cmake - doxygen - tiff-devel - hdf5-devel - fftw3-devel - boost-devel - python-nose - python-sphinx - libpng-devel - python-numpy - python-devel - openexr-devel - libjpeg-turbo-devel - docutils - mesa-glu-devel - python-Pygments - python-Jinja2 - blas-devel - lapack-devel - - - disable-doc.patch - fix-incorrect-template-parameter-type.patch - vigra-openexr3.patch - - programming/misc/vigra/pspec.xml - - - vigra - - hdf5 - tiff - boost - fftw3 - libgcc - libpng - python - openexr-libs - libjpeg-turbo - - - /usr/lib - /usr/share/doc - /usr/bin - - - - vigra-devel - Development files for vigra - vigra için geliştirme dosyaları - - vigra - - - /usr/include - /usr/lib/vigra/*.cmake - - - - - 2021-11-27 - 1.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-20 - 1.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 1.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-03 - 1.11.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.11.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 1.11.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-14 - 1.11.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-17 - 1.11.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-03 - 1.10.0 - First release - Yusuf Aydemir - yusuf.aydemir@gmail.com - - - - - - geoip - https://dev.maxmind.com/geoip - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - C library for country/city/organization to IP address or hostname mapping - Ülke/şehir/organizasyon adı ile IP adresi veya makine adı eşleştirmesi için C kitaplığı - GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. - GeoIP, herhangi bir IP adresinin veya makine adının hangi ülkeye ait olduğunu bulmak için kullanılan bir C kitaplığıdır. - https://github.com/maxmind/geoip-api-c/archive/v1.6.12.tar.gz - https://sourceforge.net/projects/pisilinux/files/source/GeoIP-data.tar.xz - programming/misc/geoip/pspec.xml - - - geoip - - /etc - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/GeoIP - - - - geoip-devel - Geoip için geliştirme dosyaları - - geoip - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-15 - 1.6.12 - Version Bump and fix - Idris Kalp - idriskalp@gmail.com - - - 2018-08-10 - 1.6.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-09-20 - 1.6.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.6.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-14 - 1.6.2 - First release - Vedat Demir - vedat@pisilinux.org - - - - - - google-sparsehash - http://code.google.com/p/google-sparsehash - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - An extremely memory-efficient hash_map implementation - Son derece verimli bellek kullanımına sahip hash-map uyarlaması - The SparseHash library contains several hash-map implementations, including implementations that optimize for space or speed. - SparseHash kitaplığı hıza veya boyuta göre eniyileştirilebilecek çeşitli hash-map uyarlamalarını içerir. - https://github.com/sparsehash/sparsehash/archive/sparsehash-2.0.3.tar.gz - programming/misc/google-sparsehash/pspec.xml - - - google-sparsehash - - /usr/lib - /usr/include - /usr/share/doc - - - - - 2018-09-09 - 2.0.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-04 - 2.0.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libinput - http://www.freedesktop.org/wiki/Software/libinput/ - - Alihan Öztürk - alihan@pisilinux.org - X11 app:console - programming.misc - library that handles input devices for display servers and other applications that need to directly deal with input devices. - libinput Wayland Campasitars giriş aygıtları işlemek için ve genel X.Org giriş sürücü sağlamak için bir kütüphane. - It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect. - Bu yüzden kullanıcıların beklediği fonksiyonellik ortak kümesi sağlamak için gereken özel giriş kodu compositors miktarını en az indirerek, aygıt kullanımı, giriş aygıtı olay işleme ve soyutlama sağlar. - https://www.freedesktop.org/software/libinput/libinput-1.19.3.tar.xz + desktop.xfce.addon + keybinder is a library for registering global keyboard shortcuts. + evrensel klavye kısayolları kayıtları için bir kütüphane. + keybinder is a library for registering global keyboard shortcuts. Keybinder works with GTK-based applications using the X Window System. + Keybinder evrensel klavye kısayolları kayıtları için bir kütüphane ler içerir. Keybinder X Pencere Sistemi kullanarak GTK tabanlı uygulamalar ile çalışır. + https://codeload.github.com/kupferlauncher/keybinder/tar.gz/keybinder-3.0-v0.3.2 - meson + gtk-doc gtk3-devel - valgrind-devel - libevdev-devel - check-devel - libunwind-devel - eudev-devel - libmtdev-devel - libwacom-devel - libXtst-devel - wayland-client - wayland-devel - wayland-protocols-devel + gnome-common + gobject-introspection-devel - programming/misc/libinput/pspec.xml + desktop/xfce/addon/keybinder/pspec.xml - libinput + keybinder gtk3 - eudev - cairo glib2 - libevdev - libmtdev - libwacom libX11 - wayland-client - - - /etc - /usr/bin - /usr/libexec/libinput - /usr/lib - /lib/udev - /usr/share/doc - /usr/share/libinput - /usr/share/zsh - /usr/share/man/man1 - - - - libinput-devel - Development files for libinput - - libinput - eudev-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-14 - 1.19.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-09 - 1.19.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 1.19.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-04 - 1.18.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 1.15.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-16 - 1.14.901 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-18 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-04 - 1.12.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.11.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-06 - 1.10.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-12 - 1.10.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-22 - 1.10.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-24 - 1.9.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-21 - 1.6.3 - fix pisi check. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-11 - 1.6.3 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-13 - 1.6.1 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-11-03 - 1.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.2.4 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-08 - 1.2.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libsigc++3 - https://libsigcplusplus.github.io/libsigcplusplus/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Typesafe signal framework for C++ - libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. - mirrors://gnome/libsigc++/3.0/libsigc++-3.0.7.tar.xz - - mm-common - - programming/misc/libsigc++3/pspec.xml - - - libsigc++3 - - libgcc - - - /usr/lib - /usr/share/doc - - - - libsigc++3-devel - Development files for libsigc++3 - - libsigc++3 - - - /usr/include - /usr/lib/sigc++*/include - /usr/lib/pkgconfig - - - - libsigc++3-docs - Development documents for libsigc++ - - /usr/share/doc/libsigc++-3.0/ - - - - - 2021-07-25 - 3.0.7 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - qml-box2d - https://github.com/qml-box2d/qml-box2d - - Berk Çakar - berk2238@hotmail.com - - BSD - programming.misc - Box2D QML plugin - Box2D QML plugin - https://github.com/qml-box2d/qml-box2d/archive/1b37be7d9dfb44ec6d520595a4e4f45f63717822.zip - - qt5-declarative-devel - - programming/misc/qml-box2d/pspec.xml - - - qml-box2d - Box2D QML plugin - - qt5-declarative - qt5-base - libgcc - - - /usr/lib - - - - - 2021-04-24 - 20160102 - First release - Berk Çakar - berk2238@hotmail.com - - - - - - libical - https://github.com/libical/libical - - Berk Çakar - berk2238@hotmail.com - - MPL-1.1 - LGPLv2 - library - programming.misc - An open source reference implementation of the icalendar data type and serialization format - icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi - libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. - libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. - https://github.com/libical/libical/releases/download/v3.0.9/libical-3.0.9.tar.gz - - cmake - db-devel - docbook-xsl - doxygen - glib2-devel - gobject-introspection-devel - gtk-doc - libxml2-devel - libxslt-devel - perl - python-six - vala - - programming/misc/libical/pspec.xml - - - libical - The Evolution Data Server package provides a unified backend for programs that work with -contacts, tasks, and calendar information. - - db - glib2 - icu4c - libgcc gobject-introspection - /usr/lib - /usr/libexec/libical/ical-glib-src-generator - /usr/share/gir-1.0/* - /usr/share/libical/zoneinfo - /usr/share/vala/* - - - - libical-devel - Development files for libical - libical için geliştirme dosyaları - - db-devel - glib2-devel - icu4c-devel - libical - - - /usr/include - /usr/lib/pkgconfig - - - - libical-docs - libical reference documents - - /usr/share/gtk-doc - - - - - 2021-04-10 - 3.0.9 - Version bump. - Berk Çakar - berk2238@hotmail.com - - - 2020-01-14 - 3.0.7 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-01-31 - 3.0.1 - Version Bump - Mustafa Cinasal - admin@pisilinux.org - - - 2017-12-26 - 3.0.1 - Version Bump - Mustafa Cinasal - admin@pisilinux.org - - - 2017-02-17 - 2.0.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-06 - 1.0.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libctemplate - https://github.com/OlafvdSpek/ctemplate - - Pisi Linux Community - admins@pisilinux.org - - BSD - library - programming.misc - CTemplate is a simple but powerful template language for C++. - CTemplate C++ için basit ama çok güçlü bır taslak/şablon kitaplığıdır. - It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. - libctemplate, C++ için basit ama çok güçlü bır taslak/şablon kitaplığı sunar. - https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.4.tar.gz - - python3-devel - glibc-devel - - programming/misc/libctemplate/pspec.xml - - - libctemplate - CTemplate is a simple but powerful template language for C++. - - libgcc - - - /usr/bin/diff_tpl_auto_escape - /usr/bin/make_tpl_varnames_h - /usr/bin/template-converter - /usr/share/doc - /usr/lib - - - - libctemplate-devel - Development files for libctemplate - - libctemplate - - - /usr/include - - - - - 2020-03-18 - 2.4 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-09 - 2.3 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2017-04-30 - 2.3 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 2.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - autoconf213 - http://www.gnu.org/software/autoconf/autoconf.html - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - programming.misc - Used to create autoconfiguration files version 2.13 - Used to create autoconfiguration files, Autoconf is an extensible package of m4 macros that produce shell scripts to automatically configure software source code packages. - mirrors://gnu/autoconf/autoconf-2.13.tar.gz - - texinfo - m4 - perl - - - autoconf-2.13-consolidated_fixes-1.patch - - programming/misc/autoconf213/pspec.xml - - - autoconf213 - - texinfo - m4 - - - /usr/bin - /usr/share/doc - /usr/share - /usr/share/info - /usr/share/autoconf - - - - - 2020-12-09 - 2.13 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-29 - 2.13 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-07 - 2.13 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-30 - 2.13 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2016-03-13 - 2.13 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - qrencode - http://fukuchi.org/works/qrencode/index.en.html - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - programming.misc - A C library for encoding data in a QR code symbol - QR kod sembolüne veri gömmek için bir kitaplık - qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. - qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. - http://fukuchi.org/works/qrencode/qrencode-4.0.2.tar.gz - - libsdl-devel - m4 - gettext-devel - libpng-devel - - programming/misc/qrencode/pspec.xml - - - qrencode - - libpng - - - /usr/lib - /usr/bin/qrencode - /usr/share/man/man1 - /usr/share/doc - - - - qrencode-devel - Development files for qrencode - qrencode için geliştirme dosyaları - - qrencode - - - /usr/include - /usr/lib/pkgconfig - - - - - 2018-09-02 - 4.0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-01 - 3.4.4 - Rebuild for new Toolchain - Kamil Atlı - suvari@pisilinux.org - - - 2016-05-22 - 3.4.4 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-02-22 - 3.4.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libevent - http://monkey.org/~provos/libevent - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.misc - Une librairie pour exécuter une fonction lorsqu'un événement spécifique a lieu sur un descripteur (descriptor) de fichier. - A library to execute a function when a specific event occurs on a file descriptor - Dosya tanımlayıcıları üzerindeki belirli değişiklerde belirli fonksiyonların çalıştırılmasını sağlayan bir kitaplığı - The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. - libevent dosya tanımlayıcısında tanımlı bir olay oluştuğunda ya da zamanaşımı olduğunda belirlenmiş fonksiyonların çalıştırılma mekanizmasını sağlar. Olay güdümlü(event-driven) ağ sunucularının bulundurduğu asenkron olay döngülerinin(event-loop) yerine alması anlamına gelir. Uygulamanın olay döngüsünü degiştirmek zorunda kalmadan dinamik olarak olay ekleme ve silme işlemlerini yapabilmek için yalnızca event_dispatch() fonksiyonunu çağırması yeterli olur. - https://github.com/libevent/libevent/archive/release-2.1.11-stable.tar.gz - - openssl-devel - zlib-devel - - - libevent-linkage_fix.diff - libevent-2.0.13-manpages-on.patch - - programming/misc/libevent/pspec.xml - - - libevent - - openssl - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libevent-devel - Development files for libevent - libevent için geliştirme dosyaları - - libevent - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2021-09-15 - 2.1.11 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 2.1.11 - Version bump - İdris Kalp - aidriskalp@gmail.com - - - 2018-08-05 - 2.1.8 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-02 - 2.1.8 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.0.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 2.0.22 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - intel-tbb - http://www.threadingbuildingblocks.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - Intel Threading Building Blocks Library - Intel Threading kitaplığı - Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance. - https://github.com/intel/tbb/archive/v2020.3.tar.gz - - install.sh - - - cmake - - programming/misc/intel-tbb/pspec.xml - - - intel-tbb - - /usr/lib - /usr/share/doc - - - - intel-tbb-devel - Development files for intel-tbb - intel-tbb için geliştirme dosyaları - - intel-tbb - - - /usr/include - - - - - 2021-06-30 - 2020.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 2020.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2020.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-09 - 2018_20180618 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-30 - 44_20160128 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 44_20160128 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-08 - 44_20160128 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ffcall - http://www.haible.de/bruno/packages-ffcall.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.misc - Foreign function call libraries - Dış işlev fonksiyonları çağırma kitaplıkları - Collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters. - ffcall inşa sırasında yabancı fonksiyonları çağırmak için kullanılan, 4 kitaplıktan oluşan, bir kitaplığıdır. - https://ftp.gnu.org/gnu/libffcall/libffcall-2.2.tar.gz - programming/misc/ffcall/pspec.xml - - - ffcall - - /usr/lib - /usr/share/doc - - - - ffcall-devel - Development files for ffcall - ffcall için geliştirme dosyaları - - ffcall - - - /usr/include - /usr/share/man/man3 - - - - - 2020-03-20 - 2.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libqjson - http://qjson.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.misc - Qt-based library that maps JSON data to QVariant objects - Qt tabanlı bu kitaplığı JSON data haritalarını QVariant nesnelere dönüştürür - Implementacja Qt formatu JSON - libqjson, (JavaScript Object Notation) is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. - libqjson, (JavaScript Object Notation) bir veri değişim biçimidir. JSON haritalarını QVariant nesnelere dönüştürür.. - http://source.pisilinux.org/1.0/qjson-0.82_d0f62e65.tar.gz - - qt5-base-devel - cmake - - programming/misc/libqjson/pspec.xml - - - libqjson - - qt5-base - libgcc - - - /usr/lib - /usr/share/doc - - - - libqjson-devel - Development files for libqjson - libqjson için geliştirme dosyaları - Pliki nagłówkowe do libqjson - - libqjson - qt5-base-devel - - - /usr/include/qjson - /usr/lib/pkgconfig - /usr/lib/cmake/qjson - - - - - 2018-08-07 - 0.82_p1 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2017-04-30 - 0.82_p1 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.82_p1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-18 - 0.82_p1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libwps - http://sourceforge.net/projects/libwps - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - programming.misc - Microsoft Works format import library - Microsoft Works biçimi için bir kitaplık - libwps is a Microsoft Works file format import filter based on top of the libwpd (which is already used in three word processors). - libwps, (halihazırda 3 kelime işlemci tarafından kullanılan) libwpd tabanlı bir Microsoft Works dosya biçimi ithal filtresidir. - https://sourceforge.net/projects/libwps/files/libwps/libwps-0.4.12/libwps-0.4.12.tar.xz - - boost-devel - libwpd-devel - librevenge-devel - - programming/misc/libwps/pspec.xml - - - libwps - - libgcc - librevenge - - - /usr/lib - /usr/share/doc - /usr/bin - - - - libwps-devel - Development files for libwps - libwps için geliştirme dosyaları - - librevenge-devel - libwps - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-21 - 0.4.12 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-03-10 - 0.4.12 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2020-02-22 - 0.4.10 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2018-09-16 - 0.4.10 - First release - PisiLinux Community - admins@pisilinux.org - - - 2018-03-22 - 0.4.8 - First release - PisiLinux Community - admins@pisilinux.org - - - 2017-01-01 - 0.4.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ctags - http://ctags.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.tool - Exuberant Ctags generates an index (or tag) file of objects found in source and header files - Kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir - Exuberant Ctags génère un fichier d'index (ou tag) pour les objets trouvés dans les fichiers sources et d'entête permettant à ces entités d'être rapidement et facilement localisées par un éditeur de texte et d'autres utilitaires. Il gère actuellement 33 langages de programmation. - Exuberant Ctags generates an index (or tag) file of objects found in source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 33 programming languages. - Exuberant Ctags, kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir. - Exuberant Ctags genera un archivo de índice (o tag) de objetos encontrados en archivos de fuente y cabeceras, para localizar fácilmente estos ítemes con un editor de texto u otra herramienta. Actualmente soporta 33 lenguajes de programación. - https://github.com/universal-ctags/ctags/archive/p5.9.20201129.0.tar.gz - - docutils - python3 - python3-Pygments - python-docutils - jansson-devel - libxml2-devel - libyaml-devel - libseccomp-devel - - programming/tool/ctags/pspec.xml - - - ctags - - jansson - libxml2 - libyaml - libseccomp - - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2020-11-07 - 5.9 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-08 - 5.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-29 - 5.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-05-10 - 5.8 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 5.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-21 - 5.8 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - cppcheck - https://cppcheck.sourceforge.io/ - - fury - uglyside@yandex.ru - - GPLv3 - app:gui - app:console - programming.tool - static analysis of C/C++ code. - Cppcheck is a static analysis tool for C/C++ code. It provides unique code analysis to detect bugs and focuses on detecting undefined behaviour and dangerous coding constructs. The goal is to detect only real errors in the code (i.e. have very few false positives). - mirrors://sourceforge/cppcheck/cppcheck-2.8.tar.bz2 - - cmake - z3-devel - zlib-devel - docbook-xsl - qt5-sql-odbc - qt5-linguist - libxslt-devel - libpcre-devel - python3-devel - qt5-sql-mysql - qt5-sql-sqlite - qt5-base-devel - tinyxml2-devel - qt5-charts-devel - qt5-sql-postgresql - python3-setuptools - qt5-assistant-devel - - - htmlreport_py3.patch - qm_install_path.patch - - programming/tool/cppcheck/pspec.xml - - - cppcheck - - z3 - libgcc - libpcre - python3 - tinyxml2 - qt5-base - qt5-charts - qt5-assistant - python3-Pygments - - - /usr/bin + /usr/lib/ /usr/share - /usr/share/Cppcheck - /usr/share/Cppcheck/lang - /usr/share/man - /usr/share/doc - - - - - 2022-05-28 - 2.8 - Ver. bump - fury - uglyside@yandex.ru - - - 2022-02-05 - 2.7 - Ver. bump - fury - uglyside@yandex.ru - - - 2021-10-11 - 2.6 - Ver. bump - fury - uglyside@yandex.ru - - - 2021-07-05 - 2.5 - Ver. bump - fury - uglyside@yandex.ru - - - 2021-03-24 - 2.4 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-12-20 - 2.3 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-10-06 - 2.2 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-06-27 - 2.1 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-04-16 - 1.90 - Version Bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-12-19 - 1.89 - First build. - fury - uglyside@yandex.ru - - - - - - cmocka - https://cmocka.org/ - - Blue Devil - bluedevil@sctzine.com - - Apache - library - programming.tool - Full unit testing framework for C with support for mock objects. - Sahte nesneler ile deskteklenmiş C için tam birim test çatısı - cmocka is an elegant unit testing framework for C with support for mock objects. It only requires the standard C library, works on a range of computing platforms (including embedded) and with different compilers. - cmocka sahte nesneler ile deskteklenmiş C için tam birim test çatısı sunar. - https://gitlab.com/cmocka/cmocka/-/archive/cmocka-1.1.5/cmocka-cmocka-1.1.5.tar.gz - - doxygen - cmake - - programming/tool/cmocka/pspec.xml - - - cmocka - Full unit testing framework for C with support for mock objects. - - /usr/lib /usr/share/doc - cmocka-devel - Development files for cmocka - cmocka için geliştirme dosyaları - libssh-cmocka, cmocka için geliştirme dosyalarını içerir. + keybinder-devel + Development files for keybinder + keybinder için geliştirme dosyaları - cmocka + keybinder + gtk3-devel - /usr/include + /usr/include/ /usr/lib/pkgconfig - 2020-02-24 - 1.1.5 - First release - Blue Devil - bluedevil@sctzine.com + 2020-11-21 + 0.3.2 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com - iucode-tool - https://gitlab.com/iucode-tool/iucode-tool - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - programming.tool - Tool to manipulate Intel® IA-32/X86-64 microcode bundles - Tool to manipulate Intel® IA-32/X86-64 microcode bundles - https://gitlab.com/iucode-tool/iucode-tool/-/archive/v2.3.1/iucode-tool-v2.3.1.tar.gz - programming/tool/iucode-tool/pspec.xml - - - iucode-tool - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2021-05-26 - 2.3.1 - First release - Berk Çakar - berk2238@hotmail.com - - - - - - fcgi - http://www.fastcgi.com/drupal + mousepad + https://git.xfce.org/apps/mousepad/about/ PisiLinux Community admins@pisilinux.org - BSD - library - programming.tool - FastCGI development kit - FastCGI araç takımı - FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. - FastCGI; dil bağımsız, ölçeklenebilir, CGI sunucusunun sınırlamaları olmadan belirli API'leri yüksek performansda çalıştıran bir kitaplıktır. - https://github.com/FastCGI-Archives/fcgi2/archive/2.4.2.tar.gz - programming/tool/fcgi/pspec.xml + GPLv2 + app:gui + desktop.xfce.addon + A simple text editor for Xfce + Xfce için küçük bir yazı düzenleyici + Mousepad aims to be an easy-to-use and fast editor. Our target is an editor for quickly editing text files, not a development environment or an editor with a huge bunch of plugins. On the other hand we try to use the latest Gtk+ features available, which means that if Gtk adds something new in a major release that is useful for the editor, we will likely bump the Gtk dependency and integrate this new feature in Mousepad. + Mousepad, Xfce için yazılmış bir metin düzenleyicisidir. + https://archive.xfce.org/src/apps/mousepad/0.5/mousepad-0.5.9.tar.bz2 + + intltool + gtk3-devel + dbus-devel + glib2-devel + gspell-devel + xfconf-devel + enchant2-devel + libxml2-devel + gtksourceview4-devel + + desktop/xfce/addon/mousepad/pspec.xml - fcgi + mousepad + + atk + gtk3 + cairo + glib2 + pango + gspell + harfbuzz + xfconf + libxml2 + enchant2 + gdk-pixbuf + gtksourceview4 + /usr/bin /usr/lib - /usr/share/doc/fcgi - /usr/share/man - - - - fcgi-devel - Development files for fcgi - fcgi için geliştirme dosyaları - - fcgi - - - /usr/include - /usr/share/man/man3 - - - - - 2020-03-21 - 2.4.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dev86 - https://github.com/lkundrak/dev86 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.tool - Development environment for ELKS-86 and standalone 8086 code - ELKS-86 ve 8086 kodları için geliştirme ortamı - Entorno de desarrollo para ELKS-86 y código 8086 independiente - The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources. - https://github.com/lkundrak/dev86/archive/v0.16.21.tar.gz - - fedora/dev86-noelks.patch - fedora/dev86-nostrip.patch - fedora/dev86-long.patch - dont-ask-anything.patch - 64bit-build-fix.patch - makefile-fix.patch - - programming/tool/dev86/pspec.xml - - - dev86 - - /usr/bin + /usr/share + /usr/share/locale /usr/share/doc - /usr/share/man + + 2022-04-03 + 0.5.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-26 + 0.5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2020-11-07 - 0.16.21 - Rebuild. + 2021-09-24 + 0.5.7 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-26 - 0.16.21 - Rebuild. + 2021-08-27 + 0.5.6 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-15 - 0.16.21 - Version Bump. + 2021-05-14 + 0.5.5 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-15 - 0.16.19 - Release Bump. - Kamil Atlı - admin@pisilinux.org + 2021-04-10 + 0.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2017-05-15 - 0.16.19 - Release Bump. - Kamil Atlı - admin@pisilinux.org + 2021-02-02 + 0.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2016-06-09 - 0.16.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2020-12-24 + 0.5.1 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com - 2014-02-17 - 0.16.19 - First release - Serdar Soytetir - kaptan@pisilinux.org + 2020-11-21 + 0.4.90 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com - cppunit - http://www.freedesktop.org/wiki/Software/cppunit + orage + https://github.com/balena/orage - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.tool - C++ port of the famous JUnit framework for unit testing - Popüler JUnit test çatısının C++ sürümü - cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers. - cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır. - https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz - - grep - libtool - - programming/tool/cppunit/pspec.xml - - - cppunit - - /usr/lib - /usr/share/doc - - - - cppunit-devel - Contains the headers and other files necessary for developing programs that use cppunit - - cppunit - libgcc - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/share/man - - - - - 2020-01-15 - 1.15.1 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-29 - 1.14.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-08-01 - 1.14.0 - Version Bump Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - - - 2017-04-11 - 1.13.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.13.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-21 - 1.13.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - gdb - http://www.gnu.org/software/gdb/ - - PisiLinux Community - admins@pisilinux.org - GPLv3 - app:console - programming.debug - GNU debugger - GNU hata ayıklayıcısı - Depurador GNU - GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed. - GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar. - GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado. - https://ftp.gnu.org/gnu/gdb/gdb-11.1.tar.xz + LGPLv2 + app:gui + desktop.xfce.addon + A calendar for Xfce + Xfce için takvim + Orage is a time-managing application for the Xfce desktop environment. + Orage, Xfce masaüstü yöneticisi için yapılmış zaman yönetimi uygulamasıdır. + https://archive.xfce.org/src/apps/orage/4.16/orage-4.16.0.tar.bz2 - texinfo - xz-devel - mpfr-devel - expat-devel - python-devel - xxhash-devel - ncurses-devel - guile2.0-devel - readline-devel - source-highlight-devel - - - 0001-AArch64-Make-gdbserver-register-set-selection-dynami.patch - - programming/debug/gdb/pspec.xml - - - gdb - GNU debugger - - xz - mpfr - expat - libgcc - xxhash - python - ncurses - guile2.0 - readline - source-highlight - - - /usr/lib - /usr/share/man - /usr/share/gdb - /usr/bin - /usr/share/info - /usr/share/doc/gdb - - - - gdb-devel - Development files for gdb - gdb için geliştirme dosyaları - gdb-devel, provides development files for gdb. - - gdb - - - /usr/include - - - - - 2021-11-30 - 11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-15 - 10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 9.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-07 - 9.2 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-07 - 8.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 8.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 8.0.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 7.12.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 7.9.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-30 - 7.9.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - php - http://www.php.net - - Fatih Turgel - turgelfatih@gmail.com - - PHP - library - programming.language.php - PHP7 is an HTML-embedded scripting language. The goal of the language is to allow web developers to write dynamically generated pages quickly - Dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dili - PHP7 is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly. - PHP7, dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dilidir. Dil yapısının önemli bir kısmı C, Java ve Perl'den alınmıştır. Bu dilin amacı, web geliştiricilerinin kısa zamanda dinamik sayfalar oluşturmasına imkan vermektir. - PHP7 es un languaje interpretado que puede estar embebido en HTML. Muchas partes de su sintaxis fueron prestados de C, Java y Perl con algunas facilidades agregados únicas de PHP. El lenguaje permite a desarrolladores web escribir de manera sencilla páginas con contenido dinámico. - https://www.php.net/distributions/php-7.4.25.tar.xz - - gd-devel - re2c - libzip-devel - harfbuzz-devel - apr-devel - apr-util-devel - apache - postfix - libxslt-devel + gettext + intltool db-devel - mariadb-lib - libmcrypt-devel - mit-kerberos-devel - libc-client - postgresql-server - libjpeg-turbo-devel - zlib-devel - curl-devel - gdbm-devel - libpng-devel - freetype-devel - openssl-devel - sqlite-devel - oniguruma-devel + gtk3-devel + libSM-devel + libICE-devel + popt-devel + libical-devel + dbus-glib-devel + libnotify-devel + gdk-pixbuf-devel + xfce4-panel-devel + libxfce4ui-devel + libxfce4util-devel - - db6.patch - debian/052-phpinfo_no_configure.patch - - programming/php/php/pspec.xml + desktop/xfce/addon/orage/pspec.xml - php-cli + orage - php-common - gd - curl - zlib - bzip2 - libpng - libxslt - libxml2 - freetype - mariadb-lib - libmcrypt - mit-kerberos - postgresql-lib - openldap-client - libjpeg-turbo - oniguruma - sqlite - openssl - - - /etc/php/cli - /usr/bin - /usr/share/man - - - go-pear - - - - php-common - Common config files for PHP - PHP için genel yapılandırma dosyaları - - db - gd - pam - gdbm - mit-kerberos - - - /usr/lib/php/modules - /usr/share/php7 - /etc/php/ext - - - - php-devel - Development files for PHP - - php-common - - - /usr/bin/php-config - /usr/bin/phpize - /usr/include - /usr/lib/php/build - /usr/share/man/man1/php-config* - /usr/share/man/man1/phpize* - - - - php-pear - Development files for PHP - - php-common - - - /etc/pear.conf - /usr/bin/pear - /usr/bin/go-pear - /usr/lib/php/PEAR/ - /usr/lib/php/Structures - /usr/lib/php/.lock - /usr/lib/php/peclcmd.php - /usr/lib/php/pearcmd.php - /usr/lib/php/System.php - /usr/lib/php/PEAR.php - /usr/lib/php/.filemap - /usr/lib/php/.registry/ - /usr/lib/php/Console/Getopt.php - /usr/lib/php/XML/Util.php - /usr/lib/php/Archive/Tar.php - /usr/lib/php/test/XML_Util - /usr/lib/php/test/Structures_Graph - /usr/lib/php/test/Console_Getopt - /usr/lib/php/.channels - /usr/lib/php/doc/ - /usr/lib/php/data/PEAR/ - /usr/lib/php/OS/Guess.php - - - - mod_php - server.web - - xz - pam - curl - zlib - bzip2 - libnsl - libpng - apache - libxml2 - freetype - libtool-ltdl - mariadb-lib - postgresql-lib - gd - libxslt - mit-kerberos - openldap-client - cyrus-sasl + atk + dbus + gtk3 + libSM + popt + cairo + glib2 + pango + libICE + libX11 + libical harfbuzz - php-common - libmcrypt - libjpeg-turbo - sqlite - openssl - e2fsprogs - oniguruma - - - /usr/lib/apache2/modules/libphp7.so - /etc/apache2 - /etc/php/apache2 - - - 70_mod_php7.conf - - - - php-zip - Zip extension for PHP - - php-common - pam - libzip - mit-kerberos - - - /usr/lib/php/modules/zip.so - /etc/php/cli/ext/10-php-zip.ini - /etc/php/ext/10-php-zip.ini - - - 10-php-zip.ini - - - - php-imap - Module for PHP to enable IMAP support - - pam - openssl - e2fsprogs - php-common - libc-client - mit-kerberos - - - /usr/lib/php/modules/imap.so - /etc/php/ext/11-php-imap.ini - /etc/php/cli/ext/11-php-imap.ini - /etc/php/apache2/ext/11-php-imap.ini - - - 11-php-imap.ini - - - - php-fpm - FPM for PHP - - libxslt - libmcrypt - php-common - libjpeg-turbo - postgresql-lib - openldap-client - curl - zlib - bzip2 - sqlite - libxml2 - openssl - oniguruma - - - /usr/sbin/php-fpm - /usr/share/man/man8/php-fpm.8 - /etc/php/ext/php-fpm.conf - /etc/php-fpm.d/www.conf.default - /usr/share/fpm - /run - /var/log - - - System.Service - - - php-fpm.conf - - - - - 2021-10-31 - 7.4.25 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-06 - 7.4.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-22 - 7.4.3 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2019-10-11 - 7.3.10 - Version bump and OpenSSL fix - İdris Kalp - idriskalp@gmail.com - - - 2019-08-01 - 7.3.8 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-11-26 - 7.2.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-09 - 7.2.9 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-06-17 - 7.2.6 - Version Bump - Erkan IŞIK - info@erkanisik.com - - - 2017-12-24 - 7.2.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-06 - 5.6.30 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 5.6.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-20 - 5.6.20 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - mhash - http://mhash.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.library - A uniform interface to several hash algorithms. - Hash algoritmaları için ortak arayüz - mhash is a free library which provides a uniform interface to a large number of hash algorithms. - mhash, çeşitli hash algoritmalarını kolayca kullanabilmek için ortak arayüz sağlayan özgür bir kitaplıktır. - mirrors://sourceforge/mhash/mhash-0.9.9.9.tar.bz2 - - mhash-0.9.9.9-keygen_test_fix.patch - - programming/library/mhash/pspec.xml - - - mhash - - /usr/lib - /usr/share/doc - - - - mhash-devel - Development files for mhash - mhash paketine ait geliştirme dosyaları - - mhash - - - /usr/include - /usr/share/man/man3 - - - - - 2020-12-20 - 0.9.9.9 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sassc - https://github.com/sass/sassc - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.library - Sass CSS ön işlemcisinin C uygulaması - Sass CSS ön işlemcisinin C uygulamas - C implementation of Sass CSS preprocessor - C implementation of Sass CSS preprocessor - https://github.com/sass/sassc/archive/3.6.2.tar.gz - - libsass-devel - - programming/library/sassc/pspec.xml - - - sassc - - libsass + freetype + dbus-glib + libnotify + libxfce4ui + gdk-pixbuf + fontconfig + xfce4-panel + libxfce4util /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man /usr/share/doc - - 2021-08-02 - 3.6.2 + + 2022-03-23 + 4.16.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-03-04 - 3.6.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - 2019-01-17 - 3.5.0 - First release - PisiLinux Community - admins@pisilinux.org + 2020-11-21 + 4.12.1 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com - libosinfo - https://libosinfo.org/ + parole + https://docs.xfce.org/apps/parole/start - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPL - LGPL - library - programming.library - GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support - GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support - GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support - GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support - https://releases.pagure.org/libosinfo/libosinfo-1.9.0.tar.xz + GPLv2 + app:gui + desktop.xfce.addon + A modern simple media player + Basit ve modern bir medya oynatıcı + Parole is a modern simple media player based on the GStreamer framework and written to fit well in the Xfce desktop. Parole is designed with simplicity, speed and resource usage in mind. + Parole GStreamer üzerine Xfce masaüstüne iyi uyum sağlayacak şekilde yazılmış basit ve modern bir medya oynatıcıdır. Basitlik, hız ve kaynak kullanımı göz önünde tutularak yazılmıştır. + https://archive.xfce.org/src/apps/parole/4.16/parole-4.16.0.tar.bz2 - meson gtk-doc intltool - vala-devel - python3-six - docbook-xsl - glib2-devel - libxslt-devel - libxml2-devel - libsoup-devel - gobject-introspection-devel - - programming/library/libosinfo/pspec.xml - - - libosinfo - - glib2 - libgcc - libxml2 - libxslt - libsoup - - - /usr/bin - /usr/lib - /usr/share - /usr/share/vala - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - libosinfo-devel - osinfo headers. - - glib2-devel - libosinfo - - - /usr/include - /usr/lib/pkgconfig - - - - libosinfo-docs - - libosinfo - - - /usr/share/gtk-doc - - - - - 2021-1-27 - 1.9.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2020-03-01 - 1.7.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2019-03-18 - 1.4.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libsass - https://github.com/sass/libsass - - PisiLinux Community - admins@pisilinux.org - - MIT - app - programming.library - LibSass is a C++ port of the original Ruby Sass CSS compiler with a C API. - Sass CSS ön işlemcisinin C uygulaması (kütüphane) - C implementation of Sass CSS preprocessor (library) - C implementation of Sass CSS preprocessor (library) - https://github.com/sass/libsass/archive/3.6.5.tar.gz - programming/library/libsass/pspec.xml - - - libsass - - libgcc - - - /usr/lib - /usr/share - /usr/share/doc - - - - libsass-devel - Development files for libsass - - libsass - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-08-02 - 3.6.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 3.6.3 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-01-17 - 3.5.5 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdazzle - https://gitlab.gnome.org/GNOME/libdazzle - - Berk Çakar - berk2238@hotmail.com - - GPLv3 - programming.misc - The libdazzle library is a companion library to GObject and Gtk+ - The libdazzle library is a companion library to GObject and Gtk+ - https://download.gnome.org/sources/libdazzle/3.44/libdazzle-3.44.0.tar.xz - gtk3-devel - gobject-introspection-devel - gtk-doc - meson - vala-devel - glib2-devel - cairo-devel - - programming/library/libdazzle/pspec.xml - - - libdazzle - The libdazzle library is a companion library to GObject and Gtk+ - - glib2 - gtk3 - cairo - pango - gdk-pixbuf - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/libdazzle*.so* - /usr/share/doc - /usr/share/vala - /usr/share/locale - - - - libdazzle-devel - - libdazzle - gtk3-devel - - - /usr/include/libdazzle-1.0 - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-03-21 - 3.44.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-22 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-25 - 3.40.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libcloudproviders - http://live.gnome.org/libcloudproviders - - Berk Çakar - berk2238@hotmail.com - - LGPLv3 - library - programming.library - libcloudproviders is a DBus API that allows cloud storage sync clients to expose -their services. - libcloudproviders is a DBus API that allows cloud storage sync clients to expose -their services. Clients such as file managers and desktop environments can then -provide integrated access to the cloud providers services. - https://gitlab.gnome.org/World/libcloudproviders/-/archive/0.3.1/libcloudproviders-0.3.1.tar.gz - - meson - vala-devel - glib2-devel - gobject-introspection-devel - - programming/library/libcloudproviders/pspec.xml - - - libcloudproviders - - glib2 - gobject-introspection - - - /usr/lib - /usr/share/doc - - - - libcloudproviders-devel - Development files for libcloudproviders - - libcloudproviders - - - /usr/include - /usr/lib/girepository-1.0 - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/vala/vapi - /usr/share/gir-1.0 - - - - - 2021-05-27 - 0.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-10 - 0.3.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - qtutilities - https://github.com/Martchus/qtutilities - - fury - uglyside@yandex.ru - - GPL-2 - library - programming.library - Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models. - Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models. - https://github.com/Martchus/qtutilities/archive/refs/tags/v6.6.0.tar.gz - - cmake - doxygen - qt5-linguist - qt5-base-devel - cpp-utilities-devel - - programming/library/qtutilities/pspec.xml - - - qtutilities - - libgcc - qt5-base - cpp-utilities - - - /usr/lib - /usr/share - /usr/share/doc - - - - qtutilities-devel - - qtutilities - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/qtutilities/cmake - - - - - 2022-04-14 - 6.6.0 - Version bump - fury - uglyside@yandex.ru - - - 2022-01-18 - 6.5.3 - Version bump - fury - uglyside@yandex.ru - - - 2021-11-04 - 6.5.0 - First build - fury - uglyside@yandex.ru - - - - - - abseil-cpp - https://abseil.io/ - - PisiLinux Community - admins@pisilinux.org - - Apache - library - programming.library - Collection of C++ library code designed to augment the C++ standard library - Collection of C++ library code designed to augment the C++ standard library - Collection of C++ library code designed to augment the C++ standard library - Collection of C++ library code designed to augment the C++ standard library - https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz - - cmake - - programming/library/abseil-cpp/pspec.xml - - - abseil-cpp - - libgcc - - - /usr/lib - /usr/share/doc - - - - abseil-cpp-devel - Development files for abseil-cpp - - abseil-cpp - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-12-10 - 20211102.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdatrie - https://linux.thai.net/~thep/datrie/datrie.html - - fury - uglyside@yandex.ru - - LGPL-2.1 - library - programming.library - An Implementation of Double-Array Trie. - This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. - https://linux.thai.net/pub/thailinux/software/libthai/libdatrie-0.2.13.tar.xz - - glibc-devel - - programming/library/libdatrie/pspec.xml - - - trietool - - libdatrie - - - /usr/bin - /usr/share/man/man1 - /usr/share/doc - - - - libdatrie - - /usr/lib - - - - libdatrie-devel - - libdatrie - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-04-14 - 0.2.13 - First build. - fury - uglyside@yandex.ru - - - - - - libdmapsharing - http://www.flyn.org/projects/libdmapsharing/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPLv2 - app:gui - programming.library - A DMAP client and server library - Bir DMAP istemci ve sunucu kitaplığı - A DMAP client and server library - Bir DMAP istemci ve sunucu kitaplığı - libdmapsharing - http://www.flyn.org/projects/libdmapsharing/libdmapsharing-3.9.9.tar.gz - - glib2-devel - libgee-devel - libsoup-devel - gdk-pixbuf-devel - gstreamer-devel - gst-plugins-base-devel - avahi-glib-devel - gtk-doc - vala-devel - - programming/library/libdmapsharing/pspec.xml - - - libdmapsharing - - zlib - glib2 - libsoup - avahi-glib - avahi-libs - gdk-pixbuf - gstreamer - gst-plugins-base - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - - - - libdmapsharing-devel - libdmapsharing için geliştirme dosyaları - - libdmapsharing - glib2-devel - gstreamer-devel - libsoup-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-06-11 - 3.9.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libqaccessibilityclient - https://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.library - Helper library to make writing accessibility tools easier - Helper library to make writing accessibility tools easier - Erişilebilirlik araçlarını yazmayı kolaylaştırmak için yardımcı kitaplık - Erişilebilirlik araçlarını yazmayı kolaylaştırmak için yardımcı kitaplık - https://download.kde.org/stable/libqaccessibilityclient/libqaccessibilityclient-0.4.1.tar.xz - - extra-cmake-modules - qt5-base-devel - - programming/library/libqaccessibilityclient/pspec.xml - - - libqaccessibilityclient - - libgcc - qt5-base - - - /usr/lib - /usr/share/doc - - - - libqaccessibilityclient-devel - Development files for libqaccessibilityclient - - libqaccessibilityclient - - - /usr/include - /usr/lib/cmake - - - - - 2021-10-15 - 0.4.1 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - jsoncpp - https://github.com/open-source-parsers/jsoncpp - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.library - C++ library for interacting with JSON - JSON ile etkileşim için C ++ kütüphanesi - C++ library for interacting with JSON - JSON ile etkileşim için C ++ kütüphanesi - https://github.com/open-source-parsers/jsoncpp/archive/1.9.2.tar.gz - - meson - - programming/library/jsoncpp/pspec.xml - - - jsoncpp - - libgcc - - - /usr/lib - /usr/share - /usr/share/doc - - - - jsoncpp-devel - Development files for jsoncpp - - jsoncpp - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2020-03-01 - 1.9.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-11-30 - 1.8.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - squashfuse - https://github.com/vasi/squashfuse - - Pisi Linux Admins - admin@pisilinux.org - - custom - app - programming.library - FUSE filesystem to mount squashfs archives - FUSE filesystem to mount squashfs archives - FUSE filesystem to mount squashfs archives - FUSE filesystem to mount squashfs archives - https://github.com/vasi/squashfuse/archive/refs/tags/0.1.104.tar.gz - - xz-devel - lz4-devel - lzo-devel - zlib-devel - zstd-devel - fuse-devel - squashfs-tools - - programming/library/squashfuse/pspec.xml - - - squashfuse - - xz - lz4 - lzo - zlib - zstd - fuse - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - squashfuse-devel - Development files for squashfuse - - squashfuse - xz-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-19 - 0.1.104 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - uthash - http://troydhanson.github.io/uthash/ - - fury - uglyside@yandex.ru - - BSD-2 - library - programming.library - A hash table for C structures. - Any C structure can be stored in a hash table using uthash. Just add a UT_hash_handle to the structure and choose one or more fields in your structure to act as the key. Then use these macros to store, retrieve or delete items from the hash table. - https://github.com/troydhanson/uthash/archive/refs/tags/v2.3.0.tar.gz - programming/library/uthash/pspec.xml - - - uthash - - /usr/include - - - - - 2022-04-14 - 2.3.0 - First build. - fury - uglyside@tuta.io - - - - - - libgringotts - https://directory.fsf.org/wiki/LibGringotts - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.library - A small, thread-safe C library. - Küçük ve evreli bir C kitaplığı - libgringotts is a small, thread-safe C library originally developed for Gringotts. Its purpose is to encapsulate data in an encrypted and compressed file. - libgringotts programcının belirli bir dosya biçiminde veri kaydetmeseine imkan veren küçük ve evreli bir C kitaplığıdır. Veriyi şifrelenmiş ve sıkıştırılmış bir şekilde kapsüllemeyi hedefler. - mirrors://sourceforge/gringotts.berlios/libgringotts-1.2.1.tar.bz2 - - libmcrypt-devel - mhash-devel - zlib-devel - - - fix-doc-dir.patch - - programming/library/libgringotts/pspec.xml - - - libgringotts - - libmcrypt - mhash - - - /usr/lib - /usr/share/doc/libgringotts - - - - libgringotts-devel - Development files for libgringotts - - libgringotts - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-20 - 1.2.1 - First release - fury - uglyside@yandex.ru - - - - - - tepl - https://wiki.gnome.org/Projects/Tepl - - PisiLinux Community - admins@pisilinux.org - - LGPL3 - app:gui - programming.library - Library that eases the development of GtkSourceView-based text editors and IDEs - GktSourceView temelli metin editörü ve IDE'ler için geliştirmeyi kolaylaştıran bir kitaplık - Library that eases the development of GtkSourceView-based text editors and IDEs - GktSourceView temelli metin editörü ve IDE'ler için geliştirmeyi kolaylaştıran bir kitaplık - mirrors://gnome/tepl/6.0/tepl-6.0.2.tar.xz - - amtk-devel - gobject-introspection-devel - gtksourceview4-devel - icu4c-devel - meson - gtk-doc - pango-devel - - programming/library/tepl/pspec.xml - - - tepl - - amtk - cairo - glib2 - gtk3 - gtksourceview4 - icu4c - pango - - - /usr/lib/libtepl* - /usr/lib/girepository-1.0 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/locale - - - - tepl-devel - tepl için geliştirme dosyaları - - tepl - amtk-devel - glib2-devel - gtk3-devel - gtksourceview4-devel - icu4c-devel - - - /usr/lib/pkgconfig - /usr/include - /usr/share/gir-1.0 - - - - - 2022-05-27 - 6.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-02 - 6.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 6.00.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gypsy - https://gypsy.freedesktop.org/ - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv2 - library - programming.library - GPS multiplexing daemon - GPS multiplexing daemon - GPS multiplexing daemon - GPS multiplexing daemon - https://gypsy.freedesktop.org/releases/gypsy-0.9.tar.gz - - gtk-doc - dbus-devel python-six glib2-devel + docbook-xsl + xfconf-devel + taglib-devel libxslt-devel - libgudev-devel + libnotify-devel + gstreamer-devel dbus-glib-devel - bluez-libs-devel - gobject-introspection-devel + libxfce4ui-devel + libxfce4util-devel + gst-plugins-base-devel - - g_type_init_deprecation.patch - gypsy-0.9-format.patch - gypsy-0.9-mga-no-werror.patch - gypsy-0.9-gcc7.patch - - programming/library/gypsy/pspec.xml + desktop/xfce/addon/parole/pspec.xml - gypsy + parole + gtk3 dbus glib2 - libgudev + cairo + taglib + xfconf + libX11 + gstreamer dbus-glib - bluez-libs + libnotify + gdk-pixbuf + libxfce4ui + libxfce4util + gst-plugins-base + gst-plugins-good + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + parole-devel + Development files for parole + parole için geliştirme dosyaları + + parole + glib2-devel + gtk3-devel + libxfce4util-devel + + + /usr/include + /usr/share/gtk-doc + + + + + 2021-01-17 + 4.16.0 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-21 + 1.0.5 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + ristretto + https://docs.xfce.org/apps/ristretto/start + + Engin Manap + enginmanap@comu.edu.tr + + GPLv2 + app:gui + desktop.xfce.addon + Image viewer for Xfce + Xfce için resim göstericisi + Ristretto is a fast and lightweight picture-viewer for the Xfce desktop environment. + Ristretto, Xfce masaüstü ortamı için hızlı ve hafif bir resim görüntüleyicisidir. + https://archive.xfce.org/src/apps/ristretto/0.12/ristretto-0.12.2.tar.bz2 + + intltool + gtk3-devel + xfconf-devel + libgsf-devel + libexif-devel + tumbler-devel + libxfce4ui-devel + gdk-pixbuf-devel + poppler-glib-devel + libxfce4util-devel + libjpeg-turbo-devel + + desktop/xfce/addon/ristretto/pspec.xml + + + ristretto + + gtk3 + file + glib2 + cairo + pango + xfconf + libX11 + libexif + gdk-pixbuf + libxfce4ui + libxfce4util + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2022-01-15 + 0.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-26 + 0.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-11 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-21 + 0.11.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-21 + 0.10.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar-archive-plugin + https://docs.xfce.org/xfce/thunar/archive + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + A plugin allows you to create and extract archive files + Arşiv dosyaları yaratmaya ve çıkatmaya yarayan bir eklenti + The Thunar Archive Plugin allows you to create and extract archive files using the file context menus in the Thunar file manager. + The Thunar Archive Plugin Thunar dosya yöneticisinin dosya içeriği menusunden arşiv dosyaları oluşturmaya ve çıkarmaya yarayan bir eklentidir. + https://archive.xfce.org/src/thunar-plugins/thunar-archive-plugin/0.5/thunar-archive-plugin-0.5.0.tar.bz2 + + intltool + exo-devel + gtk3-devel + glib2-devel + file-roller + thunar-devel + + desktop/xfce/addon/thunar-archive-plugin/pspec.xml + + + thunar-archive-plugin + + thunar + exo + gtk3 + glib2 + file-roller + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + /usr/libexec/thunar-archive-plugin + + + + + 2022-04-30 + 0.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-21 + 0.4.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar-media-tags-plugin + https://docs.xfce.org/xfce/thunar/media-tags + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + Thunar media tags plugin + Thunar çoklu ortam bilgi eklentisi + The Thunar Media Tags Plugin (thunar-media-tags-plugin) adds special features for media files to the Thunar File Manager. + Thunar + https://archive.xfce.org/src/thunar-plugins/thunar-media-tags-plugin/0.3/thunar-media-tags-plugin-0.3.0.tar.bz2 + + gettext + intltool + exo-devel + thunar-devel + taglib-devel + libxml2-devel + libxfce4ui-devel + libxfce4util-devel + + desktop/xfce/addon/thunar-media-tags-plugin/pspec.xml + + + thunar-media-tags-plugin + + exo + atk + gtk3 + glib2 + thunar + taglib + + + /usr/lib + /usr/share/locale + /usr/share/doc + + + + + 2020-11-21 + 0.3.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar-sendto-clamtk + https://bitbucket.org/davem_/thunar-sendto-clamtk/src/master/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + data + desktop.xfce.addon + Right-click send-to ClamTk functionality within Thunar + Thunar içinden sağ tıklama ile ClamTk'ya göndermeyi sağlar + thunar-sendto-clamtk is a small package to add right-click send-to ClamTk functionality within Thunar. + thunar-sendto-clamtk Thunar içinden sağ tıklama ile ClamTk'ya göndermeyi sağlayan basit bir pakettir. + https://github.com/dave-theunsub/thunar-sendto-clamtk/archive/master.zip + desktop/xfce/addon/thunar-sendto-clamtk/pspec.xml + + + thunar-sendto-clamtk + + clamav-gui + + + /usr/share/man + /usr/share/doc + /usr/share/Thunar/sendto/thunar-sendto-clamtk.desktop + + + + + 2020-11-23 + 0.06 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar-shares-plugin + https://docs.xfce.org/xfce/thunar/thunar-shares-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + Thunar Shares Plugin + Samba kullanarak hızlı bir şekilde dizin paylaşmanıza izin veren bir eklenti + The Thunar Shares Plugin (thunar-shares-plugin) allows you to quickly share a folder using Samba from Thunar (the XFCE file manager) without requiring root access. + thunar-shares-plugin, root yetkileri gerektirmeden Samba kullanarak Thunar'dan hızlı bir şekilde dizin paylaşmanıza izin verir. + https://archive.xfce.org/src/thunar-plugins/thunar-shares-plugin/0.3/thunar-shares-plugin-0.3.1.tar.bz2 + + intltool + gtk3-devel + glib2-devel + samba-devel + thunar-devel + + desktop/xfce/addon/thunar-shares-plugin/pspec.xml + + + thunar-shares-plugin + + thunar + glib2 + gtk3 + samba + + + /usr/lib + /usr/share/locale + /usr/share/doc + + + + + 2020-12-05 + 0.3.1 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar-vcs-plugin + https://docs.xfce.org/xfce/thunar/thunar-vcs-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + An SVN integration and GIT integration to Thunar + Thunar için svn ve git entegrasyonu sağlar + The Thunar VCS Plugin adds Subversion and GIT actions to the context menu of thunar. This gives a SVN integration and GIT integration to Thunar. + thunar-vcs-plugin, Thunar için Subversion ve Git entegrasyonu sağlayan bir modüldür. + https://archive.xfce.org/src/thunar-plugins/thunar-vcs-plugin/0.2/thunar-vcs-plugin-0.2.0.tar.bz2 + + intltool + exo-devel + thunar-devel + subversion-devel + + desktop/xfce/addon/thunar-vcs-plugin/pspec.xml + + + thunar-vcs-plugin + + apr + exo + atk + gtk3 + cairo + pango + glib2 + thunar + harfbuzz + subversion + gdk-pixbuf + libxfce4util + + + /usr/libexec + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2020-12-05 + 0.2.0 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunarx-python + https://goodies.xfce.org/projects/bindings/thunarx-python + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + Thunarx Python bindings + Thunarx Python bağlayıcıları + thunarx-python is Python binding for Thunar + thunarx-python Thunar için Python bağlayıcıları içeren bir kitaplıktır. + https://archive.xfce.org/src/bindings/thunarx-python/0.5/thunarx-python-0.5.2.tar.bz2 + + gtk3-devel + thunar-devel + python3-devel + python-gtk-devel + python3-pygobject3-devel + python-pygobject3-devel + + desktop/xfce/addon/thunarx-python/pspec.xml + + + thunarx-python + + gtk3 + glib2 + thunar + python3 + + + /usr/lib + /usr/share/doc + /usr/share/gtk-doc + + + + + 2021-10-24 + 0.5.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-20 + 0.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-05 + 0.5.1 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfburn + https://docs.xfce.org/apps/xfburn + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + A simple CD/DVD burning tool + Basit bir CD/DVD yazma aracı + Xfburn is a simple CD/DVD burning tool based on libburnia libraries. + Xfburn libburnia kitaplıklarını kullanan basit bir CD/DVD yazma aracıdır. + https://archive.xfce.org/src/apps/xfburn/0.6/xfburn-0.6.2.tar.bz2 + + libxfce4ui-devel + gstreamer-devel + libisofs-devel + libgudev-devel + librsvg-devel + libburn-devel + gtk3-devel + dbus-devel + exo-devel + intltool + gst-plugins-base-devel + + desktop/xfce/addon/xfburn/pspec.xml + + + xfburn + + gst-plugins-base + libxfce4util + libxfce4ui + gdk-pixbuf + gstreamer + libisofs + libgudev + libburn + glib2 + gtk3 + exo + desktop-file-utils + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man/man1 + + + + + 2021-08-11 + 0.6.2 + First Release For Beta + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce-polkit + https://github.com/ncopa/xfce-polkit + + fury + uglyside@yandex.ru + + GPLv2 + app:console + desktop.xfce.addon + A simple PolicyKit authentication agent for XFCE + A simple PolicyKit authentication agent for XFCE + https://codeload.github.com/ncopa/xfce-polkit/tar.gz/v0.3 + + python3 + intltool + glib2-devel + polkit-devel + libpcre2-devel + libxfce4ui-devel + + desktop/xfce/addon/xfce-polkit/pspec.xml + + + xfce-polkit + + gtk3 + glib2 + polkit + libpcre2 + libxfce4ui /etc - /usr/lib - /usr/share + /usr/libexec /usr/share/doc - /usr/libexec/gypsy-daemon - - - - gypsy-devel - - gypsy - - - /usr/lib/pkgconfig - /usr/include - - - - gypsy-docs - Reference documents for gypsy - - /usr/share/gtk-doc - - 2020-01-18 - 0.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-08-13 - 0.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 0.9 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - libsocket - https://github.com/dermesser/libsocket - - fury - uglyside@yandex.ru - - BSD - library - programming.library - libsocket is a library written in C for the purpose of simplifying the usage of AF_INET/AF_INET6 (internet domain) and AF_UNIX (unix domain) sockets. - libsocket is a library written in C for the purpose of simplifying the usage of AF_INET/AF_INET6 (internet domain) and AF_UNIX (unix domain) sockets. libsocket++ is an object-oriented wrapper around libsocket. - https://github.com/dermesser/libsocket/archive/v2.5.0.tar.gz - - cmake - - programming/library/libsocket/pspec.xml - - - libsocket - - libgcc - - - /usr/lib - /usr/share/doc - - - - libsocket-devel - - libsocket - - - /usr/include - - - - - 2020-12-22 - 2.5.0 - First build + 2020-06-25 + 0.3 + Rebuild fury uglyside@yandex.ru - - - - - libptytty - http://software.schmorp.de/pkg/libptytty.html - - fury - uglyside@yandex.ru - - GPL-2 - library - programming.library - OS independent and secure pty/tty and utmp/wtmp/lastlog handling. - Libptytty is a small library that offers pseudo-tty management in an OS-independent way. It was created out of frustration over the many differences of pty/tty handling in different operating systems for the use inside "rxvt-unicode". - https://ftp.osuosl.org/pub/blfs/conglomeration/libptytty/libptytty-2.0.tar.gz - - cmake - - programming/library/libptytty/pspec.xml - - - libptytty - - libgcc - - - /usr/lib - /usr/share/man/man3 - /usr/share/doc/libptytty - - - - libptytty-devel - - libptytty - - - /usr/include - /usr/lib/pkgconfig - - - - 2021-12-21 - 2.0 + 2019-07-11 + 0.3 First build. fury uglyside@yandex.ru @@ -225363,48 +171103,1442 @@ provide integrated access to the cloud providers services. - libxdg-basedir - https://github.com/devnev/libxdg-basedir + xfce4-battery-plugin + https://docs.xfce.org/panel-plugins/xfce4-battery-plugin - fury - uglyside@yandex.ru + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - MIT + GPLv2 + LGPLv2 library - programming.library - libxdg-basedir is an implementation of the XDG Base Directory specifications. - libxdg-basedir is an implementation of the XDG Base Directory specifications. - https://github.com/devnev/libxdg-basedir/archive/refs/tags/libxdg-basedir-1.2.3.tar.gz - programming/library/libxdg-basedir/pspec.xml + desktop.xfce.addon + Battery monitor panel plugin for Xfce4 + Xfce4 için pil izleme paneli eklentisi + A battery monitor panel plugin for Xfce4, compatible with APM and ACPI, for Linux and *BSD. + Xfce4 için bir pil izleme paneli eklentisidir, Linux ve *BSD için APM ve ACPI ile uyumludur. + https://archive.xfce.org/src/panel-plugins/xfce4-battery-plugin/1.1/xfce4-battery-plugin-1.1.3.tar.bz2 + + intltool + gtk3-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + + desktop/xfce/addon/xfce4-battery-plugin/pspec.xml - libxdg-basedir + xfce4-battery-plugin + + gtk3 + glib2 + libxfce4ui + xfce4-panel + libxfce4util + /usr/lib + /usr/share + /usr/share/locale /usr/share/doc + + + 2020-06-25 + 1.1.3 + Rebuild + fury + uglyside@yandex.ru + + + + + + xfce4-datetime-plugin + https://docs.xfce.org/panel-plugins/xfce4-datetime-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + This plugin shows the date and time in the panel + Panelde tarih ve zamanı gösteren eklenti + xfce4-datetime-plugin shows the date and time in the panel, and a calendar appears when you left-click on it. + xfce4-datetime-plugin panelde tarih ve zamanı gösterir ve sol tıladığınızda bir takvim açılır. + https://archive.xfce.org/src/panel-plugins/xfce4-datetime-plugin/0.8/xfce4-datetime-plugin-0.8.0.tar.bz2 + + xfce4-panel-devel + intltool + libxfce4ui-devel + + desktop/xfce/addon/xfce4-datetime-plugin/pspec.xml + - libxdg-basedir-devel + xfce4-datetime-plugin - libxdg-basedir + xfce4-panel + gtk3 + glib2 + pango + libxfce4ui + libxfce4util - /usr/include - /usr/lib/pkgconfig + /usr/lib + /usr/share/xfce4 + /usr/share/locale + /usr/share/doc + + + + + 2020-06-25 + 0.8.0 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-dict + https://docs.xfce.org/apps/xfce4-dict/start + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + A client program to query different dictionaries + Değişik sözlüklerden sorgular yapmayı sağlayan bir istemci + xfce4-dict allows you to search different kinds of dictionary services for words or phrases and shows you the result. + xfce4-dict değişik sözlüklerden kelime ya da deyimler aramanızı sağlar ve size gösterir. + https://archive.xfce.org/src/apps/xfce4-dict/0.8/xfce4-dict-0.8.4.tar.bz2 + + xfce4-panel-devel + intltool + libxfce4ui-devel + + desktop/xfce/addon/xfce4-dict/pspec.xml + + + xfce4-dict + + gtk3 + glib2 + pango + libX11 + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc - 2021-06-19 - 1.2.3 + 2020-12-23 + 0.8.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 0.8.3 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-diskperf-plugin + https://docs.xfce.org/panel-plugins/xfce4-diskperf-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + BSD-2 + app:gui + desktop.xfce.addon + A disk usage and performance panel plugin for Xfce + Xfce disk bilgisi eklentisi + A disk usage and performance panel plugin for Xfce. + xfce4-diskperf-plugin, disk performansı ve kullanımı hakkında bilgi veren Xfce4 paneli eklentisidir. + xfce4-panel + https://archive.xfce.org/src/panel-plugins/xfce4-diskperf-plugin/2.7/xfce4-diskperf-plugin-2.7.0.tar.bz2 + + xfce4-panel-devel + intltool + libxfce4ui-devel + + desktop/xfce/addon/xfce4-diskperf-plugin/pspec.xml + + + xfce4-diskperf-plugin + + gtk3 + glib2 + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/share/doc + /usr/share/locale + /usr/share/xfce4 + /usr/lib + + + + + 2022-04-01 + 2.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-04 + 2.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 2.6.2 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-docklike-plugin + https://docs.xfce.org/panel-plugins/xfce4-docklike-plugin/start + + fury + uglyside@yandex.ru + + GPLv3 + library + desktop.xfce.addon + A Dock-like Taskbar Plugin for XFCE. + A modern, docklike, minimalist taskbar for XFCE. + https://archive.xfce.org/src/panel-plugins/xfce4-docklike-plugin/0.4/xfce4-docklike-plugin-0.4.0.tar.bz2 + + intltool + gtk3-devel + cairo-devel + libX11-devel + libwnck3-devel + xfce4-dev-tools + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-docklike-plugin/pspec.xml + + + xfce4-docklike-plugin + + atk + gtk3 + cairo + glib2 + pango + libX11 + libgcc + harfbuzz + libwnck3 + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-09-28 + 0.4.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-23 + 0.3.0 Version bump. fury uglyside@yandex.ru - 2021-01-23 - 1.2.2 + 2021-04-02 + 0.2.0 + First release from David Keogh. + fury + uglyside@yandex.ru + + + + + + xfce4-genmon-plugin + https://docs.xfce.org/panel-plugins/xfce4-genmon-plugin + + fury + uglyside@yandex.ru + + LGPLv2.1 + library + desktop.xfce.addon + Display cyclically run script or program output onto the panel + This plugin cyclically spawns the indicated script/program, captures its output (stdout) and displays the resulting string into the panel. The string can also contain markup to displayed an image, a bar, a button and a personalized tooltip. + https://archive.xfce.org/src/panel-plugins/xfce4-genmon-plugin/4.1/xfce4-genmon-plugin-4.1.1.tar.bz2 + + intltool + gtk3-devel + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-genmon-plugin/pspec.xml + + + xfce4-genmon-plugin + + gtk3 + glib2 + pango + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-01-24 + 4.1.1 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-12-24 + 4.1.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-06-25 + 4.0.2 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-mailwatch-plugin + https://docs.xfce.org/panel-plugins/xfce4-mailwatch-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app + desktop.xfce.addon + A mailbox plugin for Xfce4 + Xfce4 için posta kutusu eklentisi + A mailbox watch/check plugin for the Xfce4 panel + xfce4-mailwatch-plugin,Xfce4 paneline yerleşen posta kutusu uygulamasıdır. + https://archive.xfce.org/src/panel-plugins/xfce4-mailwatch-plugin/1.3/xfce4-mailwatch-plugin-1.3.0.tar.bz2 + + intltool + exo-devel + gtk3-devel + gnutls-devel + openssl-devel + libgcrypt-devel + gdk-pixbuf-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + + desktop/xfce/addon/xfce4-mailwatch-plugin/pspec.xml + + + xfce4-mailwatch-plugin + + exo + gtk3 + gnutls + openssl + libgcrypt + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2020-12-06 + 1.3.0 + First Beta release. + fury + uglyside@yandex.ru + + + + + + xfce4-mixer + http://git.xfce.org/apps/xfce4-mixer + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL-2 + app:gui + desktop.xfce.addon + Xfce sound mixer application. + Xfce ses ayar uygulaması + Mikser dźwięku dla Xfce + Xfce4-mixer is a volume control application for the Xfce Desktop Environment. It provides both a volume control plugin for the Xfce Panel and a standalone mixer application. It supports all audio systems supported by GStreamer project. + Xfce4-mixer, Xfce Masaüstü Ortamı için yazılmış bir ses ayar uygulamasıdır. Hem panel eklentisi olarak, hem de kendi penceresinde bağımsız olarak kullanılabilen bir uygulamadır. GStreamer projesinin desteklediği tüm ses sistemlerini destekler. + Jest to nakładka na ustawienia miksera, dostarczana ze środowiskiem graficznym Xfce. Spełnia to samo zadanie, co inne nakładki ale jest zintegrowana z Xfce4 jako wtyczka dla panelu Xfce + https://gitlab.xfce.org/apps/xfce4-mixer/-/archive/765725029751bb93a927692fdcda3e3743d0e6e7/xfce4-mixer-765725029751bb93a927692fdcda3e3743d0e6e7.tar.bz2 + + intltool + gtk3-devel + cairo-devel + xfconf-devel + gettext-devel + alsa-lib-devel + libunique-devel + keybinder-devel + gstreamer-devel + xfce4-dev-tools + gdk-pixbuf-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + pulseaudio-libs-devel + gst-plugins-base-devel + + + Fix_obvious_build_errors.patch + + desktop/xfce/addon/xfce4-mixer/pspec.xml + + + xfce4-mixer + + gtk3 + cairo + glib2 + xfconf + alsa-lib + gstreamer + keybinder + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + pulseaudio-libs + + + /usr/bin + /usr/lib/xfce4/panel/plugins + /usr/share/locale + /usr/share/pixmaps + /usr/share/applications + /usr/share/xfce4 + /usr/share/doc + /usr/share/man + + + + + 2022-04-14 + 4.15.0 + Rebuild. + fury + uglyside@yandex.ru + + + 2021-08-17 + 4.15.0 + First Beta release. + fury + uglyside@yandex.ru + + + + + + xfce4-mount-plugin + https://docs.xfce.org/panel-plugins/xfce4-mount-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + A mount/umount utility + Bir bağlama(mount)/koparma(umount) modülü + xfce4-mount-plugin is a mount/umount utility for the panel. + xfce4-mount-plugin Xfce için bir bağlama(mount)/koparma(umount) modülüdür. + https://archive.xfce.org/src/panel-plugins/xfce4-mount-plugin/1.1/xfce4-mount-plugin-1.1.5.tar.bz2 + + intltool + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-mount-plugin/pspec.xml + + + xfce4-mount-plugin + + atk + gtk3 + glib2 + cairo + pango + gdk-pixbuf + fontconfig + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-01-17 + 1.1.5 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-06-25 + 1.1.3 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-notes-plugin + https://docs.xfce.org/panel-plugins/xfce4-notes-plugin + + Alper Tekinalp + admins@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + Notes plugin provides you a quick way you had do with Post-It's + Panel için not eklenti + The notes plugin provides you a quick way to paste text, to write down a list of things, to leave a note to your friend, or whatever you had do with Post-It's. + xfce4-notes-plugin panelde kullanabileceğiniz Post-itlerle yapabileceğiniz herşeyi yapmanıza imkan sağlayan bir eklentidir. + https://archive.xfce.org/src/panel-plugins/xfce4-notes-plugin/1.9/xfce4-notes-plugin-1.9.0.tar.bz2 + + gtk3-devel + gettext-devel + git + intltool + libunique-devel + libxfce4ui-devel + vala-devel + xfce4-dev-tools + xfce4-panel-devel + + desktop/xfce/addon/xfce4-notes-plugin/pspec.xml + + + xfce4-notes-plugin + + gtk3 + cairo + glib2 + pango + libX11 + xfconf + libunique + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-02-04 + 1.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 1.8.1 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-notifyd + https://docs.xfce.org/apps/notifyd/start + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + A notification deamon + Bir uyarı gösterici + The Xfce Notify Daemon (xfce4-notifyd for short) is a smallish program that implements the “server-side” portion of the Freedesktop desktop notifications specification. + Xfce Notify Daemon Freedesktop masaüstü uyarı sisteminin sunucu tarafını gerçekleştiren küçük bir uygulamadır. + https://archive.xfce.org/src/apps/xfce4-notifyd/0.6/xfce4-notifyd-0.6.2.tar.bz2 + + python3 + intltool + libX11-devel + libXpm-devel + libICE-devel + libnotify-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + + desktop/xfce/addon/xfce4-notifyd/pspec.xml + + + xfce4-notifyd + + atk + gtk3 + glib2 + cairo + pango + libX11 + xfconf + harfbuzz + libnotify + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2020-12-23 + 0.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 0.6.1 + Ver. bump + fury + uglyside@yandex.ru + + + + + + xfce4-panel-profiles + https://docs.xfce.org/apps/xfce4-panel-profiles/start + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv3 + app:gui + desktop.xfce.addon + A simple application to manage Xfce panel layouts. + Xfce4 Paneli için bir kullanıcı değiştirme modülü + With the modular Xfce Panel, a multitude of panel layouts can be created. This tool makes it possible to backup, restore, import, and export these panel layouts. + xfce4-panel-profiles, Xfce4 Paneli için bir kullanıcı değiştirme modülüdür. Mevcut oturumu açık bırakarak başka bir kullanıcıyla yeni bir oturum açılmasına izin verir. + https://archive.xfce.org/src/apps/xfce4-panel-profiles/1.0/xfce4-panel-profiles-1.0.13.tar.bz2 + + intltool + python3-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-panel-profiles/pspec.xml + + + xfce4-panel-profiles + + gtk3 + cairo + python3 + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-04-10 + 1.0.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-17 + 1.0.12 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-06-25 + 1.0.10 + Ver. bump + fury + uglyside@yandex.ru + + + + + + xfce4-places-plugin + https://docs.xfce.org/panel-plugins/xfce4-places-plugin + + fury + uglyside@yandex.ru + + GPLv2 + library + desktop.xfce.addon + Quick access to folders, documents, and removable media + The plugin adds a small button to the panel. Clicking on it opens a menu, which shows: 1) System folders: home directory, trash, desktop, file system 2) Removable media 3) User-defined bookmarks 4) Recent Documents + https://archive.xfce.org/src/panel-plugins/xfce4-places-plugin/1.8/xfce4-places-plugin-1.8.1.tar.bz2 + + intltool + exo-devel + gtk3-devel + glib2-devel + libnotify-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + + + fix_missing_prototypes.patch + + desktop/xfce/addon/xfce4-places-plugin/pspec.xml + + + xfce4-places-plugin + + exo + gtk3 + glib2 + xfconf + libnotify + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-05-14 + 1.8.1 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-pulseaudio-plugin + https://docs.xfce.org/panel-plugins/xfce4-pulseaudio-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + Xfce pulseaudio plugin + Xfce ses çıkışını denetleyen bir eklenti + Xfce4-pulseaudio-plugin is a panel plugin for controlling an audio output volume of the PulseAudio mixer + Xfce ses çıkışını denetleyen bir eklenti + https://archive.xfce.org/src/panel-plugins/xfce4-pulseaudio-plugin/0.4/xfce4-pulseaudio-plugin-0.4.3.tar.bz2 + + intltool + exo-devel + gtk3-devel + libXpm-devel + libX11-devel + libwnck3-devel + libnotify-devel + keybinder-devel + dbus-glib-devel + libxfce4ui-devel + xfce4-panel-devel + pulseaudio-libs-devel + + desktop/xfce/addon/xfce4-pulseaudio-plugin/pspec.xml + + + xfce4-pulseaudio-plugin + + exo + gtk3 + glib2 + xfconf + libX11 + libwnck3 + libnotify + keybinder + dbus-glib + gdk-pixbuf + libxfce4ui + xfce4-panel + pavucontrol + libxfce4util + pulseaudio-libs + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-08-17 + 0.4.3 + First release + fury + uglyside@yandex.ru + + + + + + xfce4-screenshooter + https://docs.xfce.org/apps/screenshooter/start + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + A plugin allows you to capture the entire screen + Ekran görüntüsü alma eklentisi + This application allows you to capture the entire screen, the active window or a selected region. + xfce4-screenshooter ekranın bir kısmının, tamamının ya da sadece aktif pencerenin ekran görüntüsünü almanızı sağlar. + https://archive.xfce.org/src/apps/xfce4-screenshooter/1.9/xfce4-screenshooter-1.9.10.tar.bz2 + + python3 + intltool + exo-devel + libSM-devel + libX11-devel + libsoup-devel + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-screenshooter/pspec.xml + + + xfce4-screenshooter + + exo + gtk3 + glib2 + cairo + pango + libSM + libICE + libX11 + libxml2 + libXext + libsoup + libXfixes + gdk-pixbuf + libxfce4ui + fontconfig + xfce4-panel + libxfce4util + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-03-23 + 1.9.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-09 + 1.9.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-23 + 1.9.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 1.9.7 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-sensors-plugin + https://docs.xfce.org/panel-plugins/xfce4-sensors-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + app:gui + desktop.xfce.addon + Sensors plugin for Xfce4 Panel + Xfce 4 paneli için algılayıcılar eklentisi. + Reads your hardware sensor values and displays them in your panel + Donanım algılayıcılarınızın okuduğu değerleri panelizde gösterir. Örneğin; ekran kartnızın ısısı, işlemcinizin ısısı, ... + https://archive.xfce.org/src/panel-plugins/xfce4-sensors-plugin/1.4/xfce4-sensors-plugin-1.4.3.tar.bz2 + + acpi + acpid + acpica + intltool + gtk3-devel + libnotify-devel + lm_sensors-devel + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-sensors-plugin/pspec.xml + + + xfce4-sensors-plugin + + gtk3 + cairo + pango + glib2 + libnotify + lm_sensors + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + + 2022-04-01 + 1.4.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-16 + 1.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-30 + 1.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-26 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 1.3.92 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-smartbookmark-plugin + https://docs.xfce.org/panel-plugins/xfce4-smartbookmark-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.addon + A plugin allows you to send requests directly to your browser to make search + Tarayıcınıza arama yapmak için direk istek göndermenizi sağlayan modül + xfce4-smartbookmark-plugin is a plugin allows you to send requests directly to your browser and perform a custom search. + xfce4-smartbookmark-plugin tarayıcınıza direkt istek göndermenizi ve arama yapmanızı sağlayan bir Xfce modülüdür. + https://archive.xfce.org/src/panel-plugins/xfce4-smartbookmark-plugin/0.5/xfce4-smartbookmark-plugin-0.5.1.tar.bz2 + + intltool + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-smartbookmark-plugin/pspec.xml + + + xfce4-smartbookmark-plugin + + gtk3 + glib2 + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share/doc + /usr/share/xfce4 + /usr/share/locale + + + + + 2020-06-25 + 0.5.1 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-systemload-plugin + https://docs.xfce.org/panel-plugins/xfce4-systemload-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + BSD-2 + app:gui + desktop.xfce.addon + Xfce4 system load plugin + Xfce4 sistem çağrı eklentisi + Xfce4-systemload-plugin is a plugin which displays the current CPU load, the memory in use, the swap space and the system uptime in the Xfce panel. + Xfce4-systemload-plugin, Xfce panelinde o anki işlemci yükü, bellek ve swap alanı kullanımını gösteren bir eklentidir. + xfce4-panel + https://archive.xfce.org/src/panel-plugins/xfce4-systemload-plugin/1.3/xfce4-systemload-plugin-1.3.1.tar.bz2 + + intltool + xfconf-devel + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-systemload-plugin/pspec.xml + + + xfce4-systemload-plugin + + gtk3 + glib2 + xfconf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-03-31 + 1.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-11 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 1.2.3 + Rebuild. + fury + uglyside@yandex.ru + + + + + + xfce4-taskmanager + https://docs.xfce.org/apps/xfce4-taskmanager + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + service + desktop.xfce.addon + Easy to use task manager + Easy to use task manager + Kullanımı kolay görev yöneticisi + Kullanımı kolay görev yöneticisi + https://archive.xfce.org/src/apps/xfce4-taskmanager/1.5/xfce4-taskmanager-1.5.4.tar.bz2 + + intltool + gtk3-devel + cairo-devel + glib2-devel + libX11-devel + libXmu-devel + xfconf-devel + libxfce4ui-devel + + desktop/xfce/addon/xfce4-taskmanager/pspec.xml + + + xfce4-taskmanager + + gtk3 + cairo + glib2 + libX11 + libXmu + xfconf + libxfce4ui + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/icons + /usr/share/doc + + + + + 2022-05-31 + 1.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-24 + 1.5.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-10 + 1.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-07 + 1.5.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + xfce4-time-out-plugin + https://docs.xfce.org/panel-plugins/xfce4-time-out-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPL-2 + library + desktop.xfce.addon + A module allows to take periodical breaks from the computer + Periyodik bir şekilde bilgisayardan kopmayı sağlayan bir eklenti + This plugin makes it possible to take periodical breaks from the computer every X minutes. During breaks it locks your screen. It optionally allows you to postpone breaks for a certain time. + Bu, X dakika aralıklarla bilgisayardan kopmalara izin veren bir modüldür. Kopmalar sırasında ekran kilitlenir. Seçimli olarak kırılmaları ertelemeye izin verir. + https://archive.xfce.org/src/panel-plugins/xfce4-time-out-plugin/1.1/xfce4-time-out-plugin-1.1.2.tar.bz2 + + intltool + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-time-out-plugin/pspec.xml + + + xfce4-time-out-plugin + + gtk3 + cairo + glib2 + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-10-17 + 1.1.2 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-07-07 + 1.1.1 + Ver. bump + fury + uglyside@yandex.ru + + + + + + xfce4-timer-plugin + https://docs.xfce.org/panel-plugins/xfce4-timer-plugin + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.addon + Timer plugin for Xfce4 panel + Xfce4 uyarı eklentisi + With this plugin you can add timers (alarm or countdown) to your Xfce panel. You can display a warning window and/or run a custom command when alarm rings, repeat alarms etc. + Xfce4-timer-plugin, ayarladığınız zamanda bir pencere açarak sizi uyaran Xfce4 panel eklentisidir. + xfce4-panel + https://archive.xfce.org/src/panel-plugins/xfce4-timer-plugin/1.7/xfce4-timer-plugin-1.7.1.tar.bz2 + + intltool + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-timer-plugin/pspec.xml + + + xfce4-timer-plugin + + atk + gtk3 + glib2 + cairo + pango + harfbuzz + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2020-08-01 + 1.7.1 + Ver. bump + fury + uglyside@yandex.ru + + + + + + xfce4-verve-plugin + https://docs.xfce.org/panel-plugins/xfce4-verve-plugin + + fury + uglyside@yandex.ru + + GPLv2 + library + desktop.xfce.addon + Command line for Xfce panel. + The Verve panel plugin is a comfortable command line plugin for the Xfce panel. + https://archive.xfce.org/src/panel-plugins/xfce4-verve-plugin/2.0/xfce4-verve-plugin-2.0.1.tar.bz2 + + intltool + exo-devel + gtk3-devel + glib2-devel + xfconf-devel + libpcre-devel + libxfce4ui-devel + xfce4-panel-devel + + desktop/xfce/addon/xfce4-verve-plugin/pspec.xml + + + xfce4-verve-plugin + + gtk3 + glib2 + xfconf + libX11 + libpcre + libxfce4ui + xfce4-panel + libxfce4util + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-04-10 + 2.0.1 First Beta build. fury uglyside@yandex.ru @@ -225413,277 +172547,53 @@ provide integrated access to the cloud providers services. - liburing - https://git.kernel.dk/cgit/liburing/ + xfce4-volumed-pulse + https://git.xfce.org/apps/xfce4-volumed-pulse/about/ - fury - uglyside@yandex.ru - - GPL - LGPL - MIT - library - programming.library - This is the io_uring library, liburing. - liburing provides helpers to setup and teardown io_uring instances, and also a simplified interface for applications that don't need (or want) to deal with the full kernel side implementation. - https://git.kernel.dk/cgit/liburing/snapshot/liburing-2.1.tar.bz2 - programming/library/liburing/pspec.xml - - - liburing - - /usr/lib - /usr/share/man - /usr/share/doc - - - - liburing-devel - - liburing - - - /usr/lib/pkgconfig - /usr/include - - - - - 2021-09-15 - 2.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-07-10 - 2.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-13 - 0.7 - First build. - fury - uglyside@yandex.ru - - - - - - libnih - https://launchpad.net/libnih - - Aydın Demirel - aydin.demirel@pisilinux.org - - GPL - app:library - programming.library - Small library for C application development - C uygulama geliştirme için küçük bir kütüphane - Small library for C application development. - C uygulama geliştirme için küçük bir kütüphane. - https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz - - dbus-devel - expat-devel - - programming/library/libnih/pspec.xml - - - libnih - - dbus - expat - - - /usr/bin - /usr/share/man - /usr/share/aclocal - /usr/lib/ - - - - libnih-devel - - libnih - dbus-devel - expat-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-01 - 1.0.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.0.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-13 - 1.0.3 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 1.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-27 - 1.0.3 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - yad - https://github.com/v1cont/yad - - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org GPLv3 - library - programming.library - Yet Another Dialog - display graphical dialogs from shell scripts or command line. - Yad komut satırından veya kabuk betikleriyle diyalog kutuları yapmanızı sağlar. - Yad allows you to display GTK+ dialog boxes from command line or shell scripts. YAD depends on GTK+ only. - Yad komut satırından veya kabuk betikleriyle diyalog kutuları yapmanızı sağlayan kitaplığı içerir. - https://github.com/v1cont/yad/archive/v7.1.tar.gz + app + desktop.xfce.addon + Fork of xfce4-volumed with support for PulseAudio + Xfce için bir ses tuşları kontrolü eklentisi + Basic daemon enabling the XF86 Volume keys and supporting synchronous volume notifications. + Bu temel eklenti, xf86 Ses tuşlarını etkinleştirmek ve senkronize ses bildirimlerini destekler + https://archive.xfce.org/src/apps/xfce4-volumed-pulse/0.2/xfce4-volumed-pulse-0.2.3.tar.bz2 - intltool - gtk3-devel - glib2-devel - gettext-devel - gtkspell3-devel - shared-mime-info + gst-plugins-base-devel + pulseaudio-libs-devel + gstreamer-devel + libnotify-devel + keybinder-devel + xfconf-devel - programming/library/yad/pspec.xml + desktop/xfce/addon/xfce4-volumed-pulse/pspec.xml - yad - Yet Another Dialog - display graphical dialogs from shell scripts or command line. + xfce4-volumed-pulse - gtk3 - cairo + gst-plugins-base + pulseaudio-libs + gstreamer + libnotify + keybinder + xfconf glib2 - pango - gtkspell3 - gdk-pixbuf + gtk3 - /usr/share - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - yad-gtk2 - - - - - 2020-09-23 - 7.1 - Major version bump. Fix translation - Blue Devil - bluedevil@sctzine.com - - - 2020-04-27 - 6.0 - version bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-04-05 - 0.42.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cdk - https://invisible-island.net/cdk/cdk.html - - fury - uglyside@yandex.ru - - custom - library - programming.library - This is a modified/enhanced version of Cdk. - Cdk stands for 'Curses Development Kit' and it currently contains 21 ready to use widgets which facilitate the speedy development of full screen curses programs. This little project of mine started as a test to see how compatible my Linux machine was to other UNIX breeds. While doing this I discovered Ncurses, and played with it. These widgets are the result of over a years worth of playing. - https://invisible-mirror.net/archives/cdk/cdk-5.0-20211216.tgz - - Xaw3d-devel - ncurses-devel - - programming/library/cdk/pspec.xml - - - cdk - - ncurses - - - /usr/bin - /usr/lib - /usr/share/man + /etc/xdg/autostart/ + /usr/bin/ /usr/share/doc - - cdk-devel - - ncurses-devel - perl - cdk - - - /usr/include - /usr/lib/pkgconfig - - - - 2022-01-17 - 5.0.20211216 - Version bump. - fury - uglyside@yandex.ru - - 2020-11-28 - 5.0.20200923 - First build. + 2021-08-17 + 0.2.3 + First release. fury uglyside@yandex.ru @@ -225691,170 +172601,29 @@ provide integrated access to the cloud providers services. - binaryen - https://github.com/WebAssembly/binaryen - - Blue Devil - bluedevil@sctzine.com - - Apache2.0 - app:console - library - programming.library - Compiler infrastructure and toolchain library for WebAssembly - C++ ile WebAssembly için yazılış derleyici altyapısı ve araç zinciri. - Binaryen is a compiler and toolchain infrastructure library for WebAssembly, written in C++. It aims to make compiling to WebAssembly easy, fast, and effective. - binaryen, C++ ile WebAssembly için yazılış derleyici altyapısı ve araç zinciri sunar. Binaryen, WebAssembly ile derlemeyi kolay, hızlı ve verimli yapmayı amaçlar. - https://github.com/WebAssembly/binaryen/archive/version_96.tar.gz - - cmake - meson - - - b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch - - programming/library/binaryen/pspec.xml - - - binaryen - Extremely fast hash algorithm - - /usr/lib - /usr/share/doc - /usr/bin - /etc/profile.d/binaryen.sh - - - binaryen.sh - - - - binaryen-devel - Development files for binaryen - binaryen için geliştirme dosyaları - binaryen-devel, binaryen için geliştirme dosyalarını içerir. - - binaryen - - - /usr/include - - - - - 2020-09-07 - 96 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - gom - https://wiki.gnome.org/Projects/Gom + xfce4-wavelan-plugin + https://docs.xfce.org/panel-plugins/xfce4-wavelan-plugin Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org GPLv2 - app:gui - programming.library - GObject to SQLite object mapper library - GObject'den SQLite nesne eşleyici kitaplığı - GObject to SQLite object mapper library - GObject'den SQLite nesne eşleyici kitaplığı - gom - mirrors://gnome/gom/0.4/gom-0.4.tar.xz - - gobject-introspection-devel - gdk-pixbuf-devel - python3-pygobject3-devel - sqlite-devel - python3-devel - meson - - programming/library/gom/pspec.xml - - - gom - - glib2 - sqlite - - - /usr/bin - /usr/lib/libgom* - /usr/lib/girepository-1.0 - /usr/lib/python3* - /usr/share/doc - - - - gom-devel - gom için geliştirme dosyaları - - gom - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-10-24 - 0.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-10 - 0.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libappindicator - https://lazka.github.io/pgi-docs/AppIndicator3-0.1/index.html - - Pisilinux Community - admin@pisilinux.org - - LGPL library - programming.library - A library to allow applications to export a menu into the Unity Menu bar. - A library to allow applications to export a menu into the Unity Menu bar. - https://launchpad.net/libappindicator/12.10/12.10.0/+download/libappindicator-12.10.0.tar.gz + desktop.xfce.addon + This plugin is used to display stats from a wireless lan interface + Kablosuz LAN arayüzü durumunu görüntülemek için kullanılan bir eklenti + xfce4-wavelan-plugin shows signal quality as percentage.This plugin is quite easy to use. + xfce4-wavelan-plugin, sinyal kalitesini yüzde olarak gösterir.Kullanımı oldukça kolay bir eklentidir. + https://archive.xfce.org/src/panel-plugins/xfce4-wavelan-plugin/0.6/xfce4-wavelan-plugin-0.6.1.tar.bz2 - gtk2-devel - gtk3-devel - python-devel - python3-devel - libdbusmenu-gtk3 - libdbusmenu-devel - libindicator-devel - libindicator-gtk2-devel - python3-pygobject3-devel - gobject-introspection-devel + intltool + libxfce4ui-devel + xfce4-panel-devel - - incompatible_pointer_build_fix.patch - nopython.patch - - programming/library/libappindicator/pspec.xml + desktop/xfce/addon/xfce4-wavelan-plugin/pspec.xml - libappindicator + xfce4-wavelan-plugin atk gtk3 @@ -225862,6386 +172631,302 @@ provide integrated access to the cloud providers services. cairo pango gdk-pixbuf - libindicator - libdbusmenu-glib - libdbusmenu-gtk3 - - - /usr/lib - /usr/share - /usr/share/doc - - - - libappindicator-devel - - libappindicator - gtk3-devel - libdbusmenu-gtk - libdbusmenu-glib - libdbusmenu-devel - - - /usr/lib/pkgconfig - /usr/include - - - - libappindicator-gtk2 - - gtk2 - libindicator-gtk2 - libdbusmenu-gtk - - - /usr/lib/libappindicator.so* - - - - libappindicator-gtk2-devel - - libappindicator-gtk2 - gtk2-devel - - - /usr/lib/pkgconfig/appindicator-0.1.pc - /usr/include/libappindicator-0.1/libappindicator - - - - libappindicator-docs - - libappindicator - - - /usr/share/gtk-doc - - - - - 2021-07-04 - 12.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-28 - 12.10.0 - First build. - fury - uglyside@yandex.ru - - - - - - lucene++ - https://github.com/luceneplusplus/LucenePlusPlus - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - Apache-2.0 - library - programming.library - An up to date C++ port of the popular Java Lucene library, a high-performance, full-featured text search engine. - Lucene++ is an up to date C++ port of the popular Java Lucene library, a high-performance, full-featured text search engine. - https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_3.0.8.tar.gz - - cmake - boost-devel - - - fix_various_cmake_issues.patch - use_correct_libdir.patch - fix_typo.patch - - programming/library/lucene++/pspec.xml - - - lucene++ - - boost - libgcc - - - /usr/lib - /usr/share/doc - - - - lucene++-devel - - lucene++ - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-27 - 3.0.8 - Rebuild boost. - fury - uglyside@yandex.ru - - - 2021-04-29 - 3.0.8 - Version bump. - fury - uglyside@yandex.ru - - - 2020-11-26 - 3.0.7 - First Release. - fury - uglyside@yandex.ru - - - - - - liri-cmake-shared - https://liri.io/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.library - Extra imports and modules for Cmake - Extra imports and modules for Cmake - Extra imports and modules for Cmake - Extra imports and modules for Cmake - https://github.com/lirios/cmake-shared/releases/download/v1.1.0/liri-cmake-shared-1.1.0.tar.xz - - extra-cmake-modules - - programming/library/liri-cmake-shared/pspec.xml - - - liri-cmake-shared - - /usr/share - /usr/share/doc - - - - - 2020-04-04 - 1.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - cbindgen - https://github.com/eqrion/cbindgen - - PisiLinux Community - admins@pisilinux.org - - MPL2 - library - programming.library - A tool for generating C bindings to Rust code - A tool for generating C bindings to Rust code - Rust koduna C bağlamaları oluşturmak için bir araç - Rust koduna C bağlamaları oluşturmak için bir araç - https://github.com/eqrion/cbindgen/archive/v0.23.0.tar.gz - - rust - llvm - curl-devel - - programming/library/cbindgen/pspec.xml - - - cbindgen - - /usr/bin - /usr/share/doc - - - - - 2022-05-30 - 0.23.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 0.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-06 - 0.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-27 - 0.18.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-26 - 0.17.0 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-12-27 - 0.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-02 - 0.15.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-09-24 - 0.14.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-02 - 0.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-29 - 0.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-05 - 0.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-16 - 0.14.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 0.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-28 - 0.13.2 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-01-11 - 0.12.1 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-12-03 - 0.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-21 - 0.9.1 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2019-09-03 - 0.9.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2019-05-20 - 0.8.7 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2019-03-19 - 0.8.2 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2019-02-11 - 0.7.1 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-11-16 - 0.6.7 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-10-29 - 0.6.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - rapidjson - http://rapidjson.org/ - - Kamil Atlı - suvari@pisilinux.org - - MIT - app - programming.library - A fast JSON parser/generator for C++ with both SAX/DOM style API. - Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu - A fast JSON parser/generator for C++ with both SAX/DOM style API. - Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu - https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz - - cmake - - programming/library/rapidjson/pspec.xml - - - rapidjson - - /usr/lib - /usr/share/doc - - - - rapidjson-devel - Development files for rapidjson - rapidjson için geliştirme dosyaları - - rapidjson - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-05-01 - 1.1.0 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - libgepub - https://gitlab.gnome.org/GNOME/libgepub - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - programming.library - Simple library to read epub files using glib - glib kullaranak epub dosyalarını okumak için basit bir kitaplık - Simple library to read epub files using glib - glib kullaranak epub dosyalarını okumak için basit bir kitaplık - libgepub - mirrors://gnome/libgepub/0.6/libgepub-0.6.0.tar.xz - - gobject-introspection-devel - glib2-devel - gtk3-devel - libarchive-devel - glib2-devel - libxml2-devel - meson - webkit2gtk-devel - - programming/library/libgepub/pspec.xml - - - libgepub - - gtk3 - glib2 - libsoup - libxml2 - libarchive - webkit2gtk - - - /usr/lib/libgepub* - /usr/lib/girepository-1.0 - /usr/share/gir - /usr/share/doc - - - - libgepub-devel - libgepub için geliştirme dosyaları - - libgepub - glib2-devel - libsoup-devel - libxml2-devel - libarchive-devel - webkit2gtk-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-06-08 - 0.6.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - totem-pl-parser - https://gitlab.gnome.org/GNOME/totem-pl-parser - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - programming.library - Totem playlist parser - totem-pl-parser is a simple GObject-based library to parse a host of playlist formats, as well as save those - https://download.gnome.org/sources/totem-pl-parser/3.26/totem-pl-parser-3.26.5.tar.xz - - glib2-devel - intltool - libarchive-devel - libgcrypt-devel - libxml2-devel - gobject-introspection-devel - meson - - programming/library/totem-pl-parser/pspec.xml - - - totem-pl-parser - - libarchive - glib2 - libxml2 - libgcrypt - - - /usr/lib/girepository-1.0/ - /usr/lib/lib*.so* - /usr/share/doc - /usr/share/locale - - - - totem-pl-parser-devel - Development files for totem-pl-aprser - - totem-pl-parser - libarchive-devel - glib2-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-05-28 - 3.26.5 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libportal - https://github.com/flatpak/libportal - - Berk Çakar - berk2238@hotmail.com - - GPLv3 - library - programming.library - GIO-style async APIs for most Flatpak portals. - GIO-style async APIs for most Flatpak portals. - https://github.com/flatpak/libportal/releases/download/0.6/libportal-0.6.tar.xz - - glib2-devel - git - gtk-doc - meson - vala - gtk3-devel - gtk4-devel - qt5-base-devel - qt5-x11extras-devel - glib2-devel - gi-docgen - gobject-introspection-devel - - programming/library/libportal/pspec.xml - - - libportal - - glib2 - git - gtk-doc - gtk3 - gtk4 - qt5-base - qt5-x11extras - - - /etc/gconf - /usr/lib - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/libportal - /usr/share/glib-2.0 - /usr/share/vala - /usr/share/icons - - - - libportal-docs - libportal reference documents - data:doc - - /usr/share/doc/libportal-1 - - - - libportal-devel - Development files for libportal - - libportal - gtk3-devel - gtk4-devel - qt5-base-devel - qt5-x11extras-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-03-22 - 0.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-18 - 0.4 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libmaxminddb - https://maxmind.github.io/libmaxminddb - - Pisi Linux Admins - admins@pisilinux.org - - Apache-2.0 - library - programming.library - C library for the MaxMind DB file format - The libmaxminddb library provides a C library for reading MaxMind DB files, including the GeoIP2 databases from MaxMind. - https://github.com/maxmind/libmaxminddb/releases/download/1.6.0/libmaxminddb-1.6.0.tar.gz - - glibc-devel - geoip-devel - cmake - - programming/library/libmaxminddb/pspec.xml - - - libmaxminddb - - /usr/bin - /usr/lib - /usr/share/doc - - - - libmaxminddb-devel - - libmaxminddb - - - /usr/include - - - - - 2021-08-10 - 1.6.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - appstream-glib - https://people.freedesktop.org/~hughsient/appstream-glib/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:console - programming.library - Provides GObjects and helper methods to read and write AppStream metadata - Provides GObjects and helper methods to read and write AppStream metadata - https://people.freedesktop.org/~hughsient/appstream-glib/releases/appstream-glib-0.7.18.tar.xz - - meson - autoconf-archive - gperf - gcap-devel - libxslt-devel - docbook-xsl - glib2-devel - libarchive-devel - libsoup-devel - json-glib-devel - gdk-pixbuf-devel - libpng-devel - gtk3-devel - libyaml-devel - libutil-linux-devel - gobject-introspection-devel - libxml2-devel - - - 0001-builder-Implement-support-for-.pisi-format.patch - 0002-pisi-Enable-comparison-by-release-field-highest-win.patch - - programming/library/appstream-glib/pspec.xml - - - appstream-glib - - gtk3 - cairo - pango - libyaml - freetype - glib2 - libsoup - json-glib - gdk-pixbuf - libarchive fontconfig - libutil-linux - libxml2 + libxfce4ui + xfce4-panel + libxfce4util - /usr/bin - /usr/lib - /usr/share/man - /usr/share/locale - /usr/share/bash-completion/ - /usr/share/aclocal - /usr/share/gettext - /usr/share/installed-tests/appstream-glib - /usr/share/doc - - - - appstream-glib-devel - - appstream-glib - libutil-linux-devel - libarchive-devel - glib2-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2021-06-23 - 0.7.18 - Added PiSi Support. - Berk Çakar - berk2238@hotmail.com - - - 2020-10-10 - 0.7.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 0.7.16 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-02-13 - 0.7.14 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-04 - 0.7.12 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-10 - 0.7.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - wimlib - https://wimlib.net/index.html - - PisiLinux Community - admins@pisilinux.org - - custom - app - programming.library - A library and program to extract, create, and modify WIM files - A library and program to extract, create, and modify WIM files - WIM dosyalarını ayıklamak, oluşturmak ve değiştirmek için bir kitaplık ve program - WIM dosyalarını ayıklamak, oluşturmak ve değiştirmek için bir kitaplık ve program - https://wimlib.net/downloads/wimlib-1.13.4.tar.gz - - attr-devel - fuse-devel - libxml2-devel - ntfs-3g - openssl-devel - - programming/library/wimlib/pspec.xml - - - wimlib - - fuse - cdrkit - mtools - cabextract - libxml2 - ntfs-3g - openssl - - - /usr/bin /usr/lib /usr/share - /usr/share/man + /usr/share/locale /usr/share/doc - - wimlib-devel - Development files for wimlib - - wimlib - fuse-devel - libxml2-devel - openssl-devel - - - /usr/include - /usr/lib/pkgconfig - - - 2021-09-27 - 1.13.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - fmt - https://fmt.dev/latest/index.html - - Blue Devil - bluedevil@sctzine.com - - BSD - library - programming.library - Open-source formatting library for C++ - C++ için açık kaynak kodlu biçimlendirme kitaplığı. Open-source formatting library for C++ - {fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams. - fmt, C++ için açık kaynak kodlu biçimlendirme kitaplığı sunar. - https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.tar.gz - - cmake - - programming/library/fmt/pspec.xml - - - fmt - Open-source formatting library for C++ - - libgcc - - - /usr/lib - /usr/share/doc/fmt - - - - fmt-devel - Development files for fmt - fmt için geliştirme dosyaları - fmt-devel, fmt için geliştirme dosyalarını içerir. - - fmt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-17 - 8.0.1 - Version bump. + 2020-06-25 + 0.6.1 + Rebuild. fury uglyside@yandex.ru - - 2020-09-23 - 7.0.3 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-18 - 6.2.1 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - accounts-qml-module - https://launchpad.net/ubuntu/ + xfce4-weather-plugin + https://docs.xfce.org/panel-plugins/xfce4-weather-plugin - Pisi Linux Admins - admins@pisilinux.org + fury + uglyside@yandex.ru - LGPLv3 - library - programming.library - Expose the Online Accounts API to QML applications - Expose the Online Accounts API to QML applications - Expose the Online Accounts API to QML applications - Expose the Online Accounts API to QML applications - https://gitlab.com/accounts-sso/accounts-qml-module/-/archive/VERSION_0.7/accounts-qml-module-VERSION_0.7.tar.gz + GPLv2 + plugin + desktop.xfce.addon + A weather plugin for the Xfce desktop environment + Originally written by Bob Schlärmann, this panel plugin shows information about your local weather in the panel, using forecast data provided by met.no. + https://archive.xfce.org/src/panel-plugins/xfce4-weather-plugin/0.11/xfce4-weather-plugin-0.11.0.tar.bz2 - signon-devel - libaccounts-qt5-devel - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - - Build-add-qmltypes-file-to-repository.patch - Fix-compilation-with-Qt-5.13.patch - - programming/library/accounts-qml-module/pspec.xml - - - accounts-qml-module - - signon - libaccounts-qt5 - qt5-base - qt5-declarative - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2020-04-08 - 0.6 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libcacard - https://gitlab.freedesktop.org/spice/libcacard - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2.1 - library - app:console - science.misc - CAC (Common Access Card) library - CAC (Ortak Erişim Kartı) kitaplığı - This library provides emulation of smart cards to a virtual card -reader running in a guest virtual machine. - Bu kitaplık, akıllı kartların sanal bir karta öykünmesini sağlar -Konuk sanal makinede çalışan okuyucu. - https://www.spice-space.org/download/libcacard/libcacard-2.8.1.tar.xz - - meson - nss-devel - nspr-devel - glib2-devel - pcsc-lite-devel - - programming/library/libcacard/pspec.xml - - - libcacard - CAC (Common Access Card) library - - nss - nspr - glib2 - pcsc-lite - - - /usr/bin - /usr/share/doc/ - /usr/lib/libcacard.so* - - - - libcacard-devel - Development files for libcacard - libcacard için geliştirme dosyaları - Bu kitaplık, akıllı kartların sanal bir karta öykünmesini sağlar -Konuk sanal makinede çalışan okuyucu. - - nss-devel - glib2-devel - pcsc-lite-devel - libcacard - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-02-10 - 2.8.1 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - libadwaita - https://gitlab.gnome.org/GNOME/libadwaita - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.library - Building blocks for modern GNOME applications. - Building blocks for modern GNOME applications. - Modern GNOME uygulamaları için yapı taşları. - Modern GNOME uygulamaları için yapı taşları. - https://download.gnome.org/sources/libadwaita/1.1/libadwaita-1.1.2.tar.xz - - meson - sassc - gtk4-devel - cairo-devel - glib2-devel - pango-devel - libsass-devel - fribidi-devel - graphene-devel - gobject-introspection-devel - - programming/library/libadwaita/pspec.xml - - - libadwaita - - gtk4 - cairo - glib2 - pango - libsass - fribidi - graphene - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/vala - /usr/share/gir-1.0 - /usr/share/doc - - - - libadwaita-devel - Development files for libadwaita - - libadwaita - gtk4-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-06-02 - 1.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-31 - 1.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-02 - 1.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-02 - 1.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-30 - 1.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - liburcu - http://liburcu.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.library - Userspace RCU (read-copy-update) library - Userspace RCU (read-copy-update) library - Userspace RCU (read-copy-update) library - Userspace RCU (read-copy-update) library - https://lttng.org/files/urcu/userspace-rcu-0.13.0.tar.bz2 - programming/library/liburcu/pspec.xml - - - liburcu - - /usr/lib - /usr/share/doc - - - - liburcu-devel - Development files for liburcu - - liburcu - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-21 - 0.13.0 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - amtk - https://wiki.gnome.org/Projects/Amtk - - PisiLinux Community - admins@pisilinux.org - - LGPL2 - app:gui - programming.library - Actions, Menus and Toolbars Kit for GTK+ applications - Gtk uygulamları için eylem, menü ve araç çubuğu kiti - Actions, Menus and Toolbars Kit for GTK+ applications - Gtk uygulamları için eylem, menü ve araç çubuğu kiti - mirrors://gnome/amtk/5.4/amtk-5.4.1.tar.xz - - gettext-devel - glib2-devel - gtk-doc + intltool gtk3-devel - gobject-introspection-devel - meson + upower-devel + libxml2-devel + libsoup-devel + libxfce4ui-devel + xfce4-panel-devel - programming/library/amtk/pspec.xml + desktop/xfce/addon/xfce4-weather-plugin/pspec.xml - amtk + xfce4-weather-plugin gtk3 glib2 + pango + upower + xfconf + libxml2 + libsoup + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util - /usr - /usr/share - /usr/share/man - - - - amtk-devel - amtk için geliştirme dosyaları - - amtk - glib2-devel - gtk3-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-05-25 - 5.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 5.3.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pystring - https://github.com/imageworks/pystring - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.library - Pystring is a collection of C++ functions which match the interface and behavior of python - Pystring is a collection of C++ functions which match the interface and behavior of python - Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur. - Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur. - https://github.com/imageworks/pystring/archive/refs/heads/master.zip - - fedora/CMakeLists.txt - - - cmake - - programming/library/pystring/pspec.xml - - - pystring - - libgcc - - - /usr/lib - /usr/share/doc - - - - pystring-devel - Development files for pystring - - pystring - - - /usr/include - - - - - 2021-06-30 - 1.1.3 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - libgudev - https://wiki.gnome.org/Projects/libgudev - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - LGPL2 - library - programming.library - GObject bindings for Udev (Eudev) - libudev için GObject bağlayıcıları - GObject bindings for Udev (Eudev) - libgudev, ibudev için GObject bağlayıcıları içeren kitaplıklar sunar. - eudev - https://download.gnome.org/sources/libgudev/237/libgudev-237.tar.xz - - meson - gtk-doc - libxslt - vala-devel - python-six - docbook-xsl - eudev-devel - glib2-devel - gobject-introspection-devel - - programming/library/libgudev/pspec.xml - - - libgudev - GObject bindings for Udev (Eudev) - - eudev - glib2 - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/vala/vapi - /usr/share/gtk-doc - - - - libgudev-32bit - libgudev için 32-bit paylaşımlı kitaplıklar - libgudev-32bit, libgudev için 32-bit paylaşımlı kitaplıklar sunar. - emul32 - emul32 - - eudev-32bit - glib2-32bit - glib2-devel - - - eudev-32bit - glib2-32bit - - - /usr/lib32 - - - - libgudev-devel - Development files for libgudev - libgudev için geliştirme dosyaları - libgudev-devel, libgudev için geliştirme dosyalarını içerir. - system.devel - - eudev-devel - glib2-devel - libgudev - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include/gudev-1.0 - - - - - 2021-12-04 - 237 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-15 - 237 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-03 - 236 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-23 - 234 - Major version bump. Translations added. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-21 - 233 - Add 32 bit. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 233 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 232 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-13 - 231 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 230 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 230 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libpsl - https://github.com/rockdaboot/libpsl - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.library - Public Suffix List library - Public Suffix List library - Genel Ek Listesi kitaplığı - Genel Ek Listesi kitaplığı - https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.0/libpsl-0.21.0.tar.gz - - gtk-doc - glib2-devel - icu4c-devel - python-six - gettext-devel - libidn2-devel - libxslt-devel - libunistring-devel - - programming/library/libpsl/pspec.xml - - - libpsl - - libidn2 - libunistring - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libpsl-devel - Development files for libpsl - - libpsl - - - /usr/include - /usr/lib/pkgconfig - - - - libpsl-docs - Development files for libpsl - - libpsl - - - /usr/share/gtk-doc - - - - - 2020-01-28 - 0.21.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2019-08-03 - 0.21.0 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-09-04 - 0.20.2 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-03-04 - 0.20.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libsignon-glib - https://gitlab.com/accounts-sso/libsignon-glib - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - programming.library - Authorization and authentication management for glib - libsignon-glib provides authorization and authentication management for GLib applications. - https://gitlab.com/accounts-sso/libgsignon-glib/-/archive/2.4.1/libgsignon-glib-2.4.1.tar.gz - - meson - glib2-devel - gobject-introspection-devel - signon-devel - gtk-doc - - programming/library/libsignon-glib/pspec.xml - - - libsignon-glib - - gobject-introspection - glib2 - signon - - - /usr/bin - /usr/lib/ - /usr/share/gir-1.0 - /usr/share/vala/vapi/signon.vapi - - - - libsignon-glib-devel - Development files for libsignon-glib - libsignon-glib için kütüphaneler - libsignon-glib geliştirme paketi, libsignon-glib için geliştirme dosyaları sunar. - - libsignon-glib - glib2-devel - signon-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libsignon-glib-doc - Document files for libsignon-glib - - libsignon-glib - - - /usr/share/doc - /usr/share/gtk-doc/html - - - - - 2020-03-04 - 2.4.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-07 - 1.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-29 - 1.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - editorconfig-core-c - https://editorconfig.org/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - library - programming.library - EditorConfig core library written in - EditorConfig core library written in - EditorConfig çekirdek kitaplığı - EditorConfig çekirdek kitaplığı - https://github.com/editorconfig/editorconfig-core-c/archive/v0.12.4.tar.gz - - cmake - doxygen - libpcre2-devel - - programming/library/editorconfig-core-c/pspec.xml - - - editorconfig-core-c - - libpcre2 - - - /usr/bin /usr/lib /usr/share - /usr/share/man - /usr/share/doc - - - - editorconfig-core-c-devel - Development files for editorconfig-core-c - - editorconfig-core-c - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2020-09-21 - 0.12.4 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - appstream - https://www.freedesktop.org/wiki/Distributions/AppStream/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - programming.library - Provides a standard for creating app stores across distributions - Provides a standard for creating app stores across distributions - Provides a standard for creating app stores across distributions - Provides a standard for creating app stores across distributions - https://www.freedesktop.org/software/appstream/releases/AppStream-0.14.6.tar.xz - - cmake - meson - xmlto - gtk-doc - vala-devel - docbook-xsl - docbook-xml - libsoup-devel - lmdb-devel - glib2-devel - python-six - python3-devel - libxslt-devel - libyaml-devel - libxml2-devel - qt5-base-devel - qt5-linguist - gperf - curl-devel - gobject-introspection-devel - - programming/library/appstream/pspec.xml - - - appstream - - curl - libxml2 - libyaml - glib2 - libsoup - lmdb - - - /usr/bin - /etc - /usr/lib /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/doc - /usr/share/gettext - /usr/share/vala - /usr/share/gir-1.0 - /usr/share/libalpm - /usr/share/installed-tests/appstream/metainfo-validate.test - - - System.Package - - - - appstream-qt5 - - qt5-base - libgcc - appstream - glib2 - - - /usr/lib/libAppStreamQt.* - - - - appstream-qt5-devel - Development files for appstream - - appstream-qt5 - - - /usr/include/AppStreamQt - /usr/lib/cmake - - - - appstream-devel - Development files for appstream - - appstream - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-01 - 0.14.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-11 - 0.14.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 0.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-26 - 0.14.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-11 - 0.12.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 0.12.10 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-14 - 0.12.5 - Rebuild qt5. - PisiLinux Community - admins@pisilinux.org - - - 2019-02-13 - 0.12.5 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-11-09 - 0.12.3 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-10-20 - 0.12.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - pisi-timedate - https://github.com/friberk/pisi-timedate - - Berk Çakar - berk2238@hotmail.com - - GPLv3 - programming.library - timedated1 interface implementation for Pisi Linux (or any other non-systemd distributions) - timedated1 interface implementation for Pisi Linux (or any other non-systemd distributions) - https://github.com/friberk/pisi-timedate/archive/refs/tags/1.2.0.tar.gz - - dbus-devel - glib2-devel - - programming/library/pisi-timedate/pspec.xml - - - pisi-timedate - timedated1 interface implementation for Pisi Linux (or any other non-systemd distributions) - - dbus - glib2 - - - /etc/dbus-1 - /usr/libexec - /usr/share/dbus-1 - /usr/share/doc - - - - - 2021-04-17 - 1.2.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libdispatch - https://apple.github.io/swift-corelibs-libdispatch/ - - Pisilinux Community - admin@pisilinux.org - - Apache-2 - library - programming.library - Grand Central Dispatch. - Grand Central Dispatch (GCD or libdispatch) provides comprehensive support for concurrent code execution on multicore hardware. - https://github.com/apple/swift-corelibs-libdispatch/archive/swift-5.4.2-RELEASE.tar.gz - - cmake - llvm-clang - llvm-clang-devel - - - avoid-libkqueue.patch - remove-werror.patch - - programming/library/libdispatch/pspec.xml - - - libdispatch - - llvm-libs - - - /usr/lib - /usr/share/man - /usr/share/doc - - - - libdispatch-devel - - libdispatch - - - /usr/include - - - - - 2021-09-12 - 5.4.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-02-24 - 5.3 - Rebuild for llvm. - Kamil Atlı - suvari@pisilinux.org - - - 2020-12-31 - 5.3 - First build. - fury - uglyside@yandex.ru - - - - - - catch2 - https://github.com/catchorg/catch2 - - Safa Arıman - safaariman@pisilinux.org - - BSLv1 - library - programming.library - C++ Automated Test Cases in Headers - C++ Automated Test Cases in Headers - Catch2 is a multi-paradigm test framework for C++, which also supports Objective-C. It is primarily distributed as a single header file, although certain extensions may require additional headers. - Catch2 is a multi-paradigm test framework for C++, which also supports Objective-C. It is primarily distributed as a single header file, although certain extensions may require additional headers. - https://github.com/catchorg/Catch2/archive/v2.11.1.tar.gz - - cmake - python3-devel - - programming/library/catch2/pspec.xml - - - catch2 - - /usr/include - /usr/lib - /usr/share/doc - /usr/share - - - - - 2020-03-17 - 2.11.1 - First release - Safa Arıman - safaariman@pisilinux.org - - - - - - rpcsvc-proto - https://github.com/thkukuk/rpcsvc-proto - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - app:console - programming.library - This package contains rpcsvc proto.x files from glibc, which are -missing in libtirpc. - Glibc'den gelen rpcsvc proto.x dosyalarını içerir. - This package contains rpcsvc proto.x files from glibc, which are -missing in libtirpc. Additional it contains rpcgen, which is needed -to create header files and sources from protocol files. - Bu paket, glibc'den gelen, libtirpc'de eksik olan rpcsvc proto.x dosyalarını içerir. Ek olarak protokol dosyalarından başlık dosyaları ve kaynaklar oluşturmak için gerekli olan rpcgen içerir. -. - https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/rpcsvc-proto-1.4.tar.xz - - glibc-devel - - programming/library/rpcsvc-proto/pspec.xml - - - rpcsvc-proto - - /usr/bin - /usr/share/doc - /usr/share/man/man1/rpcgen.1 - - - - rpcsvc-proto-devel - Development headers for rpcsvc-proto - rpcsvc-proto kitaplığı için geliştirme başlıkları - - rpcsvc-proto - - - /usr/include - /usr/share/pkgconfig - - - - - 2020-01-19 - 1.4 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2019-03-29 - 1.4 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - gnu-efi - https://sourceforge.net/projects/gnu-efi/ - - Ergün Salman - Poyraz76@pisilinux.org - - LGPLv2 - Libry - programming.library - Develop EFI applications for ARM-64, ARM-32, x86_64, IA-64 (IPF), and IA-32 (x86) platforms using the GNU toolchain and the EFI development environment.. - GNU toolchain and the EFI development environment.. - yalm-cpp - https://sourceforge.net/projects/gnu-efi/files/gnu-efi-3.0.14.tar.bz2 - programming/library/gnu-efi/pspec.xml - - - gnu-efi - - /usr/lib/ - /usr/include/ - /usr/share/ - - - - - 2021-11-21 - 3.0.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 3.0.11 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-15 - 3.0.11 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2018-10-21 - 3.0.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-10 - 3.0.8 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-05-15 - 3.0.4 - Release bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-08-16 - 3.0.4 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - libgfbgraph - https://wiki.gnome.org/Projects/GFBGraph - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv3 - app - programming.library - GLib/GObject wrapper for the Facebook Graph API - GLib/GObject wrapper for the Facebook Graph API - Facebook Graph API için GLib/GObject sarmalayıcı - Facebook Graph API için GLib/GObject sarmalayıcı - https://download.gnome.org/sources/gfbgraph/0.2/gfbgraph-0.2.5.tar.xz - - gtk-doc - glib2-devel - librest-devel - libsoup-devel - libxml2-devel - json-glib-devel - gnome-online-accounts-devel - - programming/library/libgfbgraph/pspec.xml - - - libgfbgraph - - glib2 - librest - libsoup - libxml2 - json-glib - gnome-online-accounts - - - /usr/lib - /usr/share/doc - - - - libgfbgraph-devel - Development files for libgfbgraph - - libgfbgraph - glib2-devel - librest-devel - libsoup-devel - libxml2-devel - json-glib-devel - gnome-online-accounts-devel - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - libgfbgraph-docs - Development files for libgfbgraph - - libgfbgraph - - - /usr/share/gtk-doc - - - - - 2021-10-30 - 0.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 0.2.4 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libappimage - https://appimage.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - programming.library - Reference implementation of the AppImage specification - Reference implementation of the AppImage specification - Reference implementation of the AppImage specification - Reference implementation of the AppImage specification - https://github.com/AppImage/libappimage/archive/refs/tags/v1.0.3.tar.gz - - vim - wget - cmake - boost-devel - cairo-devel - glib2-devel - librsvg-devel - desktop-file-utils - libarchive-devel - squashfuse-devel - xdg-utils-cxx-devel - - - libappimage-gcc10.patch - - programming/library/libappimage/pspec.xml - - - libappimage - - boost - cairo - glib2 - libgcc - librsvg - libarchive - squashfuse - xdg-utils-cxx - - - /usr/lib - /usr/share/doc - - - - libappimage-devel - Development files for libappimage - - libappimage - boost-devel - cairo-devel - glib2-devel - librsvg-devel - desktop-file-utils - libarchive-devel - squashfuse-devel - xdg-utils-cxx-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-10-21 - 1.0.3 - Rebuild boost - Pisi Linux Admins - admin@pisilinux.org - - - 2021-05-19 - 1.0.3 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - range-v3 - https://github.com/ericniebler/range-v3 - - Safa Arıman - safaariman@pisilinux.org - - BSLv1 - library - programming.library - Range algorithms, views, and actions for C++11/14/17 - Range algorithms, views, and actions for C++11/14/17 - Range-v3 is a generic library that augments the existing standard library with facilities for working with ranges. A range can be loosely thought of a pair of iterators. This library provides a full implementation of all the standard algorithms with range-based overloads for convenience. - Range-v3 is a generic library that augments the existing standard library with facilities for working with ranges. A range can be loosely thought of a pair of iterators. This library provides a full implementation of all the standard algorithms with range-based overloads for convenience. - https://github.com/ericniebler/range-v3/archive/0.11.0.tar.gz - - cmake - - programming/library/range-v3/pspec.xml - - - range-v3-devel - - /usr/include - /usr/lib/cmake /usr/share/doc - 2021-09-24 + 2021-02-13 0.11.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + fury + uglyside@yandex.ru - 2020-03-18 - 0.10.0 - First release - Safa Arıman - safaariman@pisilinux.org + 2020-12-06 + 0.10.2 + First Beta release. + fury + uglyside@yandex.ru - cpp-utilities - https://github.com/Martchus/cpp-utilities + xfce4-whiskermenu-plugin + https://docs.xfce.org/panel-plugins/xfce4-whiskermenu-plugin - fury - uglyside@yandex.ru + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - GPL-2 - library - programming.library - Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities. - Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities. - https://github.com/Martchus/cpp-utilities/archive/refs/tags/v5.14.0.tar.gz + GPLv2 + app + desktop.xfce.addon + Alternate Xfce menu. + Whisker Menu is an alternate application launcher for Xfce. + https://archive.xfce.org/src/panel-plugins/xfce4-whiskermenu-plugin/2.7/xfce4-whiskermenu-plugin-2.7.1.tar.bz2 cmake - doxygen - boost-devel - cppunit-devel + exo-devel + gtk3-devel + cairo-devel + garcon-devel + xfconf-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + accountsservice-devel - programming/library/cpp-utilities/pspec.xml + desktop/xfce/addon/xfce4-whiskermenu-plugin/pspec.xml - cpp-utilities + xfce4-whiskermenu-plugin - boost + exo + gtk3 + cairo + glib2 + garcon libgcc + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + accountsservice + /usr/bin /usr/lib /usr/share + /usr/share/locale + /usr/share/man /usr/share/doc - - - cpp-utilities-devel - - cpp-utilities - - - /usr/include - /usr/lib/pkgconfig - /usr/share/c++-utilities - + + 16x16.png + 22x22.png + 24x24.png + 32x32.png + 48x48.png + 64x64.png + 128x128.png + 256x256.png + logotype-pisi.svg + - - 2022-04-14 - 5.14.0 - Version bump - fury - uglyside@yandex.ru - - - 2022-01-18 - 5.12.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-11-04 - 5.11.1 - First build - fury - uglyside@yandex.ru - - - - - - libaccounts-qt5 - https://gitlab.com/accounts-sso/libaccounts-qt - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - library - programming.library - Qt5-based client library for accessing the online accounts database - Qt5-based client library for accessing the online accounts database - https://sourceforge.net/projects/pisilinux/files/source/libaccounts-qt-1.16.tar.gz - - doxygen - qt5-base-devel - qt5-assistant-devel - glib2-devel - libaccounts-glib-devel - - programming/library/libaccounts-qt5/pspec.xml - - - libaccounts-qt5 - - glib2 - libgcc - qt5-base - libaccounts-glib - - - /usr/lib/libaccounts-qt5* - /usr/share/doc/libaccounts-qt5 - /usr/lib/cmake - - - - libaccounts-qt5-devel - Development files for libaccounts-qt5 - - libaccounts-qt5 - qt5-base-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libaccounts-qt5-docs - Help files and API documents for libaccounts-qt5 - data:doc - - libaccounts-qt5 - - - /usr/share/doc - - - - libaccounts-qt5-tools - This package contains the tools for the libaccounts-qt5 library - data:doc - - libaccounts-qt5 - libgcc - qt5-base - - - /usr/bin - /usr/share/libaccounts-qt-tests - - - - - 2020-02-04 - 1.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-22 - 1.14 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-10-16 - 1.14 - Rebuild New T. + 2021-12-11 + 2.7.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-13 - 1.14 - Rebuild New T. + 2021-11-20 + 2.7.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-05-15 - 1.14 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-11 - 1.14 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-20 - 1.13 - Rebuild for qt5 - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-30 - 1.14 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gumbo-parser - https://github.com/google/gumbo-parser - - pisilinux community - admins@pisilinux.org - - Apache-2 - library - programming.library - An HTML5 parsing library in pure C99. - Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. - https://github.com/google/gumbo-parser/archive/refs/tags/v0.10.1.tar.gz - programming/library/gumbo-parser/pspec.xml - - - gumbo-parser - - /usr/lib - - - - gumbo-parser-devel - - gumbo-parser - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-20 - 0.10.1 - First build - pisilinux community - admins@pisilinux.org - - - - - - jemalloc - https://github.com/jemalloc/jemalloc/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.library - General-purpose scalable concurrent malloc implementation - General-purpose scalable concurrent malloc implementation - Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması - Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması - https://github.com/jemalloc/jemalloc/archive/refs/tags/5.2.1.tar.gz - programming/library/jemalloc/pspec.xml - - - jemalloc - - libgcc - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - jemalloc-devel - Development files for jemalloc - - jemalloc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-20 - 5.2.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libwpe - https://wpewebkit.org - - Pisi Linux Admins - admin@pisilinux.org - - custom - library - programming.library - General-purpose library for WPE WebKit - General-purpose library for WPE WebKit - WPE WebKit için genel amaçlı kitaplık - WPE WebKit için genel amaçlı kitaplık - https://github.com/WebPlatformForEmbedded/libwpe/archive/1.9.1.tar.gz - - meson - libxkbcommon-devel - mesa-devel - - - 0447b7a.patch - - programming/library/libwpe/pspec.xml - - - libwpe - - libgcc - libxkbcommon - - - /usr/lib - /usr/share - /usr/share/doc - - - - libwpe-devel - Development files for libwpe - - libwpe - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-02-27 - 1.9.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - rinutils - https://www.shlomifish.org/open-source/projects/ - - Blue Devil - bluedevil@sctzine.com - - MIT - library - programming.library - A C11 / gnu11 utilities C library - Bir C11 / gnu11 aracları bulunan C kitaplığı - This is a set of C headers containing macros and static functions that are expected to work on Unix-like systems and MS Windows that have been extracted from Shlomi Fish´s projects. - Shlomi Fish'in projelerinden çıkartılmış hem *nix hem ms windows platformlarında çalışması beklenen C başlık makro ve durağan yordamları içeren C kitaplığıdır. - https://github.com/shlomif/rinutils/archive/0.8.0.tar.gz - - cmake - - programming/library/rinutils/pspec.xml - - - rinutils - A C11 / gnu11 utilities C library - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - rinutils-devel - Development files for rinutils - - rinutils - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-10 - 0.8.0 + 2021-11-16 + 2.6.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-01-14 - 0.2.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - freecell-solver - https://fc-solve.shlomifish.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.library - A program that automatically solves layouts of Freecell and similar variants of Card Solitaire - Freecell ve Card Solitaire'ın benzer varyantlarının düzenlerini otomatik olarak çözen bir program - This is Freecell Solver - a program that automatically solves layouts of Freecell and similar variants of Card Solitaire such as Eight Off, Forecell, and Seahaven Towers, as well as Simple Simon boards. - Freecell Çözücüsü: Eight Off, Forecell, Seahaven Towers, Simple Simon gibi Freecell ve Card Solitaire'ın benzer varyantlarının düzenlerini otomatik olarak çözen bir programdır. - https://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-6.0.1.tar.xz - - cmake - gperf - perl-Moo - python3-six - perl-path-tiny - rinutils-devel - python3-random2 - python3-pysol_cards - perl-template-toolkit - - programming/library/freecell-solver/pspec.xml - - - freecell-solver - A program that automatically solves layouts of Freecell and similar variants of Card Solitaire - - rinutils - - - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - freecell-solver-devel - Development files for freecell-solver - freecell-solver için geliştirme dosyaları - freecell-solver-devel, freecell-solver için geliştirme dosyalarını içerir. - - freecell-solver - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-23 - 6.0.1 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-13 - 5.16.0 + + 2021-10-14 + 2.6.1 Version bump. - Blue Devil - bluedevil@sctzine.com + Mustafa Cinasal + muscnsl@gmail.com - - 2018-11-11 - 5.0.0 - First release - PisiLinux Community - admins@pisilinux.org + + 2021-09-21 + 2.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - - - - - guidelines-support-library - https://github.com/Microsoft/GSL - - Safa Arıman - safaariman@pisilinux.org - - MIT - library - programming.library - Microsoft Guidelines Support Library - Microsoft Kılavuz Destek Kitaplığı - The Guideline Support Library (GSL) contains functions and types that are suggested for use by the C++ Core Guidelines maintained by the Standard C++ Foundation. This package contains Microsoft's implementation of GSL. - Kılavuz Destek Kitaplığı (GSL), Standart C++ Vakfı tarafından sürdürülen C++ Çekirdek Kılavuzu tarafından kullanılması için önerilen yordam ve yapıları içerir. - https://github.com/microsoft/GSL/archive/v3.1.0.tar.gz - - cmake - - programming/library/guidelines-support-library/pspec.xml - - - guidelines-support-library-devel - Development files of Microsoft Guidelines Support Library - guidelines-support-library için geliştirme dosyaları - guidelines-support-library-devel, guidelines-support-library için geliştirme dosyalarını içerir. - - /usr/share/doc - /usr/include - /usr/share/cmake - - - - 2020-09-23 - 3.1.0 - Major version bump. Translations fixed. - Blue Devil - bluedevil@sctzine.com + 2021-04-15 + 2.5.3 + Ver. bump + fury + uglyside@yandex.ru - 2020-03-18 - 2.1.0 - First release - Safa Arıman - safaariman@pisilinux.org + 2020-08-01 + 2.4.6 + First Beta build. + fury + uglyside@yandex.ru - gtksourceviewmm3 - https://wiki.gnome.org/Projects/GtkSourceView + xfce4-xkb-plugin + https://docs.xfce.org/panel-plugins/xfce4-xkb-plugin - PisiLinux Community - admins@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - LGPL-2.1 - library - programming.library - GtkSourceView is a GNOME library that extends GtkTextView, the standard GTK+ widget for multiline text editing. - GtkSourceView adds support for syntax highlighting, undo/redo, file loading and saving, search and replace, a completion system, printing, displaying line numbers, and other features typical of a source code editor. - https://download.gnome.org/sources/gtksourceviewmm/3.18/gtksourceviewmm-3.18.0.tar.xz + BSD-2 + app:gui + desktop.xfce.addon + A plugin to switch keyboard layouts for the Xfce4 panel + Klavye yerleşimini değiştirmek için Xfce4 panel eklentisi + A plugin for the Xfce4 panel displaying keyboard layout. The plugin may be used as an indicator for the current layout and to switch layouts. + xfce4-xkb-plugin ile Xfce4 panelinden klavye yerleşimini bir iki tıklamayla değiştirebilir, uygulama veya pencere içinde de farklı klavye yerleşimi kullanabilirsiniz. Ayrıca klavye geçiş kısayollarını destekler. + https://archive.xfce.org/src/panel-plugins/xfce4-xkb-plugin/0.8/xfce4-xkb-plugin-0.8.2.tar.bz2 - atk-devel + intltool gtk3-devel - atkmm-devel - cairo-devel - glib2-devel - pango-devel - glibmm-devel - gtkmm3-devel - cairomm-devel - pangomm-devel - libsigc++-devel - gdk-pixbuf-devel - gtksourceview3-devel + garcon-devel + libX11-devel + libICE-devel + librsvg-devel + libwnck3-devel + libxfce4ui-devel + xfce4-panel-devel + libxklavier-devel - programming/library/gtksourceviewmm3/pspec.xml + desktop/xfce/addon/xfce4-xkb-plugin/pspec.xml - gtksourceviewmm3 + xfce4-xkb-plugin atk gtk3 - atkmm - cairo glib2 pango - glibmm - gtkmm3 - cairomm - pangomm - libsigc++ + cairo + xfconf + garcon + librsvg + harfbuzz + libwnck3 gdk-pixbuf - gtksourceview3 + libxfce4ui + xfce4-panel + libxklavier + libxfce4util /usr/lib /usr/share - /usr/share/doc - - - - gtksourceviewmm3-devel - - gtksourceviewmm3 - glibmm-devel - gtkmm3-devel - gtksourceview3-devel - - - /usr/include - /usr/lib/pkgconfig - - - - gtksourceviewmm3-docs - - gtksourceviewmm3 - - - /usr/share/doc/gtksourceviewmm-3.0 - - - - - 2021-12-18 - 3.18.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - jsonrpc-glib - https://gitlab.gnome.org/GNOME/jsonrpc-glib - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - programming.library - jsonrpc-glib is a library to communicate using the JSON-RPC 2.0 specification. - Jsonrpc-GLib is a library to communicate with JSON-RPC based peers in either a synchronous or asynchronous fashion. It also allows communicating using the GVariant serialization format instead of JSON when both peers support it. - https://download.gnome.org/sources/jsonrpc-glib/3.42/jsonrpc-glib-3.42.0.tar.xz - - meson - vala-devel - glib2-devel - gobject-introspection-devel - json-glib-devel - - programming/library/jsonrpc-glib/pspec.xml - - - jsonrpc-glib - library - - glib2 - json-glib - - - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/doc - - - - jsonrpc-glib-devel - Development files for jsonrpc-glib - - jsonrpc-glib - glib2-devel - json-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2022-03-21 - 3.42.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-07 - 3.41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-23 - 3.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 3.38.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libjcat - https://github.com/hughsie/libjcat - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - programming.library - Library for reading and writing Jcat files - Library for reading and writing Jcat files - Jcat dosyalarını okumak ve yazmak için kitaplık - Jcat dosyalarını okumak ve yazmak için kitaplık - https://github.com/hughsie/libjcat/archive/refs/tags/0.1.8.tar.gz - - meson - gtk-doc - help2man - vala-devel - glib2-devel - gpgme-devel - gnutls-devel - json-glib-devel - libgpg-error-devel - gobject-introspection-devel - - programming/library/libjcat/pspec.xml - - - libjcat - - glib2 - gpgme - gnutls - json-glib - libgpg-error - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share/vala - /usr/share/man - /usr/share/installed-tests - /usr/share/doc - - - - libjcat-devel - Development files for libjcat - - glib2-devel - gnutls-devel - json-glib-devel - libjcat - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - libjcat-docs - Development files for libjcat - - libjcat - - - /usr/share/gtk-doc - - - - - 2021-10-20 - 0.1.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - template-glib - https://gitlab.gnome.org/GNOME/template-glib - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - programming.library - template-glib is a library for template expansion which supports calling into GObject Introspection from templates. - Template-GLib is a library to help you generate text based on a template and user defined state. Template-GLib does not use a language runtime, so it is safe to use from any GObject-Introspectable language. - https://download.gnome.org/sources/template-glib/3.34/template-glib-3.34.1.tar.xz - - meson - vala-devel - glib2-devel - gobject-introspection-devel - - programming/library/template-glib/pspec.xml - - - template-glib - library - - glib2 - gobject-introspection - - - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/doc /usr/share/locale - - - - template-glib-devel - Development files for template-glib - - template-glib - glib2-devel - gobject-introspection-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2022-03-21 - 3.34.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 3.34.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - libxml++26 - https://libxmlplusplus.github.io/libxmlplusplus/ - - Pisilinux Community - admins@pisilinux.org - - LGPL-2.1 - library - programming.library - C++ wrapper for the libxml2 XML parser library. - Old ABI. Uses Glib::ustring from the glibmm-2.4 ABI. - https://download.gnome.org/sources/libxml++/2.42/libxml++-2.42.1.tar.xz - - cmake - meson - glibmm-devel - libxml2-devel - libsigc++-devel - - programming/library/libxml++26/pspec.xml - - - libxml++26 - - libgcc - glibmm - libxml2 - - - /usr/lib /usr/share/doc - - libxml++26-devel - - libxml++26 - glibmm-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/libxml++-2.6 - - - - 2021-12-18 - 2.42.1 - Fixed. + + 2021-01-17 + 0.8.2 + Ver. bump fury uglyside@yandex.ru - - - - - xxhash - https://cyan4973.github.io/xxHash/ - - Safa Arıman - safaariman@pisilinux.org - - BSD - GPLv2 - library - programming.library - Extremely fast hash algorithm - Aşırı hızlı çırpı yordamları algoritması - xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. It successfully completes the SMHasher test suite which evaluates collision, dispersion and randomness qualities of hash functions. Code is highly portable, and hashes are identical on all platforms (little / big endian). - xxHash RAM hız sınırlarında aşırı hızlı çırpı yordamları koşabilen bir kitaplıktır. - https://github.com/Cyan4973/xxHash/archive/v0.8.1.tar.gz - - make - - programming/library/xxhash/pspec.xml - - - xxhash - Extremely fast hash algorithm - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - xxhash-devel - Development files for xxhash - xxhash için geliştirme dosyaları - xxhash-devel, xxhash için geliştirme dosyalarını içerir. - - xxhash - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-30 + + 2020-06-25 0.8.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-07 - 0.8.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-19 - 0.7.3 - First release - Safa Arıman - safaariman@pisilinux.org - - - - - - z3 - https://github.com/Z3Prover/z3 - - fury - uglyside@yandex.ru - - MIT - library - programming.library - The Z3 Theorem Prover. - Z3 is a theorem prover from Microsoft Research. - https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.8.17.tar.gz - - cmake - ninja - gmp-devel - python3-devel - python3-setuptools - - programming/library/z3/pspec.xml - - - z3 - - gmp - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - python3-z3 - programming.language.python3 - - z3 - python3 - - - /usr/lib/python* - - - - z3-devel - - z3 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2022-05-28 - 4.8.17 - Version bump. + Rebuild. fury uglyside@yandex.ru - 2021-10-11 - 4.8.12 - Version bump. + 2019-07-28 + 0.8.1 + Ver. bump fury uglyside@yandex.ru - 2021-07-05 - 4.8.11 + 2015-03-05 + 0.5.6 Version bump. - fury - uglyside@yandex.ru - - - 2021-03-24 - 4.8.10 - Version bump. - fury - uglyside@yandex.ru - - - 2020-10-08 - 4.8.9 - First build. - fury - uglyside@yandex.ru - - - - - - double-conversion - https://github.com/google/double-conversion - - fury - uglyside@yandex.ru - - BSD-3-Clause - library - programming.library - Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. - IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları. - double-conversion provides binary-decimal and decimal-binary routines for IEEE doubles. - double-conversion, IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları sunar. - https://github.com/google/double-conversion/archive/refs/tags/v3.1.7.tar.gz - - cmake - - programming/library/double-conversion/pspec.xml - - - double-conversion - - libgcc - - - /usr/lib - /usr/share/doc - - - - double-conversion-devel - double-conversion için geliştirme dosyaları - double-conversion-devel, double-conversion için geliştirme dosyalarını içerir. - - double-conversion - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2022-01-04 - 3.1.7 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-20 - 3.1.6 - Version bump. - fury - uglyside@yandex.ru - - - 2020-04-30 - 3.1.5 - First build. - fury - uglyside@yandex.ru - - - - - - yaml-cpp - https://github.com/jbeder/yaml-cpp - - Ergün Salman - Poyraz76@pisilinux.org - - LGPLv2 - Libry - programming.library - yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. - To get a feel for how it can be used, see the Tutorial or How to Emit YAML. - yalm-cpp - https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.6.3.tar.gz - - cmake - python-devel - boost-devel - - programming/library/yaml-cpp/pspec.xml - - - yaml-cpp - - /usr/lib/ - /usr/include/yaml-cpp/* - /usr/lib/pkgconfig/ - /usr/share/doc/ - - - - - 2020-03-04 - 0.6.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-19 - 0.5.3 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 0.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-05-11 - 0.5.2 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-01 - 0.5.2 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - md4c - https://github.com/mity/md4c - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.library - C Markdown parser - C Markdown parser - C Markdown parser - C Markdown parser - https://github.com/mity/md4c/archive/release-0.4.2.tar.gz - - cmake - - programming/library/md4c/pspec.xml - - - md4c - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - md4c-devel - Development files for md4c - - md4c - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2020-01-15 - 0.4.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libgee - https://wiki.gnome.org/Projects/Libgee - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app - programming.library - A collection library providing GObject-based interfaces and classes for commonly used data structures - Sık kullanılan veri yapıları için GObject tabanlı arabirimler ve sınıflar sağlayan bir koleksiyon kitaplığı - Yaygın olarak kullanılan veri yapıları için GObject tabanlı arayüzler ve sınıflar sağlayan bir koleksiyon kütüphanesi - Yaygın olarak kullanılan veri yapıları için GObject tabanlı arayüzler ve sınıflar sağlayan bir koleksiyon kütüphanesi - mirrors://gnome/libgee/0.20/libgee-0.20.5.tar.xz - - vala-devel - glib2-devel - gobject-introspection-devel - - programming/library/libgee/pspec.xml - - - libgee - - glib2 - - - /usr/lib - /usr/share - /usr/share/vapi - /usr/share/doc - - - - libgee-devel - Development files for libgee - - glib2-devel - libgee - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-02-11 - 0.20.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-01 - 0.20.3 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-01-15 - 0.20.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libinih - https://github.com/benhoyt/inih - - Pisi Linux Admins - admin@pisilinux.org - - BSD - library - programming.library - A simple .INI file parser written in C - A simple .INI file parser written in C - C ile yazılmış basit bir .INI dosyası ayrıştırıcısı - C ile yazılmış basit bir .INI dosyası ayrıştırıcısı - https://github.com/benhoyt/inih/archive/r53.tar.gz - - meson - - programming/library/libinih/pspec.xml - - - libinih - - libgcc - - - /usr/lib - /usr/share - /usr/share/doc - - - - libinih-devel - Development files for libinih - - libinih - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-02-27 - 53 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libmediaart - https://gitlab.gnome.org/GNOME/libmediaart - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:gui - programming.library - Library for managing media art caches - ortam sanat önbelleğini yönetmek için bir kitaplık - Library for managing media art caches - ortam sanat önbelleğini yönetmek için bir kitaplık - libmediaart - mirrors://gnome/libmediaart/1.9/libmediaart-1.9.6.tar.xz - - glib2-devel - gdk-pixbuf-devel - gobject-introspection-devel - gtk-doc - meson - vala-devel - - programming/library/libmediaart/pspec.xml - - - libmediaart - - glib2 - gdk-pixbuf - - - /usr/bin - /usr/lib/libmediaart* - /usr/lib/girepository-1.0 - /usr/share/doc - /usr/share/gtk-doc - /usr/share/vala - - - - libmediaart-devel - libmediaart için geliştirme dosyaları - - libmediaart - glib2-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-06-02 - 1.9.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-10 - 1.9.5 - First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - - - - - libev - http://software.schmorp.de/pkg/libev.html - - Ertuğrul Erata - ertugrulerata@gmail.com - - BSD - GPLv2 - programming.library - Full-featured and high performance event loop library - FA high-performance event loop/event model with lots of feature - http://dist.schmorp.de/libev/libev-4.31.tar.gz - programming/library/libev/pspec.xml - - - libev - - /usr/lib - - - - libev-devel - Development files for libev - system.devel - - libev - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-03-01 - 4.31 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - 2018-09-12 - 4.24 - Rebuild for new toolchain. - Ertuğrul Erata - ertugrulerata@gmail.com + 2013-08-26 + 0.5.4.3 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org - 2018-05-16 - 4.24 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - utf8proc - https://github.com/JuliaStrings/utf8proc - - fury - uglyside@yandex.ru - - MIT - library - programming.library - a clean C library for processing UTF-8 Unicode data. - utf8proc is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 encoding. - https://github.com/JuliaStrings/utf8proc/archive/refs/tags/v2.7.0.tar.gz - - cmake - - programming/library/utf8proc/pspec.xml - - - utf8proc - - /usr/lib - - - - utf8proc-devel - - utf8proc - - - /usr/include/utf8proc.h - /usr/lib/pkgconfig - - - - - 2021-12-20 - 2.7.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-11-22 - 2.6.1 - First build - fury - uglyside@yandex.ru - - - - - - expected - https://github.com/TartanLlama/expected - - Safa Arıman - safa@ariman.gen.tr - - CC0 - library - programming.library - Single header implementation of std::expected with functional-style extensions. - Single header implementation of std::expected with functional-style extensions. - std::expected is proposed as the preferred way to represent object which will either have an expected value, or an unexpected value giving information about why something failed. Unfortunately, chaining together many computations which may fail can be verbose, as error-checking code will be mixed in with the actual programming logic. This implementation provides a number of utilities to make coding with expected cleaner. - std::expected is proposed as the preferred way to represent object which will either have an expected value, or an unexpected value giving information about why something failed. Unfortunately, chaining together many computations which may fail can be verbose, as error-checking code will be mixed in with the actual programming logic. This implementation provides a number of utilities to make coding with expected cleaner. - https://github.com/TartanLlama/expected/archive/v1.0.0.tar.gz - - cmake - git - catch2 - - programming/library/expected/pspec.xml - - - expected-devel - - /usr/include - /usr/share/doc - /usr/share/cmake - - - - - 2020-03-17 - 1.0.0 - First release - Safa Arıman - safa@ariman.gen.tr - - - - - - libconfuse - https://github.com/libconfuse/libconfuse - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - programming.library - Configuration file parser library. - Yapılandırma dosyası ayrıştırıcısı - libconfuse is a configuration file parser library. - libconfuse bir yapılandırma dosyası ayrıştırıcısıdır. - https://github.com/libconfuse/libconfuse/releases/download/v3.3/confuse-3.3.tar.xz - programming/library/libconfuse/pspec.xml - - - libconfuse - - /usr/lib - /usr/share/doc/confuse - /usr/share/locale - - - - libconfuse-devel - Development headers for libconfuse - libconfuse için geliştirme başlıkları - libconfuse-devel provides development headers for libconfuse. - libconfuse için geliştirme başlıklarını içerir. - - libconfuse - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - - 2021-10-17 - 3.3 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-01 - 3.2.2 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-10 - 3.2.1 - Rebuild for new toolchain. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-17 - 3.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - re2 - https://github.com/google/re2 - - Mustafa Cinasal - muscnsl@gmail.com - - BSD - library - programming.library - Fast, safe, thread-friendly regular expression engine - Fast, safe, thread-friendly regular expression engine - Fast, safe, thread-friendly regular expression engine - Fast, safe, thread-friendly regular expression engine - https://github.com/google/re2/archive/2020-11-01.tar.gz - programming/library/re2/pspec.xml - - - re2 - - libgcc - - - /usr/lib - /usr/share - /usr/share/doc - - - - re2-devel - Development files for re2 - - re2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-18 - 20201101 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 20200303 - version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-19 - 20180801 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-21 - 20180401 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - libaccounts-glib - https://code.google.com/p/accounts-sso - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - programming.library - Accounts and SSO (Single Sign-On) framework - Accounts and SSO (Single Sign-On) framework for Linux and POSIX based platforms. - https://sourceforge.net/projects/pisilinux/files/source/libaccounts-glib-1.24.tar.gz - - meson - vala-devel - glib2-devel - check-devel - libxml2-devel - sqlite-devel - gtk-doc - docbook-xsl - dbus-glib-devel - gobject-introspection-devel - python3-pygobject3-devel - - programming/library/libaccounts-glib/pspec.xml - - - libaccounts-glib - library - - glib2 - sqlite - libxml2 - - - /usr/bin - /usr/lib - /usr/share/backup-framework/applications/accounts.conf - /usr/share/xml - /usr/share/gettext/its/ - /usr/share/libaccounts-glib/testdata - /usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.Accounts.Manager.xml - /usr/share/man/man1 - /usr/share/gir-1.0/Accounts-1.0.gir - /usr/share/vala - - - - libaccounts-glib-devel - Development files for libaccounts-glib - - libaccounts-glib - glib2-devel - libxml2-devel - sqlite-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libaccounts-glib-docs - Help files and API documents for libaccounts-glib - data:doc - - libaccounts-glib - - - /usr/share/gtk-doc - /usr/share/doc - - - - - 2021-08-08 - 1.24 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-04 - 1.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.21 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-15 - 1.21 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-11 - 1.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 1.21 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - wpebackend-fdo - https://wpewebkit.org - - Pisi Linux Admins - admin@pisilinux.org - - custom - library - programming.library - Freedesktop.org backend for WPE WebKit - Freedesktop.org backend for WPE WebKit - WPE WebKit için Freedesktop.org arka ucu - WPE WebKit için Freedesktop.org arka ucu - https://github.com/Igalia/WPEBackend-fdo/archive/1.9.1.tar.gz - - meson - mesa-devel - glib2-devel - wayland-devel - libwpe-devel - libglvnd-devel - libepoxy-devel - wayland-protocols-devel - wayland-client - wayland-server - libxkbcommon-devel - - programming/library/wpebackend-fdo/pspec.xml - - - wpebackend-fdo - - glib2 - libgcc - libwpe - wayland - libepoxy - wayland-client - wayland-server - - - /usr/lib - /usr/share - /usr/share/doc - - - - wpebackend-fdo-devel - Development files for wpebackend-fdo - - wpebackend-fdo - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-02-27 - 1.9.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - stellarsolver - https://github.com/rlancaste/stellarsolver - - Kamil Atlı - suvari@pisilinux.org - - GPL3 - library - app:console - programming.library - The Cross Platform Sextractor and Astrometry.net-Based Internal Astrometric Solver - Çapraz platform Sextractor ve Astrometry.net tabanlı dahili astrometrik çözücü - The Cross Platform Sextractor and Astrometry.net-Based Internal Astrometric Solver. - Çapraz platform Sextractor ve Astrometry.net tabanlı dahili astrometrik çözücü. - https://github.com/rlancaste/stellarsolver/archive/2.2.tar.gz - - cmake - gsl-devel - wcslib-devel - cfitsio-devel - qt5-base-devel - - programming/library/stellarsolver/pspec.xml - - - stellarsolver - - gsl - libgcc - wcslib - cfitsio - qt5-base - - - /usr/share/doc - /usr/lib/libstellarsolver.so - /usr/lib/libstellarsolver.so.2 - /usr/lib/libstellarsolver.so.2.2 - - - - stellarsolver-devel - Development files for stellarsolver - stellarsolver için geliştirme dosyaları - - stellarsolver - - - /usr/lib/pkgconfig/stellarsolver.pc - /usr/lib/cmake/StellarSolver - /usr/include/libstellarsolver - - - - - 2022-05-08 - 2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-16 - 1.5 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libwlocate - https://sourceforge.net/projects/libwlocate/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv3 - library - programming.library - A shared library that can be used for location-based services - libwlocate is a shared library that can be used for location-based services. - http://sourceforge.net/projects/pisilinux/files/source/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.tar.gz - - wireless-tools-devel - - programming/library/libwlocate/pspec.xml - - - libwlocate - A shared library that can be used for location-based services - - wireless-tools - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libwlocate-devel - Development files for libwlocate - - libwlocate - - - /usr/include - - - - - 2020-03-04 - 0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-04 - 0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-05-11 - 0.2 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-03 - 0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - black-hole-solver - https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - library - programming.library - The Black Hole Solitaire Solver Executable - The Black Hole Solitaire Solver Executable - The Black Hole Solitaire Solver Executable - The Black Hole Solitaire Solver Executable - https://fc-solve.shlomifish.org/downloads/fc-solve/black-hole-solver-1.10.1.tar.xz - - cmake - perl-path-tiny - python3-devel - rinutils-devel - - programming/library/black-hole-solver/pspec.xml - - - black-hole-solver - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - black-hole-solver-devel - Development files for black-hole-solver - - black-hole-solver - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-05-10 - 1.10.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libthai - https://linux.thai.net/projects/libthai/ - - fury - uglyside@yandex.ru - - LGPL-2.1 - library - programming.library - LibThai is a set of Thai language support routines aimed to ease developers’ tasks to incorporate Thai language support in their applications. - It includes important Thai-specific functions e.g. word breaking, input and output methods as well as basic character and string supports. - https://linux.thai.net/pub/thailinux/software/libthai/libthai-0.1.29.tar.xz - - doxygen - trietool - libdatrie-devel - - programming/library/libthai/pspec.xml - - - libthai - - libdatrie - - - /usr/lib - /usr/share/libthai/thbrk.tri - - - - libthai-devel - - libthai - - - /usr/lib/pkgconfig - /usr/include - - - - libthai-html-doc - - /usr/share/doc - /usr/share/doc/libthai/html - - - - - 2022-04-14 - 0.1.29 - First build - fury - uglyside@yandex.ru - - - - - - msgpack-c - https://msgpack.org/ - - fury - uglyside@yandex.ru - - Boost - library - programming.library - It's like JSON but smaller and faster. - MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it's faster and smaller. Small integers are encoded into a single byte and short strings require only one extra byte in addition to the strings themselves. - https://github.com/msgpack/msgpack-c/releases/download/c-4.0.0/msgpack-c-4.0.0.tar.gz - - cmake - - programming/library/msgpack-c/pspec.xml - - - msgpack-c - - /usr/lib - - - - msgpack-c-devel - - msgpack-c - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-04-14 - 4.0.0 - First build. - fury - uglyside@yandex.ru - - - - - - tpm2-tss - https://github.com/tpm2-software/tpm2-tss - - PisiLinux Community - admins@pisilinux.org - - BSDv2 - library - programming.library - OSS implementation of the TCG TPM2 Software Stack (TSS2) - TCG TPM2 (Trusted Platform Module) Yazılım yığınının (TSS2) açık kaynak kodlu uygulanması - Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2) - tpm2-tss, TCG TPM2 (Trusted Platform Module) Yazılım yığınının (TSS2) açık kaynak kodlu uygulanmasını içeren kitaplıkları sunar. - https://github.com/tpm2-software/tpm2-tss/archive/3.1.0.tar.gz - - doxygen - iproute2 - curl-devel - json-c-devel - gettext-devel - openssl-devel - autoconf-archive - - programming/library/tpm2-tss/pspec.xml - - - tpm2-tss - OSS implementation of the TCG TPM2 Software Stack (TSS2) - - curl - json-c - openssl - - - /etc - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /var/lib/tpm2-tss - /var/run/tpm2-tss - - - - tpm2-tss-devel - Development files for tpm2-tss - tpm2-tss için geliştirme dosyaları - tpm2-tss-devel, tpm2-tss için geliştirme dosyalarını içerir. - - curl-devel - json-c-devel - openssl-devel - tpm2-tss - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-01-14 - 3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 3.0.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2020-09-23 - 3.0.0 - Major version bump. Fix translation - Blue Devil - bluedevil@sctzine.com - - - 2020-04-02 - 2.4.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - glm - http://glm.g-truc.net/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - programming.library - C++ mathematics library - C++ matematik kitaplığı - C++ mathematics library for 3D software based on the OpenGL Shading Language (GLSL) specification - GLM, OpenGL Shading Language (GLSL) spesifikasyonuna dayanan 3D yazılımlar için bir C + + matematik kitaplığıdır. - https://github.com/g-truc/glm/archive/0.9.9.6.tar.gz - - cmake - - - glm-0.9.9.6-install.patch - - programming/library/glm/pspec.xml - - - glm - - /usr/include - /usr/lib - - - - glm-doc - - /usr/share/doc - - - - - 2020-02-21 - 0.9.9.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-09 - 0.9.8.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - 2017-01-01 - 0.9.8.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libunibreak - http://vimgadgets.sourceforge.net/libunibreak/ - - Pisi Linux Community - admin@pisilinux.org - - zlib - library - programming.library - An Implementation of the line breaking and word breaking algorithms - Satır kırılma ve kelime kırılma algoritmalarının bir uygulaması - Libunibreak is an implementation of the line breaking and word breaking algorithms as described in Unicode Standard Annex 14 and Unicode Standard Annex 29 - libunibreak Unicode Standard Annex 14 ve Unicode Standard Annex 29 içinde tanımlandığı gibi satır kırılma ve kelime kırılma algoritmalarının bir uygulamasıdır. - https://github.com/adah1972/libunibreak/releases/download/libunibreak_5_0/libunibreak-5.0.tar.gz - programming/library/libunibreak/pspec.xml - - - libunibreak - - /usr/lib - /usr/share/doc - - - - libunibreak-devel - - libunibreak - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-22 - 5.0 - First release. - Pisi Linux Community - admin@pisilinux.org - - - - - - libconfig - https://hyperrealm.github.io/libconfig/ - - Pisilinux Community - admins@pisilinux.org - - LGPL-2.1 - library - programming.library - C/C++ library for processing configuration files. - C/C++ Yapılandırma Dosyası Kitaplığı - Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. - Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz. - https://github.com/hyperrealm/libconfig/releases/download/v1.7.3/libconfig-1.7.3.tar.gz - - texinfo - - programming/library/libconfig/pspec.xml - - - libconfig - - libgcc - - - /usr/lib - /usr/share/doc - - - - libconfig-devel - Development files for libconfig - libconfig için geliştirme dosyaları - - libconfig - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-14 - 1.7.3 - Version bump. - Pisilinux Community - admins@pisilinux.org - - - 2020-11-07 - 1.7.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-12 - 1.7.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 1.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-03-04 - 1.4.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - swig - http://www.swig.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - BSD - app:console - library - programming.library - Connects C/C++/Objective C to some high-level programming languages - Basitleştirilmiş arayüz oluşturucu - Simplified Wrapper and Interface Generator (Générateur d'interface de scripts d'enrobage simplifié), SWIG est un outil de développement qui connecte des programmes écrits en C et C++ avec divers langages de programmation de haut niveau. SWIG est utilisé avec différents type de langages incluant les langages de script habituels tels que Perl, PHP, Python, Tcl, Ruby. - Simplified Wrapper and Interface Generator, SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. SWIG is used with different types of languages including common scripting languages such as Perl, PHP, Python, Tcl, Ruby and PHP - SWIG, C ve C++ ile yazılmış uygulamaları çeşitli üst düzey programlama dilleri ile bağlayan bir yazılım geliştirme aracıdır. SWIG, genel betik dilleri olan Perl, PHP, Python, Tcl, Ruby gibi farklı diller ile kullanılır. - mirrors://sourceforge/swig/swig/swig-4.0.2/swig-4.0.2.tar.gz - - perl - zlib-devel - ruby-devel - boost-devel - libpcre-devel - python3-devel - - - swig-Upgrade-to-support-newer-NodeJS.patch - - programming/library/swig/pspec.xml - - - swig - Connects C/C++/Objective C to some high-level programming languages - - zlib - libgcc - libpcre - - - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/swig - - - - - 2021-03-11 - 4.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-11 - 4.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 4.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 4.0.1 - Rebuild due to new ruby version - Blue Devil - bluedevil@sctzine.com - - - 2020-01-09 - 4.0.1 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-07-25 - 3.0.12 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-03-22 - 3.0.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-28 - 3.0.11 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 3.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-22 - 3.0.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - signon - https://code.google.com/p/accounts-sso - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - programming.library - A framework for centrally storing authentication credentials - Single Sign-On is a framework for centrally storing authentication credentials and handling authentication on behalf of applications as requested by applicationsIt consists of - a secure storage of login credentials (for example usernames and passwords), plugins for different authentication systems and a client library for applications to communicate with this system. - https://gitlab.com/accounts-sso/signond/-/archive/VERSION_8.60/signond-VERSION_8.60.tar.bz2 - - qt5-base-devel - doxygen - - - qt5.5.diff - use_keyring.patch - - programming/library/signon/pspec.xml - - - signon - - qt5-base - libgcc - doxygen - - - /usr/bin - /usr/lib - /etc - /usr/share/dbus-1 - - - - signon-devel - Development files for signon - Signon için kütüphaneler - Signon geliştirme paketi, Signon için geliştirme dosyaları sunar. - - signon - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - signon-docs - Help files and API documents for signon - data:doc - - signon - - - /usr/share/doc - - - - - 2020-03-04 - 8.60 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-01-08 - 8.58 - Rebuild qt5. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 8.58 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-15 - 8.58 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-10 - 8.58 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-14 - 8.58 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - spdlog - https://spdlog.docsforge.com/ - - fury - uglyside@yandex.ru - - MIT - library - programming.library - Fast C++ logging library. - Very fast, header-only/compiled, C++ logging library. - https://github.com/gabime/spdlog/archive/refs/tags/v1.9.2.tar.gz - - cmake - fmt-devel - - programming/library/spdlog/pspec.xml - - - spdlog - - fmt - libgcc - - - /usr/lib - - - - spdlog-devel - - fmt-devel - spdlog - - - /usr/lib/cmake - /usr/include/spdlog - /usr/lib/pkgconfig - - - - - 2021-12-14 - 1.9.2 - First build. - fury - uglyside@yandex.ru - - - - - - xdg-utils-cxx - https://github.com/azubieta/xdg-utils-cxx - - Pisi Linux Admins - admin@pisilinux.org - - MIT - library - programming.library - Implementation of the FreeDesktop specifications to be used in C++ projects - Implementation of the FreeDesktop specifications to be used in C++ projects - Implementation of the FreeDesktop specifications to be used in C++ projects - Implementation of the FreeDesktop specifications to be used in C++ projects - https://github.com/azubieta/xdg-utils-cxx/archive/refs/tags/v1.0.1.tar.gz - - cmake - - programming/library/xdg-utils-cxx/pspec.xml - - - xdg-utils-cxx - - /usr/lib - /usr/share/doc - - - - xdg-utils-cxx-devel - Development files for xdg-utils-cxx - - xdg-utils-cxx - - - /usr/include - /usr/lib/cmake - - - - - 2021-05-19 - 1.0.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libgdata - https://wiki.gnome.org/Projects/libgdata - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - programming.library - GLib-based library for accessing online service APIs using the GData protocol - GLib-based library for accessing online service APIs using the GData protocol - GData protokolünü kullanarak çevrimiçi hizmet API'lerine erişmek için GLib tabanlı kitaplık - GData protokolünü kullanarak çevrimiçi hizmet API'lerine erişmek için GLib tabanlı kitaplık - https://download.gnome.org/sources/libgdata/0.18/libgdata-0.18.1.tar.xz - - meson - gcr-devel - vala-devel - glib2-devel - libsoup-devel - libxml2-devel - json-glib-devel - libuhttpmock-devel - gnome-online-accounts-devel - - programming/library/libgdata/pspec.xml - - - libgdata - - gcr - glib2 - libsoup - libxml2 - json-glib - libuhttpmock - gnome-online-accounts - - - /usr/lib - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/vala - /usr/share/doc - - - - libgdata-devel - Development files for libgdata - - libgdata - gcr-devel - glib2-devel - libsoup-devel - libxml2-devel - json-glib-devel - libuhttpmock-devel - gnome-online-accounts-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-06-02 - 0.18.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - qgit - http://digilander.libero.it/mcostalba/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - programming.scm - A git GUI viewer built on Qt5/C++ - Qt5/C++ üzerine inşa edilmiş git grafik arayüzü - With qgit you will be able to browse revisions history, view patch content and changed files, graphically following different development branches. - Qgit ile sürüm geçmişlerine göz atabilecek, yama içeriklerini ve değişen dosyaları değişik geliştirme dallarında grafiksel olarak görebileceksiniz. - Con qgit se puede navegar por los históricos de revisiones, ver contenido de parches y archivos modificados, siguiendo de manera gráfica las diferentes ramificaciones de desarrollo. - qgit - https://github.com/tibirna/qgit/archive/qgit-2.9.tar.gz - - qt5-base-devel - - programming/scm/qgit/pspec.xml - - - qgit - - qt5-base - libgcc - - - /usr/bin - /usr/share - - - qgit.desktop - - - - - 2019-08-28 - 2.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - mercurial - https://www.mercurial-scm.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - programming.scm - A distributed SCM tool - Dağıtık bir kaynak kod yönetim aracı - Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille. - A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects. - Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi - Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos. - https://www.mercurial-scm.org/release/mercurial-5.3.tar.gz - - python-devel - - programming/scm/mercurial/pspec.xml - - - mercurial - A distributed SCM tool - - python - - - /etc/bash_completion.d - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2020-02-25 - 5.3 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-09-09 - 4.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-20 - 4.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 4.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 3.8.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-04 - 3.3.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - github-cli - https://github.com/cli/cli - - Blue Devil - bluedevil@sctzine.com - - MIT - app:console - programming.scm - The GitHub CLI - Github komut satırı arayüzü. - gh is GitHub on the command line, and it's now available in beta. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code. - gh, resmi Github komut satırı arayüzüdür. - https://github.com/cli/cli/archive/v0.5.7.tar.gz - - golang - - programming/scm/github-cli/pspec.xml - - - github-cli - The GitHub CLI - - /usr/bin/gh - /usr/share/doc - - - - - 2020-02-24 - 0.5.7 - First release - Blue Devil - bluedevil@sctzine.com - - - - - - subversion - http://subversion.apache.org/ - - PisiLinux Community - admins@pisilinux.org - - Subversion - app:console - service - programming.scm - A compelling replacement for CVS - Bir sürüm kontrol sistemi - SVN est un gestionnaire de configuration permettant de stocker des fichiers et de contrôler leur historique de changement dans un dépôt. - SVN is a version controlling system to store files and control their change history in a repository. - Daha gelişmiş özellikleri olan ve önceki CVS yerine kullanılan, bir sürüm yönetim sistemidir. - http://archive.apache.org/dist/subversion/subversion-1.14.1.tar.bz2 - - apache - expat-devel - zlib-devel - ruby-devel - serf-devel - sqlite-devel - jdk8-openjdk - apr-util-devel - cyrus-sasl-devel - python-devel - dbus-devel - glib2-devel - openssl-devel - swig - python3-devel - python-py3c-devel - - - subversion-swig-perl-install_vendor.patch - subversion.rpath.fix.patch - dont_compile_pyc.patch - - programming/scm/subversion/pspec.xml - - - subversion - - file - zlib - expat - libgcc - sqlite - apr - serf - apr-util - cyrus-sasl - python-py3c - - - /etc/conf.d - /etc/subversion - /etc/bash_completion.d - /usr/share/build - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - /var/svn - - - System.Service - System.Package - - - svnserve.confd - subversion.config - - - - subversion-devel - Development files for subversion - Subversion için geliştirme dosyaları - - openssl-devel - apr-devel - serf-devel - sqlite-devel - apr-util-devel - subversion - - - /usr/include - /usr/share/pkgconfig - - - - mod_dav_svn - server.web - - apr - apache - apr-util - subversion - - - /usr/lib/apache2 - /usr/libexec/mod_dav_svn.so - /usr/libexec/mod_authz_svn.so - /etc/apache2/modules.d - /var/www/localhost/htdocs - - - System.Package - - - 47_mod_dav_svn.conf - - - - - 2021-03-10 - 1.14.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2018-09-16 - 1.10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-20 - 1.9.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 1.9.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.9.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-06 - 1.9.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libgit2 - https://libgit2.github.com - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - programming.scm - git c dili kütüphanesi - A linkable library for Git - git için c kütüphanesi - A plain C library to interface with the git version control system - libgit2 - https://github.com/libgit2/libgit2/archive/v1.1.0.tar.gz - - zlib-devel - libpcre-devel - openssl-devel - http-parser - libssh2-devel - python3-devel - cmake - - programming/scm/libgit2/pspec.xml - - - libgit2 - - zlib - openssl - libpcre - libssh2 - http-parser - - - /usr/lib - - - - libgit2-devel - - libgit2 - zlib-devel - openssl-devel - libpcre-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2021-07-17 - 1.1.0 - Rebuild. - Berk Çakar - berk2238@hotmail.com - - - 2021-06-15 - 1.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 1.0.1 - Rebuild. - Berk Çakar - berk2238@hotmail.com - - - 2020-09-21 - 1.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 0.28.4 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-04-22 - 0.28.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-20 - 0.27.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-20 - 0.26.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 0.25.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.23.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-01 - 0.23.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libgit2-glib - https://gitlab.gnome.org/GNOME/libgit2-glib - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - programming.misc - libgit2-glib is a glib wrapper library around the libgit2 git access library. - libgit2-glib is a glib wrapper library around the libgit2 git access library. - https://download.gnome.org/sources/libgit2-glib/1.0/libgit2-glib-1.0.0.1.tar.xz - - meson - libssh2-devel - glib2-devel - gobject-introspection-devel - libgit2-devel - python3-devel - vala-devel - - programming/scm/libgit2-glib/pspec.xml - - - libgit2-glib - libgit2-glib is a glib wrapper library around the libgit2 git access library. - - glib2 - libgit2 - libssh2 - - - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/lib/python3* - /usr/share/doc - - - - libgit2-glib-devel - libgit2-glib is a glib wrapper library around the libgit2 git access library. - - glib2-devel - libgit2-devel - libgit2-glib - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2021-12-24 - 1.0.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-08 - 0.99.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-13 - 0.99.0.1 - Version bump - Berk Çakar - berk2238@hotmail.com - - - 2021-04-07 - 0.99.0 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - git - https://git-scm.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - programming.scm - Fast Version Control System - Hızlı Sürüm Denetim Sistemi - Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. - Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. - GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. - https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.36.1.tar.xz - - libpcre2-devel - openssl-devel - libpcre-devel - libxslt-devel - expat-devel - tcltk-devel - curl-devel - perl-Error - util-linux - zlib-devel - asciidoc - xmlto - perl - - programming/scm/git/pspec.xml - - - git - Fast Version Control System - app:console - - perl-Git - perl-String-ShellQuote - perl-Net-SMTP-SSL - perl-Authen-SASL - perl-libwww - libpcre - libpcre2 - openssh - openssl - rsync - expat - zlib - curl - - - /usr/bin - /usr/libexec/git-core - /etc/bash_completion.d - /usr/share/git-core - /usr/share/locale - /usr/share/man/man1/git.1* - /usr/share/man/man1/git-a* - /usr/share/man/man1/git-b* - /usr/share/man/man1/git-ca* - /usr/share/man/man1/git-ch* - /usr/share/man/man1/git-cl* - /usr/share/man/man1/git-co* - /usr/share/man/man1/git-credential-c* - /usr/share/man/man1/git-credential-s* - /usr/share/man/man1/git-credential.* - /usr/share/man/man1/git-cv* - /usr/share/man/man1/git-di* - /usr/share/man/man1/git-de* - /usr/share/man/man1/git-f* - /usr/share/man/man1/git-gc* - /usr/share/man/man1/git-ge* - /usr/share/man/man1/git-gr* - /usr/share/man/man1/git-h* - /usr/share/man/man1/git-i* - /usr/share/man/man1/git-l* - /usr/share/man/man1/git-m* - /usr/share/man/man1/git-n* - /usr/share/man/man1/git-p* - /usr/share/man/man1/git-q* - /usr/share/man/man1/git-r* - /usr/share/man/man1/git-s* - /usr/share/man/man1/git-t* - /usr/share/man/man1/git-u* - /usr/share/man/man1/git-v* - /usr/share/man/man1/git-w* - /usr/share/man/man5/ - /usr/share/man/man7/ - /usr/share/doc - - - - git-daemon - GIT protocol daemon - GIT protokolü hizmeti - git-daemon, GIT protokolü hizmeti sunar. - service - - zlib - libpcre - git - - - /etc/conf.d/git-daemon - /usr/libexec/git-core/git-daemon - /usr/share/man/man1/git-daemon*.1* - /pub/scm - - - System.Service - - - git-daemon.confd - - - - perl-Git - Perl interface to GIT - GIT için perl arayüzü - perl-Git, GIT için perl arayüzü sunar. - library - programming.language.perl - - perl-Error - perl - - - /usr/lib/perl5 - /usr/share/perl5 - /usr/share/man/man3/Git.3pm - - - - gitk - Git revision tree visualiser - Git sürüm ağacı görüntüleyici - gitk, Git sürüm ağacı görüntüleyicisi sunar. - app:gui - - git - tcltk - - - /usr/bin/gitk - /usr/share/gitk - /usr/share/man/man1/*gitk*.1* - - - - git-gui - Git GUI tool - GIT için basit bir grafik arayüz - git-gui, GIT için basit bir grafik arayüz sunar. - app:gui - - git - gitk - tcltk - - - /usr/libexec/git-core/git-gui* - /usr/libexec/git-core/git-citool - /usr/share/git-gui - /usr/share/man/man1/git-gui.1* - /usr/share/man/man1/git-citool.1* - /usr/share/applications/git-gui.desktop - - - git-gui.desktop - - - - gitweb - Simple web interface to GIT repositories - GIT için Web arayüzü - interfaz web para GIT - gitweb, GIT için Web arayüzü sunar. - app:web - server.web - - git - - - /var/www/localhost - /etc/conf.d/gitweb - /etc/apache2/conf.d - /usr/share/man/man1/gitweb.1* - - - gitweb.confd - git.conf.httpd - - - - - 2022-05-07 - 2.36.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-23 - 2.33.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-13 - 2.33.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 2.32.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-20 - 2.25.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-18 - 2.23.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.16.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-20 - 2.16.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 2.12.0 - Version bump. - Alihan Öztürk - alihan@pisilnux.org - - - 2016-11-12 - 2.10.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-09 - 2.7.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-26 - 2.7.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ant - http://ant.apache.org - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:console - programming.build - Java-based build tool - Java tabanlı inşa aracı - Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. - Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir - Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. - http://archive.apache.org/dist/ant/source/apache-ant-1.10.9-src.tar.xz - - jdk8-openjdk - - programming/build/ant/pspec.xml - - - ant - - /etc - /usr/share/ - /usr/bin - - - ant.conf - ant.sh - ant.csh - - - - ant-docs - Documentation package for ant build system - - /usr/share/doc - - - - - 2021-03-10 - 1.10.9 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-06-04 - 1.9.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 1.9.14 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-09-22 - 1.9.14 - Rebuild jdk7-2.6.19. - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-29 - 1.9.14 - Rebuild jdk7-2.6.14. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-16 - 1.9.9 - Rebuild jdk7-2.6.14. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-16 - 1.9.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-28 - 1.9.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.9.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.9.6 + 2012-08-26 + 0.5.4.3 First release Osman Erkan osman.erkan@pisilinux.org @@ -232250,1936 +172935,4752 @@ to create header files and sources from protocol files. - luajit - http://luajit.org/ + xfdashboard + http://goodies.xfce.org/projects/applications/xfdashboard/start - Alihan Öztürk - alihan@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - MIT + GPLv3 app:gui - programming.build - Just-in-time compiler and drop-in replacement for Lua 5.1 - Lua için Just-in-Time derleyici - Just-in-time compiler and drop-in replacement for Lua 5.1 - LuaJIT, Lua için bir Just-in-Time derleyicidir. - http://luajit.org/download/LuaJIT-2.0.5.tar.gz + desktop.xfce.addon + GNOME shell like dashboard for Xfce + GNOME shell like dashboard for Xfce + Xfce için gösterge tablosu gibi GNOME kabuğu + Xfce için gösterge tablosu gibi GNOME kabuğu + xfdashboard + https://github.com/gmc-holle/xfdashboard/archive/0.9.90.tar.gz - gcc + intltool + valgrind + cogl-devel + gtk3-devel + cairo-devel + glib2-devel + pango-devel + garcon-devel + libX11-devel + xfconf-devel + clutter-devel + gettext-devel + xfce4-dev-tools + python3-devel + libwnck3-devel + gdk-pixbuf-devel + libXdamage-devel + libxfce4ui-devel + libXinerama-devel + libxfce4util-devel + libXcomposite-devel - programming/build/luajit/pspec.xml + desktop/xfce/addon/xfdashboard/pspec.xml - luajit + xfdashboard - libgcc + cogl + gtk3 + cairo + glib2 + pango + garcon + libX11 + xfconf + clutter + libwnck3 + gdk-pixbuf + libXdamage + libxfce4ui + libXinerama + libxfce4util + libXcomposite /usr/bin - /usr/share/doc + /etc /usr/lib - /usr/lib/lua - /usr/share/luajit-2.0.2 - /usr/share/lua /usr/share - /usr/share/man + /usr/share/locale + /usr/share/icons + /usr/share/doc - luajit-devel - Development files for luajit - luajit için geliştirme başlıkları + xfdashboard-devel + Development files for xfdashboard - luajit + xfdashboard + gtk3-devel + glib2-devel + garcon-devel + xfconf-devel + clutter-devel + libwnck3-devel + libxfce4ui-devel + libxfce4util-devel /usr/include - /usr/lib/pkgconfig/luajit.pc - - - - - 2021-05-18 - 2.0.5 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2020-01-26 - 2.0.5 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-10-13 - 2.0.5 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - gn - https://gn.googlesource.com/gn/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - programming.build - Meta-build system that generates build files for Ninja - Meta-build system that generates build files for Ninja - Ninja için derleme dosyaları oluşturan meta-build sistemi - Ninja için derleme dosyaları oluşturan meta-build sistemi - https://sourceforge.net/projects/pisilinux/files/source/gn-2018.12.01.tar.gz - - git - ninja - - programming/build/gn/pspec.xml - - - gn - - libgcc - - - /usr/bin - /usr/share/doc - - - - - 2018-12-01 - 2018.12.01 - First release - PisiLinux Community - admins@pisilinux.org - - - 2018-09-21 - 0.1468 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ccache - https://ccache.samba.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - programming.build - Fast C/C++ compiler cache - Hızlı C/C++ derleme önbelleği - Cache veloz de compilador - Cache de Compilation rapide - ccache is a compiler cache. It speeds up recompilation of C/C++ code by caching previous compiles and detecting when the same compile is being done. - ccache bir derleme önbelleğidir. Önceki derlemeleri önbelleğinde saklayıp, aynı derlemelerde bu önbelleği kullanarak C/C++ kodlarının yeniden derlenmelerini hızlandırır. - https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.xz - - zlib-devel - - programming/build/ccache/pspec.xml - - - ccache - - zlib - - - /usr/bin - /usr/lib/ccache/bin - /usr/share/doc - /usr/share/man + /usr/lib/pkgconfig - 2021-05-18 - 3.7.7 - Rebuild. + 2022-03-27 + 0.9.90 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-26 - 3.7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-06 - 3.7.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-09-12 - 3.4.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - llvm - http://www.llvm.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - NCSA - programming.build - The Low Level Virtual Machine - Düşük Seviye Sanal Makine (LLVM) - The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. - LLVM projesi, modüler ve tekrar tekrar kullanılabilir derleyici teknolojileri koleksiyonudur. Adının aksine geleneksel sanal makinelerden çok farklıdır; ancak sanal makineleri oluşturmak için faydalı kitaplıklar içerir. - https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.3/llvm-project-14.0.3.src.tar.xz - - ninja - zlib-devel - libxml2-devel - ncurses-devel - ocaml - libffi-devel - groff - swig - libedit-devel - cmake - python3-devel - llvm - llvm-clang-devel - lld - llvm-polly - - programming/build/llvm/pspec.xml - - - llvm - app:console - library - - llvm-libs - zlib - libgcc - ncurses - llvm-polly - - - /usr/bin - /usr/bin/llvm-config - /usr/include/llvm* - /usr/lib/llvm - /usr/lib - /etc/ld.so.conf.d - /etc/llvm - /usr/share/doc - /usr/share/vim - /usr/share/llvm/cmake - /usr/share/man - - - 51-llvm.conf - - - - llvm-libs - library - - zlib - libffi - libedit - libgcc - ncurses - libxml2 - llvm-polly - - - /usr/lib/libLLVM*.so - /usr/lib/libLLVM*.so.14* - /usr/lib/LLVMgold.* - /usr/lib/libLTO.* - /usr/lib/libRemarks.so* - /usr/lib/bfd-plugins/LLVMgold.so - /usr/share/licenses/llvm-libs/LICENSE - - - - lldb - Next generation, high-performance debugger - - llvm-libs - llvm-clang - libgcc - libedit - libxml2 - ncurses - python3 - llvm-polly - - - /usr/bin/argdumper - /usr/bin/lldb* - /usr/bin/liblldb* - /usr/lib/liblldb.so* - /usr/lib/liblldb* - /usr/lib/python2.7/site-packages/readline.so - /usr/lib/python3.9/site-packages/lldb/* - /usr/lib/liblldbIntelFeatures.so* - /usr/lib/liblldbPluginExpressionParserClang.a - /usr/lib/liblldbPluginObjCLanguage.a - - - - lldb-devel - Development headers lldb - - lldb - - - /usr/include/lldb/* - - - - lld - Linker from the LLVM project - - llvm-libs - libgcc - llvm-polly - - - /usr/bin/ld.lld - /usr/bin/ld64.lld - /usr/bin/lld - /usr/bin/lld-link - /usr/bin/wasm-ld - /usr/lib/liblldMachO2.so* - /usr/lib/liblldCOFF.* - /usr/lib/liblldCommon.* - /usr/lib/liblldCore.* - /usr/lib/liblldDriver.* - /usr/lib/liblldELF.* - /usr/lib/liblldMachO.* - /usr/lib/liblldMinGW.* - /usr/lib/liblldReaderWriter.* - /usr/lib/liblldWasm.* - /usr/lib/liblldYAML.* - /usr/lib/liblldMachO2.* - /usr/share/doc/lld - - - - lld-devel - Development headers lld - - lld - libgcc - - - /usr/include/lld/* - /usr/lib/cmake/lld/* - - - - llvm-clang-analyzer - A source code analysis framework - C ve Objective-C için kod analiz altyapısı - The Clang Static Analyzer consists of both a source code analysis framework and a standalone tool that finds bugs in C and Objective-C programs. - app:console - - llvm-clang - - - /usr/lib/clang-analyzer - /usr/bin/scan-* - /usr/share/scan* - /usr/share/opt-viewer - /usr/libexec/ccc-* - /usr/libexec/c++-* - /usr/share/man/man1/scan-build.1 - - - - compiler-rt - Various runtime libraries used by Clang - - libgcc - - - /usr/lib/clang/14.0.3/lib/linux/*.so - - - - llvm-unwind - LLVM unwinding library - - /usr/lib/libllvm-unwind* - /usr/lib/llvm-libunwind - - - - llvm-clang - A C language family front-end for LLVM - LLVM için C dili ailesi ön ucu - The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. - - llvm-libs - libxml2 - libgcc - llvm-polly - - - /usr/bin/diagtool - /usr/bin/pp-trace - /usr/bin/modularize - /usr/bin/find-all-symbols - /usr/bin/git-clang* - /usr/bin/clang* - /usr/bin/c-index-test - /usr/bin/tblgen - /usr/lib/libclang* - /usr/lib/clang/ - /usr/lib/libfindAllSymbols.so* - /usr/share/man/man1/clang.1 - /usr/lib/cmake/clang/Clang* - /usr/share/clang - - - - llvm-clang-32bit - A C language family front-end for LLVM - The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. - - /usr/lib32/libclang* - /usr/lib32/clang/ - /usr/lib32/libfindAllSymbols.so* - /usr/lib32/cmake/clang/Clang* - - - - llvm-clang-devel - Development headers for llvm-clang - llvm-clang için başlık dosyaları - - llvm-clang - - - /usr/include/clang - /usr/lib/clang/14.0.3/include - /usr/include/clang-c - /usr/include/clang-tidy - - - - llvm-mlir - MLIR is intended to be a hybrid IR which can support multiple different requirements in a unified infrastructure - - llvm-libs - libgcc - ncurses - llvm-polly - - - /usr/bin/mlir* - /usr/lib/libMLIR* - /usr/lib/libmlir* - /usr/include/mlir* - /usr/lib/cmake/mlir - - - - llvm-polly - High-level loop and data-locality optimizer and optimization infrastructure for LLVM - - libgcc - - - /usr/lib/LLVMPolly.so - /usr/lib/libPolly*.so* - /usr/include/polly - /usr/lib/cmake/polly - - - - llvm-32bit - 32-bit shared libraries for llvm - emul32 - emul32 - - zlib-32bit - libffi-32bit - libxml2-32bit - ncurses-32bit - - - llvm - llvm-clang-32bit - libgcc - libxml2-32bit - ncurses-32bit - zlib-32bit - libffi-32bit - - - /usr/bin/llvm-config-32 - /usr/lib32 - - - - - 2022-04-29 - 14.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-24 - 13.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-22 - 13.0.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-07-10 - 12.0.1 + 2021-10-02 + 0.9.5 Version bump - İdris Kalp - idriskalp@gmail.com - - - 2021-07-07 - 12.0.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-06-03 - 12.0.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-05-15 - 11.1.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-11-12 - 11.0.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-09-23 - 10.0.1 - Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-05-04 - 10.0.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-24 - 10.0.0 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-05-23 - 7.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-18 - 6.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-12-15 - 6.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-23 - 5.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-07-25 - 5.0.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-09-04 - 3.8.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-12 - 3.8.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.8.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-05-25 - 3.8.0 - Release bump - Serdar Soytetir - kaptan@pisilinux.org + 2021-09-23 + 0.9.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2016-04-06 - 3.8.0 + 2021-05-01 + 0.9.3 First release - Serdar Soytetir - kaptan@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - eboard - http://www.bergo.eng.br/eboard/ + exo + https://www.xfce.org/ - Pisi Linux Admins - admins@pisilinux.org + Ayhan Yalcinsoy + ayhanyalcinsoy@pisilinux.org GPLv2 - app:gui - game.board - A GTK+ chess board - Gtk tabanlı satranç arayüzü - eboard is a chess interface for Unix-like systems based on the GTK+ GUI toolkit. - eboard; unix sistemleri için, gtk+ araç takımı kullanılarak yazılmış bir satranç arayüzüdür. - eboard - mirrors://sourceforge/eboard/eboard-1.1.1.tar.bz2 + LGPLv2.1 + app:console + library + desktop.xfce.base + Xfce extension library + Xfce eklenti kitaplığı + exo is an extension library to Xfce, developed by os-cillation. While Xfce comes with quite a few libraries that are targeted at desktop development, exo is targeted at application development. + exo, os-cillation tarafından geliştirilen Xfce eklenti kitaplığıdır. Xfce masaüstü ortamını hedefleyen az kitaplıkla gelirken, exo uygulama geliştirmeyi hedefliyor. + https://archive.xfce.org/src/xfce/exo/4.17/exo-4.17.1.tar.bz2 - gtk2-devel - pango-devel + intltool + perl-URI + gtk3-devel glib2-devel - libpng-devel + libX11-devel + libxfce4ui-devel + libxfce4util-devel - - eboard-1.1.1-as-needed.patch - eboard-1.1.1-gcc44.patch - eboard-1.1.1-ovflfix.patch - eboard-1.1.1-libpng15.patch - - game/board/eboard/pspec.xml + desktop/xfce/base/exo/pspec.xml - eboard + exo - gtk2 - pango + atk + gtk3 glib2 - libgcc - libpng + cairo + gdk-pixbuf + libxfce4ui + libxfce4util + /etc/xdg/xfce4 /usr/bin - /usr/share/eboard - /usr/share/doc + /usr/lib + /usr/lib/xfce4 + /usr/share + /usr/share/locale /usr/share/man - /usr/share/applications - /usr/share/pixmaps + /usr/share/doc + + + + exo-devel + Development files for exo + exo geliştirme dosyaları + + exo + gtk2-devel + gtk3-devel + libxfce4util-devel + + + /usr/include + /usr/lib/pkgconfig + + + + exo-docs + Documentation for exo library + exo belgeleri + data:doc + + exo + + + /usr/share/gtk-doc - - eboard.desktop - + + 2021-12-08 + 4.17.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-17 + 4.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2018-09-14 - 1.1.1 - Rebuild New T. + 2021-03-28 + 4.16.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-05-05 - 1.1.1 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com - 2016-12-04 - 1.1.1 - First release - Stefan Gronewold - groni@pisilinux.org + 2020-11-19 + 4.15.2 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com - gweled - http://www.gweled.org + garcon + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2 + library + desktop.xfce.base + Menu library for Xfce + Xfce menü kitaplığı + garcon is an implementation of the freedesktop.org menu specification replacing the former Xfce menu library libxfce4menu. It is based on GLib/GIO only and aims at covering the entire specification except for legacy menus. + garcon, Xfce'nin eski menü kitaplığı olan libxfce4menu'nun freedesktop.org menü standartlarına uygun hale getirilmiş, Xfce'nin yeni menü kitaplığıdır. Sadece GLib/GIO kullanılarak yazılmıştır ve eski menüler hariç tüm özellikleri kapsamayı amaçlamaktadır. + https://archive.xfce.org/src/xfce/garcon/4.17/garcon-4.17.0.tar.bz2 + + python3 + intltool + python-six + gtk3-devel + glib2-devel + freetype-devel + libxfce4ui-devel + libxfce4util-devel + gobject-introspection-devel + + desktop/xfce/base/garcon/pspec.xml + + + garcon + + gtk3 + glib2 + gdk-pixbuf + libxfce4ui + libxfce4util + gobject-introspection + + + /etc + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + garcon-devel + garcon development files + garcon geliştirme dosyaları + + gobject-introspection-devel + gtk2-devel + gtk3-devel + glib2-devel + libxfce4ui-devel + garcon + + + /usr/include + /usr/lib/pkgconfig + + + + garcon-docs + garcon documentation files + garcon belgeleri + + garcon + + + /usr/share/gtk-doc + + + + + 2022-05-15 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-02 + 4.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 0.8.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-19 + 0.7.1 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + libxfce4ui + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2 + library + desktop.xfce.base + Xfce gui library + Xfce arayüz kitaplığı + libxfce4ui is a various GTK+ widgets for Xfce desktop environment. + libxfce4ui, Xfce masaüstü ortamı için çeşitli GTK+ eklentileri içeren kitaplıktır. + https://archive.xfce.org/src/xfce/libxfce4ui/4.17/libxfce4ui-4.17.6.tar.bz2 + + python3 + intltool + gtk3-devel + vala-devel + glib2-devel + libSM-devel + xfconf-devel + libxfce4util-devel + libX11-devel + libgtop-devel + desktop-file-utils + startup-notification-devel + gobject-introspection-devel + + desktop/xfce/base/libxfce4ui/pspec.xml + + + libxfce4ui + + atk + gtk3 + glib2 + libSM + libICE + libX11 + xfconf + libgtop + libepoxy + gdk-pixbuf + libxfce4util + startup-notification + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + libxfce4ui-devel + libxfce4ui geliştirme dosyaları + + libxfce4ui + gtk2-devel + gtk3-devel + xfconf-devel + libxfce4util-devel + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + 2022-04-03 + 4.17.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-17 + 4.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-27 + 4.17.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-10 + 4.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 4.17.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-18 + 4.15.3 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + libxfce4util + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.base + Xfce basic utility library + Xfce için basit yardımcı uygulama kitaplığı + Libxfce4util is a basic utility non-GUI functions for Xfce desktop environment. + libxfce4util, grafik arayüz fonksiyonlarını içermeyen, Xfce masaüstü yöneticisi için yazılmış basit bir uygulama kitaplığıdır. + https://archive.xfce.org/src/xfce/libxfce4util/4.17/libxfce4util-4.17.2.tar.bz2 + + python3 + gtk-doc + intltool + python-six + vala-devel + xdg-user-dirs + python3-pygobject3 + gobject-introspection-devel + + desktop/xfce/base/libxfce4util/pspec.xml + + + libxfce4util + + glib2 + + + /usr/sbin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + libxfce4util-devel + Libxfce4util development files + libxfce4util geliştirme dosyaları + library + data:doc + + glib2-devel + libxfce4util + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + 2022-03-17 + 4.17.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-21 + 4.17.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-19 + 4.15.4 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar + https://www.xfce.org/ Alper Tekinalp admins@pisilinux.org GPLv2 + LGPLv2.1 app:gui - game.board - A puzzle game similar to "Bejeweled" or "Diamond Mine" - "Bejeweled" veya "Diamond Mine" benzeri bir bulmaca oyunu - Gweled is a GTK+ version of a popular PalmOS/Windows/Java game called "Bejeweled", originally written by Sebastien Delestaing. The aim of the game is to make alignment of 3 or more gems, both vertically or horizontally by swapping adjacent gems. - Gweled, orijinal olarak Sebastien Delestaing tarafından yazılmış, "Bejeweled" olarak bilinen popüler PalmOS/Windows/Java oyununun GTK+ versiyonudur. Oyunun amacı 3 veya daha çok mücevheri yatay veya dikey olarak aynı hizaya getirmektir. - gweled - http://launchpad.net/gweled/trunk/0.9.1/+download/gweled-0.9.1.tar.gz + desktop.xfce.base + Xfce file manager + Thunar has been designed from the ground up to be fast and easy-to-use. Its user interface is clean and intuitive, and does not include any confusing or useless options. Thunar is fast and responsive with a good start up time and directory load time. Thunar is accessible using Assistive Technologies and is fully standarts compliant + https://archive.xfce.org/src/xfce/thunar/4.17/thunar-4.17.8.tar.bz2 - gtk2-devel + python3-devel intltool - icon-theme-hicolor - gdk-pixbuf-devel + atk-devel + exo-devel + gtk3-devel + dbus-devel glib2-devel - librsvg-devel - libmikmod-devel + pango-devel + cairo-devel + gconf-devel + libSM-devel + libICE-devel + libX11-devel + garcon-devel + xfconf-devel + libexif-devel + libpcre-devel + libpcre2-devel + libgudev-devel + libnotify-devel + gdk-pixbuf-devel + fontconfig-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + desktop-file-utils + libjpeg-turbo-devel + startup-notification-devel + gobject-introspection-devel - - gweled-0.9.1-fix-open.patch - translate-paused-string.patch - turkish.patch - gweled-librsvg-crash.patch - - game/board/gweled/pspec.xml + desktop/xfce/base/thunar/pspec.xml - gweled + thunar - librsvg - libmikmod + atk + exo + gtk3 + python3 + dbus glib2 - gtk2 + pango + cairo + libSM + libICE + libX11 + xfconf + libexif + libpcre + libgudev + libnotify gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + /etc /usr/bin - /usr/share/doc - /usr/share/locale + /usr/lib /usr/share - /var/state/gweled + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + thunar-devel + Thunar development files + library + + gtk3-devel + glib2-devel + thunar + + + /usr/include + /usr/lib/pkgconfig + + + + thunar-docs + Thunar reference documents + data:doc + + thunar + + + /usr/share/gtk-doc + + 2022-04-03 + 4.17.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-23 + 4.17.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 4.17.6 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-27 + 4.17.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 4.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-18 + 4.17.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-14 + 4.17.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-01-05 - 0.9.1 - Rebuild New Patch - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2021-03-28 + 4.17.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-09-14 - 0.9.1 - Rebuild New T. + 2021-01-15 + 4.16.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-05-05 + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-19 + 4.15.2 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + thunar-volman + https://docs.xfce.org/xfce/thunar/thunar-volman + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.base + A extension for the Xfce Thunar File Manager + Xfce dosya yöneticisi Thunar için bir eklenti + thunar-volman is an extension for the Thunar File Manager, which enables automatic management of removable drives and media. For example, if thunar-volman is installed and configured properly, and you plug in your digical camera, it will automatically spawn your preferred photo application and import the new pictures from your camera + thunar-volman çıkarılabilir sürücüler ve medyanın otomatik olarak yönetimini sağlayan, Xfce dosya yöneticisi Thunar için bir eklentidir.Örneğin, Thunar-Volman doğru şekilde kurulup yapılandırıldığında, sayısal kameranızdan resim almanızı sağlayacaktır. + https://archive.xfce.org/xfce/4.16/src/thunar-volman-4.16.0.tar.bz2 + + intltool + exo-devel + gtk3-devel + glib2-devel + xfconf-devel + thunar-devel + libgudev-devel + libnotify-devel + libxfce4ui-devel + libxfce4util-devel + + desktop/xfce/base/thunar-volman/pspec.xml + + + thunar-volman + + exo + gtk3 + glib2 + pango + xfconf + libgudev + libnotify + libxfce4ui + libxfce4util + + + /usr/bin + /usr/share/ + /usr/share/locale + /usr/share/doc + + + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-21 + 4.15.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + tumbler + https://docs.xfce.org/xfce/tumbler/start + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.base + A thumbnail service + Bir önizleme servisi + Tumbler is a thumbnail service for the filemanager of Xfce desktop environment. + Tumbler Xfce masaüstü ortamının dosya yöneticisi için bir önizleme servisidir. + https://archive.xfce.org/src/xfce/tumbler/4.17/tumbler-4.17.0.tar.bz2 + + intltool + curl-devel + dbus-devel + glib2-devel + libpng-devel + libgsf-devel + freetype-devel + libopenraw-devel + gdk-pixbuf-devel + poppler-glib-devel + libxfce4util-devel + libjpeg-turbo-devel + gst-plugins-base-devel + ffmpegthumbnailer-devel + + desktop/xfce/base/tumbler/pspec.xml + + + tumbler + + curl + glib2 + cairo + libpng + libgsf + freetype + gstreamer + libopenraw + gdk-pixbuf + poppler-glib + libxfce4util + libjpeg-turbo + gst-plugins-base + ffmpegthumbnailer + + + /etc/xdg/tumbler/tumbler.rc + /usr/lib + /usr/share/ + /usr/share/locale + /usr/share/doc + + + + tumbler-devel + Development files for tumbler + tumbler için geliştirme dosyaları + + tumbler + glib2-devel + gobject-introspection-devel + + + /usr/include + /usr/lib/pkgconfig + + + + tumbler-doc + + /usr/share/gtk-doc/html/tumbler + /usr/share/gtk-doc/html/tumbler/index.html + + + + + 2022-02-02 + 4.17.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-14 + 4.16.0 + Rebuild. + fury + uglyside@yandex.ru + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-22 + 0.3.0 + First release For Beta. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-appfinder + https://www.xfce.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.base + Xfce application finder + Xfce uygulama bulucu + Wyszukiwarka aplikacji dla środowiska Xfce + Xfce4-appfinder is a useful software that permits you to find every application in the system supporting desktop entry format + Xfce4-appfinder, kullanıcının sisteminde yüklü, masastünde doğrudan çalışabilen her uygulamayı bulmasını sağlayan, kullanışlı bir uygulama bulucudur. + Wyszukiwanie aplikacji dla środowiska graficznego Xfce4. Wyszukuje zainstalowane w systemie aplikacje. + https://archive.xfce.org/src/xfce/xfce4-appfinder/4.17/xfce4-appfinder-4.17.0.tar.bz2 + + intltool + gtk3-devel + glib2-devel + thunar-devel + garcon-devel + libXpm-devel + libxfce4ui-devel + + desktop/xfce/base/xfce4-appfinder/pspec.xml + + + xfce4-appfinder + + gtk3 + glib2 + xfconf + garcon + gdk-pixbuf + libxfce4ui + libxfce4util + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-09-23 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-02 + 4.16.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-22 + 4.15.1 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-dev-tools + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:console + desktop.xfce.base + Xfce developer tools + Xfce geliştirme araçları + Xfce4-dev-tools contains common tools required by Xfce developers and people that want to build Xfce from SVN. In addition, this package contains the Xfce developer's handbook. + Xfce4-dev-tools paketi, Xfce geliştiricileri ve SVN'den Xfce inşa edecek kullanıcılar için gerekli temel araçları içine alır. Buna ek olarak pakette Xfce geliştiricileri için el kitabı da yer almaktadır. + https://archive.xfce.org/src/xfce/xfce4-dev-tools/4.17/xfce4-dev-tools-4.17.0.tar.bz2 + + glib2-devel + + desktop/xfce/base/xfce4-dev-tools/pspec.xml + + + xfce4-dev-tools + + glib2 + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2021-07-26 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-18 + 4.15.0 + First Release For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-panel + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2.1 + library + app:gui + desktop.xfce.base + Xfce panel + Xfce paneli + Panel środowiska graficznego Xfce + The Xfce4 panel supports multiple panels, with many options for their position, appearance, transparency and behavior. There are many items available by default to full fit a panel, like application launchers with detachable menus, a graphical pager, a tasklist, a clock, a system tray, a show / hide desktop switcher, and even more. It offers an easy way to add items using a dialog, and to move items accross different panels + Xfce4 paneli, farklı pozisyon, görünüm ve davranış gibi ayarlara sahip birden fazla paneli destekleyebilmektedir. Uygulama başlatıcı tipinde ayrılabilir menüler, grafiksel sayfalayıcı, görev çubuğu, saat, sistem çekmecesi, masaüstünü gizleme / görüntüleme ve bir panelde olabilecek birçok şeyi içinde barındırır. Ayrıca, diyalog penceresi kullanarak kolayca panel öğesi eklemeye ve panelden panele öğe taşımaya izin verir. + Jest to panel dostarczany przez projekt środowiska graficznego Xfce4. Jeśli użytkownik chce posiadać wielofunkcyjny panel, który może obsługiwać aplety i tym podobne programy, to Xfce4 Panel może być wart wypróbowania. + https://archive.xfce.org/src/xfce/xfce4-panel/4.17/xfce4-panel-4.17.1.tar.bz2 + + gtk-doc + intltool + vala-devel + gtk3-devel + glib2-devel + cairo-devel + pango-devel + libSM-devel + docbook-xsl + libICE-devel + libX11-devel + libXpm-devel + python3-devel + gettext-devel + libwnck3-devel + freetype-devel + gdk-pixbuf-devel + fontconfig-devel + libdbusmenu-gtk3 + libdbusmenu-devel + icon-theme-hicolor + desktop-file-utils + startup-notification-devel + gobject-introspection-devel + exo-devel + garcon-devel + xfconf-devel + libxfce4ui-devel + libxfce4util-devel + + desktop/xfce/base/xfce4-panel/pspec.xml + + + xfce4-panel + + atk + exo + gtk3 + cairo + pango + glib2 + libX11 + garcon + xfconf + python3 + libXext + libwnck3 + gdk-pixbuf + libxfce4ui + libxfce4util + libdbusmenu-gtk3 + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + xfce4-panel-devel + Development files for Xfce4 Panel + Xfce paneli geliştirme dosyaları + Pliki nagłówkowe dla xfce4-panel + library + data:doc + + glib2-devel + gtk3-devel + libxfce4util-devel + xfce4-panel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + 2022-05-23 + 4.17.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-28 + 4.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 4.16.3 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-14 + 4.16.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-15 + 4.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-02 + 4.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-19 + 4.15.4 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-power-manager + https://docs.xfce.org/xfce/xfce4-power-manager/start + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.base + A power manager for the Xfce desktop + Xfce masaüstü için bir güç yöneticisi + Menedżer zasilania dla środowiska Xfce + This software is a power manager for the Xfce desktop, Xfce power manager manages the power sources on the computer and the devices that can be controlled to reduce their power consumption(such as LCD brightness level, monitor sleep, CPU frequency scaling). In addition, xfce4-power-manager provides a set of freedesktop-compliant DBus interfaces to inform other applications about current power level so that they can adjust their power consumption + Xfce güç yöneticisi, kendi güç tüketimini azaltmak için bilgisayar güç kaynakları ve kontrol edilebilir aygıtları yönetir.(LCD parlaklık seviyesi, monitör uyku, CPU frekansı ölçekleme gibi) + Ten menedżer zasilania dla środowiska Xfce4, pozwala użytkownikom laptopów tworzyć profile zasilania dla dwóch różnych trybów: "zasilanie z baterii" i "zasilanie z sieci", jednocześnie wciąż pozwalając użytkownikom zmieniać ustawienia DPMS i częstotliwość CPU. + https://archive.xfce.org/src/xfce/xfce4-power-manager/4.16/xfce4-power-manager-4.16.0.tar.bz2 + + intltool + gtk3-devel + dbus-devel + glib2-devel + libSM-devel + libICE-devel + libX11-devel + xfconf-devel + upower-devel + freetype-devel + libglade-devel + libXrandr-devel + libnotify-devel + ConsoleKit-devel + libxfce4ui-devel + xfce4-panel-devel + libxfce4util-devel + libXScrnSaver-devel + + desktop/xfce/base/xfce4-power-manager/pspec.xml + + + xfce4-power-manager + + atk + gtk3 + dbus + glib2 + cairo + pango + libSM + libX11 + libICE + xfconf + upower + libXext + harfbuzz + libnotify + libXrandr + gdk-pixbuf + libxfce4ui + xfce4-panel + libxfce4util + + + /etc/xdg + /usr/bin + /usr/sbin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-23 + 1.7.1 + First Release For Beta. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-screensaver + https://docs.xfce.org/apps/screensaver/start + + fury + uglyside@yandex.ru + + GPLv2 + LGPLv2 + LGPLv2.1 + app:utility + desktop.xfce.base + Xfce Screensaver. + xfce4-screensaver is a screen saver and locker that aims to have simple, sane, secure defaults and be well integrated with the desktop. + https://archive.xfce.org/src/apps/xfce4-screensaver/4.16/xfce4-screensaver-4.16.0.tar.bz2 + + xmlto + intltool + pam-devel + gtk3-devel + glib2-devel + libSM-devel + libICE-devel + libX11-devel + xfconf-devel + garcon-devel + libwnck3-devel + libglvnd-devel + dbus-glib-devel + libxklavier-devel + libXScrnSaver-devel + + desktop/xfce/base/xfce4-screensaver/pspec.xml + + + xfce4-screensaver + + pam + gtk3 + dbus + mesa + glib2 + pango + cairo + libX11 + xfconf + garcon + libXext + libwnck3 + libglvnd + dbus-glib + gdk-pixbuf + libxfce4ui + libxklavier + libXScrnSaver + + + /etc + /usr/bin + /usr/libexec + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-01-14 + 4.16.0 + Moved to base and version bump. + fury + uglyside@yandex.ru + + + 2020-12-24 + 0.1.11 + Ver. bump + fury + uglyside@yandex.ru + + + + + + xfce4-session + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + app:console + desktop.xfce.base + Xfce session manager + Xfce oturum yöneticisi + Menedżer sesji Xfce4 + The session manager allows the user to save sessions and restore them after login. It is capable of saving several different sessions. It comes with three splash screen engines. And at last it helps you to log out, reboot, and shutdown the system. + Xfce oturum yöneticisi, kullanıcıların oturumlarını kaydetmesine ve giriş yaptıktan sonra tekrar oturumu çağırmalarına izin verir. Birden fazla, farklı oturumları kaydetmede oldukça başarılıdır. Pakette üç tane örnek açılış teması var ve son olarak, sistemi kapatırken, yeniden başlatırken veya çıkarken kullanıcılara yardımcı olur. + Xfce4-session jest zgodny z "menedżerem sesji" X11 zaprojektowanym do użycia ze środowiskiem graficznym Xfce4. Podczas wylogowywania, menedżer sesji zapisuje wszystkie uruchomione aplikacje. Przy ponownym zalogowaniu, przywraca je z oknami na tych samych pozycjach. + https://archive.xfce.org/xfce/4.16/src/xfce4-session-4.16.0.tar.bz2 + + intltool + atk-devel + gtk3-devel + dbus-devel + glib2-devel + gconf-devel + pango-devel + cairo-devel + libSM-devel + xfconf-devel + libXpm-devel + libX11-devel + libICE-devel + polkit-devel + libwnck3-devel + xorg-app-devel + gdk-pixbuf-devel + fontconfig-devel + libxfce4ui-devel + libxfce4util-devel + + + mageia/0001-Export-XDG_CONFIG_HOME-and-XDG_CACHE_HOME.patch + mageia/xfce4-session-4.13.2-add-more-screen-lockers-to-xflock4.patch + mageia/xfce4-session-4.13.2-xinitrc.patch + + desktop/xfce/base/xfce4-session/pspec.xml + + + xfce4-session + + atk + gtk3 + dbus + glib2 + cairo + pango + libSM + libX11 + libICE + polkit + xfconf + libwnck3 + libxfce4ui + gdk-pixbuf + libxfce4util + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man + + + mageia/xfce4-lightdm.conf + xfce-polkit-gnome-authentication-agent-1.desktop + + + + + 2021-01-29 + 4.16.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-21 + 4.15.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-settings + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.base + Xfce settings plugins + Xfce ayar yöneticisi + Graficzna aplikacja do zarządzania ustawieniami Xfce + Xfce4-settings is a configuration manager for Xfce desktop environment + Xfce4-settings, Xfce masaüstü yöneticisi için yazılmış ayar yöneticisidir. + Xfce4-settings jest interfejsem menedżera ustawień Xfce4. Wywodzi się z kilku różnych komponentów do konfiguracji niezależnych od aplikacji, ustawień wewnątrz xfconf. + https://archive.xfce.org/src/xfce/xfce4-settings/4.16/xfce4-settings-4.16.2.tar.bz2 + + intltool + exo-devel + gtk3-devel + dbus-devel + libXi-devel + glib2-devel + cairo-devel + pango-devel + xfconf-devel + upower-devel + colord-devel + garcon-devel + libX11-devel + libXpm-devel + libwnck3-devel + libXrandr-devel + libnotify-devel + libxfce4ui-devel + fontconfig-devel + gdk-pixbuf-devel + libXcursor-devel + libcanberra-devel + libxklavier-devel + libxfce4util-devel + xorg-input-libinput-devel + + desktop/xfce/base/xfce4-settings/pspec.xml + + + xfce4-settings + + atk + exo + gtk3 + dbus + cairo + pango + libXi + glib2 + libX11 + garcon + upower + xfconf + upower + colord + libnotify + libXrandr + libxfce4ui + fontconfig + gdk-pixbuf + libXcursor + libxklavier + libxfce4util + network-manager-applet + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + System.Package + + + + + 2021-06-20 + 4.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-17 + 4.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-21 + 4.15.2 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfce4-terminal + https://docs.xfce.org/apps/terminal/start + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.base + Terminal Emulator for Xfce. + xfce4-terminal is a modern, lightweight, and low memory cost terminal emulator with tabs and multiple windows for the Xfce desktop environment. It offers full-customization for the key bindings, the aspect, the colors, and more + https://archive.xfce.org/src/apps/xfce4-terminal/1.0/xfce4-terminal-1.0.4.tar.bz2 + + intltool + vte-devel + gtk3-devel + gnutls-devel + libXpm-devel + utempter-devel + libpcre2-devel + libxfce4ui-devel + + desktop/xfce/base/xfce4-terminal/pspec.xml + + + xfce4-terminal + + vte + gtk3 + cairo + glib2 + pango + libX11 + xfconf + libxfce4ui + gdk-pixbuf + libxfce4util + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-05-22 + 1.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-13 + 1.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-28 + 1.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-03 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-29 0.9.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-16 + 0.9.0 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-24 + 0.8.10 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-22 + 0.8.9.2 + First releasu For Beta. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfconf + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.base + Xfce multi channel setting library + Xfce çoklu ayar kitaplığı + Prosty system przechowywania i odpytywania konfiguracji + Xfconf is a hirerchical (tree-like) configuration system for the Xfce graphical desktop environment. + xfconf, Xfce masaüstü yöneticisi için yazılmış, ağaç tipi hiyerarşik yapılandırma sistemidir. + Xfconf jest prostym systemem przechowywania i odpytywania konfiguracji. + https://archive.xfce.org/xfce/4.16/src/xfconf-4.16.0.tar.bz2 + + python3 + intltool + vala-devel + python-six + glib2-devel + libxfce4util-devel + gobject-introspection-devel + + desktop/xfce/base/xfconf/pspec.xml + + + xfconf + + glib2 + libxfce4util + gsettings-desktop-schemas + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + xfconf-devel + Xfconf development files + xfconf geliştirme dosyaları + Pliki nagłówkowe xfconf + library + data:doc + + glib2-devel + xfconf + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + 2022-05-28 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-17 + 4.15.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfdesktop + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + app:gui + desktop.xfce.base + Xfce desktop manager + Xfce masaüstü yöneticisi + Tło pulpitu Xfce, ikony i menedżer menu administratora + The desktop manager sets the background image, provides a right-click menu to launch applications and can optionally show files (including application launchers) or iconified windows. It includes gradient support for background color, saturation support for background image, real multiscreen and xinerama support, and it provides a desktop menu editor + Xfce masaüstü yöneticisi arkaplan resmini belirler, uygulamaları başlatmak, simge durumuna küçültülmüş pencereleri veya dosya seçeneklerini göstermek için sağ tık menüsünü hazırlar. Arkaplan rengi için gradyan desteği, arkaplan resmi için doygunluk desteği, gerçek çoklu ekran ve xinerama desteği içerir. Ayrıca, masaüstü menü düzenleme aracını da bünyesinde barındırır. + xfdesktop4 ustawia obraz tła pulpitu, udostępnia menu pod prawym przyciskiem myszy do uruchamiania aplikacji oraz, opcjonalnie, może pokazywać pliki lub zminimalizowane okna. + https://archive.xfce.org/xfce/4.16/src/xfdesktop-4.16.0.tar.bz2 + + intltool + exo-devel + dbus-devel + gtk3-devel + pango-devel + cairo-devel + glib2-devel + libSM-devel + thunar-devel + garcon-devel + xfconf-devel + tumbler-devel + libX11-devel + libglade-devel + libwnck3-devel + libnotify-devel + libxfce4ui-devel + gdk-pixbuf-devel + xfce4-panel-devel + libxfce4util-devel + + desktop/xfce/base/xfdesktop/pspec.xml + + + xfdesktop + + exo + gtk3 + dbus + glib2 + pango + cairo + thunar + garcon + xfconf + libX11 + libwnck3 + libnotify + gdk-pixbuf + libxfce4ui + libxfce4util + + + /usr/bin + /usr/share + /etc + /usr/share/locale + /usr/share/man + /usr/share/doc + + + Crocus-Ancyrensis.jpg + Crocus-Ancyrensis.png + 2560x1440.png + xfce4-desktop.xml + xfce4-session.xml + + + + + 2021-07-27 + 4.16.0 + Edited default configuration + Berk Çakar + berk2238@hotmail.com + + + 2021-05-07 + 4.16.0 + Added crocus-ancyrensis photos + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-22 + 4.15.0 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfwm4 + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + desktop.xfce.base + Xfce window manager. + Xfce pencere yöneticisi + Menedżer okien dla projektu Xfce + The Xfce4 window manager manages the placement of application windows on the screen, provides beautiful window decorations, manages workspaces or virtual desktops, and natively supports multiscreen mode + Xfce4 pencere yöneticisi, uygulama pencerelerinin ekrana yerleştirmeyi sağlar, pencerelerin güzel görünmesini sağlar, çalışma alanlarını ve sanal masaüstlerini yönetir ve doğal olarak çoklu ekran kipini destekler. + Pakiet zawiera xfwm4, który jest menedżerem okiem do Xfce4. Jest on zaprojektowany do uruchamiania z resztą środowiska Xfce4. + https://archive.xfce.org/src/xfce/xfwm4/4.16/xfwm4-4.16.1.tar.bz2 + + intltool + gtk3-devel + libSM-devel + libX11-devel + libXpm-devel + libbsd-devel + libXres-devel + libwnck3-devel + libxfce4ui-devel + libXpresent-devel + + desktop/xfce/base/xfwm4/pspec.xml + + + xfwm4 + + gtk3 + glib2 + cairo + pango + libXi + xfconf + libX11 + libXres + libXext + libepoxy + libwnck3 + libXrandr + libXfixes + libxfce4ui + gdk-pixbuf + libXrender + libXdamage + libXpresent + libXinerama + libxfce4util + libXcomposite + startup-notification + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-01-15 + 4.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 4.16.0 + New release. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-11-21 + 4.15.1 + Rebuild.For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + gtk-style-xfce + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + desktop.xfce.lookandfeel + GTK+ Xfce theme engine + GTK+ Xfce tema motoru + Gtk2-engines-xfce is a GTK+ engine for Xfce desktop environment. + Gtk2-engines-xfce, Xfce masaüstü yöneticisi için hazırlanmış GTK+ tema motorudur. + http://archive.xfce.org/xfce/4.12/src/gtk-xfce-engine-2.10.0.tar.bz2 + + xfce4-dev-tools + gtk2-devel + + desktop/xfce/lookandfeel/gtk-style-xfce/pspec.xml + + + gtk-style-xfce + + atk + gtk2 + gtk3 + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib + /usr/share/themes + /usr/share/doc + + + + + 2020-11-21 + 2.10.0 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + icon-theme-xfce4 + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + data + desktop.xfce.lookandfeel + Xfce icon theme + Xfce simge teması + Icon theme Rodent for the Xfce Desktop Environment. + Bu paket, Xfce masaüstü ortamı için Rodent simge temasını içerir. + http://archive.xfce.org/src/art/xfce4-icon-theme/4.4/xfce4-icon-theme-4.4.3.tar.bz2 + + intltool + icon-theme-hicolor + + desktop/xfce/lookandfeel/icon-theme-xfce4/pspec.xml + + + icon-theme-xfce4 + + icon-theme-hicolor + + + /usr/lib + /usr/lib/pkgconfig + /usr/share + /usr/share/doc + + + + + 2020-11-23 + 4.4.3 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + xfwm4-themes + https://www.xfce.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + data + desktop.xfce.lookandfeel + Xfce window manager themes + Xfwm pencere yöneticisi temaları + Xfce4-themes is a set of additional themes for the Xfwm window manager. + Bu paket, Xfce masaüstü yönetici pencereleri için ek temalar içerir. + http://archive.xfce.org/src/art/xfwm4-themes/4.10/xfwm4-themes-4.10.0.tar.bz2 + desktop/xfce/lookandfeel/xfwm4-themes/pspec.xml + + + xfwm4-themes + + xfwm4 + + + /usr/share + /usr/share/doc + + + + + 2020-11-21 + 4.10.0 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + bluefish + http://bluefish.openoffice.nl/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + editor + A powerful editor for experienced web designers and programmers + Deneyimli web tasarımcıları ve programcıları için güçlü bir düzenleyici + Bluefish is a powerful editor for experienced web designers and programmers. Bluefish supports many programming and markup languages, but it focuses on editing dynamic and interactive websites. + Bluefish web sayfası tasarım ve hazırlanmasında kullanılan güçlü bir düzenleyicidir. + bluefish + http://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.11.tar.bz2 + + python-devel + intltool + gtk3-devel + glib2-devel + enchant-devel + cairo-devel + libxml2-devel + shared-mime-info + gdk-pixbuf-devel + + editor/bluefish/pspec.xml + + + bluefish + + gtk3 + pango + enchant + cairo + gdk-pixbuf + glib2 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/bluefish + /usr/share/doc/bluefish + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/mime + /usr/share/pixmaps + /usr/share/appdata + /usr/share/xml/bluefish + + + System.Package + + + + + 2020-02-09 + 2.2.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-20 + 2.2.10 + Fix deps. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-29 + 2.2.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-08 + 2.2.10 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-12-12 + 2.2.9 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2014-02-11 + 2.2.5 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-03-05 + 2.2.4 + Version bump + Ertan Güven + ertan@pisilinux.org + + + 2013-01-10 + 2.2.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + cutemarked + http://cloose.github.io/CuteMarkEd + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + app:gui + editor + Qt Markdown Editor + Qt Markdown Editor + A Qt-based, free and open source markdown editor with live HTML preview, math expressions, code syntax highlighting and syntax highlighting of markdown document. + A Qt-based, free and open source markdown editor with live HTML preview, math expressions, code syntax highlighting and syntax highlighting of markdown document. + https://github.com/cloose/CuteMarkEd/archive/v0.11.3.tar.gz + + qt5-base-devel + qt5-webkit-devel + hunspell-devel + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + discount-devel + + + cutemarked-0.11.3-bgcolor.patch + cutemarked-0.11.3-qaction-include.patch + + editor/cutemarked/pspec.xml + + + cutemarked + + qt5-base + qt5-webkit + hunspell + libgcc + discount + + + /usr/bin + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2020-02-09 + 0.11.3 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 0.11.3 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-08 + 0.11.3 Rebuild with new toolchain Mustafa Cinasal muscnsl@gmail.com - 2016-12-04 - 0.9.1 + 2016-07-18 + 0.11.3 First release - Stefan Gronewold + Stefan Gronewold (groni) groni@pisilinux.org - gnuchess-book - http://www.gnu.org/software/chess/chess.html + discount + https://github.com/Orc/discount + + Stefan Gronewold (groni) + groni@pisilinux.org + + BSD + app:console + editor.discount + A Markdown implementation written in C + A Markdown implementation written in C + implementation of the Markdown markup language in C + implementation of the Markdown markup language in C + http://download.openpkg.org/components/cache/discount/discount-2.2.6.tar.bz2 + editor/discount/discount/pspec.xml + + + discount + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + discount-devel + Development files for discount + + discount + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-08 + 2.2.6 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 2.2.4 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-08 + 2.2.1 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-11-06 + 2.2.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + emacs + https://www.gnu.org/software/emacs + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:gui + app:console + editor.emacs + An extensible console-mode editor + Genişletilebilir bir metin düzenleyici + Emacs is the extensible, customizable, self-documenting real-time console-mode editor. It has many features to increase productivity when programming. + Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. + emacs + ftp://ftp.gnu.org/gnu/emacs/emacs-26.3.tar.xz + + acl-devel + gtk2-devel + gtk3-devel + alsa-lib-devel + fontconfig-devel + giflib-devel + gpm + libjpeg-turbo-devel + libICE-devel + libSM-devel + libXft-devel + libxml2-devel + libXpm-devel + libXrender-devel + libpng-devel + librsvg-devel + tiff-devel + gnutls-devel + imagemagick-devel + lcms2-devel + + editor/emacs/emacs/pspec.xml + + + emacs + + acl + gpm + tiff + gtk2 + zlib + glib2 + libX11 + libpng + ncurses + freetype + libSM + libXft + libxml2 + libICE + giflib + libXpm + gnutls + librsvg + alsa-lib + gdk-pixbuf + fontconfig + libXrender + imagemagick + libjpeg-turbo + libXfixes + libxcb + dbus + gtk3 + cairo + pango + lcms2 + libXext + + + /etc + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/info + /usr/lib/systemd + /usr/share/emacs + /usr/share/icons + /var/games/emacs + /usr/share/pixmaps + /usr/share/appdata + /usr/share/metainfo + /usr/share/applications + /usr/libexec/emacs + /usr/include + + + System.PackageHandler + + + site-start.el + pisi-spec.rnc + 80-nxml-mode.el + emacs.desktop + + + + + 2020-02-09 + 26.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 26.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 26.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-10 + 25.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 24.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 24.5 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + emacs-color-theme + http://www.emacswiki.org/cgi-bin/wiki?ColorTheme PisiLinux Community admins@pisilinux.org GPLv2 data - game.board - Opening book for GNU Chess - GNU Chess için açılış kitabı - Contains opening book (set of movesets to be played at the beginning of the game) for GNU Chess. - GNU Chess oyununun açılış kitabını (sıralanmış açılış hamleleri kümesi) içerir. - mirrors://gnu/chess/book_1.02.pgn.gz - - gnuchess - - game/board/gnuchess-book/pspec.xml + editor.emacs + Emacs-Lisp color theme package + Emacs-List renk paketi + Colortheme is an Emacs-Lisp package with more than 50 color themes for your use. + Colortheme 50'den fazla renk temasını biraraya getiren bir Emacs-Lisp paketidir. + http://download.savannah.nongnu.org/releases/color-theme/color-theme-6.6.0.tar.gz + editor/emacs/emacs-color-theme/pspec.xml - gnuchess-book + emacs-color-theme - gnuchess + emacs - /usr/share/games/gnuchess - - - - - 2018-09-14 - 1.02 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-05 - 1.01 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-12-04 - 1.01 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - gnuchess - http://www.gnu.org/software/chess/chess.html - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:console - game.board - Console based chess interface - Konsol tabanlı bir satranç programı - GNU Chess lets most modern computers play a full game of chess. It has a plain terminal interface but supports visual interfaces such as X-Windows xboard. - GNU Chess, konsolda oynanan bir satranç oyunudur. XBoard gibi grafik arayüzleri de destekler. - mirrors://gnu/chess/gnuchess-6.2.9.tar.gz - - readline-devel - - game/board/gnuchess/pspec.xml - - - gnuchess - - readline - - - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/games - /usr/share/gnuchess - /usr/share/man/man1 - - - - - 2022-04-03 - 6.2.9 - Version Bump. - Ercan Ersoy - ercanersoy@ercanersoy.net - - - 2018-09-14 - 6.2.5 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-05 - 6.2.4 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-12-04 - 6.2.4 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - alienarena - http://red.planetarena.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - COR-Entertainment-LLC - app:gui - game.fps - A standalone 3D first person shooter game - 3 Boyutlu ilkgözden nişancılık oyunu - Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III. - Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur. - alienarena - http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz - - libjpeg-turbo-devel - libXxf86dga-devel - libXxf86vm-devel - libX11-devel - mesa-devel - openal-devel - ode-devel - curl-devel - freetype-devel - libvorbis-devel - - - gcc7.patch - alienarena-20130827-format.patch - use_home_dir.patch - - game/fps/alienarena/pspec.xml - - - alienarena - - libjpeg-turbo - libXxf86vm - curl - zlib - libX11 - libvorbis - libgcc - freetype - - - /usr/bin - /usr/lib - /usr/share /usr/share/doc + /etc/emacs/site-lisp + /usr/share/emacs/site-lisp/color-theme - alienarena.png - alienarena.desktop + 80-color-theme.el - - - 2018-09-14 - 7.66 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-05 - 7.66 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2015-11-11 - 7.66 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - 0ad - https://play0ad.com/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - LGPLv2 - CCPL - MIT - app:gui - game.strategy - Cross-platform, 3D and historically-based real-time strategy game - Tarihsel, 3D gerçek zamanlı strateji oyunu - Cross-platform, 3D and historically-based real-time strategy game.As the military leader of an ancient civilisation, - you must gather the resources you need to raise a military force capable of dominating your enemies. - Eski bir uygarlığın askeri lideri olarak,gereken kaynakları toplayıp düşmanlarınıza hükmedecek askeri güce sahip olmalı ve galip gelmelisiniz - 0ad - http://releases.wildfiregames.com/0ad-0.0.23b-alpha-unix-build.tar.xz - http://releases.wildfiregames.com/0ad-0.0.23b-alpha-unix-data.tar.xz - - zip - nasm - cmake - binutils - curl-devel - zlib-devel - nspr-devel - tiff-devel - mesa-devel - enet-devel - wxGTK-devel - libSM-devel - icu4c-devel - gloox-devel - boost-devel - openal-devel - wxBase-devel - python-devel - libogg-devel - libpng-devel - libsdl2-devel - libxml2-devel - wxGTK2.8-devel - mesa-glu-devel - miniupnpc-devel - libvorbis-devel - libXcursor-devel - subversion-devel - libsodium-devel - python-setuptools - spidermonkey-devel - libjpeg-turbo-devel - - - fix_permission.patch - - game/strategy/0ad/pspec.xml - - - 0ad - - tiff - enet - curl - nspr - mesa - icu4c - zlib - wxGTK - gloox - boost - libpng - libgcc - libX11 - openal - wxBase - libsdl2 - libxml2 - libsodium - miniupnpc - libvorbis - libXcursor - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/0ad - /usr/share/pixmaps - /usr/share/applications - /usr/share/doc/0ad - /usr/share/man/man6 - - - 0ad - 0ad.desktop - 0ad.6 - 0ad.png - - - - - 2019-10-30 - 0.0.23b - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - hex-a-hop - http://hexahop.sourceforge.net/downloads.html - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - game.puzzle - Hexagonal puzzle game - Altıgenler içeren bulmaca oyunu - Hex-a-hop is a puzzle game based on hexagonal tiles. There is no time limit and no real-time elements. The objective is simply to destroy all the green hexagonal tiles on each of the 100 levels. As you progress through the game, more types of tiles are introduced, which make things more difficult and interesting. - Hex-a-hop altıgen döşemeler üzerinde oynanan bir bulmaca oyunudur. Zaman sınırı ve gerçek zamanlı öğe yoktur. Amaç 100 bölümün her birindeki yeşil döşemeleri yoketmektir. Oyunda ilerledikçe yeni döşeme türleri çıkar ve işler daha zor ve ilginç hale gelir. - hex-a-hop - mirrors://sourceforge/hexahop/hex-a-hop/1.1.0/hex-a-hop-1.1.0.tar.gz - - libsdl-devel - sdl-mixer-devel - sdl-ttf-devel - - game/puzzle/hex-a-hop/pspec.xml - - - hex-a-hop - - libgcc - libsdl - sdl-mixer - sdl-ttf - - - /usr/bin - /usr/share/applications - /usr/share/hex-a-hop - /usr/share/pixmaps - /usr/share/doc/hex-a-hop - - - hex-a-hop.desktop - hex-a-hop.png - - - - - 2018-09-14 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-11 - 1.1.0 - Rebuild and testing - Stefan Gronewold - groni@pisilinux.org - - - 2014-02-17 - 1.1.0 - Rebuild - Kamil Atlı - suvarice@gmail.com - - - 2011-01-11 - 1.1.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - tetzle - http://gottcode.org/tetzle/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv3 - app:gui - game.puzzle - Tetzle is a jigsaw puzzle game - Tetzle is a jigsaw puzzle game - It uses tetrominoes for the pieces. Any image can be imported and used to create puzzles with a wide range of sizes. Games are saved automatically, and you can select between currently in progress games. - It uses tetrominoes for the pieces. Any image can be imported and used to create puzzles with a wide range of sizes. Games are saved automatically, and you can select between currently in progress games. - https://gottcode.org/tetzle/tetzle-2.1.3-src.tar.bz2 - - qt5-base-devel - qt5-linguist - - game/puzzle/tetzle/pspec.xml - - - tetzle - - qt5-base - libgcc - - - /usr/bin - /usr/share/icons/hicolor - /usr/share/applications - /usr/share - /usr/share/pixmaps - /usr/share/doc - - - - - 2018-09-14 - 2.1.3 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-04 - 2.1.2 - First release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - neverball - http://icculus.org/neverball/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - game.puzzle - 3D roll-the-ball game - 3B top yuvarlama oyunu - Neverball is a 3D puzzle and action game in which you roll a ball by tilting the table to get the ball to a destination location. - Neverball masayı hareket ettirerek topun hareketlerinin yönetildiği 3B zeka ve beceri oyunudur. - http://neverball.org/neverball-1.6.0.tar.gz - - libsdl2-devel - sdl2-ttf-devel - libvorbis-devel - mesa-devel - physfs-devel - libjpeg-turbo-devel - libpng-devel - - game/puzzle/neverball/pspec.xml - - - neverball - - libsdl2 - sdl2-ttf - libvorbis - mesa - physfs - libjpeg-turbo - libpng - - - /usr/bin - /usr/share/applications - /usr/share/doc - /usr/share/neverball - /usr/share/pixmaps - /usr/share/man - /usr/share/locale - - - neverball.desktop - neverputt.desktop - - - - - 2018-09-14 - 1.6.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-25 - 1.6.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - gmult - https://launchpad.net/gmult - - Pisi Linux Admins - admins@pisilinux.org - - GPLv3 - app:gui - game.puzzle - Multiplication Puzzle - Çarpma Bulmacası - Multiplication Puzzle is a simple GTK+ 2 game that emulates the multiplication game found in Emacs. Basically, a multiplication problem is shown with all digits replaced by letters. Your job is to guess which letter represents which number. - Çarpma Bulmacası, Emacs'teki çarpma oyununun benzeri basit bir GTK+ 2 oyunudur. Tüm basamakların harflerle değiştirildiği bir çarpma problemi gösteriliyor. Sizin işiniz de, hangi harfe hangi rakamın karşılık geldiğini tahmin etmek. - gmult - https://launchpad.net/gmult/trunk/9.0/+download/gmult-9.0.tar.xz - - meson - atk-devel - intltool - vala-devel - gtk3-devel - pango-devel - glib2-devel - gettext-devel - glib2-devel - gdk-pixbuf-devel - desktop-file-utils - appstream-glib-devel - - game/puzzle/gmult/pspec.xml - - - gmult - - atk - gtk3 - cairo - pango - glib2 - gdk-pixbuf - - - /usr/bin - /usr/share/applications - /usr/share/doc/gmult - /usr/share/metainfo - /usr/share/dbus-1 - /usr/share/icons - /usr/share/locale - - - 2018-09-14 - 9.0 - Version Bump + 2020-02-09 + 6.6.0 + Rebuild with new toolchain Mustafa Cinasal muscnsl@gmail.com - 2018-05-11 - 8.0 - rebuild and testing - Stefan Gronewold - groni@pisilinux.org + 2019-02-01 + 6.6.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com - 2014-02-23 - 8.0 - rebuild - Osman Erkan - osman.erkan@pisilinux.org + 2017-05-10 + 6.6.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com - 2013-04-27 - 8.0 - V.bump - Osman Erkan - osman.erkan@pisilinux.org + 2016-06-09 + 6.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2010-04-28 - 7.3 + 2015-12-24 + 6.6.0 First release - Doruk Fişek - dfisek@fisek.com.tr + Ilker Manap + ilkermanap@gmail.com - lmarbles - http://lgames.sourceforge.net/index.php?project=LMarbles + emacs-mmm-mode + http://mmm-mode.sourceforge.net/ - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - game.puzzle - Marble puzzle game - Bilye oyunu - Puzzle game inspired by Atomix and written using the SDL library. - LMarbles, Atomix oyunundan yola çıkılarak hazırlanmış bir oyundur. Bilyeleri istenen yerlere yerleştirerek bulmacaları çözmeniz gerekir. - lmarbles - mirrors://sourceforge/lgames/lmarbles-1.0.8.tar.gz + data + editor.emacs + Multiple Major Mode module for Emacs + Emacs Çoklu Ana Kip eklentisi + MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer. + MMM (Multiple Major Mode), Emacs uygulamasının bir tamponda aynı anda birden fazla ana kip kullanılmasına imkân veren bir eklentidir. + mirrors://sourceforge/mmm-mode/mmm-mode-0.5.4.tar.gz - libsdl-devel - sdl-mixer-devel + emacs + gtk2-devel - game/puzzle/lmarbles/pspec.xml + editor/emacs/emacs-mmm-mode/pspec.xml - lmarbles + emacs-mmm-mode - libsdl - sdl-mixer + emacs - /usr/bin - /usr/share/applications - /usr/share/lmarbles - /usr/share/pixmaps - /usr/share/man - /usr/share/doc/lmarbles + /etc + /usr/share/doc + /usr/share/info + /usr/share/emacs - lmarbles.desktop - lmarbles.png + 80-mmm-mode.el - - 2018-09-14 - 1.0.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-11 - 1.0.8 - Rebuild and testing. - Stefan Gronewold - groni@pisilinux.org - - - 2014-03-09 - 1.0.8 + + 2020-02-09 + 0.5.4 Rebuild. - Kamil Atlı - suvarice@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - - 2010-01-17 - 1.0.8 - First release - Doruk Fişek - dfisek@fisek.com.tr - - - - - - plib - http://plib.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - game.misc - Plib game library - Oyun kütüphanesi - Librairie multimédia et 3D principalement utilisée par les jeux. - Multimedia and 3D library used mostly by games. - Genellikle oyunlar tarafından kullanılan multimedya ve 3B kütüphanesi - Librería multimedia y 3D usado principalmente en juegos - http://plib.sourceforge.net/dist/plib-1.8.5.tar.gz - - mesa-devel - libXi-devel - libSM-devel - libXmu-devel - libICE-devel - libXext-devel - - - 02_build_shared_libs.diff - 03_remove_pthread_link.diff - - game/misc/plib/pspec.xml - - - plib - - mesa - libX11 - libgcc - - - /usr/lib - /usr/share/doc - - - - plib-devel - Development files for plib - plib için geliştirme dosyaları - - plib - - - /usr/include - - - - - 2017-01-20 - 1.8.5 - Version bump. - Ali Algul - aligulle3801@gmail.com - - - - - - ode - http://www.ode.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - game.misc - High performance library for simulating rigid body dynamics - Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık - ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej - SDK (kit de développement) du moteur Open Dynamics. - ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. - ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar. - Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń. - https://bitbucket.org/odedevs/ode/downloads/ode-0.15.2.tar.gz - - libgcc - - game/misc/ode/pspec.xml - - - ode - - libgcc - - - /usr/lib - /usr/share/doc - - - - ode-devel - Development files for ode - ode için geliştirme dosyaları - Pliki nagłówkowe ode - - ode - - - /usr/bin/ode-config - /usr/include - /usr/lib/pkgconfig - - - - 2018-09-16 - 0.15.2 - Rebuild New T. + 2019-10-26 + 0.5.4 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2018-02-16 - 0.15.2 + 2019-02-01 + 0.5.4 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-10 + 0.5.4 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-02 + 0.5.4 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + emacs-php-mode + http://php-mode.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + editor.emacs + PHP mode for Emacs + Emacs için PHP kipi + php-mode is an add-on for Emacs to help work with PHP files more efficiently. + php-mode, kullanıcının PHP dosyalarıyla daha hızlı çalışabilmesi için bir eklentidir. + https://github.com/ejmr/php-mode/archive/v1.22.0.tar.gz + + emacs + + editor/emacs/emacs-php-mode/pspec.xml + + + emacs-php-mode + + emacs + + + /etc + /usr/share/emacs + + + 80-php-mode.el + + + + + 2020-02-09 + 1.22.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 1.22.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 1.18.2 Version bump Mustafa Cinasal muscnsl@gmail.com - 2017-03-09 - 0.14 - Update. - Alihan Öztürk - alihan@pisilinux.org + 2017-05-10 + 1.18.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com - 2017-03-09 - 0.13 - Rebuild for new toolchain. - Stefan Gronewold (groni) - groni@pisilinux.org + 2016-06-10 + 1.17.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2015-10-26 - 0.13 + 2016-04-02 + 1.17.0 First release - Stefan Gronewold (groni) - groni@pisilinux.org + Ilker Manap + ilkermanap@gmail.com - sfml - http://www.sfml-dev.org + emacs-python + http://python-mode.sourceforge.net/ - Ali Cengiz Kurt - alicengizkurt@gmail.com + PisiLinux Community + admins@pisilinux.org - zlib + GPLv2 library - multimedia.misc - A simple, fast, cross-platform, and object-oriented multimedia API - SFML provides a simple interface to the various components of your PC, to ease the development of games and multimedia applications. It is composed of five modules: system, window, graphics, audio and network. - https://github.com/SFML/SFML/archive/2.5.1.tar.gz - - cmake - doxygen - flac-devel - mesa-devel - glew-devel - eudev-devel - libX11-devel - openal-devel - libogg-devel - freetype-devel - libvorbis-devel - libXrandr-devel - - game/misc/sfml/pspec.xml + editor.emacs + Emacs major mode for editing Python source code + Python kaynak kodlarını düzenlemek için emacs kipi + emacs-python makes a number of editing and debugging features available to Python programmers who use GNU Emacs or XEmacs. + Python programcıları için birçok kod düzenleme ve hata ayıklama özelliği sağlar. + https://launchpad.net/python-mode/trunk/6.2.3/+download/python-mode.el-6.2.3.tar.gz + editor/emacs/emacs-python/pspec.xml - sfml - A simple, fast, cross-platform, and object-oriented multimedia API + emacs-python - flac - eudev - libX11 - libgcc - libogg - openal - freetype - libglvnd - libvorbis - libXrandr + pymacs + emacs - /usr/lib/libsfml* - /usr/share/SFML - /usr/share/licenses/sfml - - - - sfml-devel - Development files for sfml - - flac-devel - openal-devel - libogg-devel - freetype-devel - libvorbis-devel - sfml - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake/SFML + /etc/emacs + /usr/share/emacs + + 80-python.el + + + 2020-02-09 + 6.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-05 + 6.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-09 + 6.2.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 6.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + - 2022-01-06 - 2.5.1 - First Release - Ali Cengiz Kurt - alicengizkurt@gmail.com + 2015-12-05 + 6.2.1 + First release + Ilker Manap + ilkermanap@gmail.com - gcompris-qt - https://gcompris.net/ + pymacs + https://github.com/dgentry/Pymacs - Berk Çakar - berk2238@hotmail.com + PisiLinux Community + admins@pisilinux.org - AGPLv3 - game.misc - Educational software suite comprising of numerous activities for children aged 2 to 10 - Educational software suite comprising of numerous activities for children aged 2 to 10 - https://gcompris.net/download/qt/src/gcompris-qt-1.1.tar.xz - - cmake - extra-cmake-modules - icon-theme-hicolor - kdoctools-devel - qml-box2d - openssl-devel - qt5-base-devel - qt5-declarative-devel - qt5-graphicaleffects - qt5-linguist - qt5-multimedia-devel - qt5-quickcontrols - qt5-sensors-devel - qt5-svg-devel - qt5-xmlpatterns-devel - - game/misc/gcompris-qt/pspec.xml + GPLv2 + library + editor.emacs + Interface between Emacs Lisp and Python + Emacs Lisp ve Python iletişimini sağlayan bir arayüz + Pymacs is a powerful tool which, once started from Emacs, allows two-way communication between Emacs Lisp and Python. + Pymacs, Emacs ile çalıştırıldığında, Emacs Lisp ve Python arasında çift yönlü iletişime olanak tanıyan güçlü bir araçtır. + https://github.com/pinard/Pymacs/archive/v0.25.tar.gz + editor/emacs/pymacs/pspec.xml - gcompris-qt - Educational software suite comprising of numerous activities for children aged 2 to 10 - + pymacs + + /usr/lib + /usr/share/doc + /usr/share/emacs + /etc/emacs/site-lisp + + + 80-pymacs.el + + + + + 2020-02-09 + 0.25 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-01 + 0.25 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-09 + 0.25 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-24 + 0.25 + First release + Ilker Manap + ilkermanap@gmail.com + + + + + + geany + https://geany.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + editor + GTK+ based fast and lightweight IDE + GTK+ based fast and lightweight IDE + https://download.geany.org/geany-1.38.tar.bz2 + libgcc - qt5-base - qt5-declarative - qt5-multimedia - qt5-sensors + intltool + vte-devel + gtk3-devel + glib2-devel + python3-lxml + python3-devel + + editor/geany/pspec.xml + + + geany + + atk + vte + gtk3 + glib2 + cairo + pango + libgcc + python3 + gdk-pixbuf + geany-colorschemes /usr/bin - /usr/share/applications + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man/man1 /usr/share/doc - /usr/share/gcompris-qt - /usr/share/icons - /usr/share/metainfo + + + + geany-devel + geany için geliştirme dosyaları + geany için geliştirme dosyaları + + geany + gtk3-devel + glib2-devel + + + /usr/lib/pkgconfig + /usr/include/geany/* + + 2021-10-15 + 1.38 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-06 + 1.37.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-06-24 + 1.36 + Disable binreloc. + fury + uglyside@yandex.ru + + + 2020-02-03 + 1.36 + Rebuild with gtk3. + fury + uglyside@yandex.ru + + + 2019-10-15 + 1.36 + Version bump + fury + uglyside@yandex.ru + + + 2019-04-30 + 1.35 + Version bump + fury + uglyside@yandex.ru + - 2021-04-24 - 1.1 + 2019-04-16 + 1.34.1 First release - Berk Çakar - berk2238@hotmail.com + fury + uglyside@yandex.ru - gcompris - https://gcompris.net/index-en.html + geany-plugins + https://plugins.geany.org/ + + fury + uglyside@yandex.ru + + GPL + library + editor + Plugins for Geany + Plugins for Geany + https://plugins.geany.org/geany-plugins/geany-plugins-1.38.tar.bz2 + + intltool + cppcheck + vte-devel + vala-devel + ctpl-devel + check-devel + geany-devel + lua51-devel + gpgme-devel + python-devel + gnutls-devel + python3-devel + libsoup-devel + libgit2-devel + libpcre2-devel + enchant2-devel + gtkspell3-devel + webkit2gtk-devel + + editor/geany-plugins/pspec.xml + + + geany-plugins + + atk + vte + zlib + ctpl + gtk3 + cairo + pango + glib2 + geany + lua51 + gpgme + gnutls + libsoup + libxml2 + libgit2 + harfbuzz + libpcre2 + enchant2 + gtkspell3 + libassuan + gdk-pixbuf + webkit2gtk + libgpg-error + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-10-15 + 1.38 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-01 + 1.37 + Version bump. + fury + uglyside@yandex.ru + + + 2020-09-22 + 1.36 + Rebuild libgit2. + fury + uglyside@yandex.ru + + + 2020-09-22 + 1.36 + Rebuild. + fury + uglyside@yandex.ru + + + 2019-12-18 + 1.36 + Rebuild with gtk3. + fury + uglyside@yandex.ru + + + 2019-10-15 + 1.36 + Ver. bump + fury + uglyside@yandex.ru + + + 2019-07-05 + 1.35 + Ver. bump + fury + uglyside@yandex.ru + + + 2019-04-21 + 1.34 + build + fury + uglyside@yandex.ru + + + + + + ghostwriter + https://github.com/wereturtle/ghostwriter + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv3 + app:gui + editor + ghostwriter is a cross-platform, aesthetic, distraction-free Markdown editor. + ghostwriter is a cross-platform, aesthetic, distraction-free Markdown editor. + ghostwriter provides a relaxing, distraction-free writing environment, whether your masterpiece be that next blog post, your school paper, or your NaNoWriMo novel. + ghostwriter provides a relaxing, distraction-free writing environment, whether your masterpiece be that next blog post, your school paper, or your NaNoWriMo novel. + https://github.com/wereturtle/ghostwriter/archive/refs/tags/2.1.2.tar.gz + + qt5-base-devel + qt5-multimedia-devel + qt5-webkit-devel + qt5-webengine-devel + qt5-svg-devel + qt5-linguist + hunspell-devel + desktop-file-utils + pkgconfig + + editor/ghostwriter/pspec.xml + + + ghostwriter + + qt5-base + qt5-webkit + hunspell + libgcc + + + /usr/bin + /usr/share/appdata + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/ghostwriter + /usr/share/pixmaps + /usr/share/metainfo + /usr/share/man + /usr/share/doc + + + + + 2022-04-03 + 2.1.2 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-02-21 + 1.5.0 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-09-11 + 1.4.2 + Version bump. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-07-20 + 1.3.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + krita + http://www.krita.org/ + + Kamil Atlı + suvari@pisilinux.org + + GPL-3.0-or-later + multimedia.graphics + Krita is a free digital painting application. + 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.8/krita-4.4.8.tar.xz + + eigen3 + kio-devel + pkgconfig + gsl-devel + zlib-devel + tiff-devel + libvc-devel + exiv2-devel + python3-sip + fftw3-devel + ki18n-devel + boost-devel + libXi-devel + ffmpeg-devel + libraw-devel + giflib-devel + libpng-devel + kcrash-devel + quazip-devel + python3-devel + openexr-devel + kconfig-devel + karchive-devel + kguiaddons-devel + kitemviews-devel + poppler-qt5-devel + kitemmodels-devel + python3-qt5-devel + python3-pyqt5-sip + kcoreaddons-devel + kcompletion-devel + extra-cmake-modules + libjpeg-turbo-devel + kwindowsystem-devel + kwidgetsaddons-devel + qt5-multimedia-devel + qt5-svg-devel + qt5-designer-devel + qt5-x11extras-devel + opencolorio-devel + + + krita-openexr3.patch + krita-opencolorio2.patch + + editor/krita/pspec.xml + + + krita + Krita is a free digital painting application. + + gsl + tiff + zlib + boost + fftw3 + ki18n + lcms2 + giflib + kcrash + libX11 + libpng + libraw + quazip + libgcc + python3 + kconfig + qt5-svg + karchive + qt5-base + exiv2-libs + kguiaddons + kitemviews + kcompletion + kcoreaddons + poppler-qt5 + openexr-libs + kwindowsystem + libjpeg-turbo + qt5-x11extras + kwidgetsaddons + qt5-multimedia + qt5-declarative + qt5-svg + qt5-designer + opencolorio + + + /etc + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/metainfo + /usr/bin/krita + /usr/share/locale + + + + + 2021-10-27 + 4.4.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-18 + 4.4.2 + Major version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-09-20 + 4.3.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 4.2.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 4.2.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-25 + 4.2.3 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + liblangtag + https://bitbucket.org/tagoh/liblangtag/wiki/Home Alihan Öztürk alihan@pisilinux.org - GPLv3 - app:gui - game.misc - Full featured educational application for children from 2 to 10 - 2-10 yaş arası çocuklar için eğitici uygulamalar - GCompris is an educational software suite comprising of numerous activities for children aged 2 to 10. Some of the activities are game orientated, but nonetheless still educational. - GCompris, 2-10 yaş arası çocuklar için bir çok etkinliği kapsayan eğitim amaçlı bir yazılım paketidir. Bazı etkinlikler, eğitim amaçlı oyunlardan oluşmaktadır. - http://gcompris.net/download/gtk/src/gcompris-17.05.tar.bz2 + GPLv3.0 + MPLv2.0 + app:console + editor + An interface library to access tags for identifying languages + liblangtag is an interface library to access/deal with tags for identifying languages, which is described in RFC. + https://bitbucket.org/tagoh/liblangtag/downloads/liblangtag-0.6.3.tar.bz2 - gawk - intltool - texinfo - gettext-devel - texi2html - gtk2-devel - glib2-devel - gnome-common - sqlite-devel - libX11-devel - python-devel - librsvg-devel + python3 libxml2-devel - freetype-devel - fontconfig-devel - gstreamer-devel - python-gtk-devel - python-cairo-devel + glib2-devel + gobject-introspection-devel - game/misc/gcompris/pspec.xml + editor/liblangtag/pspec.xml - gcompris + liblangtag + + glib2 + libxml2 + + + /usr/share/liblangtag + /usr/share/gir-1.0 + /usr/share/doc + /usr/lib + /usr/share/gtk-doc + + + + liblangtag-devel + liblangtag için geliştirme dosyaları + liblangtag için geliştirme dosyaları + + liblangtag + + + /usr/include/liblangtag + /usr/lib/pkgconfig + + + + + 2020-02-08 + 0.6.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-28 + 0.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 0.6.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-11 + 0.6.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2011-02-07 + 0.6.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libmspub + http://www.freedesktop.org/wiki/Software/libmspub + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + MPLv1.1 + app:gui + editor + Library parsing the Microsoft Publisher documents + Libmspub is library providing ability to interpret and import Microsoft Publisher content into various applications. You can find it being used in libreoffice. + http://dev-www.libreoffice.org/src/libmspub/libmspub-0.1.4.tar.bz2 + + boost-devel + doxygen + help2man + icu4c-devel + librevenge-devel + zlib-devel + + + buildfix.diff + + editor/libmspub/pspec.xml + + + libmspub + + zlib + icu4c + libgcc + librevenge + + + /usr/bin + /usr/share/doc + /usr/lib + + + + libmspub-devel + libmspub için geliştirme dosyaları + libmspub için geliştirme dosyaları + + zlib-devel + icu4c-devel + librevenge-devel + libmspub + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-21 + 0.1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 0.1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-09 + 0.1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 0.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 0.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-16 + 0.1.2 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-10 + 0.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 0.1.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + medit + http://mooedit.sourceforge.net/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + app:gui + editor + Multiplatform GTK text editor + Sekme özelliğine sahip bir metin düzenleyicisi + Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. + Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. + medit + mirrors://sourceforge/mooedit/medit-1.2.92-devel.tar.bz2 + + python-gtk-devel + python-devel + intltool + gtk2-devel + atk-devel + cairo-devel + gettext-devel + pkgconfig + glib2-devel + libX11-devel + python3-devel + libxml2-devel + gtk2-devel + pango-devel + lua-devel + libSM-devel + libICE-devel + shared-mime-info + gdk-pixbuf-devel + + + desktop-tr.patch + fix_help_dir.patch + + editor/medit/pspec.xml + + + medit + + gtk2 + atk + glib2 + libX11 + libgcc + python + libxml2 + cairo + pango + libSM + libICE + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/medit + /usr/share/pixmaps + /usr/share/doc + /usr/share/man + + + + + 2020-02-09 + 1.2.92 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 1.2.92 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-15 + 1.2.92 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-05 + 1.2.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-15 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 1.2.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + nano + https://www.nano-editor.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + editor + GNU GPL'd Pico clone with more functionality + Konsol ortamında kullanabileceğiniz bir metin düzenleyicidir. + Nano est un petit éditeur libre et convivial qui a pour but de remplacer Pico, l'éditeur par défaut inclus dans le paquet non-libre Pine. Plutôt que juste copier l'apparence et le ressenti de Pico, nan implémente également certaines fonctionnalité manquantes (ou désactivées par défaut), tel que "rechercher et remplacer" ou "allez à la ligne numéro". + Nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line number". + Nano özgür olmayan Pine paketinin içindeki metin düzenleme programı olan Pico'nun yerine geçme hedefini güden küçük, özgür ve kullanışlı bir metin düzenleme programıdır. Pico'nun görünüşünü ve işlevini kopyalamaktan çok, Nano aynı zamanda "ara ve değiştir" ve "satır numarasına git" gibi Pico'da olmayan (veya ön tanımlı olarak kapalı) bazı özellikleri sunar. + https://www.nano-editor.org/dist/v6/nano-6.0.tar.xz + + groff + ncurses-devel + gettext-devel + + editor/nano/pspec.xml + + + nano + + ncurses + file + + + /etc + /usr/share/locale + /usr/share/doc/nano + /usr/share/man + /usr/share/info + /usr/share/nano + /usr/bin + /bin + + + + + 2021-12-15 + 6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-08 + 4.9.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-09 + 4.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-27 + 4.5 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-03-27 + 2.9.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-29 + 2.9.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-05 + 2.9.3 + Version Bump + Ercan Ersoy + ercanersoy@ercanersoy.net + + + 2017-12-28 + 2.9.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-19 + 2.7.5 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 2.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-02 + 2.5.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + poedit + https://poedit.net/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:gui + editor + A cross-platform translation editor. + Platform bağımsız gettext po düzenleyicisi + This program is a simple translation editor for PO and XLIFF files. It also serves as a GUI frontend to more GNU gettext utilities and catalogs editor/source code parser. It helps with translating applications into another language. + Poedit, GNU Gettext arayüzü ve katalog düzenleyicisi / kaynak kod ayrıştırıcısıdır. Uygulamaları başka dillere çevirmede yardımcı olur. Detaylı bilgi için GNU Gettext dökümantasyonu ya da wxWidgets wxLocale sınıf referanslarına göz atın. + https://github.com/vslavik/poedit/releases/download/v3.0.1-oss/poedit-3.0.1.tar.gz + + wxGTK3 + db-devel + gtk3-devel + glib2-devel + boost-devel + icu4c-devel + wxGTK-devel + wxGTK-common + gettext-devel + pugixml-devel + lucene++-devel + gtkspell3-devel + + editor/poedit/pspec.xml + + + poedit + + gtk3 + boost + glib2 + icu4c + wxGTK3 + libgcc + gettext + pugixml + lucene++ + gtkspell3 + wxGTK-common + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-12-20 + 3.0.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-27 + 2.4.3 + Rebuild boost. + fury + uglyside@yandex.ru + + + 2021-04-29 + 2.4.3 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-04 + 2.4.2 + First release + fury + uglyside@yandex.ru + + + + + + scite + https://sourceforge.net/projects/scintilla/ + + fury + uglyside@yandex.ru + + custom + app:gui + editor + SCIntilla based Text Editor. + Scintilla is a free source code editing component which includes useful features such as syntax styling, error indicators, folding, code completion and call tips. + mirrors://sourceforge/project/scintilla/SciTE/5.2.2/scite522.tgz + + lua-devel + gtk2-devel + glib2-devel + python3-devel + + editor/scite/pspec.xml + + + scite atk gtk2 cairo glib2 pango - sqlite - libX11 - librsvg - libxml2 - freetype - gstreamer - fontconfig + libgcc gdk-pixbuf /usr/bin - /usr/lib + /usr/lib/scite /usr/share - /usr/share/doc - /usr/share/pixmaps - /usr/share/gcompris - /usr/share/applications - /usr/share/locale - - gcompris-edit.desktop - gcompris.desktop - gcompris-edit.png - gcompris.png - - - 2018-10-09 - 17.05 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-21 - 17.05 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-03-09 - 15.10 - Fix url. - Alihan Öztürk - alihan@pisilinux.org + 2022-04-14 + 5.2.2 + Version bump. + fury + uglyside@yandex.ru - 2016-02-07 - 15.10 - First release - Alihan Öztürk - alihan@pisilinux.org + 2021-12-18 + 5.1.6 + First build. + fury + uglyside@yandex.ru - hexalate - https://gottcode.org/hexalate/ + texlive-bin + https://www.tug.org/texlive/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data:doc + app:console + editor.tex + Tex Live binaries + TeX Live Dağıtımının Ana Parçası + texlive-bin est la part essentiel de TeXLive. + Texlive binaries that are an essential part of TeXLive component. + texlive-bin Tex Live dağıtımının ana parçasıdır. + ftp://tug.org/texlive/historic/2020/texlive-20200406-source.tar.xz + https://github.com/plk/biber/archive/v2.16.tar.gz + + gd-devel + clisp-devel + icu4c-devel + t1lib-devel + libXi-devel + libXt-devel + ffcall-devel + libpng-devel + libXaw-devel + libXmu-devel + libXpm-devel + poppler-devel + zziplib-devel + libpaper-devel + harfbuzz-devel + freetype-devel + graphite2-devel + fontconfig-devel + libsigsegv-devel + ghostscript-devel + + editor/tex/texlive-bin/pspec.xml + + + texlive-bin + Tex Live binaries + + gd + zlib + icu4c + libXt + libXi + t1lib + ffcall + libX11 + libgcc + libpng + libXaw + libXmu + libXpm + zziplib + harfbuzz + freetype + graphite2 + fontconfig + libsigsegv + ghostscript + + + /etc + /usr/share + /usr/lib + /usr/share/man + /usr/share/info + /usr/bin + /usr/share/tlpkg + /usr/share/texmf-dist + + + + texlive-bin-devel + Development files for texlive-bin + texlive-bin için geliştirme dosyaları + texlive-bin-devel, texlive-bin için geliştirme dosyalarını içerir. + + texlive-bin + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-02-06 + 20200406 + Rebuild + fury + uglyside@yandex.ru + + + 2020-06-01 + 20200406 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-21 + 20190410 + Version bump + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2020-03-21 + 2018.47465 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + texlive-core + https://www.tug.org/texlive + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data:doc + app:console + editor.tex + TeX Live core distribution. + TeX Live Dağıtımının Ana Parçası + texlive-core est la part essentiel de TeXLive. + texlive-core is the essential part of TeXLive. It corresponds to the "medium" scheme of TexLive. + texlive-core Tex Live dağıtımının ana parçasıdır. + https://mirrors.kernel.org/archlinux/other/texlive/texlive-core-2020.57066-src.zip + + texlive-bin + + editor/tex/texlive-core/pspec.xml + + + texlive-core + TeX Live core distribution. + + psutils + t1utils + ghostscript + texlive-bin + + + /etc/fonts + /etc/texmf + /usr/bin + /var/lib/texmf + /usr/share/tlpkg + /usr/share/libalpm + /usr/share/texmf-dist + + + System.Package + + + arch/texmf.cnf + arch/texmfcnf.lua + arch/09-texlive-fonts.conf + arch/texlive-core.maps + arch/texlive-core.fmts + + + + + 2020-01-02 + 2020.57066 + Version bump. + fury + uglyside@yandex.ru + + + 2020-05-29 + 2020.54593 + Major version bump + Blue Devil + bluedevil@sctzine.com + + + + + + texstudio + https://www.texstudio.org/ + + Pisilinux Community + admin@pisilinux.org + + GPLv3 + app:gui + editor + TeXstudio is a fully featured LaTeX editor. + TeXstudio is an integrated writing environment for creating LaTeX documents. Our goal is to make writing LaTeX as easy and comfortable as possible. Therefore TeXstudio has numerous features like syntax-highlighting, integrated viewer, reference checking and various assistants. + https://github.com/texstudio-org/texstudio/archive/refs/tags/4.2.2.tar.gz + + zlib-devel + quazip-devel + qt5-svg-devel + hunspell-devel + qt5-base-devel + qt5-script-devel + qt5-phonon-devel + poppler-qt5-devel + poppler-cpp-devel + ghostscript-devel + qtermwidget5-devel + qt5-declarative-devel + + editor/texstudio/pspec.xml + + + texstudio + + zlib + libX11 + libgcc + quazip + qt5-svg + hunspell + qt5-base + qt5-script + poppler-qt5 + texlive-bin + texlive-core + qtermwidget5 + qt5-declarative + + + /usr/bin + /usr/share + /usr/share/texstudio + /usr/share/icons/hicolor + + + + + 2022-14-05 + 4.2.2 + First build. + fury + uglyside@yandex.ru + + + + + + vim + http://www.vim.org/ + + PisiLinux Community + admins@pisilinux.org + + custom + editor.vi + Vi IMproved, an advanced text editor + Vi Improved, gelişmiş metin editörü + Vi IMproved – klon edytora Vi + Vim, which stands for Vi IMproved, is an open-source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. + VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. Çok geniş bir kullanıcı kitlesi olan VIM metin düzenleyicisi yüksek oranda özelleştirilebilir bir yazılımdır. Ayrıca VIM için pek çok destekleyici betik (script) bulunmaktadır. + Edytor tekstu podobny do Vi. Ważne ulepszenia: możliwość pracy w wielu oknach, wielopoziomowa opcja ‚cofnij’, bloki, podświetlanie składni, folding i wiele innych. + https://github.com/vim/vim/archive/v8.2.2891.tar.gz + + gpm + ctags + acl-devel + ruby-devel + gtk2-devel + libSM-devel + libXt-devel + pango-devel + libICE-devel + python-devel + python3-devel + ncurses-devel + libcanberra-devel + + + pisilinux/grub_conf.patch + pisilinux/xorg_conf.patch + vim-7.3-interix-link.patch + + editor/vi/vim/pspec.xml + + + vim + Vi IMproved, an advanced text editor + app:console + + gpm + acl + perl + ruby + ctags + ncurses + + + /etc/vim + /bin + /usr/share/doc + /usr/share/man + /usr/share/vim + /usr/bin/ex + /usr/bin/xxd + /usr/bin/vi* + /usr/bin/rvi* + + + vimrc + pisilinux/actions.vim + pisilinux/pspec.vim + pisilinux/translations.vim + plugins/taglist.vim + plugins/kde-devel-vim.vim + plugins/newpythonfile.vim + plugins/redstring.vim + + + + gvim + Graphical User Interface for Vi IMproved, an advanced text editor + Vi Improved, gelişmiş metin editörü için grafik kullanıcı arayüzü + VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. GVim ise vim için bir grafik kullanıcı arayüzü sunar. + app:gui + gvim + gui + + acl + gpm + vim + perl + gtk2 + ruby + glib2 + libSM + libXt + pango + libICE + libX11 + ncurses + gdk-pixbuf + + + /usr/share/icons + /usr/share/pixmaps + /usr/bin/gvi* + /usr/bin/egvi* + /usr/bin/rgvi* + /usr/bin/ggvi* + /usr/bin/rggvi* + /usr/bin/gvimtutor + /usr/share/applications + + + gvimtutor + gvim.xpm + gvim.desktop + + + + + 2021-06-28 + 8.2.2891 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 8.2.0788 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-09 + 8.2.0236 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-29 + 8.1.1846 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-29 + 8.0.1451 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-29 + 8.0.1451 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-01 + 8.0.1451 + Version bump. + Ali Algül + aligulle3801@gmail.com + + + 2017-04-10 + 0.8.0.0559 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-10 + 0.8.0.0130 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.7.4.909 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-05 + 0.7.4.909 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + bzflag + https://www.bzflag.org/ + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + app:gui + game.action + A free multiplayer multiplatform 3D tank battle game + Ağ destekli çok oyunculu bir tank oyunu + BZFlag is a free multiplayer multiplatform 3D tank battle game. The name stands for Battle Zone capture Flag. It's one of the most popular games ever on Silicon Graphics machines. + BZFlag, ağ destekli ve çok oyunculu 3B bir tank oyunudur. Karşı tarafın bayrağını ele geçirme temeline dayanır. Silicon Graphics makinelerdeki en popüler oyunlardan biridir. + https://download.bzflag.org/bzflag/source/2.4.14/bzflag-2.4.14.tar.bz2 + + c-ares-devel + mesa-devel + glew-devel + libsdl-devel + sdl-image-devel + mesa-glu-devel + curl-devel + zlib-devel + libsdl2-devel + ncurses-devel + + game/action/bzflag/pspec.xml + + + bzflag + + c-ares + curl + zlib + libgcc + libsdl2 + ncurses + mesa + glew + libsdl + mesa-glu + + + /usr/bin + /usr/include + /usr/lib + /usr/share/bzflag + /usr/share/doc/ + /usr/share/man/ + /usr/share/applications + /usr/share/pixmaps + + + bzflag.desktop + bzflag.png + + + + + 2018-08-29 + 2.4.14 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 2.4.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 2.4.12 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + abe + http://abe.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + game.arcade + Yet another platform game + Platform oyunu + Ancient pyramid explorer Abe makes his way through booby traps. + Eski piramitleri araştıran Abe kendisini bekleyen tehlikelerden ve tuzaklardan kurtulmaya çalışıyor. + abe + mirrors://sourceforge/abe/abe-1.1.tar.gz + + libsdl-devel + sdl-mixer-devel + + + flags.patch + abe-1.1-settings.patch + + game/arcade/abe/pspec.xml + + + abe + + libsdl + sdl-mixer + + + /usr/share/doc + /usr/bin + /usr/share/abe + /usr/share/pixmaps + /usr/share/applications + + + abe.png + abe.desktop + + + + + 2021-05-10 + 1.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + astromenace + https://viewizard.com/ + + Stefan Gronewold + groni@pisilinux.org + + GPLv3 + game.arcade + Hardcore 3D space shooter with spaceship upgrade possibilities + AstroMenace stands out for a hardcore gameplay that absorbs you completely as you repel the relentless attacks of diverse adversaries and dodge hails of projectiles. + https://sourceforge.net/projects/openastromenace/files/1.3.2/astromenace-src-1.3.2.tar.bz2 + + cmake + fontconfig-devel + freealut-devel + freetype-devel + libICE-devel + libX11-devel + libXext-devel + libogg-devel + libsdl-devel + libvorbis-devel + libXinerama-devel + mesa-devel + mesa-glu-devel + + + astromenace.patch + + game/arcade/astromenace/pspec.xml + + + astromenace + Hardcore 3D space shooter with spaceship upgrade possibilities + + fontconfig + freetype + libX11 + libsdl + mesa + mesa-glu + libgcc + openal + freealut + libvorbis + libXinerama + + + /usr/bin + /usr/share + /usr/share/doc + + + astromenace.desktop + astromenace_64.png + + + + + 2018-09-14 + 1.3.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-04 + 1.3.2 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + dustrac + http://dustrac.sourceforge.net/ Stefan Gronewold(groni) groni@pisilinux.org GPLv3 app:gui - game.logic - Hexalate is a color matching game. - Hexalate renk eşleştirme oyunudur. - The goal of the game is to rotate and position the circles so that each touching line matches in color. You rotate circles by right clicking, and you move circles by dragging them. The game stores the positions and rotations of the circles across runs. - Hexalate bir mantık oyunudur. Oyundaki amaç, daireleri döndürerek birbirine değen noktalardaki renklerin eşleşmesini sağlamaktır. - https://gottcode.org/hexalate/hexalate-1.1.5-src.tar.bz2 + game.arcade + Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game + The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen. + https://github.com/juzzlin/DustRacing2D/archive/2.0.1.tar.gz qt5-base-devel qt5-linguist + openal-devel + cmake + pkgconfig + libvorbis-devel + mesa-devel + mesa-glu-devel - game/logic/hexalate/pspec.xml + + editor.patch + + game/arcade/dustrac/pspec.xml - hexalate - Hexalate is a color matching game. + dustrac - qt5-linguist qt5-base + openal + libvorbis libgcc + mesa - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/pixmaps /usr/bin + /usr/share/appdata/ + /usr/share/games + /usr/share/locale + /usr/share/applications + /usr/share/icons + /usr/share/metainfo/dustrac.appdata.xml + /usr/share/pixmaps /usr/share/doc - /usr/share - - 2020-02-12 - 1.1.5 - Version bump. - Blue Devil - bluedevil@sctzine.com - - + 2018-09-14 - 1.1.4 - Version Bump. + 2.0.1 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com + + 2018-02-19 + 2.0.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-25 + 1.12.0 + version bump + Stefan Gronewold(groni) + groni@pisilinux.org + - 2018-03-02 - 1.1.2 - First release. + 2015-11-20 + 1.11.0 + First release Stefan Gronewold(groni) groni@pisilinux.org @@ -234303,155 +177804,140 @@ to create header files and sources from protocol files. - dustrac - http://dustrac.sourceforge.net/ + eboard + http://www.bergo.eng.br/eboard/ - Stefan Gronewold(groni) - groni@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - GPLv3 + GPLv2 app:gui - game.arcade - Dust Racing 2D (dustrac) is an open source, tile-based 2D racing game - The purpose of the game is to race against 11 challenging computer players on different race tracks. Finishing in TOP-6 will unlock a new race track. Only a small portion of the race track is visible on the scrolling screen. - https://github.com/juzzlin/DustRacing2D/archive/2.0.1.tar.gz + game.board + A GTK+ chess board + Gtk tabanlı satranç arayüzü + eboard is a chess interface for Unix-like systems based on the GTK+ GUI toolkit. + eboard; unix sistemleri için, gtk+ araç takımı kullanılarak yazılmış bir satranç arayüzüdür. + eboard + mirrors://sourceforge/eboard/eboard-1.1.1.tar.bz2 - qt5-base-devel - qt5-linguist - openal-devel - cmake - pkgconfig - libvorbis-devel - mesa-devel - mesa-glu-devel + gtk2-devel + pango-devel + glib2-devel + libpng-devel - editor.patch + eboard-1.1.1-as-needed.patch + eboard-1.1.1-gcc44.patch + eboard-1.1.1-ovflfix.patch + eboard-1.1.1-libpng15.patch - game/arcade/dustrac/pspec.xml + game/board/eboard/pspec.xml - dustrac + eboard - qt5-base - openal - libvorbis + gtk2 + pango + glib2 libgcc - mesa + libpng /usr/bin - /usr/share/appdata/ - /usr/share/games - /usr/share/locale - /usr/share/applications - /usr/share/icons - /usr/share/metainfo/dustrac.appdata.xml - /usr/share/pixmaps + /usr/share/eboard /usr/share/doc + /usr/share/man + /usr/share/applications + /usr/share/pixmaps + + eboard.desktop + - + 2018-09-14 - 2.0.1 + 1.1.1 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - - 2018-02-19 - 2.0.1 - Version bump + + 2017-05-05 + 1.1.1 + Rebuild with new toolchain Mustafa Cinasal muscnsl@gmail.com - - 2017-04-25 - 1.12.0 - version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - 2015-11-20 - 1.11.0 + 2016-12-04 + 1.1.1 First release - Stefan Gronewold(groni) + Stefan Gronewold groni@pisilinux.org - astromenace - https://viewizard.com/ + gnuchess + http://www.gnu.org/software/chess/chess.html - Stefan Gronewold - groni@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - GPLv3 - game.arcade - Hardcore 3D space shooter with spaceship upgrade possibilities - AstroMenace stands out for a hardcore gameplay that absorbs you completely as you repel the relentless attacks of diverse adversaries and dodge hails of projectiles. - https://sourceforge.net/projects/openastromenace/files/1.3.2/astromenace-src-1.3.2.tar.bz2 + GPLv2 + app:console + game.board + Console based chess interface + Konsol tabanlı bir satranç programı + GNU Chess lets most modern computers play a full game of chess. It has a plain terminal interface but supports visual interfaces such as X-Windows xboard. + GNU Chess, konsolda oynanan bir satranç oyunudur. XBoard gibi grafik arayüzleri de destekler. + mirrors://gnu/chess/gnuchess-6.2.9.tar.gz - cmake - fontconfig-devel - freealut-devel - freetype-devel - libICE-devel - libX11-devel - libXext-devel - libogg-devel - libsdl-devel - libvorbis-devel - libXinerama-devel - mesa-devel - mesa-glu-devel + readline-devel - - astromenace.patch - - game/arcade/astromenace/pspec.xml + game/board/gnuchess/pspec.xml - astromenace - Hardcore 3D space shooter with spaceship upgrade possibilities + gnuchess - fontconfig - freetype - libX11 - libsdl - mesa - mesa-glu - libgcc - openal - freealut - libvorbis - libXinerama + readline /usr/bin - /usr/share /usr/share/doc + /usr/share/info + /usr/share/games + /usr/share/gnuchess + /usr/share/man/man1 - - astromenace.desktop - astromenace_64.png - - + + 2022-04-03 + 6.2.9 + Version Bump. + Ercan Ersoy + ercanersoy@ercanersoy.net + + 2018-09-14 - 1.3.2 - Rebuild New T. + 6.2.5 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-05 + 6.2.4 + Rebuild with new toolchain Mustafa Cinasal muscnsl@gmail.com - 2018-05-04 - 1.3.2 + 2016-12-04 + 6.2.4 First Release Stefan Gronewold groni@pisilinux.org @@ -234460,142 +177946,224 @@ to create header files and sources from protocol files. - abe - http://abe.sourceforge.net/ + gnuchess-book + http://www.gnu.org/software/chess/chess.html PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - game.arcade - Yet another platform game - Platform oyunu - Ancient pyramid explorer Abe makes his way through booby traps. - Eski piramitleri araştıran Abe kendisini bekleyen tehlikelerden ve tuzaklardan kurtulmaya çalışıyor. - abe - mirrors://sourceforge/abe/abe-1.1.tar.gz + data + game.board + Opening book for GNU Chess + GNU Chess için açılış kitabı + Contains opening book (set of movesets to be played at the beginning of the game) for GNU Chess. + GNU Chess oyununun açılış kitabını (sıralanmış açılış hamleleri kümesi) içerir. + mirrors://gnu/chess/book_1.02.pgn.gz - libsdl-devel - sdl-mixer-devel + gnuchess - - flags.patch - abe-1.1-settings.patch - - game/arcade/abe/pspec.xml + game/board/gnuchess-book/pspec.xml - abe + gnuchess-book - libsdl - sdl-mixer + gnuchess - /usr/share/doc - /usr/bin - /usr/share/abe - /usr/share/pixmaps - /usr/share/applications + /usr/share/games/gnuchess - - abe.png - abe.desktop - + + 2018-09-14 + 1.02 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-05 + 1.01 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + - 2021-05-10 - 1.1 + 2016-12-04 + 1.01 First release - Osman Erkan - osman.erkan@pisilinux.org + Stefan Gronewold + groni@pisilinux.org - bzflag - https://www.bzflag.org/ + gweled + http://www.gweled.org - Pisi Linux Admins + Alper Tekinalp admins@pisilinux.org - LGPLv2.1 + GPLv2 app:gui - game.action - A free multiplayer multiplatform 3D tank battle game - Ağ destekli çok oyunculu bir tank oyunu - BZFlag is a free multiplayer multiplatform 3D tank battle game. The name stands for Battle Zone capture Flag. It's one of the most popular games ever on Silicon Graphics machines. - BZFlag, ağ destekli ve çok oyunculu 3B bir tank oyunudur. Karşı tarafın bayrağını ele geçirme temeline dayanır. Silicon Graphics makinelerdeki en popüler oyunlardan biridir. - https://download.bzflag.org/bzflag/source/2.4.14/bzflag-2.4.14.tar.bz2 + game.board + A puzzle game similar to "Bejeweled" or "Diamond Mine" + "Bejeweled" veya "Diamond Mine" benzeri bir bulmaca oyunu + Gweled is a GTK+ version of a popular PalmOS/Windows/Java game called "Bejeweled", originally written by Sebastien Delestaing. The aim of the game is to make alignment of 3 or more gems, both vertically or horizontally by swapping adjacent gems. + Gweled, orijinal olarak Sebastien Delestaing tarafından yazılmış, "Bejeweled" olarak bilinen popüler PalmOS/Windows/Java oyununun GTK+ versiyonudur. Oyunun amacı 3 veya daha çok mücevheri yatay veya dikey olarak aynı hizaya getirmektir. + gweled + http://launchpad.net/gweled/trunk/0.9.1/+download/gweled-0.9.1.tar.gz - c-ares-devel - mesa-devel - glew-devel - libsdl-devel - sdl-image-devel - mesa-glu-devel - curl-devel - zlib-devel - libsdl2-devel - ncurses-devel + gtk2-devel + intltool + icon-theme-hicolor + gdk-pixbuf-devel + glib2-devel + librsvg-devel + libmikmod-devel - game/action/bzflag/pspec.xml + + gweled-0.9.1-fix-open.patch + translate-paused-string.patch + turkish.patch + gweled-librsvg-crash.patch + + game/board/gweled/pspec.xml - bzflag + gweled - c-ares - curl - zlib - libgcc - libsdl2 - ncurses - mesa - glew - libsdl - mesa-glu + librsvg + libmikmod + glib2 + gtk2 + gdk-pixbuf /usr/bin - /usr/include - /usr/lib - /usr/share/bzflag - /usr/share/doc/ - /usr/share/man/ - /usr/share/applications - /usr/share/pixmaps + /usr/share/doc + /usr/share/locale + /usr/share + /var/state/gweled - - bzflag.desktop - bzflag.png - + + 2021-01-05 + 0.9.1 + Rebuild New Patch + Ali Cengiz Kurt + alicengizkurt@gmail.com + - 2018-08-29 - 2.4.14 - Version Bump. + 2018-09-14 + 0.9.1 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2018-05-11 - 2.4.12 - Rebuild. + 2017-05-05 + 0.9.1 + Rebuild with new toolchain Mustafa Cinasal muscnsl@gmail.com - 2018-05-03 - 2.4.12 + 2016-12-04 + 0.9.1 First release Stefan Gronewold groni@pisilinux.org + + + alienarena + http://red.planetarena.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + COR-Entertainment-LLC + app:gui + game.fps + A standalone 3D first person shooter game + 3 Boyutlu ilkgözden nişancılık oyunu + Alien Arena is a standalone 3D first person online deathmatch shooter crafted from the original source code of Quake II and Quake III. + Alien Arena, Quake 2 ve 3 oyunlarının kaynak kodlarından yola çıkılarak hazırlanmış çevrimiçi oynanabilen ilkgözden (first person) nişancılık (shooter) oyunudur. + alienarena + http://red.planetarena.org/files/alienarena-7.66-linux20130827.tar.gz + + libjpeg-turbo-devel + libXxf86dga-devel + libXxf86vm-devel + libX11-devel + mesa-devel + openal-devel + ode-devel + curl-devel + freetype-devel + libvorbis-devel + + + gcc7.patch + alienarena-20130827-format.patch + use_home_dir.patch + + game/fps/alienarena/pspec.xml + + + alienarena + + libjpeg-turbo + libXxf86vm + curl + zlib + libX11 + libvorbis + libgcc + freetype + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + alienarena.png + alienarena.desktop + + + + + 2018-09-14 + 7.66 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-05 + 7.66 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2015-11-11 + 7.66 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + gnome-chess @@ -234668,6 +178236,824 @@ to create header files and sources from protocol files. + + + hexalate + https://gottcode.org/hexalate/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + app:gui + game.logic + Hexalate is a color matching game. + Hexalate renk eşleştirme oyunudur. + The goal of the game is to rotate and position the circles so that each touching line matches in color. You rotate circles by right clicking, and you move circles by dragging them. The game stores the positions and rotations of the circles across runs. + Hexalate bir mantık oyunudur. Oyundaki amaç, daireleri döndürerek birbirine değen noktalardaki renklerin eşleşmesini sağlamaktır. + https://gottcode.org/hexalate/hexalate-1.1.5-src.tar.bz2 + + qt5-base-devel + qt5-linguist + + game/logic/hexalate/pspec.xml + + + hexalate + Hexalate is a color matching game. + + qt5-linguist + qt5-base + libgcc + + + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/pixmaps + /usr/bin + /usr/share/doc + /usr/share + + + + + 2020-02-12 + 1.1.5 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-14 + 1.1.4 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 1.1.2 + First release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gcompris + https://gcompris.net/index-en.html + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:gui + game.misc + Full featured educational application for children from 2 to 10 + 2-10 yaş arası çocuklar için eğitici uygulamalar + GCompris is an educational software suite comprising of numerous activities for children aged 2 to 10. Some of the activities are game orientated, but nonetheless still educational. + GCompris, 2-10 yaş arası çocuklar için bir çok etkinliği kapsayan eğitim amaçlı bir yazılım paketidir. Bazı etkinlikler, eğitim amaçlı oyunlardan oluşmaktadır. + http://gcompris.net/download/gtk/src/gcompris-17.05.tar.bz2 + + gawk + intltool + texinfo + gettext-devel + texi2html + gtk2-devel + glib2-devel + gnome-common + sqlite-devel + libX11-devel + python-devel + librsvg-devel + libxml2-devel + freetype-devel + fontconfig-devel + gstreamer-devel + python-gtk-devel + python-cairo-devel + + game/misc/gcompris/pspec.xml + + + gcompris + + atk + gtk2 + cairo + glib2 + pango + sqlite + libX11 + librsvg + libxml2 + freetype + gstreamer + fontconfig + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/pixmaps + /usr/share/gcompris + /usr/share/applications + /usr/share/locale + + + gcompris-edit.desktop + gcompris.desktop + gcompris-edit.png + gcompris.png + + + + + 2018-10-09 + 17.05 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-21 + 17.05 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 15.10 + Fix url. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-02-07 + 15.10 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gcompris-qt + https://gcompris.net/ + + Berk Çakar + berk2238@hotmail.com + + AGPLv3 + game.misc + Educational software suite comprising of numerous activities for children aged 2 to 10 + Educational software suite comprising of numerous activities for children aged 2 to 10 + https://gcompris.net/download/qt/src/gcompris-qt-1.1.tar.xz + + cmake + extra-cmake-modules + icon-theme-hicolor + kdoctools-devel + qml-box2d + openssl-devel + qt5-base-devel + qt5-declarative-devel + qt5-graphicaleffects + qt5-linguist + qt5-multimedia-devel + qt5-quickcontrols + qt5-sensors-devel + qt5-svg-devel + qt5-xmlpatterns-devel + + game/misc/gcompris-qt/pspec.xml + + + gcompris-qt + Educational software suite comprising of numerous activities for children aged 2 to 10 + + libgcc + qt5-base + qt5-declarative + qt5-multimedia + qt5-sensors + + + /usr/bin + /usr/share/applications + /usr/share/doc + /usr/share/gcompris-qt + /usr/share/icons + /usr/share/metainfo + + + + + 2021-04-24 + 1.1 + First release + Berk Çakar + berk2238@hotmail.com + + + + + + ode + http://www.ode.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + game.misc + High performance library for simulating rigid body dynamics + Vücut dinamiklerini simüle etmek için yüksek başarımlı bir kitaplık + ODE jest biblioteką służącą do symulacji dynamiki bryły sztywnej + SDK (kit de développement) du moteur Open Dynamics. + ode is an open source, high performance library for simulating rigid body dynamics. It is fully featured, stable, mature and platform independent with an easy to use C/C++ API. + ode açık kaynaklı, yüksek başarımlı bir vücut dinamiği simülasyon kitaplığıdır. Tam işlevsel, kararlı, olgun ve platform bağımsız bir C/C++ programlama arayüzü sunar. + Open Dynamics Engine (ODE) jest wolną biblioteką służącą do symulacji dynamiki bryły sztywnej. ODE jest użyteczne przy symulacji pojazdów, obiektów w przestrzeni wirtualnej i wirtualnych stworzeń. + https://bitbucket.org/odedevs/ode/downloads/ode-0.15.2.tar.gz + + libgcc + + game/misc/ode/pspec.xml + + + ode + + libgcc + + + /usr/lib + /usr/share/doc + + + + ode-devel + Development files for ode + ode için geliştirme dosyaları + Pliki nagłówkowe ode + + ode + + + /usr/bin/ode-config + /usr/include + /usr/lib/pkgconfig + + + + + 2018-09-16 + 0.15.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-16 + 0.15.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 0.14 + Update. + Alihan Öztürk + alihan@pisilinux.org + + + 2017-03-09 + 0.13 + Rebuild for new toolchain. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2015-10-26 + 0.13 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + plib + http://plib.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + game.misc + Plib game library + Oyun kütüphanesi + Librairie multimédia et 3D principalement utilisée par les jeux. + Multimedia and 3D library used mostly by games. + Genellikle oyunlar tarafından kullanılan multimedya ve 3B kütüphanesi + Librería multimedia y 3D usado principalmente en juegos + http://plib.sourceforge.net/dist/plib-1.8.5.tar.gz + + mesa-devel + libXi-devel + libSM-devel + libXmu-devel + libICE-devel + libXext-devel + + + 02_build_shared_libs.diff + 03_remove_pthread_link.diff + + game/misc/plib/pspec.xml + + + plib + + mesa + libX11 + libgcc + + + /usr/lib + /usr/share/doc + + + + plib-devel + Development files for plib + plib için geliştirme dosyaları + + plib + + + /usr/include + + + + + 2017-01-20 + 1.8.5 + Version bump. + Ali Algul + aligulle3801@gmail.com + + + + + + sfml + http://www.sfml-dev.org + + Ali Cengiz Kurt + alicengizkurt@gmail.com + + zlib + library + multimedia.misc + A simple, fast, cross-platform, and object-oriented multimedia API + SFML provides a simple interface to the various components of your PC, to ease the development of games and multimedia applications. It is composed of five modules: system, window, graphics, audio and network. + https://github.com/SFML/SFML/archive/2.5.1.tar.gz + + cmake + doxygen + flac-devel + mesa-devel + glew-devel + eudev-devel + libX11-devel + openal-devel + libogg-devel + freetype-devel + libvorbis-devel + libXrandr-devel + + game/misc/sfml/pspec.xml + + + sfml + A simple, fast, cross-platform, and object-oriented multimedia API + + flac + eudev + libX11 + libgcc + libogg + openal + freetype + libglvnd + libvorbis + libXrandr + + + /usr/lib/libsfml* + /usr/share/SFML + /usr/share/licenses/sfml + + + + sfml-devel + Development files for sfml + + flac-devel + openal-devel + libogg-devel + freetype-devel + libvorbis-devel + sfml + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake/SFML + + + + + 2022-01-06 + 2.5.1 + First Release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + gmult + https://launchpad.net/gmult + + Pisi Linux Admins + admins@pisilinux.org + + GPLv3 + app:gui + game.puzzle + Multiplication Puzzle + Çarpma Bulmacası + Multiplication Puzzle is a simple GTK+ 2 game that emulates the multiplication game found in Emacs. Basically, a multiplication problem is shown with all digits replaced by letters. Your job is to guess which letter represents which number. + Çarpma Bulmacası, Emacs'teki çarpma oyununun benzeri basit bir GTK+ 2 oyunudur. Tüm basamakların harflerle değiştirildiği bir çarpma problemi gösteriliyor. Sizin işiniz de, hangi harfe hangi rakamın karşılık geldiğini tahmin etmek. + gmult + https://launchpad.net/gmult/trunk/9.0/+download/gmult-9.0.tar.xz + + meson + atk-devel + intltool + vala-devel + gtk3-devel + pango-devel + glib2-devel + gettext-devel + glib2-devel + gdk-pixbuf-devel + desktop-file-utils + appstream-glib-devel + + game/puzzle/gmult/pspec.xml + + + gmult + + atk + gtk3 + cairo + pango + glib2 + gdk-pixbuf + + + /usr/bin + /usr/share/applications + /usr/share/doc/gmult + /usr/share/metainfo + /usr/share/dbus-1 + /usr/share/icons + /usr/share/locale + + + + + 2018-09-14 + 9.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 8.0 + rebuild and testing + Stefan Gronewold + groni@pisilinux.org + + + 2014-02-23 + 8.0 + rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-27 + 8.0 + V.bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2010-04-28 + 7.3 + First release + Doruk Fişek + dfisek@fisek.com.tr + + + + + + hex-a-hop + http://hexahop.sourceforge.net/downloads.html + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + game.puzzle + Hexagonal puzzle game + Altıgenler içeren bulmaca oyunu + Hex-a-hop is a puzzle game based on hexagonal tiles. There is no time limit and no real-time elements. The objective is simply to destroy all the green hexagonal tiles on each of the 100 levels. As you progress through the game, more types of tiles are introduced, which make things more difficult and interesting. + Hex-a-hop altıgen döşemeler üzerinde oynanan bir bulmaca oyunudur. Zaman sınırı ve gerçek zamanlı öğe yoktur. Amaç 100 bölümün her birindeki yeşil döşemeleri yoketmektir. Oyunda ilerledikçe yeni döşeme türleri çıkar ve işler daha zor ve ilginç hale gelir. + hex-a-hop + mirrors://sourceforge/hexahop/hex-a-hop/1.1.0/hex-a-hop-1.1.0.tar.gz + + libsdl-devel + sdl-mixer-devel + sdl-ttf-devel + + game/puzzle/hex-a-hop/pspec.xml + + + hex-a-hop + + libgcc + libsdl + sdl-mixer + sdl-ttf + + + /usr/bin + /usr/share/applications + /usr/share/hex-a-hop + /usr/share/pixmaps + /usr/share/doc/hex-a-hop + + + hex-a-hop.desktop + hex-a-hop.png + + + + + 2018-09-14 + 1.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 1.1.0 + Rebuild and testing + Stefan Gronewold + groni@pisilinux.org + + + 2014-02-17 + 1.1.0 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2011-01-11 + 1.1.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + lmarbles + http://lgames.sourceforge.net/index.php?project=LMarbles + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + game.puzzle + Marble puzzle game + Bilye oyunu + Puzzle game inspired by Atomix and written using the SDL library. + LMarbles, Atomix oyunundan yola çıkılarak hazırlanmış bir oyundur. Bilyeleri istenen yerlere yerleştirerek bulmacaları çözmeniz gerekir. + lmarbles + mirrors://sourceforge/lgames/lmarbles-1.0.8.tar.gz + + libsdl-devel + sdl-mixer-devel + + game/puzzle/lmarbles/pspec.xml + + + lmarbles + + libsdl + sdl-mixer + + + /usr/bin + /usr/share/applications + /usr/share/lmarbles + /usr/share/pixmaps + /usr/share/man + /usr/share/doc/lmarbles + + + lmarbles.desktop + lmarbles.png + + + + + 2018-09-14 + 1.0.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 1.0.8 + Rebuild and testing. + Stefan Gronewold + groni@pisilinux.org + + + 2014-03-09 + 1.0.8 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2010-01-17 + 1.0.8 + First release + Doruk Fişek + dfisek@fisek.com.tr + + + + + + neverball + http://icculus.org/neverball/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + game.puzzle + 3D roll-the-ball game + 3B top yuvarlama oyunu + Neverball is a 3D puzzle and action game in which you roll a ball by tilting the table to get the ball to a destination location. + Neverball masayı hareket ettirerek topun hareketlerinin yönetildiği 3B zeka ve beceri oyunudur. + http://neverball.org/neverball-1.6.0.tar.gz + + libsdl2-devel + sdl2-ttf-devel + libvorbis-devel + mesa-devel + physfs-devel + libjpeg-turbo-devel + libpng-devel + + game/puzzle/neverball/pspec.xml + + + neverball + + libsdl2 + sdl2-ttf + libvorbis + mesa + physfs + libjpeg-turbo + libpng + + + /usr/bin + /usr/share/applications + /usr/share/doc + /usr/share/neverball + /usr/share/pixmaps + /usr/share/man + /usr/share/locale + + + neverball.desktop + neverputt.desktop + + + + + 2018-09-14 + 1.6.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-25 + 1.6.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + tetzle + http://gottcode.org/tetzle/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv3 + app:gui + game.puzzle + Tetzle is a jigsaw puzzle game + Tetzle is a jigsaw puzzle game + It uses tetrominoes for the pieces. Any image can be imported and used to create puzzles with a wide range of sizes. Games are saved automatically, and you can select between currently in progress games. + It uses tetrominoes for the pieces. Any image can be imported and used to create puzzles with a wide range of sizes. Games are saved automatically, and you can select between currently in progress games. + https://gottcode.org/tetzle/tetzle-2.1.3-src.tar.bz2 + + qt5-base-devel + qt5-linguist + + game/puzzle/tetzle/pspec.xml + + + tetzle + + qt5-base + libgcc + + + /usr/bin + /usr/share/icons/hicolor + /usr/share/applications + /usr/share + /usr/share/pixmaps + /usr/share/doc + + + + + 2018-09-14 + 2.1.3 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-04 + 2.1.2 + First release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + xmoto @@ -234768,769 +179154,471 @@ to create header files and sources from protocol files. - calamares-theme-pisilinux - https://pisilinux.org + 0ad + https://play0ad.com/ - Pisi Linux Community - admin@pisilinux.org + Kamil Atlı + suvari@pisilinux.org GPLv2 - data - system.installer - PiSi Linux theme files for Calamares - Calamares sistem yükleyici için Pisi Linux tema dosyaları - calamares-theme includes PiSi Linux theme files for Calamares(Distribution-independent installer framework). - calamares-theme Calamares (Dağıtım bağımsız sistem yükleyici) projesi için Pisi Linux tema dosyaları içerir. - https://github.com/PisiLinuxNew/calamares-pisilinux/archive/0.4.tar.gz - system/installer/calamares-theme-pisilinux/pspec.xml + LGPLv2 + CCPL + MIT + app:gui + game.strategy + Cross-platform, 3D and historically-based real-time strategy game + Tarihsel, 3D gerçek zamanlı strateji oyunu + Cross-platform, 3D and historically-based real-time strategy game.As the military leader of an ancient civilisation, + you must gather the resources you need to raise a military force capable of dominating your enemies. + Eski bir uygarlığın askeri lideri olarak,gereken kaynakları toplayıp düşmanlarınıza hükmedecek askeri güce sahip olmalı ve galip gelmelisiniz + 0ad + http://releases.wildfiregames.com/0ad-0.0.23b-alpha-unix-build.tar.xz + http://releases.wildfiregames.com/0ad-0.0.23b-alpha-unix-data.tar.xz + + zip + nasm + cmake + binutils + curl-devel + zlib-devel + nspr-devel + tiff-devel + mesa-devel + enet-devel + wxGTK-devel + libSM-devel + icu4c-devel + gloox-devel + boost-devel + openal-devel + wxBase-devel + python-devel + libogg-devel + libpng-devel + libsdl2-devel + libxml2-devel + wxGTK2.8-devel + mesa-glu-devel + miniupnpc-devel + libvorbis-devel + libXcursor-devel + subversion-devel + libsodium-devel + python-setuptools + spidermonkey-devel + libjpeg-turbo-devel + + + fix_permission.patch + + game/strategy/0ad/pspec.xml - calamares-theme-pisilinux + 0ad + + tiff + enet + curl + nspr + mesa + icu4c + zlib + wxGTK + gloox + boost + libpng + libgcc + libX11 + openal + wxBase + libsdl2 + libxml2 + libsodium + miniupnpc + libvorbis + libXcursor + libjpeg-turbo + - /usr/share/calamares + /usr/bin + /usr/lib + /usr/share/0ad + /usr/share/pixmaps + /usr/share/applications + /usr/share/doc/0ad + /usr/share/man/man6 + + 0ad + 0ad.desktop + 0ad.6 + 0ad.png + - - 2019-10-31 - 0.3 - Version bump for 2.1.2 Mehmetcik - erkanisik - erkanisik@pisilinux.org - - - 2019-02-15 - 0.3 - Version bump for 2.1.1 Felis-catus + + 2019-10-30 + 0.0.23b + First release Kamil Atlı suvari@pisilinux.org - - 2018-08-13 - 0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 0.1a - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-09 - 0.1a - First release - Pisi Linux Community - admin@pisilinux.org - - Calamares - https://calamares.io/ - - Ergün Salman - Poyraz76@pisilinux.org - - LGPLv2 - system.installer - A distribution independent installer framework - Dağıtım bağımsız sistem yükleyici - Calamares is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations. - Calamares dağıtım bağımsız bir sistem yükleyicidir. - https://github.com/calamares/calamares/archive/v3.2.39.3.tar.gz - - gettext-devel - yaml-cpp - boost-devel - boost-python3 - ki18n-devel - kcoreaddons - solid-devel - parted-devel - qt5-linguist - qt5-svg-devel - udisks2-devel - libyaml-devel - python3-devel - kconfig-devel - qt5-base-devel - polkit-qt-devel - qt5-webkit-devel - qt5-webengine-devel - libatasmart-devel - kcoreaddons-devel - qt5-designer-devel - qt5-assistant-devel - libutil-linux-devel - qt5-declarative-devel - libxkbfile-devel - e2fsprogs-devel - squashfs-tools - efibootmgr-devel - rsync - gptfdisk - extra-cmake-modules - kpmcore-devel - kiconthemes-devel - kio-devel - kservice-devel - kconfig-devel - kparts-devel - plasma-framework-devel - - - pisilocalayar.patch - pisi_set_hostname2.patch - no_fsck_and_pymouth2.patch - - system/installer/Calamares/pspec.xml - - - Calamares - - libgcc - boost - boost-python3 - python3 - kcrash - parted - solid - ki18n - rsync - kconfig - kcoreaddons - qt5-svg - qt5-webkit - libatasmart - qt5-declarative - rsync - ntfs-3g - qt5-base - gptfdisk - e2fsprogs - dmidecode - efibootmgr - libxkbfile - dosfstools - libutil-linux - util-linux - kpmcore - partitionmanager - qt5-webengine - kiconthemes - kio - kservice - kconfig - kparts - kpackage - calamares-theme-pisilinux - - - /usr/bin - /usr/lib - /usr/share/* - /usr/lib/calamares/ - /usr/include/libcalamares/* - /usr/lib/cmake/Calamares/ - /usr/lib/calamares/modules/* - /usr/libexec/ - /etc/locale.conf - - - calamares.desktop - locale.conf - - - - - 2021-10-30 - 3.2.39.3 - Rebuild boost. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 3.2.39.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-27 - 3.2.32.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 3.2.32.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 3.2.21 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-21 - 3.2.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-27 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-12 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-14 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-24 - 3.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 3.2.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-27 - 3.1.11 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-19 - 3.1.10 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-07 - 3.1.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-15 - 3.1.7 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-12-13 - 2.4.83 - Version Bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2016-12-13 - 2.4.80 - Version Bump - Ergün Salman - Poyraz76@pisilinux.org - - - 2016-06-08 - 2.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-03 - 2.2 - First Release. - Ergün Salman - Poyraz76@pisilinux.org - - - - - - yali - http://www.pisilinux.org/ + blueman + https://github.com/blueman-project/blueman PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv3 app:gui - system.installer - Yet Another Linux Installer - YALI: PiSi Linux kurulum yazılımı - YALI: Yet Another Linux Installer (encore un nouvel installateur Linux). - YALI is the graphical installer for PiSi Linux distribution which is written using the Qt framework. - YALI: PiSi Linux kurulum yazılımı. - YALI jest graficznym instalatorem PiSi Linux. - https://github.com/pisilinux/yali/archive/refs/tags/v3.3.7.0.tar.gz + library + hardware.bluetooth + GTK+ Bluetooth Manager + GTK+ Bluetooth Yöneticisi + blueman is a bluetooth manager application which is designed to be simple and intuitive for everyday bluetooth tasks. It's written with GTK+ toolkit. + blueman, kullanıcının günlük bluetooth görevlerini kolaylıkla yerine getirmesi için basit bir şekilde tasarlanmış ve GTK+ grafik arayüz kitaplığı kullanılarak yazılmış bir bluetooth yöneticisidir. + bluetooth + https://github.com/blueman-project/blueman/releases/download/2.2.3/blueman-2.2.3.tar.gz - python-qt5-devel - python-devel - python-pygobject-devel - e2fsprogs-devel - qt5-linguist - qt5-base-devel + intltool + unifdef + polkit-devel + iproute2 + util-macros + gettext-devel + python3-devel + itstool + docbook-xml + docbook-xsl + cython + gtk3-devel + glib2-devel + notify-python + bluez-libs-devel + python-gtk-devel + python3-pygobject3-devel + pulseaudio-libs-devel + startup-notification-devel - - fix_find_device.patch - - system/installer/yali/pspec.xml + hardware/bluetooth/blueman/pspec.xml - yali + blueman - python-qt5 - util-linux - python - e2fsprogs - mdadm - lvm2 - reiserfsprogs - ntfsprogs - dosfstools - xfsprogs - zorg - comar - panda - python-pyaspects - pisilinux-python - pisilinux-python-xorg - syslinux - pyqtermwidget5 - pyparted - python-pyblock - yali-branding-pisilinux - yali-theme-pisilinux - python-udev - pisilinux-desktop-services - rsync - efibootmgr - glibc-locales-nl - glibc-locales-de - glibc-locales-es - glibc-locales-pt - glibc-locales-sv - glibc-locales-fr - glibc-locales-it - glibc-locales-ca - glibc-locales-pl - glibc-locales-ru - glibc-locales-hu - glibc-locales-hr - droid-fonts + gtk3 + glib2 + python3 + bluez-libs + startup-notification + python3-pygobject3 /usr/bin + /usr/libexec + /usr/share/locale /usr/lib + /usr/lib/python3* + /usr/lib/nautilus-sendto/ /usr/share - /etc/yali - /lib/udev/rules.d/70-yali.rules + /usr/share/polkit-1 + /usr/share/doc + /usr/share/man + /etc/dbus-1/system.d + /etc/xdg/autostart - - Calamares - calamares-theme-pisilinux - - - 2022-05-24 - 3.3.7.0 + + 2021-11-10 + 2.2.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2022-05-20 - 3.3.6.0 + + 2020-05-17 + 2.1.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-08-21 - 3.3.5.0 - Rebuild stable2. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 3.3.5.0 + + 2020-03-10 + 2.1.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-08-11 - 3.3.4.0 + + 2019-09-14 + 2.1.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-02-13 - 3.3.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 3.3.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-12 - 3.2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-11 - 3.2.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-08 - 3.2.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-20 - 3.2.0.0 - Version Bump. + + 2018-09-14 + 2.0.5 + python-pygopject3 runtime deps add Erkan IŞIK erkanisik@pisilinux.org + + 2018-09-01 + 2.0.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 2.0.5 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-10 + 2.0.4 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2016-09-11 + 2.0.4 + First release + Ergün Salman + poyraz76@pisilinux.org + + + + + + bluez + http://bluez.sourceforge.net + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv2+ + service + library + app:console + hardware.bluetooth + Official Linux Bluetooth protocol stack + Linux resmi Bluetooth protokol yığını + bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. + Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. + https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.62.tar.xz + + docutils + alsa-lib-devel + cups-devel + dbus-devel + eudev-devel + glib2-devel + gstreamer-devel + json-c-devel + libical-devel + libnl-devel + libsndfile-devel + readline-devel + python3-docutils + + + 0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch + 0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch + 0002-Use-g_memdup2-everywhere.patch + + hardware/bluetooth/bluez/pspec.xml + + + bluez + Development files for bluez-libs + + bluez-libs + dbus + eudev + glib2 + json-c + libical + readline + + + /etc + /lib/bluetooth/bluetoothd + /lib/bluetooth/obexd + /lib/systemd/system + /lib/udev + /lib/udev/rules.d + /usr/bin + /usr/lib + /usr/libexec + /usr/sbin + /usr/share/alsa/bluetooth.conf + /usr/share/dbus-1 + /usr/share/man + /usr/share/misc + /usr/share/zsh + /var/lib/bluetooth + + + System.Service + + + + bluez-libs + Libraries for use in Bluetooth applications + Uygulamalar için bluetooth erişim kitaplığı + + libical + + + /usr/lib/libbluetooth.so* + /usr/share/doc + + + + bluez-libs-devel + Development files for bluez-libs + bluez-libs için geliştirme dosyaları + + bluez-libs + + + /usr/include/bluetooth + /usr/lib/pkgconfig + + + + + 2021-11-10 + 5.62 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-17 + 5.59 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 5.54 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2019-10-17 - 3.0.4.3 - Rebuild. + 2020-05-17 + 5.54 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-13 - 3.0.4.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-14 + 5.52 + Version bump. + Pisi Linux Community + admin@pisilinux.org - 2018-03-28 - 3.0.4.3 - Rebuild for 2.0 - Ertuğrul Erata - ertugrulerata@gmail.com + 2019-09-14 + 5.50 + Version bump. + Pisi Linux Community + admin@pisilinux.org - 2018-03-15 - 3.0.4.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-08-03 + 5.49 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-12-25 - 3.0.4.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-11-04 - 3.0.4.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-08-12 - 3.0.4.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-15 - 3.0.4.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-08 - 3.0.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-05 - 3.0.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - yali-branding-pisilinux - http://www.pisilinux.org - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - data - system.installer - Pisi Linux Branding files for YALI - Yali için Pisi Linux dosyaları - yali-branding includes Pisi Linux branding files for YALI(Yet Another Linux Installer). - yalı-branding YALI projesi Pisi Linux dosyalarını içerir. - https://github.com/forYali/yali-branding-pisilinux/archive/0.4.1.tar.gz - - intltool - - system/installer/yali-branding-pisilinux/pspec.xml - - - yali-branding-pisilinux - - /usr/share/doc - /usr/share/yali/branding - - - - - 2018-08-13 - 0.4.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-22 - 0.4.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-05 - 0.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - yali-theme-pisilinux - http://www.pisilinux.org - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - data - system.installer - PiSi Linux theme files for YALI - Yali için Pisi Linux tema dosyaları - yali-branding includes PiSi Linux theme files for YALI(Yet Another Linux Installer). - yalı-theme YALI projesi Pisi Linux tema dosyaları içerir. - https://github.com/forYali/yali-theme-pisilinux/archive/0.4.2.tar.gz - - qt5-base - - system/installer/yali-theme-pisilinux/pspec.xml - - - yali-theme-pisilinux - - /usr/share/doc - /usr/share/yali/theme - - - - - 2021-04-10 - 0.4.2 + 2018-05-07 + 5.49 Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-23 + 5.49 + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2018-08-13 - 0.4.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2017-12-26 + 5.43 + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2017-04-04 - 0.4.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-02-17 + 5.43 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2017-03-22 - 0.4.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2016-06-09 + 5.33 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2017-03-15 - 0.4 + 2015-08-16 + 5.33 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - ConsoleKit - https://github.com/Consolekit2 + sbc + http://www.bluez.org/ - PisiLinux Community - admins@pisilinux.org + Marcin Bojara + marcin@pisilinux.org GPLv2 + LGPLv2.1 library - system.auth - A framework for defining and tracking users, login sessions, and seats - Kullanıcıları, giriş oturumlarını ve koltukları takip etmek ve tanımlamak için bir altyapı - ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use). - ConsoleKit, sisteme giriş yapmış kullanıcıları ve bu kullanıcıların bilgisayar ile nasıl etkileştiğini izleyen bir sistem hizmetidir. - https://github.com/ConsoleKit2/ConsoleKit2/archive/refs/tags/1.2.4.tar.gz - - xmlto - acl-devel - pam-devel - util-linux - dbus-devel - eudev-devel - zlib-devel - glib2-devel - libX11-devel - libnih-devel - libdrm-devel - libxslt-devel - libevdev-devel - python3-devel - cgmanager-devel - gobject-introspection-devel - polkit-devel - elogind - - - consolekit2-conf.patch - - system/auth/ConsoleKit/pspec.xml + hardware.bluetooth + Bluetooth Subband Codec (SBC) library + An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers. + https://mirrors.edge.kernel.org/pub/linux/bluetooth/sbc-1.5.tar.xz + hardware/bluetooth/sbc/pspec.xml - ConsoleKit - - acl - pam - dbus - zlib - glib2 - libX11 - libnih - cgmanager - polkit - eudev - + sbc - /etc - /usr/lib/tmpfiles.d/ConsoleKit.conf - /usr/bin - /usr/sbin - /usr/libexec - /lib + /usr/bin/* /usr/lib - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/gtk-doc - /usr/share/polkit-1/actions - /usr/share/polkit-1/rules.d - /usr/share/man - /usr/share/locale - /usr/share/doc - /var + /usr/share/doc/sbc/* - - ConsoleKit.conf - 25-consolekit.rules - consolekit.pamd - pam-foreground-compat.ck - - ConsoleKit-devel - Development files for ConsoleKit - ConsoleKit için geliştirme dosyaları + sbc-devel + Development files for sbc - ConsoleKit - glib2-devel - dbus-devel + sbc /usr/include @@ -235538,65 +179626,141 @@ to create header files and sources from protocol files. - - 2021-07-05 - 1.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-17 - 1.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 1.2.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-08-13 - 1.2.1 - Rebuild New T. + 2021-11-10 + 1.5 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-12-13 - 1.2.1 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com + 2020-01-12 + 1.4 + Version bump. + Pisi Linux Community + admin@pisilinux.org - 2017-07-23 - 1.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-08-03 + 1.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-02-02 - 1.0.2 + 2017-02-17 + 1.3 Rebuild. Pisi Linux Community admin@pisilinux.org - 2016-06-08 - 1.0.2 + 2016-06-09 + 1.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-30 - 1.0.2 + 2014-12-12 + 1.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + intel-ucode + http://www.intel.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + hardware.cpu + Microcode update files for Intel CPUs + Intel işlemciler için microcode dosyaları + Microcode update files for Intel CPUs + Intel işlemciler için microcode dosyaları + https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/refs/tags/microcode-20220510.zip + + iucode-tool + + hardware/cpu/intel-ucode/pspec.xml + + + intel-ucode + + /usr/share/doc + /boot + + + LICENSE + + + + + 2022-05-16 + 20220510 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-26 + 20210216 + Rebuild + Berk Çakar + berk2238@hotmail.com + + + 2020-02-01 + 20180312 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 20180312 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-12 + 20180312 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 20171117 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-07 + 20161104 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 20140122 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-06 + 20140122 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -235605,90 +179769,7929 @@ to create header files and sources from protocol files. - elogind - https://github.com/elogind + irqbalance + https://github.com/Irqbalance/irqbalance + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + hardware.cpu + Distribute hardware interrupts across processors + Donanım kesmelerini işlemciler arasında dağıtır + Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. + Birden fazla işlemcili sistemlerde donanım kesmelerini (hardware interrupt) işlemciler arasında dağıtarak dengeleme sağlayan artalan süreci. Bu SMP (simetrik çoklu işlemcili) sistemlerde daha iyi performans ve G/Ç dengesi sağlar. + https://github.com/Irqbalance/irqbalance/archive/v1.6.0.tar.gz + + numactl-devel + glib2-devel + libcap-ng-devel + ncurses-devel + + hardware/cpu/irqbalance/pspec.xml + + + irqbalance + + numactl + glib2 + libcap-ng + + + /etc + /usr/sbin + /usr/share/man + /usr/share/doc + + + System.Service + + + irqbalance.confd + + + + + 2020-02-01 + 1.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 1.2.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 1.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + aufs-util + http://aufs.sourceforge.net + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:gui + hardware.disk + Utilities are always necessary for aufs + Utilities are always necessary for aufs + https://dev.gentoo.org/~jlec/distfiles/aufs-util-4.1_p20170130.tar.xz + hardware/disk/aufs-util/pspec.xml + + + aufs-util + + /etc + /sbin + /usr/bin + /usr/lib + /usr/share/man + + + + + 2018-08-19 + 20170130 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-01 + 20170130 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-20 + 20160717 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-07-23 + 20160717 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + btrfs-progs + http://btrfs.wiki.kernel.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Userspace utilities for btrfs + btrfs dosya sistemi araçları + btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. + btrfs-progs, btrfs dosya sistemleri yaratmak, denetlemek; bu dosya sistemlerindeki hataları düzeltmek ve çeşitli değişiklikler yapmak için gereken araçları içerir. + https://github.com/kdave/btrfs-progs/archive/v5.18.tar.gz + + xmlto + asciidoc + lzo-devel + zstd-devel + zlib-devel + libutil-linux-devel + util-linux + libxslt + eudev-devel + reiserfsprogs + e2fsprogs-devel + python3-devel + python3-sphinx + python3-setuptools + + hardware/disk/btrfs-progs/pspec.xml + + + btrfs-progs + + lzo + zlib + zstd + eudev + e2fsprogs + reiserfsprogs + libutil-linux + + + /usr/bin + /lib + /usr/lib + /usr/share/man + /usr/share/doc + + + + btrfs-progs-devel + Development files for btrfs-progs + + btrfs-progs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-06 + 5.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-21 + 5.15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-24 + 5.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 5.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-26 + 4.19.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-19 + 4.14 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-31 + 4.14 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-19 + 4.1.2 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 4.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-20 + 4.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + dmapi + http://oss.sgi.com/projects/xfs/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.disk + Librairie de l'API de gestion de données XFS. + XFS data management API library + XFS veri yönetimi kütüphanesi + The Data Management API (DMAPI/XDSM) allows implementation of hierarchical storage management software with no kernel modifications as well as high-performance dump programs without requiring "raw" access to the disk and knowledge of filesystem structures. + https://sources.archlinux.org/other/packages/dmapi/dmapi-2.2.12.tar.gz + + xfsprogs-devel + libutil-linux-devel + + + dmapi-add-missing-includes-to-handle2path.patch + + hardware/disk/dmapi/pspec.xml + + + dmapi + + xfsprogs + + + /lib + /usr/lib + /usr/share/doc + /usr/share/man + + + + dmapi-devel + Development files for dmapi + dmapi için geliştirme dosyaları + + dmapi + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2022-06-04 + 2.2.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-19 + 2.2.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-04-26 + 2.2.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 2.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 2.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-22 + 2.2.12 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + dmraid + http://people.redhat.com/~heinzm/sw/dmraid + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Device-Mapper Software RAID support tool and library + ATARAID aygıtlarını (Yazılımsal RAID) denetleme aracı + Device-Mapper Software RAID support tool and library + ATARAID aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. + http://launchpad.net/dmraid/1.0/1.0.0.rc16-3/+download/dmraid-1.0.0.rc16-3.tar.bz2 + + device-mapper-event-devel + device-mapper-devel + + + dmraid-diet.patch + dmraid-1.0.0_rc16-return-all-sets.patch + dmraid-1.0.0_rc16-static-build-fixes.patch + dmraid-1.0.0_rc16-undo-p-rename.patch + + hardware/disk/dmraid/pspec.xml + + + dmraid + + device-mapper + device-mapper-event + + + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man + + + + dmraid-devel + Development files for dmraid + dmraid için geliştirme dosyaları + + dmraid + + + /usr/include + + + + + 2020-02-01 + 1.0.0_rc16 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-19 + 1.0.0_rc16 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 1.0.0_rc16 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.0_rc16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-17 + 1.0.0_rc16 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + dosfstools + https://github.com/dosfstools/dosfstools + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + hardware.disk + Tools to create and check DOS and VFAT filesystems + DOS dosya sistemi oluşturmaya ve kontrol etmeye yarayan komutlar + The dosfstools package includes the DOS and VFAT filesystem utilities like mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel. You can create and check MS-DOS FAT filesystems on hard drives or on floppies + Dosfstools paketi, mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel gibi, DOS ve VFAT dosyasistemleri yaratmaya ve kontrol etmeye yarayan araçları içerir. + https://github.com/dosfstools/dosfstools/releases/download/v4.2/dosfstools-4.2.tar.gz + + eudev-devel + + hardware/disk/dosfstools/pspec.xml + + + dosfstools + + eudev + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2021-11-21 + 4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-09 + 4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-01 + 4.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 4.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-10 + 3.0.26 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-04-03 + 3.0.26 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + encfs + https://github.com/vgough/encfs + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2 + library + hardware.disk + Encrypted filesystem in user-space + Encrypted filesystem in user-space + Encrypted filesystem in user-space + Encrypted filesystem in user-space + https://github.com/vgough/encfs/releases/download/v1.9.5/encfs-1.9.5.tar.gz + + cmake + ninja + fuse-devel + openssl-devel + tinyxml2-devel + + hardware/disk/encfs/pspec.xml + + + encfs + + fuse + libgcc + openssl + tinyxml2 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-01-15 + 1.9.5 + Rebuild. + Pisi Linux Admins + admins@pisilinux.org + + + 2018-08-12 + 1.9.5 + First release. + Pisi Linux Admins + admins@pisilinux.org + + + 2017-10-18 + 1.9.2 + First release. + Pisi Linux Admins + admins@pisilinux.org + + + + + + exfat-linux + https://github.com/arter97/exfat-linux + + fury + uglyside@yandex.ru + + GPLv2 + driver + hardware.disk + exFAT filesystem module for Linux kernel + This exFAT filesystem module for Linux kernel is based on sdFAT drivers by Samsung, which is used with their smartphone lineups. + https://github.com/arter97/exfat-linux/archive/5.8-1arter97.tar.gz + + kernel + linux-firmware + kernel-headers + kernel-module-headers + + hardware/disk/exfat-linux/pspec.xml + + + exfat-linux + + exfat-utils + + + /lib/modules + /usr/share/doc/exfat-linux + + + + + 2020-06-27 + 5.8.1 + First build. + fury + uglyside@yandex.ru + + + + + + exfat-utils + https://github.com/relan/exfat + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:gui + hardware.disk + Utilities for exFAT file system + This project aims to provide a full-featured exFAT file system implementation for GNU/Linux and other Unix-like systems as a FUSE module and a set of utilities. + https://github.com/relan/exfat/releases/download/v1.3.0/exfat-utils-1.3.0.tar.gz + hardware/disk/exfat-utils/pspec.xml + + + exfat-utils + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/sbin + + + + + 2021-01-26 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.2.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-30 + 1.2.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 1.2.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 1.2.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + exfatprogs + https://github.com/exfatprogs/exfatprogs + + fury + uglyside@yandex.ru + + GPL-2 + app:console + hardware.disk + exFAT filesystem userspace utilities. + As new exfat filesystem is merged into linux-5.7 kernel, exfatprogs is created as an official userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system. + https://github.com/exfatprogs/exfatprogs/releases/download/1.1.3/exfatprogs-1.1.3.tar.xz + hardware/disk/exfatprogs/pspec.xml + + + exfatprogs + + /usr/sbin + /usr/share/man/man8 + /usr/share/doc/exfatprogs/NEWS + + + + + 2021-11-17 + 1.1.3 + Version bump. + fury + uglyside@yandex.ru + + + 2021-06-22 + 1.1.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-04 + 1.1.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-07 + 1.1.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-26 + 1.0.4 + First Beta build. + fury + uglyside@yandex.ru + + + + + + f2fs-tools + https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/about/ + + fury + uglyside@yandex.ru + + GPLv2 + LGPLv2.1 + app:console + hardware.disk + Userland tools for the f2fs filesystem. + Tools for Flash-Friendly File System (F2FS). + https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/f2fs-tools-1.15.0.tar.gz + + libutil-linux-devel + + hardware/disk/f2fs-tools/pspec.xml + + + f2fs-tools + + libutil-linux + + + /usr/sbin + /usr/include + /usr/lib + /usr/share/man/man8 + /usr/share/doc + + + + + 2022-06-05 + 1.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-12 + 1.14.0 + First Beta build. + fury + uglyside@yandex.ru + + + + + + fatresize + https://github.com/ya-mouse/fatresize + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + hardware.disk + A utility to resize FAT filesystems using libparted + A utility to resize FAT filesystems using libparted + Libparted kullanarak FAT dosya sistemlerini yeniden boyutlandırmak için bir yardımcı program + Libparted kullanarak FAT dosya sistemlerini yeniden boyutlandırmak için bir yardımcı program + + https://github.com/ya-mouse/fatresize/archive/v1.1.0.tar.gz + + parted-devel + + hardware/disk/fatresize/pspec.xml + + + fatresize + + parted + + + /usr/sbin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-06-06 + 1.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-22 + 1.0.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + fsarchiver + http://www.fsarchiver.org/ + + marcin bojara + marcin@pisilinux.org + + GPLv2 + app:console + hardware.disk + Sicherung und Wiederherstellung von Dateisystemen + Safe and flexible file-system backup/deployment tool. + Bezpieczne i elastyczne narzędzie do tworzenia kopii zapasowej systemu plików. + fsarchiver ist ein Konsolenprogramm zum Sichern und Wiederherstellen von Partitionen und Verzeichnissen. + FSArchiver is a system tool that allows you to save the contents of a file-system to a compressed archive file. + FSArchiver jest narzędziem systemowym, które pozwala na zapisanie zawartości systemu plików w skompresowanym pliku. + https://github.com/fdupoux/fsarchiver/releases/download/0.8.5/fsarchiver-0.8.5.tar.gz + + lzo-devel + xz-devel + zlib-devel + bzip2 + e2fsprogs-devel + libgcrypt-devel + attr-devel + libutil-linux-devel + + hardware/disk/fsarchiver/pspec.xml + + + fsarchiver + + lzo + xz + zlib + bzip2 + e2fsprogs + libgcrypt + libutil-linux + + + /usr/sbin + /usr/share/man + /usr/share/doc + + + + + 2020-02-01 + 0.8.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.8.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-01 + 0.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 0.8.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.6.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 0.6.21 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + fuse-exfat + https://github.com/relan/exfat + + PisiLinux Community + admin@pisilinux.org + + GPLv3 + app + hardware.disk + exFAT filesystem fuse module + exFAT dosya sistemi bağlamak için araçlar + exFAT filesystem fuse module + exFAT dosya sistemi bağlamak için araçlar + https://github.com/relan/exfat/releases/download/v1.3.0/fuse-exfat-1.3.0.tar.gz + + fuse-devel + + hardware/disk/fuse-exfat/pspec.xml + + + fuse-exfat + + fuse + exfatprogs + exfat-utils + + + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/doc + + + + + 2021-01-26 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.2.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-30 + 1.2.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 1.2.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 1.2.3 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + gpart + https://github.com/baruch/gpart + + AYDIN ATMACA + aydinatmaca@gmail.org + + GPLv2 + app:gui + hardware.disk + Partition table rescue/guessing tool + Gpart is a small tool which tries to guess what partitions are on a PC type harddisk in case the primary partition table was damaged. + https://github.com/baruch/gpart/archive/0.3.tar.gz + hardware/disk/gpart/pspec.xml + + + gpart + + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/doc + + + + + 2021-01-12 + 0.3 + First Beta release. + AYDIN ATMACA + aydinatmaca@gmail.com + + + + + + gparted + https://gparted.org/ + + AYDIN ATMACA + aydinatmaca@gmail + + GPLv2 + app:gui + hardware.disk + Gnome Partition tool based on GNU-Parted. + GNU Parted tabanlı Gnome disk bölümleme aracı + GParted is the Gnome Partition Editor application. GParted is an industrial-strength package for creating, destroying, resizing, moving, checking and copying partitions, and the filesystems on them. This is useful for creating space for new operating systems, reorganizing disk usage, copying data residing on hard disks and mirroring one partition with another (disk imaging). + GParted Gnome masaüstü ortamının disk bölümleme uygulamasıdır. Bu program, disk bölümleme, dosya sistemleri oluşturma, silme, boyutlandırma, taşıma, kontrol ve kopyalama işlemlerini yapabilir. Yeni bir işletim sistemi için yer açmak, disk kullanımını yeniden düzenlemek, verileri diskin bir başka bölümüne aynalamak ve yerleştirmek için faydalıdır. + mirrors://sourceforge/project/gparted/gparted/gparted-1.4.0/gparted-1.4.0.tar.gz + + itstool + intltool + atkmm-devel + polkit-devel + parted-devel + gtkmm3-devel + libxml2-devel + elogind-devel + + hardware/disk/gparted/pspec.xml + + + gparted + + gtk3 + glib2 + xterm + gpart + atkmm + libgcc + polkit + gtkmm3 + parted + glibmm + mtools + ntfs-3g + cairomm + pangomm + elogind + xfsdump + xfsprogs + jfsutils + xdg-utils + libsigc++ + f2fs-tools + exfatprogs + dosfstools + nilfs-utils + btrfs-progs + reiserfsprogs + libutil-linux + + + /usr/bin + /usr/libexec + /usr/share/appdata/ + /usr/share/applications + /usr/share/icons + /usr/share/polkit-1 + /usr/share/locale + /usr/share/man + /usr/share/help + + + + + 2022-06-04 + 1.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-14 + 1.4.0 + Version bump + fury + uglyside@gmail.com + + + 2021-07-21 + 1.3.1 + Version bump + AYDIN ATMACA + aydinatmaca@gmail.com + + + 2021-05-04 + 1.3.0 + Version bump + AYDIN ATMACA + aydinatmaca@gmail.com + + + 2021-01-26 + 1.2.0 + Version bump. + AYDIN ATMACA + aydinatmaca@gmail.com + + + 2021-01-12 + 1.1.0 + First Beta release. + AYDIN ATMACA + aydinatmaca@gmail.com + + + + + + gptfdisk + http://www.rodsbooks.com/gdisk/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:console + hardware.disk + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + A text-mode partitioning tool that works on GUID Partition Table (GPT) disks + http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.9/gptfdisk-1.0.9.tar.gz + + util-linux + ncurses-devel + popt-devel + libutil-linux-devel + + hardware/disk/gptfdisk/pspec.xml + + + gptfdisk + + ncurses + popt + libgcc + libutil-linux + + + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2022-06-06 + 1.0.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-21 + 1.0.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 1.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-01 + 1.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-08 + 1.0.1 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-28 + 1.0.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + hdparm + https://sourceforge.net/projects/hdparm/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + hardware.disk + Utility to change hard drive performance parameters + Sabit disk parametrelerini değiştirmekte kullanılan araç + le paquet hdparm dispose d'outils utiles permettant d'obtenir/établir les paramètres de disques durs IDE sous Linux en cours d'éxécution. + hdparm has some useful utilities that allows you to get/set hard disk parameters for Linux IDE drives in runtime. + hdparm paketi çalışma anında Linux IDE sürücülerinin parametrelerini almanıza/değiştirmenize olanak sağlayan bazı kullanışlı uygulamaları içerir. + https://sourceforge.net/projects/hdparm/files/hdparm/hdparm-9.63.tar.gz + hardware/disk/hdparm/pspec.xml + + + hdparm + + /sbin + /usr/share/doc + /usr/share/man + /etc/conf.d + + + hdparm.confd + + + + + 2022-06-06 + 9.63 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 9.58 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 9.54 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 9.52 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 9.51 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 9.43 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 9.43 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + jfsutils + http://jfs.sourceforge.net/ + + AYDIN ATMACA + aydinatmaca@gmail + + GPLv2 + app:console + hardware.disk + IBM's Journaling Filesystem (JFS) Utilities. + IBM'in günlüklü dosya sistemi JFS için araçlar + Contains tools to work with JFS (Journaling Filesystem) developed by IBM. + IBM'in geliştirdiği günlüklü dosya sistemi (JFS - Journalling File System) araçlarını içerir. + http://jfs.sourceforge.net/project/pub/jfsutils-1.1.15.tar.gz + + libutil-linux-devel + + + gcc10.patch + missing_stdint_header.patch + inttypes.patch + sysmacros.patch + + hardware/disk/jfsutils/pspec.xml + + + jfsutils + + libutil-linux + + + /usr/sbin + /usr/share/doc + /usr/share/man + + + + + 2021-01-12 + 1.1.15 + First Beta rebuild. + AYDIN ATMACA + aydinatmaca@gmail.com + + + + + + libatasmart + http://0pointer.de/blog/projects/being-smart.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + app:console + hardware.disk + ATA S.M.A.R.T. Disk Health Monitoring Library + ATA S.M.A.R.T. disk sağlığı izleme kitaplığı + A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring. + libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır. + http://0pointer.de/public/libatasmart-0.19.tar.xz + + eudev-devel + + + libatasmart-uninitialized-var.patch + libatasmart-0.19-wd-fix.patch + + hardware/disk/libatasmart/pspec.xml + + + libatasmart + + eudev + + + /usr/sbin/skdump + /usr/sbin/sktest + /usr/lib/libatasmart.so* + /usr/share/doc/libatasmart/README + /usr/share/doc/libatasmart/LGPL + + + + libatasmart-devel + Development files for libatasmart + libatasmart için geliştirme dosyaları + + libatasmart + eudev-devel + + + /usr/include + /usr/share/vala + /usr/lib/pkgconfig + /usr/share/doc + + + + + 2020-02-01 + 0.19 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 0.19 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 0.19 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.19 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libblockdev + https://github.com/storaged-project/libblockdev + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + app + hardware.disk + A library for manipulating block devices + A library for manipulating block devices + Blok cihazlarını değiştirmek için bir kütüphane + Blok cihazlarını değiştirmek için bir kütüphane + https://github.com/storaged-project/libblockdev/releases/download/2.26-1/libblockdev-2.26.tar.gz + + nss-devel + mdadm + util-linux + glib2-devel + parted-devel + libyaml-devel + python3-devel + libkmod-devel + volume_key-devel + libbytesize-devel + libcryptsetup-devel + libutil-linux-devel + device-mapper-devel + gobject-introspection-devel + + hardware/disk/libblockdev/pspec.xml + + + libblockdev + + nss + nspr + glib2 + eudev + parted + libyaml + libkmod + volume_key + libbytesize + libcryptsetup + libutil-linux + device-mapper + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + libblockdev-devel + Development files for libblockdev + + libblockdev + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 2.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-11 + 2.25 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 2.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-28 + 2.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 2.23 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-02 + 2.20 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libbytesize + https://github.com/storaged-project/libbytesize + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + app + hardware.disk + A tiny library providing a C "class" for working with arbitrary big sizes in bytes + A tiny library providing a C "class" for working with arbitrary big sizes in bytes + Bayt cinsinden rastgele büyük boyutlarla çalışmak için C sınıfı olan kütüphane + Bayt cinsinden rastgele büyük boyutlarla çalışmak için C sınıfı olan kütüphane + https://github.com/storaged-project/libbytesize/releases/download/2.5/libbytesize-2.5.tar.gz + + libpcre2-devel + python3-devel + python-devel + mpfr-devel + gmp-devel + + hardware/disk/libbytesize/pspec.xml + + + libbytesize + + libpcre2 + mpfr + gmp + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + libbytesize-devel + Development files for libbytesize + + libbytesize + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 2.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-11 + 2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-02 + 1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libisofs + https://dev.lovelyhq.com/libburnia/web/wiki + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + hardware.optical + A library for creating ISO disc images + ISO kalıbı oluşturmak için gerekli kitaplıklar + libisofs is a library that handles creating ISO disc image files. It is intended to work together with libburn to write these images to discs + libisofs, ISO kalıbını oluşturmak için gerekli kitaplıkları içeren pakettir. Bu paket ayrıca Libburn'u kullanarak, ISO kalıplarını CD, DVD veya benzeri disklere yazdırmanıza olanağı sağlar. + http://files.libburnia-project.org/releases/libisofs-1.5.4.tar.gz + + acl-devel + zlib-devel + + hardware/disk/libisofs/pspec.xml + + + libisofs + + acl + zlib + + + /usr/lib + /usr/share/doc + + + + libisofs-devel + Development files for libisofs + libisofs için geliştirme dosyaları + + libisofs + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/libisofs/Tutorial + /usr/share/doc/libisofs/checksums.txt + /usr/share/doc/libisofs/susp_aaip_2_0.txt + /usr/share/doc/libisofs/susp_aaip_isofs_names.txt + /usr/share/doc/libisofs/zisofs_format.txt + + + + + 2021-08-11 + 1.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-18 + 1.4.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 1.4.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 1.4.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 1.4.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + nilfs-utils + https://nilfs.sourceforge.io/en/ + + AYDIN ATMACA + aydinatmaca@gmail.com + + GPLv2 + LGPLv2.1 + app:gui + hardware.disk + A log-structured file system supporting continuous snapshotting (userspace utils) + NILFS is a log-structured file system supporting versioning of the entire file system and continuous snapshotting which allows users to even restore files mistakenly overwritten or destroyed just a few seconds ago. + https://nilfs.sourceforge.io/download/nilfs-utils-2.2.8.tar.bz2 + + libutil-linux-devel + + hardware/disk/nilfs-utils/pspec.xml + + + nilfs-utils + + libutil-linux + + + /etc + /sbin + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc + + + + nilfs-utils-devel + nilfs-utils için geliştirm edosyaları + nilfs-utils için geliştirm edosyaları + + nilfs-utils + + + /usr/include + + + + + 2021-01-12 + 2.2.8 + First Beta release. + AYDIN ATMACA + aydinatmaca@gmail.com + + + + + + ntfs-3g + http://www.tuxera.com/community/ntfs-3g-download + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + LGPLv2+ + library + app:console + hardware.disk + Userspace driver for NTFS read/write support + NTFS dosya sistemlerine okuma/yazma erişimi için bir sürücü + ntfs-3g allows regular users read/write access to NTFS filesystems. + ntfs-3g kullanıcıların NTFS biçimli disk bölümlerine hem okuma hem yazma erişimi yapabilmesine imkan veren bir sürücüdür. + https://github.com/tuxera/ntfs-3g/archive/refs/tags/2022.5.17.tar.gz + + autoconf + libgcrypt-devel + fuse-devel + libutil-linux-devel + + hardware/disk/ntfs-3g/pspec.xml + + + ntfs-3g + + fuse + + + /bin + /sbin + /lib + /usr/lib + /usr/include + /usr/lib/pkgconfig + /usr/share/hal/fdi + /usr/share/doc/ntfs-3g + /usr/share/man/man8/mount* + /usr/share/man/man8/ntfs-3g* + + + + ntfsprogs + Userspace tools for NTFS filesystems + NTFS dosya sistemi için kullanıcı araçları + Userspace tools for NTFS filesystems. The goals of the Linux-NTFS project are to develop reliable and full-featured access to NTFS by the Linux kernel driver and to provide a wide collection of NTFS utilities. + NTFS dosya sistemi için kullanıcı araçları içerir. Bu araçların amacı Linux çekirdeğine NTFS dosya sistemlerine güvenilir ve tam erişim sağlayacak NTFS araçlarını sağlamaktır. + hardware.disk + + ntfs-3g + fuse + libutil-linux + + + /sbin/mkfs.ntfs + /usr/bin + /usr/sbin + /usr/share/doc/ntfsprogs + /usr/share/man/man8 + + + + + 2022-06-06 + 2022.5.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 2017.3.23 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-13 + 2017.3.23 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 2017.3.23 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-20 + 2017.3.23 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-20 + 2016.2.22 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-27 + 2016.2.22 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2015.3.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-30 + 2015.3.14 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + parted + https://www.gnu.org/software/parted/parted.html + + PisiLinux Community + admins@pisilinux.org + + GPL-3 + app:console + hardware.disk + Crée, supprime, modifie les dimensions, vérifie et copie partitions et systèmes de fichiers. + Create, destroy, resize, check, copy partitions and file systems + GNU Parted disk bölümlerini oluşturmaya, silmeye, boyutlandırmaya, taşımaya ve kopyalamaya yarayan bir yazılımdır. + The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. + https://ftp.gnu.org/gnu/parted/parted-3.5.tar.xz + + autoconf + libutil-linux-devel + device-mapper-devel + readline-devel + + hardware/disk/parted/pspec.xml + + + parted + + libutil-linux + device-mapper + util-linux + readline + ncurses + + + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/info + /usr/share/locale + /usr/share/man + + + + parted-devel + Development files for parted + parted için geliştirme dosyaları + + parted + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-04 + 3.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-04 + 3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-17 + 3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 3.2 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-21 + 3.2 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-08-09 + 3.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + reiserfsprogs + http://www.kernel.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Tools to work with Reiserfs filesystems + Reiserfs dosya sistemleriyle çalışabilmek için gereken araçlar + Contains tools designed to create, modify and check Reiserfs filesystems. + Reiserfs dosya sistemleri oluşturmak, bu dosya sistemlerinde hata kontrolü yapmak, bu sistemlerin boyutlarını değiştirmek ve hata ayıklamak gibi görevler taşıyan araçlar. + https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.xz + + libutil-linux-devel + e2fsprogs-devel + acl-devel + + hardware/disk/reiserfsprogs/pspec.xml + + + reiserfsprogs + + e2fsprogs + libutil-linux + + + /sbin + /usr/lib + /usr/include + /usr/share/doc + /usr/share/man + + + + + 2020-02-01 + 3.6.27 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 3.6.27 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-05 + 3.6.27 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-05 + 3.6.25 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-28 + 3.6.25 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 3.6.24 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-13 + 3.6.24 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + sg3_utils + http://sg.danny.cz/sg/sg3_utils.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + app:console + library + hardware.disk + Utilities for devices that use SCSI command sets + SCSI komut setini kullanan aygıtlar için araçlar + sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. + sg3_utils SCSI komut setini kullanan aygıtlar için çeşitli araçlar sunar. + https://sg.danny.cz/sg/p/sg3_utils-1.46.tar.xz + hardware/disk/sg3_utils/pspec.xml + + + sg3_utils + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + rescan-scsi-bus.sh + + + + sg3_utils-devel + Development files for sg3_utils + sg3_utils için geliştirme dosyaları + + sg3_utils + + + /usr/include + + + + + 2022-06-06 + 1.47 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.44 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.43 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 1.43 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 1.42 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.41 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-19 + 1.41 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + smartmontools + http://smartmontools.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + hardware.disk + Programs to control and monitor storage systems using the Self-Monitoring + Hard disk kontrol ve durumunu gösteren programlar + The smartmontools package contains two utility programs (smartctl and smartd) to control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (SMART) built into most modern ATA and SCSI hard disks. + smartctl ve smartd adlı ATA ve SCSI diskleri kontrol ve durumlarını gösterir iki program. + mirrors://sourceforge/smartmontools/7.3/smartmontools-7.3.tar.gz + + libutil-linux-devel + libcap-ng-devel + + hardware/disk/smartmontools/pspec.xml + + + smartmontools + + libgcc + libcap-ng + + + /etc + /lib/systemd/system + /usr/sbin + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/smartmontools + + + System.Service + + + smartmontools.sysconf + + + + + 2022-06-06 + 7.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-22 + 7.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 6.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 6.6 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 6.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 6.4 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + squashfs-tools + http://squashfs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + Userspace tools to create squashfs compressed filesystem + squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı + Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. + squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. + https://github.com/plougher/squashfs-tools/archive/refs/tags/4.5.1.tar.gz + + lzo-devel + lz4-devel + zstd-devel + xz-devel + zlib-devel + + hardware/disk/squashfs-tools/pspec.xml + + + squashfs-tools + + lzo + lz4 + zstd + zlib + xz + + + /usr/sbin + /usr/share/doc + /usr/share/man + + + + + 2022-06-06 + 4.5.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-11 + 4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-26 + 4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 4.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-20 + 4.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-28 + 4.3 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 4.2 + First release + Varol Maksutoğlu + waroi@pisilinux.org + + + + + + sshfs + http://fuse.sourceforge.net/sshfs.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.disk + A filesystem client based on the SSH FTP + SSH FTP alanı dosyasistemi + sshfs allows mounting remote SSH accounts as a filesystem. + sshfs, SSH dosya aktarım protokülünü kullanarak bir dosyasistemi oluşturmanıza olanak verir. Böylece, uzak sistemdeki SSH FTP alanınızı diskinizin bir parçasıymış gibi kullanabilirsiniz. + https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz + + fuse-devel + glib2-devel + + hardware/disk/sshfs/pspec.xml + + + sshfs + + fuse + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-02-01 + 2.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-18 + 2.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-28 + 2.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 2.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 2.5 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + testdisk + http://www.cgsecurity.org/index.html?testdisk.html Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org - GPLv2.1 + GPLv2 app:console - system.auth - Elogind User, Seat and Session Manager - Elogind; kullanıcı, oturum ve seat Yöneticisi - Elogind is the systemd project's "logind", extracted out to be a standalone daemon. It integrates with PAM to know the set of users that are logged in to a system and whether they are logged in graphically, on the console, or remotely. - Elogind kullanıcıların oturum açma kapama durumlarını denetlerken çoklu oturumlara da izin veren hizmettir. - https://github.com/elogind/elogind/archive/refs/tags/v246.10.tar.gz + hardware.disk + Powerful free data recovery software + Güçlü ve açık kaynak bir veri kurtarma programı + TestDisk is a multi-platform tool to check and undelete partitions; supports reiserfs, ntfs, fat32, ext2/3 and many others. Also includes PhotoRec to recover pictures from digital camera memory. + Çok platformlu reiserfs,ntfs, fat32, ext2/3 ve daha bir çok farklı dosya sistemini destekleyen disk kontrol ve veri kurtarma programı. Ayrıca içerdiği PhotoRec ile de dijital kamera hafızasından veri kurtarabilmekte + https://www.cgsecurity.org/testdisk-7.2-WIP.tar.bz2 - gperf - meson - ninja - libxslt-devel - sysvinit - acl-devel - pam-devel - dbus-devel - audit-devel - docbook-xsl - eudev-devel - glib2-devel - libcap-devel - cgmanager-devel - libevdev-devel - p11-kit-devel - kernel-headers - libpcre2-devel - bash-completion + sudo + ntfsprogs + python-qt5 + zlib-devel + qt5-linguist + ncurses-devel + reiserfsprogs + qt5-base-devel + desktop-file-utils + libjpeg-turbo-devel - system/auth/elogind/pspec.xml + hardware/disk/testdisk/pspec.xml - elogind - Elogind User, Seat and Session Manager + testdisk - acl - pam - audit - eudev - libevdev - dbus - cgmanager - libcap - bash-completion + zlib + ntfs-3g + ncurses + ntfsprogs + libjpeg-turbo + libutil-linux - /etc - /lib - /bin - /usr/lib /usr/share/doc - /usr/share/man - /usr/share/zsh - /usr/bin - /usr/share/dbus-1 - /usr/share/factory - /usr/share/polkit-1 - /usr/share/locale - /usr/share/bash-completion + /usr/bin/testdisk + /usr/bin/fidentify + /usr/share/man/man8/testdisk.8 + /usr/share/man/man8/fidentify.8 + /usr/share/pixmaps/testdisk_logo.png + /usr/share/applications/testdisk.desktop + /usr/share/icons/hicolor/icon-theme.cache - - System.Service - System.Package - - tmpfiles.conf - 25-elogind.rules - 25-elogind.rules - elogind-user + photorec.desktop + testdisk.desktop + photorec_logo.png + testdisk_logo.png - elogind-devel - Development files for elogind - elogind için geliştirme dosyaları - elogind-devel, elogind için geliştirme dosyalarını içerir. + qphotorec - elogind + zlib + libgcc + ncurses + ntfs-3g + qt5-base + testdisk + python-qt5 + libjpeg-turbo + + + /usr/bin/photorec + /usr/bin/qphotorec + /usr/share/man/man8/photorec.8 + /usr/share/man/man8/qphotorec.8 + /usr/share/pixmaps/photorec_logo.png + /usr/share/applications/photorec.desktop + /usr/share/applications/qphotorec.desktop + /usr/share/icons/hicolor/48x48/apps/qphotorec.png + /usr/share/icons/hicolor/scalable/apps/qphotorec.svg + + + + + 2020-02-01 + 7.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-03 + 7.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + thin-provisioning-tools + https://github.com/jthornber/thin-provisioning-tools + + Ali Algul + alialgul@pisilinux.org + + GPLv2 + hardware.disk + A suite of tools for thin provisioning on Linux + A suite of tools for thin provisioning on Linux + https://github.com/jthornber/thin-provisioning-tools/archive/v0.8.5.tar.gz + + libaio-devel + boost-devel + expat-devel + libgcc + + hardware/disk/thin-provisioning-tools/pspec.xml + + + thin-provisioning-tools + + expat + libgcc + libaio + + + /usr/sbin/ + /usr/share/man/man8/ + + + + + 2021-03-12 + 0.8.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.7.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 0.7.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-01 + 0.7.5 + version Bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-04-09 + 0.6.3 + version Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-31 + 0.6.0 + First release + Ali Algul + alialgul@pisilinux.org + + + + + + udftools + https://github.com/pali/udftools + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + hardware.disk + Linux UDF Filesystem userspace utilities + Linux UDF Filesystem userspace utilities + UDF dosya sistemleri ve DVD / CD-R (W) sürücüleri için Linux araçları + UDF dosya sistemleri ve DVD / CD-R (W) sürücüleri için Linux araçları + https://github.com/pali/udftools/releases/download/2.3/udftools-2.3.tar.gz + + eudev-devel + readline-devel + ncurses-devel + + hardware/disk/udftools/pspec.xml + + + udftools + + readline + + + /usr/bin + /usr/sbin + /lib/udev + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-06-06 + 2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 2.1 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-11-02 + 2.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + udiskie + https://pypi.python.org/pypi/udiskie + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + app:gui + hardware.disk + Removable disk automounter using udisks2 + Removable disk automounter using udisks2 + Udiskie est un frontal udisks2 qui permet de gérer des supports amovibles tels que des CD ou des clés USB depuis l'espace utilisateur. + Udiskie is a udisks2 front-end that allows to manage removeable media such as CDs or flash drives from userspace. + udiskie, CD'ler veya usb flash sürücüler gibi çıkarılabilir ortamların kullanıcı alanından yönetilmesine izin veren bir udisks2 ön ucudur. + https://files.pythonhosted.org/packages/a5/0c/b1aaddf8c53a1f186f2d95d1073d88876d227685454adac4ff547ac03328/udiskie-2.3.3.tar.gz + + pip3 + keyutils + asciidoc + gtk3-devel + python3-devel + udisks2-devel + python3-wheel + python3-PyYAML + python-keyutils + libnotify-devel + python3-setuptools + python3-pygobject3-devel + + hardware/disk/udiskie/pspec.xml + + + udiskie + + gtk3 + python3 + udisks2 + libnotify + python-docopt + python3-PyYAML + python-keyutils + python3-pygobject3 + + + /usr/bin + /usr/lib/python3.8/site-packages/udiskie + /usr/share/zsh/site-functions + /usr/share/locale + /usr/share/doc/udiskie + + + + + 2021-09-25 + 2.3.3 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + udisks2 + http://udisks.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + hardware.disk + Disk Management Service + Disk Yönetim Hizmeti + udisks provides a daemon, API and command line tools for managing disk devices attached to the system. + udisks, sisteme bağlı disk aygıtlarını yönetmek için programlama kitaplığı ve komut satırı araçları sunar. + https://github.com/storaged-project/udisks/releases/download/udisks-2.9.4/udisks-2.9.4.tar.bz2 + + gtk-doc + acl-devel + glib2-devel + polkit-devel + elogind-devel + python-six + libgudev-devel + parted-devel + libatasmart-devel + device-mapper-devel + lvm2-devel + gobject-introspection-devel + sg3_utils-devel + ntfsprogs + dosfstools + docbook-xsl + libxslt-devel + mdadm + intltool + ntfs-3g + gptfdisk + btrfs-progs-devel + libblockdev-devel + + + udisks-2.x-ntfs-3g.patch + + hardware/disk/udisks2/pspec.xml + + + udisks2 + + acl + glib2 + polkit + libgudev + lvm2 + mdadm + parted + elogind + libatasmart + device-mapper + ntfsprogs + dosfstools + sg3_utils + libblockdev + libutil-linux + + + /etc/udisks2 + /etc/dbus-1 + /lib/udev/rules.d + /usr/bin + /usr/sbin + /usr/lib + /usr/libexec + /usr/share/bash-completion/completions + /usr/share/doc + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/polkit-1/ + /usr/share/man + /var/lib/ + /run/udisks + /usr/share/dbus-1/interfaces/*.xml + + + + udisks2-docs + Development files for udisks2 + + udisks2 + + + /usr/share/gtk-doc + + + + udisks2-devel + Development files for udisks2 + udisks için geliştirme dosyaları + + udisks2 + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-21 + 2.9.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-11 + 2.9.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-21 + 2.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-28 + 2.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 2.8.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 2.8.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 2.1.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 2.1.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 2.1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 2.1.6 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + volume_key + https://pagure.io/volume_key + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + hardware.disk + A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases + A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases + Depolama birimi şifreleme anahtarlarını değiştirmek ve unutulan parolaları işlemek için bunları ayrı birimlerden saklamak için bir kütüphane + Depolama birimi şifreleme anahtarlarını değiştirmek ve unutulan parolaları işlemek için bunları ayrı birimlerden saklamak için bir kütüphane + https://releases.pagure.org/volume_key/volume_key-0.3.12.tar.xz + + swig + nss-devel + glib2-devel + gpgme-devel + python-devel + python3-devel + libassuan + libgpg-error + libutil-linux-devel + libcryptsetup-devel + + hardware/disk/volume_key/pspec.xml + + + volume_key + + nspr + nss + gettext + glib2 + gpgme + python + python3 + libassuan + libgpg-error + libutil-linux + libcryptsetup + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + volume_key-devel + Development files for volume_key + + volume_key + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 0.3.12 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2020-11-07 + 0.3.12 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2020-02-01 + 0.3.12 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2018-12-29 + 0.3.12 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-12-29 + 0.3.11 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xfsdump + https://git.kernel.org/pub/scm/fs/xfs/xfsdump-dev.git/ + + AYDIN ATMACA + aydinatmaca@gmail + + LGPLv2.1 + app:console + hardware.disk + XFS dump/restore utilities. + XFS döküm ve geri yükleme araçları + xfsdump contains XFS filesystem dump and restore utilities. + xfsdump, XFS dosya sistemi döküm (dump) ve geri yükleme (restore) araçlarını içerir. + http://ftp.ntu.edu.tw/pub/linux/utils/fs/xfs/xfsdump/xfsdump-3.1.10.tar.xz + + attr-devel + dmapi-devel + ncurses-devel + xfsprogs-devel + libutil-linux-devel + + + no_symlink.patch + skip_inventory_debian_subfolder.patch + no_changes_compress.patch + xfs_restore.patch + + hardware/disk/xfsdump/pspec.xml + + + xfsdump + + attr + gawk + dmapi + uuidd + ncurses + libtool + gettext + xfsprogs + libutil-linux + + + /sbin + /usr/sbin + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-06-04 + 3.1.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-18 + 3.1.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 3.1.9 + First Beta release. + AYDIN ATMACA + aydinatmaca@gmail.com + + + + + + xfsprogs + http://oss.sgi.com/projects/xfs/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.disk + XFS filesystem utilities + XFS dosya sistemi araçları + xfsprogs contains a number of administrative utilities to work with and manage XFS filesystems. + xfsprogs XFS dosya sistemini kullanmak ve yönetmek için bir dizi araç içerir. + https://mirrors.edge.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-5.18.0.tar.xz + + icu4c-devel + liburcu-devel + libinih-devel + readline-devel + libunistring-devel + libutil-linux-devel + device-mapper-devel + + hardware/disk/xfsprogs/pspec.xml + + + xfsprogs + + icu4c + liburcu + libinih + readline + libunistring + libutil-linux + device-mapper + + + /lib + /sbin + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/man + /usr/share/xfsprogs + + + + xfsprogs-devel + Development headers for xfsprogs + + libutil-linux-devel + xfsprogs + + + /usr/include + /usr/share/man/man3 + + + + + 2022-06-04 + 5.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-08 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-21 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-23 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 5.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 5.4.0 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2019-04-26 + 4.19.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.15.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-29 + 4.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 3.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-04 + 3.2.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + dosbox + http://www.dosbox.com/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + hardware.emulator + DOSBox is a DOS emulator. + DOSBox, bir DOS öykünücüsüdür. + DOSBox is a DOS-emulator that uses the SDL-library. + DOSBox, SDL kitaplığını kullanan bir DOS öykünücüsüdür. + dosbox + https://sourceforge.net/projects/dosbox/files/dosbox/0.74-3/dosbox-0.74-3.tar.gz + + alsa-lib-devel + libsdl-devel + + + dosbox-0.74_gcc4.6_compat.patch + + hardware/emulator/dosbox/pspec.xml + + + dosbox + + alsa-lib-32bit + libsdl-32bit + + + /usr/share/doc/dosbox + /usr/share/man + /usr/bin + /usr/share/icons + /usr/share/pixmaps + /usr/share/applications + + + dosbox.png + dosbox.desktop + icons/hicolor/16x16/apps/dosbox.png + icons/hicolor/24x24/apps/dosbox.png + icons/hicolor/32x32/apps/dosbox.png + icons/hicolor/48x48/apps/dosbox.png + icons/hicolor/96x96/apps/dosbox.png + icons/hicolor/128x128/apps/dosbox.png + icons/hicolor/256x256/apps/dosbox.png + + + + + 2020-06-27 + 0.74.3 + First release + Erdem Ersoy + erdemersoy@live.com + + + + + + playonlinux + http://www.playonlinux.com + + Ergün Salman + poyraz76@pisilinux.org + + GPLv3 + app:gui + app:console + hardware.emulator + Tool to help Linux users run Windows games on linux + Birçok Windows oyununu Linux'ta oynayabilmenizi sağlar + PlayOnLinux is a piece of sofware which allow you to install and use easily numerous games and softwares designed to run with Microsoft's Windows. + PlayOnLinux, Microsoft's Windows için hazırlanan çok sayıdaki oyunu ve uygulamayı Linux'ta kullanmanıza olanak sağlayan bir uygulamadır. + PlayOnLinux + http://repository.playonlinux.com/PlayOnLinux/4.3.4/PlayOnLinux_4.3.4.tar.gz + + PlayOnLinux_4.1.6-fix-desktop-file.patch + + hardware/emulator/playonlinux/pspec.xml + + + playonlinux + + jq + wxPython + wine + wget + gnu-netcat + icoutils + binutils + imagemagick + xterm + p7zip + gnupg + + + /usr/bin + /usr/share/doc + /usr/share/applications + /usr/share/pixmaps + /usr/share/playonlinux + /usr/share/playonlinux/lang/ + /usr/share/locale/ + + + PlayOnLinux.desktop + playonlinux.png + + + + + 2020-06-07 + 4.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 4.2.12 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 4.2.12 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-29 + 4.2.10 + rebuild + Ali Algül + aligulle3801@gmail.com + + + 2016-07-03 + 4.2.10 + First Release + Ergün Salman + poyraz76@pisilinux.org + + + + + + wine + http://www.winehq.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.emulator + Wine bir "Emülator" değildir,Windows uygulamalarını çalıştırma imkanı sunar. + Wine ist kein Emulator, mit dem Sie Microsoft Windows-Anwendungen laufen lässt + WINE Is Not An Emulator, which lets you run Microsoft Windows applications + Wine X11 çalıştıran bir i386 (veya uyumluları) makinede Windows 3.*, Windows 95/98 ve Windows NT programlarını çalıştırmanıza imkân verir. Halâ alfa düzeyinde olduğundan her şey çalışmayabilir. + Wine gibt ihnen die möglichkeit um Windows 3. *, Windows 95/98 und Windows NT-Programme auf einem i386 (oder kompatibel) System X11 zu laufen. Es ist immer noch Alpha-Level-Code, nicht erwarten, dass alles funktioniert. + Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work. + https://dl.winehq.org/wine/source/5.x/wine-5.9.tar.xz + + mit-kerberos + lcms2-devel + libao-devel + libSM-devel + mpg123-devel + openal-devel + openssl-devel + libsdl2-devel + libv4l-devel + libXext-devel + e2fsprogs-devel + samba-devel + libxslt-32bit + mesa-glu-devel + alsa-lib-devel + gstreamer-devel + openldap-client + libgphoto2-devel + libunwind-devel + pulseaudio-libs-devel + gst-plugins-base-devel + cups-devel + gnutls-devel + gnutls-32bit + libXcursor-devel + libXi-devel + libXrandr-devel + libXxf86vm-devel + sane-backends-devel + unixODBC-devel + dbus-devel + fontconfig-devel + gsm-devel + libjpeg-turbo-devel + libXcomposite-devel + libXinerama-devel + libxslt-devel + tiff-devel + gettext-devel + giflib-devel + v4l-utils + libpng + libtevent-devel + jack-audio-connection-kit-devel + fontforge + freetype-devel + freetype-32bit + libpcap-devel + util-linux + ncurses-devel + + + wine-1.9.3-gcc-5_3_0-disable-force-alignment.patch + gcc_erorr.patch + 0001-programs-winhlp32-Use-noyywrap-for-macro.lex.l-and-p.patch + + hardware/emulator/wine/pspec.xml + + + wine + app:gui + + wine-32bit + winetricks + lcms2 + libX11 + libSM + mpg123 + openal + libXext + mesa-glu + alsa-lib + gstreamer + libgphoto2 + libXcomposite + openldap-client + pulseaudio-libs + gst-plugins-base + libjpeg-turbo + libtevent + p11-kit + libxml2 + giflib + ncurses + cups + gnutls + libXcursor + libXi + libXrandr + libXxf86vm + sane-backends + unixODBC + zlib + eudev + libgcc + cabextract + libpcap + libunwind + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/desktop-directories + /usr/share/wine + /usr/share/locale + /usr/share/doc + /usr/share/man + + + wine-staging + + + winetricks + wisotool + menu/wine.menu + menu/Wine.directory + menu/taskmgr.desktop + menu/uninstaller.desktop + menu/winecfg.desktop + menu/winefile.desktop + menu/winetricks.desktop + menu/wine-mime-msi.desktop + menu/wine-oleview.desktop + menu/wine-winemine.desktop + + + + wine-devel + Wine development environment + Wine geliştirme ortamı + + wine + + + /usr/bin/function_grep.pl + /usr/bin/widl + /usr/bin/winebuild + /usr/bin/winecpp + /usr/bin/wineg++ + /usr/bin/winegcc + /usr/bin/winemaker + /usr/bin/wmc + /usr/bin/wrc + /usr/include/wine + /usr/share/aclocal + /usr/share/man/man1/widl.1 + /usr/share/man/man1/winebuild.1 + /usr/share/man/man1/winecpp.1 + /usr/share/man/man1/wineg++.1 + /usr/share/man/man1/winegcc.1 + /usr/share/man/man1/winemaker.1 + /usr/share/man/man1/wmc.1 + /usr/share/man/man1/wrc.1 + + + wine-staging-devel + + + + winetricks + winetricks is a helper script to download and install various redistributable runtime libraries needed to run some programs in Wine. + + zenity + + + /usr/bin/winetricks + /usr/share/applications/winetricks.desktop + + + + wine-32bit + 32-bit shared libraries for wine + wine için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib-32bit + glib2-32bit + lcms2-32bit + libSM-32bit + p11-kit-32bit + giflib-32bit + libpng-32bit + libv4l-32bit + libX11-32bit + libsdl2-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + ncurses-32bit + libunwind-32bit + libXrandr-32bit + libXdamage-32bit + libXxf86vm-32bit + fontconfig-32bit + libXcursor-32bit + libXxf86dga-32bit + gstreamer-32bit + libXcomposite-32bit + pulseaudio-libs-32bit + gst-plugins-base-32bit + + + zlib-32bit + lcms2-32bit + libSM-32bit + libX11-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + gsm-32bit + eudev-32bit + cups-32bit + tiff-32bit + libXi-32bit + gnutls-32bit + libpng-32bit + ncurses-32bit + openssl-32bit + p11-kit-32bit + giflib-32bit + alsa-lib-32bit + libXrandr-32bit + gstreamer-32bit + fontconfig-32bit + libXcursor-32bit + libXdamage-32bit + libXxf86vm-32bit + libXxf86dga-32bit + libtool-ltdl-32bit + libXcomposite-32bit + libjpeg-turbo-32bit + pulseaudio-libs-32bit + + + /usr/lib32/libwine.so* + /usr/lib32/wine + + + wine-staging-32bit + + + + + 2020-06-03 + 5.9 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-09-30 + 4.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-03 + 4.3 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2019-01-23 + 4.0 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-11-25 + 3.21 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-08-29 + 3.14 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-07-11 + 3.12 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-05-23 + 3.8 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-04-23 + 3.6 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2017-12-24 + 2.22 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2017-05-28 + 2.9 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2017-01-29 + 2.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-09-13 + 1.9.18 + - Support for multiple kernel drivers in a single process. + - More WebServices reader support. + - Various improvements in joystick support. + - Some more work towards the Direct3D command stream. + - GDI performance improvements. + - Improved IME window handling. + - Compatibility fixes in the clipboard support. + - Various bug fixes. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-08-22 + 1.9.17 + -Better exception handling on 64-bit. + -Various improvements in joystick support. + -Some more stream support in the C++ runtime. + -Font embedding improvements. + -More metafile support in GDI+. + -Various bug fixes. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-08-15 + 1.9.16 + -Better 64-bit binary compatibility on macOS. + -Performance improvements in JavaScript. + -More progress towards the Direct3D command stream. + -More shader instructions in Direct3D. + -Performance improvements in GDI. + -Various bug fixes. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-23 + 1.9.15 + Bugs fixed in 1.9.15 (total 22). + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-11 + 1.9.14 + -Pisilinux Fixed Options. + -More Shader Model 5 support in Direct3D. + -Some more write support in WebServices. + -Performance improvements in GDI. + -Some more progress towards the Direct3D command stream. + -Various bug fixes. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-11 + 1.9.14 + Version bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-09 + 1.9.13 + missing fixes release + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-02 + 1.9.13 + First release + Ergün Salman + poyraz76@pisilinux.org + + + + + + wine-staging + http://www.winehq.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.emulator + WINE Is Not An Emulator, which lets you run Microsoft Windows applications - staging version. + Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work. + https://dl.winehq.org/wine/source/7.x/wine-7.5.tar.xz + https://github.com/wine-staging/wine-staging/archive/refs/tags/v7.5.tar.gz + + mit-kerberos-devel + lcms2-devel + libao-devel + libSM-devel + mpg123-devel + openal-devel + openssl-devel + libsdl2-devel + libv4l-devel + libXext-devel + e2fsprogs-devel + samba-devel + libxslt-32bit + mesa-glu-devel + alsa-lib-devel + gstreamer-devel + openldap-client + libgphoto2-devel + pulseaudio-libs-devel + gst-plugins-base-devel + cups-devel + gnutls-devel + gnutls-32bit + libXcursor-devel + libXi-devel + libXrandr-devel + libXxf86vm-devel + sane-backends-devel + unixODBC-devel + dbus-devel + fontconfig-devel + gsm-devel + libjpeg-turbo-devel + libXcomposite-devel + libXinerama-devel + libxslt-devel + tiff-devel + gettext-devel + giflib-devel + v4l-utils + libpng-devel + libtevent-devel + jack-audio-connection-kit-devel + fontforge + freetype-devel + freetype-32bit + libpcap-devel + util-linux + ncurses-devel + + + 0001-programs-winhlp32-Use-noyywrap-for-macro.lex.l-and-p.patch + + hardware/emulator/wine-staging/pspec.xml + + + wine-staging + app:gui + + wine-staging-32bit + lcms2 + libX11 + libSM + mpg123 + openal + libXext + mesa-glu + alsa-lib + gstreamer + libgphoto2 + libXcomposite + openldap-client + pulseaudio-libs + gst-plugins-base + libjpeg-turbo + libtevent + p11-kit + libxml2 + giflib + ncurses + cups + gnutls + libXcursor + libXi + libXrandr + libXxf86vm + sane-backends + unixODBC + zlib + eudev + libgcc + cabextract + libpcap + libunwind + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/desktop-directories + /usr/share/wine + /usr/share/locale + /usr/share/doc + /usr/share/man + + + wine + + + wine + + + wisotool + menu/wine.menu + menu/Wine.directory + menu/taskmgr.desktop + menu/uninstaller.desktop + menu/winecfg.desktop + menu/winefile.desktop + menu/winetricks.desktop + menu/wine-mime-msi.desktop + menu/wine-oleview.desktop + menu/wine-winemine.desktop + + + + wine-staging-devel + Wine development environment + + wine-staging + + + /usr/bin/function_grep.pl + /usr/bin/widl + /usr/bin/winebuild + /usr/bin/winecpp + /usr/bin/wineg++ + /usr/bin/winegcc + /usr/bin/winemaker + /usr/bin/wmc + /usr/bin/wrc + /usr/include/wine + /usr/share/aclocal + /usr/share/man/man1/widl.1 + /usr/share/man/man1/winebuild.1 + /usr/share/man/man1/winecpp.1 + /usr/share/man/man1/wineg++.1 + /usr/share/man/man1/winegcc.1 + /usr/share/man/man1/winemaker.1 + /usr/share/man/man1/wmc.1 + /usr/share/man/man1/wrc.1 + + + wine-devel + + + wine-devel + + + + wine-staging-32bit + 32-bit shared libraries for wine + emul32 + emul32 + + zlib-32bit + glib2-32bit + lcms2-32bit + libSM-32bit + p11-kit-32bit + giflib-32bit + libpng-32bit + libv4l-32bit + libX11-32bit + libsdl2-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + ncurses-32bit + libXrandr-32bit + libXdamage-32bit + libXxf86vm-32bit + fontconfig-32bit + libXcursor-32bit + libXxf86dga-32bit + gstreamer-32bit + libXcomposite-32bit + pulseaudio-libs-32bit + gst-plugins-base-32bit + + + zlib-32bit + eudev-32bit + lcms2-32bit + libSM-32bit + libX11-32bit + mpg123-32bit + openal-32bit + libXext-32bit + libxml2-32bit + alsa-lib-32bit + mesa-glu-32bit + openldap-32bit + gsm-32bit + cups-32bit + tiff-32bit + libXi-32bit + gnutls-32bit + libpng-32bit + ncurses-32bit + openssl-32bit + p11-kit-32bit + giflib-32bit + alsa-lib-32bit + libXrandr-32bit + gstreamer-32bit + fontconfig-32bit + libXcursor-32bit + libXdamage-32bit + libXxf86vm-32bit + libXxf86dga-32bit + libtool-ltdl-32bit + libXcomposite-32bit + libjpeg-turbo-32bit + pulseaudio-libs-32bit + + + /usr/lib32/libwine.so* + /usr/lib32/wine + + + wine-32bit + + + wine-32bit + + + + + 2022-04-02 + 7.5 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-06-04 + 5.9 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + libavc1394 + http://sourceforge.net/projects/libavc1394/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.firewire + Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association). + library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set + 1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane + The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder. + mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz + + libraw1394-devel + + + libavc1394-0.5.3-librom.patch + + hardware/firewire/libavc1394/pspec.xml + + + libavc1394 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libavc1394-devel + Development files for libavc1394 + libavc1394 için geliştirme dosyaları + + libavc1394 + libraw1394-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-17 + 0.5.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 0.5.4 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.5.4 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 0.5.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libdc1394 + http://sourceforge.net/projects/libdc1394/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.firewire + Programming interface for IEEE 1394 based cameras + IEEE 1394 tabanlı kameralar için programlama kitaplığı + libdc1394 est une librairie dont l'objectif est de fournir une interface de programmation d'application de haut niveau pour les développeur désirant contrôler les caméras basées sur le IEEE 1394 se conformant aux spécifications des Caméras Digitales basées sur 1394 (que l'on trouve sur http://www.1394ta.org/). + libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/). + Bu kütüphane IEEE 1394 tabanlı kameraların kontrolü için yüksek seviyeli bir arayüz oluşturur. + libdc1394 es una librería con intención de facilitar una interfaz de programación de alto nivel para programadores de aplicaciones, que desean controlar camaras basados en IEEE 1394, conforme la especificación de camaras digitales basados en 1394 (véase http://www.1394ta.org/). + https://sourceforge.net/projects/libdc1394/files/libdc1394-2/2.2.6/libdc1394-2.2.6.tar.gz + + libraw1394-devel + libusb-devel + + hardware/firewire/libdc1394/pspec.xml + + + libdc1394 + + libraw1394 + libusb + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libdc1394-devel + Development files for libdc1394 + libdc1394 için geliştirme dosyaları + + libdc1394 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 2.2.6 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 2.2.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.2.5 + Update. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-27 + 2.2.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 2.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-13 + 2.2.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libffado + http://www.ffado.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + hardware.firewire + Free firewire audio drivers + Ücretsiz firewire ses sürücüleri + libffado tries to provide open-source drivers for all FireWire based pro-audio devices. + libffado, firewire arabirimli profesyonel ses kartları için ücretsiz sürücü desteği sağlayan bir projedir. + http://www.ffado.org/files/libffado-2.4.4.tgz + + xdg-utils + glibmm-devel + libxmlpp-devel + alsa-lib-devel + dbus-c++-devel + libsigc++-devel + libconfig-devel + libraw1394-devel + libiec61883-devel + scons + doxygen + dbus-python + dbus-python3 + python-qt5-devel + python3-qt5-devel + jack-audio-connection-kit-devel + + hardware/firewire/libffado/pspec.xml + + + libffado + library + + glibmm + libgcc + dbus-c++ + libxmlpp + libconfig + libsigc++ + xdg-utils + libraw1394 + libiec61883 + python-setuptools + + + /usr/bin + /etc/dbus-1 + /usr/lib + /usr/share/locale + /lib/udev/rules.d + /usr/share/libffado + /usr/share/dbus-1 + /usr/share/man + /usr/share/doc + + + + libffado-devel + Development files for libffado + libffado için geliştirme dosyaları + library + + libffado + + + /usr/include + /usr/lib/pkgconfig + + + + ffado-mixer + Graphical User Interface for FFADO + FFADO için grafik arayüzü + app:gui + hardware.sound + ffado-mixer + + libffado + python-setuptools + + + /usr/bin/ffado-mixer* + /usr/share/applications + /usr/share/metainfo/ffado-mixer.appdata.xml + /usr/share/pixmaps + + + pisilinux-ffadomixer.desktop + + + + + 2021-10-22 + 2.4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-19 + 2.4.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-22 + 2.4.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 2.4.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-22 + 2.4.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.3.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 2.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-28 + 2.2.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libiec61883 + http://www.linux1394.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + hardware.firewire + A library for capturing video (DV, MPEG2 or AMDTP) over the IEEE 1394 bus + IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane + Cette librairie fournit aux les médias de troisième génération la réception et la transmission pour DV, MPEG2-TS et AMDTP (audio et musique) en n'utilisant que raw1394 sans nécessiter une configuration et une maintenance compliquées d'autres modules du noyau et de leurs nodes dans /dev. + libiec61883 is a library providing third generation media reception and transmission for DV, MPEG2-TS, and AMDTP (audio and music) using only raw1394 and not the complicated setup and maintenance of other kernel modules and their /dev nodes. + IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane + La librería facilita recepción y transmisión de media de tercera generación para DV, MPEG2-TS, y AMDTP (audio y music), usando solamente la interfaz 1394 en crudo, sin configuración complicada y mantenimiento de otros módulos de kernel y nodos /dev correspondientes. + http://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-1.2.0.tar.gz + + libraw1394-devel + + + libiec61883-1.2.0-installtests.patch + libiec61883-channel-allocation-without-local-node-rw.patch + + hardware/firewire/libiec61883/pspec.xml + + + libiec61883 + + libraw1394 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libiec61883-devel + Development files for libiec61883 + libiec61883 için geliştirme dosyaları + + libiec61883 + libraw1394-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-12 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 1.2.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libraw1394 + http://www.linux1394.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + library + hardware.firewire + A library that provides direct access to the IEEE 1394 bus + IEEE 1394 veriyoluna direk erişim sağlayan bir kütüphane + IEEE 1394 est un standard définissant un bus de série très rapide. Ce bus est également appelé FireWire par Apple ou i.Link par Sony. + libraw1394 library provides direct access to the IEEE-1394 bus through the Linux 1394 subsystem's raw1394 user interface. Support for both the classic ieee1394 and new firewire linux driver stacks is included. + IEEE 1394 yüksek hızlı bir seri veriyolu tanımlayan standarttır. Bu veriyolu Apple, i.Link ve Sony tarafından FireWire olarak adlandırılmıştır. Bu kütüphane IEEE 1394 veriyoluna direkt erişim sağlar. + IEEE 1394 es un estándar que define un bus serial de alta velocidad. Este bus lleva también el nombre FireWire por Apple o i.Link por Sony. + https://www.kernel.org/pub/linux/libs/ieee1394/libraw1394-2.1.2.tar.xz + hardware/firewire/libraw1394/pspec.xml + + + libraw1394 + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libraw1394-devel + Development files for libraw1394 + libraw1394 için geliştirme dosyaları + + libraw1394 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-12 + 2.1.2 + Rebuild for new toolchain. + Idris Kalp + idriskalp@gmail.com + + + 2018-08-01 + 2.1.2 + Rebuild for new toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-02-17 + 2.1.2 + Rebuild for new toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-27 + 2.1.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 2.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 2.1.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + alsa-firmware + http://www.alsa-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv2+ + LGPLv2+ + BSD + data + hardware.firmware + firmware (logiciel interne) pour l'Architecture Son Linux Avancée (ALSA). + Firmware for several ALSA-supported sound cards + Çeşitli ALSA destekli ses kartları için firmware dosyaları + alsa-firmware contains the firmware binaries for a number of sound cards supported by the ALSA project. + alsa-firmware, ALSA sürücüleri tarafından desteklenen bazı ses kartları için gerekli firmware dosyalarını içerir. + ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.2.4.tar.bz2 + hardware/firmware/alsa-firmware/pspec.xml + + + alsa-firmware + + /usr/share/alsa/firmware + /lib/firmware + /usr/share/doc + + + + + 2021-09-21 + 1.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.2.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-17 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 1.0.29 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2017-02-18 + 1.0.29 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 1.0.29 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-03-04 + 1.0.29 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + b43-firmware + http://linuxwireless.sipsolutions.net/en/users/Drivers/b43/ + + PisiLinux Community + admins@pisilinux.org + + freedist + data + hardware.firmware + Firmware for Broadcom B43 wireless network chips + Broadcom B43 kablosuz ağ çipleri için aygıt yazılımı + Firmware for Broadcom wireless network chips + Broadcom kablosuz ağ çipleri için aygıt yazılımı + http://mirror2.openwrt.org/sources/wl_apsta-3.130.20.0.o + http://www.lwfinger.com/b43-firmware/broadcom-wl-6.30.163.46.tar.bz2 + + b43-fwcutter + + hardware/firmware/b43-firmware/pspec.xml + + + b43-firmware + + /lib/firmware + + + + + 2020-02-01 + 6.30.163.46 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 6.30.163.46 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-19 + 6.30.163.46 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 5.100.138 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-17 + 5.100.138 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + b43-fwcutter + http://bu3sch.de/b43/fwcutter + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.firmware + Firmware Tool for Broadcom 43xx + Broadcom kablosuz sürücüleri için firmware üretme aracı + Firmware Tool for Broadcom 43xx based wireless network devices using the mac80211 wireless stack + b43-fwcutter Broadcom kablosuz sürücüleri için firmware üretmek için kullanılan basit bir araç içerir. + http://bues.ch/b43/fwcutter/b43-fwcutter-019.tar.bz2 + hardware/firmware/b43-fwcutter/pspec.xml + + + b43-fwcutter + + /usr/bin + /usr/share/doc + /usr/share/man/man1 + + + + + 2020-02-01 + 019 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-13 + 019 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 019 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 018 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-04 + 018 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libmfx + https://github.com/lu-zero/mfx_dispatch + + Idris Kalp + idriskalp@gmail.com + + BSD + library + hardware.graphics + Intel media sdk dispatcher + Intel media sdk dispatcher + https://github.com/lu-zero/mfx_dispatch/archive/1.25.tar.gz + + libdrm-devel + libva-devel + + hardware/graphics/libmfx/pspec.xml + + + libmfx + + libdrm + libva + + + /usr/lib + /usr/share + /usr/share/doc + + + + libmfx-devel + + libmfx + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 1.25 + First Release + Idris Kalp + idriskalp@gmail.com + + + + + + vbetool + http://www.codon.org.uk/~mjg59/vbetool/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.graphics + Alter video hardware state through video BIOS + Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için) + vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch. + Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır. + http://ftp.iij.ad.jp/pub/linux/gentoo/distfiles/32/vbetool-1.1.tar.gz + + libx86-devel + pciutils-devel + + + vbetool-1.0-build-as-needed.patch + unsigned_int.patch + + hardware/graphics/vbetool/pspec.xml + + + vbetool + + libx86 + pciutils + + + /usr/share/doc + /usr/share/man + /usr/sbin + + + + + 2021-11-29 + 1.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 1.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 1.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + diskmonitor + https://github.com/papylhomme/diskmonitor + + Stefan Gronewold + groni@pisilinux.org + + GPLv2 + hardware.info + KDE tools to monitor SMART devices and MDRaid health status. Features a full application and a Plasma applet + KDE tools to monitor SMART devices and MDRaid health status. Features a full application and a Plasma applet + https://github.com/papylhomme/diskmonitor/archive/0.3.3.tar.gz + + extra-cmake-modules + gettext-devel + glibc-devel + kconfigwidgets-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + knotifications-devel + kxmlgui-devel + plasma-workspace-devel + qt5-base-devel + qt5-quickcontrols2-devel + udisks2-devel + qt5-declarative-devel + + hardware/info/diskmonitor/pspec.xml + + + diskmonitor + KDE tools to monitor SMART devices and MDRaid health status. Features a full application and a Plasma applet + + qt5-base + ki18n + libgcc + kconfig + kxmlgui + kcoreaddons + kiconthemes + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + + + /usr/bin + /usr/lib/qt5 + /usr/share + + + + + 2020-03-10 + 0.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.3.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 0.3.1 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-11-20 + 0.3.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + dmidecode + http://www.nongnu.org/dmidecode/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.info + Tool to analyse BIOS DMI data + BIOS DMI verisi inceleme araçları + Dmidecode rapporte des informations à propos du matériel composant votre système tel qu'il est décrit dans votre BIOS. Cette information comprends typiquement le fabricant du système, le nom du modèle, le numéro de série, la version du BIOS, balises de traçabilité ainsi que beaucoup d'autres détails plus ou moins intéressants et fiables en fonction du fabricant. + dmidecode reports information about x86/ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. + dmidecode, bilgisayarınızın BIOS'unda verilmiş olan bilgilerin görüntülenmesini sağlar. Üretici ismi, model ismi, seri numarası, BIOS sürümü ve sistem üreticisine bağlı olarak değişiklik gösteren birçok bilgi, dmidecode ile görüntülenebilir. + http://download.savannah.gnu.org/releases/dmidecode/dmidecode-3.1.tar.gz + hardware/info/dmidecode/pspec.xml + + + dmidecode + + /usr/bin + /usr/sbin + /usr/share/doc + /usr/share/man + + + laptop-detect + + + + + 2020-01-18 + 3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 3.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 3.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-09 + 2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-22 + 2.12 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + gkrellm + http://www.gkrellm.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + service + hardware.info + A compact and clean system monitoring tool + Sade görünümlü sistem durumu izleyicisi + A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. + Bilgisayarınızın bileşenlerinin durumunu takip edebileceğiniz, hafıza kullanımı, işlemci sıcaklığı gibi bilgiler veren bir araç. + gkrellm + http://gkrellm.srcbox.net/releases/gkrellm-2.3.11.tar.bz2 + + gnutls-devel + gtk2-devel + pango-devel + libX11-devel + glib2-devel + libgcrypt-devel + libICE-devel + libSM-devel + + + drop_privileges.patch + gkrellmd-conf.patch + + hardware/info/gkrellm/pspec.xml + + + gkrellm + + gnutls + gtk2 + pango + glib2 + libX11 + libgcrypt + libICE + gdk-pixbuf + libSM + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + /usr/share/man + + + System.Service + + + gkrellm.desktop + gkrellm.png + + + + gkrellm-devel + Development files for gkrellm + gkrellm için geliştirme dosyaları + + gkrellm + gtk2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-10 + 2.3.11 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-24 + 2.3.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-20 + 2.3.10 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 2.3.10 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 2.3.9 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-09 + 2.3.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 2.3.5 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + media-player-info + http://cgit.freedesktop.org/media-player-info + + PisiLinux Community + admins@pisilinux.org + + BSD + hardware.info + Media player capability database + Medya oynatıcısı yetenek veritabanı + media-player-info is a repository of data files describing media player capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, etc. + media-player-info, ortam oynatıcılarının yeteneklerini tanımlayan bir dosya demetidir. Bu dosyalar bu aygıtların hangi dizinlerine müzik dosyaları koyulması gerektiğini, hangi dosya biçimlerinin desteklendiğini tanımlar. + http://www.freedesktop.org/software/media-player-info/media-player-info-24.tar.gz + + eudev-devel + python3-devel + + hardware/info/media-player-info/pspec.xml + + + media-player-info + + /lib/udev/rules.d + /lib/udev + /usr/share/media-player-info + /usr/share/doc + + + + + 2020-02-02 + 24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 23 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 23 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 22 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 22 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + lirc + http://www.lirc.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + service + hardware.irda + LIRC est un paquet permettant de décoder et d'envoyer des signaux par infrarouges pour de nombreuses télécommandes usuelles (mais pas toutes). + Linux Infrared Remote Control system + Linux Kızılötesi Uzaktan Kumanda Sistemi + Sistema de control remoto por infrarrojo en Linux + lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls. + lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır. + LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes. + https://sourceforge.net/projects/lirc/files/LIRC/0.10.1/lirc-0.10.1.tar.bz2 + + alsa-lib-devel + libftdi-devel + libusb-compat-devel + libX11-devel + libxslt + doxygen + python3-devel + python3-PyYAML + python3-setuptools + + + sysmacros.patch + + hardware/irda/lirc/pspec.xml + + + lirc + + python3 + alsa-lib + libftdi + libusb-compat + libX11 + eudev + libgcc + libusb + + + /etc + /lib/udev/rules.d + /usr/bin + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man/man1 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/lirc + /run + /var + + + System.Service + + + lirc.conf.d + lirc.tmpfiles + lirc.logrotate + + + + lirc-devel + Development files for lirc + lirc için geliştirme dosyaları + + lirc + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-08-08 + 0.10.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 0.10.1 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2018-10-15 + 0.10.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-20 + 0.10.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-05 + 0.10.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-22 + 0.9.4c + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.9.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 0.9.3 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-08 + 0.9.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + android-tools + https://developer.android.com/studio + + Stefan Gronewold + groni@pisilinux.org + + Custom + programming.tools + Android Platform Tools + Android Platform Tools + https://github.com/nmeum/android-tools/releases/download/31.0.3p1/android-tools-31.0.3p1.tar.xz + + git + gcc + perl + cmake + ninja + golang + lz4-devel + zlib-devel + gtest-devel + zstd-devel + brotli-devel + libusb-devel + libpcre-devel + protobuf-devel + libpcre2-devel + libunwind-devel + + hardware/misc/android-tools/pspec.xml + + + android-tools + Android Platform Tools + Android Platform Tools + programming.tools + + lz4 + zlib + zstd + gtest + brotli + libgcc + libusb + libpcre + protobuf + libpcre2 + libunwind + android-udev + + + /usr/bin + /usr/share + + + + + 2022-05-03 + 31.03 + First Release + Kamil Atlı + suvari@pisilinux.org + + + + + + android-udev + https://github.com/M0Rf30/android-udev-rules + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + hardware.misc + Udev rules to connect Android devices to your linux box + Android cihazlarını linux sistemine bağlamak için Udev kuralları + Udev rules to connect Android devices to your linux box + Android cihazlarını linux sistemine bağlamak için Udev kuralları + https://github.com/M0Rf30/android-udev-rules/archive/refs/tags/20220102.tar.gz + + eudev-devel + libmtp-devel + + hardware/misc/android-udev/pspec.xml + + + android-udev + Udev rules to connect Android devices to your linux box. + + eudev + libmtp + + + /usr/share/doc/android-udev/LICENSE + /usr/lib/udev/rules.d/51-android.rules + /usr/lib/sysusers.d/android-udev.conf + + + + + 2022-05-03 + 20220102 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + dkms + http://linux.dell.com/dkms + + Marcin Bojara + marcin.bojara@gmail.com + + GPLv2 + kernel + hardware.misc + Dynamic Kernel Module Support + Dynamic Kernel Module Support + DKMS is a dynamic kernel module support framework. + DKMS, dinamik çekirdek modülü desteği çatısıdır. + https://github.com/dell/dkms/archive/v2.8.1.tar.gz + hardware/misc/dkms/pspec.xml + + + dkms + + gcc + bash + kmod + make + coreutils + + + /etc + /usr/sbin + /usr/share/doc + /usr/share/man + /var/lib + /usr/share/bash-completion + + + System.PackageHandler + + + + + 2020-04-15 + 2.8.1 + pakhandler.py improvements + Marcin Bojara + marcin.bojara@gmail.com + + + 2020-01-06 + 2.8.1 + Version bump. Add pakhandler.py + Marcin Bojara + marcin.bojara@gmail.com + + + 2018-09-01 + 2.6.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 2.5 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-29 + 2.3 + new release + Ali Algül + aligulle3801@gmail.com + + + 2016-06-09 + 2.2.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 2.2.0.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + dtc + https://github.com/telegramdesktop/dtc + + Kamil Atlı + suvari@pisilinux.org + + GPL2 + library + hardware.misc + Device Tree Compiler + Cihaz Ağacı Derleyicisi + Device Tree Compiler + Cihaz Ağacı Derleyicisi + https://mirrors.edge.kernel.org/pub/software/utils/dtc/dtc-1.6.1.tar.xz + + swig + meson + libyaml-devel + python3-devel + valgrind-devel + + hardware/misc/dtc/pspec.xml + + + dtc + + libyaml + valgrind + + + /usr/lib/libfdt.so* + /usr/share/doc + /usr/bin + /usr/lib/python3.9/site-packages + + + + dtc-devel + Development files for dtc + dtc için geliştirme başlıkları + + dtc + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-02-05 + 1.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + ethtool + https://www.kernel.org/pub/software/network/ethtool/ + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + app:console + hardware.misc + Utility to examine and tune ethernet-based network interfaces + Ethernet tabanlı ağ arayüzlerini tanımlamak ve ayarlamak için kullanılan bir yazılım + ethtool is used for querying and changing settings of an ethernet device. + Ethtool ağ aygıtınızın ayarlarını listelemeye ve bu ayarları değiştirmeye yarar. + https://mirrors.edge.kernel.org/pub/software/network/ethtool/ethtool-5.8.tar.xz + + libmnl-devel + + hardware/misc/ethtool/pspec.xml + + + ethtool + Utility to examine and tune ethernet-based network interfaces + + libmnl + + + /usr/share/doc + /usr/share/man + /usr/sbin + /usr/share/bash-completion + + + + + 2020-09-07 + 5.8 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-07-22 + 5.7 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-28 + 5.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-04 + 5.3 + Ver. bump + Blue Devil + bluedevil@sctzine.com + + + 2016-02-18 + 4.2 + Version bump + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2010-11-19 + 2.6.36 + First release + Onur Küçük + onur@pardus.org.tr + + + + + + florence + http://florence.sourceforge.net/english.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + app:gui + hardware.misc + On-screen virtual keyboard. + Florence is an extensible scalable on-screen virtual keyboard for GNOME that stays out of your way when not needed. You need it if you can't use a real keyboard either because of a handicap, broken keyboard or tablet PC but you can use a pointing devide. + https://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 + + intltool + gtk3-devel + cairo-devel + pango-devel + libxml2-devel + librsvg-devel + libXtst-devel + libXext-devel + gstreamer-devel + libnotify-devel + gdk-pixbuf-devel + at-spi2-core-devel + + hardware/misc/florence/pspec.xml + + + florence + + gtk3 + cairo + pango + libX11 + libxml2 + librsvg + libXtst + libXext + gstreamer + libnotify + gdk-pixbuf + at-spi2-core + + + /usr/bin + /usr/lib + /usr/share + /usr/share/applications + /usr/share/florence + /usr/share/glib-2.0 + /usr/share/pixmaps + /usr/share/locale + /usr/share/doc + + + + florence-devel + + florence + glib2-devel + + + /usr/include + /usr/lib/pkgconfig/florence-1.0.pc + + + + + 2020-01-09 + 0.6.3 + First release + fury + uglyside@yandex.ru + + + + + + fuse3 + http://fuse.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + Interface implémentée dans l'environnement utilisateur (userpace) pour les systèmes de fichier. + An interface for filesystems implemented in userspace + Kullanıcı düzeyinde dosya sistemi oluştumaya yarayan kitaplık + Una interfaz para sistemas de archivos implementados en el espacio de usuario + fuse is a backend allowing regular users to (un)mount filesystems for their own use. + FUSE, kullanıcıların kendileri için dosya sistemleri oluşturmasına, bağlamasına ve bağı koparmasına imkân veren bir arkauç kitaplıktır. + https://github.com/libfuse/libfuse/releases/download/fuse-3.10.5/fuse-3.10.5.tar.xz + + meson + doxygen + eudev-devel + gettext-devel + + hardware/misc/fuse3/pspec.xml + + + fuse3 + + glibc + + + /bin + /sbin + /usr/sbin + /usr/bin + /lib + /usr/lib + /usr/share/doc + /usr/share/man + + + + fuse3-devel + Development files for fuse3 + fuse3 için geliştirme dosyaları + system.devel + + fuse3 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-26 + 3.10.5 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-06-24 + 3.9.2 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + glusterfs + https://www.gluster.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.misc + a cluster file-system capable of scaling to several peta-bytes. + GlusterFS, güçlü bir ağ/küme dosya sistemidir. + Gluster is a scalable network filesystem. Using common off-the-shelf hardware, you can create large, distributed storage solutions for media streaming, data analysis, and other data- and bandwidth-intensive tasks. Gluster is free. + Gluster, ölçeklenebilir bir ağ dosya sistemidir. Yaygın kullanıma hazır donanımı kullanarak medya akışı, veri analizi ve diğer veri ve bant genişliği yoğun görevler için büyük, dağıtılmış depolama çözümleri oluşturabilirsiniz. Gluster ücretsizdir. + https://github.com/gluster/glusterfs/archive/refs/tags/v10.1.tar.gz + + acl-devel + zlib-devel + curl-devel + fuse-devel + attr-devel + gperftools + spice-devel + libaio-devel + python3-devel + openssl-devel + libxml2-devel + liburcu-devel + libtirpc-devel + liburing-devel + readline-devel + spice-protocol + rpcsvc-proto-devel + libutil-linux-devel + + hardware/misc/glusterfs/pspec.xml + + + glusterfs + + acl + curl + zlib + attr + libaio + liburcu + libxml2 + openssl + libtirpc + liburing + gperftools + libutil-linux + + + /usr/bin + /usr/lib + /var/lib/glusterd + /usr/share/man + /usr/share/doc + /usr/share/glusterfs + /etc/glusterfs + /var/log + /etc/ganesha/ganesha-ha.conf.sample + /var/run/gluster + + + + glusterfs-devel + Development files for glusterfs + glusterfs için geliştirme dosyaları + + libutil-linux-devel + glusterfs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-02-05 + 10.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + gpm + https://www.nico.schottelius.org/software/gpm/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + hardware.misc + Console mouse driver + Konsol tabanlı fare sürücüsü + GPM (short for General Purpose Mouse) brings mouse support to TTYs. + Genel amaçlı fare ve konsolda fare desteği içindir. + http://www.nico.schottelius.org/software/gpm/archives/gpm-1.20.7.tar.bz2 + + ncurses-devel + texinfo + + + gpm-1.20.7-glibc_2.26-1.patch + + hardware/misc/gpm/pspec.xml + + + gpm + + ncurses + + + /usr/bin + /usr/include + /usr/share/man + /usr/share/info + /usr/share/doc + /usr/lib + /etc + /usr/share/emacs + + + System.Service + + + gpm.conf.d + + + + + 2020-01-12 + 1.20.7 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.20.7 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 1.20.7 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.20.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.20.7 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + hwloc + https://www.open-mpi.org/projects/hwloc/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + app:console + hardware.misc + Portable Hardware Locality (hwloc) + Hiyerarşik mimarilerin taşınabilir soyutlama kitaplığı + The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. + hwlock, hiyerarşik mimarilerin taşınabilir soyutlama kitaplığı sunar. + https://download.open-mpi.org/release/hwloc/v2.7/hwloc-2.7.0.tar.bz2 + + cairo-devel + pciutils-devel + libxml2-devel + numactl-devel + libpciaccess-devel + + + hwloc-1.8.1-gl.patch + + hardware/misc/hwloc/pspec.xml + + + hwloc + Portable Hardware Locality (hwloc) + + cairo + libxml2 + numactl + libX11 + libpciaccess + + + /etc + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/hwloc + /usr/share/applications + /usr/share/bash-completion/completions/hwloc + + + + hwloc-devel + Development files for hwloc + hwloc için geliştirme dosyaları + hwloc-devel, hwloc için geliştirme dosyalarını içerir. + + hwloc + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-14 + 2.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-22 + 2.2.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + libavtp + http://www.github.com/Avnu/libavtp/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + hardware.misc + Open source implementation of Audio Video Transport Protocol + Open source implementation of Audio Video Transport Protocol + Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec + Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec + https://github.com/Avnu/libavtp/archive/refs/tags/v0.1.0.tar.gz + + meson + glibc-devel + cmocka-devel + + hardware/misc/libavtp/pspec.xml + + + libavtp + + /usr/lib + /usr/share/doc + + + + libavtp-devel + Development files for libavtp + Development files forlibavtp + + libavtp + + + /usr/include + + + + + 2022-01-25 + 0.1.0 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + libfprint + https://fprint.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + A library for accessing to various fingerprint readers + Çeşitli parmakizi okuyucularına erişmek için kitaplık + libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software. + libfprint, çeşitli parmakizi okuyuculara erişim sağlayan açık kaynaklı bir donanım kitaplığıdır. + https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v1.94.3/libfprint-v1.94.3.tar.gz + + meson + doxygen + gtk-doc + nss-devel + gdb-devel + glib2-devel + cairo-devel + pixman-devel + libgusb-devel + libgudev-devel + gobject-introspection-devel + + hardware/misc/libfprint/pspec.xml + + + libfprint + + nss + glib2 + cairo + pixman + libusb + libgusb + libgudev + + + /lib/udev + /usr/lib/girepository-1.0 + /usr/lib/libfprint-2.so* + /usr/share/gtk-doc + /usr/share/doc/libfprint + + + + libfprint-devel + Development files for libfprint + libfprint için geliştirme dosyaları + + glib2-devel + libfprint + + + /usr/lib/pkgconfig + /usr/include + /usr/share/gir-1.0 + + + + + 2022-02-27 + 1.94.3 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libftdi + http://www.intra2net.com/en/developer/libftdi/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + A library for accessing to FTDI USB chips + FTDI USB entegrelerine erişim kitaplığı + libftdi allows access to eeprom and bitbang modes of FT232/245/2232 USB serial interface chips. + libftdi ile FT232/245/2232 USB seri arabirim entegrelerinin eeprom ve bitbang modlarını kullanabilirsiniz. + https://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.4.tar.bz2 + + cmake + libusb-devel + boost-devel + python-devel + swig + + + fix-udev-group_and_usb_name.patch + + hardware/misc/libftdi/pspec.xml + + + libftdi + + libusb + libgcc + + + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/doc + + + + python-libftdi + Python bindings for libftdi + Python için libftdi bağlayıcıları + + libusb + python3 + libftdi + + + /usr/lib/python* + + + + libftdi-devel + Development files for libftdi + libftdi için geliştirme dosyaları + + libftdi + libusb-devel + + + /usr/bin/libftdi-config + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/doc/libftdi/examples + + + + + 2020-01-14 + 1.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-20 + 1.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 1.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 1.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 1.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libgphoto2 + http://www.gphoto.org/ + + Pisilinux Community + admins@pisilinux.org + + LGPL-2.1 + library + hardware.misc + Library that implements support for numerous digital cameras + Sayısal kamera ve müzik çalarlara erişim sağlayan kütüphane + Libgphoto2 est une librairie centrale conçue pour permettre aux programmes extérieurs d'accéder aux appareils photos numériques. + libgphoto2 is the core library designed to allow access to digital camera by external programs. + libgphoto2, harici uygulamalar tarafından sayısal kameralara ve müzik çalarlara erişim için kullanılan bir programlama kütüphanesidir. + Libgphoto2 es la librería núcleo (core) que permite a programas externos acceder a camaras digitales. + mirrors://sourceforge/project/gphoto/libgphoto/2.5.28/libgphoto2-2.5.28.tar.xz + + doxygen + gd-devel + tiff-devel + curl-devel + libusb-devel + libexif-devel + libxml2-devel + libjpeg-turbo-devel + + hardware/misc/libgphoto2/pspec.xml + + + libgphoto2 + + gd + curl + libusb + libexif + libxml2 + libtool-ltdl + libjpeg-turbo + + + /lib/udev + /usr/lib + /usr/share/libgphoto2 + /lib/udev/rules.d + /usr/share/locale + /usr/share/doc/libgphoto2 + + + + libgphoto2-docs + Documentation for libgphoto2 + libgphoto2 için detaylı belgelendirme + + /usr/share/doc/libgphoto2/camlibs + /usr/share/doc/libgphoto2/libgphoto2-api.html + + + + libgphoto2-devel + Development files for libgphoto2 + libgphoto2 için geliştirme dosyaları + + libexif-devel + libgphoto2 + + + /usr/bin/gphoto2-config + /usr/bin/gphoto2-port-config + /usr/include/gphoto2 + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2022-01-17 + 2.5.28 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-19 + 2.5.26 + Version bump. + fury + uglyside@yandex.ru + + + 2020-01-19 + 2.5.23 + İdris Kalp + İdris Kalp + idriskalp@gmail.com + + + 2018-07-30 + 2.5.18 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 2.5.16 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-09 + 2.5.13 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 2.5.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-02 + 2.5.8 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libgpod + http://www.gtkpod.org/libgpod.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + A library to access the contents of an iPod + iPod üzerindeki verilere ulaşmak için kullanılan bir kütüphane + libgpod est une librairie partagée permettant d'accéder au contenu d'un iPod. Cette librairie est basée sur le code du projet gtkpod. + libgpod is a library to access the contents of an iPod. It supports playlists, smart playlists, playcounts, ratings, podcasts, album artwork, photos, etc. + libgpod, iPod taşınabilir medya oynatıcıları üzerindeki verilere ulaşmak için kullanılan bir kütüphanedir. Kütüphane, gelişmiş parça listesi, parça istatistikleri, podcast gibi ileri özellikleri destekler. libgpod, gtkpod projesi temel alınarak geliştirilmiştir. + mirrors://sourceforge/gtkpod/libgpod-0.8.3.tar.bz2 + + intltool + gettext-devel + libusb-devel + sqlite-devel + python-devel + gtk-doc + gtk2-devel + docbook-xml + python-six + python-mutagen + libplist-devel + sg3_utils-devel + libimobiledevice-devel + python-pygobject-devel + swig + + + 0001-323-Segmentation-fault-when-opening-ipod.patch + libgpod-0.8.2-pkgconfig_overlinking.patch + libgpod-fixswig.patch + libgpod-udev.patch + 0001-configure.ac-Add-support-for-libplist-2.2.patch + + hardware/misc/libgpod/pspec.xml + + + libgpod + + zlib + glib2 + sqlite + libusb + libxml2 + libplist + sg3_utils + gdk-pixbuf + libimobiledevice + + + /usr/bin + /lib/udev + /usr/lib + /usr/share/hal + /lib/udev/rules.d + /run/libgpod + /usr/share/locale + /usr/share/doc + + + + python-libgpod + Python bindings for libgpod + libgpod için Python bağlayıcıları + programming.language.python + + libgpod + libplist + gdk-pixbuf + python-mutagen + + + /usr/lib/python2* + + + + libgpod-devel + Development files for libgpod + libgpod için geliştirme dosyaları + + libgpod + gdk-pixbuf-devel + libimobiledevice-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-05 + 0.8.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 0.8.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 0.8.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 0.8.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-04 + 0.8.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libgusb + https://github.com/hughsie/libgusb + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + GObject wrapper for libusb. + GObject wrapper for libusb. + GLib wrapper around libusb1. + https://people.freedesktop.org/~hughsient/releases/libgusb-0.3.8.tar.xz + + meson + gtk-doc + docbook-xsl + glib2-devel + vala-devel + libxslt-devel + libxml2-devel + libusb-devel + gobject-introspection-devel + + hardware/misc/libgusb/pspec.xml + + + libgusb + + glib2 + vala + libxslt + libxml2 + libusb + gobject-introspection + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/vala + /usr/share/gir-1.0 + + + + libgusb-devel + Development files for libgusb + libgusb için geliştirme dosyaları + + libgusb + libusb-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libgusb-docs + Reference files for libgusb + data:doc + + libgusb + + + /usr/share/gtk-doc + + + + + 2021-10-11 + 0.3.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 0.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 0.3.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-13 + 0.2.11 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-06 + 0.2.9 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-13 + 0.2.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-05-22 + 0.2.4 + Rebuild for vala + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2015-02-25 + 0.2.4 + Version bump. + Hakan Yıldız + hknyldz93@gmail.com + + + 2014-09-13 + 0.1.6 + Rebuild. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2013-04-13 + 0.1.6 + bump + Erdinç GÜltekin + erdincgultekin@pisilinux.org + + + 2012-10-05 + 0.1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libieee1284 + http://cyberelk.net/tim/libieee1284/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + Library to query devices using IEEE1284 + IEEE1284 kullanarak donanımların sorgulanması için bir kütüphane + Cette librairie est à destination des applications qui ont besoins de communiquer avec (ou au moins identifier) des périphériques liés au système par le port parallèle. + Library is intended to be used by applications that need to communicate with (or at least identify) devices that are attached via a parallel port. + Paralel portlar aracılığı ile bağlanmış araçlarla iletişimi (en azından tanımlanmasını) gerçekleştiren uygulamalar için gerekli olan kütüphanedir. + La librería usado por aplicaciones que necesitan comunicarse con (,o al menos necesitan identificar) dispositivos conectados al puerto paralelo. + mirrors://sourceforge/libieee1284/libieee1284-0.2.11.tar.bz2 + + python-devel + chrpath + + + libieee1284-strict-aliasing.patch + + hardware/misc/libieee1284/pspec.xml + + + libieee1284 + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + python-libieee1284 + Python bindings for libieee1284 + libieee1284 için Python bağlayıcıları + + libieee1284 + + + /usr/lib/python* + + + + libieee1284-devel + Development files for libieee1284 + libieee1284 için geliştirme dosyaları + + libieee1284 + + + /usr/include + /usr/share/man/man3 + + + + + 2020-01-31 + 0.2.11 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-29 + 0.2.11 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-07 + 0.2.11 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.2.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-10 + 0.2.11 + First release + Varol Maksutoğlu + waroi@pisilinux.org + + + + + + libmtdev + http://bitmath.org/code/mtdev + + PisiLinux Community + admins@pisilinux.org + + MIT + library + hardware.misc + Multitouch Protocol Translation Library + Çoklu Dokunmatik Protokol Dönüşüm Kütüphanesi + The libmtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. + Libmtdev kütüphanesi, kernel MT olaylarının tüm çeşitlerini slotlu B tipi protokole dönüştürür. + http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.gz + hardware/misc/libmtdev/pspec.xml + + + libmtdev + + /usr/bin + /usr/lib + /usr/share/doc + + + + libmtdev-devel + Development files of libmtdev + Libmtdev için geliştirme dosyaları + + libmtdev + + + /usr/include + /usr/lib/pkgconfig + + + + libmtdev-32bit + 32-bit shared libraries for libmtdev + emul32 + emul32 + + libmtdev + + + /usr/lib32 + + + + + 2020-01-16 + 1.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 1.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-13 + 1.1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.5 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libmtp + http://libmtp.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.misc + An implementation of Microsoft's Media Transfer Protocol (MTP) + Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane + libmtp est une implémentation du Media Transfer Protocol (MTP) de Microsoft sous la forme d'une librairie principalement adéquate pour les systèmes d'exploitation conformes à POSIX. + libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems. + libmtp, PlayForSure olarak da anılan, Microsoft'un medya aktarım protokolünü desteklemek için yazılmış bir programlama kütüphanesidir. Uygulamalar, libmtp kütüphanesini kullanarak, PlayForSure destekli MP3 çalar veya dijital kameralardaki içerik üzerinde taşıma, aktarma, isimlendirme vb.. işlemleri kolayca yapabilirler. + libmtp es una implementación del protocolo de transferencia de Microsoft's Media (MTP) en forma de una librería para uso en sistemas operativos POSIX compliant. + mirrors://sourceforge/project/libmtp/libmtp/1.1.19/libmtp-1.1.19.tar.gz + + doxygen + libusb-devel + libgcrypt-devel + + hardware/misc/libmtp/pspec.xml + + + libmtp + + libusb + libgcrypt + + + /usr/bin + /usr/lib/libmtp.* + /lib/udev + /usr/share/hal + /usr/share/doc + + + + libmtp-devel + Development files for libmtp + libmtp için geliştirme dosyaları + + libmtp + libusb-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-15 + 1.1.19 + Version bump. + fury + uglyside@yandex.ru + + + 2020-01-31 + 1.1.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 1.1.15 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 1.1.14 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.1.12 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.1.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-10 + 1.1.11 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libsmbios + https://github.com/dell/libsmbios + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + OSL-2.0 + library + app:console + hardware.misc + Provide access to (SM)BIOS information + (SM)BIOS bilgilerine ulaşabilmeyi sağlar + libsmbios project aims towards providing access to as much BIOS information as possible. It does this by providing a library of functions that can be used as well as sample binaries. + https://codeload.github.com/dell/libsmbios/tar.gz/v2.4.2 + + libxml2-devel + chrpath + doxygen + + + 0001-libsmbios-fix-more-places-with-loop-iterators-with-b.patch + + hardware/misc/libsmbios/pspec.xml + + + libsmbios + + libgcc + + + /etc + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man/man3 + /usr/share/man/man1 + /usr/share/smbios-utils + /usr/share/locale + + + + libsmbios-devel + Development files for libsmbios + libsmbios için geliştirme dosyaları + + libsmbios + + + /usr/include/Makefile.am + /usr/include/smbios + /usr/include/smbios_c + /usr/lib/pkgconfig + + + + + 2020-01-31 + 2.4.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.4.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-11 + 2.3.3 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-04-29 + 2.3.3 + new release + Ali Algül + aligulle3801@gmail.com + + + 2016-06-09 + 2.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 2.3.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libx86 + http://www.codon.org.uk/~mjg59/libx86/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.misc + A hardware-independent library for executing real-mode x86 code + Gerçek-mod x86 kodlarını çalıştırmak için donanım-bağımsız bir kütüphane + libx86 contains the library and header files necessary for the development of programs that will use libx86 to make real-mode x86 calls. + libx86, gerçek-mod x86 çağrıları yapabilen programların geliştirilmesi için gerekli başlık dosyaları ve kütüphaneleri içerir. + A menudo puede ser útil poder realizar llamadas de BIOS x86 en modo real desde el espacio de usuarios. lrmi facilita para ello una interfaz simple para equipos x86, sin embargo no funciona en otras plataformas. libx86 facilita la interfaz lrmi, pero además funcionará en plataformas como amd64 y alpha. + http://slamd64.ada.net.tr/slamd64-12.2/source/ap/libx86/libx86-1.1.tar.gz + + libx86-0.99-ifmask.patch + libx86-add-pkgconfig.patch + libx86-mmap-offset.patch + + hardware/misc/libx86/pspec.xml + + + libx86 + + /usr/lib + /usr/share/doc + + + + libx86-devel + + libx86 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-12-21 + 1.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-31 + 1.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 1.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 1.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qvkbd + https://github.com/KivApple/qvkbd + + Kamil Atlı + suvari@pisilinux.org + + GPLv3 + app:gui + hardware.misc + A virtual keyboard written in C++ and QML. + sanal klavye + qvkbd A virtual keyboard written in C++ and QML. + C ++ ve QML'de yazılmış sanal bir klavye. + https://github.com/KivApple/qvkbd/archive/master.zip + + libX11-devel + libXtst-devel + qt5-base-devel + qt5-x11extras-devel + qt5-declarative-devel + + hardware/misc/qvkbd/pspec.xml + + + qvkbd + + libX11 + libgcc + libXtst + qt5-base + qt5-x11extras + qt5-declarative + + + /usr/bin + /usr/share/doc + /usr/share + + + + + 2020-01-31 + 20191201 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-12-01 + 20191201 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-12-08 + 20181119 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + redshift + https://github.com/jonls/redshift + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + hardware.misc + Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. + Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. + Kırmızıya kayma, ekranınızın renk sıcaklığını ortamınıza göre ayarlar. Bu, gece ekranın önünde çalışıyorsanız, gözlerinizin daha az acı çekmesine yardımcı olabilir. + Kırmızıya kayma, ekranınızın renk sıcaklığını ortamınıza göre ayarlar. Bu, gece ekranın önünde çalışıyorsanız, gözlerinizin daha az acı çekmesine yardımcı olabilir. + https://github.com/jonls/redshift/releases/download/v1.12/redshift-1.12.tar.xz + + intltool + gtk3-devel + glib2-devel + libX11-devel + libdrm-devel + libxcb-devel + python3-devel + geoclue-devel + libnotify-devel + json-glib-devel + shared-mime-info + libXxf86vm-devel + gobject-introspection-devel + + hardware/misc/redshift/pspec.xml + + + redshift + + glib2 + libX11 + libdrm + libxcb + libXxf86vm + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/icons + /usr/share/doc + /usr/share/applications + /usr/share/appdata + /usr/share/locale + + + + + 2021-10-25 + 1.12 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2020-01-31 + 1.12 + First release + PisiLinux Community + admins@pisilinux.org + + + 2019-01-30 + 1.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ifuse + http://matt.colyer.name/projects/iphone-linux + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + hardware.mobile + Mount Apple iPhone and iPod touch devices + Apple iPhone ve iPod touch cihazlarını bağlama aracı + ifuse, a fuse filesystem for mounting iPhone and iPod touch devices. + ifuse, Apple iPhone ve iPod touch cihazlarını sisteme bağlamak için gerekli araçları içerir. + http://www.libimobiledevice.org/downloads/ifuse-1.1.4.tar.bz2 + + libimobiledevice-devel + fuse-devel + + hardware/mobile/ifuse/pspec.xml + + + ifuse + + libimobiledevice + fuse + libusbmuxd + libtasn1 + gnutls + libplist + + + /usr/bin + /usr/share/man/ + /usr/share/doc/ifuse + + + + + 2020-06-24 + 1.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 1.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-07 + 1.1.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libimobiledevice + http://www.libimobiledevice.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2 + library + app:console + hardware.mobile + Library for connecting to mobile devices + libimobiledevice is a library for connecting to mobile devices including phones and music players + https://github.com/libimobiledevice/libimobiledevice/archive/1.3.0.tar.gz + + gnutls-devel + libusbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + + hardware/mobile/libimobiledevice/pspec.xml + + + libimobiledevice + + gnutls + libusbmuxd + libplist + libtasn1 + libgcrypt + + + /usr/lib + /usr/bin + /usr/share/man/man1 + /usr/share/doc/libimobiledevice + + + + libimobiledevice-devel + Development files for libimobiledevice + + gnutls-devel + libusbmuxd-devel + libplist-devel + libtasn1-devel + libgcrypt-devel + libimobiledevice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-12-09 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-24 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 1.2.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-01 + 1.2.0 + Version Bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.1.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 1.1.7 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libplist + http://matt.colyer.name/projects/iphone-linux + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2 + library + app:console + hardware.mobile + Library for manipulating Apple Binary and XML Property Lists + Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için kütüphane + libplist is a library for manipulating Apple Binary and XML Property Lists. + libplist, Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için gerekli bir kütüphanedir. + http://www.libimobiledevice.org/downloads/libplist-2.2.0.tar.bz2 + + libxml2-devel + python-devel + cython + + hardware/mobile/libplist/pspec.xml + + + libplist + + libxml2 + python + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/man/man1 + + + + libplist-devel + Development files for libplist + libplist için geliştirme dosyaları + + libplist + libxml2-devel + python-devel /usr/include @@ -235696,9982 +187699,1895 @@ to create header files and sources from protocol files. - - 2022-05-21 - 246.10 - elogind rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 246.10 - elogind rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 246.10 - elogind rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-05-03 - 246.10 - Version Bump - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2021-03-17 - 246.9.2 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - refind - https://sourceforge.net/projects/refind/ - - Ergün Salman - poyraz76@pisilinux.org - - rEFIt - library - system.boot - refind uefi multi boot - refind uefi multi boot - https://sourceforge.net/projects/pisi-source/files/refind-0.10.3.tar.gz - system/boot/refind/pspec.xml - - - refind - - /usr/* - /etc/* - - - System.Package - - - - - 2020-11-07 - 0.10.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 0.10.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 0.10.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-20 - 0.10.3 - Relase bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-07-30 - 0.10.3 - Relase Frist - Ergün Salman - poyraz76@pisilinux.org - - - - - - efitools - http://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app - system.boot - UEFI güvenli önyükleme platformlarını işleme araçları - UEFI güvenli önyükleme platformlarını işleme araçları - Tools for manipulating UEFI secure boot platforms - Tools for manipulating UEFI secure boot platforms - https://git.kernel.org/pub/scm/linux/kernel/git/jejb/efitools.git/snapshot/efitools-1.9.2.tar.gz - - gnu-efi - help2man - sbsigntools - perl-File-Slurp - openssl-devel - - - efitools-1.9.2-wrong_var_name-with-gnu-efi-3.0.11.patch - - system/boot/efitools/pspec.xml - - - efitools - - openssl - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/efitools/efi - /usr/share/doc - - - - - 2020-11-07 - 1.9.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 1.9.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-21 - 1.8.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.7.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-16 - 1.7.0 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - efibootmgr - https://github.com/vathpela/efibootmgr - - Aydın Demirel - aydin.demirel@pisilinux.org - - GPL2 - app:console - system.boot - Tool to modify UEFI Firmware Boot Manager Variables - UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç - a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. - UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç - https://github.com/rhboot/efibootmgr/archive/refs/tags/17.tar.gz - - pciutils-devel - zlib-devel - popt-devel - efivar-devel - - system/boot/efibootmgr/pspec.xml - - - efibootmgr - - efivar - popt - - - /usr/sbin - /usr/share/man - /usr/lib - - - - efibootmgr-devel - - popt-devel - efivar-devel - efibootmgr - - - /usr/include - - - - - 2021-11-29 - 17 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-22 - 17 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-17 - 17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 16 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-21 - 15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 15 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-09 - 15 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - 2017-02-14 - 14 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 0.12 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - syslinux - http://syslinux.zytor.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - SysLinux, IsoLinux and PXELinux bootloader - SysLinux, IsoLinux ve PXELinux önyükleyicileri - Lightweight bootloaders for floppy media (SYSLINUX), network booting (PXELINUX), and bootable "El Torito" CD-ROMs (ISOLINUX). The project also includes MEMDISK, a tool to boot legacy operating systems (such as DOS) from nontraditional media; it is usually used in conjunction with PXELINUX and ISOLINUX. - Disket sürücüden (SYSLINUX), ağ üzerinden (PXELINUX) ve açılabilir "El Torito" CD-ROM'lardan (ISOLINUX) açılışı sağlayan hafif önyükleyici araçları. Bu proje ayrıca sık kullanılmayan ya da çok eski işletim sistemlerinin açılışı için genellikle PXELINUX ve ISOLINUX ile ortak kullanılabilen MEMDISK aracını da içermektedir. - https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/Testing/6.04/syslinux-6.04-pre1.tar.xz - - nasm - asciidoc - dosfstools - mtools - efibootmgr-devel - gptfdisk - upx - libutil-linux-devel - util-linux - python-devel - - - syslinux.git-138e850fab106b5235178848b3e0d33e25f4d3a2.patch - 0001-Add-install-all-target-to-top-side-of-HAVE_FIRMWARE.patch - 0002-ext4-64bit-feature.patch - 0003-include-sysmacros-h.patch - 0004-Add-RPMOPTFLAGS-to-CFLAGS-for-some-stuff.patch - 0005-Workaround-multiple-definition-of-symbol-errors.patch - 0006-Replace-builtin-strlen-that-appears-to-get-optimized.patch - - system/boot/syslinux/pspec.xml - - - syslinux - - libutil-linux - mtools - efibootmgr - util-linux - dosfstools - gptfdisk - perl-Crypt-PasswdMD5 - perl-Digest-SHA1 - - - /sbin - /usr/bin - /usr/lib/syslinux - /usr/share/doc - /usr/share/man - - - pisi-iso/isolinux.cfg - pisi-iso/background.png - - - - - 2021-07-17 - 6.04 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2020-01-25 - 6.04 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-11-12 - 6.04 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-24 - 6.04 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-13 - 6.03 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-29 - 6.03 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-08 - 6.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 6.03 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - memtest86 - http://www.memtest.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - Memory tester - Bellek test edici - Testeur de mémoire pour architecture x86 et x86_64 pour ordinateurs x86 et 64 bit x86 compatibles. Il doit être lancer depuis le menu de démarrage. - Memory tester for x86 and x86_64 devices for x86 and 64bit x86 compatible computers. It should be started from boot menu. - x86 ve 64bit x86 mimarilerindeki bilgisayarın belleklerini test etmeye ve hataları bulmaya yaran bir program. Kullanmak için açılış menüsünden çalıştırmanız gerekmektedir. - http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz - system/boot/memtest86/pspec.xml - - - memtest86 - - /boot - /usr/share/doc - - - - - 2020-11-07 - 5.01 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 5.01 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 5.01 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-05 - 5.01 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-08 - 5.01 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-27 - 5.01 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - gfxboot - https://github.com/openSUSE/gfxboot - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - system.boot - Tools to create graphical boot logos - Grafik açılış logosu oluşturma araçları - Set of tools to create graphical boot logos, for grub, lilo and syslinux. It supports arch-specific boot menus, advanced help menus, multiple keymaps, animated images, and more graphical pretty things. - Grub, syslinux ve lilo gibi önyükleyiciler için grafik açılış logoları oluşturma araçları. Mimari bazlı açılış menüsü, gelişmiş yardım menüsü, farklı diller için klavye haritası desteği, hareketli görüntü desteği ve daha pek çok görsel efekt desteği içerir. - gfxboot - https://github.com/openSUSE/gfxboot/archive/4.5.64.tar.gz - - xmlto - freetype-devel - util-linux - libxslt - lynx - - - no-theme-no-git.patch - - system/boot/gfxboot/pspec.xml - - - gfxboot - - perl-HTML-Parser - freetype - - - /usr/sbin - /usr/share/gfxboot/bin - /usr/share/gfxboot - /usr/share/doc - - - - - 2020-11-07 - 4.5.64 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 4.5.64 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 4.5.36 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 4.5.20 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 4.5.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-04 - 4.5.12 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - plymouth - http://cgit.freedesktop.org/plymouth - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - library - system.boot - Graphical Boot Animation and Logger - Açılış animasyonu ve oturum açma altyapısı - plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot. - plymouth, sistemin açılışı esnasında estetik ve ilgi çekici bir grafiksel animasyon altyapısı sunan bir uygulamadır. - http://freedesktop.org/software/plymouth/releases/plymouth-22.02.122.tar.xz - https://sourceforge.net/projects/pisilinux/files/source/plymouth-theme-pisilinux-0.4.tar.xz - - pisilinux/generate-flist.py - - - docbook-xsl - kernel-headers - libdrm-devel - libpng-devel - cairo-devel - pango-devel - graphite2-devel - harfbuzz-devel - glib2-devel - gtk2-devel - gtk3-devel - eudev-devel - libxslt-devel - - - mageia/1002-main-allow-the-device-timeout-to-be-overridden-on-th.patch - pisilinux/pisilinux.patch - - system/boot/plymouth/pspec.xml - - - plymouth - - eudev - libdrm - plymouth-core-libs - plymouth-theme-pisilinux - - - /bin - /sbin - /usr/bin - /usr/sbin - /bin/plymouth - /usr/libexec/plymouth - /etc/plymouth - /etc/logrotate.d/bootlog - /usr/lib - /lib - /usr/lib/plymouth/text.so - /usr/lib/plymouth/details.so - /usr/lib/plymouth/renderers - /usr/share/pixmaps - /usr/share/plymouth - /usr/share/plymouth/themes - /usr/share/plymouth/themes/details - /usr/share/plymouth/themes/text - /usr/share/doc - /usr/share/man - /var/lib/plymouth - /run/plymouth - /var/spool/plymouth - /usr/share/locale - /usr/lib/tmpfiles.d/plymouth.conf - - - System.Package - - - tmpfiles.conf - pisilinux/boot-duration - pisilinux/initramfs.files - pisilinux/images/white-head.png - fedora/charge.plymouth - - - - plymouth-core-libs - Plymouth core libraries - plymouth-core-libs contains the libply and libply-splash-core libraries used by Plymouth. - - /lib/libply-splash-core.so* - /lib/libply.so* - - - - plymouth-graphics-libs - Plymouth graphics libraries - plymouth-graphics-libs contains the libply-splash-graphics library used by graphics Plymouth splashes. - - zlib - libpng - - - /usr/lib/libply-splash-graphics.so* - - - - plymouth-devel - Development headers and files for plymouth - - plymouth - - - /usr/include - /usr/lib/pkgconfig - - - - plymouth-renderer-x11 - An X11 renderer for debugging purposes - - cairo - gtk2 - atk - cairo - pango - gdk-pixbuf - fontconfig - - - /usr/lib/plymouth/renderers/x11* - - - - plymouth-plugin-label - Plymouth label plugin - plymouth-plugin-label contains the label control plugin for Plymouth. It provides the ability to render text on graphical boot splashes using pango and cairo. - - cairo - pango - glib2 - harfbuzz - plymouth-graphics-libs - - - /usr/lib/plymouth/label.so - - - - plymouth-plugin-fade-throbber - Plymouth Fade-Throbber plugin - plymouth-plugin-fade-throbber contains the "Fade-In" boot splash plugin for Plymouth. It features a centered image that fades in and out while other images pulsate around during system boot up. - - plymouth-graphics-libs - - - /usr/lib/plymouth/fade-throbber.so - - - - plymouth-theme-spinner - Spinner theme for Plymouth - plymouth için Spinner teması - plymouth-theme-spinner contains the "Spinner" boot splash theme for Plymouth. It features a simple theme with a small spinner on a dark background. - - plymouth-plugin-two-step - - - /usr/share/plymouth/themes/spinner - - - - plymouth-theme-fade-in - Fade-in theme for Plymouth - plymouth-theme-fade-in contains the "Fade-In" boot splash theme for Plymouth. It features a centered logo that fades in and out while stars twinkle around the logo during system boot up. - - plymouth-plugin-fade-throbber - - - /usr/share/plymouth/themes/fade-in - - - - plymouth-theme-spinfinity - Plymouth Spinfinity theme - plymouth için Spinfinity teması - plymouth-theme-spinfinity contains the "Spinfinity" boot splash theme for Plymouth. It features a centered logo and animated spinner that spins in the shape of an infinity sign. - - /usr/share/plymouth/themes/spinfinity - - - - plymouth-plugin-space-flares - Plymouth space-flares plugin - plymouth-plugin-space-flares contains the "space-flares" boot splash plugin for Plymouth. It features a corner image with animated flares. - - plymouth-plugin-label - plymouth-graphics-libs - - - /usr/lib/plymouth/space-flares.so - - - - plymouth-theme-solar - Plymouth Solar theme - plymouth için Solar teması - plymouth-theme-solar contains the "Solar" boot splash theme for Plymouth. It features a blue flamed sun with animated solar flares. - - plymouth-plugin-space-flares - - - /usr/share/plymouth/themes/solar - - - - plymouth-plugin-two-step - Plymouth Two-Step plugin - plymouth-plugin-two-step contains the "two-step" boot splash plugin for Plymouth. It features a two phased boot process that starts with a progressing animation synced to boot time and finishes with a short, fast one-shot animation. - - plymouth-plugin-label - plymouth-graphics-libs - - - /usr/lib/plymouth/two-step.so - - - - plymouth-theme-charge - Plymouth Charge plugin - plymouth için Charge teması - plymouth-theme-charge This package contains the "charge" boot splash theme for Plymouth. It features the shadowy hull of a Fedora logo charge up and and finally burst into full form. - - plymouth-plugin-two-step - - - /usr/share/plymouth/themes/charge - - - - plymouth-plugin-script - Plymouth script plugin - plymouth-plugin-script contains "script" boot splash plugin for Plymouth. It features an extensible, scriptable boot splash language that simplifies the process of designing custom boot splash themes. - - plymouth-graphics-libs - - - /usr/lib/plymouth/script.so - - - - plymouth-theme-script - Plymouth Script theme - plymouth-theme-script contains the "script" boot splash theme for Plymouth. It it is a simple example theme the uses the "script" plugin. - - plymouth-plugin-script - - - /usr/share/plymouth/themes/script - - - - plymouth-theme-pisilinux - Plymouth Pisi Linux theme - plymouth için Pisi Linux teması - plymouth-theme-pisilinux contains a simple but elegant boot theme for Pisi Linux. - - plymouth-plugin-script - - - /usr/share/plymouth/themes/pisilinux - - - - - 2022-03-25 - 22.02.122 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-25 - 0.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 0.8.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 0.8.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-01 - 0.8.8 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-08-25 - 0.8.8 - script fix. - Pisi Linux Community - admin@pisilinux.org - - - 2016-08-22 - 0.8.8 - actions fix - Pisi Linux Community - admin@pisilinux.org - - - 2016-08-21 - 0.8.8 - New theme. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 0.8.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-21 - 0.8.8 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-21 - 0.8.8 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - efivar - https://github.com/vathpela/efivar - - Aydın Demirel - aydin.demirel@pisilinux.org - - LGPL2.1 - app:console - system.boot - Tools and library to manipulate EFI variables - EFI değişkenlerini işlemek için araçlar ve kütüphane - Tools and library to manipulate EFI variables. - EFI değişkenlerini işlemek için araçlar ve kütüphane - https://github.com/rhinstaller/efivar/releases/download/37/efivar-37.tar.bz2 - - popt-devel - - - fedora/0001-util.h-add-unlikely-and-likely-macros.patch - fedora/0002-dp.h-make-format_guid-handle-misaligned-guid-pointer.patch - fedora/0003-linux-pci-root-remove-an-unused-assignment.patch - fedora/0004-Fix-all-the-places-Werror-address-of-packed-member-c.patch - fedora/0005-Get-rid-of-the-arrows-in-our-debug-messages.patch - fedora/0006-Define-strdupa-if-it-is-not-defined.patch - fedora/0007-Android-inital-porting-of-libefivar.patch - fedora/0008-Remove-an-unused-function.patch - fedora/0009-Fix-another-error-of-Werror-address-of-packed-member.patch - fedora/0010-Update-generated-ABI.patch - - system/boot/efivar/pspec.xml - - - efivar - - popt - - - /usr/lib - /usr/share/man - /usr/bin - - - - efivar-devel - - popt-devel - efivar - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-07-16 - 37 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 37 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-21 - 36 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-13 - 31 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-09 - 31 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-01-24 - 26 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-03-29 - 0.23 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gfxtheme-pisilinux-install - https://pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - system.boot - Pisi Linux gfxboot install theme - Pisi Linux gfxboot teması - Gfxtheme install package for Pisi Linux - Kurulum sistemi ve kurulu sistem için Pisi Linux gfxboot teması. - https://github.com/PisiLinuxNew/gfxtheme-pisilinux-install/archive/v0.2.tar.gz - - gfxboot - fribidi-devel - - system/boot/gfxtheme-pisilinux-install/pspec.xml - - - gfxtheme-pisilinux-install - - /usr/share/gfxtheme/pisilinux/install - - - - - 2020-01-26 - 0.2 - Rebuild for toolchain - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-13 - 0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-05 - 0.2 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-08 - 0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-08-04 - 0.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - vulkan - https://github.com/KhronosGroup - - Idris Kalp - idriskalp@gmail.com - - GPLv2 - library - x11.vulkan - Vulkan headers, loaders and validations layers - Vulkan headers, loaders and validations layers - https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/sdk-1.3.211.0.tar.gz - https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/sdk-1.3.211.0.tar.gz - - python3-lxml - libX11-devel - libXrandr-devel - wayland-devel - vulkan-headers - cmake - git - spirv-tools - spirv-headers - glslang-devel - wayland-server - wayland-client - wayland-cursor - spirv-tools-devel - - x11/vulkan/vulkan/pspec.xml - - - vulkan - - libX11 - libXrandr - wayland - spirv-tools - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - vulkan-32bit - emul32 - _emul32 - - libX11-32bit - libXrandr-32bit - wayland-32bit - glslang-32bit - spirv-tools-32bit - - - libX11-32bit - libXrandr-32bit - wayland-32bit - spirv-tools-32bit - - - /usr/bin/*32 - /usr/lib32 - - - - vulkan-devel - - vulkan - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2022-04-21 - 1.3.211.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 1.2.201 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 1.2.196 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.2.189 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 1.2.182 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 1.2.166 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-13 - 1.2.146 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 1.1.130 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - vulkan-lunarg-tools - http://lunarg.com/ - - Idris Kalp - idriskalp@gmail.com - - Custom - app:console - x11.vulkan - Extra Vulkan tools from LunarG - This project provides vktrace capture/replay tool, the Layer Factory, and other layer tools and driver tests. - https://sourceforge.net/projects/pisilinux/files/source/VulkanTools-1.1.130.0.tar.xz - - libX11-devel - libxcb-devel - libXrandr-devel - wayland-devel - vulkan-headers - vulkan-devel - qt5-svg-devel - qt5-webengine-devel - xcb-util-keysyms-devel - xcb-util-wm-devel - git - cmake - - x11/vulkan/vulkan-lunarg-tools/pspec.xml - - - vulkan-trace - - libX11 - libxcb - libXrandr - wayland - vulkan - qt5-base - qt5-svg - qt5-webengine - xcb-util-wm - wayland-client - xcb-util-keysyms - - - /etc/vulkan/explicit_layer.d/VkLayer_vktrace_layer.json - /usr/bin - /usr/lib/libVkLayer_vktrace_layer.so - /usr/lib/libvkdisplay_*.so - /usr/share/doc/vulkan-trace - - - - vulkan-extra-layers - - vulkan - - - /etc/vulkan/explicit_layer.d - /usr/lib - /usr/share - /usr/share/doc/vulkan-extra-layers - - - - - 2019-11-15 - 1.1.130.0 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - vulkan-tools - https://www.khronos.org/vulkan/ - - Idris Kalp - idriskalp@gmail.com - - BSD - app:console - x11.vulkan - Vulkan Utilities and Tools - This project provides Khronos official Vulkan Tools and Utilities for Linux - https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/v1.3.211.tar.gz - - libX11-devel - libxcb-devel - libXrandr-devel - wayland-devel - vulkan-headers - vulkan-devel - python3-devel - cmake - git - glslang-devel - wayland-server - wayland-client - wayland-cursor - wayland-protocols-devel - - x11/vulkan/vulkan-tools/pspec.xml - - - vulkan-tools - - libgcc - libX11 - libxcb - libXrandr - wayland - wayland-client - vulkan - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-04-21 - 1.3.212 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 1.2.201 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 1.2.196 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.2.189 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-28 - 1.2.182 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 1.2.166 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-04 - 1.2.146 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.1.130 - First release - İdris Kalp - idriskalp@gmail.com - - - - - - vulkan-headers - https://github.com/KhronosGroup - - Idris Kalp - idriskalp@gmail.com - - GPLv2 - library - x11.vulkan - Vulkan headers - Vulkan headers - https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.3.211.tar.gz - - cmake - python3-devel - - x11/vulkan/vulkan-headers/pspec.xml - - - vulkan-headers - - /usr/include - /usr/share/vulkan - /usr/share/doc - - - - - 2022-04-21 - 1.3.211 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 1.2.201 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 1.2.196 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.2.189 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 1.2.182 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 1.2.168 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-04 - 1.2.146 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 1.1.130 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - spirv-tools - https://www.khronos.org/vulkan/ - - Idris Kalp - idriskalp@gmail.com - - BSD - library - x11.vulkan - API and commands for processing SPIR-V modules - API and commands for processing SPIR-V modules - https://github.com/KhronosGroup/SPIRV-Tools/archive/v2022.2.tar.gz - - cmake - spirv-headers - python3-devel - - x11/vulkan/spirv-tools/pspec.xml - - - spirv-tools - - /usr/bin - /usr/lib/libSPIRV-Tools* - /usr/share - /usr/share/doc - - - - spirv-tools-32bit - emul32 - emul32 - - /usr/lib32 - - - - spirv-tools-devel - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/cmake - - - - - 2022-04-21 - 2022.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 2021.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 2021.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 2021.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 2021.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 2020.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-06 - 2020.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 2019.4 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - spirv-llvm - https://github.com/KhronosGroup/SPIRV-LLVM-Translator - - Pisi Linux Admins - admin@pisilinux.org - - custom - library - x11.vulkan - Tool and a library for bi-directional translation between SPIR-V and LLVM IR - Tool and a library for bi-directional translation between SPIR-V and LLVM IR - Tool and a library for bi-directional translation between SPIR-V and LLVM IR - Tool and a library for bi-directional translation between SPIR-V and LLVM IR - https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/refs/tags/v14.0.0.tar.gz - - git - cmake - python3-devel - llvm-mlir - llvm-libs - spirv-tools-devel - libxml2-devel - llvm-clang-devel - python3-setuptools - python3-lit - llvm-polly - spirv-headers - spirv-tools-devel - - x11/vulkan/spirv-llvm/pspec.xml - - - spirv-llvm - - llvm-libs - libgcc - python3-lit - spirv-tools - - - /usr/lib - /usr/share/doc - - - - spirv-llvm-32bit - 32-bit shared libraries for spirv-llvm - emul32 - emul32 - - llvm-32bit - libxml2-32bit - spirv-tools-32bit - - - llvm-32bit - spirv-tools-32bit - - - /usr/lib32 - - - - spirv-llvm-devel - Development files for spirv-llvm - - spirv-llvm - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2022-05-03 - 14.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 13.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-28 - 12.0.0 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-06-05 - 12.0.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - glslang - https://github.com/KhronosGroup/glslang - - Idris Kalp - idriskalp@gmail.com - - BSD - library - x11.vulkan - OpenGL and OpenGL ES shader front end and validator - OpenGL and OpenGL ES shader front end and validator - https://github.com/KhronosGroup/glslang/archive/11.9.0.tar.gz - - cmake - python3-devel - - x11/vulkan/glslang/pspec.xml - - - glslang - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - glslang-32bit - emul32 - emul32 - - /usr/bin/*32 - /usr/lib32 - - - - glslang-devel - - glslang - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2022-04-21 - 11.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 11.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 11.6.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 11.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-27 - 11.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-06 - 8.13.3743 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 8.13.3559 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - spirv-headers - https://www.khronos.org/registry/spir-v/ - - Mustafa Cinasal - muscnsl@gmail.com - - MIT - library - x11.vulkan - SPIR-V Headers - SPIR-V Headers - https://github.com/KhronosGroup/SPIRV-Headers/archive/refs/tags/sdk-1.3.211.0.tar.gz - - cmake - - x11/vulkan/spirv-headers/pspec.xml - - - spirv-headers - - /usr/include - /usr/lib/cmake - /usr/share/doc - /usr/lib/pkgconfig - - - - - 2022-04-21 - 1.3.211.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 1.5.4 - Git Version. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.5.4 - Git Version. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.5.4 - Git Version. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-28 - 1.5.4 - Git Version. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 1.5.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-06 - 1.5.3 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - i3wm - https://i3wm.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - x11.wm - A tiling window manager, completely written from scratch - An improved dynamic tiling window manager - https://i3wm.org/downloads/i3-4.20.1.tar.xz - - meson - libev-devel - startup-notification-devel - libxcb-devel - xcb-util-devel - xcb-util-cursor-devel - xcb-util-renderutil-devel - xcb-util-image-devel - xcb-util-keysyms-devel - xcb-util-wm-devel - xcb-util-xrm-devel - libxkbcommon-devel - yajl-devel - libpcre-devel - pango-devel - cairo-devel - xcb-proto - util-linux - libxslt-devel - util-macros - asciidoc - desktop-file-utils - xmlto - perl-AnyEvent-I3 - perl-JSON-XS - - x11/wm/i3wm/pspec.xml - - - i3wm - - yajl - glib2 - libev - pango - cairo - libxcb - libpcre - i3status - xcb-util - xcb-util-wm - xcb-util-xrm - libxkbcommon - perl-JSON-XS - xcb-util-cursor - xcb-util-keysyms - perl-AnyEvent-I3 - startup-notification - - dmenu - rofi - - - - /etc - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/applications - /usr/share/xsessions - - - - i3wm-devel - Development files for i3wm - system.devel - - i3wm - libev-devel - startup-notification-devel - libxcb-devel - xcb-util-devel - xcb-util-cursor-devel - xcb-util-renderutil-devel - xcb-util-image-devel - xcb-util-keysyms-devel - xcb-util-wm-devel - xcb-util-xrm-devel - libxkbcommon-devel - yajl-devel - libpcre-devel - pango-devel - cairo-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-26 - 4.20.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-01-25 - 4.17.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 4.16.1 - Rebuild libxkbcommon - Mustafa Cinasal - mcnsl@gmail.com - - - 2019-06-23 - 4.16.1 - add new runtime dependencies - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-02-02 - 4.16.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-06 - 4.16 - Version bump, add anyDependency rofi or dmenu - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-10 - 4.15 - Rebuild for new toolchain.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-16 - 4.15 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - awesome - https://github.com/awesomeWM/awesome - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app - x11.wm - Awesome is a highly configurable, next generation framework window manager for X. - Awesome is a highly configurable, next generation framework window manager for X. - Awesome, X için son derece yapılandırılabilir, yeni nesil bir çerçeve penceresi yöneticisidir. - Awesome, X için son derece yapılandırılabilir, yeni nesil bir çerçeve penceresi yöneticisidir. - https://github.com/awesomeWM/awesome/archive/refs/tags/v4.3.tar.gz - - git - cmake - gzip - xmlto - pango-devel - luajit-lgi - imagemagick-devel - docbook-xsl - xcb-util-renderutil-devel - doxygen - lua-devel - dbus-devel - cairo-devel - glib2-devel - libX11-devel - libxcb-devel - xcb-util-devel - gdk-pixbuf-devel - xcb-util-wm-devel - xcb-util-image-devel - libxkbcommon-devel - xcb-util-xrm-devel - libxdg-basedir-devel - xcb-util-cursor-devel - xcb-util-keysyms-devel - startup-notification-devel - - x11/wm/awesome/pspec.xml - - - awesome - - lua - dbus - cairo - glib2 - libX11 - libxcb - xcb-util - gdk-pixbuf - xcb-util-wm - libxkbcommon - xcb-util-xrm - libxdg-basedir - xcb-util-cursor - xcb-util-keysyms - startup-notification - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/doc - - - - - 2022-05-21 - 4.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - openbox - http://openbox.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - x11.wm - A standarts compliant, fast, lightweight window manager - Standartlara uygun, hızlı, hafif bir pencere yöneticisi - Openbox is a window manager for the X11 windowing system. - Openbox, X11 pencere sistemi için pencere yöneticisidir. - http://openbox.org/dist/openbox/openbox-3.6.1.tar.gz - - pango-devel - libXft-devel - libICE-devel - imlib2-devel - libxml2-devel - libSM-devel - libgcc - libXrandr-devel - libXcursor-devel - libXinerama-devel - startup-notification-devel - dbus-devel - librsvg-devel - - - openbox-3.5.0-which-2.20.patch - openbox-3.5.0-title-matching.patch - openbox-default-theme.patch - openbox-3.5.2-gnome-session.patch - openbox-3.6.1-py3-xdg.patch - openbox-kde-paths.patch - debian-887908.patch - - x11/wm/openbox/pspec.xml - - - openbox - - cairo - glib2 - pango - libSM - libXft - libICE - libX11 - imlib2 - libXext - libxml2 - librsvg - libXrandr - libXcursor - libXinerama - startup-notification - - - /usr/bin/obmenu-generator - /usr/bin/obxprop - /usr/bin/openbox - /usr/bin/openbox-session - /usr/lib/openbox - /etc/xdg/openbox - /etc/xdg/obmenu-generator - /usr/lib/libobrender* - /usr/lib/libobt* - /usr/share/openbox - /usr/share/themes - /usr/share/xsessions/openbox.desktop - /usr/share/applications - /usr/share/pixmaps - /usr/share/locale - /usr/share/man/man1/obxprop.1 - /usr/share/man/man1/openbox.1 - /usr/share/man/man1/openbox-session.1 - /usr/share/doc - - - obmenu-generator - schema.pl - menu.xml - kedicik.png - xdg-menu - terminals.menu - - - - openbox-kde - The openbox-kde package contains the files needed for using openbox inside a -KDE session. - - openbox - - - /usr/bin/openbox-kde-session - /usr/share/xsessions/openbox-kde.desktop - /usr/share/man/man1/openbox-kde-session.1 - - - - openbox-gnome - The openbox-gnome package contains the files needed for using openbox inside a -Gnome session. - - openbox - - - /usr/share/gnome/wm-properties - - - - openbox-devel - Development headers for openbox - Openbox için geliştirme başlıkları - - openbox - pango-devel - glib2-devel - libxml2-devel - libXft-devel - imlib2-devel - librsvg-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-27 - 3.6.1 - splited kde/gnome packages and added some patch - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-12-13 - 3.6.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 3.6.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 3.6.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2015-07-24 - 3.6.1 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pekwm - https://www.pekwm.se/ - - fury - uglyside@yandex.ru - - GPL-2 - app - x11.wm - Pek X window manager. - The Pekwm Window Manager is written by Claes Nästén. The code is based on the aewm++ window manager, but it has evolved enough that it no longer resembles aewm++ at all. It also has an expanded feature-set, including window grouping (similar to ion, pwm, or fluxbox), auto properties, xinerama and keygrabber that supports keychains, and much more. - https://github.com/pekwm/pekwm/archive/ac6a6378867c84148bf5f5d77eabb3bfcdea7a81.zip - - cmake - zlib-devel - libSM-devel - libICE-devel - libX11-devel - libXpm-devel - libXft-devel - libpng-devel - libXrandr-devel - libXinerama-devel - libxkbcommon-devel - libjpeg-turbo-devel - - x11/wm/pekwm/pspec.xml - - - pekwm - - libX11 - libXft - libXpm - libgcc - libpng - libXext - libXrandr - libXinerama - libjpeg-turbo - - - /etc - /usr/bin - /usr/share/pekwm - /usr/share/man - /usr/share/doc/pekwm - - - - - 2022-04-14 - 0.2.1 - First build. - fury - uglyside@yandex.ru - - - - - - wayland-utils - https://gitlab.freedesktop.org/wayland/wayland-utils - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.wayland - Wayland tools to display information about current compositor - Wayland tools to display information about current compositor - Wayland tools to display information about current compositor - Wayland tools to display information about current compositor - https://gitlab.freedesktop.org/wayland/wayland-utils/-/archive/wayland-utils-1.0.0/wayland-utils-wayland-utils-1.0.0.tar.bz2 - - meson - wayland-devel - wayland-client - wayland-server - wayland-cursor - wayland-protocols-devel - - x11/wayland/wayland-utils/pspec.xml - - - wayland-utils - - wayland-client - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2021-10-20 - 1.0.0 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - egl-wayland - https://github.com/NVIDIA/egl-wayland - - Pisi Linux Admins - admin@pisilinux.org - - MIT - library - x11.wayland - Wayland EGL External Platform library - Wayland EGL External Platform library - Wayland EGL Harici Platform kitaplığı - Wayland EGL Harici Platform kitaplığı - https://github.com/NVIDIA/egl-wayland/archive/refs/tags/1.1.9.tar.gz - - meson - libffi-devel - libglvnd-devel - wayland-devel - wayland-client - wayland-server - eglexternalplatform - wayland-protocols-devel - - x11/wayland/egl-wayland/pspec.xml - - - egl-wayland - - wayland-client - wayland-server - - - /usr/lib - /usr/share/wayland-eglstream - /usr/share/doc - - - - egl-wayland-devel - Development files for egl-wayland - - egl-wayland - eglexternalplatform - - - /usr/lib/pkgconfig - /usr/share/pkgconfig - - - - - 2021-12-13 - 1.1.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 1.1.7 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - xorg-xwayland - https://xorg.freedesktop.org - - Pisi Linux Admins - admin@pisilinux.org - - custom - library - x11.wayland - Run X clients under wayland - Run X clients under wayland - Run X clients under wayland - Run X clients under wayland - https://xorg.freedesktop.org/archive/individual/xserver/xwayland-22.1.2.tar.xz - - meson - xtrans - font-util - mesa-devel - audit-devel - libxcvt-devel - libXau-devel - libbsd-devel - libdrm-devel - nettle-devel - pixman-devel - wayland-client - libepoxy-devel - libglvnd-devel - libtirpc-devel - libXfont2-devel - xorg-app-devel - libXdmcp-devel - egl-wayland-devel - libxshmfence-devel - wayland-protocols-devel - - x11/wayland/xorg-xwayland/pspec.xml - - - xorg-xwayland - - mesa - libXau - libbsd - libdrm - nettle - pixman - libxcvt - libXdmcp - libepoxy - libglvnd - libtirpc - libXfont2 - libxshmfence - wayland-client - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - xorg-server-xwayland - xorg-server-common - - - - xorg-xwayland-devel - Development files for xorg-xwayland - - xorg-xwayland - - - /usr/include - /usr/lib/pkgconfig - - - xorg-server-common - - - - - 2022-05-25 - 22.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-22 - 22.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-15 - 21.1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-12 - 21.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-03 - 21.1.2.901 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-06 - 21.1.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-07 - 21.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-16 - 21.1.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - scim - http://www.scim-im.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - x11.im - Smart Common Input Method - framework for Input Methods - Smart Common Input Method - Girdi Metodları sistemi - Smart Common Input Method – ogólna metoda wprowadzania - Smart Common Input Method (SCIM - Méthode commune intelligente d'entrée) est un framework (cadre de développement) pour méthodes d'entrée. Il s'agit d'une approche modulaire et flexible pour créer ou utiliser des méthodes d'entrée pour la plateforme X11. - Smart Common Input Method (SCIM) is a framework for Input Methods. It is a modular and flexible approach for authoring and using Input Methods for X11 platform. - Smart Common Input Method (SCIM), X11 platformu için Girdi Metodlarının yönetilmesi ve kullanılması için modüler ve esnek Girdi Metodları sistemi - scim to główny pakiet projektu SCIM, udostępniający podstawowe funkcje i typy danych. - https://github.com/scim-im/scim/archive/1.4.18.tar.gz - - scim-system-config - scim-system-global - - - libXt-devel - libX11-devel - intltool - - - scim-1.4.14-compile.patch - scim-1.4.7-support-more-utf8-locales.patch - scim-initial-locale-hotkey-20070922.patch - scim_panel_gtk-emacs-cc-style.patch - scim-add-restart.patch - - x11/im/scim/pspec.xml - - - scim-core - Core of SCIM for users - - libX11 - libgcc - scim-libs - gtk3 - gtk2 - pango - glib2 - gdk-pixbuf - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/locale - - - scim.session - scim.env - - - - scim-libs - Libraries of SCIM - - cairo - libtool-ltdl - - - /usr/lib/libscim-* - /usr/lib/scim-1.0/*/Config - /usr/lib/scim-1.0/*/IMEngine - - - - scim-devel - Includes and pkgconfig for scim development - - scim-core - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 1.4.18 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.4.18 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.4.17 - Rebuild. - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-03 - 1.4.17 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 1.4.16 - Version bump - Burak Erturk - burakerturk@pisilinux.org - - - 2014-05-16 - 1.4.14 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xkeyboard-config - https://freedesktop.org/wiki/Software/XKeyboardConfig - - PisiLinux Community - admin@pisilinux.org - - MIT - data - x11.misc - X keyboard configuration database - X klavye yapılandırma veritabanı - xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations. - xkeyboard-config, X Pencere Sistemi için tutarlı ve iyi tasarlanmış X klavye yapılandırma verisi sağlamayı amaçlar. - mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.36.tar.xz - - meson - intltool - xorg-proto - xorg-app - python3-devel - libxslt-devel - libX11-devel - - x11/misc/xkeyboard-config/pspec.xml - - - xkeyboard-config - - xorg-app - libxslt - libX11 - xterm - - - /etc/X11/xorg.conf.d - /lib/udev/rules.d - /usr/share/X11/xkb - /usr/share/doc - /usr/share/locale - /usr/share/pkgconfig - /usr/share/man - - - 10-keyboard.conf - 95-xkb.rules - - - - - 2022-06-03 - 2.36 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-09 - 2.35.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-10 - 2.32 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 2.28 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 2.27 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-10 - 2.26 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-01-07 - 2.24 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-12 - 2.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-28 - 2.23.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-22 - 2.23.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 2.20 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-04 - 2.19 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 2.17 - Version bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-05-14 - 2.14 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - xscreensaver - https://www.jwz.org/xscreensaver/ - - Mogyorósi Petra - squeakymouse@protonmail.com - - custom - x11.misc - Screensaver collection for X11 systems. - XScreenSaver is the standard screen saver collection shipped on most Linux and Unix systems running the X11 Window System. I released the first version in 1992. I ported it to macOS in 2006, to iOS in 2012, and to Android in 2014. On X11 systems, XScreenSaver is two things: it is both a large collection of screen savers; and it is also the framework for blanking and locking the screen. - https://www.jwz.org/xscreensaver/xscreensaver-6.03.tar.gz - - bc - intltool - atk-devel - pam-devel - gtk2-devel - mesa-devel - glib2-devel - glibc-devel - cairo-devel - pango-devel - libXi-devel - pixman-devel - libpng-devel - libXft-devel - libXmu-devel - libICE-devel - libX11-devel - gettext-devel - libxml2-devel - libXext-devel - elogind-devel - freetype-devel - harfbuzz-devel - mesa-glu-devel - libglade-devel - libXrandr-devel - libXrender-devel - libXxf86vm-devel - gdk-pixbuf-devel - libXinerama-devel - libXxf86misc-devel - libjpeg-turbo-devel - gdk-pixbuf-xlib-devel - - x11/misc/xscreensaver/pspec.xml - - - xscreensaver - - atk - pam - gtk2 - mesa - glib2 - glibc - pango - cairo - libXi - libXt - libXft - libpng - libICE - libX11 - pixman - libXmu - libxml2 - gettext - libXext - elogind - libglade - libglvnd - mesa-glu - freetype - harfbuzz - libXrandr - libXrender - gdk-pixbuf - libXxf86vm - libXinerama - libXxf86misc - libjpeg-turbo - gdk-pixbuf-xlib - - - /etc/pam.d - /usr/bin - /usr/libexec - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-04-14 - 6.03 - First build. - fury - uglyside@yandex.ru - - - - - - mesa-demos - http://www.mesa3d.org - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - x11.misc - Mesa demos - Mesa demoları - The Mesa Demos package contains a large number of OpenGL demonstration and test programs. - Mesa Demos paketi çok sayıda OpenGL gösterimi ve test programları içerir. - https://archive.mesa3d.org/demos/8.5.0/mesa-demos-8.5.0.tar.bz2 - - glew-devel - mesa-devel - libXext-devel - mesa-glu-devel - freeglut-devel - libX11-devel - libglvnd-devel - glibc-devel - wayland-devel - - x11/misc/mesa-demos/pspec.xml - - - mesa-demos - - glew - freeglut - libXext - mesa - libglvnd - mesa-glu - libX11 - wayland - wayland-client - - - /usr/share/mesa-demos - /usr/lib/mesa/demos - /usr/bin/eglinfo - - - - mesa-utils - Mesa utilities - Mesa yardımcı uygulamaları - x11.util - - mesa - libglvnd - libX11 - - - /usr/bin/glxgears - /usr/bin/xeglgears - /usr/bin/glxinfo - - - - mesa-demos-32bit - 32-bit shared libraries for mesa - mesa-demos için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - glew-32bit - freeglut-32bit - nettle-32bit - mesa-glu-32bit - - - libgcc - glew-32bit - mesa-32bit - libX11-32bit - libXext-32bit - freeglut-32bit - mesa-glu-32bit - wayland-32bit - libglvnd-32bit - mesa-demos - - - /usr/lib32 - /usr/bin/glxinfo32 - /usr/bin/glxgears32 - - - - - 2022-05-30 - 8.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-19 - 8.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 8.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 8.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 8.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-03-01 - 8.3.0 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2015-01-20 - 8.2.0 - Release bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2015-01-02 - 8.2.0 - Dep fixed. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-09-24 - 8.2.0 - Version bump. - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-16 - 8.1.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2014-03-08 - 8.1.0 - Release bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-08-25 - 8.1.0 - Release bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-05-29 - 8.1.0 - Fixed configure settings. - Ertan Güven - ertan@pisilinux.org - - - 2013-02-27 - 8.1.0 - Version bump. - Marcin Bojara - marcin@pisilinux.org - - - 2013-02-09 - 8.0.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - argyllcms - https://www.argyllcms.com/ - - PisiLinux Community - osman.erkan@pislinux.org - - GPLv3 - MIT - app:gui - x11.misc - ICC compatible color management system - The Argyll color management system supports accurate ICC profile creation for acquisition devices, CMYK printers, film recorders and calibration and profiling of displays. - https://people.freedesktop.org/~hughsient/releases/hargyllcms-1.9.2.tar.xz - - tiff-devel - libpng-devel - libX11-devel - libXext-devel - libXrandr-devel - libXxf86vm-devel - libXinerama-devel - libjpeg-turbo-devel - libusb-devel - libtool - - x11/misc/argyllcms/pspec.xml - - - argyllcms - - tiff - libpng - libX11 - libXext - libXrandr - libXxf86vm - libXinerama - libjpeg-turbo - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/color - - - - - 2020-01-25 - 1.9.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.9.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.9.2 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-13 - 1.9.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - xbitmaps - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.misc - Utilitaire Xbitmaps de X.Org - X.Org static graphics - X.Org statik grafikleri - X.Org xbitmaps Werkzeug - xbitmaps provides static graphics needed by Xorg applications to draw screen elements. - xbitmaps, ekran öğeleri çizmek için Xorg uygulamaları tarafından ihtiyaç duyulan statik grafikleri içerir. - mirrors://xorg/individual/data/xbitmaps-1.1.2.tar.bz2 - x11/misc/xbitmaps/pspec.xml - - - xbitmaps - - /usr/include/X11/bitmaps - /usr/lib/pkgconfig - /usr/share/pkgconfig - - - - - 2020-01-10 - 1.1.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 1.1.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.1.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.1.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-15 - 1.1.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - opencl-icd - https://github.com/OCL-dev/ocl-icd - - Mathias Freire - mathiasfreire45@gmail.com - - BSD-2-Clause - library - x11.misc - OpenCL ICD loader library - OpenCL is a royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices. - https://github.com/OCL-dev/ocl-icd/archive/v2.2.14.tar.gz - https://github.com/KhronosGroup/OpenCL-Headers/archive/v2020.12.18.tar.gz - - ruby - - x11/misc/opencl-icd/pspec.xml - - - opencl-icd - - /usr/lib - /usr/share/man - /usr/share/doc - - - - opencl-icd-32bit - emul32 - emul32 - - /usr/lib32 - - - - opencl-icd-devel - - opencl-icd - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-01-28 - 2.2.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-15 - 2.2.12 - First Release - Idris Kalp - idriskalp@gmail.com - - - - - - bumblebee - https://bumblebee-project.org - - Idris Kalp - idriskalp@gmail.com - - GPLv3 - app:gui - kernel.drivers - a project aiming to support NVIDIA Optimus technology under Linux. - The Bumblebee Project proudly presents version 3.0 of Bumblebee, a project aiming to support NVIDIA Optimus technology under Linux. After two months of hard work this version has finally been considered stable enough for release. - https://github.com/Bumblebee-Project/Bumblebee/archive/8f3d307b6aabbc2cd8444c6e5a4360f3bf2915ec.tar.gz - - libbsd-devel - libX11-devel - glib2-devel - libkmod-devel - - x11/misc/bumblebee/pspec.xml - - - bumblebee - - glib2 - module-bbswitch - libX11 - libbsd - primus - virtualgl - libkmod - virtualgl-32bit - - - /etc - /usr/lib/tmpfiles.d/bumblebee.conf - /usr/bin - /usr/sbin - /lib/udev/rules.d - /usr/share/man - /usr/share/doc - - - System.Service - System.Package - - - tmpfiles.conf - - - - - 2020-01-25 - 3.2.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 3.2.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 3.2.1 - Rebuild - Idris Kalp - idriskalp@pgmail.com - - - 2016-05-02 - 3.2.1 - Rebuild - Idris Kalp - idriskalp@pgmail.com - - - 2016-04-08 - 3.2.1 - First Release - Idris Kalp - idriskalp@pgmail.com - - - - - - primus - https://github.com/amonakov/primus - - Mathias Freire - mathiasfreire45@gmail.com - - ISC - library - x11.misc - Minimalistic and efficient OpenGL offloading for Bumblebee - Primus is a shared library that provides OpenGL and GLX APIs and implements low-overhead local-only client-side OpenGL offloading via GLX forking, similar to VirtualGL. - mirrors://sourceforge/pisilinux/source/primus-20160408.tar.gz - - libX11-devel - mesa-devel - - - primus-nvidia-libs.patch - - x11/misc/primus/pspec.xml - - - primus - - libX11 - mesa - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - primus-32bit - - libX11-32bit - mesa-32bit - - - libX11-32bit - mesa-32bit - - - /usr/lib32 - - - - - 2020-01-25 - 2016.05.02 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2018-07-30 - 2016.05.02 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2017-02-16 - 2016.05.02 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2016-05-02 - 2016.05.02 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2016-04-09 - 2016.04.08 - First Release - Idris Kalp - idriskalp@gmail.com - - - - - - i3status - http://i3wm.org/i3status - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - BSD - x11.misc - A small generator for status bars - a small program (about 1500 SLOC) for generating a status bar for dzen2, xmobar or similar programs - http://i3wm.org/i3status/i3status-2.13.tar.bz2 - - xmlto - asciidoc - libxslt-devel - alsa-lib-devel - pulseaudio-libs-devel - libnl-devel - yajl-devel - libconfuse-devel - - x11/misc/i3status/pspec.xml - - - i3status - - alsa-lib - pulseaudio-libs - libnl - yajl - libconfuse - - - /etc - /usr/bin - /usr/share/man - - - - - 2020-01-25 - 2.13 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 2.12 - Rebuild for new toolchain. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-16 - 2.12 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - dmenu - http://tools.suckless.org/dmenu/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - MIT - x11.misc - A dynamic menu for X - Dynamic menu is a generic menu for X, originally designed for dwm. It manages huge amounts (up to 10.000 and more) of user defined menu items efficiently - https://dl.suckless.org/tools/dmenu-4.9.tar.gz - - fontconfig-devel - libX11-devel - libXft-devel - libXinerama-devel - - x11/misc/dmenu/pspec.xml - - - dmenu - - fontconfig - libX11 - libXft - libXinerama - - - /usr/bin - /usr/share/man - - - - - 2020-01-25 - 4.9 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 4.8 - Rebuild for new toolchain. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-16 - 4.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xorg-app - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - app:gui - x11.misc - Applications de X.Org - X.Org applications - X.Org uygulamaları - X.Org Anwendungen - xorg-app contains base Xorg applications. - mirrors://xorg/individual/app/appres-1.0.5.tar.bz2 - mirrors://xorg/individual/app/bdftopcf-1.1.tar.bz2 - mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2 - mirrors://xorg/individual/app/bitmap-1.0.9.tar.bz2 - mirrors://xorg/individual/app/editres-1.0.7.tar.bz2 - mirrors://xorg/individual/app/fonttosfnt-1.2.2.tar.bz2 - mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2 - mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2 - mirrors://xorg/individual/app/iceauth-1.0.8.tar.bz2 - mirrors://xorg/individual/app/ico-1.0.5.tar.bz2 - mirrors://xorg/individual/app/listres-1.0.4.tar.bz2 - mirrors://xorg/individual/app/luit-1.1.1.tar.bz2 - mirrors://xorg/individual/app/mkcomposecache-1.2.1.tar.bz2 - mirrors://xorg/individual/app/mkfontdir-1.0.7.tar.bz2 - mirrors://xorg/individual/app/mkfontscale-1.2.1.tar.bz2 - mirrors://xorg/individual/app/oclock-1.0.4.tar.bz2 - mirrors://xorg/individual/app/rendercheck-1.5.tar.bz2 - mirrors://xorg/individual/app/rgb-1.0.6.tar.bz2 - mirrors://xorg/individual/app/rstart-1.0.5.tar.bz2 - mirrors://xorg/individual/app/scripts-1.0.1.tar.bz2 - mirrors://xorg/individual/app/sessreg-1.1.2.tar.bz2 - mirrors://xorg/individual/app/setxkbmap-1.3.2.tar.bz2 - mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2 - mirrors://xorg/individual/app/smproxy-1.0.6.tar.bz2 - mirrors://xorg/individual/app/twm-1.0.11.tar.xz - mirrors://xorg/individual/app/viewres-1.0.6.tar.bz2 - mirrors://xorg/individual/app/x11perf-1.6.1.tar.bz2 - mirrors://xorg/individual/app/xauth-1.1.tar.bz2 - mirrors://xorg/individual/app/xbacklight-1.2.3.tar.bz2 - mirrors://xorg/individual/app/xbiff-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xcalc-1.1.0.tar.bz2 - mirrors://xorg/individual/app/xclipboard-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xclock-1.0.9.tar.bz2 - mirrors://xorg/individual/app/xcmsdb-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xcompmgr-1.1.8.tar.bz2 - mirrors://xorg/individual/app/xconsole-1.0.7.tar.bz2 - mirrors://xorg/individual/app/xcursorgen-1.0.7.tar.bz2 - mirrors://xorg/individual/app/xdbedizzy-1.1.0.tar.bz2 - mirrors://xorg/individual/app/xditview-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xdpyinfo-1.3.2.tar.bz2 - mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2 - mirrors://xorg/individual/app/xev-1.2.4.tar.bz2 - mirrors://xorg/individual/app/xeyes-1.2.0.tar.bz2 - mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xfd-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xfontsel-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xfs-1.2.0.tar.bz2 - mirrors://xorg/individual/app/xfsinfo-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xfwp-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xgamma-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xhost-1.0.8.tar.bz2 - mirrors://xorg/individual/app/xinput-1.6.3.tar.bz2 - mirrors://xorg/individual/app/xkbcomp-1.4.5.tar.bz2 - mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xkbprint-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xkill-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xload-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xlogo-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xlsatoms-1.1.3.tar.bz2 - mirrors://xorg/individual/app/xlsclients-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xlsfonts-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xmag-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xman-1.1.5.tar.bz2 - mirrors://xorg/individual/app/xmessage-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xmh-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xmodmap-1.0.10.tar.bz2 - mirrors://xorg/individual/app/xmore-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xpr-1.0.5.tar.bz2 - mirrors://xorg/individual/app/xprop-1.2.5.tar.bz2 - mirrors://xorg/individual/app/xrandr-1.5.1.tar.xz - mirrors://xorg/individual/app/xrdb-1.2.1.tar.bz2 - mirrors://xorg/individual/app/xrefresh-1.0.6.tar.bz2 - mirrors://xorg/individual/app/xset-1.2.4.tar.bz2 - mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2 - mirrors://xorg/individual/app/xsetpointer-1.0.1.tar.bz2 - mirrors://xorg/individual/app/xsetroot-1.1.2.tar.bz2 - mirrors://xorg/individual/app/xsm-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xstdcmap-1.0.4.tar.bz2 - mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2 - mirrors://xorg/individual/app/xvinfo-1.1.4.tar.bz2 - mirrors://xorg/individual/app/xwd-1.0.8.tar.bz2 - mirrors://xorg/individual/app/xwininfo-1.1.5.tar.bz2 - mirrors://xorg/individual/app/xwud-1.0.5.tar.bz2 - - fontconfig-devel - libdmx-devel - libfontenc-devel - libFS-devel - libICE-devel - libpng-devel - libSM-devel - libXaw-devel - libXcomposite-devel - libXcursor-devel - libXdamage-devel - libXext-devel - libXfixes-devel - libXfont-devel - libXft-devel - libXi-devel - libXinerama-devel - libxkbfile-devel - libXmu-devel - libXrandr-devel - libXfont2-devel - libXrender-devel - libXScrnSaver-devel - libXt-devel - libXtst-devel - libXv-devel - libXxf86dga-devel - libXxf86vm-devel - xbitmaps - xcb-util-devel - libXxf86misc-devel - xorg-proto - util-macros - xtrans - font-util - - x11/misc/xorg-app/pspec.xml - - - xorg-app - - zlib - libX11 - libXau - libpng - libxcb - freetype - libFS - libSM - libXi - libXt - libXv - libdmx - libXmu - libXaw - libICE - libXft - libXtst - libXext - xcb-util - libXfont - libXrandr - libXfixes - libXfont2 - libXrender - fontconfig - libfontenc - libXxf86vm - libXcursor - libXdamage - libxkbfile - libXxf86dga - libXinerama - libXxf86misc - libXcomposite - libXScrnSaver - - - /etc - /usr/bin - /usr/include - /usr/lib - /usr/sbin - /usr/share/X11 - /usr/share/man - - - System.PackageHandler - - - - xorg-app-devel - - xorg-proto - libX11-devel - libxkbfile-devel - xorg-app - - - /usr/lib/pkgconfig - - - - - 2021-08-28 - 7.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-25 - 7.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 7.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 7.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 7.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-21 - 7.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-05 - 7.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 7.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 7.7 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-05-10 - 7.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xinit - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - x11.misc - X Window System session initializer - X Pencere Sistemi oturum hazırlayıcı - xinit initializes X Window System server and runs the first client application. - xinit, X Pencere Sistemi sunucusunu hazırlar ve ilk istemci uygulamayı başlatır. - mirrors://xorg/individual/app/xinit-1.4.1.tar.bz2 - - util-macros - xorg-proto - libX11-devel - - - 06_move_serverauthfile_into_tmp.diff - fs25361.patch - - x11/misc/xinit/pspec.xml - - - xinit - - libX11 - xorg-app - dbus-x11 - - - /etc/X11/Xresources - /etc/X11/Xdefaults - /etc/X11/xinit - /usr/bin - /usr/lib/X11/xinit - /usr/share/doc - /usr/share/man - - - Xsession - xinitrc - xserverrc - xserverrc - Xresources - Xdefaults - xinitrc.d/localuser.sh - xinitrc.d/xdg-runtime-dir.sh - xinitrc.d/Xresources.sh - xinitrc.d/Xdefaults.sh - xinitrc.d/xkb.sh - xinitrc.d/startup.sh - xinitrc.d/environment.sh - xinitrc.d/dbus.sh - xinitrc.d/ssh-agent.sh - - - - - 2020-12-09 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-24 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 1.4.0 - Rebuild xorg prto - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-28 - 1.4.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.3.4 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-02 - 1.3.4 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-11-30 - 1.3.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - virtualgl - http://virtualgl.org - - Marcin Bojara - marcin@pisilinux.org - - LGPLv2.1 - library - app:console - x11.misc - A toolkit for displaying OpenGL applications to thin clients - OpenGL uygulamaları ince istemcilerde göstermek için bir kitaplık - Redirects 3D commands from an OpenGL application onto a server-side 3D graphics card. - Bir OpenGL uygulamadan gelen 3D komutlarını sunucu tarafındaki 3D grafik kartına yönlendirir. - https://sourceforge.net/projects/virtualgl/files/2.5.2/VirtualGL-2.5.2.tar.gz - - cmake - fltk-devel - libXv-devel - libXext-devel - mesa-devel - libX11-devel - mesa-glu-devel - libjpeg-turbo-devel - - x11/misc/virtualgl/pspec.xml - - - virtualgl - - fltk - libXv - libXext - mesa - libX11 - mesa-glu - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/lib/fakelib - /usr/share/doc - - - - virtualgl-32bit - 32 bit shared libraries of VirtualGL - emul32 - emul32 - - fltk-32bit - libX11-32bit - libXv-32bit - libXext-32bit - mesa-32bit - mesa-glu-32bit - libjpeg-turbo-32bit - - - fltk-32bit - libX11-32bit - libXv-32bit - libXext-32bit - mesa-32bit - mesa-glu-32bit - libjpeg-turbo-32bit - - - /usr/bin/glxspheres32 - /usr/lib32 - /usr/lib32/fakelib - - - - virtualgl-devel - Development files for virtualgl - - virtualgl - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2018-07-30 - 2.5.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-22 - 2.5.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 2.5.1 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-02 - 2.5.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-02 - 2.5 - Rebuild - Idris KALP - idriskalp@gmail.com - - - 2016-04-08 - 2.5 - Version bump - Idris KALP - idriskalp@gmail.com - - - - - - polybar - https://polybar.github.io/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:gui - x11.misc - A fast and easy to use tool for creating status bars - Polybar aims to help users build beautiful and highly customizable status bars for their desktop environment, without the need of having a black belt in shell scripting. - https://github.com/jaagr/polybar/releases/download/3.4.2/polybar-3.4.2.tar - - cmake - i3wm-devel - xcb-proto - cairo-devel - curl-devel - xcb-util-xrm-devel - libnl-devel - wireless-tools-devel - alsa-lib-devel - jsoncpp-devel - pulseaudio-libs-devel - - x11/misc/polybar/pspec.xml - - - polybar - - libgcc - cairo - curl - libxcb - freetype - fontconfig - xcb-util-xrm - xcb-util-wm - xcb-util-cursor - libnl - jsoncpp - alsa-lib - pulseaudio-libs - - - /usr/bin - /usr/share/bash-completion - /usr/share/man - /usr/share/doc - /usr/share/zsh - - - - - 2020-01-25 - 3.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-13 - 3.3.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-30 - 3.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - beignet - https://www.freedesktop.org/wiki/Software/Beignet/ - - Idris Kalp - idriskalp@gmail.com - - GPLv2 - library - x11.misc - Open source implementation of the OpenCL for Intel GPUs - Intel ekran kartları için OpenCL gerçekleştirimi - Open source implementation of the OpenCL for Intel GPUs - Intel ekran kartları için OpenCL gerçekleştirimi - https://sourceforge.net/projects/pisilinux/files/source/beignet-1.3.2_12.tar.xz - - libX11-devel - libXext-devel - libXfixes-devel - llvm-clang-devel - libdrm-devel - llvm - llvm-libs - opencl-icd-devel - cmake - python3-devel - - - llvm8.patch - llvm9.patch - llvm10.patch - - x11/misc/beignet/pspec.xml - - - beignet - - libX11 - libXext - libXfixes - llvm-clang - opencl-icd - libgcc - libdrm - libdrm-intel - llvm - llvm-libs - - - /etc - /usr/lib - /usr/share - /usr/share/doc - - - - - 2020-01-11 - 1.3.2_12 - First Release - Idris Kalp - idriskalp@gmail.com - - - - - - xorg-font - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - data:font - x11.misc - Fichiers de fontes d'écrans graphiques (X.Org) - X.Org font files - X.Org yazı tipi dosyaları - Grafische Oberfläche (X.Org) Schrift Dateien - xorg-font contains base X.Org fonts. - mirrors://xorg/individual/font/encodings-1.0.5.tar.bz2 - mirrors://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-alias-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 - mirrors://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 - mirrors://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 - mirrors://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 - mirrors://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 - - font-util - util-macros - xorg-app - fontconfig-devel - - x11/misc/xorg-font/pspec.xml - - - xorg-font - - xorg-app - - - /etc/X11/fontpath.d - /usr/share/fonts - /etc/fonts/conf.avail/42-luxi-mono.conf - /etc/fonts/conf.d/42-luxi-mono.conf - - - - xorg-font-extra - X.Org additional font files - X.Org ek yazı tipi dosyaları - - xorg-app - - - /etc/X11/fontpath.d/75dpi:unscaled - /etc/X11/fontpath.d/100dpi:unscaled - /usr/share/fonts/75dpi - /usr/share/fonts/100dpi - - - - - 2020-01-25 - 7.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-11-08 - 7.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-08 - 7.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 7.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 7.6 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 7.6 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-11-17 - 7.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xapp - https://github.com/linuxmint/xapp - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - x11.misc - Common library for X-Apps project - Common library for X-Apps project - Common library for X-Apps project - Common library for X-Apps project - https://github.com/linuxmint/xapp/archive/refs/tags/2.2.3.tar.gz - - meson - vala-devel - libdbusmenu-gtk3 - libgnomekbd-devel - libdbusmenu-devel - python3-pygobject3-devel - gobject-introspection-devel - - x11/misc/xapp/pspec.xml - - - xapp - - gtk3 - cairo - glib2 - pango - libX11 - gdk-pixbuf - libgnomekbd - libdbusmenu-gtk3 - - - /usr/bin - /etc - /usr/libexec - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - xapp-devel - Development files for xapp - - xapp - gtk3-devel - cairo-devel - glib2-devel - libX11-devel - gdk-pixbuf-devel - libgnomekbd-devel - libxkbfile-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 2.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-25 - 2.2.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - xdm - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - app:gui - x11.misc - X Display Manager - X Görüntü Yöneticisi - X Display Manager provides a login screen, session management, and support for XDMCP. - X Görüntü Yöneticisi, giriş ekranı, oturum yönetimi ve XDMCP desteği sağlar. - xorg - mirrors://xorg/individual/app/xdm-1.1.11.tar.bz2 - - libXt-devel - libICE-devel - libSM-devel - libX11-devel - libXaw-devel - libXft-devel - libXmu-devel - libXpm-devel - libXext-devel - libXinerama-devel - util-macros - pam-devel - xtrans - audit-devel - libbsd-devel - - - xsession.patch - no-xconsole.patch - resources.patch - xdm-1.1.11-arc4random-include.patch - xdm-1.1.11-cve-2013-2179.patch - xdm-1.1.11-setproctitle-include.patch - xdm-consolekit.patch - - x11/misc/xdm/pspec.xml - - - xdm - - pam - libX11 - libXau - libXdmcp - libXt - libbsd - libXft - libXmu - libXpm - libXaw - libXext - libXinerama - xinit - - - /etc - /usr/bin - /usr/lib/X11/xdm - /usr/share/X11 - /usr/share/display-managers - /var/lib/xdm - /usr/share/doc - /usr/share/man - - - System.Service - - - xdm.pam.d - start-dm.sh - xdm.desktop - xorg-safe-fbdev.conf - xorg-safe-vesa.conf - - - - - 2020-01-25 - 1.1.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.1.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 1.1.11 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - rofi - https://github.com/davatorium/rofi - - fury - uglyside@yandex.ru - - MIT - app - x11.misc - rofi - A window switcher, application launcher and dmenu replacement. - https://github.com/davatorium/rofi/releases/download/1.7.3/rofi-1.7.3.tar.xz - - pango-devel - cairo-devel - glib2-devel - check-devel - libxcb-devel - librsvg-devel - xcb-util-devel - xcb-util-wm-devel - xcb-util-xrm-devel - libxkbcommon-devel - libjpeg-turbo-devel - xcb-util-image-devel - xcb-util-cursor-devel - xcb-util-renderutil-devel - startup-notification-devel - - x11/misc/rofi/pspec.xml - - - rofi - - pango - cairo - glib2 - libxcb - librsvg - xcb-util - gdk-pixbuf - xcb-util-wm - xcb-util-xrm - libxkbcommon - libjpeg-turbo - xcb-util-cursor - startup-notification - - - /usr/bin - /usr/share - /usr/lib - /usr/share/doc - - - - rofi-devel - - rofi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-02-04 - 1.7.3 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-27 - 1.7.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-09-15 - 1.7.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-06 - 1.6.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 1.5.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 1.5.2 - Rebuild libxkbcommon - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-02 - 1.5.2 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-30 - 1.5.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-07 - 1.5 - first pisi pack - fury - uglyside@yandex.ru - - - - - - colord - http://www.freedesktop.org/software/colord - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - x11.misc - Colord is a system activated daemon that maps devices to color profiles. - Colord, aygıtları renk profillerine eşleyen bir sistem etkinleştirme programıdır. - Usługa systemowa do zarządzania urządzeniami obsługującymi kolory - Colord is a system activated daemon that maps devices to color profiles. It is used by GNOME Color Manager for system integration and use when there are no users logged in. - Colord, giriş ve çıkış aygıtlarını doğru bir şekilde renk yönetimi için renk profilleri yönetmek, yüklemek ve oluşturmak için kolaylaştıran bir sistem hizmetidir. - colord to niskopoziomowa usługa systemowa odwzorowująca urządzenia obsługujące kolory na profile kolorów w kontekście systemu. - https://www.freedesktop.org/software/colord/releases/colord-1.4.6.tar.xz - - meson - valgrind - intltool - argyllcms - vala-devel - lcms2-devel - sane-backends-devel - bash-completion - eudev-devel - libtool - gtk-doc - perl - elogind-devel - gettext-devel - glib2-devel - libgudev-devel - libxslt-devel - icu4c-devel - libgusb-devel - libusb-devel - sqlite-devel - qt5-sql-sqlite - polkit-devel - gobject-introspection-devel - - x11/misc/colord/pspec.xml - - - colord - - lcms2 - libgusb - shared-color-profiles - sane-backends - dbus - sqlite - polkit - eudev - glib2 - libgudev - - - /etc - /lib - /usr/libexec/colord-session - /var/lib/colord/icc/ - /usr/bin - /usr/libexec/colord - /usr/lib - /usr/share/dbus-1 - /usr/share/doc - /usr/share/polkit-1 - /usr/share/locale - /usr/share/man - /var - /usr/share/colord - /usr/share/glib-2.0 - /usr/share/bash-completion - /usr/libexec/colord-sane - /usr/share/gir-1.0 - - - System.Service - - - - colord-devel - Development files for colord - Colord için geliştirme başlıkları - Pliki nagłówkowe colord - - colord - lcms2-devel - libgusb-devel - eudev-devel - glib2-devel - - - /usr/include - /usr/share/vala/vapi/colord.vapi - /usr/lib/pkgconfig - - - - shared-color-profiles - - /usr/share/color - - - - - 2022-05-31 - 1.4.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-25 - 1.4.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 1.4.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-05 - 1.4.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-24 - 1.4.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-08 - 1.4.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 1.4.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.3.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-11-17 - 1.3.3 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - font-util - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console - x11.util - Utilitaires de fontes de X.Org - X.Org font utilities - X.Org font araçları - X.Org Schrift Werkzeuge - font-util package contains core font utilities for the Xorg XWindow system. - mirrors://xorg/individual/font/font-util-1.3.2.tar.bz2 - - zlib-devel - util-macros - - x11/util/font-util/pspec.xml - - - font-util - - /usr/bin - /usr/lib/pkgconfig - /usr/share/fonts - /usr/share/aclocal - /usr/share/doc - /usr/share/man - - - - - 2020-01-10 - 1.3.2 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-11-08 - 1.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 - 1.3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-26 - 1.3.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.3.1 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.3.1 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - alternatives - http://git.fedorahosted.org/git/?p=chkconfig.git;a=summary - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - x11.util - Alternative management system - Alternatif yönetim sistemi - alternatives creates, removes, maintains and displays information about the symbolic links comprising the alternatives system. Alternatives system determines the defaults when several programs fulfilling the same or similar functions to be installed on a single system at the same time. - alternatives, alternatives sisteminin parçası olan sembolik bağlantıları oluşturan, silen, yöneten ve bunlar hakkında bilgi gösteren araçtır. Alternatives sistemi, birbirine benzer ya da aynı işlevleri sunan programların aynı anda aynı sisteme kurulduğu zamanlarda öntanımlıları belirler. - https://github.com/fedora-sysv/chkconfig/archive/chkconfig-1.3.63.tar.gz - - popt-devel - newt-devel - - x11/util/alternatives/pspec.xml - - - alternatives - - /etc - /usr/sbin - /usr/share/locale - /usr/share/man - /usr/share/doc - /var - - - - - 2020-01-25 - 1.3.63 - Rebuild for new toolchain. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-28 - 1.3.63 - Rebuild for new toolchain. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-26 - 1.3.63 - Rebuild for new toolchain. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.3.63 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-03-05 - 1.3.63 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - zorg - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - x11.util - Çomar'ın X yapılandırma araçları - Çomar's X-Konfigurationtools - Çomar's X configuration tools - outils de configuration de X, fichiers de base de données des écrans et des cartes vidéo. - zorg is a set of X configuration tools and monitor and display adapter database files. - X yapılandırma araçları, monitör ve ekran kartı veritabanları - https://github.com/forYali/zorg/archive/2.0.4.tar.gz - - keyboard-config.patch - - x11/util/zorg/pspec.xml - - - zorg - - /sbin - /usr/bin - /usr/lib - /usr/share/X11 - /usr/share/doc - /var/lib/zorg - - - Xorg.Display - System.Package - - - xorg-safe.conf - - - - - 2020-01-25 - 2.0.4 - Rebuild for new toolchain. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-28 - 2.0.4 - Rebuild for new toolchain. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-05 - 2.0.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xorg-server - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - x11.server - X.Org X Server - Serveur X X.Org - X.Org X Server - X.Org X Sunucu - X.Org X Serwer - X server is the main application that allows a graphical interface. - X sunucu, grafiksel arayüz için gerekli ana uygulamadır. - X serwer to główna aplikacja, która umożliwia interfejs graficzny. - mirrors://xorg/individual/xserver/xorg-server-21.1.3.tar.xz - - valgrind - xorg-proto - libtirpc-devel - elogind-devel - libbsd-devel - font-util - libjpeg-turbo-devel - libdmx-devel - libdrm-devel - libgcrypt-devel - libpciaccess-devel - libX11-devel - libXaw-devel - libXext-devel - libXfixes-devel - libXfont2-devel - libXi-devel - libxkbfile-devel - libXmu-devel - libXpm-devel - libXrender-devel - libXres-devel - libXt-devel - libXtst-devel - libXv-devel - mesa-devel - pixman-devel - xorg-app - nettle-devel - libepoxy-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-wm-devel - xcb-util-keysyms-devel - xcb-util-renderutil-devel - util-macros - xtrans - eudev-devel - freetype-devel - libunwind-devel - libXau-devel - libICE-devel - libSM-devel - openssl-devel - xorg-app-devel - wayland-devel - wayland-protocols-devel - libglvnd-devel - xkeyboard-config - libxcvt-devel - - - xorg-server-1.12-unloadsubmodule.patch - xorg-server-1.18-support-multiple-Files-sections.patch - 0001-xkb-fix-XkbSetMap-when-changing-a-keysym-without-cha.patch - 0002-xephyr_Dont_check_for_SeatId_anymore.patch - 0003-dix_Correctly_save_replayed_event_into_GrabInfoRec.patch - 0004-present_Check_for_NULL_to_prevent_crash.patch - - x11/server/xorg-server/pspec.xml - - - xorg-server - app:console - - libbsd - libXau - eudev - elogind - libXdmcp - mesa - libxcvt - libdrm - pixman - libglvnd - libXfont2 - libunwind - libpciaccess - libxshmfence - libepoxy - nettle - - - /etc/X11/xorg.conf.d - /etc/sysconfig/createfiles - /usr/bin/X - /usr/bin/Xorg - /usr/bin/cvt - /usr/bin/gtf - /usr/libexec - /usr/lib/xorg - /usr/share/X11/DriversDB - /usr/share/X11/pci - /usr/share/X11/xorg.conf.d - /usr/share/man/man1/Xorg.1 - /usr/share/man/man1/cvt.1 - /usr/share/man/man1/gtf.1 - /usr/share/man/man4/exa.4 - /usr/share/man/man4/modesetting.4 - /usr/share/man/man4/fbdevhw.4 - /usr/share/man/man5/xorg.conf.5 - /usr/share/man/man5/xorg.conf.d.5 - /usr/share/man/man4/inputtestdrv.4 - /usr/share/man/man1/Xorg.wrap.1 - /usr/share/man/man5/Xwrapper.config.5 - /etc/X11/fontpath.d - /usr/share/doc - /var/lib/xkb - /usr/share/man/man1/Xserver.1 - - - xorg-server-common - - - xorg-video-modesetting - glamor-egl - xorg-server-common - - - xorg-save-xkb-config.sh - DriversDB - fedora/10-quirks.conf - - - - xorg-server-xephyr - Nested X Server - Başka bir X ekranında çalışabilen X sunucusu - app:console - - libX11 - libXau - libxcb - libXdmcp - xorg-server - mesa - xcb-util - libunwind - pixman - libXext - libXfont2 - libepoxy - xcb-util-wm - libxshmfence - xcb-util-image - xcb-util-keysyms - xcb-util-renderutil - - - /usr/bin/Xephyr - /usr/share/man/man1/Xephyr.1 - - - - xorg-server-xvfb - Virtual Framebuffer X Server - Sanal framebuffer X sunucusu - app:console - GPLv2 - - libXau - libXdmcp - xorg-server - libXfont2 - pixman - mesa - libunwind - - - /usr/bin/[Xx]vfb* - /usr/share/man/man1/Xvfb.1 - - - xvfb-run.sh - - - - xorg-server-xnest - A nested X server that runs as an X application - - libX11 - libXau - libXdmcp - libXfont2 - libXext - libunwind - pixman - - - /usr/bin/Xnest - /usr/share/man/man1/Xnest.1 - - - - xorg-server-devel - Headers and libraries for X server driver development - X sunucusu için sürücü geliştirmede kullanılan başlık ve kitaplık dosyaları - data - library - - xorg-server - libpciaccess-devel - pixman-devel - mesa-devel - xorg-proto - libxcvt-devel - - - /usr/include/xorg - /usr/lib/libxf86config.a - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2022-05-23 - 21.1.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-11 - 21.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-03 - 21.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-15 - 21.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-14 - 21.1.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-12 - 21.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-01 - 1.20.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-12 - 1.20.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-23 - 1.20.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 1.20.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-08 - 1.20.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-04 - 1.20.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-26 - 1.20.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-11 - 1.20.6 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-19 - 1.20.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.20.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-30 - 1.19.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.20.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-31 - 1.20.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.19.6 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-17 - 1.19.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-26 - 1.19.1 - Rebuild for a patch - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-02 - 1.19.1 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-11-04 - 1.18.4 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 1.18.3 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-04-08 - 1.17.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - rxvt-unicode - http://software.schmorp.de/pkg/rxvt-unicode.html - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - app:gui - x11.terminal - Rxvt clone with XFT and Unicode support. - XFT ve unikod destekli rxvt klonu - Rxvt-unicode, Une implémentation de terminal avec une interface graphique et le support pour XVT et l'unicode. - Rxvt-unicode is a terminal application with graphical user interface having XVT and Unicode support. - Rxvt-unicode, grafiksel arayüzde bir kabuk çalıştırmaya yarayan, XFT ve unikod destekli uçbirim aracıdır. - https://ftp.osuosl.org/pub/blfs/conglomeration/rxvt-unicode/rxvt-unicode-9.30.tar.bz2 - - libXt-devel - libXft-devel - libXmu-devel - libptytty-devel - fontconfig-devel - libXrender-devel - gdk-pixbuf-devel - startup-notification-devel - - - rxvt-unicode-9.06-font-width.patch - gentables.patch - - x11/terminal/rxvt-unicode/pspec.xml - - - rxvt-unicode - - perl - glib2 - libX11 - libXft - libXmu - libgcc - libptytty - perl-Gtk2 - fontconfig - gdk-pixbuf - libXrender - startup-notification - - - /etc - /usr/bin - /usr/lib - /usr/share/terminfo - /usr/share/applications - /usr/share/man - /usr/share/doc - - - System.Package - - - rxvt.desktop - urxvtc.desktop - rxvt-tabbed.desktop - - - - - 2021-12-21 - 9.30 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2021-11-19 - 9.26 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2020-01-25 - 0.9.22 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2019-04-17 - 0.9.22 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - terminator - https://gnome-terminator.org/ - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - app:gui - x11.terminal - Multiple terminals in one window. - >Tek bir pencerede birden fazla terminal çalıştırabilen uygulama. - In April of 2020 we started moving Terminator to GitHub. A new team wanted to continue the work of the original authors. - Terminator tek pencerede birden çok terminal çalıştırarak masaüstü alanınızı daha rahat kullanmanızı amaçlar. - https://github.com/gnome-terminator/terminator/releases/download/v2.1.1/terminator-2.1.1.tar.gz - - intltool - vte-devel - gtk3-devel - gnutls-devel - dbus-python3 - python3-devel - python3-wheel - gettext-devel - libpcre2-devel - python3-psutil - dbus-glib-devel - keybinder-devel - python3-setuptools - python3-pytest-runner - python3-pygobject3-devel - gsettings-desktop-schemas-devel - - x11/terminal/terminator/pspec.xml - - - terminator - - vte - gtk3 - gnutls - python3 - libpcre2 - keybinder - dbus-glib - python3-six - dbus-python3 - python3-psutil - python3-configobj - python3-pygobject3 - gsettings-desktop-schemas - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2021-11-04 - 2.1.1 - First build - fury - uglyside@yandex.ru - - - - - - tilda - https://github.com/lanoxx/tilda - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - x11.terminal - A Gtk based drop down terminal for Linux and Unix. - Tilda is a terminal emulator and can be compared with other popular terminal emulators such as gnome-terminal (Gnome), Konsole (KDE), xterm and many others. The specialities of Tilda are that it does not behave like a normal window but instead it can be pulled up and down from the top of the screen with a special hotkey. Additionally Tilda is highly configurable. It is possible to configure the hotkeys for keybindings, change the appearance and many options that affect the behavior of Tilda. - https://github.com/lanoxx/tilda/archive/tilda-1.5.4.tar.gz - - python3 - vte-devel - gtk3-devel - glib2-devel - libX11-devel - gnutls-devel - libpcre2-devel - libconfuse-devel - - x11/terminal/tilda/pspec.xml - - - tilda - - vte - gtk3 - glib2 - pango - libX11 - gdk-pixbuf - libconfuse - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-10-13 - 1.5.4 - First build - fury - uglyside@yandex.ru - - - - - - yakuake - https://kde.org/applications/system/org.kde.yakuake/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - x11.terminal - Very powerful Quake style Konsole for KDE4 - KDE5 için Quake tarzı oldukça güçlü bir Konsole - The name comes from Yet Another Kuake (thus YaKuake). Its behaviour is similar to the console of the Quake game. - İsmi Bir Başka Kuake (Yet Another Kuake - YaKuake) sözcüklerinden gelmektedir. Quake oyunundaki konsola benzer. - yakuake - mirrors://kde/stable/yakuake/3.0.5/src/yakuake-3.0.5.tar.xz - - qt5-base-devel - libX11-devel - qt5-x11extras-devel - knewstuff-devel - kio-devel - kparts-devel - knotifyconfig-devel - karchive-devel - kcoreaddons-devel - kconfig-devel - kcrash-devel - kdbusaddons-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - knewstuff-devel - knotifications-devel - kparts-devel - kwidgetsaddons-devel - kwindowsystem-devel - gettext-devel - extra-cmake-modules - kwayland-devel - - x11/terminal/yakuake/pspec.xml - - - yakuake - - qt5-base - qt5-x11extras - kio - kcrash - ki18n - kparts - kconfig - kxmlgui - karchive - kservice - knewstuff - kwayland - kcoreaddons - kdbusaddons - kiconthemes - kglobalaccel - knotifyconfig - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - libX11 - libgcc - - - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/locale - /usr/share/doc - - - yakuake.notifyrc - - - - - 2020-02-08 - 3.0.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 3.0.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-01 - 3.0.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-16 - 3.0.4 - Rebuild for new Toolchain. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 3.0.2 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-23 - 3.0.2 - Release bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-03-07 - 3.0.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - vte - https://www.gnome.org/ - - Berk Çakar - berk2238@hotmail.com - - LGPLv2 - x11.terminal - Widget terminal utilisant Xft - Xft powered terminal widget - The VTE package contains a termcap file implementation for terminal emulators. - Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. - mirrors://gnome/vte/0.68/vte-0.68.0.tar.xz - - atk-devel - cairo-devel - fontconfig-devel - gdk-pixbuf-devel - glib2-devel - gnutls-devel - gobject-introspection-devel - graphite2-devel - gtk-doc - gtk2-devel - gtk3-devel - harfbuzz-devel - intltool - libX11-devel - libglade-devel - libpcre2-devel - ncurses-devel - pango-devel - python-six - meson - vala-devel - - x11/terminal/vte/pspec.xml - - - vte - Development files for vte - library - - atk - icu4c - cairo - gdk-pixbuf - glib2 - gnutls - gobject-introspection - gtk3 - libX11 - libgcc - libpcre2 - ncurses - pango - zlib - fribidi - - - /etc/profile.d - /usr/bin - /usr/lib - /usr/libexec - /usr/share - /usr/share/doc - /usr/share/gir-1.0/Vte-0.0.gir - /usr/share/locale - /usr/share/pygtk - /usr/share/vte - - - - vte-docs - GTK reference documents for vte - data:doc - - /usr/share/gtk-doc - - - - vte-devel - Development files for vte - vte için geliştirme dosyaları - - cairo-devel - glib2-devel - gtk3-devel - libX11-devel - pango-devel - vte - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-03-28 - 0.68.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-08 - 0.66.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-21 - 0.66.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 0.64.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 0.64.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-06 - 0.63.91 - Version bump - Berk Çakar - berk2238@hotmail.com - - - 2020-01-25 - 0.56.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-15 - 0.54.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.28.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-11 - 0.28.2 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-02 - 0.28.2 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-05-16 - 0.28.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xterm - http://invisible-island.net/xterm - - PisiLinux Community - admins@pisilinux.org - - MIT - app:gui - x11.terminal - Terminal emulator for the X Window System - X Pencere Sistemi için uçbirim emülatörü - The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. - xterm programı, X Pencere Sistemi için bir uçbirim emülatörüdür. Pencere sistemini doğrudan kullanamayan programlar için DEC VT102 ve Tektronix 4014 uyumlu uçbirimler sağlar. - terminal - http://invisible-mirror.net/archives/xterm/xterm-368.tgz - - fontconfig-devel - libICE-devel - libXaw-devel - libXft-devel - libXmu-devel - libXt-devel - utempter-devel - libXinerama-devel - xorg-app - libXpm-devel - ncurses-devel - libX11-devel - libXext-devel - freetype-devel - - - 16colors.txt.diff - defaults.patch - - x11/terminal/xterm/pspec.xml - - - xterm - - fontconfig - libICE - libXext - freetype - libXaw - libXft - libXmu - libXt - libXinerama - utempter - xorg-app - libXpm - ncurses - libX11 - - - /usr/bin - /usr/share/X11 - /usr/share/doc - /usr/share/man - - - - - 2021-06-10 - 368 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-25 - 348 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 331 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 327 - Rebuild. - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-04 - 327 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 324 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-13 - 304 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - pixman - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Pixel manipulation library - Piksel işleme kitaplığı - Pixman contains lowlevel pixel manipulation routines. - Pixman, düşük düzey piksel işleme yordamlarını içerir. - mirrors://xorg/individual/lib/pixman-0.40.0.tar.xz - - libpng-devel - - x11/library/pixman/pspec.xml - - - pixman - - /usr/lib - /usr/share/doc - - - - pixman-devel - Development files for pixman - pixman için geliştirme dosyaları - - pixman - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - pixman-32bit - 32-bit shared libraries for pixman - pixman için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libpng-32bit - - - pixman - - - /usr/lib32 - - - - - 2020-06-06 - 0.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-06 - 0.38.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-09 - 0.36.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 0.34.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-05 - 0.34.0 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.34.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-08-31 - 0.32.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXfont - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xfont de X.Org - X.Org Xfont library - X.Org Xfont kitaplığı - X.Org Xfont Bibliothek - libXfont is the Xorg library that allows using various types of fonts. - mirrors://xorg/individual/lib/libXfont-1.5.4.tar.bz2 - - libfontenc-devel - util-macros - freetype-devel - xorg-proto - xtrans - xmlto - zlib-devel - - x11/library/libXfont/pspec.xml - - - libXfont - - libfontenc - zlib - freetype - - - /usr/lib - /usr/share/doc - - - - libXfont-devel - Development files for libXfont - libXfont için geliştirme dosyaları - - libXfont - libfontenc-devel - freetype-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2020-01-10 - 1.5.4 - Rebuild. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-20 - 1.5.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.5.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.5.4 - Version bump. - PisiLinux Community - admin@pisilinux.org - - - 2018-02-22 - 1.5.4 - Version bump. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.5.2 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.5.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.5.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libxkbcommon - http://xkbcommon.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - x11.library - Library to convert evdev keycodes to keysyms - Evdev keycode'larını keysms türüne çeviren bir kitaplık - Library to convert evdev keycodes to keysyms - Evdev keycode'larını keysms türüne çeviren bir kitaplık - https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-1.3.0.tar.gz - - meson - xorg-proto - util-macros - libxcb-devel - libxml2-devel - wayland-cursor - wayland-server - wayland-client - wayland-devel - wayland-protocols-devel - xkeyboard-config - - x11/library/libxkbcommon/pspec.xml - - - libxkbcommon - - libxcb - libxml2 - wayland-client - - - /usr/bin - /usr/libexec - /usr/share/doc/libxkbcommon/ - /usr/share/man - /usr/lib/lib*.so* - - - - libxkbcommon-devel - Development files for libxkbcommon - libxkbcommon için geliştirme dosyaları - - libxkbcommon - libxcb-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libxkbcommon-32bit - 32-bit shared libraries for libxkbcommon - emul32 - emul32 - - libxcb-32bit - libxml2-32bit - wayland-32bit - - - libxkbcommon - libxcb-32bit - libxml2-32bit - - - /usr/lib32 - - - - - 2021-06-03 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-03 - 0.9.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 0.9.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 0.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 0.8.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-29 - 0.8.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-05 - 0.8.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 0.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 0.7.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-27 - 0.6.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 0.5.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libva - http://www.freedesktop.org/wiki/Software/vaapi - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Video Acceleration (VA) API for Linux - Linux için video hızlandırma API'si - libva is a library providing the VA API video acceleration API. - libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. - https://github.com/intel/libva/archive/2.13.0.tar.gz - - libdrm-devel - libXext-devel - libXfixes-devel - libglvnd-devel - wayland-devel - wayland-client - - x11/library/libva/pspec.xml - - - libva - - libX11 - libdrm - libXext - libXfixes - libglvnd - wayland-client - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libva-devel - Development files for libva - libva için geliştirme dosyaları - - libva - wayland-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libva-32bit - 32-bit shared libraries for libva - libva için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - libglvnd-32bit - libX11-32bit - - - libva - libdrm-32bit - wayland-32bit - libXext-32bit - libXfixes-32bit - libX11-32bit - libglvnd-32bit - - - /usr/lib32 - - - - - 2022-01-13 - 2.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-28 - 2.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-01 - 2.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 2.6.0 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-25 - 2.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 + 2020-06-24 2.2.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-04-22 - 2.1.0 - Version bump. + 2020-02-01 + 2.0.0 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2017-02-15 + 2018-09-16 2.0.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-28 + 2.0.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-01 + 1.12 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-31 + 1.11 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libusbmuxd + https://www.libimobiledevice.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + service + library + hardware.mobile + Daemon for communicating with Apple's iPod Touch and iPhone + libusbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. + http://www.libimobiledevice.org/downloads/libusbmuxd-2.0.2.tar.bz2 + + libplist-devel + libusb-devel + + hardware/mobile/libusbmuxd/pspec.xml + + + libusbmuxd + + libplist + libusb + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/sbin + /lib/udev/rules.d + /usr/share/man/man1 + + + + libusbmuxd-devel + Development files for libusbmuxd + + libusbmuxd + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-06-24 + 2.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.0.10 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.0.10 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 1.0.10 + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + scrcpy + https://github.com/Genymobile/scrcpy + + Kamil Atlı + suvari@pisilinux.org + + Apache + library + app:console + hardware.mobile + Display and control your Android device + Android cihazınızı görüntüleyin ve kontrol edin + Display and control your Android device + Android cihazınızı görüntüleyin ve kontrol edin + https://github.com/Genymobile/scrcpy/archive/refs/tags/v1.24.tar.gz + https://github.com/Genymobile/scrcpy/releases/download/v1.24/scrcpy-server-v1.24 + + jdk-openjdk + git + wget + sudo + meson + libusb-devel + ffmpeg-devel + android-tools + libsdl2-devel + + hardware/mobile/scrcpy/pspec.xml + + + scrcpy + Display and control your Android device + + libsdl2 + libsdl2 + ffmpeg + libusb + android-tools + + + /usr/bin + /usr/share/doc/ + /usr/share/man + /usr/share + /usr/share/icons + + + + + 2022-05-28 + 1.24 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + usb-modeswitch + https://www.draisberghof.de/usb_modeswitch/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + hardware.mobile + Mode switching tool for broadband devices + Genişbant cihazlar için kip değiştirme aracı + usb-modeswitch brings up your data card into operational mode. When plugged in, they identify themselves as CD-ROM and present some non-Linux compatible installation files. This tool deactivates those CD-ROM devices and enables the real communication interface. It supports most devices manufactured by Huawei, T-Mobile, Vodafone, Option, ZTE, Novatel. + usb-modeswitch, genişbant cihazları CD-ROM kipinden, ağ kartı kipine geçirir. Bu cihazlar, Linux dışındaki işletim sistemlerine sürücülerini otomatik yükleyebilmek için ilk takıldıklarında kendilerini CD-ROM olarak tanıtırlar. Bu araçla, bu kip pasif hale getirilip, iletişim arayüzü etkinleştirilir. Huawei, T-Mobile, Vodafone, Option, ZTE ve Novatel tarafından üretilen cihazlar desteklenmektedir. + https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 + https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 + + tcl-devel + libusb-devel + + hardware/mobile/usb-modeswitch/pspec.xml + + + usb-modeswitch + + libusb + + + /etc + /usr/sbin + /lib/udev + /lib/udev/rules.d + /usr/share/usb_modeswitch + /var/lib/usb_modeswitch + /usr/share/man + /usr/share/doc + + + + + 2021-03-14 + 2.6.1 + Ver. bump + fury + uglyside@yandex.ru + + + 2019-11-31 + 2.6.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2014-08-18 + 2.2.0 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-03-07 + 1.2.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-02-17 + 1.2.5 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2013-04-12 + 1.2.5 + V.Bump + PisiLinux Community + admins@pisilinux.org + + + 2011-08-03 + 1.1.8 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + usbmuxd + https://www.libimobiledevice.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + service + library + hardware.mobile + Daemon for communicating with Apple's iPod Touch and iPhone + Apple iPod Touch ve iPhone iletişim hizmeti + usbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. + usbmuxd, Apple iPod Touch ve iPhone cihazlarıyla iletişim kurmak için gerekli bir sistem hizmetidir. Aynı anda, birden fazla cihaza bağlanma imkanı sağlar. + https://codeload.github.com/libimobiledevice/usbmuxd/tar.gz/1.1.1 + + eudev-devel + libplist-devel + libusb-devel + libimobiledevice-devel + + hardware/mobile/usbmuxd/pspec.xml + + + usbmuxd + + libplist + libusb + libimobiledevice + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/sbin + /lib/udev/rules.d + /usr/share/man/man8/usbmuxd.8 + /usr/share/man/man1/usbmuxd.1 + + + + + 2020-06-24 + 1.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 1.1.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-05 + 1.0.10 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 1.0.10 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 1.0.9 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + brasero + https://wiki.gnome.org/Apps/Brasero + + Pisilinux Community + admins@pisilinux.org + + GPL + app:gui + hardware.optical + A disc burning application. + Brasero is yet another CD / DVD writing application. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily. + mirrors://gnome/brasero/3.12/brasero-3.12.3.tar.xz + + cdrkit + cdrdao + itstool + gtk-doc + intltool + gtk3-devel + python-six + docbook-xsl + libSM-devel + libICE-devel + dvd+rw-tools + libxml2-devel + libburn-devel + libisofs-devel + gstreamer-devel + libnotify-devel + libisoburn-devel + gdk-pixbuf-devel + shared-mime-info + libcanberra-devel + libcanberra-gtk-devel + libcanberra-gtk3-devel + gst-plugins-base-devel + gobject-introspection-devel + + hardware/optical/brasero/pspec.xml + + + brasero + + gtk3 + glib2 + pango + cairo + libSM + cdrkit + cdrdao + libICE + libxml2 + libburn + libisofs + gstreamer + dvdauthor + libnotify + gdk-pixbuf + dvd+rw-tools + gst-plugins-base + libcanberra-gtk3 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + brasero-devel + + gtk3-devel + brasero + + + /usr/include/brasero3 + /usr/lib/pkgconfig + + + + brasero-docs + + brasero + + + /usr/share/gtk-doc/html + + + + + 2022-02-04 + 3.12.3 + First release + Pisilinux Community + admins@pisilinux.org + + + + + + cdparanoia + https://www.xiph.org/paranoia/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + hardware.optical + An advanced CDDA reader with error correction + Hata düzeltme fonksiyonlu gelişmiş bir CDDA okuyucu + cdparanoia is an advanced CDDA (audio CD) reader with error correction. + http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz + + build_system.patch + cdparanoia-III-05-gcc4.3.patch + + hardware/optical/cdparanoia/pspec.xml + + + cdparanoia + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + cdparanoia-devel + Development files for cdparanoia + cdparanoia için geliştirme dosyaları + + cdparanoia + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-11 + 3.10.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 3.10.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 3.10.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.10.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 3.10.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + cdrdao + http://cdrdao.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Burn CDs in disk-at-once mode + CDlerinizi DAO modunda yazar + cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents. + mirrors://sourceforge/cdrdao/cdrdao-1.2.4.tar.bz2 + + lame-devel + libao-devel + libmad-devel + libvorbis-devel + + + cdrdao-1.2.3-version.patch + cdrdao-1.2.3-autoconf-update.patch + + hardware/optical/cdrdao/pspec.xml + + + cdrdao + + lame + libmad + libvorbis + libao + + + /usr/bin + /usr/share/cdrdao + /usr/share/doc + /usr/share/man + + + + + 2020-03-10 + 1.2.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2017-02-15 - 1.7.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2018-08-18 + 1.2.3 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org - 2016-11-03 - 1.7.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org + 2017-04-14 + 1.2.3 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org - 2016-04-27 - 1.7.0 - First release - Alihan Öztürk - alihan@pisilinux.org + 2016-06-09 + 1.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2015-05-10 - 1.5.1 + 2016-04-19 + 1.2.3 First release - Burak Ertürk + Pisi Linux Admins + admins@pisilinux.org + + + + + + cdrkit + http://cdrkit.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Suite of programs for CD/DVD recording. + Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction. + http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz + + libcdio-paranoia-devel + cdparanoia-devel + libcap-devel + zlib-devel + cmake + + + cdrkit-1.1.8-werror.patch + cdrkit-1.1.9-efi-boot.patch + cdrkit-1.1.9-no_mp3.patch + cdrkit-1.1.9-buffer_overflow.patch + cdrkit-1.1.10-build-fix.patch + cdrkit-1.1.11-manpagefix.patch + cdrkit-1.1.11-rootstat.patch + cdrkit-1.1.11-usalinst.patch + cdrkit-1.1.11-readsegfault.patch + cdrkit-1.1.11-format.patch + cdrkit-1.1.11-handler.patch + cdrkit-1.1.11-dvdman.patch + cdrkit-1.1.11-paranoiacdda.patch + cdrkit-1.1.11-utf8.patch + cdrkit-1.1.11-cmakewarn.patch + cdrkit-1.1.11-memset.patch + cdrkit-1.1.11-ppc64le_elfheader.patch + cdrkit-1.1.11-werror_gcc5.patch + cdrkit-1.1.11-devname.patch + cdrkit-1.1.11-sysmacros.patch + + hardware/optical/cdrkit/pspec.xml + + + cdrkit + + file + zlib + bzip2 + libcap + cdparanoia + + + /usr/bin + /usr/sbin + /usr/include + /usr/lib + /usr/share/man + /usr/share/doc + + + cdrtools + + + + + 2020-01-26 + 1.1.11 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 1.1.11 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-29 + 1.1.11 + Rebuild for new toolchain, add patches + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-25 + 1.1.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-09-14 + 1.1.11 + First release + Burak Fazıl Ertürk burakerturk@pisilinux.org - libdmx - https://www.x.org/ + dvd+rw-tools + http://fy.chalmers.se/~appro/linux/DVD+RW/ PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - Librairie dmx de X.Org - X.Org dmx library - X.Org dmx kitaplığı - X.Org dmx Bibliothek - libdmx is the X Window System DMX (Distributed Multihead X) extension library. - mirrors://xorg/individual/lib/libdmx-1.1.4.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libdmx/pspec.xml - - - libdmx - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libdmx-devel - Development files for libdmx - libdmx için geliştirme dosyaları - - libdmx - libXext-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man - - - - - 2020-01-10 - 1.1.4 - Version Bump - PisiLinux Community - admin@pisilinux.org - - - 2019-10-23 - 1.1.4 - Version Bump - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 1.1.4 - Version Bump - PisiLinux Community - admin@pisilinux.org - - - 2017-02-15 - 1.1.3 - Rebuild for new toolchain. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libSM - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie SM de X.Org. - X.Org SM library - X.Org SM kitaplığı. - X.Org SM Bibliothek - libSM is the X Session Management library. - mirrors://xorg/individual/lib/libSM-1.2.3.tar.bz2 - - libICE-devel - libutil-linux-devel - util-macros - xorg-proto - xtrans - - x11/library/libSM/pspec.xml - - - libSM - - libutil-linux - libICE - - - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libSM-devel - Development files for libSM - libSM için geliştirme dosyaları - - libICE-devel - libSM - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/*.xml - - - - libSM-32bit - 32-bit shared libraries for libSM - libSM için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libICE-32bit - libutil-linux-32bit - - - libICE-32bit - libutil-linux-32bit - libSM - - - /usr/lib32 - - - - - 2021-03-14 - 1.2.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 1.2.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.2.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-12 - 1.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.2.2 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.2.2 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.2.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.2.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libclc - http://libclc.llvm.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Library requirements of the OpenCL C programming language - Library requirements of the OpenCL C programming language - Library requirements of the OpenCL C programming language - Library requirements of the OpenCL C programming language - https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/libclc-12.0.0.src.tar.xz - - clang32 - - - llvm - cmake - spirv-llvm-devel - python-devel - python3-devel - llvm-clang-devel - - x11/library/libclc/pspec.xml - - - libclc - - llvm-polly - - - /usr/lib - /usr/share - /usr/share/doc - - - - libclc-32bit - emul32 - emul32 - - llvm-32bit - spirv-llvm-32bit - - - /usr/lib32 - - - - libclc-devel - Development files for libclc - - libclc - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2021-06-05 - 12.0.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-02-21 - 11.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-12 - 11.0.0 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2020-03-26 - 10.0.0_20200215 - First release - İdris Kalp - idriskalp@gmail.com - - - - - - libXpresent - https://www.x.org/ - - Ali Cengiz Kurt - admins@pisilinux.org - - MIT - library - x11.library - X.Org Xpm library - X Present Extension library - https://www.x.org/archive/individual/lib/libXpresent-1.0.0.tar.bz2 - - util-macros - xorg-proto - libX11-devel - libXext-devel - libXfixes-devel - libXrandr-devel - - x11/library/libXpresent/pspec.xml - - - libXpresent - - libXfixes - libXrandr - libX11 - - - /usr/lib - /usr/share/doc - /usr/share/man/man3 - /usr/share/licenses - - - - libXpresent-devel - Development files for libXpresent - library - - libXpresent - - - /usr/include/X11/extensions - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXpresent-32bit - 32-bit shared libraries for libXpresent - emul32 - emul32 - - libX11-32bit - libXfixes-32bit - libXrandr-32bit - - - libXpresent - libXfixes-32bit - libXrandr-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2020-11-22 - 1.0.0 - First Release For Beta System. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - wayland - http://wayland.freedesktop.org/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - GPLv2 - library - x11.library - Wayland Compositor Infrastructure - Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. - https://wayland.freedesktop.org/releases/wayland-1.20.0.tar.xz - - xmlto - meson - docbook-xsl - libffi-devel - expat-devel - libxslt-devel - libxml2-devel - - x11/library/wayland/pspec.xml + app:console + hardware.optical + Tools for DVD+RW/-RW drives + DVD+RW/-RW sürücüler için birtakım araçlar + dvd+rw-tools is a set of tools to work with DVD+-RW drives. + http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-7.1.tar.gz + + dvd+rw-tools-7.0-dvddl.patch + dvd+rw-tools-7.0-wctomb.patch + dvd+rw-tools-7.0-wexit.patch + dvd+rw-tools-7.1-layerbreaksetup.patch + dvd+rw-tools-7.1-minor-major.patch + gcc-4.3.patch + + hardware/optical/dvd+rw-tools/pspec.xml - wayland + dvd+rw-tools - libxml2 - expat + cdrkit + libgcc /usr/bin - /usr/lib/libwayland-egl* - /usr/share/doc/ - /usr/share/aclocal - /usr/share/wayland + /usr/share/doc /usr/share/man - - wayland-client - Wayland client library - - libffi - wayland - - - /usr/lib/libwayland-client* - - - - wayland-cursor - Wayland cursor library - - wayland - wayland-client - - - /usr/lib/libwayland-cursor* - - - - wayland-server - Wayland server library - - libffi - wayland - - - /usr/lib/libwayland-server* - - - - wayland-devel - Development files for wayland - - expat-devel - libffi-devel - wayland - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/pkgconfig - - - - wayland-32bit - 32-bit shared libraries for wayland - emul32 - emul32 - - libffi-32bit - expat-32bit - libxslt-32bit - libxml2-32bit - - - wayland - expat-32bit - libffi-32bit - libxslt-32bit - libxml2-32bit - - - /usr/lib32 - - - - 2021-12-11 - 1.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-27 - 1.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-21 - 1.18.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-03 - 1.17.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-07 - 1.17.0 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-10-26 - 1.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-03 - 1.16.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.15.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 1.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-02-02 - 1.12.0 - Version bump. - Alihan Öztürk - alihan@pisilnux.org + 2020-03-10 + 7.1 + Rebuild with new toolchain. + Pisi Linux Admins + admins@pisilinux.org - 2016-11-04 - 1.11.1 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + 2018-08-18 + 7.1 + Rebuild with new toolchain. + Pisi Linux Admins + admins@pisilinux.org - 2016-05-01 - 1.10.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2017-04-13 + 7.1 + Rebuild with new toolchain. + Pisi Linux Admins + admins@pisilinux.org - 2015-11-05 - 1.9.0 + 2016-10-09 + 7.1 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Pisi Linux Admins + admins@pisilinux.org - libXrender - https://www.x.org/ + k3b + http://www.k3b.org PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - Librairie Xrender de X.Org - X.Org Xrender library - X.Org Xrender kitaplığı - X.Org Xrender Bibliothek - The X Rendering Extension (Render) introduces digital image composition as the foundation of a new rendering model within the X Window System. Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. - mirrors://xorg/individual/lib/libXrender-0.9.10.tar.bz2 + GPLv2 + app:gui + hardware.optical + CD/DVD burning application for KDE + KDE için CD/DVD yazma uygulaması + K3b provides a comfortable user interface to perform most CD/DVD burning tasks. While the experienced user can take influence in all steps of the burning process the beginner may find comfort in the automatic settings and the reasonable k3b defaults which allow a quick start. + K3b her türlü CD/DVD yazma işlevini rahat bir kullanıcı arayüzüyle sunar. Tecrübeli kullanıcılar yazma işleminin her adımına müdahale edebilirken, yeni başlayanlar ise k3b'nin sağladığı öntanımlı ayarlar sayesinde hızlı bir başlangıç yapabilirler. + https://download.kde.org/stable/release-service/21.08.2/src/k3b-21.08.2.tar.xz - libX11-devel - xorg-proto - util-macros + extra-cmake-modules + karchive-devel + kconfig-devel + kcoreaddons-devel + kdoctools-devel + kfilemetadata-devel + ki18n-devel + kiconthemes-devel + kjobwidgets-devel + kcmutils-devel + kio-devel + knotifications-devel + knewstuff-devel + knotifyconfig-devel + kservice-devel + solid-devel + kwidgetsaddons-devel + kxmlgui-devel + qt5-base-devel + qt5-webkit-devel + qt5-location-devel + libsamplerate-devel + cdparanoia-devel + libsndfile-devel + libdvdread-devel + libkcddb + libmpcdec-devel + libvorbis-devel + vcdimager-devel + ffmpeg-devel + dvd+rw-tools + libmad-devel + libogg-devel + libburn-devel + taglib-devel + flac-devel + lame-devel + sox-devel + cdrkit + cdrdao + kauth-devel - x11/library/libXrender/pspec.xml + hardware/optical/k3b/pspec.xml - libXrender + k3b - libX11 + kio + flac + lame + ki18n + solid + kauth + ffmpeg + cdrkit + cdrdao + libgcc + libmad + libogg + taglib + kconfig + kxmlgui + karchive + kcmutils + kservice + normalize + libburn + libkcddb + qt5-base + knewstuff + libmpcdec + libvorbis + kbookmarks + libdvdread + vcdimager + cdparanoia + libsndfile + qt5-webkit + kcompletion + kcoreaddons + kiconthemes + kjobwidgets + dvd+rw-tools + kfilemetadata + knotifyconfig + libsamplerate + kconfigwidgets + knotifications + kwidgetsaddons /usr/lib - /usr/share/doc - - - - libXrender-devel - Development files for libXrender - libXrender için geliştirme dosyaları - - libXrender - libX11-devel - xorg-proto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libXrender/libXrender.txt - - - - libXrender-32bit - 32-bit shared libraries for libXrender - libXrender için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - - - libXrender - libX11-32bit - - - /usr/lib32 - - - - - 2021-09-25 - 0.9.10 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-03 - 0.9.10 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 0.9.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 0.9.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 0.9.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 0.9.10 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 0.9.10 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-11-02 - 0.9.10 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.9.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 0.9.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libpciaccess - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org PCI access library - X.Org PCI erişim kitaplığı - libpciaccess is the Xorg library for portable PCI access routines across multiple operating systems. - libpciaccess, değişik işletim sistemleri için taşınabilir PCI erişim rutinleri içeren Xorg kitaplığıdır. - mirrors://xorg/individual/lib/libpciaccess-0.16.tar.bz2 - - util-macros - - x11/library/libpciaccess/pspec.xml - - - libpciaccess - - /usr/lib - /usr/share/doc - - - - libpciaccess-devel - Development files for libpciaccess - libpciaccess için geliştirme dosyaları - - libpciaccess - - + /usr/bin + /usr/share /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libpciaccess-32bit - 32-bit shared libraries for libpciaccess - libpciaccess için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libpciaccess - - - /usr/lib32 - - - - - 2021-11-27 - 0.16 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-06 - 0.16 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 0.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 0.14 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-25 - 0.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 0.13.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 0.13.4 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.13.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-05-05 - 0.13.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libdrm - http://dri.freedesktop.org/libdrm/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Userspace interface to kernel DRM services - Çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz - libdrm is a library providing the userspace interface to kernel DRM services. - libdrm, çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz sağlayan bir kitaplıktır. - https://dri.freedesktop.org/libdrm/libdrm-2.4.110.tar.xz - - meson - docbook-xsl - util-macros - libxslt-devel - python-docutils - libpciaccess-devel - - x11/library/libdrm/pspec.xml - - - libdrm - - libpciaccess - - /etc - /usr/lib/libdrm.* - /lib/udev/rules.d - /usr/share/doc - /usr/share/man - /usr/share/libdrm - - - 91-drm-modeset.rules - - - - libdrm-intel - Userspace interface to kernel DRM services for intel - Çekirdekteki intel DRM servisleri için kullanıcı düzeyi arayüz - - libdrm - libpciaccess - - - /usr/lib/libdrm_intel.* - - - - libdrm-nouveau - Userspace interface to kernel DRM services for nouveau - Çekirdekteki nouveau DRM servisleri için kullanıcı düzeyi arayüz - - libdrm - - - /usr/lib/libdrm_nouveau.* - - - - libdrm-radeon - Userspace interface to kernel DRM services for radeon - Çekirdekteki radeon DRM servisleri için kullanıcı düzeyi arayüz - - libdrm - - - /usr/lib/libdrm_radeon.* - - - - libdrm-amd - Userspace interface to kernel DRM services for amdgpu - - libdrm - - - /usr/lib/libdrm_amdgpu.* - - - - libkms - Userspace library for kernel mode setting - Çekirdekteki ekran modu değiştirme servisleri için kullanıcı düzeyi arayüz - - libdrm - - - /usr/lib/libkms.* - - - - libdrm-devel - Development files for libdrm - libdrm için geliştirme dosyaları - - libdrm - libdrm-intel - libdrm-nouveau - libdrm-radeon - libdrm-amd - libkms - libpciaccess-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libdrm-32bit - 32-bit shared libraries for libdrm - libdrm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxslt-32bit - libxml2-32bit - libpciaccess-32bit - - - libdrm - libpciaccess-32bit - - - /usr/lib32/libdrm.* - - - - libdrm-intel-32bit - 32-bit shared libraries for libdrm-intel - libdrm-intel için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-intel - libdrm-32bit - libpciaccess-32bit - - - /usr/lib32/libdrm_intel.* - - - - libdrm-nouveau-32bit - 32-bit shared libraries for libdrm-nouveau - libdrm-nouveau için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-nouveau - libdrm-32bit - - - /usr/lib32/libdrm_nouveau.* - - - - libdrm-radeon-32bit - 32-bit shared libraries for libdrm-radeon - libdrm-radeon için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libdrm-radeon - libdrm-32bit - - - /usr/lib32/libdrm_radeon.* - - - - libdrm-amd-32bit - 32-bit shared libraries for libdrm-amdgpu - emul32 - emul32 - - libdrm-amd - libdrm-32bit - - - /usr/lib32/libdrm_amdgpu.* - - - - libkms-32bit - 32-bit shared libraries for libkms - libkms için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libkms - libdrm-32bit - - - /usr/lib32/libkms.* - - 2022-03-19 - 2.4.110 + + 2021-10-16 + 21.08.2 Version bump. - Kamil Atlı - suvari@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-14 + 21.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-11 + 21.04.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-10 + 21.04.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2022-01-12 - 2.4.109 + 2021-03-16 + 20.12.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-11-19 - 2.4.108 - Version bump. + 2021-02-16 + 20.08.1 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2021-10-19 - 2.4.107 - Rebuild. + 2020-06-16 + 20.04.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-07-05 - 2.4.107 + 2020-05-11 + 20.04.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-03 - 2.4.106 + 2019-09-22 + 19.08.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-04-08 - 2.4.105 + 2019-04-24 + 19.04.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-09-30 - 2.4.102 + 2019-03-12 + 18.12.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-08 - 2.4.100 - Rebuild - Idris Kalp - idriskalp@gmail.com + 2019-02-25 + 18.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-10-20 - 2.4.100 + 2019-01-21 + 18.12.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-02-10 - 2.4.97 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2018-12-16 + 18.08.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-01-08 - 2.4.96 + 2018-08-18 + 18.04.1 Version bump Mustafa Cinasal muscnsl@gmail.com - 2018-07-25 - 2.4.92 + 2018-04-27 + 18.04.0 Version bump Mustafa Cinasal muscnsl@gmail.com - 2018-02-16 - 2.4.89 + 2018-03-24 + 17.12.3 Version bump Mustafa Cinasal muscnsl@gmail.com - 2017-09-09 - 2.4.83 + 2018-02-05 + 17.12.1 Version bump Mustafa Cinasal muscnsl@gmail.com - 2017-01-29 - 2.4.75 - Version bump. + 2017-11-15 + 17.08.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-24 + 17.08.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-29 + 20160911 + rebuild + Ali Algül + aligulle3801@gmail.com + + + 2016-12-10 + 20160911 + First Release Alihan Öztürk alihan@pisilinux.org + + + + + libburn + https://dev.lovelyhq.com/libburnia/web/wiki + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.optical + A library for reading, mastering and writing optical discs + Optik diskleri okumak, idare etmek ve yazmak için kitaplıklar + Libburn is an open-source library for reading, mastering and writing optical discs. + libburn, optik diskleri okumak, idare etmek ve yazmak için yazılmış, açık kaynak kodlu bir kitaplıktır. + http://files.libburnia-project.org/releases/libburn-1.5.4.tar.gz + hardware/optical/libburn/pspec.xml + + + libburn + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libburn-devel + Development files for libburn + libburn için geliştirme dosyaları + + libburn + + + /usr/include + /usr/lib/pkgconfig/libburn-1.pc + + + + + 2021-08-11 + 1.5.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-03-09 + 1.5.2 + Version bump + fury + uglyside@yandex.ru + + + 2018-08-18 + 1.4.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 1.4.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + - 2016-11-02 - 2.4.71 + 2017-03-25 + 1.4.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 1.4.2 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libcdio + http://www.gnu.org/software/libcdio/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.optical + Un librairie encapsulant la lecture et le controle du lecteur CD-ROM. + A library to encapsulate CD-ROM reading and control + CD-ROM okuma ve kontrol kitaplığının küçültülmüş sürümü + This library provides an interface for CD-ROM access. It can be used by applications that need OS- and device-independent access to CD-ROM devices. + GNU kompakt disk girdi ve kontrol kitaplığı (libcdio) CD-ROM ve CD kalıplarına ulaşım için gerekli bir kitaplıktır. + mirrors://gnu/libcdio/libcdio-2.1.0.tar.bz2 + + libcddb-devel + ncurses-devel + libgcc + + hardware/optical/libcdio/pspec.xml + + + libcdio + + libcddb + ncurses + libgcc + + + /usr/share/info + /usr/share/man + /usr/share/doc + /usr/lib + /usr/bin + + + + libcdio-devel + Development files for libcdio + libcdio için geliştirme dosyaları + + libcdio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 2.1.0 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2018-07-31 + 2.0.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 0.94 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.92 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.92 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libcdio-paranoia + http://www.gnu.org/software/libcdio/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + GPLv2+ + LGPLv2.1 + library + hardware.optical + CD paranoia libraries from libcdio + An advanced CDDA reader with error correction. + mirrors://gnu/libcdio/libcdio-paranoia-10.2+2.0.1.tar.bz2 + + libcdio-devel + + hardware/optical/libcdio-paranoia/pspec.xml + + + libcdio-paranoia + + libcdio + + + /usr/share/info + /usr/share/man + /usr/share/doc + /usr/lib + /usr/bin + + + + libcdio-paranoia-devel + Development files for libcdio-paranoia + + libcdio-paranoia + libcdio-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-18 + 10.2_2.0.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-14 + 10.2_2.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.94_p2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.93_p1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.90_p1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-25 + 0.90_p1 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libisoburn + https://dev.lovelyhq.com/libburnia/web/wiki + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.optical + Frontend for libraries libburn and libisofs + Libburn ve libisofs kütüphanelerini kullanmak için bir arayüz. + Frontend for libraries libburn and libisofs + libisoburn, libburn ve libisofs kütüphanelerini kullanmak için bir arayüzdür. + http://files.libburnia-project.org/releases/libisoburn-1.5.4.tar.gz + + libburn-devel + libisofs-devel + readline-devel + zlib-devel + acl-devel + + hardware/optical/libisoburn/pspec.xml + + + libisoburn + + acl + zlib + readline + libburn + libisofs + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + libisoburn-devel + Development files for libisoburn + libisoburn için geliştirme dosyaları + + libisoburn + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-08-11 + 1.5.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-03-09 + 1.5.2 + Version bump + fury + uglyside@yandex.ru + + + 2018-08-18 + 1.4.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-03 + 1.4.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-2 + 1.4.6 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-15 + 1.4.2 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + lsdvd + https://sourceforge.net/projects/lsdvd/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.optical + Small application for listing the contents of DVDs + DVD bilgilerini toplamaya yarayan bir araç + lsdvd is a small application which lists the contents of DVDs to your terminal. + lsdvd, terminal üzerinden DVD'lerin içeriğini görüntülemeye yarayan basit bir araçtır. + mirrors://sourceforge/lsdvd/lsdvd-0.17.tar.gz + + libdvdread-devel + + hardware/optical/lsdvd/pspec.xml + + + lsdvd + + libdvdread + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2020-10-05 + 0.17 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-18 + 0.17 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-07 + 0.17 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.17 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 0.17 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + simpleburn + http://simpleburn.tuxfamily.org/ + + Stefan Gronewold + groni@pisilinux.org + + Cecill-2 license + app:gui + hardware.optical + A simple GTK+ application for burning CDs and DVDs + SimpleBurn is a minimalistic application for burning and extracting CDs and DVDs. It basically is a Cdrtools frontend and is designed in two parts: the GUI (GTK) and a BASH script that handle the requested actions. + simpleburn + http://simpleburn.tuxfamily.org/IMG/gz/simpleburn-1.8.4.tar.gz + + gtk3-devel + cdparanoia-devel + mpg123-devel + pkgconfig + cmake + libisoburn-devel + libdvdread-devel + libburn-devel + libisofs-devel + libcdio-devel + libcddb-devel + cdrkit + util-linux + libutil-linux-devel + + hardware/optical/simpleburn/pspec.xml + + + simpleburn + + gtk3 + glib2 + lame + cdparanoia + libisoburn + cdrdao + libcdio + libdvdread + libcddb + mpg123 + vorbis-tools + cdrkit + libcdio + + + /usr/bin + /usr/share/locale + /usr/share/simpleburn + /usr/share/icons + /usr/share/applications + /usr/share/doc + + + + + 2021-08-11 + 1.8.4 + Ver. bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-18 + 1.8.3.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-13 + 1.8.3.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-13 + 1.6.5 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.6.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-20 + 1.6.5 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-19 + 1.6.5 Version bump. Stefan Gronewold(groni) groni@pisilinux.org - - 2016-04-30 - 2.4.67 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-03-27 - 2.4.67 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - libXcomposite - https://www.x.org/ + acpi + https://sourceforge.net/projects/acpiclient/files/acpiclient/ PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - Librairie composite X.Org - X.Org composite library - X.Org composite kitaplığı - X.Org composite Bibliothek - libXcomposite is the X Composite library. Compositing allows modification of the window system's base elements like window borders, window buttons and window titlebars. - libXcomposite, X Birleşiklik kitaplığıdır. Birleşiklik, pencerelere ait kenarlar, butonlar ve başlık çubukları gibi pencere sisteminin temel elemanlarını değiştirmeye izin verir. - mirrors://xorg/individual/lib/libXcomposite-0.4.5.tar.bz2 - - xmlto - libX11-devel - libXfixes-devel - util-macros - - x11/library/libXcomposite/pspec.xml - - - libXcomposite - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXcomposite-devel - Development files for libXcomposite - libXcomposite için geliştirme dosyaları - - libXcomposite - libXfixes-devel - xorg-proto - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXcomposite-32bit - 32-bit shared libraries for libXcomposite - libXcomposite için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - - - libXcomposite - libX11-32bit - - - /usr/lib32 - - - - - 2021-09-25 - 0.4.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-03 - 0.4.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 0.4.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 0.4.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 0.4.4 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 0.4.4 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.4.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 0.4.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXxf86dga - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xxf86dga de X.Org - X.Org Xxf86dga library - X.Org Xxf86dga kitaplığı - X.Org Xxf86dga Bibliothek - LibXxf86dga is the client library for the XFree86-DGA extension. - mirrors://xorg/individual/lib/libXxf86dga-1.1.5.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXxf86dga/pspec.xml - - - libXxf86dga - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXxf86dga-devel - Development files for libXxf86dga - libXxf86dga için geliştirme dosyaları - - libXxf86dga - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86dga-32bit - 32-bit shared libraries for libXxf86dga - libXxf86dga için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86dga - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2020-01-10 - 1.1.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 1.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.1.4 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.1.4 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXxf86misc - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie libXxf86misc de X.Org - X.Org Xxf86misc library - X.Org libXxf86misc kitaplığı - X.Org libXxf86misc Bibliothek - LibXxf86misc is the client library for the XFree86-misc extension. - https://www.x.org/archive/individual/lib/libXxf86misc-1.0.4.tar.gz - - libXext-devel - xorg-proto - util-macros - - x11/library/libXxf86misc/pspec.xml - - - libXxf86misc - - libXext - - - /usr/lib - /usr/share/doc - - - - libXxf86misc-devel - Development files for libXxf86misc - libXxf86misc için geliştirme dosyaları - - libXxf86misc - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86misc-32bit - 32-bit shared libraries for libXxf86misc - libXxf86misc için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86misc - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2020-01-10 - 1.0.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.0.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-05 - 1.0.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.0.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.0.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXinerama - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - librairie Xinerama de X.Org - X.Org Xinerama library - X.Org Xinerama kitaplığı - X.Org Xinerama Bibliothek - Xorg Xinerama library. Xinerama is an extension to the X Window System which enables applications and window managers to use two (or more) physical displays as one large virtual display. - mirrors://xorg/individual/lib/libXinerama-1.1.4.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXinerama/pspec.xml - - - libXinerama - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXinerama-devel - Development files for libXinerama - libXinerama için geliştirme dosyaları - - libXinerama - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXinerama-32bit - 32-bit shared libraries for libXinerama - libXinerama için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libX11-32bit - - - libXinerama - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2020-01-10 - 1.1.4 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2019-10-25 - 1.1.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 1.1.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.1.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXfixes - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xfixes de X.Org - X.Org Xfixes library - X.Org Xfixes kitaplığı - X.Org Xfixes Bibliothek - libXfixes is a library to provide augmented versions of core protocol requests. - mirrors://xorg/individual/lib/libXfixes-6.0.0.tar.bz2 - - xorg-proto - libX11-devel - util-macros - - x11/library/libXfixes/pspec.xml - - - libXfixes - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXfixes-devel - Development files for libXfixes - libXfixes için geliştirme dosyaları - - libXfixes - libX11-devel - xorg-proto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXfixes-32bit - 32-bit shared libraries for libXfixes - libXfixes için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - - - libXfixes - libX11-32bit - - - /usr/lib32 - - - - - 2021-09-18 - 6.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 5.0.3 - Rebuild. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-20 - 5.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 5.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 5.0.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-01-29 - 5.0.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-11-02 - 5.0.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 5.0.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 5.0.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libFS - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie FS de X.Org - X.Org FS library - X.Org FS kitaplığı - X.Org FS Bibliothek - libFS is the interface library to the X Font Server. - mirrors://xorg/individual/lib/libFS-1.0.8.tar.bz2 - - util-macros - xorg-proto - xtrans - - x11/library/libFS/pspec.xml - - - libFS - - /usr/lib - /usr/share/doc - - - - libFS-devel - Development files for libFS - libFS için geliştirme dosyaları - - libFS - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2020-01-10 - 1.0.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.0.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.0.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.0.7 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-01-30 - 1.0.7 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.0.7 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.0.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libomxil-bellagio - http://omxil.sourceforge.net - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - LGPLv2.1 - library - x11.library - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - An opensource implementation of the OpenMAX Integration Layer API - http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%200.9.3/libomxil-bellagio-0.9.3.tar.gz - - glibc-devel - - - fedora-fixes.patch - libomxil-bellagio-0.9.3-Werror.patch - libomxil-bellagio-0.9.3-gcc46.patch - libomxil-bellagio-0.9.3-memcpy.patch - - x11/library/libomxil-bellagio/pspec.xml - - - libomxil-bellagio - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - libomxil-bellagio-devel - Development files for mesa - - libomxil-bellagio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 0.9.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2018-07-24 - 0.9.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 0.9.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.9.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-04-07 - 0.9.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - wayland-protocols - http://wayland.freedesktop.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - GPLv2 - library - x11.library - Specifications of extended Wayland protocols - Genişletişmiş wayland protocolü tanımlamaları - Specifications of extended Wayland protocols - https://wayland.freedesktop.org/releases/wayland-protocols-1.25.tar.xz - - meson - wayland-client - wayland-server - wayland-cursor - wayland-devel - - x11/library/wayland-protocols/pspec.xml + app:console + hardware.powermanagement + Battery and thermal reporter + ACPI sistemlerde pil ve sıcaklık bilgilerini tutar + acpi is a small command-line tools that reports battery and thermal information. + Eski apm komutlarını ACPI sistemlerde verir, pil ve sıcaklık bilgilerini tutar. + mirrors://sourceforge/acpiclient/acpiclient/1.7/acpi-1.7.tar.gz + hardware/powermanagement/acpi/pspec.xml - wayland-protocols + acpi - /usr/share/wayland-protocols - /usr/share/doc - - - - wayland-protocols-devel - wayland-protocols için geliştirme dosyaları - - wayland-protocols - - - /usr/share/pkgconfig + /usr/bin + /usr/share/doc + /usr/share/man - - 2022-02-09 - 1.25 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-16 - 1.23 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 1.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-12 - 1.21 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-20 - 1.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 1.18 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-26 - 1.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-01-03 - 1.16 - Version bump + 2020-03-02 + 1.7 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2018-07-24 - 1.15 - Version bump + 2018-09-01 + 1.7 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2017-12-15 - 1.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2017-04-06 + 1.7 + Rebuild + Kamil Atlı + suvari@pisilinux.org - 2017-03-02 + 2016-07-02 1.7 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - xcb-util-xrm - https://github.com/Airblader/xcb-util-xrm - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - x11.library - XCB utility functions for the X resource manager - XCB utility functions for the X resource manager - http://distfiles.macports.org/xorg-xcb-util-xrm/xcb-util-xrm-1.3.tar.bz2 - - libxcb-devel - xcb-util-devel - xcb-proto - libX11-devel - util-macros - - x11/library/xcb-util-xrm/pspec.xml - - - xcb-util-xrm - - libxcb - xcb-util - - - /usr/lib - - - - xcb-util-xrm-devel - Development files for xcb-util-xrm - system.devel - - xcb-util-xrm - libxcb-devel - xcb-util-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-22 - 1.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-19 - 1.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-23 - 1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-20 - 1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-05 - 1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-16 - 1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - tslib - https://github.com/kergoth/tslib + acpica + http://www.acpica.org PisiLinux Community admins@pisilinux.org - GPLv2 - app - x11.library - Dokunmatik Ekran Erişim Kütüphanesi - Dokunmatik Ekran Erişim Kütüphanesi - Touchscreen Access Library - Touchscreen Access Library - https://github.com/libts/tslib/releases/download/1.21/tslib-1.21.tar.bz2 - x11/library/tslib/pspec.xml - - - tslib - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - tslib-devel - Development files for tslib - - tslib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-10 - 1.21 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2019-02-01 - 1.18 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libglvnd - https://github.com/NVIDIA/libglvnd - - Marcin Bojara - marcin.bojara@gmail.com - - custom:BSD-like - library - x11.library - The GL Vendor-Neutral Dispatch library - libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. It allows multiple drivers from different vendors to coexist on the same filesystem, and determines which vendor to dispatch each API call to at runtime. - https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v1.4.0/libglvnd-v1.4.0.tar.gz - - meson - xorg-proto - libX11-devel - libdrm-devel - libxcb-devel - libXext-devel - libXfixes-devel - libXdamage-devel - libXxf86vm-devel - - x11/library/libglvnd/pspec.xml - - - libglvnd - - libX11 - - - /usr/lib - /usr/share/doc - - - mesa - - - - libglvnd-devel - Development files for libglvnd - - libglvnd - libX11-devel - libdrm-devel - libxcb-devel - libXext-devel - libXfixes-devel - libXdamage-devel - libXxf86vm-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libglvnd-32bit - 32-bit shared libraries for libglvnd - emul32 - emul32 - - libXext-32bit - libX11-32bit - - - libX11-32bit - - - /usr/lib32 - - - - - 2022-03-19 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-30 - 1.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-19 - 1.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 1.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-04 - 1.3.0 - First release - Marcin Bojara - marcin.bojara@gmail.com - - - - - - freeglut - http://freeglut.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - The OpenGL Utility Toolkit (Freeglut) - OpenGL Araç Kiti (Freeglut) - Freeglut est la boîte à outils utilitaire d'OpenGL, une boîte à outils indépendante du système de fenêtrage pour écrire des programmes OpenGL. Il implémente une Interface de Programmation d'Application (API) de fenêtrage pour OpenGL. Freeglut facilite considérablement l'apprentissage et l'exploration de la programmation en OpenGL. - Freeglut is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. Freeglut makes it considerably easier to learn about and explore OpenGL Programming. - Freeglut, OpenGL programlarını yazmak için bağımsız araç kutusu pencere sistemin olan bir OpenGL Hizmeti Araç Takımıdır. OpenGl için basit bir pencere uygulama proglaması arayüzü (API) sağlar. Freeglut, OpenGL Programlamasını keşfetmek öğrenmek isteyenler için kolaylıklar sağlar. - Freeglut es la caja de herramientas de OpenGL, con herramientas para crear programas OpenGL, independientemente del sistema de ventanas. Facilita una simple interfaz de programación de aplicaciones (API) con ventanas para OpanGL. Freeglut facilita considerablemente el aprendizaje y exploración de la programación OpenGL. - mirrors://sourceforge/freeglut/freeglut-3.2.1.tar.gz - - libglvnd-devel - mesa-glu-devel - libX11-devel - libXi-devel - libXxf86vm-devel - libXext-devel - libXrandr-devel - cmake - - x11/library/freeglut/pspec.xml - - - freeglut - - libglvnd - libX11 - libXi - libXxf86vm - libXrandr - - - /usr/lib - /usr/share/doc/freeglut - - - - freeglut-devel - Development files for freeglut - freeglut için geliştirme dosyaları - - freeglut - - - /usr/include - /usr/lib/pkgconfig - - - - freeglut-32bit - 32-bit shared libraries for freeglut - freeglut için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libglvnd-32bit - mesa-glu-32bit - libXi-32bit - libX11-32bit - libXxf86vm-32bit - libXrandr-32bit - - - freeglut - libglvnd-32bit - libXi-32bit - libXxf86vm-32bit - libX11-32bit - libXrandr-32bit - - - /usr/lib32 - - - - - 2021-03-19 - 3.2.1 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2019-10-23 - 3.0.0 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2018-07-27 - 3.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2017-09-20 - 3.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2016-11-03 - 3.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 3.0.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-04-27 - 3.0.0 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libXxf86miscproto - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie libXxf86miscproto de X.Org - X.Org Xxf86miscproto library - X.Org libXxf86miscproto kitaplığı - X.Org libXxf86miscproto Bibliothek - LibXxf86miscproto is the client library for the XFree86-miscproto extension. - mirrors://xorg/individual/proto/xf86miscproto-0.9.3.tar.bz2 - - util-macros - libXext-devel - xorg-proto - - x11/library/libXxf86miscproto/pspec.xml - - - libXxf86miscproto - - /usr/lib - /usr/share/doc - - - - libXxf86miscproto-devel - Development files for libXxf86miscproto - libXxf86miscproto için geliştirme dosyaları - - libXxf86miscproto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - - 2020-01-10 - 0.9.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 0.9.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 0.9.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 0.9.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-05 - 0.9.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.9.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 0.9.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXt - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xt de X.Org - X.Org Xt library - X.Org Xt kitaplığı - X.Org Xt Bibliothek - LibXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif. - mirrors://xorg/individual/lib/libXt-1.2.0.tar.bz2 - - libICE-devel - libSM-devel - xorg-proto - libX11-devel - util-macros - - x11/library/libXt/pspec.xml - - - libXt - - libICE - libSM - libX11 - - - /usr/bin - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libXt-devel - Development files for libXt - libXt için geliştirme dosyaları - - libXt - libICE-devel - libSM-devel - xorg-proto - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXt-32bit - 32-bit shared libraries for libXt - libXt için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libSM-32bit - - - libXt - libX11-32bit - libSM-32bit - libICE-32bit - - - /usr/lib32 - - - - - 2021-03-14 - 1.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 1.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.1.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.1.5 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.1.5 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.5 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.1.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - Xaw3d - http://freshmeat.net/projects/xaw3d/ - - PisiLinux Community - admins@pisilinux.org - - X11 - library - x11.library - Replacement of the Xaw widget set that comes with X - XPM imajlarına 3D görüntüsü ve desteği ekleyen bir kütüphanedir - Xaw3d est globalement le remplaçant de la boîte à outils Athena. Il ajoute une apparence 3D ainsi que le support des images XMP. - Xaw3d is a general-purpose replacement for the Athena toolkit that adds a 3D appearance and support for XPM images. - Xaw3d, Athena araçlarının yerini alması amaçlanarak hazırlanmıştır. Ek olarak 3B görünüş sağlar ve XPM resimlerini destekler. - http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-1.6.3.tar.gz - - util-macros - libXt-devel - libXmu-devel - libXpm-devel - - - Xaw3d-1.6.1-3Dlabel.patch - Xaw3d-1.6.1-fontset.patch - Xaw3d-1.6.1-hsbar.patch - - x11/library/Xaw3d/pspec.xml - - - Xaw3d - - libXt - libX11 - libXmu - libXpm - libXext - - - /usr/lib - /usr/share/doc - - - - Xaw3d-devel - Development files for Xaw3d - Xaw3d için geliştirme dosyaları - - Xaw3d - libXt-devel - libX11-devel - libXmu-devel - libXext-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-10 - 1.6.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-24 - 1.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.6.2 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-05 - 1.6.2 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.6.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-02-21 - 1.6.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libxcvt - https://gitlab.freedesktop.org/xorg/lib/libxcvt - - Pisi Linux Admins - admin@pisilinux.org - custom - library - x11.library - VESA CVT standard timing modelines generator - VESA CVT standard timing modelines generator - VESA CVT standart zamanlama modelleri üreteci - VESA CVT standart zamanlama modelleri üreteci - https://gitlab.freedesktop.org/xorg/lib/libxcvt/-/archive/libxcvt-0.1.1/libxcvt-libxcvt-0.1.1.tar.bz2 - - meson - - x11/library/libxcvt/pspec.xml + app:console + hardware.powermanagement + ACPI debugging tools written by Intel + Intel ACPI hata ayıklama araçları + acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler. + acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir. + https://acpica.org/sites/acpica/files/acpica-unix-20210604.tar_0.gz + + iasl-20140828-locale.patch + iasl-20140214-nostrip.patch + OPT_LDFLAGS.patch + + hardware/powermanagement/acpica/pspec.xml - libxcvt + acpica - /usr/bin - /usr/lib - /usr/share/man /usr/share/doc + /usr/bin + /usr/sbin + /usr/share/man/man1 - - - libxcvt-devel - Development files for libxcvt - - libxcvt - - - /usr/include - /usr/lib/pkgconfig - + + iasl.1 + LICENSE + - - 2021-10-31 - 0.1.1 - First release - Pisi Linux Admins + + 2020-07-28 + 0.0_20210604 + Version Bump + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2020-01-26 + 0.0_20200528 + Version Bump + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2020-01-26 + 0.0_20200110 + Version Bump + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-08-15 + 0.0_20130117 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-04-07 + 0.0_20130117 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.0_20130117 + Release Bump + Pisi Linux Community admin@pisilinux.org + + 2014-03-05 + 0.0_20130117 + First release + Osman Erkan + osman.erkan@pisilinux.org + - xcb-util - https://xcb.freedesktop.org/ + acpid + https://sourceforge.net/projects/acpid2/ PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2 - - util-macros - libxcb-devel - - x11/library/xcb-util/pspec.xml + GPLv2+ + service + app:console + hardware.powermanagement + ACPI daemon that dispatches ACPI events to user-space programs + ACPI hizmeti + acpid is a flexible and extensible daemon for ACPI (Advanced Configuration and Power Interface) event dispatching. + acpid ACPI olaylarını kullanıcı uygulamalarına paslayan gelişmiş ve esnek bir sistem hizmetidir. + mirrors://sourceforge/acpid2/acpid-2.0.33.tar.xz + hardware/powermanagement/acpid/pspec.xml - xcb-util - - libxcb - + acpid - /usr/lib + /usr/bin + /usr/sbin + /etc/acpi/actions + /etc/acpi/events + /etc/conf.d + /usr/share/dbus-1/services/acpid.service /usr/share/doc + /usr/share/man - - - xcb-util-devel - Development files for xcb-util - xcb-util için geliştirme dosyaları - - xcb-util - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-32bit - 32-bit shared libraries for xcb-util - xcb-util için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - - - xcb-util - libxcb-32bit - - - /usr/lib32 - + + System.Service + + + acpid.power.sh + fedora/acpid.power.conf + fedora/acpid.video.conf + fedora/acpid.sysconfig + - - 2021-05-22 - 0.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2021-03-14 - 0.4.0 - Rebuild + 2021-11-04 + 2.0.33 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-06-01 - 0.4.0 - Rebuild + 2021-02-18 + 2.0.32 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2019-02-20 - 0.4.0 - Rebuild + 2020-03-02 + 2.0.32 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-11-05 - 0.4.0 + 2019-02-10 + 2.0.31 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-13 + 2.0.28 Rebuild Mustafa Cinasal muscnsl@gmail.com - - 2018-07-24 - 0.4.0 - Rebuild - PisiLinux Community - admin@pisilinux.org - - 2017-02-05 - 0.4.0 + 2018-05-13 + 2.0.28 Rebuild - PisiLinux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2016-04-30 - 0.4.0 - Release bump - PisiLinux Community - admin@pisilinux.org + 2017-04-06 + 2.0.28 + Version bump + Kamil Atlı + suvari@pisilinux.org - 2015-12-13 - 0.4.0 + 2016-07-02 + 2.0.27 First release Kamil Atlı suvari@pisilinux.org @@ -245680,340 +189596,1228 @@ Gnome session. - libXres - https://www.x.org/ + lm_sensors + https://hwmon.wiki.kernel.org/lm_sensors PisiLinux Community admins@pisilinux.org - MIT + LGPLv2+ + app:console library - x11.library - Librairie Xres de X.Org - X.Org Xres library - X.Org Xres kitaplığı - X.Org Xres Bibliothek - X-Resource is an extension that allows a client to query the X server about its usage of various resources. - mirrors://xorg/individual/lib/libXres-1.2.0.tar.bz2 + hardware.powermanagement + Hardware monitoring tools + Donanım sıcaklığı izleyicisi + lm_sensors provides essential tools for monitoring the temperatures, voltages, and fans of Linux systems with hardware monitoring devices. It also contains scripts for sensor hardware identification and fan speed control. + lm_sensors linux sistemlerdeki donanım izleyiciler ile birlikte termometreleri, voltajları ve fan devirlerini izleyen bir araçtır. Ayrıca, donanım ve fan kimliğini algılayan betikler içerir. + https://github.com/lm-sensors/lm-sensors/archive/V3-6-0.tar.gz - libX11-devel - libXext-devel - util-macros + rrdtool-devel - x11/library/libXres/pspec.xml + + 42f240d2a457834bcbdf4dc8b57237f97b5f5854.patch + + hardware/powermanagement/lm_sensors/pspec.xml - libXres + lm_sensors - libX11 - libXext + dmidecode + rrdtool + /etc + /usr/bin + /usr/sbin /usr/lib - /usr/share/doc - - - - libXres-devel - Development files for libXres - libXres için geliştirme dosyaları - - libXres - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig /usr/share/man - - - - - 2020-01-10 - 1.2.0 - Rebuld. - PisiLinux Community - admin@pisilinux.org - - - 2019-10-25 - 1.2.0 - Rebuld. - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 1.2.0 - Version Bump. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.0.7 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.0.7 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.0.7 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - xcb-util-renderutil - https://xcb.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 - - xorg-proto - util-macros - libxcb-devel - - x11/library/xcb-util-renderutil/pspec.xml - - - xcb-util-renderutil - - libxcb - - - /usr/lib /usr/share/doc - xcb-util-renderutil-devel - Development files for xcb-util-renderutil - xcb-util-renderutil için geliştirme dosyaları + lm_sensors-devel + Development files for lm_sensors + lm_sensors için geliştirme dosyaları - xcb-util-renderutil + lm_sensors + rrdtool-devel /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-renderutil-32bit - 32-bit shared libraries for xcb-util-renderutil - xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - - - libxcb-32bit - - - /usr/lib32 + /usr/share/man/man3 - - 2021-03-19 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-19 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2019-02-20 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2021-07-29 + 3.6.0 + Rebuild 3.6.0 git version. + Pisi Linux Community + admin@pisilinux.org - 2018-11-05 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-08 + 3.6.0 + Version bump + Idris Kalp + idriskalp@gmail.com - 2018-07-24 - 0.3.9 - Rebuild - PisiLinux Community + 2018-08-15 + 3.4.0 + Rebuild. + Pisi Linux Community admin@pisilinux.org - 2017-02-05 - 0.3.9 - Rebuild - PisiLinux Community - admin@pisilinux.org + 2017-03-02 + 3.4.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-04-30 - 0.3.9 - Release bump - PisiLinux Community + 2016-06-09 + 3.4.0 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2014-09-01 - 0.3.9 + 2015-10-02 + 3.4.0 First release - Marcin Bojara - marcin@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - libepoxy - http://www.kde.org + pm-utils + http://pm-utils.freedesktop.org/wiki/ - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - OpenGL function pointer management library - Epoxy is a library for handling OpenGL function pointer management for you. - https://download.gnome.org/sources/libepoxy/1.5/libepoxy-1.5.10.tar.xz + GPLv2 + app:console + hardware.powermanagement + A toolset to suspend and hibernate computers + Askıya alma işlemleri için gerekli araçlar + pm-utils provides simple shell command line tools to suspend and hibernate computers, and it that can be used to run vendor, distribution, or user supplied scripts on suspend and resume. + pm-utils, bilgisayarı bellek veya disk kullanarak uyku kipine geçirmek ve devam ettirmek için gerekli kabuk betiklerini sunar. + http://pm-utils.freedesktop.org/releases/pm-utils-1.4.1.tar.gz + http://pm-utils.freedesktop.org/releases/pm-quirks-20100619.tar.gz - meson - libX11-devel - libglvnd-devel - util-macros + xmlto + libxslt + util-linux - x11/library/libepoxy/pspec.xml + + pisilinux/check-for-swap-partition.patch + pisilinux/disable-powersave.patch + suse/pm-utils-1.2.6.1-fix-broken-dbus-send.diff + suse/pm-utils-1.3.0-suse-smart-uswsusp.patch + suse/pm-utils-1.4.1-suse-config.patch + gentoo/1.4.1-bluetooth-sync.patch + gentoo/1.4.1-disable-sata-alpm.patch + gentoo/1.4.1-fix-intel-audio-powersave-hook.patch + gentoo/1.4.1-logging-append.patch + + hardware/powermanagement/pm-utils/pspec.xml - libepoxy + pm-utils + + hdparm + vbetool + - /etc/xdg + /etc/pm + /usr/lib + /run/pm-utils + /usr/share/doc + /usr/share/man /usr/bin - /usr/lib - /usr/share + /usr/sbin + /usr/lib/pkgconfig + /usr/lib/pm-utils/video-quirks + /usr/lib/tmpfiles.d/pm-utils.conf + + + tmpfiles.conf + suse/hooks/config.d/rtcwake.config + suse/hooks/sleep.d/30s2disk-check + suse/hooks/sleep.d/45pcmcia + + + + + 2020-02-02 + 1.4.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 1.4.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-09-20 + 1.4.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-31 + 1.4.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + powertop + http://www.lesswatts.org/projects/powertop/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.powermanagement + Power consumption monitor + Güç tüketim izleme aracı + PowerTOP is a Linux tool that finds the software component(s) that make your computer use more power than necessary while it is idle. + PowerTOP, bilgisayarınız atıl durumdayken ihtiyacından fazla güç tüketmesine neden olan yazılım bileşenlerini bulmak için kullanılan bir Linux aracıdır. + https://github.com/fenrus75/powertop/archive/v2.14.tar.gz + + libnl-devel + ncurses-devel + pciutils-devel + autoconf-archive + + + powertop-2.14-undefined-symbol.patch + + hardware/powermanagement/powertop/pspec.xml + + + powertop + + libnl + ncurses + libgcc + pciutils + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/sbin + /var/cache/powertop + /usr/share/bash-completion /usr/share/locale + + + + + 2021-11-28 + 2.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-28 + 2.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-02 + 2.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 2.9 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-25 + 2.9 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-05 + 2.8 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-07-02 + 2.8 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + suspend + http://suspend.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.powermanagement + A set of tools to support sleep modes + Uyku kiplerini destekleme araçları + suspend package allows users to suspend-to-ram, suspend-to-disk, and suspend-to-both. + suspend, kullanıcıların bellek, disk veya her ikisini de kullanarak sistemlerini askıya almalarını sağlayan araçları içerir. + http://dev.gentoo.org/~bircoph/distfiles/suspend-1.0_p20120915.tar.xz + + lzo-devel + pciutils-devel + libx86-devel + libgcrypt-devel + + + suspend-1.0_p20200924.patch.xz + + hardware/powermanagement/suspend/pspec.xml + + + suspend + + lzo + libx86 + pciutils + + + /etc/suspend.conf + /etc/suspend.key + /usr/sbin + /usr/bin + /sbin + /usr/lib/suspend/resume /usr/share/doc /usr/share/man + + suse/configure-suspend-encryption.sh + + + + + 2021-11-29 + 1.0_p20200924 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-19 + 1.0_p20200924 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-23 + 1.0_p20120915 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-02 + 1.0_p20120915 + Rebuild New T + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 1.0_p20120915 + Rebuild New T + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-01 + 1.0_p20120915 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0_p20120915 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.0_p20120915 + First release + Varol Maksutoğlu + waroi@pisilinux.org + + + + + + upower + http://upower.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + hardware.powermanagement + Power Management Service + Güç Yönetim Hizmeti + upower provides a daemon, API and command line tools for managing power devices attached to the system. + upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. + https://gitlab.freedesktop.org/upower/upower/-/archive/v0.99.18/upower-v0.99.18.tar.bz2 + + tr.po + + + meson + python3-devel + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + libgudev-devel + libusb-devel + libplist-devel + libimobiledevice-devel + gobject-introspection-devel + docbook-xsl + intltool + gtk-doc + + + add-tr.patch + 0.99.18-meson-Allow-unittest-inspector-to-fail.patch + + hardware/powermanagement/upower/pspec.xml + + + upower + + dbus + glib2 + polkit + dbus-glib + libgudev + libplist + libimobiledevice + pm-utils + libusb + + + /lib + /usr/lib + /etc/dbus-1 + /etc/udev/hwdb.d/95-upower-hid.hwdb + /usr/share/man + /usr/share/doc + /etc/UPower + /usr/bin + /var/lib/upower + /usr/share/gir-1.0 + /usr/share/dbus-1 + /usr/libexec + /usr/share/polkit-1 + /usr/share/locale + /usr/share/dbus-1/interfaces/*.xml + /usr/lib/girepository-1.0/*.typelib + - libepoxy-devel - Development files for libepoxy + upower-devel + Development files for upower + upower için geliştirme dosyaları - libepoxy - libglvnd-devel + upower + dbus-devel + glib2-devel + polkit-devel + dbus-glib-devel + libgudev-devel + libplist-devel + libimobiledevice-devel /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libepoxy-32bit - 32-bit shared libraries for libeproxy - emul32 - emul32 - - libX11-32bit - libglvnd-32bit - - - /lib32 - /usr/lib32 + /usr/lib/pkgconfig + + 2022-06-03 + 0.99.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-21 + 0.99.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2022-06-01 - 1.5.10 + 2021-09-18 + 0.99.13 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-08-14 - 1.5.9 + 2020-12-09 + 0.99.11 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-10 - 1.5.4 - Version bump - Idris Kalp - idriskalp@gmail.com + 2020-03-02 + 0.99.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-10-23 - 1.5.3 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2018-08-15 + 0.99.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2019-02-10 - 1.5.3 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2018-02-25 + 0.99.7 + Version bump. + Pisi Linux Community + admin@pisilinux.org - 2018-07-27 - 1.5.2 - Version bump - PisiLinux Community + 2017-03-05 + 0.99.4 + Rebuild. + Pisi Linux Community admin@pisilinux.org - 2017-02-15 - 1.4 - Version bump - PisiLinux Community + 2017-03-02 + 0.99.4 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.99.4 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2016-04-30 - 1.3.1 - Release bump - PisiLinux Community + 2016-05-18 + 0.99.4 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-01-26 + 0.9.23 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cups + https://www.cups.org/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + service + hardware.printer + Common Unix Printing System + Unix Ortak Yazdırma Sistemi + cups provides a portable printing layer for *nix-based operating systems. + https://github.com/OpenPrinting/cups/releases/download/v2.4.2/cups-2.4.2-source.tar.gz + + acl-devel + pam-devel + dbus-devel + libpcre-devel + zlib-devel + python-devel + libusb-devel + libgcc + avahi-libs + avahi-devel + mit-kerberos-devel + libpaper-devel + xdg-utils + colord-devel + autoconf + + + fedora/cups-final-content-type.patch + fedora/cups-res_init.patch + fedora/cups-logrotate.patch + fedora/cups-web-devices-timeout.patch + gentoo/cups-2.2.6-fix-install-perms.patch + pisilinux/cups-run.patch + pisilinux/statedir.patch + pld-linux/cups-avahi-address.patch + + hardware/printer/cups/pspec.xml + + + cups + + acl + pam + dbus + zlib + libusb + libgcc + libpaper + avahi + e2fsprogs + avahi-libs + mit-kerberos + + + /etc/cups/*conf + /usr/lib/tmpfiles.d/cups.conf + /usr/lib + /usr/sbin + /usr/bin + /var/cache/cups/rss + /var/spool/cups/tmp + /run/cups/certs + /var/log/cups + /etc + /lib/udev/rules.d + /lib/systemd/system + /usr/share/cups + /usr/share/icons + /usr/share/applications + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Service + System.Package + + + tmpfiles.conf + cups.logrotate + fedora/textonly.ppd + + + + cups-devel + Development files for cups + cups için geliştirme dosyaları + + cups + + + /usr/include + /usr/bin/cups-config + + + + cups-32bit + 32-bit shared libraries for cups + cups için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib-32bit + openssl-32bit + + + zlib-32bit + openssl-32bit + libgcc + cups + + + /usr/bin/cups-config-32bit + /usr/lib32 + + + + + 2022-05-26 + 2.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-06 + 2.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-25 + 2.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-30 + 2.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-16 + 2.3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 2.3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-29 + 2.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-08 + 2.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-04 + 2.2.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-24 + 2.2.11 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-23 + 2.2.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-11 + 2.2.10 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-24 + 2.2.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 2.2.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-13 + 2.2.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-13 + 2.2.6 + Version bump + Ayhan Yalçınsoy + ayhanyacinsoy@pisilinux.org + + + 2017-07-16 + 2.2.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.2.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 2.1.3 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-23 + 2.1.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + cups-filters + http://www.openprinting.org + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + GPLv3 + GPLv2+ + GPLv3+ + LGPLv2+ + MIT + data + library + app:console + hardware.printer + OpenPrinting CUPS filters and backends + Contains backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc. In addition it contains additional filters developed independently of Apple, especially filters for the PDF-centric printing workflow introduced by OpenPrinting. + https://www.openprinting.org/download/cups-filters/cups-filters-1.28.15.tar.xz + + python3-devel + cups-devel + glib2-devel + tiff-devel + lcms2-devel + dbus-devel + python-devel + libpng-devel + gettext-devel + freetype-devel + fontconfig-devel + libjpeg-turbo-devel + dejavu-fonts + poppler-utils + poppler-cpp-devel + zlib-devel + openldap-client + avahi-devel + avahi-glib-devel + qpdf-devel + ghostscript-devel + poppler-devel + mupdf-devel + + hardware/printer/cups-filters/pspec.xml + + + cups-filters + + cups + dbus + tiff + zlib + glib2 + lcms2 + libgcc + libpng + fontconfig + poppler-cpp + mit-kerberos + libjpeg-turbo + qpdf + ghostscript + poppler + e2fsprogs + avahi-glib + avahi-libs + openldap-client + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/ppd + /usr/bin + /usr/share/cups + /etc/cups/cups-browsed.conf + /etc/fonts/conf.d/99pdftoopvp.conf + + + + cups-filters-devel + Development files for cups-filters + Cups-filters için geliştirme dosyaları + + cups-filters + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-28 + 1.28.15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-11 + 1.28.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-16 + 1.28.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 1.28.7 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-09-03 + 1.28.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-29 + 1.27.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.27.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-16 + 1.25.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-07 + 1.25.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-29 + 1.25.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-31 + 1.23.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-30 + 1.21.6 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-07 + 1.21.3 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 1.20.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-21 + 1.20.3 + version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-28 + 1.20.1 + version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-12 + 1.17.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-13 + 1.17.9 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-07-13 + 1.14.1 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-21 + 1.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.0 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2016-04-08 - 1.3.1 + 2016-04-23 + 1.5.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + cups-pk-helper + https://www.freedesktop.org/wiki/Software/cups-pk-helper + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + hardware.printer + PolicyKit helper to configure cups with fine-grained privileges + cups-pk-helper provides a PolicyKit helper to configure cups with fine-grained privileges. For example, it's possible to let users enable/disable printers without requiring a password, while still requiring a password for editing printer settings. + https://www.freedesktop.org/software/cups-pk-helper/releases/cups-pk-helper-0.2.6.tar.xz + + cups-devel + polkit-devel + elogind-devel + intltool + + hardware/printer/cups-pk-helper/pspec.xml + + + cups-pk-helper + + cups + glib2 + polkit + + + /usr/lib/cups-pk-helper + /usr/share/dbus-1 + /usr/share/locale + /usr/share/doc + /usr/share/polkit-1 + + + + + 2022-05-28 + 0.2.6 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2021-07-19 + 0.2.6 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + enscript + http://www.gnu.org/software/enscript/enscript.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + hardware.printer + Powerful text-to-postscript converter + Metin dosyalarından postscript belge oluşturma aracı + enscript is an application that you can use to convert your text files to postscript files with enhanced formatting capabilities like colorizing, page layout management etc. + Metin dosyalarını postscript belgelere dönüştüren, dönüşüm sırasında renklendirme, sayfa düzeni ve boyut değiştirme gibi biçimlendirmeler yapabilen bir araç + https://ftp.gnu.org/gnu/enscript/enscript-1.6.6.tar.gz + + ruby.patch + + hardware/printer/enscript/pspec.xml + + + enscript + + /etc + /usr/bin + /usr/share/doc + /usr/share/enscript + /usr/share/info + /usr/share/locale + /usr/share/man + + + ruby.st + + + + + 2020-02-12 + 1.6.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 1.6.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-28 + 1.6.4 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-23 + 1.6.4 First release Stefan Gronewold(groni) groni@pisilinux.org @@ -246022,133 +190826,108 @@ Gnome session. - libXtst - https://www.x.org/ + foomatic-db + https://linuxprinting.org/foomatic.html PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - Librairie Xtst de X.Org - X.Org Xtst library - X.Org Xtst kitaplığı - X.Org Xtst Bibliothek - libXtst provides an X Window System client interface to the Record extension to the X protocol. The Record extension allows X clients to synthesise input events, which is useful for automated testing. - mirrors://xorg/individual/lib/libXtst-1.2.3.tar.bz2 - - libXext-devel - libXi-devel - util-macros - - x11/library/libXtst/pspec.xml + GPLv2+ + data + hardware.printer + Database of printers and printer drivers + Yazıcı sürücüleri + foomatic-db contains the knowledge database for printers which are used by foomatic-db-engine to generate PPD files. + Foomatic yazıcı veritabanı ve sürücüleri + https://www.openprinting.org/download/foomatic/foomatic-db-4.0-20220223.tar.xz + + cleanup-script + + hardware/printer/foomatic-db/pspec.xml - libXtst + foomatic-db - libXext - libX11 + pnm2ppa - /usr/lib - /usr/share/X11 - /usr/share/doc - - - - libXtst-32bit - 32-bit shared libraries for libXtst - libXtst için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXi-32bit - libX11-32bit - - - libX11-32bit - libXext-32bit - libXtst - - - /usr/lib32 - - - - libXtst-devel - Development files for libXtst - libXtst için geliştirme dosyaları - - libXi-devel - libXext-devel - libX11-devel - xorg-proto - libXtst - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - /usr/share/doc/*/*.xml - /usr/share/man + /usr/share - - 2021-09-25 - 1.2.3 - Rebuild. + + 2022-05-28 + 4.0.20220223 + Rebuild Mustafa Cinasal - muscnsl@gmail.com + muscnsl@gmail + + + 2022-03-11 + 4.0.20220223 + version bump + Mustafa Cinasal + muscnsl@gmail + + + 2021-03-14 + 4.0.20210314 + version bump + Mustafa Cinasal + muscnsl@gmail + + + 2020-03-10 + 4.0.20200310 + version bump. + Mustafa Cinasal + muscnsl@gmail - 2019-10-25 - 1.2.3 - Rebuild. + 2019-01-11 + 4.0.20190111 + version bump. Mustafa Cinasal - muscnsl@gmail.com + muscnsl@gmail - 2019-01-07 - 1.2.3 - Rebuild. + 2018-08-13 + 4.0.20180813 + version bump. Mustafa Cinasal - muscnsl@gmail.com + muscnsl@gmail - 2018-07-25 - 1.2.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org + 2018-03-10 + 4.0.20180310 + version bump. + Mustafa Cinasal + muscnsl@gmail - 2017-01-30 - 1.2.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org + 2017-12-14 + 4.0.20171214 + version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-11-02 - 1.2.3 - Release bump - PisiLinux Community - admin@pisilinux.org + 2017-02-28 + 4.0.20170228 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-04-30 - 1.2.2 - Release bump - PisiLinux Community + 2016-06-09 + 4.0.20160609 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2014-05-16 - 1.2.2 + 2016-03-26 + 4.0.20160326 First release Marcin Bojara marcin@pisilinux.org @@ -246157,906 +190936,1726 @@ Gnome session. - libxshmfence - https://www.x.org/ + foomatic-db-engine + http://www.linuxprinting.org/ PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - X.Org libxshmfence library - libxshmfence is the X Window System video extension library. - mirrors://xorg/individual/lib/libxshmfence-1.3.tar.bz2 + GPLv2 + app:console + hardware.printer + Foomatic printer database engine + Foomatic yazıcı veritabanı motoru + foomatic-db-engine is the layer that provides the database engine to Foomatic. + foomatic-db-engine, Foomatic veritabanı motorunu oluşturan katmandır. + https://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0-20210824.tar.gz - libXext-devel - util-macros + libxml2-devel + cups-devel - x11/library/libxshmfence/pspec.xml + + foomatic-db-engine-4.0.8-fix-sandbox.patch + 4.0.7-perl-module.patch + + hardware/printer/foomatic-db-engine/pspec.xml - libxshmfence + foomatic-db-engine - libXext + libxml2 + /usr/bin + /usr/sbin /usr/lib + /etc/foomatic + /usr/share/foomatic/templates + /usr/share/man /usr/share/doc - - libxshmfence-devel - Development files for libxshmfence - - libxshmfence - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libxshmfence-32bit - 32-bit shared libraries for libxshmfence - emul32 - emul32 - - libX11-32bit - libXext-32bit - - - libxshmfence - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - 2020-01-10 - 1.3 + + 2022-05-28 + 20210314 Rebuild - PisiLinux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - - 2019-10-25 - 1.3 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2018-09-16 - 1.3 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.2 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-05-05 - 1.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - mesa-glu - http://www.mesa3d.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Mesa OpenGL Utility library - Mesa implementation of the standard GLU OpenGL utility API. - ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.2.tar.gz - - libglvnd-devel - libgcc - - x11/library/mesa-glu/pspec.xml - - - mesa-glu - - libglvnd - libgcc - - - /usr/lib - - - - mesa-glu-devel - Development files for mesa-glu - mesa-glu için geliştirme dosyaları - - mesa-glu - mesa-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mesa-glu-32bit - 32-bit shared libraries for mesa-glu - mesa-glu için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libglvnd-32bit - libgcc - - - mesa-glu - libglvnd-32bit - libgcc - - - /usr/lib32 - - - - 2021-06-25 - 9.0.2 + 2022-03-11 + 20210314 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-08 - 9.0.1 + 2021-03-14 + 20210314 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 20200310 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-11 + 20190111 + version bump. + Mustafa Cinasal + muscnsl@gmail + + + 2018-08-13 + 4.0.20180813 + version bump. + Mustafa Cinasal + muscnsl@gmail + + + 2018-03-10 + 4.0.20180310 + version bump. + Mustafa Cinasal + muscnsl@gmail + + + 2017-02-28 + 4.0.12 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 4.0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-24 + 4.0.12 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + foomatic-db-nonfree + http://www.linuxprinting.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + Custom + app:console + hardware.printer + Foomatic printer database nonfree + Foomatic - database extension consisting of manufacturer-supplied PPD files released under non-free licenses. + https://www.openprinting.org/download/foomatic/foomatic-db-nonfree-20210824.tar.gz + + cups-devel + foomatic-db + + hardware/printer/foomatic-db-nonfree/pspec.xml + + + foomatic-db-nonfree + + foomatic-db + + + /usr/share/foomatic/db/ + /usr/share/doc/foomatic-db-nonfree + + + + + 2022-05-28 + 20210824 Rebuild - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-11 + 20210824 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 20210314 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 20200310 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-11 + 20190111 + version bump. + Mustafa Cinasal + muscnsl@gmail + + + 2018-08-13 + 20180813 + version bump. + Mustafa Cinasal + muscnsl@gmail + + + 2018-03-10 + 20180310 + version bump. + Mustafa Cinasal + muscnsl@gmail + + + 2017-12-14 + 20171214 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-04-09 + 20170409 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 20160609 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 20160326 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gutenprint + http://gimp-print.sourceforge.net/ + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + data + hardware.printer + High quality printer drivers + Yüksek kaliteli yazıcı sürücüleri + gutenprint contains drivers for Canon, Epson, Lexmark, Sony, Olympus, and PCL printers for use with Ghostscript, CUPS, Foomatic, and the Gimp. + Canon, Epson, Lexmark, Sony, Olympus ve PCL türü yazıcılar için Gimp, CUPS, Foomatic yazıcı sürücüleri + https://sourceforge.net/projects/gimp-print/files/gutenprint-5.3/5.3.4/gutenprint-5.3.4.tar.xz/download + + fedora/cups-genppdupdate.py.in + + + cups-devel + foomatic-db + ghostscript-devel + python-cups + atk-devel + gtk2-devel + zlib-devel + cairo-devel + glib2-devel + pango-devel + libusb-devel + + + fedora/gutenprint-build.patch + fedora/gutenprint-menu.patch + + hardware/printer/gutenprint/pspec.xml + + + gutenprint + + cups + ghostscript + gtk2 + zlib + glib2 + libusb + ncurses + freetype + fontconfig + + + /usr/lib/cups + /usr/bin + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/man/ + /usr/share/cups + /usr/share/foomatic + /usr/share/gutenprint + /usr/share/locale + /usr/include/gutenprintui2/ + /etc/cups/command.types + + + System.Package + + + fedora/gutenprint-foomaticppdupdate + + + + gutenprint-devel + Development files for gutenprint + gutenprint için geliştirme dosyaları + + gtk2-devel + gutenprint + + + /usr/include/gutenprint + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2022-05-28 + 5.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-11 + 5.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 5.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 5.3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com 2019-10-24 - 9.0.1 + 5.3.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-11-21 - 9.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2018-07-27 - 9.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2017-02-15 - 9.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2016-11-03 - 9.0.0 - Rebuild for new Mesa - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 9.0.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-01-22 - 9.0.0 - First release - Ergün Salman - Poyraz76@pisilinux.org - - - - - - luajit-lgi - https://github.com/lgi-devs/lgi - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - LuaJIT bindings for gnome/gobject using gobject-introspection library - LuaJIT bindings for gnome/gobject using gobject-introspection library - LuaJIT bindings for gnome/gobject using gobject-introspection library - LuaJIT bindings for gnome/gobject using gobject-introspection library - https://github.com/lgi-devs/lgi/archive/refs/tags/0.9.2.tar.gz - - lua-devel - glib2-devel - libffi-devel - gobject-introspection-devel - - x11/library/luajit-lgi/pspec.xml - - - luajit-lgi - - glib2 - libffi - gobject-introspection - - - /usr/lib - /usr/share - /usr/share/lua - /usr/share/doc - - - - - 2022-05-21 - 0.9.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libXmu - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xmu de X.Org - X.Org Xmu library - X.Org Xmu kitaplığı - X.Org Xmu Bibliothek - libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. - LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. - mirrors://xorg/individual/lib/libXmu-1.1.3.tar.bz2 - - util-macros - libXt-devel - libICE-devel - libSM-devel - libXext-devel - - x11/library/libXmu/pspec.xml - - - libXmu - - libXt - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXmu-devel - Development files for libXmu - libXmu için geliştirme dosyaları - - libXmu - libXt-devel - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXmu-32bit - 32-bit shared libraries for libXmu - libXmu için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXt-32bit - libXext-32bit - - - libXmu - libXt-32bit - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2020-01-17 - 1.1.3 + 2019-10-23 + 5.2.14 Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2019-10-25 - 1.1.3 + 2019-01-11 + 5.2.14 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-07-25 - 1.1.2 - Rebuild - PisiLinux Community + 2018-08-13 + 5.2.13 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 5.2.13 + Version Bump + Pisi Linux Community admin@pisilinux.org - 2017-02-02 - 1.1.2 - Rebuild - PisiLinux Community + 2017-03-02 + 5.2.12 + Version Bump + Pisi Linux Community admin@pisilinux.org - 2016-04-30 - 1.1.2 - Release bump - PisiLinux Community + 2016-06-09 + 5.2.11 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2014-05-16 - 1.1.2 + 2016-02-13 + 5.2.11 First release - Marcin Bojara - marcin@pisilinux.org + Ali Algul + alialgul@pisilinux.org - xcb-util-wm - https://xcb.freedesktop.org/ + hplip + http://hplip.sourceforge.net/ - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-wm module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 + custom + GPL2 + hardware.printer + HP Linux Imaging and Printing System + HP Linux yazıcı ve tarayıcı sistemi + HP Linux Imaging and Printing (HPLIP) System includes printer and scanner drivers and related service tools. + HP yazıcı ve tarayıcıları için sürücüler, yazılım eklentileri ve yönetim araçları + mirrors://sourceforge/hplip/hplip-3.22.4.tar.gz + + patch-ppds.sh + fedora/copy-deviceids.py + fedora/hplip-deviceIDs-ppd.patch + fedora/hplip-ppd-ImageableArea.patch + - util-macros - libxcb-devel + zlib-devel + libjpeg-turbo-devel + foomatic-db + rpcbind + net-snmp-devel + sane-backends-devel + cups-devel + python3-devel + python-devel + libusb-devel + dbus-devel + openssl-devel + desktop-file-utils + avahi-devel + python-reportlab + libxcrypt-devel + python-pillow-devel - x11/library/xcb-util-wm/pspec.xml + + fedora/hplip-avahi-parsing.patch + fedora/hplip-bad-low-ink-warning.patch + fedora/hplip-check-cups.patch + fedora/hplip-clear-old-state-reasons.patch + fedora/hplip-device-reconnected.patch + fedora/hplip-dj990c-margin.patch + fedora/hplip-3165-sourceoption.patch + fedora/hplip-hpcups-sigpipe.patch + fedora/hplip-hpijs-marker-supply.patch + fedora/hplip-log-stderr.patch + fedora/hplip-no-asm.patch + fedora/hplip-no-write-bytecode.patch + fedora/hplip-noernie.patch + fedora/hplip-pstotiff-is-rubbish.patch + fedora/hplip-retry-open.patch + fedora/hplip-scan-tmp.patch + fedora/hplip-silence-ioerror.patch + fedora/hplip-snmp-quirks.patch + fedora/hplip-strncpy.patch + fedora/hplip-typo.patch + fedora/hplip-udev-rules.patch + fedora/hplip-strstr-const.patch + fedora/hplip-ui-optional.patch + pisilinux/desktop-i18n.patch + pisilinux/desktop-i18n-1.patch + pisilinux/fix-polkit-directory.patch + pisilinux/suppress-module-warnings.patch + pisilinux/hp-systray-consume-session-param.patch + Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch + 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch + + hardware/printer/hplip/pspec.xml - xcb-util-wm + hplip + app:console + library + driver - libxcb + wget + zlib + libjpeg-turbo + net-snmp + foomatic-db + foomatic-db-engine + sane-backends + sane-frontends + cups + dbus + libgcc + libusb + openssl + avahi + avahi-libs + python-pillow + python-reportlab + /etc/sane.d/dll.d + /etc/hp/hplip.conf + /usr/bin + /usr/lib/cups/backend + /usr/lib/cups/filter /usr/lib + /var/lib/hp + /usr/share/cups + /usr/share/hplip + /usr/share/dbus-1 + /usr/share/PolicyKit + /usr/share/hplip/prnt/plugins + /var/log/hp + /lib/udev/rules.d + /etc/cron.daily/ + + + System.Package + + + fedora/hpcups-update-ppds.sh + hpaio + hplip_tr.qm + + + + hplip-gui + A set of useful utilities written in Qt for managing HP devices + Qt ile yazılmış, HP cihazları yönetmek için kullanılan bir dizi kullanışlı araç + app:gui + hplip + + hplip + python-pygobject + python-qt5 + + + /usr/bin/hp-toolbox + /usr/bin/hp-systray + /usr/bin/hp-print + /usr/share/hplip/toolbox.py + /usr/share/hplip/systray.py + /usr/share/hplip/print.py + /etc/xdg/autostart + /usr/share/applications/*.desktop + /usr/share/hplip/data/images + /usr/share/hplip/plugins + /usr/share/hplip/ui4 + /usr/share/pixmaps + + + hplip.png + + + + hplip-docs + Documentation files for HPLIP + data:doc + + hplip + + /usr/share/doc - - xcb-util-wm-devel - Development files for xcb-util-wm - xcb-util-wm için geliştirme dosyaları - - xcb-util-wm - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-wm-32bit - 32-bit shared libraries for xcb-util-wm - xcb-util-wm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - - - xcb-util-wm - libxcb-32bit - - - /usr/lib32 - - + + 2022-05-28 + 3.22.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2022-03-12 + 3.22.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-04-26 + 3.21.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-03-10 + 3.18.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-05-22 - 0.4.1 - Rebuild + 2018-09-01 + 3.18.4 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2021-03-19 - 0.4.1 - Rebuild + 2018-05-09 + 3.18.4 + Version Bump Mustafa Cinasal muscnsl@gmail.com - 2019-02-20 - 0.4.1 - Rebuild + 2018-05-09 + 3.17.11 + Version Bump Mustafa Cinasal muscnsl@gmail.com - 2018-11-05 - 0.4.1 - Rebuild + 2018-02-15 + 3.17.11 + Version Bump Mustafa Cinasal muscnsl@gmail.com - 2018-07-24 - 0.4.1 - Rebuild + 2017-04-09 + 3.16.11 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 3.16.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-09 + 3.16.5 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-05-08 + 3.15.11 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libpaper + http://packages.debian.org/unstable/source/libpaper + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + hardware.printer + Library for handling paper characteristics + Kağıt özelliklerini düzenlemek için kitaplık + Libpaper is a programming library for handling paper characteristics. + libpaper, kağıt özelliklerini düzenlemek için bir programlama kitaplığıdır. + Libpaper es una librería de programación para manejar características de papel. + http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.28.tar.gz + hardware/printer/libpaper/pspec.xml + + + libpaper + + /usr/bin + /usr/sbin + /usr/lib + /etc/ + /usr/share/man + /usr/share/doc + /usr/share/locale + + + papersize + + + + libpaper-devel + Development files for libpaper + libpaper için geliştirme dosyaları + + libpaper + + + /usr/include + /usr/share/man/man3 + + + + + 2021-07-16 + 1.1.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-07 + 1.1.24 + Rebuild New T. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 1.1.24 + Rebuild New T. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-23 + 1.1.24 + Rebuild nmu5 + Pisi Linux Community admin@pisilinux.org 2017-02-05 - 0.4.1 + 1.1.24 Rebuild - PisiLinux Community + Pisi Linux Community admin@pisilinux.org - 2016-04-30 - 0.4.1 - Release bump - PisiLinux Community + 2016-06-09 + 1.1.24 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2014-05-16 - 0.4.1 + 2016-03-23 + 1.1.24 First release - Marcin Bojara - marcin@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - libtxc-dxtn - http://dri.freedesktop.org/wiki/S3TC + paper + https://github.com/rrthomas/paper - Marcin Bojara - marcin@pisilinux.org + Blue Devil + bluedevil@sctzine.com - custom - BSD - x11.library - Texture compression library for Mesa - S2TC is a patent-free S3TC compatible implementation and provides texture compression to Mesa. - http://people.freedesktop.org/~cbrill/libtxc_dxtn/libtxc_dxtn-1.0.1.tar.bz2 + GPLv3 + app:console + hardware.printer + Replacement for Debian's libpaper + Debian'ın libpaper kitaplığı yerine bir kitaplık + The paper package enables users to indicate their preferred paper size, provides the paper(1) utility to find the user's preferred default paper size and give information about known sizes, and specifies system-wide and per-user paper size catalogues, which can be can also be used directly. + paper, Debian'ın libpaper kitaplığı yerine bir kitaplık sunar. + https://github.com/rrthomas/paper/archive/v2.2.tar.gz + + gnulib-d279bc6.tar.gz + - mesa-devel + help2man - x11/library/libtxc-dxtn/pspec.xml + hardware/printer/paper/pspec.xml - libtxc-dxtn + paper + Replacement for Debian's libpaper - /usr/lib + /etc + /usr/lib/ /usr/share/doc - - - - libtxc-dxtn-devel - - libtxc-dxtn - - - /usr/include - - - - libtxc-dxtn-32bit - emul32 - - /usr/lib32 + /usr/share/man + /usr/bin - - 2020-01-26 - 1.0.1 - Rebuild for toolchain - Kamil Atlı - suvari@pisilinux.org - - - 2019-10-25 - 1.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-07 - 1.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 1.0.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - 2016-06-20 - 1.0.1 - First release. - Marcin Bojara - marcin@pisilinux.org + 2020-06-03 + 2.2 + First Pisi Release + Blue Devil + bluedevil@sctzine.com - libXvMC - https://www.x.org/ + pnm2ppa + http://pnm2ppa.sourceforge.net PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - Librairie XvMC de X.Org - X.Org XvMC library - X.Org XvMC kitaplığı - X.Org XvMC Bibliothek - LibXvMC is the X-Video Motion Compensation Library. - mirrors://xorg/individual/lib/libXvMC-1.0.12.tar.bz2 - - libX11-devel - libXext-devel - libXv-devel - xorg-proto - util-macros - - x11/library/libXvMC/pspec.xml + GPLv2 + app:console + hardware.printer + Driver addons for some Hp Deskjet printers + Bazı Hp Deskjet yazıcılar için sürücü eklentileri + Tool to convert pnm data to ppa data for Hp Deskjet 710, 712, 720, 722, 820, 1000 series printer drivers. + Hp Deskjet 710, 712, 720, 722, 820, 1000 serisi yazıcı sürücüleri için pnm verisini ppa verisine dönüştüren araçlar + mirrors://sourceforge/pnm2ppa/pnm2ppa-1.13.tar.gz + + pnm2ppa-default_config.patch + + hardware/printer/pnm2ppa/pspec.xml - libXvMC + pnm2ppa - libXext - libX11 + enscript - /usr/lib + /etc + /etc/pdq + /usr/bin /usr/share/doc + /usr/share/man + /usr/share/pnm2ppa - - libXvMC-devel - Development files for libXvMC - libXvMC için geliştirme dosyaları - - libXv-devel - libX11-devel - xorg-proto - libXext-devel - libXvMC - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/doc/libXvMC/XvMC_API.txt - - - - libXvMC-32bit - 32-bit shared libraries for libXvMC - libXvMC için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 + + + 2020-03-10 + 1.13 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 1.13 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 1.13 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 1.13 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + psutils + https://github.com/rrthomas/psutils + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + app:console + hardware.printer + PostScript Utilities + PostScript yardımcı araçları + psutils contains tools to convert to/from postscript files. + psutils PostScript dosyaları arasında dönüşüm yapmak için gerekli araçları içerir. + https://github.com/rrthomas/psutils/archive/refs/tags/v2.09.tar.gz + + gnulib-d279bc6.tar.gz + - libXv-32bit - libX11-32bit - libXext-32bit + paper + help2man + ghostscript-devel + hardware/printer/psutils/pspec.xml + + + psutils + Utilities for manipulating PostScript documents - libX11-32bit - libXext-32bit - libXvMC + paper + ghostscript + perl-IPC-Run3 - /usr/lib32 + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/psutils/PSUtils.pm + + + + + 2022-05-28 + 2.09 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-06-03 + 2.03 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + splix + http://splix.sf.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + app:console + hardware.printer + A set of CUPS printer drivers for SPL (Samsung Printer Language) printers + SPL (Samsung Yazıcı Dili) için CUPS sürücüleri + The Splix drivers are usable by all printer devices which understand the SPL II language. It covers several Samsung, Xerox, Dell and Ricoh printers. + splix, SPL II dilini anlayabilen tüm yazıcılar tarafından kullanılabilen sürücüleri içerir. Bu sürücü bazı Samsung, Xerox, Dell ve Ricoh yazıcıları desteklemektedir. + https://sourceforge.net/projects/pisilinux/files/source/splix-2.0.1.tar.gz + http://splix.ap2c.org/samsung_cms.tar.bz2 + + cups-devel + jbigkit-devel + + + splix-1.1.0-fix-makefile.patch + install-english-only.patch + splix-deviceID.patch + splix-ldflags.patch + + hardware/printer/splix/pspec.xml + + + splix + + cups + libgcc + jbigkit + + + /usr/lib/cups + /usr/share/cups + /usr/share/doc - 2020-01-10 - 1.0.12 + 2022-05-28 + 2.0.1 Rebuild Mustafa Cinasal muscnsl@gmail.com - 2019-10-20 - 1.0.12 + 2022-03-12 + 2.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 2.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 2.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-09 + 2.0.1 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 2.0.0_20110720 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-10 + 2.0.0_20110720 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + system-config-printer + https://github.com/OpenPrinting/system-config-printer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + hardware.printer + A printer administration tool + Yazıcı yapılandırma altyapısı + system-config-printer is a graphical user interface that allows the user to configure a CUPS print server. + system-config-printer, Python ile yazılmış ve otomatik yazıcı tanıma sürecinde kullanılan altyapıyı oluşturan bir kütüphanedir. + https://github.com/OpenPrinting/system-config-printer/releases/download/v1.5.16/system-config-printer-1.5.16.tar.xz + + tr.po + + + xmlto + gtk3-devel + util-linux + cups-devel + eudev-devel + glib2-devel + libusb-devel + gettext-devel + python3-devel + libxslt-devel + libsecret-devel + dbus-glib-devel + autoconf-archive + desktop-file-utils + + + autoconf-2-70.diff + fix-icon.patch + + hardware/printer/system-config-printer/pspec.xml + + + system-config-printer + + eudev + glib2 + libusb + libsecret + python3-cups + dbus-python3 + python3-pysmbc + python3-requests + libgnome-keyring + python3-pygobject3 + cups + + + /usr/lib + /etc/dbus-1 + /etc/cupshelpers + /usr/share/doc + /lib/udev/rules.d + /usr/share/dbus-1 + /usr/share/system-config-printer/debug.py + /usr/share/appdata/system-config-printer.appdata.xml + /usr/share/system-config-printer/smburi.py + /usr/share/system-config-printer/config.py + /usr/share/system-config-printer/ppdippstr.py + /lib/systemd/system/configure-printer@.service + /run/udev-configure-printer + /lib/udev + /usr/libexec + /usr/lib/tmpfiles.d/system-config-printer.conf + /usr/share/metainfo/system-config-printer.appdata.xml + /usr/bin/scp-dbus-service + /usr/share/system-config-printer/xml + /usr/share/system-config-printer/*.py + /usr/share/system-config-printer/troubleshoot + + + tmpfiles.conf + + + + system-config-printer-gtk + GTK+ frontend of system-config-printer + system-config-printer için GTK+ önyüzü + + python-gtk + notify-python + python3-pygobject3 + system-config-printer + + + /usr/share/man + /usr/share/system-config-printer + /etc/xdg/autostart + /usr/share/applications + /usr/bin + /usr/share/locale + + + + + 2022-05-28 + 1.5.16 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-28 + 1.5.16 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.5.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-16 + 1.5.15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-08 + 1.5.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.5.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-15 + 1.5.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-11 + 1.5.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 1.5.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-22 + 1.5.11 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-01-07 - 1.0.10 - Rebuild. + 2018-03-03 + 1.5.9 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-12-15 + 1.5.9 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-01 + 1.5.7 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.5.7 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-08 + 1.5.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sane-backends + http://www.sane-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + hardware.scanner + Scanner access software + SANE (Scanner Access Now Easy) döküman ve resim tarayıcı sistemi araçları + Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware. + SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar. + sane + https://gitlab.com/sane-project/backends/-/archive/1.0.32/backends-1.0.32.tar.gz + + curl-devel + libxml2-devel + gettext-devel + libieee1284-devel + libusb-compat-devel + libusb-devel + libpng-devel + libnl-devel + openssl-devel + cups-devel + libgphoto2-devel + libv4l-devel + avahi-devel + libjpeg-turbo-devel + tiff-devel + net-snmp-devel + autoconf-archive + + + sane-backends-1.0.25-udev.patch + sane-backends-1.0.23-sane-config-multilib.patch + sane-epson2-disable-focus.patch + + hardware/scannner/sane-backends/pspec.xml + + + sane-backends + + curl + libxml2 + libnl + openssl + libusb + libpng + libusb-compat + libieee1284 + avahi-libs + libgphoto2 + libv4l + tiff + libjpeg-turbo + net-snmp + cups + libexif + + + /etc/sane.d/dll.d + /etc/env.d + /etc/sane.d + /usr/bin + /usr/share/locale + /usr/sbin + /usr/libexec + /usr/lib + /usr/share/doc/sane-backends/README + /usr/share/doc/sane-backends/COPYING + /usr/share/man + /usr/share/pixmaps + /lib/udev/rules.d + /usr/share/sane + + + sane.png + 30sane + + + + sane-backends-devel + Development files for sane-backends + sane-backends için geliştirme dosyaları + + sane-backends + + + /usr/include + /usr/lib/pkgconfig + + + + sane-backends-docs + Documentation for SANE backends + sane-backends için belgelendirme dosyaları + + /usr/share/doc + + + + + 2021-04-01 + 1.0.32 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-23 + 1.0.29 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 1.0.27 + Rebuild + Mustafa Cinasal + admin@pisilinux.org + + + 2018-02-14 + 1.0.27 + Release Bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-04-10 + 1.0.25 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 1.0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 1.0.25 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + sane-frontends + http://www.sane-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + hardware.scanner + Graphical frontend to SANE + SANE için grafiksel arayüz paketi + sane-frontends includes the scanadf and xcam programs. + sane-frontends, scanadf ve xcam grafiksel araçlarını içerir. + ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/sane-frontends-1.0.14.tar.gz + + sane-backends-devel + gimp-devel + gtk2-devel + + + sane-frontends-1.0.14-array-out-of-bounds.patch + sane-frontends-1.0.14-sane-backends-1.0.20.patch + + hardware/scannner/sane-frontends/pspec.xml + + + sane-frontends + + sane-backends + gtk2 + glib2 + + + /usr/bin + /usr/share/doc/sane-frontends + /usr/share/man + + + + + 2020-03-10 + 1.0.14 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2018-07-25 - 1.0.10 - Rebuild - PisiLinux Community - admin@pisilinux.org + 2018-09-01 + 1.0.14 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2017-02-02 - 1.0.10 + 2018-02-14 + 1.0.14 Rebuild - Alihan Öztürk - alihan@pisilinux.org + Mustafa Cinasal + muscnsl@gamil.com - 2016-11-03 - 1.0.10 + 2017-04-09 + 1.0.14 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 1.0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-10 + 1.0.14 + First release + Varol Maksutoğlu + waroi@pisilinux.org + + + + + + skanlite + http://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:gui + hardware.scanner + Lite scanning tool for KDE + KDE için hafif bir tarayıcı aracı + Skanlite, provides to use scanner device plugged in your system with Sane backend. + Skanlite, sisteminize takılı tarayıcı aygıtlarını Sane uygulaması ile birlikte kullanmanıza olanak sağlar. + http://download.kde.org/stable/skanlite/2.2/skanlite-2.2.0.tar.xz + + extra-cmake-modules + qt5-base-devel + zlib-devel + libpng-devel + kcoreaddons-devel + ki18n-devel + kxmlgui-devel + kio-devel + kdoctools-devel + ktextwidgets-devel + libksane-devel + + hardware/scannner/skanlite/pspec.xml + + + skanlite + + kio + ki18n + libgcc + libpng + kconfig + kxmlgui + libksane + qt5-base + kcoreaddons + kjobwidgets + kconfigwidgets + kwidgetsaddons + sane-backends + + + /usr/bin + /usr/share/doc + /usr/share + + + + + 2020-07-13 + 2.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 2.1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-14 + 2.1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-14 + 2.1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-16 + 2.1.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gamil.com + + + 2018-04-02 + 2.1.0.1 + Version Bump + Mustafa Cinasal + muscnsl@gamil.com + + + 2018-03-23 + 2.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gamil.com + + + 2018-02-14 + 2.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gamil.com + + + 2017-01-12 + 2.0.1 Version Bump Stefan Gronewold groni@pisilinux.org - 2016-04-27 - 1.0.9 - First release + 2016-05-23 + 2.0 + Release bump Alihan Öztürk alihan@pisilinux.org - 2014-05-16 - 1.0.8 + 2016-02-02 + 2.0 First release - Marcin Bojara - marcin@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - libXp - http://x.org/ + ccid + https://ccid.apdu.fr PisiLinux Community admins@pisilinux.org - MIT + LGPLv2.1 + app:console library - x11.library - Librairie Xp de X.Org. - X.Org Xp library - X.Org Xp kitaplığı. - X.Org Xp Bibliothek - X.Org X11 libXp runtime library - mirrors://xorg/individual/lib/libXp-1.0.3.tar.bz2 + hardware.smartcard + Generic USB CCID(Chip/Smart Card Interface Devices) device drivers + USB CCID kart okuyucu sürücüleri + ccid provides the source code for a generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD (Integrated Circuit(s) Card Devices). + ccid USB CCID protokolünü destekleyen akıllı kart okuyucular için açık kaynaklı aygıt sürücülerini içerir. + https://ccid.apdu.fr/files/ccid-1.4.31.tar.bz2 - libXext-devel - xorg-proto - libXau-devel - libX11-devel - util-macros + pcsc-lite-devel + libusb-devel - x11/library/libXp/pspec.xml + hardware/smartcard/ccid/pspec.xml - libXp + ccid - libXext - libXau - libX11 + libusb + pcsc-lite - /usr/lib + /etc/ + /usr/lib/ /usr/share/doc - /usr/share/man - - - - libXp-devel - Development files for libXp - libXp için geliştirme dosyaları - - libXp - libXext-devel - - - /usr/include/X11 - /usr/lib/libdeprecatedXp.so - /usr/lib32/libdeprecatedXp.so - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXp-32bit - 32-bit shared libraries for libXp - libXp için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXp - libXext-32bit - libXau-32bit - libX11-32bit - - - /usr/lib32 - - 2020-01-10 - 1.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.0.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.0.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - 2016-04-30 - 1.0.3 - Release bump - PisiLinux Community - admin@pisilinux.org + 2020-03-10 + 1.4.31 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2015-11-13 - 1.0.3 + 2019-05-19 + 1.4.29 First release - Stefan Gronewold (groni) - groni@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - libevdev - http://www.freedesktop.org/wiki/Software/libevdev/ + pcsc-lite + https://pcsclite.apdu.fr - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPLv1 - library - x11.library - Wrapper library for evdev devices - Wrapper library for evdev devices - Wrapper library for evdev devices - Wrapper library for evdev devices - https://www.freedesktop.org/software/libevdev/libevdev-1.12.0.tar.xz + as-is + app:console + hardware.smartcard + PC/SC drivers for smart card readers + Akıllı kart okuyucuları için PC/SC sürücüleri + pcsc-lite is middleware to access a smart card using SCard API (PC/SC). + https://pcsclite.apdu.fr/files/pcsc-lite-1.9.0.tar.bz2 - doxygen - valgrind - check-devel - python3-devel + eudev-devel - x11/library/libevdev/pspec.xml + hardware/smartcard/pcsc-lite/pspec.xml - libevdev + pcsc-lite + + eudev + + /etc/reader.conf.d + /usr/sbin /usr/bin /usr/lib - /usr/share /usr/share/doc + /usr/share/man + /usr/lib/pcsc/drivers + + System.Service + - libevdev-devel - Development files for libevdev + pcsc-lite-devel + Development files for pcsc-lite + pcsc-lite için geliştirme dosyaları - libevdev + pcsc-lite + eudev-devel /usr/include @@ -247064,65 +192663,186 @@ Gnome session. + + 2020-09-24 + 1.9.0 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-03-10 + 1.8.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.8.25 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-05-26 + 1.8.25 + V.bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-05-19 + 1.8.24 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + alsa-lib + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + hardware.sound + The Advanced Linux Sound Architecture (ALSA) library + Gelişmiş Linux Ses Mimarisi kütüphanesi + alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. + alsa-lib, ses aygıtlarına erişim sağlayarak kolayca uygulama yazılmasını sağlayan bir kütüphanedir. + ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.2.7.tar.bz2 + + doxygen + python-devel + + hardware/sound/alsa-lib/pspec.xml + + + alsa-lib + + python + + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/alsa + + + + alsa-lib-devel + Development files for alsa-lib + alsa-lib için geliştirme dosyaları + + alsa-lib + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include/sys + /usr/include/alsa + /usr/include/asoundlib.h + /usr/share/aclocal + /usr/share/man/man3 + + + + alsa-lib-32bit + 32-bit shared libraries for alsa-lib + alsa-lib için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + /usr/lib32 + + + + + 2022-06-03 + 1.2.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-10 + 1.2.6.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-21 + 1.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-11-09 - 1.12.0 + 2021-01-18 + 1.2.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-10 - 1.8.0 + 2020-04-10 + 1.2.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-10-24 - 1.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-11 + 1.2.1.2 + Version bump + Kamil Atlı + suvari@pisilinux.org - 2019-02-06 - 1.6.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2018-09-16 + 1.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2018-07-24 - 1.5.9 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2018-01-07 + 1.1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2017-09-20 - 1.5.6 - Version bump - Alihan Öztürkçe - alihan@pisilinux.org + 2017-02-06 + 1.1.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-11-02 - 1.5.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2016-06-09 + 1.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2016-05-02 - 1.4.6 - First release + 2016-05-03 + 1.1.1 + Version bump. Alihan Öztürk alihan@pisilinux.org - 2015-01-25 - 1.3.2 + 2015-03-04 + 1.0.29 First release Hakan Yıldız hknyldz93@gmail.com @@ -247131,2215 +192851,466 @@ Gnome session. - eglexternalplatform - https://github.com/NVIDIA/eglexternalplatform - - Pisi Linux Admins - admin@pisilinux.org - - MIT - library - x11.library - EGL External Platform interface - EGL External Platform interface - EGL Harici Platform arayüzü - EGL Harici Platform arayüzü - https://github.com/NVIDIA/eglexternalplatform/archive/refs/tags/1.1.tar.gz - x11/library/eglexternalplatform/pspec.xml - - - eglexternalplatform - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc - - - - - 2021-06-03 - 1.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - xcb-util-cursor - https://xcb.freedesktop.org/ + alsa-plugins + http://www.alsa-project.org/ PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - XCB cursor library - The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - https://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2 - - util-macros - libxcb-devel - xcb-util-devel - xcb-util-image-devel - xcb-util-renderutil-devel - - x11/library/xcb-util-cursor/pspec.xml - - - xcb-util-cursor - - libxcb - xcb-util-image - xcb-util-renderutil - - - /usr/lib - /usr/share/doc - - - - xcb-util-cursor-devel - Development files for xcb-util - - xcb-util-cursor - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-cursor-32bit - 32-bit shared libraries for xcb-util - emul32 - emul32 - - libxcb-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - libxcb-32bit - xcb-util-image-32bit - xcb-util-renderutil-32bit - - - /usr/lib32 - - - - - 2021-05-22 - 0.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-19 - 0.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-20 - 0.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-05 - 0.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 0.1.3 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2017-02-05 - 0.1.3 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.1.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-26 - 0.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libXaw - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X Athena Widgets Library - X Athena Parçacıkları kitaplığı - Xaw is a widget set based on the X Toolkit Intrinsics (Xt) Library. - mirrors://xorg/individual/lib/libXaw-1.0.13.tar.bz2 - - libXext-devel - libXmu-devel - libXpm-devel - libXt-devel - util-macros - libICE-devel - libSM-devel - libX11-devel - - x11/library/libXaw/pspec.xml - - - libXaw - - libX11 - libXext - libXmu - libXpm - libXt - - - /usr/lib - /usr/share/doc - - - - libXaw-devel - Development files for libXaw - libXaw için geliştirme dosyaları - - libXaw - libXext-devel - libXmu-devel - libXpm-devel - libXt-devel - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXaw-32bit - 32-bit shared libraries for libSM - libXaw için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - - - libXaw - libXext-32bit - libXmu-32bit - libXpm-32bit - libXt-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2020-01-07 - 1.0.13 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2019-10-23 - 1.0.13 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 1.0.13 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-03-02 - 1.0.13 - Release bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-30 - 1.0.13 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.0.13 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - mesa - http://www.mesa3d.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library + GPLv2 app:console - x11.library - Mesa graphics libraries and utilities - Mesa grafik kitaplıkları ve yardımcı uygulamalar - Mesa biblioteki graficzne i narzędzia - Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. - Mesa, OpenGL belirtiminin (etkileşimli 3B grafiklerin gerçeklenmesi için bir sistem) açık kaynaklı bir uyarlamasıdır. - Mesa jest open-source'ową implementacją specyfikacji OpenGL do renderowania trójwymiarowej grafiki. - https://archive.mesa3d.org/mesa-22.0.5.tar.xz - - crossfile.ini - + hardware.sound + Additional library plugins Eg.jack, pulse, maemo ... + Additional library plugins Eg.jack, pulse, maemo ... + alsa-plugins contains ALSA (Advanced Linux Sound Architecture) + https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2 - meson - valgrind-devel - libva-devel - zstd-devel - zlib-devel - xorg-proto - openssl-devel - expat-devel - libXt-devel - libcap-devel - libdrm-devel - libXext-devel - elfutils-devel - wayland-devel - wayland-server - wayland-client - libvdpau-devel - libXfixes-devel - libtalloc-devel - libXdamage-devel - libomxil-bellagio-devel - libXxf86vm-devel - libXvMC-devel - libXv-devel - eudev-devel - nettle-devel - python3-mako - llvm - compiler-rt - llvm-polly - llvm-clang-devel - libxshmfence-devel - automake - libX11-devel - libdrm-intel - libdrm-radeon - libdrm-amd - libdrm-nouveau - libunwind-devel - wayland-protocols-devel - libXrandr-devel - libglvnd-devel - libclc-devel - vulkan-devel - glslang-devel - lm_sensors-devel + dbus-devel + libavtp-devel + pulseaudio-libs-devel + libsamplerate-devel + speexdsp-devel + ffmpeg-devel + jack-audio-connection-kit-devel + alsa-lib-devel - x11/library/mesa/pspec.xml + hardware/sound/alsa-plugins/pspec.xml - mesa + alsa-plugins + ALSA console plugins + alsa-plugins contains ALSA (Advanced Linux Sound Architecture) - zstd - zlib - expat - eudev - libXv - libX11 - libdrm - libgcc - libxcb - libXext - libXvMC - elfutils - libXfixes - libunwind - libXdamage - libXxf86vm - libdrm-amd - lm_sensors - libdrm-intel - libxshmfence - libdrm-radeon - libdrm-nouveau - wayland-client - wayland-server - libomxil-bellagio - lm_sensors - vulkan - llvm-libs + dbus + libavtp + pulseaudio-libs + libsamplerate + speexdsp + ffmpeg + jack-audio-connection-kit + alsa-lib - /etc - /usr/share/drirc.d/00-radv-defaults.conf - /usr/bin - /usr/lib - /usr/lib/libGL.so.1.2 - /usr/share/vulkan/icd.d - /usr/share/drirc.d/00-mesa-defaults.conf - /usr/share/glvnd/egl_vendor.d/50_mesa.json - /usr/share/vulkan/implicit_layer.d/VkLayer_MESA_device_select.json - /usr/share/doc - /usr/share/vulkan/explicit_layer.d - - - drirc - - - - mesa-opencl - OpenCL support for AMD/ATI Radeon mesa drivers - - zstd - zlib - expat - libdrm - libgcc - elfutils - llvm-libs - libdrm-amd - llvm-clang - libdrm-radeon - libdrm-nouveau - - - /etc/OpenCL/vendors/mesa.icd - /usr/lib/libMesaOpenCL.so* - /usr/lib/gallium-pipe/pipe*.so - - - - mesa-devel - Development files for mesa - mesa için geliştirme dosyaları - - eudev-devel - libX11-devel - libxcb-devel - libdrm-devel - libXext-devel - wayland-devel - libglvnd-devel - libXfixes-devel - libXdamage-devel - libXxf86vm-devel - libxshmfence-devel - mesa - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mesa-32bit - 32-bit shared libraries for mesa - mesa için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - zlib-32bit - libva-32bit - elfutils-32bit - expat-32bit - libXt-32bit - libXv-32bit - libX11-32bit - libcap-32bit - libdrm-32bit - libXext-32bit - libXvMC-32bit - eudev-32bit - openssl-32bit - wayland-32bit - libvdpau-32bit - libXfixes-32bit - libXdamage-32bit - libXxf86vm-32bit - libdrm-intel-32bit - libdrm-radeon-32bit - libdrm-amd-32bit - libdrm-nouveau-32bit - libxshmfence-32bit - nettle-32bit - libunwind-32bit - llvm-32bit - libXrandr-32bit - libglvnd-32bit - vulkan-32bit - libclc-32bit - - - zlib-32bit - elfutils-32bit - openssl-32bit - libgcc - eudev-32bit - libxcb-32bit - expat-32bit - libX11-32bit - libdrm-32bit - libxcb-32bit - libXext-32bit - libXfixes-32bit - libXdamage-32bit - libXxf86vm-32bit - libXv-32bit - libXvMC-32bit - libdrm-intel-32bit - libxshmfence-32bit - libdrm-radeon-32bit - libdrm-amd-32bit - libdrm-nouveau-32bit - wayland-32bit - vulkan-32bit - opencl-icd-32bit - libglvnd-32bit - libclc-32bit - libunwind-32bit - llvm-clang-32bit - mesa - llvm-32bit - - - /usr/lib32 - /usr/share/vulkan/icd.d/*.i686.json + /etc/alsa/conf.d + /usr/lib/alsa-lib + /usr/share/alsa - + 2022-06-03 - 22.0.5 - Version bump + 1.2.5 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2022-05-20 - 22.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-07 - 22.0.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-25 - 22.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 22.0.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-19 - 21.3.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-19 - 21.3.7 - Rebuild for libglvnd - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-24 - 21.3.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-11 - 21.3.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-27 - 21.3.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-13 - 21.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-30 - 21.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-18 - 21.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-02 - 21.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-18 - 21.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-28 - 21.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 21.2.4 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-16 - 21.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-30 - 21.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-12 - 21.1.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 21.1.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-29 - 21.1.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-15 - 21.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-01 - 21.1.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-20 - 21.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-05 - 21.1.2 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2021-03-25 - 20.3.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-21 - 20.3.4 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 20.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-17 - 20.2.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-10 - 20.2.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-24 - 20.2.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-12 - 20.2.2 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-10-17 - 20.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-09 - 20.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-24 - 20.1.8 - Rebuild llvm-10.0.1. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-17 - 20.1.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-03 - 20.1.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-06 - 20.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-10 - 20.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-25 - 20.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-12 - 20.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 20.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 20.0.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-09 - 20.0.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-23 - 20.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-09 - 20.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-27 - 20.0.2 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-03 - 19.3.1 - Version bump. - Marcin Bojara - marcin.bojara|@gmail.com - - - 2019-11-15 - 19.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-07 - 19.2.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-24 - 19.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-29 - 18.2.8 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-22 - 18.2.8 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-18 - 18.2.5 - Rebuild llvm. - Mustafa Cinasal - muscnsl@gmail.com + + 2022-01-25 + 1.2.6 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + alsa-tools + http://www.alsa-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + app:gui + hardware.sound + ALSA configuration tools + Gelişmiş Linux Ses Mimarisi araçları + alsa-tools contains ALSA (Advanced Linux Sound Architecture) tools like firmware loaders and sound card control utilities for specific sound cards. + ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.2.5.tar.bz2 + + gtk2-devel + fltk-devel + alsa-lib-devel + + + usx2yloader_udev.patch + firmware_locations.patch + alsa-tools-1.0.17rc1-fix-link.patch + + hardware/sound/alsa-tools/pspec.xml + + + alsa-tools + ALSA console tools + alsa-tools is a collection of console applications for controlling sound cards like EchoAudio, Envy24, etc. + + libgcc + alsa-lib + + + /usr/bin + /usr/sbin + /lib/udev + /usr/lib + /usr/share/icons + /lib/udev/rules.d + /usr/share/ld10k1 + /usr/share/sounds + /usr/share/man + /usr/share/doc/alsa-tools + + + 90-alsa-tools-firmware.rules + + + + alsa-tools-gui + Graphical frontends for some ALSA tools + alsa-tools-gui is a collection of GUI based ALSA tools for controlling sound cards like EchoAudio, Envy24, Hammerfall HDSP, RMedigicontrol. + + fltk + gtk2 + glib2 + alsa-lib + + + /usr/share/man/man1/envy24control.1 + /usr/share/doc/alsa-tools-gui + /usr/share/applications + /usr/share/pixmaps + /usr/bin/echomixer + /usr/bin/envy24control + /usr/bin/hwmixvolume + /usr/bin/hdspconf + /usr/bin/hdspmixer + /usr/bin/rmedigicontrol + /usr/bin/qlo10k1 + + + alsa-tools.xpm + hwmixvolume.png + echomixer.desktop + envy24control.desktop + hdspmixer.desktop + hdspconf.desktop + hwmixvolume.desktop + rmedigicontrol.desktop + + + + alsa-tools-devel + Development files for alsa-tools + alsa-tools için geliştirme dosyaları + + alsa-tools + + + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + + + - 2018-11-17 - 18.2.5 - Version bump. + 2022-06-03 + 1.2.5 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2018-11-05 - 18.1.6 + 2021-09-21 + 1.2.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-10-29 - 17.3.4 + 2021-01-18 + 1.2.2 Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2018-09-16 - 17.3.4 - Rebuild + 2020-04-10 + 1.2.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-04-10 - 13.0.4 - Rebuild + 2020-02-01 + 1.1.7 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-02-06 - 13.0.4 - Rebuild. - Kamil Atlı - suvari@pisilinux.org + 2018-08-03 + 1.1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2017-03-23 - 13.0.4 - llvm rebuild - Alihan Öztürk - alihan@pisilinux.org + 2018-01-07 + 1.1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2017-02-02 - 13.0.4 + 2017-02-12 + 1.1.3 Version Bump - Alihan Öztürk - alihan@pisilinux.org + Pisi Linux Community + admin@pisilinux.org - 2016-11-02 - 13.0.0 + 2016-06-09 + 1.1.0 Release Bump - Stefan Gronewold - groni@pisilinux.org + Pisi Linux Community + admin@pisilinux.org - 2016-04-27 - 11.2.1 - Version Bump + 2016-05-03 + 1.1.0 + Version bump. Alihan Öztürk alihan@pisilinux.org - 2016-03-28 - 11.2.0 + 2015-03-04 + 1.0.29 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Hakan Yıldız + hknyldz93@gmail.com - libXfont2 - https://www.x.org/ + alsa-utils + http://www.alsa-project.org/ PisiLinux Community admins@pisilinux.org - MIT - library - x11.library - X.Org Xfont library - libXfont is the Xorg library that allows using various types of fonts. - http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.5.tar.bz2 + GPLv2 + app:console + hardware.sound + Advanced Linux Sound Architecture (ALSA) utilities + ALSA araçları + alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA). + Alsa-utils Linux işletim sistemlerinde ses ve MIDI fonksiyonlarının gerçekleştirilmesini sağlayan gelişmiş Linux ses mimarisidir + ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.2.7.tar.bz2 - libfontenc-devel - util-macros - freetype-devel - xorg-proto - xtrans xmlto - zlib-devel - libbsd-devel + util-linux + eudev-devel + fftw3-devel + libxslt-devel + ncurses-devel + libsamplerate-devel + alsa-lib-devel - x11/library/libXfont2/pspec.xml + hardware/sound/alsa-utils/pspec.xml - libXfont2 + alsa-utils - libfontenc - zlib - libbsd - freetype - - - /usr/lib - /usr/share/doc - - - - libXfont2-devel - Development files for libXfont - - libXfont2 - xorg-proto - libfontenc-devel - freetype-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2021-10-19 - 2.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 2.0.4 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-10-20 - 2.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 2.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 2.0.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2018-02-22 - 2.0.3 - Version bump. - PisiLinux Community - admin@pisilinux.org - - - 2017-03-02 - 2.0.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libXScrnSaver - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie XScrnSaver de X.Org - X.Org XScrnSaver library - X.Org XScrnSaver kitaplığı - X.Org XScrnSaver Bibliothek - LibXScrnSaver allows using screensavers in X clients. - mirrors://xorg/individual/lib/libXScrnSaver-1.2.3.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXScrnSaver/pspec.xml - - - libXScrnSaver - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXScrnSaver-devel - Development files for libXScrnSaver - libXScrnSaver için geliştirme dosyaları - - libXScrnSaver - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXScrnSaver-32bit - 32-bit shared libraries for libXScrnSaver - libXScrnSaver için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libXext-32bit - - - libXScrnSaver - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2020-01-07 - 1.2.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2019-10-23 - 1.2.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 1.2.3 - Version Bump. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.2.2 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.2.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.2.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - ftgl - http://ftgl.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Font rendering library for OpenGL - OpenGL için yazı tipi hazırlama kitaplığı - FTGL is a free, open source library to enable developers to use arbitrary fonts in their OpenGL (www.opengl.org) applications. FTGL uses the Freetype (www.freetype.org) font library to open and 'decode' the fonts. - FTGL özgür, açık kaynak kodlu, OpenGL kullanan uygulamalarda çeşitli yazıtiplerini kullanmaya olanak tanıyan bir kitaplıktır. - https://github.com/frankheckenbach/ftgl/archive/v2.4.0.tar.gz - - freeglut-devel - mesa-devel - mesa-glu-devel - freetype-devel - - x11/library/ftgl/pspec.xml - - - ftgl - - mesa - mesa-glu - libgcc - freetype - - - /usr/lib - /usr/share/doc - - - - ftgl-devel - Development files for ftgl - ftgl için geliştirme dosyaları - - ftgl - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-03-19 - 2.4.0 - Version bump - fury - wascheme@tuta.ii - - - 2020-06-29 - 2.1.3_rc5 - First release - Ali Algul(gulle) - aligulle3801@gmail.com - - - - - - libXi - https://www.x.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xi de X.Org - X.Org Xi library - X.Org Xi kitaplığı - X.Org Xi Bibliothek - LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. - mirrors://xorg/individual/lib/libXi-1.8.tar.bz2 - - libXext-devel - libXfixes-devel - util-macros - - x11/library/libXi/pspec.xml - - - libXi - - libXext - libX11 - - - /usr/lib - /usr/share/doc - - - - libXi-devel - Development files for libXi - libXi için geliştirme dosyaları - - libXi - libXext-devel - libX11-devel - libXfixes-devel - xorg-proto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXi-32bit - 32-bit shared libraries for libXi - libXi için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libX11-32bit - - - libXi - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2021-10-19 - 1.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 1.7.10 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-10-20 - 1.7.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.7.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.7.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 1.7.9 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-11-02 - 1.7.8 - Version Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-04-27 - 1.7.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-08-31 - 1.7.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libvdpau - http://freedesktop.org/wiki/Software/VDPAU - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Wrapper library for the Video Decode and Presentation API - Video kodu çözme ve sunma API'si için ara kitaplık - VDPAU is the Video Decode and Presentation API for UNIX. It provides an interface to video decode acceleration and presentation hardware present in modern GPUs. - VDPAU (Video Decode and Presentation API for UNIX), modern grafik işlemcilerde yer alan video kod çözümü hızlandırma ve sunma donanımına bir arayüz sağlar. - https://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.2.tar.bz2 - - libXext-devel - - x11/library/libvdpau/pspec.xml - - - libvdpau - - libXext + fftw3 + ncurses + alsa-lib + libsamplerate /etc - /usr/lib + /sbin /usr/share/doc + /usr/share/man + /var/lib/alsa + /usr/bin + /usr/lib + /usr/share/alsa + /lib/udev/rules.d + /usr/share/sounds + /lib/systemd/system + /usr/share/locale - - - libvdpau-devel - Development files for libvdpau - libvdpau için geliştirme dosyaları - - libvdpau - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libvdpau-32bit - 32-bit shared libraries for libvdpau - libvdpau için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libvdpau - libXext-32bit - - - /usr/lib32 - + + System.Service + + + alsaunmute + 01beep.conf + alsactl.conf + alsaunmute.1 + - - 2020-01-10 - 1.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 1.2 + + 2022-06-03 + 1.2.7 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-07-24 - 1.1.1 - Rebuild. + + 2021-12-10 + 1.2.6 + Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-02-02 - 1.1.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org + + 2021-09-21 + 1.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - - 2016-04-27 - 1.1.1 - First release - Alihan Öztürk - alihan@pisilinux.org + + 2021-01-18 + 1.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - - 2015-11-20 - 1.1 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - xcb-util-keysyms - https://xcb.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2 - - xorg-proto - util-macros - libxcb-devel - - x11/library/xcb-util-keysyms/pspec.xml - - - xcb-util-keysyms - - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-keysyms-devel - Development files for xcb-util-keysyms - xcb-util-keysyms için geliştirme dosyaları - - xcb-util-keysyms - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-keysyms-32bit - 32-bit shared libraries for xcb-util-keysyms - emul32 - emul32 - - libxcb-32bit - - - xcb-util-keysyms - libxcb-32bit - - - /usr/lib32 - - - - 2021-05-22 - 0.4.0 - Rebuild + 2020-04-10 + 1.2.2 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-03-19 - 0.4.0 - Rebuild + 2020-02-01 + 1.2.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-02-20 - 0.4.0 + 2018-08-03 + 1.1.5 Rebuild - Mustafa Cinasal - muscnsl@gmail.com + Pisi Linux Community + admin@pisilinux.org - 2018-11-05 - 0.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2018-01-07 + 1.1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2018-07-24 - 0.4.0 - Rebuild - PisiLinux Community + 2017-02-12 + 1.1.3 + Version Bump + Pisi Linux Community admin@pisilinux.org - 2017-02-05 - 0.4.0 - Rebuild - PisiLinux Community + 2016-06-09 + 1.1.1 + Release Bump + Pisi Linux Community admin@pisilinux.org - 2016-04-30 - 0.4.0 - Release bump - PisiLinux Community - admin@pisilinux.org + 2016-05-03 + 1.1.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org - 2015-12-13 - 0.4.0 + 2015-03-04 + 1.0.29 First release - Kamil Atlı - suvari@pisilinux.org + Hakan Yıldız + hknyldz93@gmail.com - libXft - https://www.x.org/ + bubblewrap + https://github.com/projectatomic/bubblewrap - PisiLinux Community - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - MIT - library - x11.library - Librairie Xft de X.Org - X.Org Xft library - X.Org Xft kitaplığı - X.Org Xft Bibliothek - libXft is the X FreeType interface library. - mirrors://xorg/individual/lib/libXft-2.3.4.tar.bz2 + LGPLv2 + hardware.virtualization + Unprivileged sandboxing tool + is a core execution engine for unprivileged containers that works as a setuid binary on kernels without user namespaces. + https://github.com/projectatomic/bubblewrap/archive/v0.4.0.tar.gz - xorg-proto - util-macros - freetype-devel - expat-devel - fontconfig-devel - libXrender-devel + libcap-devel + bash-completion + libxslt + docbook-xsl - x11/library/libXft/pspec.xml + hardware/virtualization/bubblewrap/pspec.xml - libXft + bubblewrap - libX11 - freetype - fontconfig - libXrender - - - /usr/lib - /usr/share/doc - - - - libXft-devel - Development files for libXft - libXft için geliştirme dosyaları - - libXft - xorg-proto - freetype-devel - fontconfig-devel - libXrender-devel + libcap /usr/bin - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig + /usr/share/bash-completion /usr/share/man - - - - libXft-32bit - 32-bit shared libraries for libXft - libXft için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - - - libXft - freetype-32bit - fontconfig-32bit - libXrender-32bit - zlib-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2021-10-19 - 2.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 2.3.3 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-10-25 - 2.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 2.3.2 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 2.3.2 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-04-30 - 2.3.2 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-08-31 - 2.3.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libfakekey - http://matchbox-project.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - x11.library - X virtual keyboard library. - X sanal klavye kütüphanesi. - X sanal klavye kütüphanesi. - http://git.yoctoproject.org/cgit/cgit.cgi/libfakekey/snapshot/libfakekey-0.3.tar.gz - - libXtst-devel - - x11/library/libfakekey/pspec.xml - - - libfakekey - - libXtst - - - /usr/lib /usr/share/doc - - libfakekey-devel - Development files for libfakekey - libfakekey için geliştirme dosyaları - - libfakekey - - - /usr/lib/pkgconfig - /usr/include/fakekey/ - - - - 2020-01-10 - 0.3 - Rebuild. + + 2020-03-12 + 0.4.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2019-07-07 + 0.3.3 + Version bump.. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2019-10-24 - 0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2018-11-19 + 0.3.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2018-07-24 - 0.3 + 2018-08-12 + 0.3.0 Version bump - Mustafa Cinasal - muscnsl@gmail.com + Ertuğrul Erata + ertugrulerata@gmail.com - 2017-01-30 - 0.1 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2016-07-07 - 0.1 - First Release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xcb-util-image - https://xcb.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - A number of libraries which sit on top of libxcb - libxcb temelli birtakım kitaplıklar - The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. - xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. - http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2 - - util-macros - libxcb-devel - xcb-util-devel - - x11/library/xcb-util-image/pspec.xml - - - xcb-util-image - - xcb-util - libxcb - - - /usr/lib - /usr/share/doc - - - - xcb-util-image-devel - Development files for xcb-util - xcb-util-image için geliştirme dosyaları - - xcb-util-image - libxcb-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - xcb-util-image-32bit - 32-bit shared libraries for xcb-util - xcb-util-image için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libxcb-32bit - xcb-util-32bit - - - xcb-util-32bit - libxcb-32bit - - - /usr/lib32 - - - - - 2021-05-22 - 0.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-19 - 0.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-20 - 0.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-05 - 0.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 0.4.0 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-05 - 0.4.0 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 0.4.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-12-13 - 0.4.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libXext - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xext de X.Org - X.Org Xext library - X.Org Xext kitaplığı - X.Org Xext Bibliothek - LibXext provides an X Window System client interface to several extensions to the X protocol. - LibXext, çeşitli X protokolü uzantıları için X Pencere Sistemi istemci arayüzü sunar. - mirrors://xorg/individual/lib/libXext-1.3.4.tar.bz2 - - xorg-proto - util-macros - libX11-devel - libxslt - - x11/library/libXext/pspec.xml - - - libXext - - libX11 - - - /usr/lib - /usr/share/doc - - - - libXext-devel - Development files for libXext - libXext için geliştirme dosyaları - - libX11-devel - libXext - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXext-32bit - 32-bit shared libraries for libXext - libXext için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - - - libXext - libX11-32bit - - - /usr/lib32 - - - - - 2021-09-25 - 1.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 1.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.3.4 + 2018-05-29 + 0.2.1 Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.3.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-01-29 - 1.3.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.3.3 - Release bump - PisiLinux Community - admin@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - 2014-08-31 - 1.3.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libfontenc - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie fontenc de X.Org - X.Org fontenc library - X.Org fontenc kitaplığı - X.Org fontenc Bibliothek - libfontenc is the X Window System font encoding library. - mirrors://xorg/individual/lib/libfontenc-1.1.4.tar.bz2 - - zlib-devel - util-macros - font-util - xorg-proto - - x11/library/libfontenc/pspec.xml - - - libfontenc - - zlib - - - /usr/lib - /usr/share/doc - - - - libfontenc-devel - Development files for libfontenc - libfontenc için geliştirme dosyaları - - libfontenc - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2020-01-10 - 1.1.4 - Rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-10-20 - 1.1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.1.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.1.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-01-30 - 1.1.3 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.3 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.1.3 + 2018-02-03 + 0.2.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -249348,6195 +193319,2518 @@ Gnome session. - libXcursor - https://www.x.org/ + containerd + https://containerd.io/ - PisiLinux Community - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - MIT - library - x11.library - Librairie Xcursor de X.Org - X.Org Xcursor library - X.Org Xcursor kitaplığı - X.Org Xcursor Bibliothek - libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor. - mirrors://xorg/individual/lib/libXcursor-1.2.0.tar.bz2 + Apache-2.0 + hardware.virtualization + A daemon to control runC, built for performance and density. + is a daemon with an API and a command line client, to manage containers on one machine. It uses runC to run containers according to the OCI specification. + https://github.com/containerd/containerd/archive/v1.5.13.tar.gz - util-macros - libX11-devel - xorg-proto - libXfixes-devel - libXrender-devel + golang + git + libseccomp-devel + btrfs-progs-devel - x11/library/libXcursor/pspec.xml + hardware/virtualization/containerd/pspec.xml - libXcursor + containerd - libX11 - libXfixes - libXrender - - - /usr/lib - /usr/share/doc - - - - libXcursor-devel - Development files for libXcursor - libXcursor için geliştirme dosyaları - - libXcursor - libXfixes-devel - libX11-devel - libXrender-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXcursor-32bit - 32-bit shared libraries for libXcursor - libXcursor için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libXfixes-32bit - libXrender-32bit - - - libXcursor - libX11-32bit - libXfixes-32bit - libXrender-32bit - - - /usr/lib32 - - - - - 2020-01-14 - 1.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.1.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.1.15 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2018-02-22 - 1.1.15 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.1.14 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.14 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.14 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libICE - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - X.Org ICE library - X.Org ICE kitaplığı - Utilitaire ICE de X.Org. - libICE is the Inter-Client Exchange library. - libICE, Inter-Client Exchange protokolüne bir arayüz sağlayan X.Org kitaplığıdır. - X.Org ICE Bibliothek - mirrors://xorg/individual/lib/libICE-1.0.10.tar.bz2 - - libbsd-devel - util-macros - xorg-proto - xtrans - libxslt - - x11/library/libICE/pspec.xml - - - libICE - - libbsd - - - /usr/lib - /usr/share/doc - - - - libICE-devel - Development files for libICE - libICE için geliştirme dosyaları - - libICE - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libICE-32bit - 32-bit shared libraries for libICE - libICE için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libICE - - - /usr/lib32 - - - - - 2021-03-14 - 1.0.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 1.0.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.0.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.0.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.0.9 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-01-30 - 1.0.9 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.0.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-08-31 - 1.0.9 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXdamage - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie damege de X.Org. - X.Org damage library - X.Org damege kitaplığı. - X.Org damege Bibliothek - LibXdamage provides an X Window System client interface to the DAMAGE extension to the X protocol. The Damage extension provides for notification of when on-screen regions have been 'damaged' (altered). - LibXdamage, X protokolü uzantısı DAMAGE için istemci kitaplığıdır. Damage uzantısı ekranda herhangi bir bölümde bozulma (değişiklik) meydana geldiğinde bildirim yapılmasını sağlar. - mirrors://xorg/individual/lib/libXdamage-1.1.5.tar.bz2 - - libXfixes-devel - util-macros - - x11/library/libXdamage/pspec.xml - - - libXdamage - - libXfixes - libX11 - - - /usr/lib - /usr/share/doc - - - - libXdamage-devel - Development files for libXdamage - libXdamage için geliştirme dosyaları - - libXdamage - libXfixes-devel - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXdamage-32bit - 32-bit shared libraries for libXdamage - libXdamage için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libXfixes-32bit - - - libXdamage - libXfixes-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2021-09-25 - 1.1.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.1.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 1.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.1.4 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.1.4 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.1.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.4 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libexplain - http://libexplain.sourceforge.net/ - - erdinc gültekin - admins@pisilinux.org - - LGPLv2 - library - x11.library - Explain errno values returned by libc functions - Libc fonksiyonları tarafından döndürülen errno değerleri açıklar - The libexplain package provides a library which may be used to explain Unix and Linux system call errors - Libexplain paketi, Unix ve Linux sistem çağrısı hataları açıklamak için kullanılan bir kütüphane sunar. - http://sourceforge.net/projects/libexplain/files/1.4/libexplain-1.4.tar.gz - - acl-devel - libcap-devel - lsof - libtool - bison - groff - jbigkit-devel - ghostscript-devel - - - 0001-Fix-build-failure-with-GCC10.patch - sanitize-bison.patch - libexplain-1.4-missing-defines.patch - libexplain-1.4-largefile.patch - libexplain-1.4-syscall.patch - - x11/library/libexplain/pspec.xml - - - libexplain - - acl - libcap - ghostscript + runc + libseccomp /usr/bin + /usr/share/doc + + + + + 2022-06-07 + 1.5.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-02 + 1.5.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-19 + 1.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 1.1.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-06-17 + 1.1.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-20 + 0.2.2 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-07-12 + 0.2.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + docker + http://docker.io + + Ertuğrul Erata + ertugrulerata@gmail.com + + Apache + app:console + hardware.virtualization + Pack, ship and run any application as a lightweight container + Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer + An open platform for distributed applications for developers and sysadmins + Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform + https://github.com/docker/docker-ce/archive/refs/tags/v19.03.15.tar.gz + + git + golang + btrfs-progs-devel + device-mapper-devel + sqlite-devel + libseccomp-devel + libtool-ltdl + + hardware/virtualization/docker/pspec.xml + + + docker + + git + aufs-util + sqlite + device-mapper + btrfs-progs + bridge-utils + iproute2 + iptables + libseccomp + libtool-ltdl + runc + containerd + tini + + + /etc + /usr/bin/ + /usr/lib/docker + /usr/share/ + /lib/udev/rules.d + + + System.Service + System.Package + + + cgroupfs-mount + cgroupfs-umount + docker.confd + + + + + 2021-08-02 + 19.03.15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-19 + 18.05.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 18.05.0 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-06-10 + 18.05.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-20 + 1.11.2 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-08-28 + 1.11.2 + Rebuild for package.py + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-07-11 + 1.11.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-28 + 1.10.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.10.3 + Release bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-25 + 1.10.3 + First release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + flatpak + https://flatpak.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPLv2.1 + hardware.virtualization + Application distribution framework + Linux application sandboxing and distribution framework, formerly xdg-app + https://github.com/flatpak/flatpak/releases/download/1.12.7/flatpak-1.12.7.tar.xz + + xmlto + zstd-devel + util-linux + gtk-doc + eudev-devel + libcap-devel + gettext-devel + zlib-devel + bubblewrap + polkit-devel + libseccomp-devel + dbus-devel + dconf-devel + json-glib-devel + appstream-glib-devel + docbook-xsl + python3-six + ostree-devel + python3-pyparsing + xdg-dbus-proxy + elogind-devel + fuse-devel + + hardware/virtualization/flatpak/pspec.xml + + + flatpak + + zstd + xorg-app + bubblewrap + fuse + glib2 + gpgme + gnupg + libXau + libxml2 + libsoup + json-glib + libarchive + libseccomp + gdk-pixbuf + dconf + ostree + polkit + appstream-glib + python3-pyparsing + libassuan + libgpg-error + xdg-dbus-proxy + + + /usr/bin + /etc /usr/lib + /usr/libexec + /usr/share/bash-completion + /usr/share/fish/vendor_completions.d/ + /usr/share/dbus-1 + /usr/share/polkit-1 + /usr/share/flatpak /usr/share/man + /usr/share/locale + /usr/share/doc + /usr/share/gtk-doc + /usr/share/zsh + + + flathub.flatpakrepo + + + + flatpak-devel + Development files for flatpak + + flatpak + glib2-devel + ostree-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-05-05 + 1.12.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 1.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-07 + 1.11.1 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2021-04-29 + 1.10.2 + Fixed flatpak does nothing. + Berk Çakar + berk2238@hotmail.com + + + 2021-04-25 + 1.10.2 + Version bump + Sami BABAT + samibabat@gmail.com + + + 2021-04-06 + 1.6.3 + Update dependencies + Berkan Şahin + cicektaksi@tutanota.com + + + 2020-04-02 + 1.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.4.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-07 + 1.4.2 + Version bump.. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-14 + 1.2.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-19 + 1.1.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-13 + 1.0.4 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-23 + 1.0.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-07-08 + 0.11.7 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-16 + 0.11.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-03 + 0.10.3 + First release. + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + flatpak-builder + https://flatpak.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + hardware.virtualization + Tool to build flatpaks from sources + Tool for building flatpaks from sources + https://github.com/flatpak/flatpak-builder/releases/download/1.2.2/flatpak-builder-1.2.2.tar.xz + + flatpak-devel + ostree-devel + util-linux + libxslt + xmlto + libsoup-devel + libcap-devel + elfutils-devel + glib2-devel + libxml2-devel + libyaml-devel + curl-devel + elogind-devel + json-glib-devel + + hardware/virtualization/flatpak-builder/pspec.xml + + + flatpak-builder + + flatpak + ostree + curl + libsoup + elfutils + glib2 + libxml2 + json-glib + libyaml + + + /usr/bin + /usr/libexec + /usr/share/man + /usr/share/doc + + + + + 2022-05-06 + 1.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 1.0.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.0.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-07 + 1.0.8 + Version bump.. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-14 + 1.0.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-14 + 1.0.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-07-08 + 0.10.10 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-16 + 0.10.8 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-11 + 0.10.6 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libnetwork + https://github.com/docker/libnetwork + + Ertuğrul Erata + ertugrulerata@gmail.com + + Apache-2.0 + app:console + hardware.virtualization + Docker Networking + Libnetwork provides a native Go implementation for connecting containers The goal of libnetwork is to deliver a robust Container Network Model that provides a consistent programming interface and the required network abstractions for applications. + https://sourceforge.net/projects/pisilinux/files/source/libnetwork-0.8.0_dbc11cc.tar.gz + + golang + + hardware/virtualization/libnetwork/pspec.xml + + + libnetwork + + docker + + + /usr/bin + /usr/share/doc + + + + + 2020-03-10 + 0.8.0_pre1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-08 + 0.8.0_pre1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-08 + 0.8.0_pre1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libvirt + http://www.libvirt.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + hardware.virtualization + Library providing a simple API to several virtualization systems + Birçok sanallaştırma sistemine kolay erişim sağlayan bir kütüphane + libvirt is a toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes). libvirt supports Xen hypervisor, QEMU emulator, KVM hypervisor, LXC Linux container system, OpenVZ Linux container system, User Mode Linux paravirtualized kernel and VirtualBox hypervisor together with remote management possibilities. + libvirt yeni linux sürümlerinin sunduğu sanallaştırma özellikleriyle etkileşimi kolaylaştıran bir kütüphanedir. Xen, KVM ve VirtualBox hipervizorleri, QEMU emulatörü, LXC linux konteyner sistemi, User Mode Linux paravirtual sanallaştırma sistemi gibi sistemlerle birlikte çalışabilir ve tüm bu sistemlerin uzaktan yönetimi için de kullanılabilir. + http://libvirt.org/sources/libvirt-4.6.0.tar.xz + + qemu + acl-devel + curl-devel + fuse-devel + glibc-devel + libssh2-devel + jansson-devel + lvm2-devel + attr-devel + audit-devel + avahi-devel + netcf-devel + numactl-devel + libxslt-devel + libpciaccess-devel + yajl-devel + polkit-devel + dbus-devel + util-linux + gnutls-devel + parted-devel + device-mapper-devel + libnl-devel + python-devel + cyrus-sasl-devel + libcap-ng-devel + readline-devel + libtirpc-devel + libXdmcp-devel + bash-completion + kernel-module-headers + + hardware/virtualization/libvirt/pspec.xml + + + libvirt + + acl + curl + fuse + libssh2 + libtirpc + dbus + yajl + audit + eudev + libnl + netcf + libgcc + gnutls + parted + libcap + libxml2 + numactl + readline + libcap-ng + avahi-libs + cyrus-sasl + libpciaccess + device-mapper + libutil-linux + + + /etc + /usr/lib/tmpfiles.d/libvirt.conf + /usr/bin + /usr/libexec + /usr/sbin + /usr/lib + /usr/share/doc + /usr/share/augeas + /usr/share/polkit-1 + /usr/share/libvirt + /usr/share/systemtap + /usr/share/man + /var + /run + /usr/share/locale + /usr/share/bash-completion + + + System.Service + System.Package + + + tmpfiles.conf + libvirt.confd + + + + libvirt-devel + Development files for libvirt + libvirt için geliştirme dosyaları + + libvirt + + + /usr/include/libvirt + /usr/lib/pkgconfig + + + + + 2020-03-14 + 4.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-18 + 4.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-31 + 4.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 3.0.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-09 + 1.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-31 + 1.3.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libvirt-glib + https://libvirt.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + hardware.virtualization + GLib bindings for libvirt + GLib bindings for libvirt + GLib bindings for libvirt + GLib bindings for libvirt + https://libvirt.org/sources/glib/libvirt-glib-2.0.0.tar.gz + + intltool + gtk-doc + vala-devel + glib2-devel + python-six + libvirt-devel + libxml2-devel + libcap-ng-devel + gobject-introspection-devel + + hardware/virtualization/libvirt-glib/pspec.xml + + + libvirt-glib + + glib2 + libvirt + libxml2 + + + /usr/lib + /usr/share + /usr/share/vala + /usr/share/gir-1.0 /usr/share/locale /usr/share/doc - libexplain-devel - Development files for libexplain. - libexplain için geliştirme dosyaları + libvirt-glib-devel + Development files for libvirt-glib - acl-devel - libcap-devel - libexplain + libvirt-glib + /usr/include /usr/lib/pkgconfig - /usr/include + + + + libvirt-glib-docs + Development files for libvirt-glib + + libvirt-glib + + + /usr/share/gtk-doc - - 2020-01-14 - 1.4 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2018-07-31 - 1.4 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-01-29 - 1.4 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.4 - Release bump - PisiLinux Community - admin@pisilinux.org - - 2016-01-09 - 1.4 + 2019-03-18 + 2.0.0 First release - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - libXrandr - https://www.x.org/ + libvirt-python + https://pypi.python.org/pypi/libvirt-python PisiLinux Community admins@pisilinux.org - MIT + LGPLv3 library - x11.library - X.Org Xrandr library - Librairie Xrand de X.Org. - Xrandr is a simple library designed to interface the X Resize and Rotate Extension. This allows clients to change the size and rotation of the root window of a screen, along with the ability to reflect the screen about either axis. - X.Org Xrand kitaplığı. - X.Org Xrand Bibliothek - mirrors://xorg/individual/lib/libXrandr-1.5.2.tar.bz2 + hardware.virtualization + libvirt python binding + libvirt python binding + libvirt python binding + libvirt python binding + https://libvirt.org/sources/python/libvirt-python-4.6.0.tar.gz - libXext-devel - libXrender-devel - libX11-devel - util-macros + libvirt-devel + python-devel - x11/library/libXrandr/pspec.xml + hardware/virtualization/libvirt-python/pspec.xml - libXrandr + libvirt-python - libXext - libXrender - libX11 + libvirt /usr/lib /usr/share/doc - - libXrandr-devel - Development files for libXrandr - libXrandr için geliştirme dosyaları - - libXrandr - libXrender-devel - libXext-devel - libX11-devel - xorg-proto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXrandr-32bit - 32-bit shared libraries for libXrandr - libXrandr için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libXext-32bit - libXrender-32bit - - - libXrandr - libX11-32bit - libXext-32bit - libXrender-32bit - - - /usr/lib32 - - - - 2020-09-25 - 1.5.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-10 - 1.5.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.5.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 1.5.1 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.5.1 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2016-11-02 - 1.5.1 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.5.0 - Release bump - PisiLinux Community - admin@pisilinux.org - - 2015-08-15 - 1.5.0 + 2019-03-18 + 4.6.0 First release + PisiLinux Community + admins@pisilinux.org + + + + + + ostree + https://github.com/ostreedev/ostree + Ertuğrul Erata ertugrulerata@gmail.com - - - - - - libXpm - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - MIT - library - x11.library - Librairie Xpm de X.Org - X.Org Xpm library - X.Org Xpm kitaplığı - X.Org Xpm Bibliothek - LibXpm is the X pixmap library. - mirrors://xorg/individual/lib/libXpm-3.5.13.tar.bz2 - - util-macros - libXext-devel - libXt-devel - - x11/library/libXpm/pspec.xml - - - libXpm - - libXext - libXt - libX11 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libXpm-devel - Development files for libXpm - libXpm için geliştirme dosyaları - - libXpm - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libXpm-32bit - 32-bit shared libraries for libXpm - libXpm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - libXt-32bit - libX11-32bit - - - libXpm - libXext-32bit - libXt-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2020-01-07 - 3.5.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 3.5.12 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 3.5.12 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 3.5.12 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 3.5.11 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 3.5.11 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libXv - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xv de X.Org - X.Org Xv library - X.Org Xv kitaplığı - X.Org Xv Bibliothek - LibXv is the X Window System video extension library. - mirrors://xorg/individual/lib/libXv-1.0.11.tar.bz2 - - libX11-devel - libXext-devel - util-macros - - x11/library/libXv/pspec.xml - - - libXv - - libX11 - libXext - - - /usr/lib - /usr/share/doc - - - - libXv-devel - Development files for libXv - libXv için geliştirme dosyaları - - libXv - libXext-devel - libX11-devel - xorg-proto - - - /usr/include/X11 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/man - - - - libXv-32bit - 32-bit shared libraries for libXv - libXv için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libX11-32bit - libXext-32bit - - - libXv - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2020-01-10 - 1.0.11 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.0.11 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.0.11 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 1.0.11 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.0.11 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-11-03 - 1.0.11 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.0.10 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2014-05-16 - 1.0.10 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - glew - http://glew.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - BSD - GLX - SGI-B - GPLv2 + LGPLv2 app:console - library - x11.library - OpenGL Extension Wrangler Library - OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığı - OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file. - OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığıdır. - mirrors://sourceforge/glew/2.1.0/glew-2.1.0.tgz + hardware.virtualization + Operating system and container binary deployment and upgrades + OSTree is a tool for managing bootable, immutable, versioned filesystem trees + https://github.com/ostreedev/ostree/releases/download/v2021.2/libostree-2021.2.tar.xz - mesa-glu-devel - libglvnd-devel + python3 + glib2-devel + xz-devel + zlib-devel + e2fsprogs-devel + libsoup-devel + gpgme-devel + openssl-devel + avahi-glib-devel + fuse-devel + libutil-linux-devel + libarchive-devel - x11/library/glew/pspec.xml + + disable_werror_implicit_funtion_declaraction.patch + + hardware/virtualization/ostree/pspec.xml - glew + ostree - libglvnd - libX11 + xz + avahi-glib + avahi-libs + zlib + fuse + glib2 + gpgme + libsoup + libarchive + libgpg-error + libutil-linux + openssl - /usr/lib - /usr/share/doc /usr/bin - - - - glew-devel - Development files for glew - glew için geliştirme dosyaları - - mesa-glu-devel - glew - - - /usr/include/GL - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - glew-32bit - 32-bit shared libraries for glew - glew için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libglvnd-32bit - libX11-32bit - - - libglvnd-32bit - libX11-32bit - glew - - - /usr/lib32 - - - - - 2021-03-19 - 2.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-23 - 2.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-23 - 2.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 - 2.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-11 - 2.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-15 - 2.0.0 - Rebuild for new Mesa - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-02 - 2.0.0 - Release Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-04-27 - 1.13.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2015-08-15 - 1.12.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libXxf86vm - http://x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie Xxf86vm de X.Org - X.Org Xxf86vm library - X.Org Xxf86vm kitaplığı - X.Org Xxf86vm Bibliothek - LibXxf86vm is the client library for the XFree86-VidMode X extension. - mirrors://xorg/individual/lib/libXxf86vm-1.1.4.tar.bz2 - - libXext-devel - libX11-devel - util-macros - - x11/library/libXxf86vm/pspec.xml - - - libXxf86vm - - libX11 - libXext - - + /etc/ostree /usr/lib + /usr/libexec + /usr/share/gir-1.0 + /usr/share/bash-completion + /usr/share/ostree + /usr/share/man /usr/share/doc - libXxf86vm-devel - Development files for libXxf86vm - libXxf86vm için geliştirme dosyaları + ostree-devel + Development files for ostree - libXxf86vm - libXext-devel - - - /usr/include/X11 - /usr/lib/pkgconfig/ - /usr/lib32/pkgconfig - /usr/share/man - - - - libXxf86vm-32bit - 32-bit shared libraries for libXxf86vm - libXxf86vm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libXext-32bit - - - libXxf86vm - libXext-32bit - libX11-32bit - - - /usr/lib32 - - - - - 2020-01-10 - 1.1.4 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2019-10-25 - 1.1.4 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2018-07-25 - 1.1.4 - Rebuild for new toolchain. - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.1.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-27 - 1.1.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-16 - 1.1.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libxkbfile - https://www.x.org/ - - PisiLinux Community - admins@pisilinux.org - - MIT - library - x11.library - Librairie xkbfile de X.Org - X.Org xkbfile library - X.Org xkbfile kitaplığı - X.Org xkbfile Bibliothek - Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension. - mirrors://xorg/individual/lib/libxkbfile-1.1.0.tar.bz2 - - util-macros - libX11-devel - xorg-proto - - x11/library/libxkbfile/pspec.xml - - - libxkbfile - - libX11 - - - /usr/lib - /usr/share/doc - - - - libxkbfile-devel - Development files for libxkbfile - libxkbfile için geliştirme dosyaları - - libxkbfile - libX11-devel - - - /usr/include/X11 - /usr/lib/pkgconfig - - - - - 2020-01-10 - 1.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.0.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-24 - 1.0.9 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2017-02-02 - 1.0.9 - Rebuild - PisiLinux Community - admin@pisilinux.org - - - 2016-04-30 - 1.0.9 - Release bump - PisiLinux Community - admin@pisilinux.org - - - 2015-08-15 - 1.0.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xorg-input-joystick - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org joystick input driver - X.Org joystick giriş aygıtı sürücüsü - xorg-input-joystick contains the X.Org driver for joysticks. - xorg-input-joystick, oyun çubukları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-joystick-1.6.3.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-joystick/pspec.xml - - - xorg-input-joystick - - /usr/lib/xorg - /usr/share/man - - - - xorg-input-joystick-devel - Development files for xorg-input-joystick - xorg-input-joystick için geliştirme dosyaları - - xorg-input-joystick + ostree + xz-devel + zlib-devel + fuse-devel + glib2-devel + gpgme-devel + libsoup-devel + libarchive-devel + libgpg-error-devel + libutil-linux-devel /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig - - 2021-11-12 - 1.6.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2021-01-07 - 1.6.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 1.6.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.6.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.6.3 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.6.3 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.6.3 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.6.3 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.6.2 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.6.2 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-dummy - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org dummy video driver - X.Org dummy ekran kartı sürücüsü - xorg-video-dummy is a dummy video driver for X.Org. - xorg-video-dummy, X.Org için sahte bir ekran kartı sürücüsü içerir. - mirrors://xorg/individual/driver/xf86-video-dummy-0.3.8.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-dummy/pspec.xml - - - xorg-video-dummy - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - - - - - 2021-11-12 - 0.3.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.3.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.3.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 0.3.8 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.3.8 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 0.3.8 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.3.8 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.3.8 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.3.7 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.3.7 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-apm - https://www.x.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org apm video driver - X.Org apm ekran kartı sürücüsü - xorg-video-apm contains the X.Org driver for Alliance Promotion cards. - xorg-video-apm, Alliance Promotion ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-apm-1.3.0.tar.bz2 - - xorg-server-devel - util-macros - xorg-proto - - x11/driver/xorg-video-apm/pspec.xml - - - xorg-video-apm - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-20 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.2.5 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.2.5 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.2.5 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.2.5 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.2.5 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.2.5 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-siliconmotion - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org siliconmotion video driver - X.Org siliconmotion ekran kartı sürücüsü - xorg-video-siliconmotion contains the X.Org driver for Silicon Motion cards. - xorg-video-siliconmotion, Silicon Motion ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-siliconmotion-1.7.9.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-siliconmotion/pspec.xml - - - xorg-video-siliconmotion - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.7.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.7.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.7.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.7.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.7.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.7.9 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.7.9 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.7.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.7.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.7.8 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-input-void - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org void input driver - X.Org void giriş aygıtı sürücüsü - xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard. - xorg-input-void, X sunucusunun herhangi bir ana işaretçi ve/veya ana klavye olmadan çalışabilmesini sağlayan işlevsiz bir giriş aygıtı sürücüsüdür. - mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-void/pspec.xml - - - xorg-input-void - - /usr/lib/xorg - /usr/share/man - - - - - 2021-11-12 - 1.4.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.4.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.4.1 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.4.1 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.4.1 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.4.1 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.4.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.4.1 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.4.1 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-input-kbd - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org kbd input driver - X.Org kbd giriş aygıtı sürücüsü - xorg-input-kbd contains the X.Org driver for keyboards. - xorg-input-kbd, klavyeler için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-keyboard-1.9.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-kbd/pspec.xml - - - xorg-input-kbd - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.9.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 1.9.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.9.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.9.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.9.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.9.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.9.0 + 2021-04-26 + 2021.2 Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.8.1 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.8.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-sisusb - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org sisusb video driver - X.Org sisusb ekran kartı sürücüsü - xorg-video-sisusb contains the X.Org driver for SiS video chips connected via a Net2280-based USB dongle. - xorg-video-sisusb, Net2280 tabanlı USB dongle ile bağlı SiS ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-sisusb-0.9.7.tar.bz2 - - util-macros - xorg-server-devel - - x11/driver/xorg-video-sisusb/pspec.xml - - - xorg-video-sisusb - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 0.9.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + Sami BABAT + samibabatp@gmail.com - 2021-01-07 - 0.9.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.9.7 - Rebuild . - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 0.9.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.9.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.9.7 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.9.7 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.9.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.9.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-i128 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org i128 video driver - X.Org i128 ekran kartı sürücüsü - xorg-video-i128 contains the X.Org driver for Number Nine chipsets. - xorg-video-i128, Number Nine ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-i128-1.4.0.tar.bz2 - - xorg-server-devel - util-macros - - - 1600sw-range-hack.patch - - x11/driver/xorg-video-i128/pspec.xml - - - xorg-video-i128 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-14 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.3.6 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.3.6 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.3.6 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.3.6 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.3.6 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.3.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.3.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xvba-video - http://www.splitted-desktop.com/~gbeauchesne/xvba-video/ - - PisiLinux Community - admins@pisilinux.org - - freedist - driver - x11.driver - XvBA backend for VA API - VA API için XvBA arka ucu - xvba-video is a backend for the VA API in order to use XvBA video acceleration drivers available for some ATI cards. - xvba-video, bazı ATI kartlar için mevcut olan XvBA video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. - https://sourceforge.net/projects/pisilinux/files/source/xvba-video-0.8.0.i686.tar.gz - https://sourceforge.net/projects/pisilinux/files/source/xvba-video-0.8.0.x86_64.tar.gz - x11/driver/xvba-video/pspec.xml - - - xvba-video - - libva - libXext - mesa - - - /usr/lib - /usr/share/doc - - - - xvba-video-32bit - 32-bit shared libraries for xvba-video - xvba-video için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - mesa-32bit - libX11-32bit - libXext-32bit - - - mesa-32bit - xvba-video - libX11-32bit - libXext-32bit - - - /usr/lib32 - - - - - 2021-01-07 - 0.8.0 + 2020-02-07 + 2019.6 Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.7.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.7.8 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.7.8 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.7.8 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.7.8 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-savage - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org savage video driver - X.Org savage ekran kartı sürücüsü - xorg-video-savage contains the X.Org driver for S3 Savage cards. - xorg-video-savage, S3 Savage ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-savage-2.3.9.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - util-macros - - - git-video-savage.patch - - x11/driver/xorg-video-savage/pspec.xml - - - xorg-video-savage - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 2.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 2.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 2.3.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 2.3.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.3.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 2.3.9 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 2.3.9 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 2.3.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 2.3.8 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 2.3.8 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-v4l - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org v4l video driver - X.Org v4l ekran kartı sürücüsü - v4l is an Xorg driver for video4linux cards. It provides a Xvideo extension port for video overlay. - v4l, video4linux kartları için Xorg sürücüsü içerir. Video yerpaylaşımı (overlay) için bir Xvideo kapısı sağlar. - mirrors://xorg/individual/driver/xf86-video-v4l-0.3.0.tar.bz2 - - util-macros - xorg-server-devel - - x11/driver/xorg-video-v4l/pspec.xml - - - xorg-video-v4l - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 0.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 0.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.2.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.2.0 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.2.0 - Release bump. - Osman Erkan - osman.erkan@pisilinux.org - - - 2015-05-15 - 0.2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - xorg-input-vmmouse - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vmmouse input driver - X.Org vmmouse giriş aygıtı sürücüsü - xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines. - xorg-input-vmmouse, VMware sanal makinelerinde fare uyumu için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-input-vmmouse/pspec.xml - - - xorg-input-vmmouse - - /lib/udev - /usr/bin - /usr/libexec - /usr/lib/xorg - /usr/share/X11 - /usr/share/man - - - - - 2021-11-12 - 13.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 13.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 13.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 13.1.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 13.1.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 13.1.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-10 - 13.1.0 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 13.1.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 13.1.0 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-05-08 - 13.1.0 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 13.0.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-mga - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mga video driver - X.Org mga ekran kartı sürücüsü - xorg-video-mga contains the X.Org driver for Matrox cards. - xorg-video-mga, Matrox ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-mga-2.0.0.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - util-macros - - x11/driver/xorg-video-mga/pspec.xml - - - xorg-video-mga - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 2.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 2.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 2.0.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-14 - 2.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.6.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.6.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.6.5 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.6.5 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.6.5 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.6.4 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.6.3 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-radeon - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org radeon video driver - X.Org radeon ekran kartı sürücüsü - xorg-video-radeon contains the X.Org driver for ATI video chipsets. - xorg-video-radeon, ATI ekran kartları için X.Org sürücüsünü içerir. - https://gitlab.freedesktop.org/xorg/driver/xf86-video-ati/-/archive/5eba006e4129e8015b822f9e1d2f1e613e252cda/5eba006e4129e8015b822f9e1d2f1e613e252cda.tar.gz - - git - libdrm-devel - libpciaccess-devel - mesa-devel - pixman-devel - util-macros - xorg-server-devel - - x11/driver/xorg-video-radeon/pspec.xml - - - xorg-video-radeon - - eudev - libdrm-radeon - libpciaccess - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - /etc/X11 - /usr/share/X11/xorg.conf.d - - - - - 2021-11-12 - 19.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 19.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-18 - 19.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-19 - 19.0.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 18.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 18.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.18.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-17 - 1.18.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-07 - 1.18.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-19 - 7.10.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 7.9.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 7.8.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 7.8.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 7.7.0 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 7.7.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-openchrome - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org openchrome video driver - X.Org openchrome ekran kartı sürücüsü - xorg-video-openchrome contains the X.Org driver for VIA video chipsets. - xorg-video-openchrome, VIA ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-openchrome-0.6.0.tar.bz2 - - libdrm-devel - libXext-devel - libXv-devel - libXvMC-devel - libglvnd-devel - xorg-server-devel - - x11/driver/xorg-video-openchrome/pspec.xml - - - xorg-video-openchrome - - libX11 - libdrm - libXext - libXv - libXvMC - xorg-server - - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2021-11-12 - 0.6.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 0.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.5.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 0.5.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.5.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.5.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.5.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.4.0 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.3.3 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-tdfx - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org tdfx video driver - X.Org tdfx ekran kartı sürücüsü - xorg-video-tdfx contains the X.Org driver for Voodoo cards. - xorg-video-tdfx, Voodoo ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-tdfx-1.5.0.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - util-macros - - x11/driver/xorg-video-tdfx/pspec.xml - - - xorg-video-tdfx - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 1.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.4.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.4.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.4.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.4.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.4.7 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.4.7 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.4.7 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.4.6 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.4.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-r128 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org r128 video driver - X.Org r128 ekran kartı sürücüsü - xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards. - xorg-video-r128, ATI Rage128 ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-r128-6.12.0.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - util-macros - - x11/driver/xorg-video-r128/pspec.xml - - - xorg-video-r128 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 6.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 6.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 6.12.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 6.12.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 6.11.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 6.10.2 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 6.10.2 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 6.10.2 - Verson bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 6.10.1 - Verson bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 6.10.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-sis - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org sis video driver - X.Org sis ekran kartı sürücüsü - xorg-video-sis contains the X.Org driver for SiS cards. - xorg-video-sis, SiS ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-sis-0.12.0.tar.bz2 - - libdrm-devel - mesa-devel - xorg-server-devel - util-macros - - x11/driver/xorg-video-sis/pspec.xml - - - xorg-video-sis - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 0.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-18 - 0.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.10.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 0.10.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.10.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 0.10.9 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.10.9 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.10.9 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.10.8 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.10.7 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-input-synaptics - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org synaptics input driver - X.Org synaptics giriş aygıtı sürücüsü - xorg-input-synaptics contains the X.Org driver for Synaptics touchpad devices. - xorg-input-synaptics, Synaptics dokunmatik aygıtlar için X.Org sürücüsünü içerir. - http://ftp.x.org/pub/individual/driver/xf86-input-synaptics-1.9.1.tar.bz2 - - libXi-devel - libXtst-devel - libmtdev-devel - xorg-server-devel - libevdev-devel - util-macros - - x11/driver/xorg-input-synaptics/pspec.xml - - - xorg-input-synaptics - - libXi - libXtst - libX11 - libevdev - - - /lib/udev - /usr/bin - /usr/lib/xorg - /usr/share/X11 - /usr/share/doc - /usr/share/man - - - 50-synaptics.conf - 70-touchpad-quirks.rules - - - - xorg-input-synaptics-devel - Development files for xorg-input-synaptics - xorg-input-synaptics için geliştirme dosyaları - - xorg-input-synaptics - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-01-07 - 1.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 1.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-06 - 1.9.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.9.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.9.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.9.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.9.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.8.3 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.8.2 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - vdpau-video - http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - driver - x11.driver - VDPAU backend for VA API - VA API için VDPAU arka ucu - vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards. - vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. - http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2 - - libglvnd-devel - libva-devel - libvdpau-devel - libX11-devel - mesa-devel - - - libva-vdpau-driver-0.7.4-glext-missing-definition.patch - libva-vdpau-driver-0.7.4-libvdpau-0.8.patch - libva-vdpau-driver-0.7.4-VAEncH264VUIBufferType.patch - implement-vaquerysurfaceattributes.patch - fallback-x.patch - vdpau_CreateSurfaceFromV4L2Buf-fix.patch - - x11/driver/vdpau-video/pspec.xml - - - vdpau-video - - libglvnd - libva - libvdpau - libX11 - mesa - - - /usr/lib - /usr/share/doc - - - - vdpau-video-32bit - emul32 - emul32 - - libglvnd-32bit - libva-32bit - libvdpau-32bit - libX11-32bit - mesa-32bit - - - vdpau-video - libglvnd-32bit - libva-32bit - libvdpau-32bit - libX11-32bit - mesa-32bit - - - /usr/lib32 - - - - - 2021-11-12 - 0.7.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.7.4 - First release. İdris Kalp idriskalp@gmail.com - - 2018-07-31 - 0.7.4 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 0.7.4 - rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.7.4 - rebuild + + 2019-07-07 + 2019.2 + Version bump.. Ertuğrul Erata ertugrulerata@gmail.com + + 2019-04-14 + 2019.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-19 + 2018.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-13 + 2018.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + - 2017-02-16 - 0.7.4 - Rebuild for new libvdpau. - Alihan Öztürk - alihan@pisilinux.org + 2018-05-24 + 2018.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2016-05-02 - 0.7.4 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org + 2018-02-16 + 2018.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2015-05-08 - 0.7.4 + 2018-02-02 + 2018.1 First release - Burak Ertürk - burakerturk@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - xorg-video-neomagic - http://www.x.org + qemu + http://bellard.org/qemu PisiLinux Community admins@pisilinux.org - MIT - driver - x11.driver - X.Org neomagic video driver - X.Org neomagic ekran kartı sürücüsü - xorg-video-neomagic contains the X.Org driver for NeoMagic cards. - xorg-video-neomagic, NeoMagic ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-neomagic-1.3.0.tar.bz2 + GPLv2 + app:console + hardware.virtualization + Userspace virtual machine and processor emulator + Kullanıcı uzayı sanal makine ve işlemci benzetimcisi. + QEMU emulates a full system (for example a PC), including a processor and various peripherials. It can be used to launch different operating systems without rebooting the PC or to debug system code. In user-mode emulation mode, QEMU can launch Linux processes compiled for one CPU on another CPU. + QEMU, bir PC'ye işlemcisi ve kartlarıyla birlikte öykünen bir yazılımdır. Bilgisayarı yeniden başlatmadan yeni bir işletim sistemini çalıştırmak için kullanılabilir. Ayrıca Linux altında kullanıcı kipi öykünme yöntemiyle farklı bir işlemci için derlenmiş programları çalıştırabilir. + http://wiki.qemu-project.org/download/qemu-4.2.0.tar.bz2 - xorg-server-devel - util-macros + aalib-devel + vte-devel + gtk3-devel + libXext-devel + nss-devel + alsa-lib-devel + bluez-libs-devel + cyrus-sasl-devel + libsdl-devel + pulseaudio-libs-devel + python-devel + glib2-devel + libsdl2-devel - x11/driver/xorg-video-neomagic/pspec.xml + hardware/virtualization/qemu/pspec.xml - xorg-video-neomagic + qemu - xorg-server + atk + nss + vte + gtk2 + mesa + nspr + zlib + bzip2 + cairo + glib2 + pango + libX11 + libgcc + libpng + libsdl + libusb + pixman + libXext + alsa-lib + freetype + libepoxy + bluez-libs + cyrus-sasl + fontconfig + gdk-pixbuf + pulseaudio-libs + libdrm - /usr/lib/xorg + /etc + /run + /lib + /usr/bin + /usr/sbin + /usr/lib /usr/share/doc /usr/share/man + /usr/share/qemu + /usr/share + /usr/share/icons/hicolor + /usr/share/locale/ + /usr/include + + System.Service + System.Service + + + qemu-ifup + qemu-ifdown + fedora/ksmtuned + fedora/ksm.sysconfig + fedora/ksmtuned.conf + 65-kvm.rules + - - 2021-11-12 - 1.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-08 - 1.3.0 + + 2020-03-13 + 4.2.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-11-21 - 1.2.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.2.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.2.9 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2017-03-11 - 1.2.9 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-08-31 + 2.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2017-02-16 - 1.2.9 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2017-01-29 + 2.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org - 2016-05-02 - 1.2.9 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org + 2016-06-09 + 2.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2015-05-10 - 1.2.9 + 2015-12-31 + 2.4.1 First release - Burak Ertürk - burakerturk@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - xorg-video-nouveau - http://nouveau.freedesktop.org/wiki/ + runc + https://runc.io - PisiLinux Community - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - MIT - driver - x11.driver - X.Org nouveau video driver - X.Org nouveau ekran kartı sürücüsü - xorg-video-nouveau contains the X.Org driver for NVIDIA cards. - xorg-video-nouveau, NVIDIA ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-nouveau-1.0.17.tar.bz2 + Apache-2.0 + hardware.virtualization + container cli tools + CLI tool for managing OCI compliant containers + https://github.com/opencontainers/runc/archive/refs/tags/v1.0.2.tar.gz - libdrm-nouveau - libpciaccess-devel - mesa-devel - eudev-devel - util-macros + golang + libseccomp-devel + + hardware/virtualization/runc/pspec.xml + + + runc + + libseccomp + + + /usr/bin + /usr/share/doc + + + + + 2021-09-02 + 1.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-11 + 1.0.0_rc10 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-20 + 1.0.0_rc5 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-06-10 + 1.0.0_rc5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-20 + 0.1.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-07-13 + 0.1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + spice + https://www.spice-space.org/ + + Kamil Atlı + suvari@pisilinux.org + + LGPL2.1 + library + app:console + hardware.virtualization + Simple Protocol for Independent Computing Environments + SPICE is a remote display system built for virtual environments which +allows you to view a computing 'desktop' environment not only on the +machine where it is running, but from anywhere on the Internet and +from a wide variety of machine architectures. + https://www.spice-space.org/download/releases/spice-server/spice-0.15.0.tar.bz2 + + meson + doxygen + asciidoc + lz4-devel + orc-devel + zlib-devel + python3-six + glib2-devel pixman-devel - xorg-server-devel + python3-devel + libopus-devel + openssl-devel + spice-protocol + libcacard-devel + gstreamer-devel + autoconf-archive + cyrus-sasl-devel + python3-pyparsing + libjpeg-turbo-devel + gst-plugins-base-devel + + hardware/virtualization/spice/pspec.xml + + + spice + Simple Protocol for Independent Computing Environments + + lz4 + orc + zlib + glib2 + libgcc + pixman + libopus + openssl + libcacard + gstreamer + cyrus-sasl + libjpeg-turbo + spice-protocol + gst-plugins-base + + + /usr/lib/libspice-server.so* + /usr/share/doc/ + + + + spice-devel + Development files for spice + + glib2-devel + pixman-devel + openssl-devel + spice-protocol + libcacard-devel + spice + + + /usr/include/spice-server + /usr/lib/pkgconfig + + + + + 2021-02-10 + 0.15.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + spice-protocol + https://spice-space.org/ + + Kamil Atlı + suvari@pisilinux.org + + BSD + library + app:console + hardware.virtualization + Spice protocol header files + Spice protocol header files + https://gitlab.freedesktop.org/spice/spice-protocol/-/archive/v0.14.3/spice-protocol-v0.14.3.tar.gz + + meson + + hardware/virtualization/spice-protocol/pspec.xml + + + spice-protocol + Headers for SPICE protocol + + /usr/share/doc/ + /usr/include + /usr/lib/pkgconfig + + + + + 2021-02-10 + 0.14.3 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + spice-vdagent + https://www.spice-space.org/ + + Kamil Atlı + suvari@pisilinux.org + + GPL + library + app:console + hardware.virtualization + Spice agent for Linux guests + Spice agent for Linux guests + https://www.spice-space.org/download/releases/spice-vdagent-0.21.0.tar.bz2 + + gtk3-devel + glib2-devel + eudev-devel + libX11-devel + libdrm-devel + spice-protocol + alsa-lib-devel + libXrandr-devel + libXinerama-devel + + hardware/virtualization/spice-vdagent/pspec.xml + + + spice-vdagent + Spice agent for Linux guests + + gtk3 + glib2 + libdrm + libX11 + alsa-lib + libXrandr + libXinerama + + + /usr/bin + /usr/lib/libspice-server.so* + /usr/share/doc/ + /usr/share/man + /usr/share/gdm/autostart/LoginWindow + /usr/share/gdm/greeter/autostart + /var/run/spice-vdagentd + /etc/xdg/autostart/spice-vdagent.desktop + + + + + 2021-10-10 + 0.21.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + squeak-vm + http://wiki.squeak.org/squeak/1447 + + Blue Devil + bluedevil@sctzine.com + + Apache + library + app:console + hardware.virtualization + Full-featured implementation of the Smalltalk programming language and environment. + Tam-özellikli, Smalltalk programlama dili ve ortamı uygulaması. + squeak-vm provides a full-featured implementation of the Smalltalk programming language and environment. + squeak-vm, tam-özellikli, smalltalk programlama dili ve ortamı uygulaması. + http://squeakvm.org/unix/release/Squeak-4.10.2.2614-src.tar.gz + + cmake + libglvnd-devel + libXrender-devel + pulseaudio-libs-devel + + hardware/virtualization/squeak-vm/pspec.xml + + + squeak-vm + Full-featured implementation of the Smalltalk programming language and environment. + + libXext + libglvnd + libXrender + pulseaudio-libs + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/doc/squeak-vm + + + + + 2020-05-21 + 4.10.2.2614 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + tini + https://github.com/krallin/tini + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + hardware.virtualization + A tiny but valid `init` for containers + A tiny but valid `init` for containers + https://github.com/krallin/tini/archive/v0.18.0.tar.gz + + cmake - xorg-server-21.1.diff + tini-cmake-fixes.patch - x11/driver/xorg-video-nouveau/pspec.xml + hardware/virtualization/tini/pspec.xml - xorg-video-nouveau - - libdrm - eudev - libdrm-nouveau - + tini - /usr/lib/xorg + /usr/bin /usr/share/doc - /usr/share/man - - 2021-11-12 - 1.0.17 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 1.0.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.0.16 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.0.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.0.15 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.0.15 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.0.15 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.0.13 + + 2020-03-19 + 0.18.0 rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-20 + 0.18.0 + First release Ertuğrul Erata ertugrulerata@gmail.com - - 2017-02-16 - 1.0.13 - Rebuild for new toolchain. - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-02 - 1.0.13 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 1.0.12 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - 2015-05-08 - 1.0.12 + 2018-07-08 + 0.18.0 First release - Burak Ertürk - burakerturk@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - xorg-input-wacom - http://linuxwacom.sourceforge.net/ + virt-manager + http://virt-manager.org PisiLinux Community admins@pisilinux.org GPLv2+ - driver - x11.driver - Input driver for Wacom tablets and drawing devices - Wacom tabletleri ve çizim aygıtları için giriş sürücüsü - xorg-input-wacom includes the drivers and tools for Wacom devices. - xorg-input-wacom, Wacom aygıtlarını kullanmak için sürücü ve araçları içerir. - https://github.com/linuxwacom/xf86-input-wacom/releases/download/xf86-input-wacom-0.40.0/xf86-input-wacom-0.40.0.tar.bz2 + app:gui + hardware.virtualization + Graphical tool for administering virtual machines for KVM, Xen, and QEmu + Grafik arayüzlü sanal makine yönetim aracı + Virtual Machine Manager provides a graphical tool for administering virtual machines for KVM, Xen, and QEmu. Start, stop, add or remove virtual devices, connect to a graphical or serial console, and see resource usage statistics for existing VMs on local or remote machines. Uses libvirt as the backend management API. + Virt-Manager ile kvm, qemu, xen gibi sanallaştırma sistemleriyle yaratılmış yerel veya uzak sanal makinelerin başlatılması, durdurulması, sanal cihazlar eklenip kaldırılması, grafik veya seri konsollarına bağlanılması gibi işlemler yapılabilir. Çalışmak için libvirt kütüphanesine ve servisine ihtiyaç duyar. + virt-manager-icon + https://releases.pagure.org/virt-manager/virt-manager-1.5.1.tar.gz - libXi-devel - libXrandr-devel - xorg-server-devel - libXinerama-devel - eudev-devel - libgudev-devel - doxygen - util-macros + intltool + vte-devel + gtk2-devel + libosinfo-devel + libvirt-glib-devel + python-cairo-devel + python-pygobject3-devel - x11/driver/xorg-input-wacom/pspec.xml + hardware/virtualization/virt-manager/pspec.xml - xorg-input-wacom + virt-manager - libX11 - libXi - libXrandr - libXinerama - xorg-server - eudev + ipaddr + libosinfo + libvirt-glib + libvirt-python + python-pygobject3 - /lib/udev /usr/bin - /usr/lib/xorg - /usr/share/X11 - /usr/share/doc + /usr/libexec + /etc/gconf/schemas + /usr/share/pixmaps + /usr/share /usr/share/man + /usr/share/doc + /usr/share/locale - 70-wacom.rules + tr.po - - xorg-input-wacom-devel - Development files for xorg-input-wacom - xorg-input-wacom için geliştirme dosyaları - - xorg-input-wacom - - - /usr/bin/isdv4-serial-debugger - /usr/include - /usr/lib/pkgconfig - - - - 2021-11-12 - 0.40.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 0.40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-15 - 0.39.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.34.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 0.34.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.34.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 0.34.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.34.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.34.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - 2017-02-16 - 0.34.0 + 2019-03-19 + 1.5.1 Version bump. - Alihan Öztürk - alihan@pisilinux.org + Stefan Gronewold + groni@pisilinux.org - 2016-05-16 - 0.33.0 + 2017-01-29 + 1.4.0 Version bump. - Alihan Öztürk - alihan@pisilinux.org + Stefan Gronewold + groni@pisilinux.org - 2016-05-02 - 0.32.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2016-06-09 + 1.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2015-05-08 - 0.29.0 + 2015-12-31 + 1.3.1 First release - Ergün Salman - Poyraz76@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - xorg-video-voodoo - http://www.x.org + virt-wrapper + http://www.pisilinux.org PisiLinux Community admins@pisilinux.org - MIT - driver - x11.driver - X.Org voodoo video driver - X.Org voodoo ekran kartı sürücüsü - xorg-video-voodoo contains the X.Org driver for Voodoo1 and Voodoo2 video adapters. - xorg-video-voodoo, Voodoo1 ve Voodoo2 video bağdaştırıcıları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 - - xorg-server-devel - util-macros - - - git-fixes.patch - - x11/driver/xorg-video-voodoo/pspec.xml + GPLv3 + app:console + hardware.virtualization + Wrapper for virtualization software + Sanallaştırma yazılımları için önbetik + virt-wrapper is a wrapper for virtualization applications. It warns users if they are not a member of virt group and loads the kernel modules automatically. + virt-wrapper, sanallaştırma uygulamaları için bir betik içerir. Bu betik, kullanıcıyı eğer virt grubunda değilse uyarır ve çekirdek modüllerini de otomatik olarak yükler. + https://github.com/ertugerata/virt-wrapper/archive/v.0.1.1.1.tar.gz + hardware/virtualization/virt-wrapper/pspec.xml - xorg-video-voodoo - - xorg-server - + virt-wrapper - /usr/lib/xorg + /usr/libexec + /usr/share/locale /usr/share/doc - /usr/share/man - - 2021-11-12 - 1.2.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.2.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.2.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.2.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-09-09 - 1.2.5 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.2.5 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.2.5 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.2.5 - Release bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 1.2.5 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-cirrus - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org cirrus video driver - X.Org cirrus ekran kartı sürücüsü - xorg-video-cirrus contains the X.Org driver for Cirrus Logic cards. - xorg-video-cirrus, Cirrus Logic ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 - - libpciaccess-devel - xorg-server-devel - util-macros - - x11/driver/xorg-video-cirrus/pspec.xml - - - xorg-video-cirrus - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.5.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.5.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.5.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.5.3 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.5.3 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.5.3 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.5.3 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.5.3 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.5.3 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.5.3 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-rendition - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org rendition video driver - X.Org rendition ekran kartı sürücüsü - xorg-video-rendition contains the X.Org driver for Rendition (Micron) cards. - xorg-video-rendition, Rendition (Micron) ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-rendition-4.2.7.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-rendition/pspec.xml - - - xorg-video-rendition - - xorg-server - - - /usr/lib/xorg/modules/drivers - /usr/lib/xorg/modules/*.uc - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 4.2.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 4.2.7 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 4.2.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 4.2.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 4.2.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-19 - 4.2.7 + 2018-11-13 + 0.1.1.1 Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 4.2.6 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 4.2.6 - rebuild Ertuğrul Erata ertugrulerata@gmail.com - - 2017-02-16 - 4.2.6 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 4.2.6 + + 2018-11-13 + 0.1.1.1 Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 4.2.5 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-input-mouse - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org mouse input driver - X.Org mouse giriş aygıtı sürücüsü - xorg-input-mouse contains the X.Org driver for mice. - xorg-input-mouse, fareler için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-mouse-1.9.3.tar.bz2 - - xorg-server-devel - util-macros - - - 0001-Don-t-disable-3-button-emulation-if-third-mouse-butt.patch - - x11/driver/xorg-input-mouse/pspec.xml - - - xorg-input-mouse - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - xorg-input-mouse-devel - Development files for xorg-input-mouse - - xorg-input-mouse - - - /usr/include/xorg/xf86-mouse-properties.h - /usr/lib/pkgconfig/xorg-mouse.pc - - - - - 2021-11-12 - 1.9.3 - rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.9.3 - rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 1.9.3 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.9.3 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-21 - 1.9.3 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-07-31 - 1.9.3 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-11 - 1.9.2 - rebuild Ertuğrul Erata ertugrulerata@gmail.com - 2017-02-16 - 1.9.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2017-03-20 + 0.1.1 + Release Bump + Kamil Atlı + suvari@pisilinux.org - 2016-05-02 - 1.9.1 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org + 2016-06-09 + 0.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2015-05-08 - 1.9.1 + 2014-11-23 + 0.1.1 First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-vmware - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vmware video driver - X.Org vmware ekran kartı sürücüsü - xorg-video-vmware contains the X.Org driver for VMWare virtual machines. - xorg-video-vmware, VMWare sanal makineleri için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-vmware-13.3.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-vmware/pspec.xml - - - xorg-video-vmware - - mesa - eudev - libdrm - llvm-libs - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 13.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-24 - 13.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 13.3.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 13.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-19 - 13.3.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 13.3.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 13.2.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 13.2.1 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 13.2.1 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 13.2.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 13.1.0 - Release bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 13.1.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-input-acecad - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org acecad tablet input driver - X.Org acecad tablet giriş aygıtı sürücüsü - xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2 - - xorg-server-devel - xorg-proto - libmtdev-devel - sysfsutils-devel - util-macros - - - assign-local-private-after-allocating.patch - - x11/driver/xorg-input-acecad/pspec.xml - - - xorg-input-acecad - - sysfsutils - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.5.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.5.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-07 - 1.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.5.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.5.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.5.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.5.0 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.5.0 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.5.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - libva-intel-driver - http://freedesktop.org/wiki/Software/vaapi - Osman Erkan osman.erkan@pisilinux.org - - MIT - driver - x11.driver - VA-API implementation for Intel G45 and HD Graphics family - libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family. - https://github.com/01org/intel-vaapi-driver/releases/download/2.4.1/intel-vaapi-driver-2.4.1.tar.bz2 - - libdrm-devel - libX11-devel - libva-devel - - x11/driver/libva-intel-driver/pspec.xml - - - libva-intel-driver - - libdrm - libdrm-intel - libva - - - /usr/lib - /usr/share/doc - - - - - 2021-11-12 - 2.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-30 - 2.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 2.4.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-25 - 2.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-22 - 2.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 2.0.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.7.3 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.7.3 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-11-03 - 1.7.2 - Version Bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-05-02 - 1.7.0 - Version Bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.5.1 - First release - Burak Ertürk - burakerturk@pisilinux.org - xorg-input-elographics - http://www.x.org + virtualbox + http://www.virtualbox.org/ - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org Elographics TouchScreen input driver - X.Org Elographics dokunmatik ekran sürücüsü - xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-input-elographics-1.4.2.tar.bz2 - - xorg-server-devel - libmtdev-devel - util-macros - - x11/driver/xorg-input-elographics/pspec.xml - - - xorg-input-elographics - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.4.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.4.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-18 - 1.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.4.1 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.4.1 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.4.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.4.1 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.4.1 - Rebuild - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.4.1 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-input-libinput - http://www.x.org - - PisiLinux Community - admin@pisilinux.org - - MIT - driver - x11.driver - Generic input driver for the X.Org server based on libinput - Xorg sunucusu için genel giriş sürücüsü. - Generic input driver for the X.Org server based on libinput - xorg-input-libinput, libinputa dayalı Xorg sunucusu için genel giriş sürücüsüdür. - mirrors://xorg/individual/driver/xf86-input-libinput-1.2.0.tar.bz2 - - libX11-devel - eudev-devel - xorg-server-devel - libinput-devel - util-macros - - x11/driver/xorg-input-libinput/pspec.xml - - - xorg-input-libinput - - libinput - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - /usr/share/X11/xorg.conf.d - - - - xorg-input-libinput-devel - Development files for xorg-input-libinput - - xorg-input-libinput - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-12 - 1.2.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-04 - 1.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 1.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.30.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-16 - 0.29.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-18 - 0.29.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.28.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-03 - 0.28.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 0.28.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.28.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-11 - 0.27.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-24 - 0.26.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.24.0 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.24.0 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-11-03 - 0.22.0 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 0.19.0 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-04-08 - 0.18.0 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-s3virge - https://www.x.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org s3virge video driver - X.Org s3virge ekran kartı sürücüsü - xorg-video-s3virge contains the X.Org driver for S3 Virge cards. - xorg-video-s3virge, S3 Virge ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-s3virge-1.11.0.tar.bz2 - - xorg-server-devel - util-macros - - - check-max-value.patch - - x11/driver/xorg-video-s3virge/pspec.xml - - - xorg-video-s3virge - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.11.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.11.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-20 - 1.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.10.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.10.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.10.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.10.7 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.10.7 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.10.7 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.10.7 - Version bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.10.6 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-amdgpu - https://www.x.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.org amdgpu video driver - X.org amdgpu video driver - X.org amdgpu video driver - X.org amdgpu video driver - https://www.x.org/archive/individual/driver/xf86-video-amdgpu-21.0.0.tar.bz2 - - libdrm-devel - libpciaccess-devel - mesa-devel - pixman-devel - util-macros - xorg-server-devel - - x11/driver/xorg-video-amdgpu/pspec.xml - - - xorg-video-amdgpu - - mesa - eudev - libdrm-amd - xorg-server - - - /usr/lib - /usr/share/X11/xorg.conf.d - /usr/share/man - /usr/share/doc - - - - - 2021-11-12 - 21.0.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-27 - 21.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 19.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-18 - 19.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-19 - 19.0.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 18.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 18.1.0 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.18.1 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-17 - 1.18.1 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-03-07 - 1.18.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2017-09-09 - 1.4.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xorg-input-evdev - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org evdev input driver - X.Org evdev giriş aygıtı sürücüsü - xorg-input-evdev contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. - xorg-input-evdev, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. - mirrors://xorg/individual/driver/xf86-input-evdev-2.10.6.tar.bz2 - - xorg-server-devel - libmtdev-devel - libevdev-devel - util-macros - eudev-devel - xorg-proto - libevdev-devel - - x11/driver/xorg-input-evdev/pspec.xml - - - xorg-input-evdev - - libmtdev - libevdev - eudev - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - /usr/share/X11/xorg.conf.d/10-evdev.conf - - - - xorg-input-evdev-devel - Development files for evdev driver - evdev sürücüsü için geliştirme dosyaları - - xorg-input-evdev - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-01-07 - 2.10.6 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 2.10.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 2.10.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 2.10.6 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.10.6 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-06-03 - 2.10.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 2.10.5 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 2.10.5 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-03 - 2.10.4 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-02 - 2.10.2 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 2.9.2 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-vesa - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org vesa video driver - X.Org vesa ekran kartı sürücüsü - xorg-input-vesa contains the X.Org driver for Generic VESA cards. - xorg-input-vesa, VESA uyumlu ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-vesa-2.5.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-vesa/pspec.xml - - - xorg-video-vesa - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2020-11-12 - 2.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-04 - 2.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 2.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 2.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 2.4.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 2.4.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-16 - 2.4.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 2.3.4 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 2.3.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 2.3.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 2.3.4 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 2.3.3 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-fbdev - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org fbdev video driver - X.Org fbdev ekran kartı sürücüsü - xorg-video-fbdev contains the X.Org driver for Linux framebuffer device. - xorg-video-fbdev, Linux framebuffer aygıtı için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-fbdev-0.5.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-fbdev/pspec.xml - - - xorg-video-fbdev - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 0.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 0.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 0.4.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 0.4.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 0.4.4 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.4.4 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 0.4.4 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 0.4.4 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 0.4.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0.4.4 - Release bump. - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 0.4.4 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-i740 - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org i740 video driver - X.Org i740 ekran kartı sürücüsü - xorg-video-i740 contains the X.Org driver for Intel i740 cards. - xorg-video-i740, Intel i740 ekran kartları için X.Org sürücüsünü içerir. - mirrors://xorg/individual/driver/xf86-video-i740-1.4.0.tar.bz2 - - xorg-server-devel - util-macros - - x11/driver/xorg-video-i740/pspec.xml - - - xorg-video-i740 - - xorg-server - - - /usr/lib/xorg - /usr/share/doc - /usr/share/man - - - - - 2021-11-12 - 1.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 1.4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 1.4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-14 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 1.3.6 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.3.6 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-09 - 1.3.6 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 1.3.6 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 1.3.6 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 1.3.5 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-08 - 1.3.4 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - xorg-video-intel - http://www.x.org - - PisiLinux Community - admins@pisilinux.org - - MIT - driver - x11.driver - X.Org intel video driver - X.Org intel ekran kartı sürücüsü - xorg-video-intel contains the X.Org driver for Intel video chipsets. - xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir. - http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/xf86-video-intel-20210222.tar.xz - - libX11-devel - libxcb-devel - libXv-devel - libdrm-devel - pixman-devel - libXext-devel - libXtst-devel - libXvMC-devel - xcb-util-devel - libXrandr-devel - libXfixes-devel - libXcursor-devel - libXrender-devel - libXdamage-devel - libXinerama-devel - libdrm-intel - eudev-devel - util-macros - libpciaccess-devel - xorg-server-devel - libxshmfence-devel - libXfont-devel - libXfont2-devel - libXScrnSaver-devel - - x11/driver/xorg-video-intel/pspec.xml - - - xorg-video-intel - - libX11 - libxcb - libXv - libdrm - pixman - libXext - libXtst - libXvMC - xcb-util - libXrandr - libXfixes - libXcursor - libXrender - libXdamage - libXinerama - libdrm-intel - libpciaccess - eudev - libxshmfence - libXScrnSaver - - - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/man - /usr/share - - - - - 2022-05-25 - 20210222 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-12 - 20210222 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-06 - 20210222 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-30 - 20200817 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 20200518 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-07 - 20190723 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 20190208 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-09 - 20170826 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-21 - 20170826 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 20170826 - Rebuild New T. bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-10 - 20170826 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 20160902 - rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-16 - 20160902 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-02 - 0340718 - Version bump - Burak Ertürk - burakerturk@pisilinux.org - - - 2015-05-10 - 2.99.917 - First release - Burak Ertürk - burakerturk@pisilinux.org - - - - - - perf - http://www.kernel.org - - Ertuğrul Erata - ertugrulerata@gmail.com + Serdar Soytetir + kaptan@pisilinux.org GPLv2 app:gui - kernel.tools - Performance analyser tool that makes full use of the Linux performance counter subsystem - perf is a new tool which is used to optimize, validate and measure applications, workloads or the full system through the Linux performance counter subsystem. - https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.gz + hardware.virtualization + A powerful virtualization program + Güçlü bir sanallaştırma programı + VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. This is the Open Source Edition which lacks USB support and some other things. + VirtualBox, ev kullanımı yanında kurumsal kullanım alanı da bulan güçlü bir xf86 sanallaştırma ürünleri ailesidir. Bu sürüm, USB ve birkaç özellik için desteği bulunmayan açık kodlu uyarlamasıdır. + http://download.virtualbox.org/virtualbox/6.1.34/VirtualBox-6.1.34.tar.bz2 + + dkms.conf + dkms-guest.conf + LocalConfig.kmk + - git - libunwind-devel - audit-devel - xz-devel - gtk2-devel - unifdef - elfutils-devel - diffutils - newt-devel - xmlto - asciidoc - pciutils-devel - numactl-devel + dev86 + cdrkit + acpica + mesa-devel + curl-devel python-devel - slang-devel - glib2-devel - zlib-devel - perl - util-linux - libxslt - openssl-devel - systemtap-sdt-devel - zstd-devel + pam-devel + device-mapper-devel libcap-devel - python3 + gsoap-devel + libXt-devel + libXmu-devel + libIDL-devel + libsdl-devel + libvpx-devel + libXext-devel + libxslt-devel + libopus-devel + mesa-glu-devel + alsa-lib-devel + libXfixes-devel + libXrandr-devel + libXdamage-devel + libXcursor-devel + libXinerama-devel + xorg-server-devel + libvncserver-devel + libXcomposite-devel + pulseaudio-libs-devel + kernel-headers + kernel-module-headers + qt5-x11extras-devel + jdk8-openjdk + jre8-openjdk + libxcb-devel + qt5-base-devel + qt5-linguist + docbook-xml + libglvnd-devel + python3-devel - patches/linux/patch-5.15.41.xz - patches/aufs5/aufs5.15.36-20220509.patch - patches/aufs5/aufs5-base.patch - patches/aufs5/aufs5-kbuild.patch - patches/aufs5/aufs5-loopback.patch - patches/aufs5/aufs5-mmap.patch - patches/aufs5/tmpfs-idr.patch - patches/aufs5/vfs-ino.patch - patches/aufs5/aufs5-standalone.patch - patches/mageia/fs-procfs-do-not-list-TID-0-in-proc-pid-task.patch - patches/mageia/CVE-2019-12379.patch - patches/mageia/CVE-2020-16119-DCCP-CCID-structure-use-after-free.patch - patches/mageia/platform-x86-add-shuttle-wmi-driver.patch - patches/mageia/platform-x86-shuttle-wmi-drop-devinit-exit.patch - patches/mageia/platform-x86-shuttle-wmi-4.2-buildfix.patch - patches/mageia/platform-x86-shuttle-wmi-4.13-buildfix.patch - patches/mageia/platform-x86-shuttle-wmi-kernel-5.5.patch - patches/mageia/3rd-3rdparty-tree.patch - patches/mageia/3rd-3rdparty-merge.patch - patches/mageia/3rd-ndiswrapper-1.63.patch - patches/mageia/3rd-ndiswrapper-Kconfig.patch - patches/mageia/3rd-ndiswrapper-Makefile-build-fix.patch - patches/mageia/3rd-niswrapper-Kconfig-Makefile.patch - patches/mageia/3rd-rtl8812au.patch - patches/mageia/3rd-rtl8812au-Kconfig-Makefile.patch - patches/mageia/3rd-rtl8812au-rename.patch - patches/mageia/3rd-rtl8812au-kernel-5.12.patch - patches/mageia/3rd-rtl8812au-kernel-5.15.patch - patches/mageia/3rd-rtl8723de.patch - patches/mageia/3rd-rtl8723de-Kconfig-Makefile.patch - patches/mageia/3rd-rtl8723de-fix-redefine.patch - patches/mageia/3rd-rtl8723de-nodebug.patch - patches/mageia/3rd-rtl8223de-kernel-5.6.patch - patches/mageia/3rd-rtl8723de-add-kernel-5.8-support.patch - patches/mageia/3rd-viahss-0.92.patch - patches/mageia/3rd-viahss-config.patch - patches/mageia/3rd-viahss-module-license.patch - patches/mageia/3rd-viahss-2.6.35-buildfix.patch - patches/mageia/3rd-viahss-3.0-buildfix.patch - patches/mageia/3rd-viahss-Kconfig-Makefile.patch - patches/mageia/3rd-rtl8821ce.patch - patches/mageia/3rd-rtl8821ce-Kconfig-Makefile.patch - patches/mageia/3rd-rtl8821ce-5.8-fix.patch - patches/mageia/3rd-rtl8821ce-kernel-5.10.patch - patches/mageia/3rd-rtl8821ce-kernel-5.12.patch - patches/mageia/3rd-rtl8821ce-kernel-5.15.patch - patches/mageia/3rd-fix-kconfig.patch + wrapper.patch + 004-drop-Wno-format.patch + 005-gsoap-build.patch + 006-rdesktop-vrdp-keymap-path.patch + 008-root-window.patch + python.patch + 008-no-vboxvideo.patch + VirtualBox-6.1.2-disable-update.patch + 012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch + 013-Makefile.patch + 017-fix-narrowing-conversion.patch + 018-xclient.patch + 019-vboxr0-cflags.patch - kernel/tools/perf/pspec.xml + hardware/virtualization/virtualbox/pspec.xml - perf + virtualbox - audit - xz - newt - elfutils - gtk2 - numactl - libunwind - python - slang - glib2 + qt5-base + libxcb + mesa + libXt + gsoap + libvpx + libXmu + libsdl + libXext + libopus + libXcursor + libXinerama + virt-wrapper + libvncserver + curl zlib - perl - zstd - libcap + libX11 + libgcc + libpng + python + libxml2 + openssl + device-mapper + qt5-x11extras + libglvnd + python3 + + module-virtualbox + virtualbox-dkms + - /etc + /etc/vbox /usr/bin - /usr/lib - /usr/libexec - /usr/include - /usr/share/man/ - /usr/share/perf-core - /usr/share/doc/perf-tip + /usr/lib/virtualbox + /usr/lib/python* + /usr/share/virtualbox + /usr/share/applications + /usr/share/pixmaps + /usr/share/icons/hicolor + /usr/share/mime/packages + + System.Package + System.Service + + + vboxreload + 60-vboxdrv.rules + 60-vboxguest.rules + + + + virtualbox-guest-utils + VirtualBox guest utilities and drivers + VirtualBox misafir işletim sistemleri için yardımcı araçlar ve sürücüler + x11.driver + + pam + libXt + libXmu + libXext + libXfixes + libXrandr + libXdamage + xorg-server + libXcomposite + + module-virtualbox-guest + virtualbox-guest-dkms + + + + /etc/X11/xinit/xinitrc.d + /lib/udev/rules.d + /etc/xdg/autostart + /lib/security + /sbin + /usr/bin/VBoxClient* + /usr/bin/VBoxControl + /usr/bin/VBoxDRMClient + /usr/sbin + /usr/lib + /usr/kde/*/share/autostart + /usr/share/X11 + /usr/lib/xorg/modules + + + vboxclient.sh + + + + virtualbox-dkms + VirtualBox Host kernel modules sources + + dkms + + + /usr/src + + + module-virtualbox + + + + virtualbox-guest-dkms + VirtualBox Guest kernel modules sources + + dkms + + + /usr/src/*-guest-* + + + module-virtualbox-guest + + + 2022-04-25 + 6.1.34 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-25 + 6.1.32 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-11 + 6.1.30 + rebuild for kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-23 + 6.1.30 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-20 + 6.1.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-09 + 6.1.26 + rebuild for kernel + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-29 + 6.1.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-22 + 6.1.24 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-01 + 6.1.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-22 + 6.1.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 6.1.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-27 + 6.1.16 + Version bump kernel510. + İdris Kalp + idriskalp@gmail.com + + + 2020-11-10 + 6.1.16 + Version bump kernel597. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-05 + 6.1.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-18 + 6.1.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-08 + 6.1.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-30 + 6.1.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 6.1.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-13 + 6.1.4 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2020-04-09 + 6.1.4 + Rebuild virtualbox-guest-iso + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-22 + 6.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-26 + 6.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 6.1.0 + Add dkms packages + Marcin Bojara + marcin.bojara@gmail.com + + + 2019-12-24 + 6.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-12 + 6.0.14 + Patched for kernel 5.4 + Idris Kalp + idriskalp@gmail.com + - 2022-05-21 - 5.15.41 + 2019-10-29 + 6.0.14 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-19 - 5.10.45 + 2019-09-29 + 6.0.12 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-02 - 5.10.41 + 2019-08-02 + 6.0.10 Version bump. - İdris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2020-12-27 - 5.10.19 + 2019-05-17 + 6.0.8 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-12-27 - 5.10.3 + 2019-04-19 + 6.0.6 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2020-08-07 - 5.7.14 + 2019-01-29 + 6.0.4 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2020-06-18 - 5.6.19 + 2019-01-16 + 6.0.2 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2020-06-01 - 5.6.15 + 2018-12-23 + 6.0.0 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2020-05-04 - 5.6.10 + 2018-11-23 + 5.2.22 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2020-04-13 - 5.6.4 + 2018-09-18 + 5.2.18 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-17 + 5.2.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2020-01-30 - 5.4.16 + 2018-05-10 + 5.2.12 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2019-06-09 - 4.19.49 + 2018-04-18 + 5.2.10 Version bump. - Idris Kalp - idriskalp@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2019-04-06 - 4.19.34 - Version bump. + 2018-04-01 + 5.2.8 + Fix chmod and file path. Ertuğrul Erata ertugrulerata@gmail.com - 2018-12-22 - 4.14.90 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-03-15 + 5.2.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2018-10-06 - 4.14.73 + 2018-03-03 + 5.2.8 Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2018-10-04 - 4.14.61 + 2017-11-25 + 5.2.2 Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + Mustafa Cinasal + muscnsl@gmail.com - 2018-07-13 - 4.14.55 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-03-11 + 5.1.14 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org - 2018-03-11 - 4.9.86 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-03-04 + 5.1.14 + Version Bump + Alihan Öztürk + alihan@pisilinux.org - 2018-03-03 - 4.9.80 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-01-15 + 5.1.12 + Version Bump + Alihan Öztürk + alihan@pisilinux.org - 2018-01-06 - 4.9.75 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2016-12-13 + 5.1.10 + Version Bump + Ergün Salman + poyraz76@pisilinux.org - 2017-12-20 - 4.9.70 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2016-09-23 + 5.1.6 + Version Bump + Ergün Salman + poyraz76@pisilinux.org - 2017-12-07 - 4.9.66 + 2016-08-17 + 5.1.4 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-22 + 5.1.2 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-17 + 5.1.0 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-17 + 5.1.0b + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-12 + 5.0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-09 + 5.0.12 + First release + ali algul + alialgul@pisilinux.org + + + + + + virtualbox-guest-iso + https://www.virtualbox.org/ + + PisiLinux Community + admins@pisilinux.org + + custom + library + hardware.virtualization + The official VirtualBox Guest Additions ISO image + The official VirtualBox Guest Additions ISO image + The official VirtualBox Guest Additions ISO image + The official VirtualBox Guest Additions ISO image + https://download.virtualbox.org/virtualbox/6.1.34/VBoxGuestAdditions_6.1.34.iso + hardware/virtualization/virtualbox-guest-iso/pspec.xml + + + virtualbox-guest-iso + + virtualbox + + + /usr/lib + + + + + 2022-04-29 + 6.1.34 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2022-01-26 + 6.1.32 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-23 + 6.1.30 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-20 + 6.1.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-29 + 6.1.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-22 + 6.1.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-01 + 6.1.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-29 + 6.1.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-06 + 6.1.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-04 + 6.1.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-07 + 6.1.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-30 + 6.1.8 Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 6.1.6 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2020-04-05 + 6.1.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xdg-desktop-portal + https://github.com/flatpak/xdg-desktop-portal + + Ertuğrul Erata + ertugrulerata@gmail.com + + LGPLv2 + hardware.virtualization + A portal frontend service for Flatpak and possibly other desktop containment frameworks + A portal frontend service for Flatpak and possibly other desktop containment frameworks + https://github.com/flatpak/xdg-desktop-portal/archive/1.14.3.tar.gz + + xmlto + python3 + dbus-devel + util-linux + fuse3-devel + glib2-devel + gettext-devel + pipewire-devel + json-glib-devel + flatpak-devel + + hardware/virtualization/xdg-desktop-portal/pspec.xml + + + xdg-desktop-portal + + fuse3 + glib2 + pipewire + json-glib + gdk-pixbuf + flatpak + + + /usr/lib + /usr/libexec + /usr/share/dbus-1 + /usr/share/pkgconfig + /usr/share/man + /usr/share/locale + /usr/share/doc + + + + + 2022-04-23 + 1.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-25 + 1.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-24 + 1.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 1.8.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-30 + 1.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-07 + 1.4.2 + Version bump.. Ertuğrul Erata ertugrulerata@gmail.com - 2017-11-19 - 4.9.63 - Version bump + 2019-04-14 + 1.2.0 + Version bump. Ertuğrul Erata ertugrulerata@gmail.com - 2016-07-13 - 4.7.0 - Version bump + 2018-10-20 + 1.0.3 + Version bump. Ertuğrul Erata ertugrulerata@gmail.com - 2016-07-13 - 4.6.3 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-08-31 + 0.10 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2016-05-02 - 4.4.8 - Version bump + 2018-02-16 + 0.10 + Version bump. Ertuğrul Erata ertugrulerata@gmail.com - 2016-03-06 - 4.4.4 + 2018-02-04 + 0.9 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -255545,366 +195839,95 @@ Gnome session. - module-nvidia390 - http://www.nvidia.com + xdg-desktop-portal-gtk + https://github.com/flatpak/xdg-desktop-portal-gtk - Marcin Bojara - marcin@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - NVIDIA - kernel.drivers - NVIDIA drivers for GeForce 6xxx and newer GPUs - NVIDIA graphics drivers provide optimized 2D/3D performance. - http://http.download.nvidia.com/XFree86/Linux-x86/390.144/NVIDIA-Linux-x86-390.144.run - http://http.download.nvidia.com/XFree86/Linux-x86_64/390.144/NVIDIA-Linux-x86_64-390.144.run - - dkms.conf - kernel-5.14-pdev.patch - kernel-5.14-state.patch - + LGPLv2 + hardware.virtualization + A portal frontend service for Flatpak and possibly other desktop containment frameworks + A portal frontend service for Flatpak and possibly other desktop containment frameworks + https://github.com/flatpak/xdg-desktop-portal-gtk/releases/download/1.10.0/xdg-desktop-portal-gtk-1.10.0.tar.xz - kernel-module-headers - libX11-devel - gtk2-devel - gtk3-devel + xmlto + python3-devel + glib2-devel + dbus-devel + util-linux + flatpak-devel + fuse-devel + gnome-desktop-devel + xdg-desktop-portal + gettext-devel - kernel/drivers/module-nvidia390/pspec.xml + hardware/virtualization/xdg-desktop-portal-gtk/pspec.xml - module-nvidia390 - Kernel module for current NVIDIA graphics driver releases - driver - - noDelta - + xdg-desktop-portal-gtk - kernel - - - /lib/modules - /etc/modprobe.d - - - nvidia390-dkms - - - modprobe.conf - - - - nvidia-xconfig390 - Xconfig file for nvidia390 kernel driver - app:console - hardware.graphics - - - module-nvidia390 - nvidia390-dkms - - - - /usr/bin/nvidia-xconfig - /usr/share/man/man1/nvidia-xconfig.1 - - - - xorg-video-nvidia390 - driver - - noDelta - - - libXext - libX11 - mesa - xorg-server - vulkan - opencl-icd - libglvnd - - module-nvidia390 - nvidia390-dkms - - - - /etc/OpenCL - /usr/bin - /usr/lib - /usr/share/X11 - /usr/share/nvidia390 - /usr/share/doc - /usr/share/man - - - xorg-video-nvidia-current - xorg-video-nvidia304 - xorg-video-nvidia340 - - - System.Package - - - - xorg-video-nvidia390-32bit - 32-bit shared libraries for xorg-video-nvidia390 - emul32 - - noDelta - - emul32 - - libvdpau-32bit - - - zlib-32bit - mesa-32bit - libX11-32bit - libXext-32bit - opencl-icd-32bit - vulkan-32bit - libglvnd-32bit - xorg-video-nvidia390 - atk - gtk2 + glib2 gtk3 cairo - glib2 - pango + fontconfig + gnome-desktop gdk-pixbuf + xdg-desktop-portal + flatpak - /usr/lib32 - /usr/share/nvidia390/32bit-ld.so.conf + /usr/lib + /usr/libexec + /usr/share/dbus-1 + /usr/share/applications + /usr/share/xdg-desktop-portal + /usr/share/locale + /usr/share/doc - - xorg-video-nvidia-current-32bit - xorg-video-nvidia304-32bit - xorg-video-nvidia340-32bit - - - - nvidia390-dkms - NVIDIA driver sources for linux - driver - - noDelta - - - dkms - xorg-video-nvidia390 - - - /etc/modprobe.d/nvidia390-dkms.conf - /usr/src/nvidia* - - - module-nvidia390 - nvidia340-dkms - nvidia430-dkms - nvidia-current-dkms - nvidia390 - - - modprobe.conf - xorg.conf - - - - nvidia390 - Meata package for nvidia390 drivers - driver - - noDelta - - - module-nvidia390 - xorg-video-nvidia390 - - - /var/tmp/nvidia - - - nvidia390-dkms - - - nvidia.txt - - - 2022-05-22 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-15 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-23 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-31 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-15 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-27 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-19 - 390.144 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-11 - 390.144 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-30 - 390.143 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-10 - 390.143 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 390.143 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-02 - 390.143 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-05-14 - 390.141 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-14 - 390.141 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-29 - 390.141 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 390.141 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-29 - 390.138 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-06 - 390.138 - Add comar script and meta package - Marcin Bojara - marcin.bojara@gmail.com - - - 2020-07-05 - 390.132 - Add comar script and meta package - Marcin Bojara - marcin.bojara@gmail.com - - - 2020-06-01 - 390.132 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-03 - 390.132 - Rebuild. - Mustafa Cinasal Bojara - muscnsl@gmail.com - - 2020-01-31 - 390.132 - Rebuild. - Mustafa Cinasal Bojara + 2021-09-24 + 1.10.0 + Version bump. + Mustafa Cinasal muscnsl@gmail.com - 2020-01-09 - 390.132 - Add dkms support. - Marcin Bojara - marcin.bojara@gmail.com + 2021-05-05 + 1.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-12-12 - 390.132 - First release - İdris Kalp - idriskalp@gmail.com + 2020-03-30 + 1.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-10 + 1.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-07 + 1.4.0 + Version bump.. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-05-12 + 1.2.0 + First Release. + Ertuğrul Erata + ertugrulerata@gmail.com @@ -256060,512 +196083,6 @@ Gnome session. - - - module-nvidia340 - https://www.nvidia.com/ - - Pisi Linux Community - admins@pisilinux.org - - NVIDIA - kernel.drivers - NVIDIA drivers for GeForce 6xxx and newer GPUs - GeForce 340xx NVIDIA ekran kartları için sürücüler - Controladores nVIDIA de kernel y glx para tarjetas NV3 o mejor (Geforce FX o mejor) - NVIDIA graphics drivers provide optimized 2D/3D performance. - NVIDIA grafik sürücüleri daha iyi 2B/3B başarımı sağlar. - Controladores de kernel nVIDIA y glx para rendimiento optimizado 2d/3d en Linux (Para NV3X o mejor). - http://http.download.nvidia.com/XFree86/Linux-x86/340.108/NVIDIA-Linux-x86-340.108.run - http://http.download.nvidia.com/XFree86/Linux-x86_64/340.108/NVIDIA-Linux-x86_64-340.108.run - - dkms.conf - 0001-kernel-5.7.patch - 0002-kernel-5.8.patch - 0003-kernel-5.9.patch - 0004-kernel-5.10.patch - 0005-kernel-5.11.patch - 0006-kernel-5.14.patch - 0008-fix-5.15.patch - - - kernel-module-headers - - kernel/drivers/module-nvidia340/pspec.xml - - - module-nvidia340 - Kernel module for NVIDIA driver 340.xx releases - GeForce 340xx NVIDIA grafik sürücüleri için çekirdek modülü - driver - - noDelta - - - kernel - - - /lib/modules - - - nvidia340-dkms - - - - xorg-video-nvidia340 - GeForce 340xx NVIDIA userspace sürücüleri ve ikili dosyaları - driver - - noDelta - - - libXext - xorg-server - libX11 - opencl-icd - - module-nvidia340 - nvidia340-dkms - - - - /etc/OpenCL - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man - - - xorg-video-nvidia-current - xorg-video-nvidia304 - - - System.Package - - - - xorg-video-nvidia340-32bit - 32-bit shared libraries for xorg-video-nvidia340 - xorg-video-nvidia340 için 32-bit paylaşımlı kitaplıklar - emul32 - - noDelta - - emul32 - - libvdpau-32bit - - - zlib-32bit - libX11-32bit - libXext-32bit - opencl-icd-32bit - xorg-video-nvidia340 - - - /usr/lib32 - /usr/share/nvidia-current/32bit-ld.so.conf - - - xorg-video-nvidia-current-32bit - xorg-video-nvidia304-32bit - - - - nvidia340-dkms - NVIDIA driver sources for linux - driver - - noDelta - - - dkms - xorg-video-nvidia340 - - - /etc/modprobe.d/nvidia340-dkms.conf - /usr/src/nvidia* - - - module-nvidia340 - nvidia-current-dkms - nvidia430-dkms - nvidia390-dkms - nvidia340 - - - modprobe.conf - xorg.conf - - - - nvidia340 - Meata package for nvidia340 drivers - driver - - noDelta - - - module-nvidia340 - xorg-video-nvidia340 - - - /var/tmp/nvidia - - - nvidia340-dkms - - - nvidia.txt - - - - - 2022-05-22 - 340.108 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-15 - 340.108 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-23 - 340.108 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-31 - 340.108 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-15 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-17 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-27 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-19 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-12 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-10 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-10 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-13 - 340.108 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2021-06-02 - 340.108 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2021-05-12 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-29 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-05 - 340.108 - Add comar script and meta package - Marcin Bojara - marcin.bojara@gmail.com - - - 2020-06-01 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-03 - 340.108 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 340.108 - Rebuild. - Mustafa Cinasal Bojara - muscnsl@gmail.com - - - 2020-01-09 - 340.108 - Add dkms support. Version bump - Marcin Bojara - marcin.bojara@gmail.com - - - 2019-12-28 - 340.107 - Rebuild for new kernel. - Idris Kalp - idriskalp@gmail.com - - - 2019-08-14 - 340.107 - Rebuild for new kernel. - Idris Kalp - idriskalp@gmail.com - - - 2019-06-09 - 340.107 - Rebuild for new kernel. - Idris Kalp - idriskalp@gmail.com - - - 2019-12-05 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-06 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-20 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-22 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-06 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-13 - 340.107 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-29 - 340.106 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-11 - 340.106 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-03 - 340.106 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-06 - 340.104 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-20 - 340.104 - Rebuild for new kernel. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-06 - 340.104 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-24 - 340.102 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-22 - 340.102 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2017-07-07 - 340.102 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-11 - 340.101 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2017-01-31 - 340.101 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-11 - 340.98 - Rebuild for kernel 4.8.13 - Kamil Atlı - suvari@pisilinux.org - - - 2016-11-05 - 340.98 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-08-28 - 340.96 - Rebuild for kernel 4.7.2 - Kamil Atlı - suvari@pisilinux.org - - - 2016-08-06 - 340.96 - Rebuild for kernel 4.7.0 - Kamil Atlı - suvari@pisilinux.org - - - 2016-07-17 - 340.96 - Rebuild for new kernel - Kamil Atlı - suvari@pisilinux.org - - - 2016-04-30 - 340.96 - Rebuild for new kernel - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-03-06 - 340.96 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - module-nvidia-current @@ -257176,18235 +196693,1182 @@ Gnome session. - blueman - https://github.com/blueman-project/blueman + module-nvidia340 + https://www.nvidia.com/ - PisiLinux Community + Pisi Linux Community admins@pisilinux.org - GPLv3 - app:gui - library - hardware.bluetooth - GTK+ Bluetooth Manager - GTK+ Bluetooth Yöneticisi - blueman is a bluetooth manager application which is designed to be simple and intuitive for everyday bluetooth tasks. It's written with GTK+ toolkit. - blueman, kullanıcının günlük bluetooth görevlerini kolaylıkla yerine getirmesi için basit bir şekilde tasarlanmış ve GTK+ grafik arayüz kitaplığı kullanılarak yazılmış bir bluetooth yöneticisidir. - bluetooth - https://github.com/blueman-project/blueman/releases/download/2.2.3/blueman-2.2.3.tar.gz - - intltool - unifdef - polkit-devel - iproute2 - util-macros - gettext-devel - python3-devel - itstool - docbook-xml - docbook-xsl - cython - gtk3-devel - glib2-devel - notify-python - bluez-libs-devel - python-gtk-devel - python3-pygobject3-devel - pulseaudio-libs-devel - startup-notification-devel - - hardware/bluetooth/blueman/pspec.xml - - - blueman - - gtk3 - glib2 - python3 - bluez-libs - startup-notification - python3-pygobject3 - - - /usr/bin - /usr/libexec - /usr/share/locale - /usr/lib - /usr/lib/python3* - /usr/lib/nautilus-sendto/ - /usr/share - /usr/share/polkit-1 - /usr/share/doc - /usr/share/man - /etc/dbus-1/system.d - /etc/xdg/autostart - - - - - 2021-11-10 - 2.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-17 - 2.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 2.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-14 - 2.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-14 - 2.0.5 - python-pygopject3 runtime deps add - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-09-01 - 2.0.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 2.0.5 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-10 - 2.0.4 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2016-09-11 - 2.0.4 - First release - Ergün Salman - poyraz76@pisilinux.org - - - - - - bluez - http://bluez.sourceforge.net - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv2+ - service - library - app:console - hardware.bluetooth - Official Linux Bluetooth protocol stack - Linux resmi Bluetooth protokol yığını - bluez contains the tools and libraries that provides support for the core Bluetooth layers and protocols. - Bu projenin genel amacı Linux'ta Bluetooth kablosuz standartların ayrıntılarını yerine getirmektir. - https://mirrors.edge.kernel.org/pub/linux/bluetooth/bluez-5.62.tar.xz - - docutils - alsa-lib-devel - cups-devel - dbus-devel - eudev-devel - glib2-devel - gstreamer-devel - json-c-devel - libical-devel - libnl-devel - libsndfile-devel - readline-devel - python3-docutils - - - 0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch - 0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch - 0002-Use-g_memdup2-everywhere.patch - - hardware/bluetooth/bluez/pspec.xml - - - bluez - Development files for bluez-libs - - bluez-libs - dbus - eudev - glib2 - json-c - libical - readline - - - /etc - /lib/bluetooth/bluetoothd - /lib/bluetooth/obexd - /lib/systemd/system - /lib/udev - /lib/udev/rules.d - /usr/bin - /usr/lib - /usr/libexec - /usr/sbin - /usr/share/alsa/bluetooth.conf - /usr/share/dbus-1 - /usr/share/man - /usr/share/misc - /usr/share/zsh - /var/lib/bluetooth - - - System.Service - - - - bluez-libs - Libraries for use in Bluetooth applications - Uygulamalar için bluetooth erişim kitaplığı - - libical - - - /usr/lib/libbluetooth.so* - /usr/share/doc - - - - bluez-libs-devel - Development files for bluez-libs - bluez-libs için geliştirme dosyaları - - bluez-libs - - - /usr/include/bluetooth - /usr/lib/pkgconfig - - - - - 2021-11-10 - 5.62 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-17 - 5.59 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 5.54 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-17 - 5.54 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 5.52 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-09-14 - 5.50 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 5.49 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-07 - 5.49 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-23 - 5.49 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-12-26 - 5.43 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 5.43 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.33 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-16 - 5.33 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - sbc - http://www.bluez.org/ - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - LGPLv2.1 - library - hardware.bluetooth - Bluetooth Subband Codec (SBC) library - An audio codec to connect bluetooth high quality audio devices like headphones or loudspeakers. - https://mirrors.edge.kernel.org/pub/linux/bluetooth/sbc-1.5.tar.xz - hardware/bluetooth/sbc/pspec.xml - - - sbc - - /usr/bin/* - /usr/lib - /usr/share/doc/sbc/* - - - - sbc-devel - Development files for sbc - - sbc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-10 - 1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 1.4 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-12 - 1.3 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - ifuse - http://matt.colyer.name/projects/iphone-linux - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - hardware.mobile - Mount Apple iPhone and iPod touch devices - Apple iPhone ve iPod touch cihazlarını bağlama aracı - ifuse, a fuse filesystem for mounting iPhone and iPod touch devices. - ifuse, Apple iPhone ve iPod touch cihazlarını sisteme bağlamak için gerekli araçları içerir. - http://www.libimobiledevice.org/downloads/ifuse-1.1.4.tar.bz2 - - libimobiledevice-devel - fuse-devel - - hardware/mobile/ifuse/pspec.xml - - - ifuse - - libimobiledevice - fuse - libusbmuxd - libtasn1 - gnutls - libplist - - - /usr/bin - /usr/share/man/ - /usr/share/doc/ifuse - - - - - 2020-06-24 - 1.1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 1.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-07 - 1.1.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libplist - http://matt.colyer.name/projects/iphone-linux - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2 - library - app:console - hardware.mobile - Library for manipulating Apple Binary and XML Property Lists - Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için kütüphane - libplist is a library for manipulating Apple Binary and XML Property Lists. - libplist, Apple ikili dosyaları ve XML özellik listeleri üzerindeki işlemler için gerekli bir kütüphanedir. - http://www.libimobiledevice.org/downloads/libplist-2.2.0.tar.bz2 - - libxml2-devel - python-devel - cython - - hardware/mobile/libplist/pspec.xml - - - libplist - - libxml2 - python - libgcc - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/man/man1 - - - - libplist-devel - Development files for libplist - libplist için geliştirme dosyaları - - libplist - libxml2-devel - python-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-06-24 - 2.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 2.0.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 2.0.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-28 - 2.0.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-01 - 1.12 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-31 - 1.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - usbmuxd - https://www.libimobiledevice.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - service - library - hardware.mobile - Daemon for communicating with Apple's iPod Touch and iPhone - Apple iPod Touch ve iPhone iletişim hizmeti - usbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. - usbmuxd, Apple iPod Touch ve iPhone cihazlarıyla iletişim kurmak için gerekli bir sistem hizmetidir. Aynı anda, birden fazla cihaza bağlanma imkanı sağlar. - https://codeload.github.com/libimobiledevice/usbmuxd/tar.gz/1.1.1 - - eudev-devel - libplist-devel - libusb-devel - libimobiledevice-devel - - hardware/mobile/usbmuxd/pspec.xml - - - usbmuxd - - libplist - libusb - libimobiledevice - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/sbin - /lib/udev/rules.d - /usr/share/man/man8/usbmuxd.8 - /usr/share/man/man1/usbmuxd.1 - - - - - 2020-06-24 - 1.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 1.1.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-05 - 1.0.10 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 1.0.10 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 1.0.9 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - scrcpy - https://github.com/Genymobile/scrcpy - - Kamil Atlı - suvari@pisilinux.org - - Apache - library - app:console - hardware.mobile - Display and control your Android device - Android cihazınızı görüntüleyin ve kontrol edin - Display and control your Android device - Android cihazınızı görüntüleyin ve kontrol edin - https://github.com/Genymobile/scrcpy/archive/refs/tags/v1.24.tar.gz - https://github.com/Genymobile/scrcpy/releases/download/v1.24/scrcpy-server-v1.24 - - jdk-openjdk - git - wget - sudo - meson - libusb-devel - ffmpeg-devel - android-tools - libsdl2-devel - - hardware/mobile/scrcpy/pspec.xml - - - scrcpy - Display and control your Android device - - libsdl2 - libsdl2 - ffmpeg - libusb - android-tools - - - /usr/bin - /usr/share/doc/ - /usr/share/man - /usr/share - /usr/share/icons - - - - - 2022-05-28 - 1.24 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - libimobiledevice - http://www.libimobiledevice.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2 - library - app:console - hardware.mobile - Library for connecting to mobile devices - libimobiledevice is a library for connecting to mobile devices including phones and music players - https://github.com/libimobiledevice/libimobiledevice/archive/1.3.0.tar.gz - - gnutls-devel - libusbmuxd-devel - libplist-devel - libtasn1-devel - libgcrypt-devel - - hardware/mobile/libimobiledevice/pspec.xml - - - libimobiledevice - - gnutls - libusbmuxd - libplist - libtasn1 - libgcrypt - - - /usr/lib - /usr/bin - /usr/share/man/man1 - /usr/share/doc/libimobiledevice - - - - libimobiledevice-devel - Development files for libimobiledevice - - gnutls-devel - libusbmuxd-devel - libplist-devel - libtasn1-devel - libgcrypt-devel - libimobiledevice - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-09 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-24 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 1.2.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-01 - 1.2.0 - Version Bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 1.1.7 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - usb-modeswitch - https://www.draisberghof.de/usb_modeswitch/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - hardware.mobile - Mode switching tool for broadband devices - Genişbant cihazlar için kip değiştirme aracı - usb-modeswitch brings up your data card into operational mode. When plugged in, they identify themselves as CD-ROM and present some non-Linux compatible installation files. This tool deactivates those CD-ROM devices and enables the real communication interface. It supports most devices manufactured by Huawei, T-Mobile, Vodafone, Option, ZTE, Novatel. - usb-modeswitch, genişbant cihazları CD-ROM kipinden, ağ kartı kipine geçirir. Bu cihazlar, Linux dışındaki işletim sistemlerine sürücülerini otomatik yükleyebilmek için ilk takıldıklarında kendilerini CD-ROM olarak tanıtırlar. Bu araçla, bu kip pasif hale getirilip, iletişim arayüzü etkinleştirilir. Huawei, T-Mobile, Vodafone, Option, ZTE ve Novatel tarafından üretilen cihazlar desteklenmektedir. - https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-2.6.1.tar.bz2 - https://www.draisberghof.de/usb_modeswitch/usb-modeswitch-data-20191128.tar.bz2 - - tcl-devel - libusb-devel - - hardware/mobile/usb-modeswitch/pspec.xml - - - usb-modeswitch - - libusb - - - /etc - /usr/sbin - /lib/udev - /lib/udev/rules.d - /usr/share/usb_modeswitch - /var/lib/usb_modeswitch - /usr/share/man - /usr/share/doc - - - - - 2021-03-14 - 2.6.1 - Ver. bump - fury - uglyside@yandex.ru - - - 2019-11-31 - 2.6.0 - Ver. bump - fury - uglyside@yandex.ru - - - 2014-08-18 - 2.2.0 - Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-03-07 - 1.2.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-02-17 - 1.2.5 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2013-04-12 - 1.2.5 - V.Bump - PisiLinux Community - admins@pisilinux.org - - - 2011-08-03 - 1.1.8 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - libusbmuxd - https://www.libimobiledevice.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - service - library - hardware.mobile - Daemon for communicating with Apple's iPod Touch and iPhone - libusbmuxd is a daemon used for communicating with Apple's iPod Touch and iPhone devices. It allows multiple services on the device to be accessed simultaneously. - http://www.libimobiledevice.org/downloads/libusbmuxd-2.0.2.tar.bz2 - - libplist-devel - libusb-devel - - hardware/mobile/libusbmuxd/pspec.xml - - - libusbmuxd - - libplist - libusb - - - /usr/lib - /usr/share/doc - /usr/bin - /usr/sbin - /lib/udev/rules.d - /usr/share/man/man1 - - - - libusbmuxd-devel - Development files for libusbmuxd - - libusbmuxd - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-06-24 - 2.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.0.10 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.0.10 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-06-21 - 1.0.10 - First release - Pisi Linux Community - admin@pisilinux.org - - - - - - xdg-desktop-portal-gtk - https://github.com/flatpak/xdg-desktop-portal-gtk - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - hardware.virtualization - A portal frontend service for Flatpak and possibly other desktop containment frameworks - A portal frontend service for Flatpak and possibly other desktop containment frameworks - https://github.com/flatpak/xdg-desktop-portal-gtk/releases/download/1.10.0/xdg-desktop-portal-gtk-1.10.0.tar.xz - - xmlto - python3-devel - glib2-devel - dbus-devel - util-linux - flatpak-devel - fuse-devel - gnome-desktop-devel - xdg-desktop-portal - gettext-devel - - hardware/virtualization/xdg-desktop-portal-gtk/pspec.xml - - - xdg-desktop-portal-gtk - - glib2 - gtk3 - cairo - fontconfig - gnome-desktop - gdk-pixbuf - xdg-desktop-portal - flatpak - - - /usr/lib - /usr/libexec - /usr/share/dbus-1 - /usr/share/applications - /usr/share/xdg-desktop-portal - /usr/share/locale - /usr/share/doc - - - - - 2021-09-24 - 1.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 1.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 1.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-07 - 1.4.0 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-05-12 - 1.2.0 - First Release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xdg-desktop-portal - https://github.com/flatpak/xdg-desktop-portal - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - hardware.virtualization - A portal frontend service for Flatpak and possibly other desktop containment frameworks - A portal frontend service for Flatpak and possibly other desktop containment frameworks - https://github.com/flatpak/xdg-desktop-portal/archive/1.14.3.tar.gz - - xmlto - python3 - dbus-devel - util-linux - fuse3-devel - glib2-devel - gettext-devel - pipewire-devel - json-glib-devel - flatpak-devel - - hardware/virtualization/xdg-desktop-portal/pspec.xml - - - xdg-desktop-portal - - fuse3 - glib2 - pipewire - json-glib - gdk-pixbuf - flatpak - - - /usr/lib - /usr/libexec - /usr/share/dbus-1 - /usr/share/pkgconfig - /usr/share/man - /usr/share/locale - /usr/share/doc - - - - - 2022-04-23 - 1.14.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-25 - 1.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-24 - 1.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 1.8.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-30 - 1.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-07 - 1.4.2 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-14 - 1.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-20 - 1.0.3 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-31 - 0.10 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-16 - 0.10 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-04 - 0.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - spice-vdagent - https://www.spice-space.org/ - - Kamil Atlı - suvari@pisilinux.org - - GPL - library - app:console - hardware.virtualization - Spice agent for Linux guests - Spice agent for Linux guests - https://www.spice-space.org/download/releases/spice-vdagent-0.21.0.tar.bz2 - - gtk3-devel - glib2-devel - eudev-devel - libX11-devel - libdrm-devel - spice-protocol - alsa-lib-devel - libXrandr-devel - libXinerama-devel - - hardware/virtualization/spice-vdagent/pspec.xml - - - spice-vdagent - Spice agent for Linux guests - - gtk3 - glib2 - libdrm - libX11 - alsa-lib - libXrandr - libXinerama - - - /usr/bin - /usr/lib/libspice-server.so* - /usr/share/doc/ - /usr/share/man - /usr/share/gdm/autostart/LoginWindow - /usr/share/gdm/greeter/autostart - /var/run/spice-vdagentd - /etc/xdg/autostart/spice-vdagent.desktop - - - - - 2021-10-10 - 0.21.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - virt-wrapper - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.virtualization - Wrapper for virtualization software - Sanallaştırma yazılımları için önbetik - virt-wrapper is a wrapper for virtualization applications. It warns users if they are not a member of virt group and loads the kernel modules automatically. - virt-wrapper, sanallaştırma uygulamaları için bir betik içerir. Bu betik, kullanıcıyı eğer virt grubunda değilse uyarır ve çekirdek modüllerini de otomatik olarak yükler. - https://github.com/ertugerata/virt-wrapper/archive/v.0.1.1.1.tar.gz - hardware/virtualization/virt-wrapper/pspec.xml - - - virt-wrapper - - /usr/libexec - /usr/share/locale - /usr/share/doc - - - - - 2018-11-13 - 0.1.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-13 - 0.1.1.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 0.1.1 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 0.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-11-23 - 0.1.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libvirt - http://www.libvirt.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.virtualization - Library providing a simple API to several virtualization systems - Birçok sanallaştırma sistemine kolay erişim sağlayan bir kütüphane - libvirt is a toolkit to interact with the virtualization capabilities of recent versions of Linux (and other OSes). libvirt supports Xen hypervisor, QEMU emulator, KVM hypervisor, LXC Linux container system, OpenVZ Linux container system, User Mode Linux paravirtualized kernel and VirtualBox hypervisor together with remote management possibilities. - libvirt yeni linux sürümlerinin sunduğu sanallaştırma özellikleriyle etkileşimi kolaylaştıran bir kütüphanedir. Xen, KVM ve VirtualBox hipervizorleri, QEMU emulatörü, LXC linux konteyner sistemi, User Mode Linux paravirtual sanallaştırma sistemi gibi sistemlerle birlikte çalışabilir ve tüm bu sistemlerin uzaktan yönetimi için de kullanılabilir. - http://libvirt.org/sources/libvirt-4.6.0.tar.xz - - qemu - acl-devel - curl-devel - fuse-devel - glibc-devel - libssh2-devel - jansson-devel - lvm2-devel - attr-devel - audit-devel - avahi-devel - netcf-devel - numactl-devel - libxslt-devel - libpciaccess-devel - yajl-devel - polkit-devel - dbus-devel - util-linux - gnutls-devel - parted-devel - device-mapper-devel - libnl-devel - python-devel - cyrus-sasl-devel - libcap-ng-devel - readline-devel - libtirpc-devel - libXdmcp-devel - bash-completion - kernel-module-headers - - hardware/virtualization/libvirt/pspec.xml - - - libvirt - - acl - curl - fuse - libssh2 - libtirpc - dbus - yajl - audit - eudev - libnl - netcf - libgcc - gnutls - parted - libcap - libxml2 - numactl - readline - libcap-ng - avahi-libs - cyrus-sasl - libpciaccess - device-mapper - libutil-linux - - - /etc - /usr/lib/tmpfiles.d/libvirt.conf - /usr/bin - /usr/libexec - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/augeas - /usr/share/polkit-1 - /usr/share/libvirt - /usr/share/systemtap - /usr/share/man - /var - /run - /usr/share/locale - /usr/share/bash-completion - - - System.Service - System.Package - - - tmpfiles.conf - libvirt.confd - - - - libvirt-devel - Development files for libvirt - libvirt için geliştirme dosyaları - - libvirt - - - /usr/include/libvirt - /usr/lib/pkgconfig - - - - - 2020-03-14 - 4.6.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-18 - 4.6.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-31 - 4.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 3.0.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 1.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 1.3.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - flatpak - https://flatpak.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2.1 - hardware.virtualization - Application distribution framework - Linux application sandboxing and distribution framework, formerly xdg-app - https://github.com/flatpak/flatpak/releases/download/1.12.7/flatpak-1.12.7.tar.xz - - xmlto - zstd-devel - util-linux - gtk-doc - eudev-devel - libcap-devel - gettext-devel - zlib-devel - bubblewrap - polkit-devel - libseccomp-devel - dbus-devel - dconf-devel - json-glib-devel - appstream-glib-devel - docbook-xsl - python3-six - ostree-devel - python3-pyparsing - xdg-dbus-proxy - elogind-devel - fuse-devel - - hardware/virtualization/flatpak/pspec.xml - - - flatpak - - zstd - xorg-app - bubblewrap - fuse - glib2 - gpgme - gnupg - libXau - libxml2 - libsoup - json-glib - libarchive - libseccomp - gdk-pixbuf - dconf - ostree - polkit - appstream-glib - python3-pyparsing - libassuan - libgpg-error - xdg-dbus-proxy - - - /usr/bin - /etc - /usr/lib - /usr/libexec - /usr/share/bash-completion - /usr/share/fish/vendor_completions.d/ - /usr/share/dbus-1 - /usr/share/polkit-1 - /usr/share/flatpak - /usr/share/man - /usr/share/locale - /usr/share/doc - /usr/share/gtk-doc - /usr/share/zsh - - - flathub.flatpakrepo - - - - flatpak-devel - Development files for flatpak - - flatpak - glib2-devel - ostree-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - - - - - 2022-05-05 - 1.12.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 1.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-07 - 1.11.1 - Version bump. - Berk Çakar - berk2238@hotmail.com - - - 2021-04-29 - 1.10.2 - Fixed flatpak does nothing. - Berk Çakar - berk2238@hotmail.com - - - 2021-04-25 - 1.10.2 - Version bump - Sami BABAT - samibabat@gmail.com - - - 2021-04-06 - 1.6.3 - Update dependencies - Berkan Şahin - cicektaksi@tutanota.com - - - 2020-04-02 - 1.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.4.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-07 - 1.4.2 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-14 - 1.2.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-19 - 1.1.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-13 - 1.0.4 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-23 - 1.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-07-08 - 0.11.7 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-16 - 0.11.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-03 - 0.10.3 - First release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libvirt-python - https://pypi.python.org/pypi/libvirt-python - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - hardware.virtualization - libvirt python binding - libvirt python binding - libvirt python binding - libvirt python binding - https://libvirt.org/sources/python/libvirt-python-4.6.0.tar.gz - - libvirt-devel - python-devel - - hardware/virtualization/libvirt-python/pspec.xml - - - libvirt-python - - libvirt - - - /usr/lib - /usr/share/doc - - - - - 2019-03-18 - 4.6.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - virt-manager - http://virt-manager.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - hardware.virtualization - Graphical tool for administering virtual machines for KVM, Xen, and QEmu - Grafik arayüzlü sanal makine yönetim aracı - Virtual Machine Manager provides a graphical tool for administering virtual machines for KVM, Xen, and QEmu. Start, stop, add or remove virtual devices, connect to a graphical or serial console, and see resource usage statistics for existing VMs on local or remote machines. Uses libvirt as the backend management API. - Virt-Manager ile kvm, qemu, xen gibi sanallaştırma sistemleriyle yaratılmış yerel veya uzak sanal makinelerin başlatılması, durdurulması, sanal cihazlar eklenip kaldırılması, grafik veya seri konsollarına bağlanılması gibi işlemler yapılabilir. Çalışmak için libvirt kütüphanesine ve servisine ihtiyaç duyar. - virt-manager-icon - https://releases.pagure.org/virt-manager/virt-manager-1.5.1.tar.gz - - intltool - vte-devel - gtk2-devel - libosinfo-devel - libvirt-glib-devel - python-cairo-devel - python-pygobject3-devel - - hardware/virtualization/virt-manager/pspec.xml - - - virt-manager - - ipaddr - libosinfo - libvirt-glib - libvirt-python - python-pygobject3 - - - /usr/bin - /usr/libexec - /etc/gconf/schemas - /usr/share/pixmaps - /usr/share - /usr/share/man - /usr/share/doc - /usr/share/locale - - - tr.po - - - - - 2019-03-19 - 1.5.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2017-01-29 - 1.4.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 1.3.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - spice - https://www.spice-space.org/ - - Kamil Atlı - suvari@pisilinux.org - - LGPL2.1 - library - app:console - hardware.virtualization - Simple Protocol for Independent Computing Environments - SPICE is a remote display system built for virtual environments which -allows you to view a computing 'desktop' environment not only on the -machine where it is running, but from anywhere on the Internet and -from a wide variety of machine architectures. - https://www.spice-space.org/download/releases/spice-server/spice-0.15.0.tar.bz2 - - meson - doxygen - asciidoc - lz4-devel - orc-devel - zlib-devel - python3-six - glib2-devel - pixman-devel - python3-devel - libopus-devel - openssl-devel - spice-protocol - libcacard-devel - gstreamer-devel - autoconf-archive - cyrus-sasl-devel - python3-pyparsing - libjpeg-turbo-devel - gst-plugins-base-devel - - hardware/virtualization/spice/pspec.xml - - - spice - Simple Protocol for Independent Computing Environments - - lz4 - orc - zlib - glib2 - libgcc - pixman - libopus - openssl - libcacard - gstreamer - cyrus-sasl - libjpeg-turbo - spice-protocol - gst-plugins-base - - - /usr/lib/libspice-server.so* - /usr/share/doc/ - - - - spice-devel - Development files for spice - - glib2-devel - pixman-devel - openssl-devel - spice-protocol - libcacard-devel - spice - - - /usr/include/spice-server - /usr/lib/pkgconfig - - - - - 2021-02-10 - 0.15.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - qemu - http://bellard.org/qemu - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.virtualization - Userspace virtual machine and processor emulator - Kullanıcı uzayı sanal makine ve işlemci benzetimcisi. - QEMU emulates a full system (for example a PC), including a processor and various peripherials. It can be used to launch different operating systems without rebooting the PC or to debug system code. In user-mode emulation mode, QEMU can launch Linux processes compiled for one CPU on another CPU. - QEMU, bir PC'ye işlemcisi ve kartlarıyla birlikte öykünen bir yazılımdır. Bilgisayarı yeniden başlatmadan yeni bir işletim sistemini çalıştırmak için kullanılabilir. Ayrıca Linux altında kullanıcı kipi öykünme yöntemiyle farklı bir işlemci için derlenmiş programları çalıştırabilir. - http://wiki.qemu-project.org/download/qemu-4.2.0.tar.bz2 - - aalib-devel - vte-devel - gtk3-devel - libXext-devel - nss-devel - alsa-lib-devel - bluez-libs-devel - cyrus-sasl-devel - libsdl-devel - pulseaudio-libs-devel - python-devel - glib2-devel - libsdl2-devel - - hardware/virtualization/qemu/pspec.xml - - - qemu - - atk - nss - vte - gtk2 - mesa - nspr - zlib - bzip2 - cairo - glib2 - pango - libX11 - libgcc - libpng - libsdl - libusb - pixman - libXext - alsa-lib - freetype - libepoxy - bluez-libs - cyrus-sasl - fontconfig - gdk-pixbuf - pulseaudio-libs - libdrm - - - /etc - /run - /lib - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/qemu - /usr/share - /usr/share/icons/hicolor - /usr/share/locale/ - /usr/include - - - System.Service - System.Service - - - qemu-ifup - qemu-ifdown - fedora/ksmtuned - fedora/ksm.sysconfig - fedora/ksmtuned.conf - 65-kvm.rules - - - - - 2020-03-13 - 4.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-31 - 2.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 2.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 2.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 2.4.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - docker - http://docker.io - - Ertuğrul Erata - ertugrulerata@gmail.com - - Apache - app:console - hardware.virtualization - Pack, ship and run any application as a lightweight container - Herhangi bir uygulamayı paketleyip çalıştırmak için hafif kontenyer - An open platform for distributed applications for developers and sysadmins - Geliştirici ve Sistem Yöneticileri için açık ve dağıtık platform - https://github.com/docker/docker-ce/archive/refs/tags/v19.03.15.tar.gz - - git - golang - btrfs-progs-devel - device-mapper-devel - sqlite-devel - libseccomp-devel - libtool-ltdl - - hardware/virtualization/docker/pspec.xml - - - docker - - git - aufs-util - sqlite - device-mapper - btrfs-progs - bridge-utils - iproute2 - iptables - libseccomp - libtool-ltdl - runc - containerd - tini - - - /etc - /usr/bin/ - /usr/lib/docker - /usr/share/ - /lib/udev/rules.d - - - System.Service - System.Package - - - cgroupfs-mount - cgroupfs-umount - docker.confd - - - - - 2021-08-02 - 19.03.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-19 - 18.05.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 18.05.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-06-10 - 18.05.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 1.11.2 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-08-28 - 1.11.2 - Rebuild for package.py - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-07-11 - 1.11.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-28 - 1.10.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.10.3 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-25 - 1.10.3 - First release. - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - flatpak-builder - https://flatpak.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:console - hardware.virtualization - Tool to build flatpaks from sources - Tool for building flatpaks from sources - https://github.com/flatpak/flatpak-builder/releases/download/1.2.2/flatpak-builder-1.2.2.tar.xz - - flatpak-devel - ostree-devel - util-linux - libxslt - xmlto - libsoup-devel - libcap-devel - elfutils-devel - glib2-devel - libxml2-devel - libyaml-devel - curl-devel - elogind-devel - json-glib-devel - - hardware/virtualization/flatpak-builder/pspec.xml - - - flatpak-builder - - flatpak - ostree - curl - libsoup - elfutils - glib2 - libxml2 - json-glib - libyaml - - - /usr/bin - /usr/libexec - /usr/share/man - /usr/share/doc - - - - - 2022-05-06 - 1.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 1.0.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.0.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-07 - 1.0.8 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-14 - 1.0.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-14 - 1.0.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-07-08 - 0.10.10 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-16 - 0.10.8 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-11 - 0.10.6 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - bubblewrap - https://github.com/projectatomic/bubblewrap - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - hardware.virtualization - Unprivileged sandboxing tool - is a core execution engine for unprivileged containers that works as a setuid binary on kernels without user namespaces. - https://github.com/projectatomic/bubblewrap/archive/v0.4.0.tar.gz - - libcap-devel - bash-completion - libxslt - docbook-xsl - - hardware/virtualization/bubblewrap/pspec.xml - - - bubblewrap - - libcap - - - /usr/bin - /usr/share/bash-completion - /usr/share/man - /usr/share/doc - - - - - 2020-03-12 - 0.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-07 - 0.3.3 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-19 - 0.3.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-12 - 0.3.0 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-29 - 0.2.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-03 - 0.2.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - virtualbox-guest-iso - https://www.virtualbox.org/ - - PisiLinux Community - admins@pisilinux.org - - custom - library - hardware.virtualization - The official VirtualBox Guest Additions ISO image - The official VirtualBox Guest Additions ISO image - The official VirtualBox Guest Additions ISO image - The official VirtualBox Guest Additions ISO image - https://download.virtualbox.org/virtualbox/6.1.34/VBoxGuestAdditions_6.1.34.iso - hardware/virtualization/virtualbox-guest-iso/pspec.xml - - - virtualbox-guest-iso - - virtualbox - - - /usr/lib - - - - - 2022-04-29 - 6.1.34 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2022-01-26 - 6.1.32 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-23 - 6.1.30 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-20 - 6.1.28 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-29 - 6.1.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-22 - 6.1.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-01 - 6.1.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-29 - 6.1.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-06 - 6.1.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-04 - 6.1.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-07 - 6.1.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-30 - 6.1.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-22 - 6.1.6 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2020-04-05 - 6.1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ostree - https://github.com/ostreedev/ostree - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPLv2 - app:console - hardware.virtualization - Operating system and container binary deployment and upgrades - OSTree is a tool for managing bootable, immutable, versioned filesystem trees - https://github.com/ostreedev/ostree/releases/download/v2021.2/libostree-2021.2.tar.xz - - python3 - glib2-devel - xz-devel - zlib-devel - e2fsprogs-devel - libsoup-devel - gpgme-devel - openssl-devel - avahi-glib-devel - fuse-devel - libutil-linux-devel - libarchive-devel - - - disable_werror_implicit_funtion_declaraction.patch - - hardware/virtualization/ostree/pspec.xml - - - ostree - - xz - avahi-glib - avahi-libs - zlib - fuse - glib2 - gpgme - libsoup - libarchive - libgpg-error - libutil-linux - openssl - - - /usr/bin - /etc/ostree - /usr/lib - /usr/libexec - /usr/share/gir-1.0 - /usr/share/bash-completion - /usr/share/ostree - /usr/share/man - /usr/share/doc - - - - ostree-devel - Development files for ostree - - ostree - xz-devel - zlib-devel - fuse-devel - glib2-devel - gpgme-devel - libsoup-devel - libarchive-devel - libgpg-error-devel - libutil-linux-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-04-26 - 2021.2 - Version bump - Sami BABAT - samibabatp@gmail.com - - - 2020-02-07 - 2019.6 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2019-07-07 - 2019.2 - Version bump.. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-14 - 2019.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-11-19 - 2018.9 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-13 - 2018.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-24 - 2018.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-16 - 2018.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-02-02 - 2018.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - containerd - https://containerd.io/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - Apache-2.0 - hardware.virtualization - A daemon to control runC, built for performance and density. - is a daemon with an API and a command line client, to manage containers on one machine. It uses runC to run containers according to the OCI specification. - https://github.com/containerd/containerd/archive/v1.5.5.tar.gz - - golang - git - libseccomp-devel - btrfs-progs-devel - - hardware/virtualization/containerd/pspec.xml - - - containerd - - runc - libseccomp - - - /usr/bin - /usr/share/doc - - - - - 2021-08-02 - 1.5.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-19 - 1.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 1.1.0 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-06-17 - 1.1.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 0.2.2 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-07-12 - 0.2.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - runc - https://runc.io - - Ertuğrul Erata - ertugrulerata@gmail.com - - Apache-2.0 - hardware.virtualization - container cli tools - CLI tool for managing OCI compliant containers - https://github.com/opencontainers/runc/archive/refs/tags/v1.0.2.tar.gz - - golang - libseccomp-devel - - hardware/virtualization/runc/pspec.xml - - - runc - - libseccomp - - - /usr/bin - /usr/share/doc - - - - - 2021-09-02 - 1.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-11 - 1.0.0_rc10 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-20 - 1.0.0_rc5 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-06-10 - 1.0.0_rc5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 0.1.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-07-13 - 0.1.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libvirt-glib - https://libvirt.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.virtualization - GLib bindings for libvirt - GLib bindings for libvirt - GLib bindings for libvirt - GLib bindings for libvirt - https://libvirt.org/sources/glib/libvirt-glib-2.0.0.tar.gz - - intltool - gtk-doc - vala-devel - glib2-devel - python-six - libvirt-devel - libxml2-devel - libcap-ng-devel - gobject-introspection-devel - - hardware/virtualization/libvirt-glib/pspec.xml - - - libvirt-glib - - glib2 - libvirt - libxml2 - - - /usr/lib - /usr/share - /usr/share/vala - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/doc - - - - libvirt-glib-devel - Development files for libvirt-glib - - libvirt-glib - - - /usr/include - /usr/lib/pkgconfig - - - - libvirt-glib-docs - Development files for libvirt-glib - - libvirt-glib - - - /usr/share/gtk-doc - - - - - 2019-03-18 - 2.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - squeak-vm - http://wiki.squeak.org/squeak/1447 - - Blue Devil - bluedevil@sctzine.com - - Apache - library - app:console - hardware.virtualization - Full-featured implementation of the Smalltalk programming language and environment. - Tam-özellikli, Smalltalk programlama dili ve ortamı uygulaması. - squeak-vm provides a full-featured implementation of the Smalltalk programming language and environment. - squeak-vm, tam-özellikli, smalltalk programlama dili ve ortamı uygulaması. - http://squeakvm.org/unix/release/Squeak-4.10.2.2614-src.tar.gz - - cmake - libglvnd-devel - libXrender-devel - pulseaudio-libs-devel - - hardware/virtualization/squeak-vm/pspec.xml - - - squeak-vm - Full-featured implementation of the Smalltalk programming language and environment. - - libXext - libglvnd - libXrender - pulseaudio-libs - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/doc/squeak-vm - - - - - 2020-05-21 - 4.10.2.2614 - First pisi release. - Blue Devil - bluedevil@sctzine.com - - - - - - spice-protocol - https://spice-space.org/ - - Kamil Atlı - suvari@pisilinux.org - - BSD - library - app:console - hardware.virtualization - Spice protocol header files - Spice protocol header files - https://gitlab.freedesktop.org/spice/spice-protocol/-/archive/v0.14.3/spice-protocol-v0.14.3.tar.gz - - meson - - hardware/virtualization/spice-protocol/pspec.xml - - - spice-protocol - Headers for SPICE protocol - - /usr/share/doc/ - /usr/include - /usr/lib/pkgconfig - - - - - 2021-02-10 - 0.14.3 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - virtualbox - http://www.virtualbox.org/ - - Serdar Soytetir - kaptan@pisilinux.org - - GPLv2 - app:gui - hardware.virtualization - A powerful virtualization program - Güçlü bir sanallaştırma programı - VirtualBox is a family of powerful x86 virtualization products for enterprise as well as home use. This is the Open Source Edition which lacks USB support and some other things. - VirtualBox, ev kullanımı yanında kurumsal kullanım alanı da bulan güçlü bir xf86 sanallaştırma ürünleri ailesidir. Bu sürüm, USB ve birkaç özellik için desteği bulunmayan açık kodlu uyarlamasıdır. - http://download.virtualbox.org/virtualbox/6.1.34/VirtualBox-6.1.34.tar.bz2 + NVIDIA + kernel.drivers + NVIDIA drivers for GeForce 6xxx and newer GPUs + GeForce 340xx NVIDIA ekran kartları için sürücüler + Controladores nVIDIA de kernel y glx para tarjetas NV3 o mejor (Geforce FX o mejor) + NVIDIA graphics drivers provide optimized 2D/3D performance. + NVIDIA grafik sürücüleri daha iyi 2B/3B başarımı sağlar. + Controladores de kernel nVIDIA y glx para rendimiento optimizado 2d/3d en Linux (Para NV3X o mejor). + http://http.download.nvidia.com/XFree86/Linux-x86/340.108/NVIDIA-Linux-x86-340.108.run + http://http.download.nvidia.com/XFree86/Linux-x86_64/340.108/NVIDIA-Linux-x86_64-340.108.run dkms.conf - dkms-guest.conf - LocalConfig.kmk + 0001-kernel-5.7.patch + 0002-kernel-5.8.patch + 0003-kernel-5.9.patch + 0004-kernel-5.10.patch + 0005-kernel-5.11.patch + 0006-kernel-5.14.patch + 0008-fix-5.15.patch - dev86 - cdrkit - acpica - mesa-devel - curl-devel - python-devel - pam-devel - device-mapper-devel - libcap-devel - gsoap-devel - libXt-devel - libXmu-devel - libIDL-devel - libsdl-devel - libvpx-devel - libXext-devel - libxslt-devel - libopus-devel - mesa-glu-devel - alsa-lib-devel - libXfixes-devel - libXrandr-devel - libXdamage-devel - libXcursor-devel - libXinerama-devel - xorg-server-devel - libvncserver-devel - libXcomposite-devel - pulseaudio-libs-devel - kernel-headers - kernel-module-headers - qt5-x11extras-devel - jdk8-openjdk - jre8-openjdk - libxcb-devel - qt5-base-devel - qt5-linguist - docbook-xml - libglvnd-devel - python3-devel + kernel-module-headers - - wrapper.patch - 004-drop-Wno-format.patch - 005-gsoap-build.patch - 006-rdesktop-vrdp-keymap-path.patch - 008-root-window.patch - python.patch - 008-no-vboxvideo.patch - VirtualBox-6.1.2-disable-update.patch - 012-vbglR3GuestCtrlDetectPeekGetCancelSupport.patch - 013-Makefile.patch - 017-fix-narrowing-conversion.patch - 018-xclient.patch - 019-vboxr0-cflags.patch - - hardware/virtualization/virtualbox/pspec.xml + kernel/drivers/module-nvidia340/pspec.xml - virtualbox + module-nvidia340 + Kernel module for NVIDIA driver 340.xx releases + GeForce 340xx NVIDIA grafik sürücüleri için çekirdek modülü + driver + + noDelta + + + kernel + + + /lib/modules + + + nvidia340-dkms + + + + xorg-video-nvidia340 + GeForce 340xx NVIDIA userspace sürücüleri ve ikili dosyaları + driver + + noDelta + - qt5-base - libxcb - mesa - libXt - gsoap - libvpx - libXmu - libsdl libXext - libopus - libXcursor - libXinerama - virt-wrapper - libvncserver - curl - zlib + xorg-server libX11 - libgcc - libpng - python - libxml2 - openssl - device-mapper - qt5-x11extras - libglvnd - python3 + opencl-icd - module-virtualbox - virtualbox-dkms + module-nvidia340 + nvidia340-dkms - /etc/vbox + /etc/OpenCL /usr/bin - /usr/lib/virtualbox - /usr/lib/python* - /usr/share/virtualbox - /usr/share/applications - /usr/share/pixmaps - /usr/share/icons/hicolor - /usr/share/mime/packages + /usr/lib + /usr/share + /usr/share/doc + /usr/share/man + + xorg-video-nvidia-current + xorg-video-nvidia304 + System.Package - System.Service - - vboxreload - 60-vboxdrv.rules - 60-vboxguest.rules - - virtualbox-guest-utils - VirtualBox guest utilities and drivers - VirtualBox misafir işletim sistemleri için yardımcı araçlar ve sürücüler - x11.driver + xorg-video-nvidia340-32bit + 32-bit shared libraries for xorg-video-nvidia340 + xorg-video-nvidia340 için 32-bit paylaşımlı kitaplıklar + emul32 + + noDelta + + emul32 + + libvdpau-32bit + - pam - libXt - libXmu - libXext - libXfixes - libXrandr - libXdamage - xorg-server - libXcomposite - - module-virtualbox-guest - virtualbox-guest-dkms - + zlib-32bit + libX11-32bit + libXext-32bit + opencl-icd-32bit + xorg-video-nvidia340 - /etc/X11/xinit/xinitrc.d - /lib/udev/rules.d - /etc/xdg/autostart - /lib/security - /sbin - /usr/bin/VBoxClient* - /usr/bin/VBoxControl - /usr/bin/VBoxDRMClient - /usr/sbin - /usr/lib - /usr/kde/*/share/autostart - /usr/share/X11 - /usr/lib/xorg/modules - - - vboxclient.sh - - - - virtualbox-dkms - VirtualBox Host kernel modules sources - - dkms - - - /usr/src + /usr/lib32 + /usr/share/nvidia-current/32bit-ld.so.conf - module-virtualbox + xorg-video-nvidia-current-32bit + xorg-video-nvidia304-32bit - virtualbox-guest-dkms - VirtualBox Guest kernel modules sources + nvidia340-dkms + NVIDIA driver sources for linux + driver + + noDelta + dkms + xorg-video-nvidia340 - /usr/src/*-guest-* + /etc/modprobe.d/nvidia340-dkms.conf + /usr/src/nvidia* - module-virtualbox-guest + module-nvidia340 + nvidia-current-dkms + nvidia430-dkms + nvidia390-dkms + nvidia340 + + modprobe.conf + xorg.conf + + + + nvidia340 + Meata package for nvidia340 drivers + driver + + noDelta + + + module-nvidia340 + xorg-video-nvidia340 + + + /var/tmp/nvidia + + + nvidia340-dkms + + + nvidia.txt + - - 2022-04-25 - 6.1.34 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-25 - 6.1.32 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-11 - 6.1.30 - rebuild for kernel. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-11-23 - 6.1.30 - Version bump. + 2022-05-22 + 340.108 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2021-10-20 - 6.1.28 - Version bump. + 2022-04-15 + 340.108 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2021-09-09 - 6.1.26 - rebuild for kernel + 2022-03-23 + 340.108 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2021-07-29 - 6.1.26 - Version bump. + 2022-01-31 + 340.108 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2021-07-22 - 6.1.24 - Version bump + 2022-01-15 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-05-01 - 6.1.22 - Version bump. + 2021-12-17 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-04-22 - 6.1.20 - Version bump. + 2021-11-27 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-02-01 - 6.1.18 - Version bump. + 2021-11-19 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-12-27 - 6.1.16 - Version bump kernel510. - İdris Kalp - idriskalp@gmail.com + 2021-11-12 + 340.108 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2020-11-10 - 6.1.16 - Version bump kernel597. + 2021-09-10 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-09-05 - 6.1.14 - Version bump. + 2021-09-10 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-07-18 - 6.1.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-08-13 + 340.108 + Rebuild. + İdris Kalp + idriskalp@gmail.com - 2020-06-08 - 6.1.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-06-02 + 340.108 + Rebuild. + İdris Kalp + idriskalp@gmail.com - 2020-05-30 - 6.1.8 - Version bump. + 2021-05-12 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-04-22 - 6.1.6 - Version bump. + 2021-04-29 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-04-13 - 6.1.4 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-04-09 - 6.1.4 - Rebuild virtualbox-guest-iso + 2021-03-01 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com + + 2020-07-05 + 340.108 + Add comar script and meta package + Marcin Bojara + marcin.bojara@gmail.com + - 2020-02-22 - 6.1.4 - Version bump. + 2020-06-01 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-01-26 - 6.1.2 - Version bump. + 2020-04-03 + 340.108 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-01-14 - 6.1.0 - Add dkms packages + 2020-01-31 + 340.108 + Rebuild. + Mustafa Cinasal Bojara + muscnsl@gmail.com + + + 2020-01-09 + 340.108 + Add dkms support. Version bump Marcin Bojara marcin.bojara@gmail.com - - 2019-12-24 - 6.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-12-12 - 6.0.14 - Patched for kernel 5.4 + 2019-12-28 + 340.107 + Rebuild for new kernel. Idris Kalp idriskalp@gmail.com - 2019-10-29 - 6.0.14 + 2019-08-14 + 340.107 + Rebuild for new kernel. + Idris Kalp + idriskalp@gmail.com + + + 2019-06-09 + 340.107 + Rebuild for new kernel. + Idris Kalp + idriskalp@gmail.com + + + 2019-12-05 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-06 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-20 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-22 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-06 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-13 + 340.107 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-29 + 340.106 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-11 + 340.106 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-03 + 340.106 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-06 + 340.104 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-20 + 340.104 + Rebuild for new kernel. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-06 + 340.104 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-24 + 340.102 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-22 + 340.102 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-07 + 340.102 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-11 + 340.101 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-31 + 340.101 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-11 + 340.98 + Rebuild for kernel 4.8.13 + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-05 + 340.98 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-08-28 + 340.96 + Rebuild for kernel 4.7.2 + Kamil Atlı + suvari@pisilinux.org + + + 2016-08-06 + 340.96 + Rebuild for kernel 4.7.0 + Kamil Atlı + suvari@pisilinux.org + + + 2016-07-17 + 340.96 + Rebuild for new kernel + Kamil Atlı + suvari@pisilinux.org + + + 2016-04-30 + 340.96 + Rebuild for new kernel + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-03-06 + 340.96 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + module-nvidia390 + http://www.nvidia.com + + Marcin Bojara + marcin@pisilinux.org + + NVIDIA + kernel.drivers + NVIDIA drivers for GeForce 6xxx and newer GPUs + NVIDIA graphics drivers provide optimized 2D/3D performance. + http://http.download.nvidia.com/XFree86/Linux-x86/390.144/NVIDIA-Linux-x86-390.144.run + http://http.download.nvidia.com/XFree86/Linux-x86_64/390.144/NVIDIA-Linux-x86_64-390.144.run + + dkms.conf + kernel-5.14-pdev.patch + kernel-5.14-state.patch + + + kernel-module-headers + libX11-devel + gtk2-devel + gtk3-devel + + kernel/drivers/module-nvidia390/pspec.xml + + + module-nvidia390 + Kernel module for current NVIDIA graphics driver releases + driver + + noDelta + + + kernel + + + /lib/modules + /etc/modprobe.d + + + nvidia390-dkms + + + modprobe.conf + + + + nvidia-xconfig390 + Xconfig file for nvidia390 kernel driver + app:console + hardware.graphics + + + module-nvidia390 + nvidia390-dkms + + + + /usr/bin/nvidia-xconfig + /usr/share/man/man1/nvidia-xconfig.1 + + + + xorg-video-nvidia390 + driver + + noDelta + + + libXext + libX11 + mesa + xorg-server + vulkan + opencl-icd + libglvnd + + module-nvidia390 + nvidia390-dkms + + + + /etc/OpenCL + /usr/bin + /usr/lib + /usr/share/X11 + /usr/share/nvidia390 + /usr/share/doc + /usr/share/man + + + xorg-video-nvidia-current + xorg-video-nvidia304 + xorg-video-nvidia340 + + + System.Package + + + + xorg-video-nvidia390-32bit + 32-bit shared libraries for xorg-video-nvidia390 + emul32 + + noDelta + + emul32 + + libvdpau-32bit + + + zlib-32bit + mesa-32bit + libX11-32bit + libXext-32bit + opencl-icd-32bit + vulkan-32bit + libglvnd-32bit + xorg-video-nvidia390 + atk + gtk2 + gtk3 + cairo + glib2 + pango + gdk-pixbuf + + + /usr/lib32 + /usr/share/nvidia390/32bit-ld.so.conf + + + xorg-video-nvidia-current-32bit + xorg-video-nvidia304-32bit + xorg-video-nvidia340-32bit + + + + nvidia390-dkms + NVIDIA driver sources for linux + driver + + noDelta + + + dkms + xorg-video-nvidia390 + + + /etc/modprobe.d/nvidia390-dkms.conf + /usr/src/nvidia* + + + module-nvidia390 + nvidia340-dkms + nvidia430-dkms + nvidia-current-dkms + nvidia390 + + + modprobe.conf + xorg.conf + + + + nvidia390 + Meata package for nvidia390 drivers + driver + + noDelta + + + module-nvidia390 + xorg-video-nvidia390 + + + /var/tmp/nvidia + + + nvidia390-dkms + + + nvidia.txt + + + + + 2022-05-22 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-15 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-23 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-31 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-15 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-27 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-19 + 390.144 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-11 + 390.144 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-30 + 390.143 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-10 + 390.143 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-13 + 390.143 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-02 + 390.143 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-05-14 + 390.141 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-14 + 390.141 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-29 + 390.141 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 390.141 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-29 + 390.138 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-06 + 390.138 + Add comar script and meta package + Marcin Bojara + marcin.bojara@gmail.com + + + 2020-07-05 + 390.132 + Add comar script and meta package + Marcin Bojara + marcin.bojara@gmail.com + + + 2020-06-01 + 390.132 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-03 + 390.132 + Rebuild. + Mustafa Cinasal Bojara + muscnsl@gmail.com + + + 2020-01-31 + 390.132 + Rebuild. + Mustafa Cinasal Bojara + muscnsl@gmail.com + + + 2020-01-09 + 390.132 + Add dkms support. + Marcin Bojara + marcin.bojara@gmail.com + + + 2019-12-12 + 390.132 + First release + İdris Kalp + idriskalp@gmail.com + + + + + + perf + http://www.kernel.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:gui + kernel.tools + Performance analyser tool that makes full use of the Linux performance counter subsystem + perf is a new tool which is used to optimize, validate and measure applications, workloads or the full system through the Linux performance counter subsystem. + https://mirrors.edge.kernel.org/pub/linux/kernel/v5.x/linux-5.15.tar.gz + + git + libunwind-devel + audit-devel + xz-devel + gtk2-devel + unifdef + elfutils-devel + diffutils + newt-devel + xmlto + asciidoc + pciutils-devel + numactl-devel + python-devel + slang-devel + glib2-devel + zlib-devel + perl + util-linux + libxslt + openssl-devel + systemtap-sdt-devel + zstd-devel + libcap-devel + python3 + + + patches/linux/patch-5.15.41.xz + patches/aufs5/aufs5.15.36-20220509.patch + patches/aufs5/aufs5-base.patch + patches/aufs5/aufs5-kbuild.patch + patches/aufs5/aufs5-loopback.patch + patches/aufs5/aufs5-mmap.patch + patches/aufs5/tmpfs-idr.patch + patches/aufs5/vfs-ino.patch + patches/aufs5/aufs5-standalone.patch + patches/mageia/fs-procfs-do-not-list-TID-0-in-proc-pid-task.patch + patches/mageia/CVE-2019-12379.patch + patches/mageia/CVE-2020-16119-DCCP-CCID-structure-use-after-free.patch + patches/mageia/platform-x86-add-shuttle-wmi-driver.patch + patches/mageia/platform-x86-shuttle-wmi-drop-devinit-exit.patch + patches/mageia/platform-x86-shuttle-wmi-4.2-buildfix.patch + patches/mageia/platform-x86-shuttle-wmi-4.13-buildfix.patch + patches/mageia/platform-x86-shuttle-wmi-kernel-5.5.patch + patches/mageia/3rd-3rdparty-tree.patch + patches/mageia/3rd-3rdparty-merge.patch + patches/mageia/3rd-ndiswrapper-1.63.patch + patches/mageia/3rd-ndiswrapper-Kconfig.patch + patches/mageia/3rd-ndiswrapper-Makefile-build-fix.patch + patches/mageia/3rd-niswrapper-Kconfig-Makefile.patch + patches/mageia/3rd-rtl8812au.patch + patches/mageia/3rd-rtl8812au-Kconfig-Makefile.patch + patches/mageia/3rd-rtl8812au-rename.patch + patches/mageia/3rd-rtl8812au-kernel-5.12.patch + patches/mageia/3rd-rtl8812au-kernel-5.15.patch + patches/mageia/3rd-rtl8723de.patch + patches/mageia/3rd-rtl8723de-Kconfig-Makefile.patch + patches/mageia/3rd-rtl8723de-fix-redefine.patch + patches/mageia/3rd-rtl8723de-nodebug.patch + patches/mageia/3rd-rtl8223de-kernel-5.6.patch + patches/mageia/3rd-rtl8723de-add-kernel-5.8-support.patch + patches/mageia/3rd-viahss-0.92.patch + patches/mageia/3rd-viahss-config.patch + patches/mageia/3rd-viahss-module-license.patch + patches/mageia/3rd-viahss-2.6.35-buildfix.patch + patches/mageia/3rd-viahss-3.0-buildfix.patch + patches/mageia/3rd-viahss-Kconfig-Makefile.patch + patches/mageia/3rd-rtl8821ce.patch + patches/mageia/3rd-rtl8821ce-Kconfig-Makefile.patch + patches/mageia/3rd-rtl8821ce-5.8-fix.patch + patches/mageia/3rd-rtl8821ce-kernel-5.10.patch + patches/mageia/3rd-rtl8821ce-kernel-5.12.patch + patches/mageia/3rd-rtl8821ce-kernel-5.15.patch + patches/mageia/3rd-fix-kconfig.patch + + kernel/tools/perf/pspec.xml + + + perf + + audit + xz + newt + elfutils + gtk2 + numactl + libunwind + python + slang + glib2 + zlib + perl + zstd + libcap + + + /etc + /usr/bin + /usr/lib + /usr/libexec + /usr/include + /usr/share/man/ + /usr/share/perf-core + /usr/share/doc/perf-tip + + + + + 2022-05-21 + 5.15.41 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-09-29 - 6.0.12 + 2021-06-19 + 5.10.45 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-08-02 - 6.0.10 + 2021-06-02 + 5.10.41 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + İdris Kalp + idriskalp@gmail.com - 2019-05-17 - 6.0.8 + 2020-12-27 + 5.10.19 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-04-19 - 6.0.6 + 2020-12-27 + 5.10.3 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Idris Kalp + idriskalp@gmail.com - 2019-01-29 - 6.0.4 + 2020-08-07 + 5.7.14 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Idris Kalp + idriskalp@gmail.com - 2019-01-16 - 6.0.2 + 2020-06-18 + 5.6.19 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Idris Kalp + idriskalp@gmail.com - 2018-12-23 - 6.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-23 - 5.2.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-18 - 5.2.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-17 - 5.2.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-10 - 5.2.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-18 - 5.2.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-01 - 5.2.8 - Fix chmod and file path. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-03-15 - 5.2.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-03 - 5.2.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-25 - 5.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-11 - 5.1.14 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2017-03-04 - 5.1.14 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-15 - 5.1.12 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-12-13 - 5.1.10 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-23 - 5.1.6 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-08-17 - 5.1.4 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-22 - 5.1.2 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-17 - 5.1.0 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-17 - 5.1.0b - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-12 - 5.0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-09 - 5.0.12 - First release - ali algul - alialgul@pisilinux.org - - - - - - libnetwork - https://github.com/docker/libnetwork - - Ertuğrul Erata - ertugrulerata@gmail.com - - Apache-2.0 - app:console - hardware.virtualization - Docker Networking - Libnetwork provides a native Go implementation for connecting containers The goal of libnetwork is to deliver a robust Container Network Model that provides a consistent programming interface and the required network abstractions for applications. - https://sourceforge.net/projects/pisilinux/files/source/libnetwork-0.8.0_dbc11cc.tar.gz - - golang - - hardware/virtualization/libnetwork/pspec.xml - - - libnetwork - - docker - - - /usr/bin - /usr/share/doc - - - - - 2020-03-10 - 0.8.0_pre1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-08 - 0.8.0_pre1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-08 - 0.8.0_pre1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - tini - https://github.com/krallin/tini - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:console - hardware.virtualization - A tiny but valid `init` for containers - A tiny but valid `init` for containers - https://github.com/krallin/tini/archive/v0.18.0.tar.gz - - cmake - - - tini-cmake-fixes.patch - - hardware/virtualization/tini/pspec.xml - - - tini - - /usr/bin - /usr/share/doc - - - - - 2020-03-19 - 0.18.0 - rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-20 - 0.18.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-07-08 - 0.18.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libpaper - http://packages.debian.org/unstable/source/libpaper - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.printer - Library for handling paper characteristics - Kağıt özelliklerini düzenlemek için kitaplık - Libpaper is a programming library for handling paper characteristics. - libpaper, kağıt özelliklerini düzenlemek için bir programlama kitaplığıdır. - Libpaper es una librería de programación para manejar características de papel. - http://ftp.debian.org/debian/pool/main/libp/libpaper/libpaper_1.1.28.tar.gz - hardware/printer/libpaper/pspec.xml - - - libpaper - - /usr/bin - /usr/sbin - /usr/lib - /etc/ - /usr/share/man - /usr/share/doc - /usr/share/locale - - - papersize - - - - libpaper-devel - Development files for libpaper - libpaper için geliştirme dosyaları - - libpaper - - - /usr/include - /usr/share/man/man3 - - - - - 2021-07-16 - 1.1.28 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-07 - 1.1.24 - Rebuild New T. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 1.1.24 - Rebuild New T. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-23 - 1.1.24 - Rebuild nmu5 - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.1.24 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 1.1.24 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - splix - http://splix.sf.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - app:console - hardware.printer - A set of CUPS printer drivers for SPL (Samsung Printer Language) printers - SPL (Samsung Yazıcı Dili) için CUPS sürücüleri - The Splix drivers are usable by all printer devices which understand the SPL II language. It covers several Samsung, Xerox, Dell and Ricoh printers. - splix, SPL II dilini anlayabilen tüm yazıcılar tarafından kullanılabilen sürücüleri içerir. Bu sürücü bazı Samsung, Xerox, Dell ve Ricoh yazıcıları desteklemektedir. - https://sourceforge.net/projects/pisilinux/files/source/splix-2.0.1.tar.gz - http://splix.ap2c.org/samsung_cms.tar.bz2 - - cups-devel - jbigkit-devel - - - splix-1.1.0-fix-makefile.patch - install-english-only.patch - splix-deviceID.patch - splix-ldflags.patch - - hardware/printer/splix/pspec.xml - - - splix - - cups - libgcc - jbigkit - - - /usr/lib/cups - /usr/share/cups - /usr/share/doc - - - - - 2022-05-28 - 2.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-12 - 2.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 2.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 2.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 2.0.1 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 2.0.0_20110720 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-10 - 2.0.0_20110720 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - cups - https://www.cups.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - service - hardware.printer - Common Unix Printing System - Unix Ortak Yazdırma Sistemi - cups provides a portable printing layer for *nix-based operating systems. - https://github.com/OpenPrinting/cups/releases/download/v2.4.2/cups-2.4.2-source.tar.gz - - acl-devel - pam-devel - dbus-devel - libpcre-devel - zlib-devel - python-devel - libusb-devel - libgcc - avahi-libs - avahi-devel - mit-kerberos-devel - libpaper-devel - xdg-utils - colord-devel - autoconf - - - fedora/cups-final-content-type.patch - fedora/cups-res_init.patch - fedora/cups-logrotate.patch - fedora/cups-web-devices-timeout.patch - gentoo/cups-2.2.6-fix-install-perms.patch - pisilinux/cups-run.patch - pisilinux/statedir.patch - pld-linux/cups-avahi-address.patch - - hardware/printer/cups/pspec.xml - - - cups - - acl - pam - dbus - zlib - libusb - libgcc - libpaper - avahi - e2fsprogs - avahi-libs - mit-kerberos - - - /etc/cups/*conf - /usr/lib/tmpfiles.d/cups.conf - /usr/lib - /usr/sbin - /usr/bin - /var/cache/cups/rss - /var/spool/cups/tmp - /run/cups/certs - /var/log/cups - /etc - /lib/udev/rules.d - /lib/systemd/system - /usr/share/cups - /usr/share/icons - /usr/share/applications - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Service - System.Package - - - tmpfiles.conf - cups.logrotate - fedora/textonly.ppd - - - - cups-devel - Development files for cups - cups için geliştirme dosyaları - - cups - - - /usr/include - /usr/bin/cups-config - - - - cups-32bit - 32-bit shared libraries for cups - cups için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - zlib-32bit - openssl-32bit - - - zlib-32bit - openssl-32bit - libgcc - cups - - - /usr/bin/cups-config-32bit - /usr/lib32 - - - - - 2022-05-26 - 2.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-06 - 2.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-25 - 2.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-30 - 2.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-16 - 2.3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 2.3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-29 - 2.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-08 - 2.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-04 - 2.2.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-24 - 2.2.11 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-23 - 2.2.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-11 - 2.2.10 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-24 - 2.2.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-10 - 2.2.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-13 - 2.2.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-13 - 2.2.6 - Version bump - Ayhan Yalçınsoy - ayhanyacinsoy@pisilinux.org - - - 2017-07-16 - 2.2.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.2.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 2.1.3 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-23 - 2.1.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gutenprint - http://gimp-print.sourceforge.net/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - data - hardware.printer - High quality printer drivers - Yüksek kaliteli yazıcı sürücüleri - gutenprint contains drivers for Canon, Epson, Lexmark, Sony, Olympus, and PCL printers for use with Ghostscript, CUPS, Foomatic, and the Gimp. - Canon, Epson, Lexmark, Sony, Olympus ve PCL türü yazıcılar için Gimp, CUPS, Foomatic yazıcı sürücüleri - https://sourceforge.net/projects/gimp-print/files/gutenprint-5.3/5.3.4/gutenprint-5.3.4.tar.xz/download - - fedora/cups-genppdupdate.py.in - - - cups-devel - foomatic-db - ghostscript-devel - python-cups - atk-devel - gtk2-devel - zlib-devel - cairo-devel - glib2-devel - pango-devel - libusb-devel - - - fedora/gutenprint-build.patch - fedora/gutenprint-menu.patch - - hardware/printer/gutenprint/pspec.xml - - - gutenprint - - cups - ghostscript - gtk2 - zlib - glib2 - libusb - ncurses - freetype - fontconfig - - - /usr/lib/cups - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man/ - /usr/share/cups - /usr/share/foomatic - /usr/share/gutenprint - /usr/share/locale - /usr/include/gutenprintui2/ - /etc/cups/command.types - - - System.Package - - - fedora/gutenprint-foomaticppdupdate - - - - gutenprint-devel - Development files for gutenprint - gutenprint için geliştirme dosyaları - - gtk2-devel - gutenprint - - - /usr/include/gutenprint - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2022-05-28 - 5.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-11 - 5.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 5.3.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 5.3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-24 - 5.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-23 - 5.2.14 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-11 - 5.2.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 5.2.13 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 5.2.13 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 5.2.12 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.2.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-13 - 5.2.11 - First release - Ali Algul - alialgul@pisilinux.org - - - - - - cups-filters - http://www.openprinting.org - - Marcin Bojara - marcin@pisilinux.org - - GPLv2 - GPLv3 - GPLv2+ - GPLv3+ - LGPLv2+ - MIT - data - library - app:console - hardware.printer - OpenPrinting CUPS filters and backends - Contains backends, filters, and other software that was once part of the core CUPS distribution but is no longer maintained by Apple Inc. In addition it contains additional filters developed independently of Apple, especially filters for the PDF-centric printing workflow introduced by OpenPrinting. - https://www.openprinting.org/download/cups-filters/cups-filters-1.28.15.tar.xz - - python3-devel - cups-devel - glib2-devel - tiff-devel - lcms2-devel - dbus-devel - python-devel - libpng-devel - gettext-devel - freetype-devel - fontconfig-devel - libjpeg-turbo-devel - dejavu-fonts - poppler-utils - poppler-cpp-devel - zlib-devel - openldap-client - avahi-devel - avahi-glib-devel - qpdf-devel - ghostscript-devel - poppler-devel - mupdf-devel - - hardware/printer/cups-filters/pspec.xml - - - cups-filters - - cups - dbus - tiff - zlib - glib2 - lcms2 - libgcc - libpng - fontconfig - poppler-cpp - mit-kerberos - libjpeg-turbo - qpdf - ghostscript - poppler - e2fsprogs - avahi-glib - avahi-libs - openldap-client - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/ppd - /usr/bin - /usr/share/cups - /etc/cups/cups-browsed.conf - /etc/fonts/conf.d/99pdftoopvp.conf - - - - cups-filters-devel - Development files for cups-filters - Cups-filters için geliştirme dosyaları - - cups-filters - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-28 - 1.28.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-11 - 1.28.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-16 - 1.28.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 1.28.7 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-09-03 - 1.28.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-29 - 1.27.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.27.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-16 - 1.25.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-07 - 1.25.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-29 - 1.25.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-31 - 1.23.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-30 - 1.21.6 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-07 - 1.21.3 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-09 - 1.20.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-21 - 1.20.3 - version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-28 - 1.20.1 - version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-12 - 1.17.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-13 - 1.17.9 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-07-13 - 1.14.1 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-21 - 1.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-23 - 1.5.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - paper - https://github.com/rrthomas/paper - - Blue Devil - bluedevil@sctzine.com - - GPLv3 - app:console - hardware.printer - Replacement for Debian's libpaper - Debian'ın libpaper kitaplığı yerine bir kitaplık - The paper package enables users to indicate their preferred paper size, provides the paper(1) utility to find the user's preferred default paper size and give information about known sizes, and specifies system-wide and per-user paper size catalogues, which can be can also be used directly. - paper, Debian'ın libpaper kitaplığı yerine bir kitaplık sunar. - https://github.com/rrthomas/paper/archive/v2.2.tar.gz - - gnulib-d279bc6.tar.gz - - - help2man - - hardware/printer/paper/pspec.xml - - - paper - Replacement for Debian's libpaper - - /etc - /usr/lib/ - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2020-06-03 - 2.2 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - foomatic-db-engine - http://www.linuxprinting.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Foomatic printer database engine - Foomatic yazıcı veritabanı motoru - foomatic-db-engine is the layer that provides the database engine to Foomatic. - foomatic-db-engine, Foomatic veritabanı motorunu oluşturan katmandır. - https://www.openprinting.org/download/foomatic/foomatic-db-engine-4.0-20210824.tar.gz - - libxml2-devel - cups-devel - - - foomatic-db-engine-4.0.8-fix-sandbox.patch - 4.0.7-perl-module.patch - - hardware/printer/foomatic-db-engine/pspec.xml - - - foomatic-db-engine - - libxml2 - - - /usr/bin - /usr/sbin - /usr/lib - /etc/foomatic - /usr/share/foomatic/templates - /usr/share/man - /usr/share/doc - - - - - 2022-05-28 - 20210314 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-11 - 20210314 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 20210314 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 20200310 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-11 - 20190111 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2018-08-13 - 4.0.20180813 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2018-03-10 - 4.0.20180310 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2017-02-28 - 4.0.12 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 4.0.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-24 - 4.0.12 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - pnm2ppa - http://pnm2ppa.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Driver addons for some Hp Deskjet printers - Bazı Hp Deskjet yazıcılar için sürücü eklentileri - Tool to convert pnm data to ppa data for Hp Deskjet 710, 712, 720, 722, 820, 1000 series printer drivers. - Hp Deskjet 710, 712, 720, 722, 820, 1000 serisi yazıcı sürücüleri için pnm verisini ppa verisine dönüştüren araçlar - mirrors://sourceforge/pnm2ppa/pnm2ppa-1.13.tar.gz - - pnm2ppa-default_config.patch - - hardware/printer/pnm2ppa/pspec.xml - - - pnm2ppa - - enscript - - - /etc - /etc/pdq - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/pnm2ppa - - - - - 2020-03-10 - 1.13 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 1.13 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 1.13 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 1.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - cups-pk-helper - https://www.freedesktop.org/wiki/Software/cups-pk-helper - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - hardware.printer - PolicyKit helper to configure cups with fine-grained privileges - cups-pk-helper provides a PolicyKit helper to configure cups with fine-grained privileges. For example, it's possible to let users enable/disable printers without requiring a password, while still requiring a password for editing printer settings. - https://www.freedesktop.org/software/cups-pk-helper/releases/cups-pk-helper-0.2.6.tar.xz - - cups-devel - polkit-devel - elogind-devel - intltool - - hardware/printer/cups-pk-helper/pspec.xml - - - cups-pk-helper - - cups - glib2 - polkit - - - /usr/lib/cups-pk-helper - /usr/share/dbus-1 - /usr/share/locale - /usr/share/doc - /usr/share/polkit-1 - - - - - 2022-05-28 - 0.2.6 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2021-07-19 - 0.2.6 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - foomatic-db - https://linuxprinting.org/foomatic.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - data - hardware.printer - Database of printers and printer drivers - Yazıcı sürücüleri - foomatic-db contains the knowledge database for printers which are used by foomatic-db-engine to generate PPD files. - Foomatic yazıcı veritabanı ve sürücüleri - https://www.openprinting.org/download/foomatic/foomatic-db-4.0-20220223.tar.xz - - cleanup-script - - hardware/printer/foomatic-db/pspec.xml - - - foomatic-db - - pnm2ppa - - - /usr/share - - - - - 2022-05-28 - 4.0.20220223 - Rebuild - Mustafa Cinasal - muscnsl@gmail - - - 2022-03-11 - 4.0.20220223 - version bump - Mustafa Cinasal - muscnsl@gmail - - - 2021-03-14 - 4.0.20210314 - version bump - Mustafa Cinasal - muscnsl@gmail - - - 2020-03-10 - 4.0.20200310 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2019-01-11 - 4.0.20190111 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2018-08-13 - 4.0.20180813 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2018-03-10 - 4.0.20180310 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2017-12-14 - 4.0.20171214 - version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-28 - 4.0.20170228 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 4.0.20160609 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 4.0.20160326 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - hplip - http://hplip.sourceforge.net/ - - Pisi Linux Admins - admins@pisilinux.org - - custom - GPL2 - hardware.printer - HP Linux Imaging and Printing System - HP Linux yazıcı ve tarayıcı sistemi - HP Linux Imaging and Printing (HPLIP) System includes printer and scanner drivers and related service tools. - HP yazıcı ve tarayıcıları için sürücüler, yazılım eklentileri ve yönetim araçları - mirrors://sourceforge/hplip/hplip-3.22.4.tar.gz - - patch-ppds.sh - fedora/copy-deviceids.py - fedora/hplip-deviceIDs-ppd.patch - fedora/hplip-ppd-ImageableArea.patch - - - zlib-devel - libjpeg-turbo-devel - foomatic-db - rpcbind - net-snmp-devel - sane-backends-devel - cups-devel - python3-devel - python-devel - libusb-devel - dbus-devel - openssl-devel - desktop-file-utils - avahi-devel - python-reportlab - libxcrypt-devel - python-pillow-devel - - - fedora/hplip-avahi-parsing.patch - fedora/hplip-bad-low-ink-warning.patch - fedora/hplip-check-cups.patch - fedora/hplip-clear-old-state-reasons.patch - fedora/hplip-device-reconnected.patch - fedora/hplip-dj990c-margin.patch - fedora/hplip-3165-sourceoption.patch - fedora/hplip-hpcups-sigpipe.patch - fedora/hplip-hpijs-marker-supply.patch - fedora/hplip-log-stderr.patch - fedora/hplip-no-asm.patch - fedora/hplip-no-write-bytecode.patch - fedora/hplip-noernie.patch - fedora/hplip-pstotiff-is-rubbish.patch - fedora/hplip-retry-open.patch - fedora/hplip-scan-tmp.patch - fedora/hplip-silence-ioerror.patch - fedora/hplip-snmp-quirks.patch - fedora/hplip-strncpy.patch - fedora/hplip-typo.patch - fedora/hplip-udev-rules.patch - fedora/hplip-strstr-const.patch - fedora/hplip-ui-optional.patch - pisilinux/desktop-i18n.patch - pisilinux/desktop-i18n-1.patch - pisilinux/fix-polkit-directory.patch - pisilinux/suppress-module-warnings.patch - pisilinux/hp-systray-consume-session-param.patch - Add-include-cups-ppd.h-in-various-places-as-CUPS-2.2.patch - 0025-Remove-all-ImageProcessor-functionality-which-is-clo.patch - - hardware/printer/hplip/pspec.xml - - - hplip - app:console - library - driver - - wget - zlib - libjpeg-turbo - net-snmp - foomatic-db - foomatic-db-engine - sane-backends - sane-frontends - cups - dbus - libgcc - libusb - openssl - avahi - avahi-libs - python-pillow - python-reportlab - - - /etc/sane.d/dll.d - /etc/hp/hplip.conf - /usr/bin - /usr/lib/cups/backend - /usr/lib/cups/filter - /usr/lib - /var/lib/hp - /usr/share/cups - /usr/share/hplip - /usr/share/dbus-1 - /usr/share/PolicyKit - /usr/share/hplip/prnt/plugins - /var/log/hp - /lib/udev/rules.d - /etc/cron.daily/ - - - System.Package - - - fedora/hpcups-update-ppds.sh - hpaio - hplip_tr.qm - - - - hplip-gui - A set of useful utilities written in Qt for managing HP devices - Qt ile yazılmış, HP cihazları yönetmek için kullanılan bir dizi kullanışlı araç - app:gui - hplip - - hplip - python-pygobject - python-qt5 - - - /usr/bin/hp-toolbox - /usr/bin/hp-systray - /usr/bin/hp-print - /usr/share/hplip/toolbox.py - /usr/share/hplip/systray.py - /usr/share/hplip/print.py - /etc/xdg/autostart - /usr/share/applications/*.desktop - /usr/share/hplip/data/images - /usr/share/hplip/plugins - /usr/share/hplip/ui4 - /usr/share/pixmaps - - - hplip.png - - - - hplip-docs - Documentation files for HPLIP - data:doc - - hplip - - - /usr/share/doc - - - - - 2022-05-28 - 3.22.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-03-12 - 3.22.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-04-26 - 3.21.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-10 - 3.18.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 3.18.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-09 - 3.18.4 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-09 - 3.17.11 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-15 - 3.17.11 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 3.16.11 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 3.16.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-09 - 3.16.5 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-05-08 - 3.15.11 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - enscript - http://www.gnu.org/software/enscript/enscript.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.printer - Powerful text-to-postscript converter - Metin dosyalarından postscript belge oluşturma aracı - enscript is an application that you can use to convert your text files to postscript files with enhanced formatting capabilities like colorizing, page layout management etc. - Metin dosyalarını postscript belgelere dönüştüren, dönüşüm sırasında renklendirme, sayfa düzeni ve boyut değiştirme gibi biçimlendirmeler yapabilen bir araç - https://ftp.gnu.org/gnu/enscript/enscript-1.6.6.tar.gz - - ruby.patch - - hardware/printer/enscript/pspec.xml - - - enscript - - /etc - /usr/bin - /usr/share/doc - /usr/share/enscript - /usr/share/info - /usr/share/locale - /usr/share/man - - - ruby.st - - - - - 2020-02-12 - 1.6.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 1.6.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-28 - 1.6.4 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-23 - 1.6.4 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - foomatic-db-nonfree - http://www.linuxprinting.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - Custom - app:console - hardware.printer - Foomatic printer database nonfree - Foomatic - database extension consisting of manufacturer-supplied PPD files released under non-free licenses. - https://www.openprinting.org/download/foomatic/foomatic-db-nonfree-20210824.tar.gz - - cups-devel - foomatic-db - - hardware/printer/foomatic-db-nonfree/pspec.xml - - - foomatic-db-nonfree - - foomatic-db - - - /usr/share/foomatic/db/ - /usr/share/doc/foomatic-db-nonfree - - - - - 2022-05-28 - 20210824 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-11 - 20210824 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-14 - 20210314 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 20200310 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-11 - 20190111 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2018-08-13 - 20180813 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2018-03-10 - 20180310 - version bump. - Mustafa Cinasal - muscnsl@gmail - - - 2017-12-14 - 20171214 - Version Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-04-09 - 20170409 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 20160609 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 20160326 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - psutils - https://github.com/rrthomas/psutils - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - app:console - hardware.printer - PostScript Utilities - PostScript yardımcı araçları - psutils contains tools to convert to/from postscript files. - psutils PostScript dosyaları arasında dönüşüm yapmak için gerekli araçları içerir. - https://github.com/rrthomas/psutils/archive/refs/tags/v2.09.tar.gz - - gnulib-d279bc6.tar.gz - - - paper - help2man - ghostscript-devel - - hardware/printer/psutils/pspec.xml - - - psutils - Utilities for manipulating PostScript documents - - paper - ghostscript - perl-IPC-Run3 - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/psutils/PSUtils.pm - - - - - 2022-05-28 - 2.09 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-06-03 - 2.03 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - system-config-printer - https://github.com/OpenPrinting/system-config-printer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - hardware.printer - A printer administration tool - Yazıcı yapılandırma altyapısı - system-config-printer is a graphical user interface that allows the user to configure a CUPS print server. - system-config-printer, Python ile yazılmış ve otomatik yazıcı tanıma sürecinde kullanılan altyapıyı oluşturan bir kütüphanedir. - https://github.com/OpenPrinting/system-config-printer/releases/download/v1.5.16/system-config-printer-1.5.16.tar.xz - - tr.po - - - xmlto - gtk3-devel - util-linux - cups-devel - eudev-devel - glib2-devel - libusb-devel - gettext-devel - python3-devel - libxslt-devel - libsecret-devel - dbus-glib-devel - autoconf-archive - desktop-file-utils - - - autoconf-2-70.diff - fix-icon.patch - - hardware/printer/system-config-printer/pspec.xml - - - system-config-printer - - eudev - glib2 - libusb - libsecret - python3-cups - dbus-python3 - python3-pysmbc - python3-requests - libgnome-keyring - python3-pygobject3 - cups - - - /usr/lib - /etc/dbus-1 - /etc/cupshelpers - /usr/share/doc - /lib/udev/rules.d - /usr/share/dbus-1 - /usr/share/system-config-printer/debug.py - /usr/share/appdata/system-config-printer.appdata.xml - /usr/share/system-config-printer/smburi.py - /usr/share/system-config-printer/config.py - /usr/share/system-config-printer/ppdippstr.py - /lib/systemd/system/configure-printer@.service - /run/udev-configure-printer - /lib/udev - /usr/libexec - /usr/lib/tmpfiles.d/system-config-printer.conf - /usr/share/metainfo/system-config-printer.appdata.xml - /usr/bin/scp-dbus-service - /usr/share/system-config-printer/xml - /usr/share/system-config-printer/*.py - /usr/share/system-config-printer/troubleshoot - - - tmpfiles.conf - - - - system-config-printer-gtk - GTK+ frontend of system-config-printer - system-config-printer için GTK+ önyüzü - - python-gtk - notify-python - python3-pygobject3 - system-config-printer - - - /usr/share/man - /usr/share/system-config-printer - /etc/xdg/autostart - /usr/share/applications - /usr/bin - /usr/share/locale - - - - - 2022-05-28 - 1.5.16 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-28 - 1.5.16 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 1.5.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-16 - 1.5.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-08 - 1.5.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.5.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-15 - 1.5.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-11 - 1.5.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 1.5.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-22 - 1.5.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-03 - 1.5.9 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-12-15 - 1.5.9 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-01 - 1.5.7 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.5.7 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-08 - 1.5.7 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - alsa-plugins - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.sound - Additional library plugins Eg.jack, pulse, maemo ... - Additional library plugins Eg.jack, pulse, maemo ... - alsa-plugins contains ALSA (Advanced Linux Sound Architecture) - https://www.alsa-project.org/files/pub/plugins/alsa-plugins-1.2.6.tar.bz2 - - dbus-devel - libavtp-devel - pulseaudio-libs-devel - libsamplerate-devel - speexdsp-devel - ffmpeg-devel - jack-audio-connection-kit-devel - alsa-lib-devel - - hardware/sound/alsa-plugins/pspec.xml - - - alsa-plugins - ALSA console plugins - alsa-plugins contains ALSA (Advanced Linux Sound Architecture) - - dbus - libavtp - pulseaudio-libs - libsamplerate - speexdsp - ffmpeg - jack-audio-connection-kit - alsa-lib - - - /etc/alsa/conf.d - /usr/lib/alsa-lib - /usr/share/alsa - - - - - 2022-06-03 - 1.2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-25 - 1.2.6 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - alsa-utils - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.sound - Advanced Linux Sound Architecture (ALSA) utilities - ALSA araçları - alsa-utils contains command line utilities for the Advanced Linux Sound Architecture (ALSA). - Alsa-utils Linux işletim sistemlerinde ses ve MIDI fonksiyonlarının gerçekleştirilmesini sağlayan gelişmiş Linux ses mimarisidir - ftp://ftp.alsa-project.org/pub/utils/alsa-utils-1.2.7.tar.bz2 - - xmlto - util-linux - eudev-devel - fftw3-devel - libxslt-devel - ncurses-devel - libsamplerate-devel - alsa-lib-devel - - hardware/sound/alsa-utils/pspec.xml - - - alsa-utils - - fftw3 - ncurses - alsa-lib - libsamplerate - - - /etc - /sbin - /usr/share/doc - /usr/share/man - /var/lib/alsa - /usr/bin - /usr/lib - /usr/share/alsa - /lib/udev/rules.d - /usr/share/sounds - /lib/systemd/system - /usr/share/locale - - - System.Service - - - alsaunmute - 01beep.conf - alsactl.conf - alsaunmute.1 - - - - - 2022-06-03 - 1.2.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-10 - 1.2.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 1.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-10 - 1.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 1.1.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-07 - 1.1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-12 - 1.1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.1.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - alsa-lib - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.sound - The Advanced Linux Sound Architecture (ALSA) library - Gelişmiş Linux Ses Mimarisi kütüphanesi - alsa-lib provides ALSA runtime libraries to simplify application programming and provide higher level functionality as well as support for the older OSS API, providing binary compatibility for most OSS programs. - alsa-lib, ses aygıtlarına erişim sağlayarak kolayca uygulama yazılmasını sağlayan bir kütüphanedir. - ftp://ftp.alsa-project.org/pub/lib/alsa-lib-1.2.7.tar.bz2 - - doxygen - python-devel - - hardware/sound/alsa-lib/pspec.xml - - - alsa-lib - - python - - - /usr/lib - /usr/bin - /usr/share/doc - /usr/share/alsa - - - - alsa-lib-devel - Development files for alsa-lib - alsa-lib için geliştirme dosyaları - - alsa-lib - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include/sys - /usr/include/alsa - /usr/include/asoundlib.h - /usr/share/aclocal - /usr/share/man/man3 - - - - alsa-lib-32bit - 32-bit shared libraries for alsa-lib - alsa-lib için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - /usr/lib32 - - - - - 2022-06-03 - 1.2.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-10 - 1.2.6.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 1.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-10 - 1.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 1.2.1.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-16 - 1.1.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-07 - 1.1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.1.1 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - alsa-tools - http://www.alsa-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - hardware.sound - ALSA configuration tools - Gelişmiş Linux Ses Mimarisi araçları - alsa-tools contains ALSA (Advanced Linux Sound Architecture) tools like firmware loaders and sound card control utilities for specific sound cards. - ftp://ftp.alsa-project.org/pub/tools/alsa-tools-1.2.5.tar.bz2 - - gtk2-devel - fltk-devel - alsa-lib-devel - - - usx2yloader_udev.patch - firmware_locations.patch - alsa-tools-1.0.17rc1-fix-link.patch - - hardware/sound/alsa-tools/pspec.xml - - - alsa-tools - ALSA console tools - alsa-tools is a collection of console applications for controlling sound cards like EchoAudio, Envy24, etc. - - libgcc - alsa-lib - - - /usr/bin - /usr/sbin - /lib/udev - /usr/lib - /usr/share/icons - /lib/udev/rules.d - /usr/share/ld10k1 - /usr/share/sounds - /usr/share/man - /usr/share/doc/alsa-tools - - - 90-alsa-tools-firmware.rules - - - - alsa-tools-gui - Graphical frontends for some ALSA tools - alsa-tools-gui is a collection of GUI based ALSA tools for controlling sound cards like EchoAudio, Envy24, Hammerfall HDSP, RMedigicontrol. - - fltk - gtk2 - glib2 - alsa-lib - - - /usr/share/man/man1/envy24control.1 - /usr/share/doc/alsa-tools-gui - /usr/share/applications - /usr/share/pixmaps - /usr/bin/echomixer - /usr/bin/envy24control - /usr/bin/hwmixvolume - /usr/bin/hdspconf - /usr/bin/hdspmixer - /usr/bin/rmedigicontrol - /usr/bin/qlo10k1 - - - alsa-tools.xpm - hwmixvolume.png - echomixer.desktop - envy24control.desktop - hdspmixer.desktop - hdspconf.desktop - hwmixvolume.desktop - rmedigicontrol.desktop - - - - alsa-tools-devel - Development files for alsa-tools - alsa-tools için geliştirme dosyaları - - alsa-tools - - - /usr/include - /usr/share/aclocal - /usr/share/man/man3 - - - - - 2022-06-03 - 1.2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-21 - 1.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-10 - 1.2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.1.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 1.1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-07 - 1.1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-12 - 1.1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-03 - 1.1.0 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - libmfx - https://github.com/lu-zero/mfx_dispatch - - Idris Kalp - idriskalp@gmail.com - - BSD - library - hardware.graphics - Intel media sdk dispatcher - Intel media sdk dispatcher - https://github.com/lu-zero/mfx_dispatch/archive/1.25.tar.gz - - libdrm-devel - libva-devel - - hardware/graphics/libmfx/pspec.xml - - - libmfx - - libdrm - libva - - - /usr/lib - /usr/share - /usr/share/doc - - - - libmfx-devel - - libmfx - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 1.25 - First Release - Idris Kalp - idriskalp@gmail.com - - - - - - vbetool - http://www.codon.org.uk/~mjg59/vbetool/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.graphics - Alter video hardware state through video BIOS - Gerçek kipte ekran BIOS değiştirme aracı (örn. ekran kartını yeniden başlatmak için) - vbetools is a real-mode video BIOS code to alter hardware state. Vbetool uses lrmi in order to run code from the video BIOS. It is able to alter DPMS states, save/restore video card state and attempt to initialize the video card from scratch. - Donanım durumunu değiştiren gerçek kipli video BIOS kodudur. Video BIOS'undan gelen kodları çalıştırmak için lrmi kullanır. Video kartının DPMS ve kaydet/tekrar inşaa et durumunun değiştirilmesini sağlar ve video kartının hatalı durumdan başlatılmasına çalışır. - http://ftp.iij.ad.jp/pub/linux/gentoo/distfiles/32/vbetool-1.1.tar.gz - - libx86-devel - pciutils-devel - - - vbetool-1.0-build-as-needed.patch - unsigned_int.patch - - hardware/graphics/vbetool/pspec.xml - - - vbetool - - libx86 - pciutils - - - /usr/share/doc - /usr/share/man - /usr/sbin - - - - - 2021-11-29 - 1.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 1.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-17 - 1.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - redshift - https://github.com/jonls/redshift - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - hardware.misc - Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. - Redshift adjusts the color temperature of your screen according to your surroundings. This may help your eyes hurt less if you are working in front of the screen at night. - Kırmızıya kayma, ekranınızın renk sıcaklığını ortamınıza göre ayarlar. Bu, gece ekranın önünde çalışıyorsanız, gözlerinizin daha az acı çekmesine yardımcı olabilir. - Kırmızıya kayma, ekranınızın renk sıcaklığını ortamınıza göre ayarlar. Bu, gece ekranın önünde çalışıyorsanız, gözlerinizin daha az acı çekmesine yardımcı olabilir. - https://github.com/jonls/redshift/releases/download/v1.12/redshift-1.12.tar.xz - - intltool - gtk3-devel - glib2-devel - libX11-devel - libdrm-devel - libxcb-devel - python3-devel - geoclue-devel - libnotify-devel - json-glib-devel - shared-mime-info - libXxf86vm-devel - gobject-introspection-devel - - hardware/misc/redshift/pspec.xml - - - redshift - - glib2 - libX11 - libdrm - libxcb - libXxf86vm - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/icons - /usr/share/doc - /usr/share/applications - /usr/share/appdata - /usr/share/locale - - - - - 2021-10-25 - 1.12 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2020-01-31 - 1.12 - First release - PisiLinux Community - admins@pisilinux.org - - - 2019-01-30 - 1.12 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libmtdev - http://bitmath.org/code/mtdev - - PisiLinux Community - admins@pisilinux.org - - MIT - library - hardware.misc - Multitouch Protocol Translation Library - Çoklu Dokunmatik Protokol Dönüşüm Kütüphanesi - The libmtdev is a stand-alone library which transforms all variants of kernel MT events to the slotted type B protocol. - Libmtdev kütüphanesi, kernel MT olaylarının tüm çeşitlerini slotlu B tipi protokole dönüştürür. - http://bitmath.org/code/mtdev/mtdev-1.1.5.tar.gz - hardware/misc/libmtdev/pspec.xml - - - libmtdev - - /usr/bin - /usr/lib - /usr/share/doc - - - - libmtdev-devel - Development files of libmtdev - Libmtdev için geliştirme dosyaları - - libmtdev - - - /usr/include - /usr/lib/pkgconfig - - - - libmtdev-32bit - 32-bit shared libraries for libmtdev - emul32 - emul32 - - libmtdev - - - /usr/lib32 - - - - - 2020-01-16 - 1.1.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 1.1.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-13 - 1.1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-16 - 1.1.5 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - ethtool - https://www.kernel.org/pub/software/network/ethtool/ - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - app:console - hardware.misc - Utility to examine and tune ethernet-based network interfaces - Ethernet tabanlı ağ arayüzlerini tanımlamak ve ayarlamak için kullanılan bir yazılım - ethtool is used for querying and changing settings of an ethernet device. - Ethtool ağ aygıtınızın ayarlarını listelemeye ve bu ayarları değiştirmeye yarar. - https://mirrors.edge.kernel.org/pub/software/network/ethtool/ethtool-5.8.tar.xz - - libmnl-devel - - hardware/misc/ethtool/pspec.xml - - - ethtool - Utility to examine and tune ethernet-based network interfaces - - libmnl - - - /usr/share/doc - /usr/share/man - /usr/sbin - /usr/share/bash-completion - - - - - 2020-09-07 - 5.8 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-07-22 - 5.7 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-04-28 - 5.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-11-04 - 5.3 - Ver. bump - Blue Devil - bluedevil@sctzine.com - - - 2016-02-18 - 4.2 - Version bump - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2010-11-19 - 2.6.36 - First release - Onur Küçük - onur@pardus.org.tr - - - - - - android-tools - https://developer.android.com/studio - - Stefan Gronewold - groni@pisilinux.org - - Custom - programming.tools - Android Platform Tools - Android Platform Tools - https://github.com/nmeum/android-tools/releases/download/31.0.3p1/android-tools-31.0.3p1.tar.xz - - git - gcc - perl - cmake - ninja - golang - lz4-devel - zlib-devel - gtest-devel - zstd-devel - brotli-devel - libusb-devel - libpcre-devel - protobuf-devel - libpcre2-devel - libunwind-devel - - hardware/misc/android-tools/pspec.xml - - - android-tools - Android Platform Tools - Android Platform Tools - programming.tools - - lz4 - zlib - zstd - gtest - brotli - libgcc - libusb - libpcre - protobuf - libpcre2 - libunwind - android-udev - - - /usr/bin - /usr/share - - - - - 2022-05-03 - 31.03 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - libgpod - http://www.gtkpod.org/libgpod.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - A library to access the contents of an iPod - iPod üzerindeki verilere ulaşmak için kullanılan bir kütüphane - libgpod est une librairie partagée permettant d'accéder au contenu d'un iPod. Cette librairie est basée sur le code du projet gtkpod. - libgpod is a library to access the contents of an iPod. It supports playlists, smart playlists, playcounts, ratings, podcasts, album artwork, photos, etc. - libgpod, iPod taşınabilir medya oynatıcıları üzerindeki verilere ulaşmak için kullanılan bir kütüphanedir. Kütüphane, gelişmiş parça listesi, parça istatistikleri, podcast gibi ileri özellikleri destekler. libgpod, gtkpod projesi temel alınarak geliştirilmiştir. - mirrors://sourceforge/gtkpod/libgpod-0.8.3.tar.bz2 - - intltool - gettext-devel - libusb-devel - sqlite-devel - python-devel - gtk-doc - gtk2-devel - docbook-xml - python-six - python-mutagen - libplist-devel - sg3_utils-devel - libimobiledevice-devel - python-pygobject-devel - swig - - - 0001-323-Segmentation-fault-when-opening-ipod.patch - libgpod-0.8.2-pkgconfig_overlinking.patch - libgpod-fixswig.patch - libgpod-udev.patch - 0001-configure.ac-Add-support-for-libplist-2.2.patch - - hardware/misc/libgpod/pspec.xml - - - libgpod - - zlib - glib2 - sqlite - libusb - libxml2 - libplist - sg3_utils - gdk-pixbuf - libimobiledevice - - - /usr/bin - /lib/udev - /usr/lib - /usr/share/hal - /lib/udev/rules.d - /run/libgpod - /usr/share/locale - /usr/share/doc - - - - python-libgpod - Python bindings for libgpod - libgpod için Python bağlayıcıları - programming.language.python - - libgpod - libplist - gdk-pixbuf - python-mutagen - - - /usr/lib/python2* - - - - libgpod-devel - Development files for libgpod - libgpod için geliştirme dosyaları - - libgpod - gdk-pixbuf-devel - libimobiledevice-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-31 - 0.8.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 0.8.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 0.8.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-04 - 0.8.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gpm - https://www.nico.schottelius.org/software/gpm/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - hardware.misc - Console mouse driver - Konsol tabanlı fare sürücüsü - GPM (short for General Purpose Mouse) brings mouse support to TTYs. - Genel amaçlı fare ve konsolda fare desteği içindir. - http://www.nico.schottelius.org/software/gpm/archives/gpm-1.20.7.tar.bz2 - - ncurses-devel - texinfo - - - gpm-1.20.7-glibc_2.26-1.patch - - hardware/misc/gpm/pspec.xml - - - gpm - - ncurses - - - /usr/bin - /usr/include - /usr/share/man - /usr/share/info - /usr/share/doc - /usr/lib - /etc - /usr/share/emacs - - - System.Service - - - gpm.conf.d - - - - - 2020-01-12 - 1.20.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.20.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.20.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.20.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.20.7 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libavtp - http://www.github.com/Avnu/libavtp/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - hardware.misc - Open source implementation of Audio Video Transport Protocol - Open source implementation of Audio Video Transport Protocol - Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec - Open source implementation of Audio Video Transport Protocol (AVTP) specified in IEEE 1722-2016 spec - https://github.com/Avnu/libavtp/archive/refs/tags/v0.1.0.tar.gz - - meson - glibc-devel - cmocka-devel - - hardware/misc/libavtp/pspec.xml - - - libavtp - - /usr/lib - /usr/share/doc - - - - libavtp-devel - Development files for libavtp - Development files forlibavtp - - libavtp - - - /usr/include - - - - - 2022-01-25 - 0.1.0 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - hwloc - https://www.open-mpi.org/projects/hwloc/ - - Blue Devil - bluedevil@sctzine.com - - BSD - library - app:console - hardware.misc - Portable Hardware Locality (hwloc) - Hiyerarşik mimarilerin taşınabilir soyutlama kitaplığı - The Portable Hardware Locality (hwloc) software package provides a portable abstraction (across OS, versions, architectures, ...) of the hierarchical topology of modern architectures, including NUMA memory nodes, sockets, shared caches, cores and simultaneous multithreading. It also gathers various system attributes such as cache and memory information as well as the locality of I/O devices such as network interfaces, InfiniBand HCAs or GPUs. - hwlock, hiyerarşik mimarilerin taşınabilir soyutlama kitaplığı sunar. - https://download.open-mpi.org/release/hwloc/v2.7/hwloc-2.7.0.tar.bz2 - - cairo-devel - pciutils-devel - libxml2-devel - numactl-devel - libpciaccess-devel - - - hwloc-1.8.1-gl.patch - - hardware/misc/hwloc/pspec.xml - - - hwloc - Portable Hardware Locality (hwloc) - - cairo - libxml2 - numactl - libX11 - libpciaccess - - - /etc - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/hwloc - /usr/share/applications - /usr/share/bash-completion/completions/hwloc - - - - hwloc-devel - Development files for hwloc - hwloc için geliştirme dosyaları - hwloc-devel, hwloc için geliştirme dosyalarını içerir. - - hwloc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-14 - 2.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-22 - 2.2.0 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - florence - http://florence.sourceforge.net/english.html - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:gui - hardware.misc - On-screen virtual keyboard. - Florence is an extensible scalable on-screen virtual keyboard for GNOME that stays out of your way when not needed. You need it if you can't use a real keyboard either because of a handicap, broken keyboard or tablet PC but you can use a pointing devide. - https://sourceforge.net/projects/florence/files/florence/0.6.3/florence-0.6.3.tar.bz2 - - intltool - gtk3-devel - cairo-devel - pango-devel - libxml2-devel - librsvg-devel - libXtst-devel - libXext-devel - gstreamer-devel - libnotify-devel - gdk-pixbuf-devel - at-spi2-core-devel - - hardware/misc/florence/pspec.xml - - - florence - - gtk3 - cairo - pango - libX11 - libxml2 - librsvg - libXtst - libXext - gstreamer - libnotify - gdk-pixbuf - at-spi2-core - - - /usr/bin - /usr/lib - /usr/share - /usr/share/applications - /usr/share/florence - /usr/share/glib-2.0 - /usr/share/pixmaps - /usr/share/locale - /usr/share/doc - - - - florence-devel - - florence - glib2-devel - - - /usr/include - /usr/lib/pkgconfig/florence-1.0.pc - - - - - 2020-01-09 - 0.6.3 - First release - fury - uglyside@yandex.ru - - - - - - glusterfs - https://www.gluster.org/ - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.misc - a cluster file-system capable of scaling to several peta-bytes. - GlusterFS, güçlü bir ağ/küme dosya sistemidir. - Gluster is a scalable network filesystem. Using common off-the-shelf hardware, you can create large, distributed storage solutions for media streaming, data analysis, and other data- and bandwidth-intensive tasks. Gluster is free. - Gluster, ölçeklenebilir bir ağ dosya sistemidir. Yaygın kullanıma hazır donanımı kullanarak medya akışı, veri analizi ve diğer veri ve bant genişliği yoğun görevler için büyük, dağıtılmış depolama çözümleri oluşturabilirsiniz. Gluster ücretsizdir. - https://github.com/gluster/glusterfs/archive/refs/tags/v10.1.tar.gz - - acl-devel - zlib-devel - curl-devel - fuse-devel - attr-devel - gperftools - spice-devel - libaio-devel - python3-devel - openssl-devel - libxml2-devel - liburcu-devel - libtirpc-devel - liburing-devel - readline-devel - spice-protocol - rpcsvc-proto-devel - libutil-linux-devel - - hardware/misc/glusterfs/pspec.xml - - - glusterfs - - acl - curl - zlib - attr - libaio - liburcu - libxml2 - openssl - libtirpc - liburing - gperftools - libutil-linux - - - /usr/bin - /usr/lib - /var/lib/glusterd - /usr/share/man - /usr/share/doc - /usr/share/glusterfs - /etc/glusterfs - /var/log - /etc/ganesha/ganesha-ha.conf.sample - /var/run/gluster - - - - glusterfs-devel - Development files for glusterfs - glusterfs için geliştirme dosyaları - - libutil-linux-devel - glusterfs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-02-05 - 10.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libieee1284 - http://cyberelk.net/tim/libieee1284/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - Library to query devices using IEEE1284 - IEEE1284 kullanarak donanımların sorgulanması için bir kütüphane - Cette librairie est à destination des applications qui ont besoins de communiquer avec (ou au moins identifier) des périphériques liés au système par le port parallèle. - Library is intended to be used by applications that need to communicate with (or at least identify) devices that are attached via a parallel port. - Paralel portlar aracılığı ile bağlanmış araçlarla iletişimi (en azından tanımlanmasını) gerçekleştiren uygulamalar için gerekli olan kütüphanedir. - La librería usado por aplicaciones que necesitan comunicarse con (,o al menos necesitan identificar) dispositivos conectados al puerto paralelo. - mirrors://sourceforge/libieee1284/libieee1284-0.2.11.tar.bz2 - - python-devel - chrpath - - - libieee1284-strict-aliasing.patch - - hardware/misc/libieee1284/pspec.xml - - - libieee1284 - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - python-libieee1284 - Python bindings for libieee1284 - libieee1284 için Python bağlayıcıları - - libieee1284 - - - /usr/lib/python* - - - - libieee1284-devel - Development files for libieee1284 - libieee1284 için geliştirme dosyaları - - libieee1284 - - - /usr/include - /usr/share/man/man3 - - - - - 2020-01-31 - 0.2.11 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-29 - 0.2.11 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-07 - 0.2.11 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 0.2.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-10 - 0.2.11 - First release - Varol Maksutoğlu - waroi@pisilinux.org - - - - - - libgphoto2 - http://www.gphoto.org/ - - Pisilinux Community - admins@pisilinux.org - - LGPL-2.1 - library - hardware.misc - Library that implements support for numerous digital cameras - Sayısal kamera ve müzik çalarlara erişim sağlayan kütüphane - Libgphoto2 est une librairie centrale conçue pour permettre aux programmes extérieurs d'accéder aux appareils photos numériques. - libgphoto2 is the core library designed to allow access to digital camera by external programs. - libgphoto2, harici uygulamalar tarafından sayısal kameralara ve müzik çalarlara erişim için kullanılan bir programlama kütüphanesidir. - Libgphoto2 es la librería núcleo (core) que permite a programas externos acceder a camaras digitales. - mirrors://sourceforge/project/gphoto/libgphoto/2.5.28/libgphoto2-2.5.28.tar.xz - - doxygen - gd-devel - tiff-devel - curl-devel - libusb-devel - libexif-devel - libxml2-devel - libjpeg-turbo-devel - - hardware/misc/libgphoto2/pspec.xml - - - libgphoto2 - - gd - curl - libusb - libexif - libxml2 - libtool-ltdl - libjpeg-turbo - - - /lib/udev - /usr/lib - /usr/share/libgphoto2 - /lib/udev/rules.d - /usr/share/locale - /usr/share/doc/libgphoto2 - - - - libgphoto2-docs - Documentation for libgphoto2 - libgphoto2 için detaylı belgelendirme - - /usr/share/doc/libgphoto2/camlibs - /usr/share/doc/libgphoto2/libgphoto2-api.html - - - - libgphoto2-devel - Development files for libgphoto2 - libgphoto2 için geliştirme dosyaları - - libexif-devel - libgphoto2 - - - /usr/bin/gphoto2-config - /usr/bin/gphoto2-port-config - /usr/include/gphoto2 - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2022-01-17 - 2.5.28 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-19 - 2.5.26 - Version bump. - fury - uglyside@yandex.ru - - - 2020-01-19 - 2.5.23 - İdris Kalp - İdris Kalp - idriskalp@gmail.com - - - 2018-07-30 - 2.5.18 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 2.5.16 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 2.5.13 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 2.5.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-02 - 2.5.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - android-udev - https://github.com/M0Rf30/android-udev-rules - - Kamil Atlı - suvari@pisilinux.org - - GPL3 - hardware.misc - Udev rules to connect Android devices to your linux box - Android cihazlarını linux sistemine bağlamak için Udev kuralları - Udev rules to connect Android devices to your linux box - Android cihazlarını linux sistemine bağlamak için Udev kuralları - https://github.com/M0Rf30/android-udev-rules/archive/refs/tags/20220102.tar.gz - - eudev-devel - libmtp-devel - - hardware/misc/android-udev/pspec.xml - - - android-udev - Udev rules to connect Android devices to your linux box. - - eudev - libmtp - - - /usr/share/doc/android-udev/LICENSE - /usr/lib/udev/rules.d/51-android.rules - /usr/lib/sysusers.d/android-udev.conf - - - - - 2022-05-03 - 20220102 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - qvkbd - https://github.com/KivApple/qvkbd - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - app:gui - hardware.misc - A virtual keyboard written in C++ and QML. - sanal klavye - qvkbd A virtual keyboard written in C++ and QML. - C ++ ve QML'de yazılmış sanal bir klavye. - https://github.com/KivApple/qvkbd/archive/master.zip - - libX11-devel - libXtst-devel - qt5-base-devel - qt5-x11extras-devel - qt5-declarative-devel - - hardware/misc/qvkbd/pspec.xml - - - qvkbd - - libX11 - libgcc - libXtst - qt5-base - qt5-x11extras - qt5-declarative - - - /usr/bin - /usr/share/doc - /usr/share - - - - - 2020-01-31 - 20191201 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-12-01 - 20191201 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-12-08 - 20181119 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - libgusb - https://github.com/hughsie/libgusb - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - GObject wrapper for libusb. - GObject wrapper for libusb. - GLib wrapper around libusb1. - https://people.freedesktop.org/~hughsient/releases/libgusb-0.3.8.tar.xz - - meson - gtk-doc - docbook-xsl - glib2-devel - vala-devel - libxslt-devel - libxml2-devel - libusb-devel - gobject-introspection-devel - - hardware/misc/libgusb/pspec.xml - - - libgusb - - glib2 - vala - libxslt - libxml2 - libusb - gobject-introspection - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/vala - /usr/share/gir-1.0 - - - - libgusb-devel - Development files for libgusb - libgusb için geliştirme dosyaları - - libgusb - libusb-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libgusb-docs - Reference files for libgusb - data:doc - - libgusb - - - /usr/share/gtk-doc - - - - - 2021-10-11 - 0.3.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 0.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 0.3.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-13 - 0.2.11 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-06 - 0.2.9 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-13 - 0.2.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-05-22 - 0.2.4 - Rebuild for vala - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2015-02-25 - 0.2.4 - Version bump. - Hakan Yıldız - hknyldz93@gmail.com - - - 2014-09-13 - 0.1.6 - Rebuild. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2013-04-13 - 0.1.6 - bump - Erdinç GÜltekin - erdincgultekin@pisilinux.org - - - 2012-10-05 - 0.1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libmtp - http://libmtp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - An implementation of Microsoft's Media Transfer Protocol (MTP) - Microsoft'un medya aktarım protokolünü destekleyen araçlar için bir kütüphane - libmtp est une implémentation du Media Transfer Protocol (MTP) de Microsoft sous la forme d'une librairie principalement adéquate pour les systèmes d'exploitation conformes à POSIX. - libmtp is an implementation of Microsoft's Media Transfer Protocol (MTP) in the form of a library suitable primarily for POSIX compliant operating systems. - libmtp, PlayForSure olarak da anılan, Microsoft'un medya aktarım protokolünü desteklemek için yazılmış bir programlama kütüphanesidir. Uygulamalar, libmtp kütüphanesini kullanarak, PlayForSure destekli MP3 çalar veya dijital kameralardaki içerik üzerinde taşıma, aktarma, isimlendirme vb.. işlemleri kolayca yapabilirler. - libmtp es una implementación del protocolo de transferencia de Microsoft's Media (MTP) en forma de una librería para uso en sistemas operativos POSIX compliant. - mirrors://sourceforge/project/libmtp/libmtp/1.1.19/libmtp-1.1.19.tar.gz - - doxygen - libusb-devel - libgcrypt-devel - - hardware/misc/libmtp/pspec.xml - - - libmtp - - libusb - libgcrypt - - - /usr/bin - /usr/lib/libmtp.* - /lib/udev - /usr/share/hal - /usr/share/doc - - - - libmtp-devel - Development files for libmtp - libmtp için geliştirme dosyaları - - libmtp - libusb-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-15 - 1.1.19 - Version bump. - fury - uglyside@yandex.ru - - - 2020-01-31 - 1.1.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 1.1.15 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 1.1.14 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 1.1.12 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-10 - 1.1.11 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libfprint - https://fprint.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - A library for accessing to various fingerprint readers - Çeşitli parmakizi okuyucularına erişmek için kitaplık - libfprint is an open source software library designed to make it easy for application developers to add support for consumer fingerprint readers to their software. - libfprint, çeşitli parmakizi okuyuculara erişim sağlayan açık kaynaklı bir donanım kitaplığıdır. - https://gitlab.freedesktop.org/libfprint/libfprint/-/archive/v1.94.3/libfprint-v1.94.3.tar.gz - - meson - doxygen - gtk-doc - nss-devel - gdb-devel - glib2-devel - cairo-devel - pixman-devel - libgusb-devel - libgudev-devel - gobject-introspection-devel - - hardware/misc/libfprint/pspec.xml - - - libfprint - - nss - glib2 - cairo - pixman - libusb - libgusb - libgudev - - - /lib/udev - /usr/lib/girepository-1.0 - /usr/lib/libfprint-2.so* - /usr/share/gtk-doc - /usr/share/doc/libfprint - - - - libfprint-devel - Development files for libfprint - libfprint için geliştirme dosyaları - - glib2-devel - libfprint - - - /usr/lib/pkgconfig - /usr/include - /usr/share/gir-1.0 - - - - - 2022-02-27 - 1.94.3 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - fuse3 - http://fuse.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - Interface implémentée dans l'environnement utilisateur (userpace) pour les systèmes de fichier. - An interface for filesystems implemented in userspace - Kullanıcı düzeyinde dosya sistemi oluştumaya yarayan kitaplık - Una interfaz para sistemas de archivos implementados en el espacio de usuario - fuse is a backend allowing regular users to (un)mount filesystems for their own use. - FUSE, kullanıcıların kendileri için dosya sistemleri oluşturmasına, bağlamasına ve bağı koparmasına imkân veren bir arkauç kitaplıktır. - https://github.com/libfuse/libfuse/releases/download/fuse-3.10.5/fuse-3.10.5.tar.xz - - meson - doxygen - eudev-devel - gettext-devel - - hardware/misc/fuse3/pspec.xml - - - fuse3 - - glibc - - - /bin - /sbin - /usr/sbin - /usr/bin - /lib - /usr/lib - /usr/share/doc - /usr/share/man - - - - fuse3-devel - Development files for fuse3 - fuse3 için geliştirme dosyaları - system.devel - - fuse3 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-26 - 3.10.5 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-06-24 - 3.9.2 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - libsmbios - https://github.com/dell/libsmbios - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - OSL-2.0 - library - app:console - hardware.misc - Provide access to (SM)BIOS information - (SM)BIOS bilgilerine ulaşabilmeyi sağlar - libsmbios project aims towards providing access to as much BIOS information as possible. It does this by providing a library of functions that can be used as well as sample binaries. - https://codeload.github.com/dell/libsmbios/tar.gz/v2.4.2 - - libxml2-devel - chrpath - doxygen - - - 0001-libsmbios-fix-more-places-with-loop-iterators-with-b.patch - - hardware/misc/libsmbios/pspec.xml - - - libsmbios - - libgcc - - - /etc - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man/man3 - /usr/share/man/man1 - /usr/share/smbios-utils - /usr/share/locale - - - - libsmbios-devel - Development files for libsmbios - libsmbios için geliştirme dosyaları - - libsmbios - - - /usr/include/Makefile.am - /usr/include/smbios - /usr/include/smbios_c - /usr/lib/pkgconfig - - - - - 2020-01-31 - 2.4.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.4.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-11 - 2.3.3 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-04-29 - 2.3.3 - new release - Ali Algül - aligulle3801@gmail.com - - - 2016-06-09 - 2.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 2.3.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - dkms - http://linux.dell.com/dkms - - Marcin Bojara - marcin.bojara@gmail.com - - GPLv2 - kernel - hardware.misc - Dynamic Kernel Module Support - Dynamic Kernel Module Support - DKMS is a dynamic kernel module support framework. - DKMS, dinamik çekirdek modülü desteği çatısıdır. - https://github.com/dell/dkms/archive/v2.8.1.tar.gz - hardware/misc/dkms/pspec.xml - - - dkms - - gcc - bash - kmod - make - coreutils - - - /etc - /usr/sbin - /usr/share/doc - /usr/share/man - /var/lib - /usr/share/bash-completion - - - System.PackageHandler - - - - - 2020-04-15 - 2.8.1 - pakhandler.py improvements - Marcin Bojara - marcin.bojara@gmail.com - - - 2020-01-06 - 2.8.1 - Version bump. Add pakhandler.py - Marcin Bojara - marcin.bojara@gmail.com - - - 2018-09-01 - 2.6.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 2.5 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-29 - 2.3 - new release - Ali Algül - aligulle3801@gmail.com - - - 2016-06-09 - 2.2.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 2.2.0.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libftdi - http://www.intra2net.com/en/developer/libftdi/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.misc - A library for accessing to FTDI USB chips - FTDI USB entegrelerine erişim kitaplığı - libftdi allows access to eeprom and bitbang modes of FT232/245/2232 USB serial interface chips. - libftdi ile FT232/245/2232 USB seri arabirim entegrelerinin eeprom ve bitbang modlarını kullanabilirsiniz. - https://www.intra2net.com/en/developer/libftdi/download/libftdi1-1.4.tar.bz2 - - cmake - libusb-devel - boost-devel - python-devel - swig - - - fix-udev-group_and_usb_name.patch - - hardware/misc/libftdi/pspec.xml - - - libftdi - - libusb - libgcc - - - /usr/bin - /usr/lib - /lib/udev/rules.d - /usr/share/doc - - - - python-libftdi - Python bindings for libftdi - Python için libftdi bağlayıcıları - - libusb - python3 - libftdi - - - /usr/lib/python* - - - - libftdi-devel - Development files for libftdi - libftdi için geliştirme dosyaları - - libftdi - libusb-devel - - - /usr/bin/libftdi-config - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/share/doc/libftdi/examples - - - - - 2020-01-14 - 1.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-20 - 1.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 1.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libx86 - http://www.codon.org.uk/~mjg59/libx86/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.misc - A hardware-independent library for executing real-mode x86 code - Gerçek-mod x86 kodlarını çalıştırmak için donanım-bağımsız bir kütüphane - libx86 contains the library and header files necessary for the development of programs that will use libx86 to make real-mode x86 calls. - libx86, gerçek-mod x86 çağrıları yapabilen programların geliştirilmesi için gerekli başlık dosyaları ve kütüphaneleri içerir. - A menudo puede ser útil poder realizar llamadas de BIOS x86 en modo real desde el espacio de usuarios. lrmi facilita para ello una interfaz simple para equipos x86, sin embargo no funciona en otras plataformas. libx86 facilita la interfaz lrmi, pero además funcionará en plataformas como amd64 y alpha. - http://slamd64.ada.net.tr/slamd64-12.2/source/ap/libx86/libx86-1.1.tar.gz - - libx86-0.99-ifmask.patch - libx86-add-pkgconfig.patch - libx86-mmap-offset.patch - - hardware/misc/libx86/pspec.xml - - - libx86 - - /usr/lib - /usr/share/doc - - - - libx86-devel - - libx86 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-21 - 1.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-31 - 1.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 1.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 1.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - dtc - https://github.com/telegramdesktop/dtc - - Kamil Atlı - suvari@pisilinux.org - - GPL2 - library - hardware.misc - Device Tree Compiler - Cihaz Ağacı Derleyicisi - Device Tree Compiler - Cihaz Ağacı Derleyicisi - https://mirrors.edge.kernel.org/pub/software/utils/dtc/dtc-1.6.1.tar.xz - - swig - meson - libyaml-devel - python3-devel - valgrind-devel - - hardware/misc/dtc/pspec.xml - - - dtc - - libyaml - valgrind - - - /usr/lib/libfdt.so* - /usr/share/doc - /usr/bin - /usr/lib/python3.9/site-packages - - - - dtc-devel - Development files for dtc - dtc için geliştirme başlıkları - - dtc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-02-05 - 1.6.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - media-player-info - http://cgit.freedesktop.org/media-player-info - - PisiLinux Community - admins@pisilinux.org - - BSD - hardware.info - Media player capability database - Medya oynatıcısı yetenek veritabanı - media-player-info is a repository of data files describing media player capabilities. These files contain information about the directory layout to use to add music to these devices, about the supported file formats, etc. - media-player-info, ortam oynatıcılarının yeteneklerini tanımlayan bir dosya demetidir. Bu dosyalar bu aygıtların hangi dizinlerine müzik dosyaları koyulması gerektiğini, hangi dosya biçimlerinin desteklendiğini tanımlar. - http://www.freedesktop.org/software/media-player-info/media-player-info-24.tar.gz - - eudev-devel - python3-devel - - hardware/info/media-player-info/pspec.xml - - - media-player-info - - /lib/udev/rules.d - /lib/udev - /usr/share/media-player-info - /usr/share/doc - - - - - 2020-02-02 - 24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 23 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 23 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 22 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 22 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - diskmonitor - https://github.com/papylhomme/diskmonitor - - Stefan Gronewold - groni@pisilinux.org - - GPLv2 - hardware.info - KDE tools to monitor SMART devices and MDRaid health status. Features a full application and a Plasma applet - KDE tools to monitor SMART devices and MDRaid health status. Features a full application and a Plasma applet - https://github.com/papylhomme/diskmonitor/archive/0.3.3.tar.gz - - extra-cmake-modules - gettext-devel - glibc-devel - kconfigwidgets-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - knotifications-devel - kxmlgui-devel - plasma-workspace-devel - qt5-base-devel - qt5-quickcontrols2-devel - udisks2-devel - qt5-declarative-devel - - hardware/info/diskmonitor/pspec.xml - - - diskmonitor - KDE tools to monitor SMART devices and MDRaid health status. Features a full application and a Plasma applet - - qt5-base - ki18n - libgcc - kconfig - kxmlgui - kcoreaddons - kiconthemes - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - - - /usr/bin - /usr/lib/qt5 - /usr/share - - - - - 2020-03-10 - 0.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.3.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 0.3.1 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-11-20 - 0.3.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - gkrellm - http://www.gkrellm.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - service - hardware.info - A compact and clean system monitoring tool - Sade görünümlü sistem durumu izleyicisi - A program to monitor system status, and to collect system information such as memory usage, cpu temperature etc. - Bilgisayarınızın bileşenlerinin durumunu takip edebileceğiniz, hafıza kullanımı, işlemci sıcaklığı gibi bilgiler veren bir araç. - gkrellm - http://gkrellm.srcbox.net/releases/gkrellm-2.3.11.tar.bz2 - - gnutls-devel - gtk2-devel - pango-devel - libX11-devel - glib2-devel - libgcrypt-devel - libICE-devel - libSM-devel - - - drop_privileges.patch - gkrellmd-conf.patch - - hardware/info/gkrellm/pspec.xml - - - gkrellm - - gnutls - gtk2 - pango - glib2 - libX11 - libgcrypt - libICE - gdk-pixbuf - libSM - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - /usr/share/man - - - System.Service - - - gkrellm.desktop - gkrellm.png - - - - gkrellm-devel - Development files for gkrellm - gkrellm için geliştirme dosyaları - - gkrellm - gtk2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-10 - 2.3.11 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-24 - 2.3.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-20 - 2.3.10 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 2.3.10 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 2.3.9 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 2.3.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 2.3.5 - First release - Aydın Demirel - aydin.demirel@pisilinux.org - - - - - - dmidecode - http://www.nongnu.org/dmidecode/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.info - Tool to analyse BIOS DMI data - BIOS DMI verisi inceleme araçları - Dmidecode rapporte des informations à propos du matériel composant votre système tel qu'il est décrit dans votre BIOS. Cette information comprends typiquement le fabricant du système, le nom du modèle, le numéro de série, la version du BIOS, balises de traçabilité ainsi que beaucoup d'autres détails plus ou moins intéressants et fiables en fonction du fabricant. - dmidecode reports information about x86/ia64 hardware as described in the system BIOS according to the SMBIOS/DMI standard. This information typically includes system manufacturer, model name, serial number, BIOS version, asset tag as well as a lot of other details of varying level of interest and reliability depending on the manufacturer. - dmidecode, bilgisayarınızın BIOS'unda verilmiş olan bilgilerin görüntülenmesini sağlar. Üretici ismi, model ismi, seri numarası, BIOS sürümü ve sistem üreticisine bağlı olarak değişiklik gösteren birçok bilgi, dmidecode ile görüntülenebilir. - http://download.savannah.gnu.org/releases/dmidecode/dmidecode-3.1.tar.gz - hardware/info/dmidecode/pspec.xml - - - dmidecode - - /usr/bin - /usr/sbin - /usr/share/doc - /usr/share/man - - - laptop-detect - - - - - 2020-01-18 - 3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 3.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 3.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 3.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-09 - 2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-22 - 2.12 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - skanlite - http://www.kde.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:gui - hardware.scanner - Lite scanning tool for KDE - KDE için hafif bir tarayıcı aracı - Skanlite, provides to use scanner device plugged in your system with Sane backend. - Skanlite, sisteminize takılı tarayıcı aygıtlarını Sane uygulaması ile birlikte kullanmanıza olanak sağlar. - http://download.kde.org/stable/skanlite/2.2/skanlite-2.2.0.tar.xz - - extra-cmake-modules - qt5-base-devel - zlib-devel - libpng-devel - kcoreaddons-devel - ki18n-devel - kxmlgui-devel - kio-devel - kdoctools-devel - ktextwidgets-devel - libksane-devel - - hardware/scannner/skanlite/pspec.xml - - - skanlite - - kio - ki18n - libgcc - libpng - kconfig - kxmlgui - libksane - qt5-base - kcoreaddons - kjobwidgets - kconfigwidgets - kwidgetsaddons - sane-backends - - - /usr/bin - /usr/share/doc - /usr/share - - - - - 2020-07-13 - 2.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 2.1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-14 - 2.1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-14 - 2.1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-16 - 2.1.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gamil.com - - - 2018-04-02 - 2.1.0.1 - Version Bump - Mustafa Cinasal - muscnsl@gamil.com - - - 2018-03-23 - 2.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gamil.com - - - 2018-02-14 - 2.0.1 - Rebuild - Mustafa Cinasal - muscnsl@gamil.com - - - 2017-01-12 - 2.0.1 - Version Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-05-23 - 2.0 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-02-02 - 2.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sane-frontends - http://www.sane-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - hardware.scanner - Graphical frontend to SANE - SANE için grafiksel arayüz paketi - sane-frontends includes the scanadf and xcam programs. - sane-frontends, scanadf ve xcam grafiksel araçlarını içerir. - ftp://ftp.uwsg.indiana.edu/linux/gentoo/distfiles/sane-frontends-1.0.14.tar.gz - - sane-backends-devel - gimp-devel - gtk2-devel - - - sane-frontends-1.0.14-array-out-of-bounds.patch - sane-frontends-1.0.14-sane-backends-1.0.20.patch - - hardware/scannner/sane-frontends/pspec.xml - - - sane-frontends - - sane-backends - gtk2 - glib2 - - - /usr/bin - /usr/share/doc/sane-frontends - /usr/share/man - - - - - 2020-03-10 - 1.0.14 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.0.14 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-14 - 1.0.14 - Rebuild - Mustafa Cinasal - muscnsl@gamil.com - - - 2017-04-09 - 1.0.14 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 1.0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-10 - 1.0.14 - First release - Varol Maksutoğlu - waroi@pisilinux.org - - - - - - sane-backends - http://www.sane-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - hardware.scanner - Scanner access software - SANE (Scanner Access Now Easy) döküman ve resim tarayıcı sistemi araçları - Scanner Access Now Easy (SANE) is a universal scanner interface. The SANE application programming interface provides standardized access to any raster image scanner hardware. - SANE ve uygulama programlama arayüzü (API) ile herhangi bir görüntü tarayıcı donanımına standartlaştırlmış erişim sağlar. - sane - https://gitlab.com/sane-project/backends/-/archive/1.0.32/backends-1.0.32.tar.gz - - curl-devel - libxml2-devel - gettext-devel - libieee1284-devel - libusb-compat-devel - libusb-devel - libpng-devel - libnl-devel - openssl-devel - cups-devel - libgphoto2-devel - libv4l-devel - avahi-devel - libjpeg-turbo-devel - tiff-devel - net-snmp-devel - autoconf-archive - - - sane-backends-1.0.25-udev.patch - sane-backends-1.0.23-sane-config-multilib.patch - sane-epson2-disable-focus.patch - - hardware/scannner/sane-backends/pspec.xml - - - sane-backends - - curl - libxml2 - libnl - openssl - libusb - libpng - libusb-compat - libieee1284 - avahi-libs - libgphoto2 - libv4l - tiff - libjpeg-turbo - net-snmp - cups - libexif - - - /etc/sane.d/dll.d - /etc/env.d - /etc/sane.d - /usr/bin - /usr/share/locale - /usr/sbin - /usr/libexec - /usr/lib - /usr/share/doc/sane-backends/README - /usr/share/doc/sane-backends/COPYING - /usr/share/man - /usr/share/pixmaps - /lib/udev/rules.d - /usr/share/sane - - - sane.png - 30sane - - - - sane-backends-devel - Development files for sane-backends - sane-backends için geliştirme dosyaları - - sane-backends - - - /usr/include - /usr/lib/pkgconfig - - - - sane-backends-docs - Documentation for SANE backends - sane-backends için belgelendirme dosyaları - - /usr/share/doc - - - - - 2021-04-01 - 1.0.32 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-23 - 1.0.29 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-08-03 - 1.0.27 - Rebuild - Mustafa Cinasal - admin@pisilinux.org - - - 2018-02-14 - 1.0.27 - Release Bump - Mustafa Cinasal - admin@pisilinux.org - - - 2017-04-10 - 1.0.25 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 1.0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 1.0.25 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - wine - http://www.winehq.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.emulator - Wine bir "Emülator" değildir,Windows uygulamalarını çalıştırma imkanı sunar. - Wine ist kein Emulator, mit dem Sie Microsoft Windows-Anwendungen laufen lässt - WINE Is Not An Emulator, which lets you run Microsoft Windows applications - Wine X11 çalıştıran bir i386 (veya uyumluları) makinede Windows 3.*, Windows 95/98 ve Windows NT programlarını çalıştırmanıza imkân verir. Halâ alfa düzeyinde olduğundan her şey çalışmayabilir. - Wine gibt ihnen die möglichkeit um Windows 3. *, Windows 95/98 und Windows NT-Programme auf einem i386 (oder kompatibel) System X11 zu laufen. Es ist immer noch Alpha-Level-Code, nicht erwarten, dass alles funktioniert. - Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work. - https://dl.winehq.org/wine/source/5.x/wine-5.9.tar.xz - - mit-kerberos - lcms2-devel - libao-devel - libSM-devel - mpg123-devel - openal-devel - openssl-devel - libsdl2-devel - libv4l-devel - libXext-devel - e2fsprogs-devel - samba-devel - libxslt-32bit - mesa-glu-devel - alsa-lib-devel - gstreamer-devel - openldap-client - libgphoto2-devel - libunwind-devel - pulseaudio-libs-devel - gst-plugins-base-devel - cups-devel - gnutls-devel - gnutls-32bit - libXcursor-devel - libXi-devel - libXrandr-devel - libXxf86vm-devel - sane-backends-devel - unixODBC-devel - dbus-devel - fontconfig-devel - gsm-devel - libjpeg-turbo-devel - libXcomposite-devel - libXinerama-devel - libxslt-devel - tiff-devel - gettext-devel - giflib-devel - v4l-utils - libpng - libtevent-devel - jack-audio-connection-kit-devel - fontforge - freetype-devel - freetype-32bit - libpcap-devel - util-linux - ncurses-devel - - - wine-1.9.3-gcc-5_3_0-disable-force-alignment.patch - gcc_erorr.patch - 0001-programs-winhlp32-Use-noyywrap-for-macro.lex.l-and-p.patch - - hardware/emulator/wine/pspec.xml - - - wine - app:gui - - wine-32bit - winetricks - lcms2 - libX11 - libSM - mpg123 - openal - libXext - mesa-glu - alsa-lib - gstreamer - libgphoto2 - libXcomposite - openldap-client - pulseaudio-libs - gst-plugins-base - libjpeg-turbo - libtevent - p11-kit - libxml2 - giflib - ncurses - cups - gnutls - libXcursor - libXi - libXrandr - libXxf86vm - sane-backends - unixODBC - zlib - eudev - libgcc - cabextract - libpcap - libunwind - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/desktop-directories - /usr/share/wine - /usr/share/locale - /usr/share/doc - /usr/share/man - - - wine-staging - - - winetricks - wisotool - menu/wine.menu - menu/Wine.directory - menu/taskmgr.desktop - menu/uninstaller.desktop - menu/winecfg.desktop - menu/winefile.desktop - menu/winetricks.desktop - menu/wine-mime-msi.desktop - menu/wine-oleview.desktop - menu/wine-winemine.desktop - - - - wine-devel - Wine development environment - Wine geliştirme ortamı - - wine - - - /usr/bin/function_grep.pl - /usr/bin/widl - /usr/bin/winebuild - /usr/bin/winecpp - /usr/bin/wineg++ - /usr/bin/winegcc - /usr/bin/winemaker - /usr/bin/wmc - /usr/bin/wrc - /usr/include/wine - /usr/share/aclocal - /usr/share/man/man1/widl.1 - /usr/share/man/man1/winebuild.1 - /usr/share/man/man1/winecpp.1 - /usr/share/man/man1/wineg++.1 - /usr/share/man/man1/winegcc.1 - /usr/share/man/man1/winemaker.1 - /usr/share/man/man1/wmc.1 - /usr/share/man/man1/wrc.1 - - - wine-staging-devel - - - - winetricks - winetricks is a helper script to download and install various redistributable runtime libraries needed to run some programs in Wine. - - zenity - - - /usr/bin/winetricks - /usr/share/applications/winetricks.desktop - - - - wine-32bit - 32-bit shared libraries for wine - wine için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - zlib-32bit - glib2-32bit - lcms2-32bit - libSM-32bit - p11-kit-32bit - giflib-32bit - libpng-32bit - libv4l-32bit - libX11-32bit - libsdl2-32bit - mpg123-32bit - openal-32bit - libXext-32bit - libxml2-32bit - alsa-lib-32bit - mesa-glu-32bit - openldap-32bit - ncurses-32bit - libunwind-32bit - libXrandr-32bit - libXdamage-32bit - libXxf86vm-32bit - fontconfig-32bit - libXcursor-32bit - libXxf86dga-32bit - gstreamer-32bit - libXcomposite-32bit - pulseaudio-libs-32bit - gst-plugins-base-32bit - - - zlib-32bit - lcms2-32bit - libSM-32bit - libX11-32bit - mpg123-32bit - openal-32bit - libXext-32bit - libxml2-32bit - alsa-lib-32bit - mesa-glu-32bit - openldap-32bit - gsm-32bit - eudev-32bit - cups-32bit - tiff-32bit - libXi-32bit - gnutls-32bit - libpng-32bit - ncurses-32bit - openssl-32bit - p11-kit-32bit - giflib-32bit - alsa-lib-32bit - libXrandr-32bit - gstreamer-32bit - fontconfig-32bit - libXcursor-32bit - libXdamage-32bit - libXxf86vm-32bit - libXxf86dga-32bit - libtool-ltdl-32bit - libXcomposite-32bit - libjpeg-turbo-32bit - pulseaudio-libs-32bit - - - /usr/lib32/libwine.so* - /usr/lib32/wine - - - wine-staging-32bit - - - - - 2020-06-03 - 5.9 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-09-30 - 4.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-03 - 4.3 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2019-01-23 - 4.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-11-25 - 3.21 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-08-29 - 3.14 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-07-11 - 3.12 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-05-23 - 3.8 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2018-04-23 - 3.6 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2017-12-24 - 2.22 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2017-05-28 - 2.9 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2017-01-29 - 2.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-09-13 - 1.9.18 - - Support for multiple kernel drivers in a single process. - - More WebServices reader support. - - Various improvements in joystick support. - - Some more work towards the Direct3D command stream. - - GDI performance improvements. - - Improved IME window handling. - - Compatibility fixes in the clipboard support. - - Various bug fixes. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-08-22 - 1.9.17 - -Better exception handling on 64-bit. - -Various improvements in joystick support. - -Some more stream support in the C++ runtime. - -Font embedding improvements. - -More metafile support in GDI+. - -Various bug fixes. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-08-15 - 1.9.16 - -Better 64-bit binary compatibility on macOS. - -Performance improvements in JavaScript. - -More progress towards the Direct3D command stream. - -More shader instructions in Direct3D. - -Performance improvements in GDI. - -Various bug fixes. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-23 - 1.9.15 - Bugs fixed in 1.9.15 (total 22). - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-11 - 1.9.14 - -Pisilinux Fixed Options. - -More Shader Model 5 support in Direct3D. - -Some more write support in WebServices. - -Performance improvements in GDI. - -Some more progress towards the Direct3D command stream. - -Various bug fixes. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-11 - 1.9.14 - Version bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-09 - 1.9.13 - missing fixes release - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-02 - 1.9.13 - First release - Ergün Salman - poyraz76@pisilinux.org - - - - - - playonlinux - http://www.playonlinux.com - - Ergün Salman - poyraz76@pisilinux.org - - GPLv3 - app:gui - app:console - hardware.emulator - Tool to help Linux users run Windows games on linux - Birçok Windows oyununu Linux'ta oynayabilmenizi sağlar - PlayOnLinux is a piece of sofware which allow you to install and use easily numerous games and softwares designed to run with Microsoft's Windows. - PlayOnLinux, Microsoft's Windows için hazırlanan çok sayıdaki oyunu ve uygulamayı Linux'ta kullanmanıza olanak sağlayan bir uygulamadır. - PlayOnLinux - http://repository.playonlinux.com/PlayOnLinux/4.3.4/PlayOnLinux_4.3.4.tar.gz - - PlayOnLinux_4.1.6-fix-desktop-file.patch - - hardware/emulator/playonlinux/pspec.xml - - - playonlinux - - jq - wxPython - wine - wget - gnu-netcat - icoutils - binutils - imagemagick - xterm - p7zip - gnupg - - - /usr/bin - /usr/share/doc - /usr/share/applications - /usr/share/pixmaps - /usr/share/playonlinux - /usr/share/playonlinux/lang/ - /usr/share/locale/ - - - PlayOnLinux.desktop - playonlinux.png - - - - - 2020-06-07 - 4.3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 4.2.12 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 4.2.12 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-29 - 4.2.10 - rebuild - Ali Algül - aligulle3801@gmail.com - - - 2016-07-03 - 4.2.10 - First Release - Ergün Salman - poyraz76@pisilinux.org - - - - - - dosbox - http://www.dosbox.com/ - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - app:gui - hardware.emulator - DOSBox is a DOS emulator. - DOSBox, bir DOS öykünücüsüdür. - DOSBox is a DOS-emulator that uses the SDL-library. - DOSBox, SDL kitaplığını kullanan bir DOS öykünücüsüdür. - dosbox - https://sourceforge.net/projects/dosbox/files/dosbox/0.74-3/dosbox-0.74-3.tar.gz - - alsa-lib-devel - libsdl-devel - - - dosbox-0.74_gcc4.6_compat.patch - - hardware/emulator/dosbox/pspec.xml - - - dosbox - - alsa-lib-32bit - libsdl-32bit - - - /usr/share/doc/dosbox - /usr/share/man - /usr/bin - /usr/share/icons - /usr/share/pixmaps - /usr/share/applications - - - dosbox.png - dosbox.desktop - icons/hicolor/16x16/apps/dosbox.png - icons/hicolor/24x24/apps/dosbox.png - icons/hicolor/32x32/apps/dosbox.png - icons/hicolor/48x48/apps/dosbox.png - icons/hicolor/96x96/apps/dosbox.png - icons/hicolor/128x128/apps/dosbox.png - icons/hicolor/256x256/apps/dosbox.png - - - - - 2020-06-27 - 0.74.3 - First release - Erdem Ersoy - erdemersoy@live.com - - - - - - wine-staging - http://www.winehq.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.emulator - WINE Is Not An Emulator, which lets you run Microsoft Windows applications - staging version. - Wine allows running Windows 3.*, Windows 95/98 and Windows NT programs on a i386 (or compatible) machine running X11. It is still alpha level code; don't expect everything to work. - https://dl.winehq.org/wine/source/7.x/wine-7.5.tar.xz - https://github.com/wine-staging/wine-staging/archive/refs/tags/v7.5.tar.gz - - mit-kerberos-devel - lcms2-devel - libao-devel - libSM-devel - mpg123-devel - openal-devel - openssl-devel - libsdl2-devel - libv4l-devel - libXext-devel - e2fsprogs-devel - samba-devel - libxslt-32bit - mesa-glu-devel - alsa-lib-devel - gstreamer-devel - openldap-client - libgphoto2-devel - pulseaudio-libs-devel - gst-plugins-base-devel - cups-devel - gnutls-devel - gnutls-32bit - libXcursor-devel - libXi-devel - libXrandr-devel - libXxf86vm-devel - sane-backends-devel - unixODBC-devel - dbus-devel - fontconfig-devel - gsm-devel - libjpeg-turbo-devel - libXcomposite-devel - libXinerama-devel - libxslt-devel - tiff-devel - gettext-devel - giflib-devel - v4l-utils - libpng-devel - libtevent-devel - jack-audio-connection-kit-devel - fontforge - freetype-devel - freetype-32bit - libpcap-devel - util-linux - ncurses-devel - - - 0001-programs-winhlp32-Use-noyywrap-for-macro.lex.l-and-p.patch - - hardware/emulator/wine-staging/pspec.xml - - - wine-staging - app:gui - - wine-staging-32bit - lcms2 - libX11 - libSM - mpg123 - openal - libXext - mesa-glu - alsa-lib - gstreamer - libgphoto2 - libXcomposite - openldap-client - pulseaudio-libs - gst-plugins-base - libjpeg-turbo - libtevent - p11-kit - libxml2 - giflib - ncurses - cups - gnutls - libXcursor - libXi - libXrandr - libXxf86vm - sane-backends - unixODBC - zlib - eudev - libgcc - cabextract - libpcap - libunwind - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/desktop-directories - /usr/share/wine - /usr/share/locale - /usr/share/doc - /usr/share/man - - - wine - - - wine - - - wisotool - menu/wine.menu - menu/Wine.directory - menu/taskmgr.desktop - menu/uninstaller.desktop - menu/winecfg.desktop - menu/winefile.desktop - menu/winetricks.desktop - menu/wine-mime-msi.desktop - menu/wine-oleview.desktop - menu/wine-winemine.desktop - - - - wine-staging-devel - Wine development environment - - wine-staging - - - /usr/bin/function_grep.pl - /usr/bin/widl - /usr/bin/winebuild - /usr/bin/winecpp - /usr/bin/wineg++ - /usr/bin/winegcc - /usr/bin/winemaker - /usr/bin/wmc - /usr/bin/wrc - /usr/include/wine - /usr/share/aclocal - /usr/share/man/man1/widl.1 - /usr/share/man/man1/winebuild.1 - /usr/share/man/man1/winecpp.1 - /usr/share/man/man1/wineg++.1 - /usr/share/man/man1/winegcc.1 - /usr/share/man/man1/winemaker.1 - /usr/share/man/man1/wmc.1 - /usr/share/man/man1/wrc.1 - - - wine-devel - - - wine-devel - - - - wine-staging-32bit - 32-bit shared libraries for wine - emul32 - emul32 - - zlib-32bit - glib2-32bit - lcms2-32bit - libSM-32bit - p11-kit-32bit - giflib-32bit - libpng-32bit - libv4l-32bit - libX11-32bit - libsdl2-32bit - mpg123-32bit - openal-32bit - libXext-32bit - libxml2-32bit - alsa-lib-32bit - mesa-glu-32bit - openldap-32bit - ncurses-32bit - libXrandr-32bit - libXdamage-32bit - libXxf86vm-32bit - fontconfig-32bit - libXcursor-32bit - libXxf86dga-32bit - gstreamer-32bit - libXcomposite-32bit - pulseaudio-libs-32bit - gst-plugins-base-32bit - - - zlib-32bit - eudev-32bit - lcms2-32bit - libSM-32bit - libX11-32bit - mpg123-32bit - openal-32bit - libXext-32bit - libxml2-32bit - alsa-lib-32bit - mesa-glu-32bit - openldap-32bit - gsm-32bit - cups-32bit - tiff-32bit - libXi-32bit - gnutls-32bit - libpng-32bit - ncurses-32bit - openssl-32bit - p11-kit-32bit - giflib-32bit - alsa-lib-32bit - libXrandr-32bit - gstreamer-32bit - fontconfig-32bit - libXcursor-32bit - libXdamage-32bit - libXxf86vm-32bit - libXxf86dga-32bit - libtool-ltdl-32bit - libXcomposite-32bit - libjpeg-turbo-32bit - pulseaudio-libs-32bit - - - /usr/lib32/libwine.so* - /usr/lib32/wine - - - wine-32bit - - - wine-32bit - - - - - 2022-04-02 - 7.5 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-06-04 - 5.9 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - pcsc-lite - https://pcsclite.apdu.fr - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - hardware.smartcard - PC/SC drivers for smart card readers - Akıllı kart okuyucuları için PC/SC sürücüleri - pcsc-lite is middleware to access a smart card using SCard API (PC/SC). - https://pcsclite.apdu.fr/files/pcsc-lite-1.9.0.tar.bz2 - - eudev-devel - - hardware/smartcard/pcsc-lite/pspec.xml - - - pcsc-lite - - eudev - - - /etc/reader.conf.d - /usr/sbin - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/lib/pcsc/drivers - - - System.Service - - - - pcsc-lite-devel - Development files for pcsc-lite - pcsc-lite için geliştirme dosyaları - - pcsc-lite - eudev-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-09-24 - 1.9.0 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-03-10 - 1.8.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-10 - 1.8.25 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-05-26 - 1.8.25 - V.bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-05-19 - 1.8.24 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ccid - https://ccid.apdu.fr - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - hardware.smartcard - Generic USB CCID(Chip/Smart Card Interface Devices) device drivers - USB CCID kart okuyucu sürücüleri - ccid provides the source code for a generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD (Integrated Circuit(s) Card Devices). - ccid USB CCID protokolünü destekleyen akıllı kart okuyucular için açık kaynaklı aygıt sürücülerini içerir. - https://ccid.apdu.fr/files/ccid-1.4.31.tar.bz2 - - pcsc-lite-devel - libusb-devel - - hardware/smartcard/ccid/pspec.xml - - - ccid - - libusb - pcsc-lite - - - /etc/ - /usr/lib/ - /usr/share/doc - - - - - 2020-03-10 - 1.4.31 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-19 - 1.4.29 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - acpica - http://www.acpica.org - - PisiLinux Community - admins@pisilinux.org - - custom - app:console - hardware.powermanagement - ACPI debugging tools written by Intel - Intel ACPI hata ayıklama araçları - acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler. - acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir. - https://acpica.org/sites/acpica/files/acpica-unix-20210604.tar_0.gz - - iasl-20140828-locale.patch - iasl-20140214-nostrip.patch - OPT_LDFLAGS.patch - - hardware/powermanagement/acpica/pspec.xml - - - acpica - - /usr/share/doc - /usr/bin - /usr/sbin - /usr/share/man/man1 - - - iasl.1 - LICENSE - - - - - 2020-07-28 - 0.0_20210604 - Version Bump - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-01-26 - 0.0_20200528 - Version Bump - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-01-26 - 0.0_20200110 - Version Bump - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-08-15 - 0.0_20130117 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-04-07 - 0.0_20130117 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 0.0_20130117 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-05 - 0.0_20130117 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - upower - http://upower.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:console - hardware.powermanagement - Power Management Service - Güç Yönetim Hizmeti - upower provides a daemon, API and command line tools for managing power devices attached to the system. - upower, sisteme bağlı güç cihazlarını yönetmek için gerekli kitaplıkları ve sistem hizmetini sunar. - https://gitlab.freedesktop.org/upower/upower/-/archive/v0.99.18/upower-v0.99.18.tar.bz2 - - tr.po - - - meson - python3-devel - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - libgudev-devel - libusb-devel - libplist-devel - libimobiledevice-devel - gobject-introspection-devel - docbook-xsl - intltool - gtk-doc - - - add-tr.patch - 0.99.18-meson-Allow-unittest-inspector-to-fail.patch - - hardware/powermanagement/upower/pspec.xml - - - upower - - dbus - glib2 - polkit - dbus-glib - libgudev - libplist - libimobiledevice - pm-utils - libusb - - - /lib - /usr/lib - /etc/dbus-1 - /etc/udev/hwdb.d/95-upower-hid.hwdb - /usr/share/man - /usr/share/doc - /etc/UPower - /usr/bin - /var/lib/upower - /usr/share/gir-1.0 - /usr/share/dbus-1 - /usr/libexec - /usr/share/polkit-1 - /usr/share/locale - /usr/share/dbus-1/interfaces/*.xml - /usr/lib/girepository-1.0/*.typelib - - - - upower-devel - Development files for upower - upower için geliştirme dosyaları - - upower - dbus-devel - glib2-devel - polkit-devel - dbus-glib-devel - libgudev-devel - libplist-devel - libimobiledevice-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-06-03 - 0.99.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-21 - 0.99.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 0.99.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 0.99.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-02 - 0.99.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 0.99.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 0.99.7 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.99.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 0.99.4 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.99.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-18 - 0.99.4 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-01-26 - 0.9.23 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - acpi - https://sourceforge.net/projects/acpiclient/files/acpiclient/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - Battery and thermal reporter - ACPI sistemlerde pil ve sıcaklık bilgilerini tutar - acpi is a small command-line tools that reports battery and thermal information. - Eski apm komutlarını ACPI sistemlerde verir, pil ve sıcaklık bilgilerini tutar. - mirrors://sourceforge/acpiclient/acpiclient/1.7/acpi-1.7.tar.gz - hardware/powermanagement/acpi/pspec.xml - - - acpi - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2020-03-02 - 1.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 1.7 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2016-07-02 - 1.7 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - suspend - http://suspend.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - A set of tools to support sleep modes - Uyku kiplerini destekleme araçları - suspend package allows users to suspend-to-ram, suspend-to-disk, and suspend-to-both. - suspend, kullanıcıların bellek, disk veya her ikisini de kullanarak sistemlerini askıya almalarını sağlayan araçları içerir. - http://dev.gentoo.org/~bircoph/distfiles/suspend-1.0_p20120915.tar.xz - - lzo-devel - pciutils-devel - libx86-devel - libgcrypt-devel - - - suspend-1.0_p20200924.patch.xz - - hardware/powermanagement/suspend/pspec.xml - - - suspend - - lzo - libx86 - pciutils - - - /etc/suspend.conf - /etc/suspend.key - /usr/sbin - /usr/bin - /sbin - /usr/lib/suspend/resume - /usr/share/doc - /usr/share/man - - - suse/configure-suspend-encryption.sh - - - - - 2021-11-29 - 1.0_p20200924 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-19 - 1.0_p20200924 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-23 - 1.0_p20120915 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-02 - 1.0_p20120915 - Rebuild New T - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 1.0_p20120915 - Rebuild New T - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-01 - 1.0_p20120915 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0_p20120915 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.0_p20120915 - First release - Varol Maksutoğlu - waroi@pisilinux.org - - - - - - powertop - http://www.lesswatts.org/projects/powertop/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - Power consumption monitor - Güç tüketim izleme aracı - PowerTOP is a Linux tool that finds the software component(s) that make your computer use more power than necessary while it is idle. - PowerTOP, bilgisayarınız atıl durumdayken ihtiyacından fazla güç tüketmesine neden olan yazılım bileşenlerini bulmak için kullanılan bir Linux aracıdır. - https://github.com/fenrus75/powertop/archive/v2.14.tar.gz - - libnl-devel - ncurses-devel - pciutils-devel - autoconf-archive - - - powertop-2.14-undefined-symbol.patch - - hardware/powermanagement/powertop/pspec.xml - - - powertop - - libnl - ncurses - libgcc - pciutils - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/sbin - /var/cache/powertop - /usr/share/bash-completion - /usr/share/locale - - - - - 2021-11-28 - 2.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-28 - 2.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-02 - 2.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 2.9 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-25 - 2.9 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-05 - 2.8 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-07-02 - 2.8 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - acpid - https://sourceforge.net/projects/acpid2/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - service - app:console - hardware.powermanagement - ACPI daemon that dispatches ACPI events to user-space programs - ACPI hizmeti - acpid is a flexible and extensible daemon for ACPI (Advanced Configuration and Power Interface) event dispatching. - acpid ACPI olaylarını kullanıcı uygulamalarına paslayan gelişmiş ve esnek bir sistem hizmetidir. - mirrors://sourceforge/acpid2/acpid-2.0.33.tar.xz - hardware/powermanagement/acpid/pspec.xml - - - acpid - - /usr/bin - /usr/sbin - /etc/acpi/actions - /etc/acpi/events - /etc/conf.d - /usr/share/dbus-1/services/acpid.service - /usr/share/doc - /usr/share/man - - - System.Service - - - acpid.power.sh - fedora/acpid.power.conf - fedora/acpid.video.conf - fedora/acpid.sysconfig - - - - - 2021-11-04 - 2.0.33 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-18 - 2.0.32 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-02 - 2.0.32 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-10 - 2.0.31 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-13 - 2.0.28 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-13 - 2.0.28 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-06 - 2.0.28 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-07-02 - 2.0.27 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - lm_sensors - https://hwmon.wiki.kernel.org/lm_sensors - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - app:console - library - hardware.powermanagement - Hardware monitoring tools - Donanım sıcaklığı izleyicisi - lm_sensors provides essential tools for monitoring the temperatures, voltages, and fans of Linux systems with hardware monitoring devices. It also contains scripts for sensor hardware identification and fan speed control. - lm_sensors linux sistemlerdeki donanım izleyiciler ile birlikte termometreleri, voltajları ve fan devirlerini izleyen bir araçtır. Ayrıca, donanım ve fan kimliğini algılayan betikler içerir. - https://github.com/lm-sensors/lm-sensors/archive/V3-6-0.tar.gz - - rrdtool-devel - - - 42f240d2a457834bcbdf4dc8b57237f97b5f5854.patch - - hardware/powermanagement/lm_sensors/pspec.xml - - - lm_sensors - - dmidecode - rrdtool - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc - - - - lm_sensors-devel - Development files for lm_sensors - lm_sensors için geliştirme dosyaları - - lm_sensors - rrdtool-devel - - - /usr/include - /usr/share/man/man3 - - - - - 2021-07-29 - 3.6.0 - Rebuild 3.6.0 git version. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-08 - 3.6.0 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2018-08-15 - 3.4.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 3.4.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 3.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-02 - 3.4.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - pm-utils - http://pm-utils.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.powermanagement - A toolset to suspend and hibernate computers - Askıya alma işlemleri için gerekli araçlar - pm-utils provides simple shell command line tools to suspend and hibernate computers, and it that can be used to run vendor, distribution, or user supplied scripts on suspend and resume. - pm-utils, bilgisayarı bellek veya disk kullanarak uyku kipine geçirmek ve devam ettirmek için gerekli kabuk betiklerini sunar. - http://pm-utils.freedesktop.org/releases/pm-utils-1.4.1.tar.gz - http://pm-utils.freedesktop.org/releases/pm-quirks-20100619.tar.gz - - xmlto - libxslt - util-linux - - - pisilinux/check-for-swap-partition.patch - pisilinux/disable-powersave.patch - suse/pm-utils-1.2.6.1-fix-broken-dbus-send.diff - suse/pm-utils-1.3.0-suse-smart-uswsusp.patch - suse/pm-utils-1.4.1-suse-config.patch - gentoo/1.4.1-bluetooth-sync.patch - gentoo/1.4.1-disable-sata-alpm.patch - gentoo/1.4.1-fix-intel-audio-powersave-hook.patch - gentoo/1.4.1-logging-append.patch - - hardware/powermanagement/pm-utils/pspec.xml - - - pm-utils - - hdparm - vbetool - - - /etc/pm - /usr/lib - /run/pm-utils - /usr/share/doc - /usr/share/man - /usr/bin - /usr/sbin - /usr/lib/pkgconfig - /usr/lib/pm-utils/video-quirks - /usr/lib/tmpfiles.d/pm-utils.conf - - - tmpfiles.conf - suse/hooks/config.d/rtcwake.config - suse/hooks/sleep.d/30s2disk-check - suse/hooks/sleep.d/45pcmcia - - - - - 2020-02-02 - 1.4.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 1.4.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-09-20 - 1.4.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-31 - 1.4.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - k3b - http://www.k3b.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - hardware.optical - CD/DVD burning application for KDE - KDE için CD/DVD yazma uygulaması - K3b provides a comfortable user interface to perform most CD/DVD burning tasks. While the experienced user can take influence in all steps of the burning process the beginner may find comfort in the automatic settings and the reasonable k3b defaults which allow a quick start. - K3b her türlü CD/DVD yazma işlevini rahat bir kullanıcı arayüzüyle sunar. Tecrübeli kullanıcılar yazma işleminin her adımına müdahale edebilirken, yeni başlayanlar ise k3b'nin sağladığı öntanımlı ayarlar sayesinde hızlı bir başlangıç yapabilirler. - https://download.kde.org/stable/release-service/21.08.2/src/k3b-21.08.2.tar.xz - - extra-cmake-modules - karchive-devel - kconfig-devel - kcoreaddons-devel - kdoctools-devel - kfilemetadata-devel - ki18n-devel - kiconthemes-devel - kjobwidgets-devel - kcmutils-devel - kio-devel - knotifications-devel - knewstuff-devel - knotifyconfig-devel - kservice-devel - solid-devel - kwidgetsaddons-devel - kxmlgui-devel - qt5-base-devel - qt5-webkit-devel - qt5-location-devel - libsamplerate-devel - cdparanoia-devel - libsndfile-devel - libdvdread-devel - libkcddb - libmpcdec-devel - libvorbis-devel - vcdimager-devel - ffmpeg-devel - dvd+rw-tools - libmad-devel - libogg-devel - libburn-devel - taglib-devel - flac-devel - lame-devel - sox-devel - cdrkit - cdrdao - kauth-devel - - hardware/optical/k3b/pspec.xml - - - k3b - - kio - flac - lame - ki18n - solid - kauth - ffmpeg - cdrkit - cdrdao - libgcc - libmad - libogg - taglib - kconfig - kxmlgui - karchive - kcmutils - kservice - normalize - libburn - libkcddb - qt5-base - knewstuff - libmpcdec - libvorbis - kbookmarks - libdvdread - vcdimager - cdparanoia - libsndfile - qt5-webkit - kcompletion - kcoreaddons - kiconthemes - kjobwidgets - dvd+rw-tools - kfilemetadata - knotifyconfig - libsamplerate - kconfigwidgets - knotifications - kwidgetsaddons - - - /usr/lib - /usr/bin - /usr/share - /usr/include - /etc - - - - - 2021-10-16 - 21.08.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-14 - 21.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-11 - 21.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-10 - 21.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-16 - 20.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-16 - 20.08.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-16 - 20.04.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-11 - 20.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-22 - 19.08.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 19.04.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-12 - 18.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-25 - 18.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-21 - 18.12.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-16 - 18.08.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-18 - 18.04.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 18.04.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-24 - 17.12.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-05 - 17.12.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-15 - 17.08.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-24 - 17.08.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-29 - 20160911 - rebuild - Ali Algül - aligulle3801@gmail.com - - - 2016-12-10 - 20160911 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - lsdvd - https://sourceforge.net/projects/lsdvd/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Small application for listing the contents of DVDs - DVD bilgilerini toplamaya yarayan bir araç - lsdvd is a small application which lists the contents of DVDs to your terminal. - lsdvd, terminal üzerinden DVD'lerin içeriğini görüntülemeye yarayan basit bir araçtır. - mirrors://sourceforge/lsdvd/lsdvd-0.17.tar.gz - - libdvdread-devel - - hardware/optical/lsdvd/pspec.xml - - - lsdvd - - libdvdread - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2020-10-05 - 0.17 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-18 - 0.17 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-07 - 0.17 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 0.17 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 0.17 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - simpleburn - http://simpleburn.tuxfamily.org/ - - Stefan Gronewold - groni@pisilinux.org - - Cecill-2 license - app:gui - hardware.optical - A simple GTK+ application for burning CDs and DVDs - SimpleBurn is a minimalistic application for burning and extracting CDs and DVDs. It basically is a Cdrtools frontend and is designed in two parts: the GUI (GTK) and a BASH script that handle the requested actions. - simpleburn - http://simpleburn.tuxfamily.org/IMG/gz/simpleburn-1.8.4.tar.gz - - gtk3-devel - cdparanoia-devel - mpg123-devel - pkgconfig - cmake - libisoburn-devel - libdvdread-devel - libburn-devel - libisofs-devel - libcdio-devel - libcddb-devel - cdrkit - util-linux - libutil-linux-devel - - hardware/optical/simpleburn/pspec.xml - - - simpleburn - - gtk3 - glib2 - lame - cdparanoia - libisoburn - cdrdao - libcdio - libdvdread - libcddb - mpg123 - vorbis-tools - cdrkit - libcdio - - - /usr/bin - /usr/share/locale - /usr/share/simpleburn - /usr/share/icons - /usr/share/applications - /usr/share/doc - - - - - 2021-08-11 - 1.8.4 - Ver. bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-18 - 1.8.3.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-13 - 1.8.3.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-13 - 1.6.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.6.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-20 - 1.6.5 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-19 - 1.6.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - cdrkit - http://cdrkit.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Suite of programs for CD/DVD recording. - Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction. - http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz - - libcdio-paranoia-devel - cdparanoia-devel - libcap-devel - zlib-devel - cmake - - - cdrkit-1.1.8-werror.patch - cdrkit-1.1.9-efi-boot.patch - cdrkit-1.1.9-no_mp3.patch - cdrkit-1.1.9-buffer_overflow.patch - cdrkit-1.1.10-build-fix.patch - cdrkit-1.1.11-manpagefix.patch - cdrkit-1.1.11-rootstat.patch - cdrkit-1.1.11-usalinst.patch - cdrkit-1.1.11-readsegfault.patch - cdrkit-1.1.11-format.patch - cdrkit-1.1.11-handler.patch - cdrkit-1.1.11-dvdman.patch - cdrkit-1.1.11-paranoiacdda.patch - cdrkit-1.1.11-utf8.patch - cdrkit-1.1.11-cmakewarn.patch - cdrkit-1.1.11-memset.patch - cdrkit-1.1.11-ppc64le_elfheader.patch - cdrkit-1.1.11-werror_gcc5.patch - cdrkit-1.1.11-devname.patch - cdrkit-1.1.11-sysmacros.patch - - hardware/optical/cdrkit/pspec.xml - - - cdrkit - - file - zlib - bzip2 - libcap - cdparanoia - - - /usr/bin - /usr/sbin - /usr/include - /usr/lib - /usr/share/man - /usr/share/doc - - - cdrtools - - - - - 2020-01-26 - 1.1.11 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 1.1.11 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-29 - 1.1.11 - Rebuild for new toolchain, add patches - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-25 - 1.1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2013-09-14 - 1.1.11 - First release - Burak Fazıl Ertürk - burakerturk@pisilinux.org - - - - - - libisoburn - https://dev.lovelyhq.com/libburnia/web/wiki - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.optical - Frontend for libraries libburn and libisofs - Libburn ve libisofs kütüphanelerini kullanmak için bir arayüz. - Frontend for libraries libburn and libisofs - libisoburn, libburn ve libisofs kütüphanelerini kullanmak için bir arayüzdür. - http://files.libburnia-project.org/releases/libisoburn-1.5.4.tar.gz - - libburn-devel - libisofs-devel - readline-devel - zlib-devel - acl-devel - - hardware/optical/libisoburn/pspec.xml - - - libisoburn - - acl - zlib - readline - libburn - libisofs - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - libisoburn-devel - Development files for libisoburn - libisoburn için geliştirme dosyaları - - libisoburn - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-08-11 - 1.5.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-09 - 1.5.2 - Version bump - fury - uglyside@yandex.ru - - - 2018-08-18 - 1.4.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 1.4.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-2 - 1.4.6 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-15 - 1.4.2 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libcdio-paranoia - http://www.gnu.org/software/libcdio/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - GPLv2+ - LGPLv2.1 - library - hardware.optical - CD paranoia libraries from libcdio - An advanced CDDA reader with error correction. - mirrors://gnu/libcdio/libcdio-paranoia-10.2+2.0.1.tar.bz2 - - libcdio-devel - - hardware/optical/libcdio-paranoia/pspec.xml - - - libcdio-paranoia - - libcdio - - - /usr/share/info - /usr/share/man - /usr/share/doc - /usr/lib - /usr/bin - - - - libcdio-paranoia-devel - Development files for libcdio-paranoia - - libcdio-paranoia - libcdio-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-01-18 - 10.2_2.0.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-14 - 10.2_2.0.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.94_p2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.93_p1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.90_p1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-25 - 0.90_p1 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - libburn - https://dev.lovelyhq.com/libburnia/web/wiki - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - app:console - hardware.optical - A library for reading, mastering and writing optical discs - Optik diskleri okumak, idare etmek ve yazmak için kitaplıklar - Libburn is an open-source library for reading, mastering and writing optical discs. - libburn, optik diskleri okumak, idare etmek ve yazmak için yazılmış, açık kaynak kodlu bir kitaplıktır. - http://files.libburnia-project.org/releases/libburn-1.5.4.tar.gz - hardware/optical/libburn/pspec.xml - - - libburn - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libburn-devel - Development files for libburn - libburn için geliştirme dosyaları - - libburn - - - /usr/include - /usr/lib/pkgconfig/libburn-1.pc - - - - - 2021-08-11 - 1.5.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-09 - 1.5.2 - Version bump - fury - uglyside@yandex.ru - - - 2018-08-18 - 1.4.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 1.4.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-25 - 1.4.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 1.4.2 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libcdio - http://www.gnu.org/software/libcdio/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - hardware.optical - Un librairie encapsulant la lecture et le controle du lecteur CD-ROM. - A library to encapsulate CD-ROM reading and control - CD-ROM okuma ve kontrol kitaplığının küçültülmüş sürümü - This library provides an interface for CD-ROM access. It can be used by applications that need OS- and device-independent access to CD-ROM devices. - GNU kompakt disk girdi ve kontrol kitaplığı (libcdio) CD-ROM ve CD kalıplarına ulaşım için gerekli bir kitaplıktır. - mirrors://gnu/libcdio/libcdio-2.1.0.tar.bz2 - - libcddb-devel - ncurses-devel - libgcc - - hardware/optical/libcdio/pspec.xml - - - libcdio - - libcddb - ncurses - libgcc - - - /usr/share/info - /usr/share/man - /usr/share/doc - /usr/lib - /usr/bin - - - - libcdio-devel - Development files for libcdio - libcdio için geliştirme dosyaları - - libcdio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 2.1.0 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2018-07-31 - 2.0.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 0.94 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.92 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.92 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - dvd+rw-tools - http://fy.chalmers.se/~appro/linux/DVD+RW/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Tools for DVD+RW/-RW drives - DVD+RW/-RW sürücüler için birtakım araçlar - dvd+rw-tools is a set of tools to work with DVD+-RW drives. - http://fy.chalmers.se/~appro/linux/DVD+RW/tools/dvd+rw-tools-7.1.tar.gz - - dvd+rw-tools-7.0-dvddl.patch - dvd+rw-tools-7.0-wctomb.patch - dvd+rw-tools-7.0-wexit.patch - dvd+rw-tools-7.1-layerbreaksetup.patch - dvd+rw-tools-7.1-minor-major.patch - gcc-4.3.patch - - hardware/optical/dvd+rw-tools/pspec.xml - - - dvd+rw-tools - - cdrkit - libgcc - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2020-03-10 - 7.1 - Rebuild with new toolchain. - Pisi Linux Admins - admins@pisilinux.org - - - 2018-08-18 - 7.1 - Rebuild with new toolchain. - Pisi Linux Admins - admins@pisilinux.org - - - 2017-04-13 - 7.1 - Rebuild with new toolchain. - Pisi Linux Admins - admins@pisilinux.org - - - 2016-10-09 - 7.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - cdparanoia - https://www.xiph.org/paranoia/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - hardware.optical - An advanced CDDA reader with error correction - Hata düzeltme fonksiyonlu gelişmiş bir CDDA okuyucu - cdparanoia is an advanced CDDA (audio CD) reader with error correction. - http://downloads.xiph.org/releases/cdparanoia/cdparanoia-III-10.2.src.tgz - - build_system.patch - cdparanoia-III-05-gcc4.3.patch - - hardware/optical/cdparanoia/pspec.xml - - - cdparanoia - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - cdparanoia-devel - Development files for cdparanoia - cdparanoia için geliştirme dosyaları - - cdparanoia - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-11 - 3.10.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 3.10.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 3.10.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.10.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 3.10.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - brasero - https://wiki.gnome.org/Apps/Brasero - - Pisilinux Community - admins@pisilinux.org - - GPL - app:gui - hardware.optical - A disc burning application. - Brasero is yet another CD / DVD writing application. It is designed to be as simple as possible and has some unique features to enable users to create their discs easily. - mirrors://gnome/brasero/3.12/brasero-3.12.3.tar.xz - - cdrkit - cdrdao - itstool - gtk-doc - intltool - gtk3-devel - python-six - docbook-xsl - libSM-devel - libICE-devel - dvd+rw-tools - libxml2-devel - libburn-devel - libisofs-devel - gstreamer-devel - libnotify-devel - libisoburn-devel - gdk-pixbuf-devel - shared-mime-info - libcanberra-devel - libcanberra-gtk-devel - libcanberra-gtk3-devel - gst-plugins-base-devel - gobject-introspection-devel - - hardware/optical/brasero/pspec.xml - - - brasero - - gtk3 - glib2 - pango - cairo - libSM - cdrkit - cdrdao - libICE - libxml2 - libburn - libisofs - gstreamer - dvdauthor - libnotify - gdk-pixbuf - dvd+rw-tools - gst-plugins-base - libcanberra-gtk3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - brasero-devel - - gtk3-devel - brasero - - - /usr/include/brasero3 - /usr/lib/pkgconfig - - - - brasero-docs - - brasero - - - /usr/share/gtk-doc/html - - - - - 2022-02-04 - 3.12.3 - First release - Pisilinux Community - admins@pisilinux.org - - - - - - cdrdao - http://cdrdao.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.optical - Burn CDs in disk-at-once mode - CDlerinizi DAO modunda yazar - cdrdao records audio or data CD-Rs in disk-at-once (DAO) mode based on a textual description of the CD contents. - mirrors://sourceforge/cdrdao/cdrdao-1.2.4.tar.bz2 - - lame-devel - libao-devel - libmad-devel - libvorbis-devel - - - cdrdao-1.2.3-version.patch - cdrdao-1.2.3-autoconf-update.patch - - hardware/optical/cdrdao/pspec.xml - - - cdrdao - - lame - libmad - libvorbis - libao - - - /usr/bin - /usr/share/cdrdao - /usr/share/doc - /usr/share/man - - - - - 2020-03-10 - 1.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-18 - 1.2.3 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-14 - 1.2.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-19 - 1.2.3 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - dmapi - http://oss.sgi.com/projects/xfs/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.disk - Librairie de l'API de gestion de données XFS. - XFS data management API library - XFS veri yönetimi kütüphanesi - The Data Management API (DMAPI/XDSM) allows implementation of hierarchical storage management software with no kernel modifications as well as high-performance dump programs without requiring "raw" access to the disk and knowledge of filesystem structures. - https://sources.archlinux.org/other/packages/dmapi/dmapi-2.2.12.tar.gz - - xfsprogs-devel - libutil-linux-devel - - - dmapi-add-missing-includes-to-handle2path.patch - - hardware/disk/dmapi/pspec.xml - - - dmapi - - xfsprogs - - - /lib - /usr/lib - /usr/share/doc - /usr/share/man - - - - dmapi-devel - Development files for dmapi - dmapi için geliştirme dosyaları - - dmapi - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-01-19 - 2.2.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-26 - 2.2.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 2.2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 2.2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-22 - 2.2.12 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - sshfs - http://fuse.sourceforge.net/sshfs.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - A filesystem client based on the SSH FTP - SSH FTP alanı dosyasistemi - sshfs allows mounting remote SSH accounts as a filesystem. - sshfs, SSH dosya aktarım protokülünü kullanarak bir dosyasistemi oluşturmanıza olanak verir. Böylece, uzak sistemdeki SSH FTP alanınızı diskinizin bir parçasıymış gibi kullanabilirsiniz. - https://github.com/libfuse/sshfs/releases/download/sshfs_2.8/sshfs-2.8.tar.gz - - fuse-devel - glib2-devel - - hardware/disk/sshfs/pspec.xml - - - sshfs - - fuse - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - - 2020-02-01 - 2.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-18 - 2.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-28 - 2.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 2.5 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - aufs-util - http://aufs.sourceforge.net - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - app:gui - hardware.disk - Utilities are always necessary for aufs - Utilities are always necessary for aufs - https://dev.gentoo.org/~jlec/distfiles/aufs-util-4.1_p20170130.tar.xz - hardware/disk/aufs-util/pspec.xml - - - aufs-util - - /etc - /sbin - /usr/bin - /usr/lib - /usr/share/man - - - - - 2018-08-19 - 20170130 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-01 - 20170130 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-20 - 20160717 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-07-23 - 20160717 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libblockdev - https://github.com/storaged-project/libblockdev - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - app - hardware.disk - A library for manipulating block devices - A library for manipulating block devices - Blok cihazlarını değiştirmek için bir kütüphane - Blok cihazlarını değiştirmek için bir kütüphane - https://github.com/storaged-project/libblockdev/releases/download/2.26-1/libblockdev-2.26.tar.gz - - nss-devel - mdadm - util-linux - glib2-devel - parted-devel - libyaml-devel - python3-devel - libkmod-devel - volume_key-devel - libbytesize-devel - libcryptsetup-devel - libutil-linux-devel - device-mapper-devel - gobject-introspection-devel - - hardware/disk/libblockdev/pspec.xml - - - libblockdev - - nss - nspr - glib2 - eudev - parted - libyaml - libkmod - volume_key - libbytesize - libcryptsetup - libutil-linux - device-mapper - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - libblockdev-devel - Development files for libblockdev - - libblockdev - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 2.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-11 - 2.25 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 2.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-28 - 2.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 2.23 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-02 - 2.20 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - fatresize - https://github.com/ya-mouse/fatresize - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - hardware.disk - A utility to resize FAT filesystems using libparted - A utility to resize FAT filesystems using libparted - Libparted kullanarak FAT dosya sistemlerini yeniden boyutlandırmak için bir yardımcı program - Libparted kullanarak FAT dosya sistemlerini yeniden boyutlandırmak için bir yardımcı program - - https://github.com/ya-mouse/fatresize/archive/v1.0.4.tar.gz - - parted-devel - - hardware/disk/fatresize/pspec.xml - - - fatresize - - parted - - - /usr/sbin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2020-03-22 - 1.0.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - xfsprogs - http://oss.sgi.com/projects/xfs/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - hardware.disk - XFS filesystem utilities - XFS dosya sistemi araçları - xfsprogs contains a number of administrative utilities to work with and manage XFS filesystems. - xfsprogs XFS dosya sistemini kullanmak ve yönetmek için bir dizi araç içerir. - https://mirrors.edge.kernel.org/pub/linux/utils/fs/xfs/xfsprogs/xfsprogs-5.14.2.tar.xz - - icu4c-devel - liburcu-devel - libinih-devel - readline-devel - libunistring-devel - libutil-linux-devel - device-mapper-devel - - hardware/disk/xfsprogs/pspec.xml - - - xfsprogs - - icu4c - liburcu - libinih - readline - libunistring - libutil-linux - device-mapper - - - /lib - /sbin - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - xfsprogs-devel - Development headers for xfsprogs - - libutil-linux-devel - xfsprogs - - - /usr/include - /usr/share/man/man3 - - - - - 2021-12-08 - 5.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-21 - 5.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-23 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-27 - 5.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 5.4.0 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2019-04-26 - 4.19.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.15.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-29 - 4.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 3.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-04 - 3.2.4 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - nilfs-utils - https://nilfs.sourceforge.io/en/ - - AYDIN ATMACA - aydinatmaca@gmail.com - - GPLv2 - LGPLv2.1 - app:gui - hardware.disk - A log-structured file system supporting continuous snapshotting (userspace utils) - NILFS is a log-structured file system supporting versioning of the entire file system and continuous snapshotting which allows users to even restore files mistakenly overwritten or destroyed just a few seconds ago. - https://nilfs.sourceforge.io/download/nilfs-utils-2.2.8.tar.bz2 - - libutil-linux-devel - - hardware/disk/nilfs-utils/pspec.xml - - - nilfs-utils - - libutil-linux - - - /etc - /sbin - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/doc - - - - nilfs-utils-devel - nilfs-utils için geliştirm edosyaları - nilfs-utils için geliştirm edosyaları - - nilfs-utils - - - /usr/include - - - - - 2021-01-12 - 2.2.8 - First Beta release. - AYDIN ATMACA - aydinatmaca@gmail.com - - - - - - parted - https://www.gnu.org/software/parted/parted.html - - PisiLinux Community - admins@pisilinux.org - - GPL-3 - app:console - hardware.disk - Crée, supprime, modifie les dimensions, vérifie et copie partitions et systèmes de fichiers. - Create, destroy, resize, check, copy partitions and file systems - GNU Parted disk bölümlerini oluşturmaya, silmeye, boyutlandırmaya, taşımaya ve kopyalamaya yarayan bir yazılımdır. - The GNU Parted program allows you to create, destroy, resize, move, and copy hard disk partitions. Parted can be used for creating space for new operating systems, reorganizing disk usage, and copying data to new hard disks. - https://ftp.gnu.org/gnu/parted/parted-3.4.tar.xz - - libutil-linux-devel - device-mapper-devel - readline-devel - - hardware/disk/parted/pspec.xml - - - parted - - libutil-linux - device-mapper - util-linux - readline - ncurses - - - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man - - - - parted-devel - Development files for parted - parted için geliştirme dosyaları - - parted - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-04 - 3.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 3.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-17 - 3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 3.2 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-21 - 3.2 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-08-09 - 3.2 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - reiserfsprogs - http://www.kernel.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Tools to work with Reiserfs filesystems - Reiserfs dosya sistemleriyle çalışabilmek için gereken araçlar - Contains tools designed to create, modify and check Reiserfs filesystems. - Reiserfs dosya sistemleri oluşturmak, bu dosya sistemlerinde hata kontrolü yapmak, bu sistemlerin boyutlarını değiştirmek ve hata ayıklamak gibi görevler taşıyan araçlar. - https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v3.6.27/reiserfsprogs-3.6.27.tar.xz - - libutil-linux-devel - e2fsprogs-devel - acl-devel - - hardware/disk/reiserfsprogs/pspec.xml - - - reiserfsprogs - - e2fsprogs - libutil-linux - - - /sbin - /usr/lib - /usr/include - /usr/share/doc - /usr/share/man - - - - - 2020-02-01 - 3.6.27 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 3.6.27 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-05 - 3.6.27 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-05 - 3.6.25 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-28 - 3.6.25 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 3.6.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-13 - 3.6.24 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - f2fs-tools - https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/about/ - - fury - uglyside@yandex.ru - - GPLv2 - LGPLv2.1 - app:console - hardware.disk - Userland tools for the f2fs filesystem. - Tools for Flash-Friendly File System (F2FS). - https://git.kernel.org/pub/scm/linux/kernel/git/jaegeuk/f2fs-tools.git/snapshot/f2fs-tools-1.14.0.tar.gz - - libutil-linux-devel - - hardware/disk/f2fs-tools/pspec.xml - - - f2fs-tools - - libutil-linux - - - /usr/sbin - /usr/include - /usr/lib - /usr/share/man/man8 - /usr/share/doc - - - - - 2021-01-12 - 1.14.0 - First Beta build. - fury - uglyside@yandex.ru - - - - - - libbytesize - https://github.com/storaged-project/libbytesize - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - app - hardware.disk - A tiny library providing a C "class" for working with arbitrary big sizes in bytes - A tiny library providing a C "class" for working with arbitrary big sizes in bytes - Bayt cinsinden rastgele büyük boyutlarla çalışmak için C sınıfı olan kütüphane - Bayt cinsinden rastgele büyük boyutlarla çalışmak için C sınıfı olan kütüphane - https://github.com/storaged-project/libbytesize/releases/download/2.5/libbytesize-2.5.tar.gz - - libpcre2-devel - python3-devel - python-devel - mpfr-devel - gmp-devel - - hardware/disk/libbytesize/pspec.xml - - - libbytesize - - libpcre2 - mpfr - gmp - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - libbytesize-devel - Development files for libbytesize - - libbytesize - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 2.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-11 - 2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 2.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-02 - 1.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libisofs - https://dev.lovelyhq.com/libburnia/web/wiki - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - library - hardware.optical - A library for creating ISO disc images - ISO kalıbı oluşturmak için gerekli kitaplıklar - libisofs is a library that handles creating ISO disc image files. It is intended to work together with libburn to write these images to discs - libisofs, ISO kalıbını oluşturmak için gerekli kitaplıkları içeren pakettir. Bu paket ayrıca Libburn'u kullanarak, ISO kalıplarını CD, DVD veya benzeri disklere yazdırmanıza olanağı sağlar. - http://files.libburnia-project.org/releases/libisofs-1.5.4.tar.gz - - acl-devel - zlib-devel - - hardware/disk/libisofs/pspec.xml - - - libisofs - - acl - zlib - - - /usr/lib - /usr/share/doc - - - - libisofs-devel - Development files for libisofs - libisofs için geliştirme dosyaları - - libisofs - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/libisofs/Tutorial - /usr/share/doc/libisofs/checksums.txt - /usr/share/doc/libisofs/susp_aaip_2_0.txt - /usr/share/doc/libisofs/susp_aaip_isofs_names.txt - /usr/share/doc/libisofs/zisofs_format.txt - - - - - 2021-08-11 - 1.5.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.5.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-18 - 1.4.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 1.4.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 1.4.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 1.4.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - hdparm - https://sourceforge.net/projects/hdparm/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - hardware.disk - Utility to change hard drive performance parameters - Sabit disk parametrelerini değiştirmekte kullanılan araç - le paquet hdparm dispose d'outils utiles permettant d'obtenir/établir les paramètres de disques durs IDE sous Linux en cours d'éxécution. - hdparm has some useful utilities that allows you to get/set hard disk parameters for Linux IDE drives in runtime. - hdparm paketi çalışma anında Linux IDE sürücülerinin parametrelerini almanıza/değiştirmenize olanak sağlayan bazı kullanışlı uygulamaları içerir. - https://sourceforge.net/projects/hdparm/files/hdparm/hdparm-9.58.tar.gz - hardware/disk/hdparm/pspec.xml - - - hdparm - - /sbin - /usr/share/doc - /usr/share/man - /etc/conf.d - - - hdparm.confd - - - - - 2020-02-01 - 9.58 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 9.54 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 9.52 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 9.51 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 9.43 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 9.43 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - udftools - https://github.com/pali/udftools - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.disk - Linux UDF Filesystem userspace utilities - Linux UDF Filesystem userspace utilities - UDF dosya sistemleri ve DVD / CD-R (W) sürücüleri için Linux araçları - UDF dosya sistemleri ve DVD / CD-R (W) sürücüleri için Linux araçları - https://github.com/pali/udftools/releases/download/2.1/udftools-2.1.tar.gz - - eudev-devel - readline-devel - ncurses-devel - - hardware/disk/udftools/pspec.xml - - - udftools - - readline - - - /usr/bin - /usr/sbin - /lib/udev - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2020-02-01 - 2.1 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2019-11-02 - 2.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - btrfs-progs - http://btrfs.wiki.kernel.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Userspace utilities for btrfs - btrfs dosya sistemi araçları - btrfs-progs package provides all the userspace programs needed to create, check, modify and correct any inconsistencies in the btrfs filesystem. - btrfs-progs, btrfs dosya sistemleri yaratmak, denetlemek; bu dosya sistemlerindeki hataları düzeltmek ve çeşitli değişiklikler yapmak için gereken araçları içerir. - https://github.com/kdave/btrfs-progs/archive/v5.15.tar.gz - - xmlto - asciidoc - lzo-devel - zstd-devel - zlib-devel - libutil-linux-devel - util-linux - libxslt - eudev-devel - reiserfsprogs - e2fsprogs-devel - python3-devel - python3-setuptools - - hardware/disk/btrfs-progs/pspec.xml - - - btrfs-progs - - lzo - zlib - zstd - eudev - e2fsprogs - reiserfsprogs - libutil-linux - - - /usr/bin - /lib - /usr/lib - /usr/share/man - /usr/share/doc - - - - btrfs-progs-devel - Development files for btrfs-progs - - btrfs-progs - - - /usr/include - - - - - 2021-11-21 - 5.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-24 - 5.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 5.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-26 - 4.19.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-19 - 4.14 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-31 - 4.14 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-19 - 4.1.2 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 4.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-20 - 4.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - udiskie - https://pypi.python.org/pypi/udiskie - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:gui - hardware.disk - Removable disk automounter using udisks2 - Removable disk automounter using udisks2 - Udiskie est un frontal udisks2 qui permet de gérer des supports amovibles tels que des CD ou des clés USB depuis l'espace utilisateur. - Udiskie is a udisks2 front-end that allows to manage removeable media such as CDs or flash drives from userspace. - udiskie, CD'ler veya usb flash sürücüler gibi çıkarılabilir ortamların kullanıcı alanından yönetilmesine izin veren bir udisks2 ön ucudur. - https://files.pythonhosted.org/packages/a5/0c/b1aaddf8c53a1f186f2d95d1073d88876d227685454adac4ff547ac03328/udiskie-2.3.3.tar.gz - - pip3 - keyutils - asciidoc - gtk3-devel - python3-devel - udisks2-devel - python3-wheel - python3-PyYAML - python-keyutils - libnotify-devel - python3-setuptools - python3-pygobject3-devel - - hardware/disk/udiskie/pspec.xml - - - udiskie - - gtk3 - python3 - udisks2 - libnotify - python-docopt - python3-PyYAML - python-keyutils - python3-pygobject3 - - - /usr/bin - /usr/lib/python3.8/site-packages/udiskie - /usr/share/zsh/site-functions - /usr/share/locale - /usr/share/doc/udiskie - - - - - 2021-09-25 - 2.3.3 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - udisks2 - http://udisks.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:console - hardware.disk - Disk Management Service - Disk Yönetim Hizmeti - udisks provides a daemon, API and command line tools for managing disk devices attached to the system. - udisks, sisteme bağlı disk aygıtlarını yönetmek için programlama kitaplığı ve komut satırı araçları sunar. - https://github.com/storaged-project/udisks/releases/download/udisks-2.9.4/udisks-2.9.4.tar.bz2 - - gtk-doc - acl-devel - glib2-devel - polkit-devel - elogind-devel - python-six - libgudev-devel - parted-devel - libatasmart-devel - device-mapper-devel - lvm2-devel - gobject-introspection-devel - sg3_utils-devel - ntfsprogs - dosfstools - docbook-xsl - libxslt-devel - mdadm - intltool - ntfs-3g - gptfdisk - btrfs-progs-devel - libblockdev-devel - - - udisks-2.x-ntfs-3g.patch - - hardware/disk/udisks2/pspec.xml - - - udisks2 - - acl - glib2 - polkit - libgudev - lvm2 - mdadm - parted - elogind - libatasmart - device-mapper - ntfsprogs - dosfstools - sg3_utils - libblockdev - libutil-linux - - - /etc/udisks2 - /etc/dbus-1 - /lib/udev/rules.d - /usr/bin - /usr/sbin - /usr/lib - /usr/libexec - /usr/share/bash-completion/completions - /usr/share/doc - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/locale - /usr/share/polkit-1/ - /usr/share/man - /var/lib/ - /run/udisks - /usr/share/dbus-1/interfaces/*.xml - - - - udisks2-docs - Development files for udisks2 - - udisks2 - - - /usr/share/gtk-doc - - - - udisks2-devel - Development files for udisks2 - udisks için geliştirme dosyaları - - udisks2 - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-21 - 2.9.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-11 - 2.9.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-21 - 2.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-28 - 2.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 2.8.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 2.8.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 2.1.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 2.1.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 2.1.6 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gparted - https://gparted.org/ - - AYDIN ATMACA - aydinatmaca@gmail - - GPLv2 - app:gui - hardware.disk - Gnome Partition tool based on GNU-Parted. - GNU Parted tabanlı Gnome disk bölümleme aracı - GParted is the Gnome Partition Editor application. GParted is an industrial-strength package for creating, destroying, resizing, moving, checking and copying partitions, and the filesystems on them. This is useful for creating space for new operating systems, reorganizing disk usage, copying data residing on hard disks and mirroring one partition with another (disk imaging). - GParted Gnome masaüstü ortamının disk bölümleme uygulamasıdır. Bu program, disk bölümleme, dosya sistemleri oluşturma, silme, boyutlandırma, taşıma, kontrol ve kopyalama işlemlerini yapabilir. Yeni bir işletim sistemi için yer açmak, disk kullanımını yeniden düzenlemek, verileri diskin bir başka bölümüne aynalamak ve yerleştirmek için faydalıdır. - mirrors://sourceforge/project/gparted/gparted/gparted-1.4.0/gparted-1.4.0.tar.gz - - itstool - intltool - atkmm-devel - polkit-devel - parted-devel - gtkmm3-devel - libxml2-devel - elogind-devel - - hardware/disk/gparted/pspec.xml - - - gparted - - gtk3 - glib2 - xterm - gpart - atkmm - libgcc - polkit - gtkmm3 - parted - glibmm - mtools - ntfs-3g - cairomm - pangomm - elogind - xfsdump - xfsprogs - jfsutils - xdg-utils - libsigc++ - f2fs-tools - exfatprogs - dosfstools - nilfs-utils - btrfs-progs - reiserfsprogs - libutil-linux - - - /usr/bin - /usr/libexec - /usr/share/appdata/ - /usr/share/applications - /usr/share/icons - /usr/share/polkit-1 - /usr/share/locale - /usr/share/man - /usr/share/help - - - - - 2022-04-14 - 1.4.0 - Version bump - fury - uglyside@gmail.com - - - 2021-07-21 - 1.3.1 - Version bump - AYDIN ATMACA - aydinatmaca@gmail.com - - - 2021-05-04 - 1.3.0 - Version bump - AYDIN ATMACA - aydinatmaca@gmail.com - - - 2021-01-26 - 1.2.0 - Version bump. - AYDIN ATMACA - aydinatmaca@gmail.com - - - 2021-01-12 - 1.1.0 - First Beta release. - AYDIN ATMACA - aydinatmaca@gmail.com - - - - - - dmraid - http://people.redhat.com/~heinzm/sw/dmraid - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Device-Mapper Software RAID support tool and library - ATARAID aygıtlarını (Yazılımsal RAID) denetleme aracı - Device-Mapper Software RAID support tool and library - ATARAID aygıtları yaratmak, yönetmek ve izlemek için kullanılan bir araçtır. - http://launchpad.net/dmraid/1.0/1.0.0.rc16-3/+download/dmraid-1.0.0.rc16-3.tar.bz2 - - device-mapper-event-devel - device-mapper-devel - - - dmraid-diet.patch - dmraid-1.0.0_rc16-return-all-sets.patch - dmraid-1.0.0_rc16-static-build-fixes.patch - dmraid-1.0.0_rc16-undo-p-rename.patch - - hardware/disk/dmraid/pspec.xml - - - dmraid - - device-mapper - device-mapper-event - - - /usr/sbin - /usr/lib - /usr/share/doc - /usr/share/man - - - - dmraid-devel - Development files for dmraid - dmraid için geliştirme dosyaları - - dmraid - - - /usr/include - - - - - 2020-02-01 - 1.0.0_rc16 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-19 - 1.0.0_rc16 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 1.0.0_rc16 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.0_rc16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-17 - 1.0.0_rc16 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - encfs - https://github.com/vgough/encfs - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2 - library - hardware.disk - Encrypted filesystem in user-space - Encrypted filesystem in user-space - Encrypted filesystem in user-space - Encrypted filesystem in user-space - https://github.com/vgough/encfs/releases/download/v1.9.5/encfs-1.9.5.tar.gz - - cmake - ninja - fuse-devel - openssl-devel - tinyxml2-devel - - hardware/disk/encfs/pspec.xml - - - encfs - - fuse - libgcc - openssl - tinyxml2 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-01-15 - 1.9.5 - Rebuild. - Pisi Linux Admins - admins@pisilinux.org - - - 2018-08-12 - 1.9.5 - First release. - Pisi Linux Admins - admins@pisilinux.org - - - 2017-10-18 - 1.9.2 - First release. - Pisi Linux Admins - admins@pisilinux.org - - - - - - exfat-utils - https://github.com/relan/exfat - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:gui - hardware.disk - Utilities for exFAT file system - This project aims to provide a full-featured exFAT file system implementation for GNU/Linux and other Unix-like systems as a FUSE module and a set of utilities. - https://github.com/relan/exfat/releases/download/v1.3.0/exfat-utils-1.3.0.tar.gz - hardware/disk/exfat-utils/pspec.xml - - - exfat-utils - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/sbin - - - - - 2021-01-26 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.2.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-30 - 1.2.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 1.2.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 1.2.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - dosfstools - https://github.com/dosfstools/dosfstools - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - hardware.disk - Tools to create and check DOS and VFAT filesystems - DOS dosya sistemi oluşturmaya ve kontrol etmeye yarayan komutlar - The dosfstools package includes the DOS and VFAT filesystem utilities like mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel. You can create and check MS-DOS FAT filesystems on hard drives or on floppies - Dosfstools paketi, mkdosfs, mkfs.msdos, mkfs.vfat, dosfsck, dosfslabel gibi, DOS ve VFAT dosyasistemleri yaratmaya ve kontrol etmeye yarayan araçları içerir. - https://github.com/dosfstools/dosfstools/releases/download/v4.2/dosfstools-4.2.tar.gz - - eudev-devel - - hardware/disk/dosfstools/pspec.xml - - - dosfstools - - eudev - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2021-11-21 - 4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 4.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 4.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 4.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-01 - 4.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 4.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-10 - 3.0.26 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-04-03 - 3.0.26 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - exfatprogs - https://github.com/exfatprogs/exfatprogs - - fury - uglyside@yandex.ru - - GPL-2 - app:console - hardware.disk - exFAT filesystem userspace utilities. - As new exfat filesystem is merged into linux-5.7 kernel, exfatprogs is created as an official userspace utilities that contain all of the standard utilities for creating and fixing and debugging exfat filesystem in linux system. - https://github.com/exfatprogs/exfatprogs/releases/download/1.1.3/exfatprogs-1.1.3.tar.xz - hardware/disk/exfatprogs/pspec.xml - - - exfatprogs - - /usr/sbin - /usr/share/man/man8 - /usr/share/doc/exfatprogs/NEWS - - - - - 2021-11-17 - 1.1.3 - Version bump. - fury - uglyside@yandex.ru - - - 2021-06-22 - 1.1.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-04 - 1.1.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-03-07 - 1.1.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-26 - 1.0.4 - First Beta build. - fury - uglyside@yandex.ru - - - - - - thin-provisioning-tools - https://github.com/jthornber/thin-provisioning-tools - - Ali Algul - alialgul@pisilinux.org - - GPLv2 - hardware.disk - A suite of tools for thin provisioning on Linux - A suite of tools for thin provisioning on Linux - https://github.com/jthornber/thin-provisioning-tools/archive/v0.8.5.tar.gz - - libaio-devel - boost-devel - expat-devel - libgcc - - hardware/disk/thin-provisioning-tools/pspec.xml - - - thin-provisioning-tools - - expat - libgcc - libaio - - - /usr/sbin/ - /usr/share/man/man8/ - - - - - 2021-03-12 - 0.8.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.7.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-22 - 0.7.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-01 - 0.7.5 - version Bump - Mustafa Cinasal - admin@pisilinux.org - - - 2017-04-09 - 0.6.3 - version Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-31 - 0.6.0 - First release - Ali Algul - alialgul@pisilinux.org - - - - - - squashfs-tools - http://squashfs.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.disk - Userspace tools to create squashfs compressed filesystem - squashfs sıkıştırılmış salt-okunur dosya sistemi oluşturma aracı - Squashfs is a highly compressed read-only filesystem for Linux. This package contains the utilities for manipulating squashfs filesystems. - squashfs, Linux için sıkıştırılmış ve salt-okunur bir dosya sistemidir. Bu paket squashfs dosya sistemiyle çalışmak için kullanılabilecek araçları içerir. - https://github.com/plougher/squashfs-tools/archive/refs/tags/4.4-git.1.tar.gz - - lzo-devel - lz4-devel - zstd-devel - xz-devel - zlib-devel - - hardware/disk/squashfs-tools/pspec.xml - - - squashfs-tools - - lzo - lz4 - zstd - zlib - xz - - - /usr/sbin - /usr/share/doc - - - - - 2021-04-11 - 4.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-26 - 4.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 4.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-20 - 4.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-28 - 4.3 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 4.2 - First release - Varol Maksutoğlu - waroi@pisilinux.org - - - - - - fsarchiver - http://www.fsarchiver.org/ - - marcin bojara - marcin@pisilinux.org - - GPLv2 - app:console - hardware.disk - Sicherung und Wiederherstellung von Dateisystemen - Safe and flexible file-system backup/deployment tool. - Bezpieczne i elastyczne narzędzie do tworzenia kopii zapasowej systemu plików. - fsarchiver ist ein Konsolenprogramm zum Sichern und Wiederherstellen von Partitionen und Verzeichnissen. - FSArchiver is a system tool that allows you to save the contents of a file-system to a compressed archive file. - FSArchiver jest narzędziem systemowym, które pozwala na zapisanie zawartości systemu plików w skompresowanym pliku. - https://github.com/fdupoux/fsarchiver/releases/download/0.8.5/fsarchiver-0.8.5.tar.gz - - lzo-devel - xz-devel - zlib-devel - bzip2 - e2fsprogs-devel - libgcrypt-devel - attr-devel - libutil-linux-devel - - hardware/disk/fsarchiver/pspec.xml - - - fsarchiver - - lzo - xz - zlib - bzip2 - e2fsprogs - libgcrypt - libutil-linux - - - /usr/sbin - /usr/share/man - /usr/share/doc - - - - - 2020-02-01 - 0.8.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.8.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-01 - 0.8.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 0.8.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.6.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 0.6.21 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - testdisk - http://www.cgsecurity.org/index.html?testdisk.html - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2 - app:console - hardware.disk - Powerful free data recovery software - Güçlü ve açık kaynak bir veri kurtarma programı - TestDisk is a multi-platform tool to check and undelete partitions; supports reiserfs, ntfs, fat32, ext2/3 and many others. Also includes PhotoRec to recover pictures from digital camera memory. - Çok platformlu reiserfs,ntfs, fat32, ext2/3 ve daha bir çok farklı dosya sistemini destekleyen disk kontrol ve veri kurtarma programı. Ayrıca içerdiği PhotoRec ile de dijital kamera hafızasından veri kurtarabilmekte - https://www.cgsecurity.org/testdisk-7.2-WIP.tar.bz2 - - sudo - ntfsprogs - python-qt5 - zlib-devel - qt5-linguist - ncurses-devel - reiserfsprogs - qt5-base-devel - desktop-file-utils - libjpeg-turbo-devel - - hardware/disk/testdisk/pspec.xml - - - testdisk - - zlib - ntfs-3g - ncurses - ntfsprogs - libjpeg-turbo - libutil-linux - - - /usr/share/doc - /usr/bin/testdisk - /usr/bin/fidentify - /usr/share/man/man8/testdisk.8 - /usr/share/man/man8/fidentify.8 - /usr/share/pixmaps/testdisk_logo.png - /usr/share/applications/testdisk.desktop - /usr/share/icons/hicolor/icon-theme.cache - - - photorec.desktop - testdisk.desktop - photorec_logo.png - testdisk_logo.png - - - - qphotorec - - zlib - libgcc - ncurses - ntfs-3g - qt5-base - testdisk - python-qt5 - libjpeg-turbo - - - /usr/bin/photorec - /usr/bin/qphotorec - /usr/share/man/man8/photorec.8 - /usr/share/man/man8/qphotorec.8 - /usr/share/pixmaps/photorec_logo.png - /usr/share/applications/photorec.desktop - /usr/share/applications/qphotorec.desktop - /usr/share/icons/hicolor/48x48/apps/qphotorec.png - /usr/share/icons/hicolor/scalable/apps/qphotorec.svg - - - - - 2020-02-01 - 7.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-03 - 7.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - smartmontools - http://smartmontools.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - hardware.disk - Programs to control and monitor storage systems using the Self-Monitoring - Hard disk kontrol ve durumunu gösteren programlar - The smartmontools package contains two utility programs (smartctl and smartd) to control and monitor storage systems using the Self-Monitoring, Analysis and Reporting Technology System (SMART) built into most modern ATA and SCSI hard disks. - smartctl ve smartd adlı ATA ve SCSI diskleri kontrol ve durumlarını gösterir iki program. - mirrors://sourceforge/smartmontools/7.2/smartmontools-7.2.tar.gz - - libutil-linux-devel - libcap-ng-devel - - - smartmontools-7.2-update-smart-drivedb-quiet.patch - - hardware/disk/smartmontools/pspec.xml - - - smartmontools - - libgcc - libcap-ng - - - /etc - /lib/systemd/system - /usr/sbin - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/smartmontools - - - System.Service - - - smartmontools.sysconf - - - - - 2021-11-22 - 7.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 6.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 6.6 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 6.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 6.4 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - exfat-linux - https://github.com/arter97/exfat-linux - - fury - uglyside@yandex.ru - - GPLv2 - driver - hardware.disk - exFAT filesystem module for Linux kernel - This exFAT filesystem module for Linux kernel is based on sdFAT drivers by Samsung, which is used with their smartphone lineups. - https://github.com/arter97/exfat-linux/archive/5.8-1arter97.tar.gz - - kernel - linux-firmware - kernel-headers - kernel-module-headers - - hardware/disk/exfat-linux/pspec.xml - - - exfat-linux - - exfat-utils - - - /lib/modules - /usr/share/doc/exfat-linux - - - - - 2020-06-27 - 5.8.1 - First build. - fury - uglyside@yandex.ru - - - - - - volume_key - https://pagure.io/volume_key - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - hardware.disk - A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases - A library for manipulating storage volume encryption keys and storing them separately from volumes to handle forgotten passphrases - Depolama birimi şifreleme anahtarlarını değiştirmek ve unutulan parolaları işlemek için bunları ayrı birimlerden saklamak için bir kütüphane - Depolama birimi şifreleme anahtarlarını değiştirmek ve unutulan parolaları işlemek için bunları ayrı birimlerden saklamak için bir kütüphane - https://releases.pagure.org/volume_key/volume_key-0.3.12.tar.xz - - swig - nss-devel - glib2-devel - gpgme-devel - python-devel - python3-devel - libassuan - libgpg-error - libutil-linux-devel - libcryptsetup-devel - - hardware/disk/volume_key/pspec.xml - - - volume_key - - nspr - nss - gettext - glib2 - gpgme - python - python3 - libassuan - libgpg-error - libutil-linux - libcryptsetup - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - volume_key-devel - Development files for volume_key - - volume_key - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 0.3.12 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2020-11-07 - 0.3.12 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2020-02-01 - 0.3.12 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2018-12-29 - 0.3.12 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-12-29 - 0.3.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - jfsutils - http://jfs.sourceforge.net/ - - AYDIN ATMACA - aydinatmaca@gmail - - GPLv2 - app:console - hardware.disk - IBM's Journaling Filesystem (JFS) Utilities. - IBM'in günlüklü dosya sistemi JFS için araçlar - Contains tools to work with JFS (Journaling Filesystem) developed by IBM. - IBM'in geliştirdiği günlüklü dosya sistemi (JFS - Journalling File System) araçlarını içerir. - http://jfs.sourceforge.net/project/pub/jfsutils-1.1.15.tar.gz - - libutil-linux-devel - - - gcc10.patch - missing_stdint_header.patch - inttypes.patch - sysmacros.patch - - hardware/disk/jfsutils/pspec.xml - - - jfsutils - - libutil-linux - - - /usr/sbin - /usr/share/doc - /usr/share/man - - - - - 2021-01-12 - 1.1.15 - First Beta rebuild. - AYDIN ATMACA - aydinatmaca@gmail.com - - - - - - fuse-exfat - https://github.com/relan/exfat - - PisiLinux Community - admin@pisilinux.org - - GPLv3 - app - hardware.disk - exFAT filesystem fuse module - exFAT dosya sistemi bağlamak için araçlar - exFAT filesystem fuse module - exFAT dosya sistemi bağlamak için araçlar - https://github.com/relan/exfat/releases/download/v1.3.0/fuse-exfat-1.3.0.tar.gz - - fuse-devel - - hardware/disk/fuse-exfat/pspec.xml - - - fuse-exfat - - fuse - exfatprogs - exfat-utils - - - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/doc - - - - - 2021-01-26 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.2.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-30 - 1.2.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 1.2.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 1.2.3 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - xfsdump - https://git.kernel.org/pub/scm/fs/xfs/xfsdump-dev.git/ - - AYDIN ATMACA - aydinatmaca@gmail - - LGPLv2.1 - app:console - hardware.disk - XFS dump/restore utilities. - XFS döküm ve geri yükleme araçları - xfsdump contains XFS filesystem dump and restore utilities. - xfsdump, XFS dosya sistemi döküm (dump) ve geri yükleme (restore) araçlarını içerir. - http://ftp.ntu.edu.tw/pub/linux/utils/fs/xfs/xfsdump/xfsdump-3.1.9.tar.xz - - attr-devel - dmapi-devel - ncurses-devel - xfsprogs-devel - libutil-linux-devel - - - no_symlink.patch - skip_inventory_debian_subfolder.patch - no_changes_compress.patch - - hardware/disk/xfsdump/pspec.xml - - - xfsdump - - attr - gawk - dmapi - uuidd - ncurses - libtool - gettext - xfsprogs - libutil-linux - - - /sbin - /usr/sbin - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-05-18 - 3.1.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-27 - 3.1.9 - First Beta release. - AYDIN ATMACA - aydinatmaca@gmail.com - - - - - - gptfdisk - http://www.rodsbooks.com/gdisk/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - app:console - hardware.disk - A text-mode partitioning tool that works on GUID Partition Table (GPT) disks - A text-mode partitioning tool that works on GUID Partition Table (GPT) disks - http://sourceforge.net/projects/gptfdisk/files/gptfdisk/1.0.8/gptfdisk-1.0.8.tar.gz - - util-linux - ncurses-devel - popt-devel - libutil-linux-devel - - hardware/disk/gptfdisk/pspec.xml - - - gptfdisk - - ncurses - popt - libgcc - libutil-linux - - - /usr/share/man - /usr/share/doc - /usr/bin - - - - - 2021-11-21 - 1.0.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 1.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.0.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-01 - 1.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-08 - 1.0.1 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-28 - 1.0.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gpart - https://github.com/baruch/gpart - - AYDIN ATMACA - aydinatmaca@gmail.org - - GPLv2 - app:gui - hardware.disk - Partition table rescue/guessing tool - Gpart is a small tool which tries to guess what partitions are on a PC type harddisk in case the primary partition table was damaged. - https://github.com/baruch/gpart/archive/0.3.tar.gz - hardware/disk/gpart/pspec.xml - - - gpart - - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/doc - - - - - 2021-01-12 - 0.3 - First Beta release. - AYDIN ATMACA - aydinatmaca@gmail.com - - - - - - ntfs-3g - http://www.tuxera.com/community/ntfs-3g-download - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - LGPLv2+ - library - app:console - hardware.disk - Userspace driver for NTFS read/write support - NTFS dosya sistemlerine okuma/yazma erişimi için bir sürücü - ntfs-3g allows regular users read/write access to NTFS filesystems. - ntfs-3g kullanıcıların NTFS biçimli disk bölümlerine hem okuma hem yazma erişimi yapabilmesine imkan veren bir sürücüdür. - https://tuxera.com/opensource/ntfs-3g_ntfsprogs-2017.3.23.tgz - - fuse-devel - libutil-linux-devel - - - ntfs3g-2017.3.23-big-sectors.patch - ntfs3g-2017.3.23-check-mftmirr.patch - ntfs3g-2017.3.23-full-clusters.patch - ntfs-3g-CVE-2019-9755.patch - - hardware/disk/ntfs-3g/pspec.xml - - - ntfs-3g - - fuse - - - /bin - /sbin - /lib - /usr/lib - /usr/include - /usr/lib/pkgconfig - /usr/share/hal/fdi - /usr/share/doc/ntfs-3g - /usr/share/man/man8/mount* - /usr/share/man/man8/ntfs-3g* - - - - ntfsprogs - Userspace tools for NTFS filesystems - NTFS dosya sistemi için kullanıcı araçları - Userspace tools for NTFS filesystems. The goals of the Linux-NTFS project are to develop reliable and full-featured access to NTFS by the Linux kernel driver and to provide a wide collection of NTFS utilities. - NTFS dosya sistemi için kullanıcı araçları içerir. Bu araçların amacı Linux çekirdeğine NTFS dosya sistemlerine güvenilir ve tam erişim sağlayacak NTFS araçlarını sağlamaktır. - hardware.disk - - ntfs-3g - fuse - libutil-linux - - - /sbin/mkfs.ntfs - /usr/bin - /usr/sbin - /usr/share/doc/ntfsprogs - /usr/share/man/man8 - - - - - 2020-02-01 - 2017.3.23 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-13 - 2017.3.23 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 2017.3.23 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-20 - 2017.3.23 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-20 - 2016.2.22 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-27 - 2016.2.22 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2015.3.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-30 - 2015.3.14 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - sg3_utils - http://sg.danny.cz/sg/sg3_utils.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - app:console - library - hardware.disk - Utilities for devices that use SCSI command sets - SCSI komut setini kullanan aygıtlar için araçlar - sg3_utils is a collection of Linux utilities for devices that use the SCSI command set. Includes utilities to copy data based on dd syntax and semantics, check INQUIRY data and VPD pages, check mode and log pages, spin up/down disks, do self tests and various other functions. - sg3_utils SCSI komut setini kullanan aygıtlar için çeşitli araçlar sunar. - https://github.com/hreinecke/sg3_utils/archive/v1.44.tar.gz - hardware/disk/sg3_utils/pspec.xml - - - sg3_utils - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - rescan-scsi-bus.sh - - - - sg3_utils-devel - Development files for sg3_utils - sg3_utils için geliştirme dosyaları - - sg3_utils - - - /usr/include - - - - - 2020-02-01 - 1.44 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.43 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-03 - 1.43 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 1.42 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.41 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-19 - 1.41 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libatasmart - http://0pointer.de/blog/projects/being-smart.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - app:console - hardware.disk - ATA S.M.A.R.T. Disk Health Monitoring Library - ATA S.M.A.R.T. disk sağlığı izleme kitaplığı - A small and lightweight parser library for ATA S.M.A.R.T. hard disk health monitoring. - libatasmart, ATA S.M.A.R.T. üzerinden disk sağlığını izlemek için kullanılan ufak ve hafif bir kitaplıktır. - http://0pointer.de/public/libatasmart-0.19.tar.xz - - eudev-devel - - - libatasmart-uninitialized-var.patch - libatasmart-0.19-wd-fix.patch - - hardware/disk/libatasmart/pspec.xml - - - libatasmart - - eudev - - - /usr/sbin/skdump - /usr/sbin/sktest - /usr/lib/libatasmart.so* - /usr/share/doc/libatasmart/README - /usr/share/doc/libatasmart/LGPL - - - - libatasmart-devel - Development files for libatasmart - libatasmart için geliştirme dosyaları - - libatasmart - eudev-devel - - - /usr/include - /usr/share/vala - /usr/lib/pkgconfig - /usr/share/doc - - - - - 2020-02-01 - 0.19 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 0.19 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 0.19 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.19 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - lirc - http://www.lirc.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - service - hardware.irda - LIRC est un paquet permettant de décoder et d'envoyer des signaux par infrarouges pour de nombreuses télécommandes usuelles (mais pas toutes). - Linux Infrared Remote Control system - Linux Kızılötesi Uzaktan Kumanda Sistemi - Sistema de control remoto por infrarrojo en Linux - lirc is a package that allows you to decode and send infra-red signals of many (but not all) commonly used remote controls. - lirc, kızılötesi sinyalleriyle yaygın uzaktan kumandaları denetlemeye olanak veren bir Linux altyapısıdır. - LIRC permite decodificar y transmitir señales infrarrojos compatible con muchos (pero no de todos) controles remotos comúnes. - https://sourceforge.net/projects/lirc/files/LIRC/0.10.1/lirc-0.10.1.tar.bz2 - - alsa-lib-devel - libftdi-devel - libusb-compat-devel - libX11-devel - libxslt - doxygen - python3-devel - python3-PyYAML - python3-setuptools - - - sysmacros.patch - - hardware/irda/lirc/pspec.xml - - - lirc - - python3 - alsa-lib - libftdi - libusb-compat - libX11 - eudev - libgcc - libusb - - - /etc - /lib/udev/rules.d - /usr/bin - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/man/man1 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/lirc - /run - /var - - - System.Service - - - lirc.conf.d - lirc.tmpfiles - lirc.logrotate - - - - lirc-devel - Development files for lirc - lirc için geliştirme dosyaları - - lirc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-08-08 - 0.10.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 0.10.1 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2018-10-15 - 0.10.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-20 - 0.10.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-05 - 0.10.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-22 - 0.9.4c - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.9.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 0.9.3 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-05-08 - 0.9.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libraw1394 - http://www.linux1394.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - hardware.firewire - A library that provides direct access to the IEEE 1394 bus - IEEE 1394 veriyoluna direk erişim sağlayan bir kütüphane - IEEE 1394 est un standard définissant un bus de série très rapide. Ce bus est également appelé FireWire par Apple ou i.Link par Sony. - libraw1394 library provides direct access to the IEEE-1394 bus through the Linux 1394 subsystem's raw1394 user interface. Support for both the classic ieee1394 and new firewire linux driver stacks is included. - IEEE 1394 yüksek hızlı bir seri veriyolu tanımlayan standarttır. Bu veriyolu Apple, i.Link ve Sony tarafından FireWire olarak adlandırılmıştır. Bu kütüphane IEEE 1394 veriyoluna direkt erişim sağlar. - IEEE 1394 es un estándar que define un bus serial de alta velocidad. Este bus lleva también el nombre FireWire por Apple o i.Link por Sony. - https://www.kernel.org/pub/linux/libs/ieee1394/libraw1394-2.1.2.tar.xz - hardware/firewire/libraw1394/pspec.xml - - - libraw1394 - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libraw1394-devel - Development files for libraw1394 - libraw1394 için geliştirme dosyaları - - libraw1394 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-12 - 2.1.2 - Rebuild for new toolchain. - Idris Kalp - idriskalp@gmail.com - - - 2018-08-01 - 2.1.2 - Rebuild for new toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-02-17 - 2.1.2 - Rebuild for new toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-27 - 2.1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 2.1.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libavc1394 - http://sourceforge.net/projects/libavc1394/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.firewire - Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association). - library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set - 1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane - The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder. - mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz - - libraw1394-devel - - - libavc1394-0.5.3-librom.patch - - hardware/firewire/libavc1394/pspec.xml - - - libavc1394 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libavc1394-devel - Development files for libavc1394 - libavc1394 için geliştirme dosyaları - - libavc1394 - libraw1394-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-17 - 0.5.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.5.4 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.5.4 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 0.5.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libdc1394 - http://sourceforge.net/projects/libdc1394/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - hardware.firewire - Programming interface for IEEE 1394 based cameras - IEEE 1394 tabanlı kameralar için programlama kitaplığı - libdc1394 est une librairie dont l'objectif est de fournir une interface de programmation d'application de haut niveau pour les développeur désirant contrôler les caméras basées sur le IEEE 1394 se conformant aux spécifications des Caméras Digitales basées sur 1394 (que l'on trouve sur http://www.1394ta.org/). - libdc1394 is a library that is intended to provide a high level programming interface for application developers who wish to control IEEE 1394 based cameras that conform to the 1394-based Digital Camera Specification (found at http://www.1394ta.org/). - Bu kütüphane IEEE 1394 tabanlı kameraların kontrolü için yüksek seviyeli bir arayüz oluşturur. - libdc1394 es una librería con intención de facilitar una interfaz de programación de alto nivel para programadores de aplicaciones, que desean controlar camaras basados en IEEE 1394, conforme la especificación de camaras digitales basados en 1394 (véase http://www.1394ta.org/). - https://sourceforge.net/projects/libdc1394/files/libdc1394-2/2.2.6/libdc1394-2.2.6.tar.gz - - libraw1394-devel - libusb-devel - - hardware/firewire/libdc1394/pspec.xml - - - libdc1394 - - libraw1394 - libusb - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libdc1394-devel - Development files for libdc1394 - libdc1394 için geliştirme dosyaları - - libdc1394 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 2.2.6 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 2.2.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.2.5 - Update. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-11-27 - 2.2.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-09-13 - 2.2.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libffado - http://www.ffado.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - hardware.firewire - Free firewire audio drivers - Ücretsiz firewire ses sürücüleri - libffado tries to provide open-source drivers for all FireWire based pro-audio devices. - libffado, firewire arabirimli profesyonel ses kartları için ücretsiz sürücü desteği sağlayan bir projedir. - http://www.ffado.org/files/libffado-2.4.4.tgz - - xdg-utils - glibmm-devel - libxmlpp-devel - alsa-lib-devel - dbus-c++-devel - libsigc++-devel - libconfig-devel - libraw1394-devel - libiec61883-devel - scons - doxygen - dbus-python - dbus-python3 - python-qt5-devel - python3-qt5-devel - jack-audio-connection-kit-devel - - hardware/firewire/libffado/pspec.xml - - - libffado - library - - glibmm - libgcc - dbus-c++ - libxmlpp - libconfig - libsigc++ - xdg-utils - libraw1394 - libiec61883 - python-setuptools - - - /usr/bin - /etc/dbus-1 - /usr/lib - /usr/share/locale - /lib/udev/rules.d - /usr/share/libffado - /usr/share/dbus-1 - /usr/share/man - /usr/share/doc - - - - libffado-devel - Development files for libffado - libffado için geliştirme dosyaları - library - - libffado - - - /usr/include - /usr/lib/pkgconfig - - - - ffado-mixer - Graphical User Interface for FFADO - FFADO için grafik arayüzü - app:gui - hardware.sound - ffado-mixer - - libffado - python-setuptools - - - /usr/bin/ffado-mixer* - /usr/share/applications - /usr/share/metainfo/ffado-mixer.appdata.xml - /usr/share/pixmaps - - - pisilinux-ffadomixer.desktop - - - - - 2021-10-22 - 2.4.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-19 - 2.4.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-22 - 2.4.2 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 2.4.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-22 - 2.4.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.3.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 2.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-28 - 2.2.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libiec61883 - http://www.linux1394.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - library - hardware.firewire - A library for capturing video (DV, MPEG2 or AMDTP) over the IEEE 1394 bus - IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane - Cette librairie fournit aux les médias de troisième génération la réception et la transmission pour DV, MPEG2-TS et AMDTP (audio et musique) en n'utilisant que raw1394 sans nécessiter une configuration et une maintenance compliquées d'autres modules du noyau et de leurs nodes dans /dev. - libiec61883 is a library providing third generation media reception and transmission for DV, MPEG2-TS, and AMDTP (audio and music) using only raw1394 and not the complicated setup and maintenance of other kernel modules and their /dev nodes. - IEEE 1394 veriyolundan video dosyalarını aktarmak için kullanılan bir kütüphane - La librería facilita recepción y transmisión de media de tercera generación para DV, MPEG2-TS, y AMDTP (audio y music), usando solamente la interfaz 1394 en crudo, sin configuración complicada y mantenimiento de otros módulos de kernel y nodos /dev correspondientes. - http://www.kernel.org/pub/linux/libs/ieee1394/libiec61883-1.2.0.tar.gz - - libraw1394-devel - - - libiec61883-1.2.0-installtests.patch - libiec61883-channel-allocation-without-local-node-rw.patch - - hardware/firewire/libiec61883/pspec.xml - - - libiec61883 - - libraw1394 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libiec61883-devel - Development files for libiec61883 - libiec61883 için geliştirme dosyaları - - libiec61883 - libraw1394-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-12 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 1.2.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - b43-firmware - http://linuxwireless.sipsolutions.net/en/users/Drivers/b43/ - - PisiLinux Community - admins@pisilinux.org - - freedist - data - hardware.firmware - Firmware for Broadcom B43 wireless network chips - Broadcom B43 kablosuz ağ çipleri için aygıt yazılımı - Firmware for Broadcom wireless network chips - Broadcom kablosuz ağ çipleri için aygıt yazılımı - http://mirror2.openwrt.org/sources/wl_apsta-3.130.20.0.o - http://www.lwfinger.com/b43-firmware/broadcom-wl-6.30.163.46.tar.bz2 - - b43-fwcutter - - hardware/firmware/b43-firmware/pspec.xml - - - b43-firmware - - /lib/firmware - - - - - 2020-02-01 - 6.30.163.46 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 6.30.163.46 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-19 - 6.30.163.46 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 5.100.138 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-17 - 5.100.138 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - b43-fwcutter - http://bu3sch.de/b43/fwcutter - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - hardware.firmware - Firmware Tool for Broadcom 43xx - Broadcom kablosuz sürücüleri için firmware üretme aracı - Firmware Tool for Broadcom 43xx based wireless network devices using the mac80211 wireless stack - b43-fwcutter Broadcom kablosuz sürücüleri için firmware üretmek için kullanılan basit bir araç içerir. - http://bues.ch/b43/fwcutter/b43-fwcutter-019.tar.bz2 - hardware/firmware/b43-fwcutter/pspec.xml - - - b43-fwcutter - - /usr/bin - /usr/share/doc - /usr/share/man/man1 - - - - - 2020-02-01 - 019 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-13 - 019 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 019 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 018 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-04 - 018 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - alsa-firmware - http://www.alsa-project.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv2+ - LGPLv2+ - BSD - data - hardware.firmware - firmware (logiciel interne) pour l'Architecture Son Linux Avancée (ALSA). - Firmware for several ALSA-supported sound cards - Çeşitli ALSA destekli ses kartları için firmware dosyaları - alsa-firmware contains the firmware binaries for a number of sound cards supported by the ALSA project. - alsa-firmware, ALSA sürücüleri tarafından desteklenen bazı ses kartları için gerekli firmware dosyalarını içerir. - ftp://ftp.alsa-project.org/pub/firmware/alsa-firmware-1.2.4.tar.bz2 - hardware/firmware/alsa-firmware/pspec.xml - - - alsa-firmware - - /usr/share/alsa/firmware - /lib/firmware - /usr/share/doc - - - - - 2021-09-21 - 1.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-17 - 1.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 1.0.29 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2017-02-18 - 1.0.29 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 1.0.29 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-03-04 - 1.0.29 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - irqbalance - https://github.com/Irqbalance/irqbalance - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - hardware.cpu - Distribute hardware interrupts across processors - Donanım kesmelerini işlemciler arasında dağıtır - Daemon to balance IRQs across multiple CPUs on systems.This can lead to better performance and I/O balance on SMP systems. - Birden fazla işlemcili sistemlerde donanım kesmelerini (hardware interrupt) işlemciler arasında dağıtarak dengeleme sağlayan artalan süreci. Bu SMP (simetrik çoklu işlemcili) sistemlerde daha iyi performans ve G/Ç dengesi sağlar. - https://github.com/Irqbalance/irqbalance/archive/v1.6.0.tar.gz - - numactl-devel - glib2-devel - libcap-ng-devel - ncurses-devel - - hardware/cpu/irqbalance/pspec.xml - - - irqbalance - - numactl - glib2 - libcap-ng - - - /etc - /usr/sbin - /usr/share/man - /usr/share/doc - - - System.Service - - - irqbalance.confd - - - - - 2020-02-01 - 1.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 1.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 1.2.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 1.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - intel-ucode - http://www.intel.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - hardware.cpu - Microcode update files for Intel CPUs - Intel işlemciler için microcode dosyaları - Microcode update files for Intel CPUs - Intel işlemciler için microcode dosyaları - https://github.com/intel/Intel-Linux-Processor-Microcode-Data-Files/archive/refs/tags/microcode-20220510.zip - - iucode-tool - - hardware/cpu/intel-ucode/pspec.xml - - - intel-ucode - - /usr/share/doc - /boot - - - LICENSE - - - - - 2022-05-16 - 20220510 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-26 - 20210216 - Rebuild - Berk Çakar - berk2238@hotmail.com - - - 2020-02-01 - 20180312 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 20180312 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-12 - 20180312 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 20171117 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-07 - 20161104 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 20140122 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-06 - 20140122 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - brltty - https://brltty.app/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - accessibility - Braille display driver for Linux/Unix - Braille display driver for Linux/Unix - https://brltty.app/archive/brltty-6.4.tar.xz - - gpm - bzip2 - tcl-devel - atk-devel - dbus-devel - polkit-devel - glib2-devel - icu4c-devel - expat-devel - libXt-devel - libX11-devel - espeak-devel - espeak-ng-devel - cython - cython3 - elogind-devel - polkit-devel - python3-devel - ncurses-devel - libpcre2-devel - alsa-lib-devel - libXaw-devel - libXtst-devel - liblouis-devel - bluez-libs-devel - at-spi2-atk-devel - at-spi2-core-devel - speech-dispatcher-devel - - accessibility/brltty/pspec.xml - - - brltty - - gpm - tcl - expat - dbus - bzip2 - glib2 - polkit - icu4c - ncurses - libXt - libX11 - espeak - espeak-ng - libXaw - libXtst - libpcre2 - alsa-lib - liblouis - libXfixes - bluez-libs - at-spi2-core - speech-dispatcher - - - /etc - /usr/bin - /usr/libexec/brltty/udev-wrapper - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - - brltty-devel - Development files for brltty - - brltty - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-25 - 6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-21 - 6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-12 - 6.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 6.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-21 - 5.6 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-23 - 5.6 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-06 - 5.6 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - liblouis - http://liblouis.org/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - accessibility - Open-source braille translator and back-translator - Open-source braille translator and back-translator - https://github.com/liblouis/liblouis/releases/download/v3.19.0/liblouis-3.19.0.tar.gz - - python3-devel - libyaml-devel - - accessibility/liblouis/pspec.xml - - - liblouis - - libyaml - - - /etc - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share - - - - liblouis-devel - Development files for liblouis - - liblouis - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-25 - 3.19.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-02 - 3.17.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 3.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-20 - 3.9.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-23 - 3.7.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-11 - 3.5.0 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-06 - 3.5.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-05-06 - 3.5.0 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - orca - https://wiki.gnome.org/Projects/Orca - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2 - accessibility - Extensible screen reader that provides access to the desktop - Extensible screen reader that provides access to the desktop. - https://download.gnome.org/sources/orca/42/orca-42.1.tar.xz - - itstool - intltool - gtk3-devel - brltty-devel - python3-devel - liblouis-devel - gst-plugins-good - at-spi2-core-devel - python3-pygobject3-devel - gst-plugins-base-devel - gsettings-desktop-schemas-devel - xorg-app - python3-pyatspi - yelp-tools - dbus-python3 - speech-dispatcher-devel - python3-speech-dispatcher - - accessibility/orca/pspec.xml - - - orca - - gtk3 - brltty - liblouis - at-spi2-core - python3-pyatspi - gst-plugins-base - python3-speech-dispatcher - gsettings-desktop-schemas - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man/man1 - /etc - - - - - 2022-05-17 - 42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-31 - 41.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-02 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 41.0 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-04 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-24 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-02 - 3.38.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-12 - 3.35.92 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 3.35.92 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 3.34.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-22 - 3.29.92 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-23 - 3.29.92 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-11 - 3.28.1 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-05-06 - 3.28.1 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - onboard - https://launchpad.net/onboard - - Berk Çakar - berk2238@hotmail.com - - GPLv3 - accessibility - On-screen keyboard useful on tablet PCs or for mobility impaired users - On-screen keyboard useful on tablet PCs or for mobility impaired users - https://launchpad.net/onboard/1.4/1.4.1/+download/onboard-1.4.1.tar.gz - - intltool - eudev-devel - python3-devel - libXtst-devel - dconf-devel - dbus-python - gtk3-devel - hunspell-devel - iso-codes-devel - libcanberra-devel - libxkbfile-devel - python-cairo-devel - python-pygobject-devel - python3-distutils-extra - - - 00-Fix-build-with-musl.patch - - accessibility/onboard/pspec.xml - - - onboard - On-screen keyboard useful on tablet PCs or for mobility impaired users - - gtk3 - cairo - dconf - eudev - glib2 - libXi - libX11 - libgcc - libXtst - libxkbfile - libcanberra - hunspell - - - /etc - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/dbus-1 - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/gnome-shell - /usr/share/help - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/onboard - /usr/share/sounds - - - - - 2021-10-25 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-25 - 1.4.1 - First release. - Berk Çakar - berk2238@hotmail.com - - - - - - xarchiver - https://github.com/ib/xarchiver - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - util.archive - A lightweight GTK+3 archiving/compression tool(continuation of the Xfce master branch). - GTK+3 tabanlı hafif ve sade bir arşiv yöneticisi - GTK+3 frontend to 7z, zip, rar, tar, bzip2, gzip, arj, lha, rpm and deb(open and extract only). Xarchiver allows you to create, add, extract and delete files in the above formats. 7z, zip, rar, arj password protected archives are supported. - Xarchiver, 7z, zip, rar, tar, bzip2, gzip, arj, lha, rpm ve deb için GTK+3 tabanlı bir uygulamadır. Bu formatlarda arşivleme, ekleme, çıkarma ve silme işlemlerini yapabilir. Ayrıca parola korumalı 7z, zip, rar ve arj dosyalarını da destekler. - https://github.com/ib/xarchiver/archive/0.5.4.17.tar.gz - - intltool - gtk3-devel - glib2-devel - pango-devel - docbook-xsl - libxslt-devel - gdk-pixbuf-devel - - util/archive/xarchiver/pspec.xml - - - xarchiver - - rar - gtk3 - lzip - bzip2 - p7zip - unrar - pango - libzip - libxslt - xdg-utils - gdk-pixbuf - libarchive - - - /usr/bin - /usr/lib/xfce4/thunar-archive-plugin/xarchiver.tap - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps/xarchiver - /usr/share/doc/xarchiver/images - /usr/share/locale - /usr/share/man/man1 - /usr/share/doc/xarchiver - - - - - 2021-01-25 - 0.5.4.17 - Version bump - Pisi Linux Admins - admin@pisilinux.org - - - 2020-12-13 - 0.5.4.16 - Version Bump - Pisi Linux Admins - admin@pisilinux.org - - 2020-06-01 - 0.5.4.15 - Version Bump - Pisi Linux Admins - admin@pisilinux.org - - - 2020-04-28 - 0.5.4.14 - First Release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libtar - https://directory.fsf.org/wiki/Libtar - - PisiLinux Community - admins@pisilinux.org - - as-is - library - util.archive - tar file manipulation API - tar dosyalarını işlemek için bir API - libtar is a C library for manipulating POSIX tar files. It handles adding and extracting files to/from a tar archive. - libtar, POSIX tar dosyalarını işlemek için yazılmış bir C kütüphanesidir. - https://github.com/tklauser/libtar/archive/9c2e044833c5e908f5be0a77991b08849021793e.tar.gz - - zlib-devel - - util/archive/libtar/pspec.xml - - - libtar - - zlib - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libtar-devel - Development files for libtar - libtar için geliştirme dosyaları - - libtar - - - /usr/include - /usr/share/man/man3 - - - - - 2020-02-19 - 1.2.20 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-07 - 1.2.20 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-02-02 - 1.2.20 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 1.2.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-20 - 1.2.20 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - xorriso - https://www.gnu.org/software/xorriso/ - - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - GPLv3 - app:console - util.archive - ISO 9660 image manipulation tool - ISO 9660 imaj manipülasyon aracı - xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. - xorriso, POSIX uyumlu dosya sistemlerini Rock Ridge tarafından geliştirilmişs ISO 9660 dosya sistemlerine haritalar ve oturum boyunca bu tür dosya sistemlerinin manipüle edilmesine/değiştirilmesine izin verir. xorriso ISO 9660 dosya sistemlerinden dosya nesnelerini geri yükleyebilir eski haline getirebilir. - xorriso - http://www.gnu.org/software/xorriso/xorriso-1.5.4.pl02.tar.gz - - acl-devel - attr-devel - zlib-devel - libedit-devel - readline-devel - - util/archive/xorriso/pspec.xml - - - xorriso - - acl - attr - zlib - bzip2 - libedit - readline - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/info - /usr/share/doc - - - - - 2021-08-11 - 1.5.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-04-27 - 1.5.2 - First release - Erkan IŞIK - erkanisik@pisilinux.org - - - - - - zopfli - https://github.com/google/zopfli - - fury - uglyside@yandex.ru - - Apache-2 - app:console - util.archive - Compression algorithm. - Zopfli Compression Algorithm is a compression library programmed in C to perform very good, but slow, deflate or zlib compression. - https://github.com/google/zopfli/archive/zopfli-1.0.3.tar.gz - - cmake - - util/archive/zopfli/pspec.xml - - - zopfli - - /usr/bin - /usr/lib/cmake - /usr/lib - /usr/include - /usr/share/doc - - - - - 2020-01-01 - 1.0.3 - First build. - fury - uglyside@yandex.ru - - - - - - p7zip - https://github.com/jinfeihan57/p7zip - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - util.archive - Port of 7-Zip archiver for *nix - 7-zip arşivleme programı - p7zip is a port of 7-Zip archiver for Unix. Supports packing-unpacking 7z, ZIP, GZIP, BZIP2 and TAR archives and unpacking RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB and NSIS arhives. - 7-zip arşivleme programı. 7z, ZIP, GZIP, BZIP2 ve TAR arşivleri oluşturabilir ve açabilir; RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB ve NSIS arşivlerini ise açabilir. - https://github.com/jinfeihan57/p7zip/archive/v17.04.tar.gz - - yasm-devel - - util/archive/p7zip/pspec.xml - - - p7zip - - libgcc - - - /usr/bin - /usr/lib/p7zip - /usr/lib/p7zip/Codecs - /usr/share/doc - /usr/share/man - - - - - 2021-04-26 - 17.04 + 5.6.15 Version bump. - fury - uglyside@yandex.ru - - - 2021-03-13 - 17.03 - Version bump. - fury - uglyside@yandex.ru - - - 2020-02-19 - 16.02 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-13 - 16.02 - Rebuild - fury - uglyside@yandex.ru - - - 2018-08-10 - 16.02 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 16.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 15.09 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 15.09 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - zstd - https://www.zstd.net/ - - PisiLinux Community - admins@pisilinux.org - - GPL2 - app:console - util.archive - Zstandard - Fast real-time compression algorithm - Zstandard - Fast real-time compression algorithm - Zstandard - Fast real-time compression algorithm - Zstandard - Fast real-time compression algorithm - https://github.com/facebook/zstd/releases/download/v1.5.0/zstd-1.5.0.tar.gz - - libgcc - xz-devel - zlib-devel - - util/archive/zstd/pspec.xml - - - zstd - - xz - zlib - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - zstd-devel - Development files for zstd - - zstd - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-21 - 1.5.0 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2020-02-14 - 1.4.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - upx - http://upx.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPL - app:console - util.archive - Ultimate executable compressor. - UPX (Ultimate executable compressor), bir dosya sıkıştırıcısı - UPX is an advanced executable file compressor. UPX will typically reduce the file size of programs and DLLs by around 50%-70%, thus reducing disk space, network load times, download times and other distribution and storage costs. - UPX ileri düzey bir çalıştırılabilir dosya sıkıştırıcısıdır. UPX genel olarak programların ve kitaplıkların dosya boyutunu %50 ila %70 oranında sıkıştırarak disk kullanım alanını, ağa yüklenme ve indirme süresini düşürür. - http://upx.sourceforge.net/download/upx-3.95-src.tar.xz - http://downloads.sourceforge.net/sevenzip/lzma465.tar.bz2 - - ucl-devel - zlib-devel - - util/archive/upx/pspec.xml - - - upx - Ultimate executable compressor. - - ucl - - - /usr/bin - /usr/share/doc - /usr/share/man/man1 - - - - - 2020-02-19 - 3.95 - Ver. bump - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-10 - 3.94 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 3.94 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-17 - 3.91 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 3.91 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-03 - 3.91 - First Pisi Release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - gnome-autoar - https://gitlab.gnome.org/GNOME/gnome-autoar - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - util.archive - Archive framework for GNOME - gnome-autoar provides functions and widgets for GNOME applications which want to use archives as a method to transfer directories over the Internet. - https://download.gnome.org/sources/gnome-autoar/0.4/gnome-autoar-0.4.3.tar.xz - - meson - gtk-doc - gtk3-devel - vala-devel - libarchive-devel - glib2-devel - gobject-introspection-devel - - util/archive/gnome-autoar/pspec.xml - - - gnome-autoar - - gtk3 - glib2 - libarchive - - - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/share/doc - - - - gnome-autoar-devel - - gnome-autoar - gtk3-devel - glib2-devel - libarchive-devel - - - /usr/lib/pkgconfig - /usr/include - /usr/share/gir-1.0 - /usr/share/vala - - - - gnome-autoar-docs - Development files for gnome-autoar - - gnome-autoar - - - /usr/share/gtk-doc - - - - - 2022-02-11 - 0.4.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-07 - 0.4.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-30 - 0.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-11 - 0.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 0.3.2 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - rar - http://www.rarlab.com - - PisiLinux Community - admins@pisilinux.org - - RAR - app:console - util.archive - RAR compressor - RAR sıkıştırıcı - rar is an compressor supporting multiple volume archives and damage protection. It can also create SFX-archives. This program is shareware and you must register it after 40 days of use. - rar, çoklu arşivleri ve hasar korumayı destekleyen bir sıkıştırıcıdır. rar aynı zamanda SFX arşivleri de yaratabilir. Bu uygulama ücretli olup 40 günlük kullanımdan sonra kayıt olunması gerekmektedir. - http://www.rarlab.com/rar/rarlinux-5.8.0.tar.gz - http://www.rarlab.com/rar/rarlinux-x64-5.5.0.tar.gz - util/archive/rar/pspec.xml - - - rar - - libgcc - - - /usr/bin - /opt/rar/bin - /opt/rar/lib - /opt/rar/etc - /usr/share/doc/rar - - - - - 2020-02-19 - 5.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 5.5.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 5.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 5.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 5.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-01 - 5.3.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - zziplib - https://github.com/gdraheim/zziplib - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - MPL-1.1 - ZLIB - app:console - library - util.archive - libZ-based ZIP-access Library. - libZ tabanlı ZIP erişim kitaplığı - The ZZIPlib provides read access on ZIP-archives and unpacked data. It features an additional simplified API following the standard Posix API for file access. - zziplib zip arşivindeki sıkıştırılmış dosyalara, zlib tarafından sunulan özgür algoritmalarla erişim sağlayan bir kitaplıktır. - https://github.com/gdraheim/zziplib/archive/v0.13.72.tar.gz - - cmake - xmlto - ninja - zlib-devel - aalib-devel - docbook-xsl - docbook-xml - python3-six - python3-devel - libxslt-devel - libsdl2-devel - - util/archive/zziplib/pspec.xml - - - zziplib - - zlib - - - /usr/bin - /usr/lib - /usr/share/man/man3 - /usr/share/doc - - - - zziplib-devel - Development files for zziplib - zziplib için geliştirme dosyaları - - zziplib - libsdl2-devel - zlib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2021-01-21 - 0.13.72 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-06-23 - 0.13.71 - Ver. bump - fury - uglyside@yandex.ru - - - 2019-10-31 - 0.13.68 - Ver. bump - fury - uglyside@yandex.ru - - - 2016-04-04 - 0.13.62 - Rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2013-01-16 - 0.13.62 - Rebuild for 1.0 - Richard de Bruin - richdb@pisilinux.org - - - 2012-11-03 - 0.13.62 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - ucl - http://www.oberhumer.com/opensource/ucl/ - - PisiLinux Community - admins@pisilinux.org - - GPL - library - util.archive - Portable lossless data compression library written in ANSI C. - ANSI C ile yazılmış bir kayıpsız veri sıkıştırma kitaplığı. - UCL implements a number of compression algorithms that achieve an excellent compression ratio while allowing *very* fast decompression. Decompression requires no additional memory. - UCL kitaplığı sıkıştırılmış veriyi çok hızlı çözerken, yüksek oranda veri sıkıştırması da yapabilen birçok sıkıştırma algoritması içerir. Sıkıştırılmış veriyi açmak ek bellek alanı gerektirmemektedir. - http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz - util/archive/ucl/pspec.xml - - - ucl - - /usr/lib - /usr/share/doc - - - - ucl-devel - - ucl - - - /usr/include - - - - - 2020-01-10 - 1.03 - Rebuild for the new toolchain - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-10 - 1.03 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-07 - 1.03 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 1.03 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-03 - 1.03 - First pisi Release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - cabextract - https://www.cabextract.org.uk/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.archive - A program to extract from Microsoft Cabinet files - Microsoft Cabinet dosyalarını açan bir program - cabextract is a program to extract files from Microsoft Cabinet files. - cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. - http://www.cabextract.org.uk/cabextract-1.9.1.tar.gz - util/archive/cabextract/pspec.xml - - - cabextract - - /usr/bin - /usr/share/man - - - - - 2020-02-19 - 1.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 1.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 1.6 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-23 - 1.6 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - lzip - https://www.nongnu.org/lzip/lzip.html - - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - GPLv2 - app:console - util.archive - Lzip is a lossless data (de)compressor - Veri kayıpsız bir veri sıkıştırma, geri açma aracı - Lzip is a lossless data compressor with a user interface similar to the one of gzip or bzip2. Lzip is about as fast as gzip, compresses most files more than bzip2, and is better than both from a data recovery perspective. - Lzip, gzip ve bzip2 benzeri veri kayıpsız sıkıştırma yapabilen bir araçtır. Lzip gzip kadar hızlı, bzip2'den daha iyi şıkıştırm oranına sahip ve görece her iki uygulamadan daha iyi bir sıkıştırma aracıdır. - http://download.savannah.nongnu.org/releases/lzip/lzip-1.21.tar.gz - util/archive/lzip/pspec.xml - - - lzip - - libgcc - - - /usr/bin - /usr/share/info - /usr/share/doc - /usr/share/man - - - - - 2019-07-04 - 1.21 - Ver. bump - fury - uglyside@yandex.ru - - - 2016-04-23 - 1.17 - First Pisi Release - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - - - - gcap - https://wiki.gnome.org/msitools - - Ertuğrul Erata - ertugrulerata@gmail.com - - LGPL2.1 - app:console - util.archive - Library and tool for working with Microsoft Cabinet (CAB) files - Library and tool for working with Microsoft Cabinet (CAB) files - http://ftp.gnome.org/pub/GNOME/sources/gcab/1.4/gcab-1.4.tar.xz - - python-six - glib2-devel - vala-devel - zlib-devel - intltool - gtk-doc - gobject-introspection-devel - meson - docbook-xsl - - util/archive/gcap/pspec.xml - - - gcap - - zlib - glib2 - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/gtk-doc - /usr/share/doc - /usr/share/man - /usr/share/gir-1.0/GCab-1.0.gir - /usr/share/vala - - - - gcap-devel - - gcap - zlib-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-02 - 1.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-10 - 0.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-10 - 0.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - lzop - http://www.lzop.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - util.archive - File compressor using lzo lib - File compressor using lzo lib - File compressor using lzo lib - File compressor using lzo lib - http://www.lzop.org/download/lzop-1.04.tar.gz - - lzo-devel - - util/archive/lzop/pspec.xml - - - lzop - - lzo - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2020-02-19 - 1.04 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libzip - http://www.nih.at/libzip/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - util.archive - A C library for reading, creating, and modifying zip archives - Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı - libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. - libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. - https://libzip.org/download/libzip-1.6.1.tar.xz - - openssl-devel - zlib-devel - bzip2 - cmake - - util/archive/libzip/pspec.xml - - - libzip - - zlib - bzip2 - openssl - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libzip-devel - Development files for libzip - libzip için geliştirme dosyaları - - zlib-devel - libzip - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-02-07 - 1.6.1 - Version bump - İdris Kalp + Idris Kalp idriskalp@gmail.com + + 2020-05-04 + 5.6.10 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-04-13 + 5.6.4 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-01-30 + 5.4.16 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-06-09 + 4.19.49 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-04-06 + 4.19.34 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-22 + 4.14.90 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-06 + 4.14.73 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-04 + 4.14.61 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-07-13 + 4.14.55 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-11 + 4.9.86 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-03 + 4.9.80 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-01-06 + 4.9.75 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-12-20 + 4.9.70 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2018-08-09 - 1.5.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2017-12-07 + 4.9.66 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com - 2018-04-25 - 1.5.1 + 2017-11-19 + 4.9.63 Version bump - Mustafa Cinasal - muscnsl@gmail.com + Ertuğrul Erata + ertugrulerata@gmail.com - 2017-12-24 - 1.3.2 + 2016-07-13 + 4.7.0 Version bump - Mustafa Cinasal - muscnsl@gmail.com + Ertuğrul Erata + ertugrulerata@gmail.com - 2017-01-25 - 1.1.3 - Version bump. - Stefan Gronewold - groni@pisilinux.org + 2016-07-13 + 4.6.3 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com - 2016-06-08 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-02 + 4.4.8 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com - 2015-07-28 - 1.0.1 + 2016-03-06 + 4.4.4 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -275413,1413 +197877,258 @@ from a wide variety of machine architectures. - quazip - https://stachenov.github.io/quazip/ + avidemux + http://www.avidemux.org/ PisiLinux Community admins@pisilinux.org GPLv2 - LGPLv2 - library - app:console - util.archive - QuaZIP - Qt/C++ wrapper for Minizip - QuaZIP - Minizip için Qt / C ++ sarıcı - QuaZIP is the C++ wrapper for Gilles Vollant's ZIP/UNZIP package (AKA Minizip) using Trolltech's Qt library. - QuaZIP, Gilles Vollant'ın ZIP / UNZIP paketi (AKA Minizip) için Trolltech'in Qt kütüphanesini kullanan C ++ paketleyicisidir. - https://github.com/stachenov/quazip/archive/v0.8.1.tar.gz - - qt5-base-devel - zlib-devel - cmake - - util/archive/quazip/pspec.xml - - - quazip - - qt5-base - zlib - libgcc - - - /usr/lib - /usr/share/doc - /usr/share/cmake/Modules/FindQuaZip5.cmake - - - - quazip-devel - Development files for quazip - quazip paketi için geliştirme dosyaları - - quazip - - - /usr/include - - - - - 2020-02-12 - 0.8.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-10 - 0.7.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 0.7.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 0.7.2 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 0.7.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-22 - 0.7.2 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - brotli - https://github.com/google/brotli - - Blue Devil - bluedevil@sctzine.com - - MIT - library - app:console - util.archive - Brotli compression format. - Brotli sıkıştırma biçemi. - Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. - Brotli, hali hazırda bulanan sıkıştırma biçemleri arasında LZ77 algoritmasının bir türünü, Huffman kodlamasını ve ikinci sıralamalı içerik modellemesini, en iyi sıkıştırma oranıyla kullanan google tarafından geliştirilen bir sıkıştırma aracıdır. - https://github.com/google/brotli/archive/v1.0.7.tar.gz - - python3-setuptools - python3-devel - cmake - - util/archive/brotli/pspec.xml - - - brotli - Brotli compression format. - util.archive - - /usr/bin - /usr/lib - /usr/share/doc/brotli - - - - brotli-devel - Development files for brotli. - brotli için geliştirme dosyaları - brotli-devel, brotli için geliştirme dosyalarını içerir. - util.archive - - brotli - - - /usr/include - /usr/lib/pkgconfig - - - - python3-brotli - Python bindings for brotli compression format. - programming.language.python3 - - python3 - - - /usr/lib/python3* - /usr/share/doc/python3-brotli - - - - - 2020-05-16 - 1.0.7 - First release. - Blue Devil - bluedevil@sctzine.com - - - - - - unrar - http://www.rarsoft.com/rar_add.htm - - PisiLinux Community - admins@pisilinux.org - - unRAR - app:console - util.archive - RAR decompressor - RAR açma uygulaması - unrar is a program to decompress RAR archives. - Unrar, RAR biçimli sıkıştırılmış dosyaları açar. - http://www.rarlab.com/rar/unrarsrc-5.9.1.tar.gz - - unrar-5.5.5-build.patch - unrar-5.5.5-honor-flags.patch - - util/archive/unrar/pspec.xml - - - unrar - - libgcc - - - /usr/bin - /usr/lib - /usr/include - /usr/share/doc - - - - - 2020-02-19 - 5.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 5.5.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 5.5.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 5.4.5 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 5.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 5.3.4 - First release - yusuf Aydemir - yuısuf.aydemir@pisilinux.org - - - - - - areca - http://www.areca-backup.org/ - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 app:gui - util.archive - Easy to use and reliable backup solution for Linux. - Easy to use and reliable backup solution for Linux. - Areca Backup is very versatile and as simple as possible. - Areca Backup is very versatile and as simple as possible. - areca - mirrors://sourceforge/areca/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz - util/archive/areca/pspec.xml - - - areca - - acl - - - /usr/bin/ - /usr/share/applications - /usr/share/pixmaps - /opt/areca/ - /usr - - - areca - areca.desktop - areca.png - - - - - 2021-03-10 - 7.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-19 - 7.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 7.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-02 - 7.5 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 7.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-23 - 7.5 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - clamav - http://www.clamav.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - service - library app:console - util.antivirus - Clam Antivirus software - Clam antivirüs programı - Clam AntiVirus is a GPL anti-virus toolkit for UNIX. - Clam antivirus Unix sistemler için açık kaynak kodlu antivirus aracıdır. - https://www.clamav.net/downloads/production/clamav-0.103.0.tar.gz - - libxml2-devel - libpcre2-devel - curl-devel - zlib-devel - json-c-devel - ncurses-devel - openssl-devel - - util/antivirus/clamav/pspec.xml - - - clamav - - libxml2 - bzip2 - libgcc - libtool-ltdl - libpcre2 - curl - zlib - json-c - ncurses - openssl - - - /usr/bin - /usr/sbin - /etc - /usr/lib/tmpfiles.d/clamav.conf - /usr/lib - /lib/udev/rules.d - /var/lib/clamav - /run/clamav - /var/log - /usr/share/doc - /usr/share/man - - - System.Package - System.Service - - - clamav.conf - clamd.conf - freshclam.conf - clamav-milter.conf - - - - clamav-devel - Development headers for Clamav - Clam antivirüs programı için başlık dosyaları - clamav-devel Clam antivirüs programı için başlık dosyalarını içerir. - library - - clamav - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-01-31 - 0.103.0 - Version Bump - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2019-01-13 - 0.101.1 - Version Bump - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2018-11-30 - 0.100.2 - First rRelease. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - clamav-gui - - Ali Cengiz Kurt - alicengizkurt@gmail.com - - GPLv3+ - GPL3 - app:gui - util.antivirus - ClamAV-Gui. - ClamAV-Gui is a graphical interface for ClamAV antivirus software - https://sourceforge.net/projects/pisilinux/files/source/ClamAV-GUI-0.4.2.tgz/download - - clamav-devel - qt5-base-devel - - - qt5.patch - - util/antivirus/clamav-gui/pspec.xml - - - clamav-gui - clamav-gui - - clamav - qt5-base - libgcc - - - /usr/bin - /usr/share/icons - /usr/share/applications - /usr/share/doc - /usr/share/man - /usr/share/clamav-gui - - - - - 2021-01-31 - 0.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-01 - 0.4.1 - First Release - Ali Cengiz Kurt(alick01) - alicengizkurt@gmail.com - - - - - - nnn - https://github.com/jarun/nnn - - fury - uglyside@yandex.ru - - BSD-2-Clause - app:console - util.misc - n³ The unorthodox terminal file manager. - nnn (n³) is a full-featured terminal file manager. It's tiny, nearly 0-config and incredibly fast. - https://github.com/jarun/nnn/releases/download/v4.5/nnn-v4.5.tar.gz - - gcc - ncurses-devel - libpcre-devel - readline-devel - - util/misc/nnn/pspec.xml - - - nnn - - ncurses - readline - - - /usr/bin/nnn - /usr/share/ - /usr/share/man/man1 - - - - - 2022-05-28 - 4.5 - Version bump. - fury - uglyside@yandex.ru - - - 2022-04-14 - 4.1 - First build. - fury - uglyside@yandex.ru - - - - - - lf - https://godoc.org/github.com/gokcehan/lf - - fury - uglyside@yandex.ru - - MIT - app:console - util.misc - Terminal file manager. - lf (as in "list files") is a terminal file manager written in Go. It is heavily inspired by ranger with some missing and extra features. - https://github.com/gokcehan/lf/archive/refs/tags/r27.tar.gz - - golang - - util/misc/lf/pspec.xml - - - lf - - /usr/bin - /usr/share/applications - /usr/share/man/man1/lf.1 - /usr/share/doc - - - - - 2022-04-14 - 27 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-01 - 26 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-13 - 25 - First build - fury - uglyside@yandex.ru - - - - - - tracker-miners - https://gitlab.gnome.org/GNOME/tracker-miners - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - util.misc - Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes. - Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes. - https://download.gnome.org/sources/tracker-miners/3.3/tracker-miners-3.3.1.tar.xz - - gettext-devel - glib2-devel - meson - intltool - asciidoc - tracker-devel - desktop-file-utils - ffmpeg-devel - exempi-devel - flac-devel - libgexiv2-devel - gstreamer-devel - libcue-devel - libexif-devel - libgsf-devel - libgxps-devel - libiptcdata-devel - libjpeg-turbo-devel - libosinfo-devel - libpng-devel - libseccomp-devel - tiff-devel - libxml2-devel - libvorbis-devel - poppler-glib-devel - taglib-devel - totem-pl-parser-devel - upower-devel - zlib-devel - gst-plugins-base-devel - giflib-devel - NetworkManager-devel - harfbuzz-devel - - util/misc/tracker-miners/pspec.xml - - - tracker-miners - - tiff - glib2 - icu4c - exempi - giflib - libgsf - libpng - upower - libexif - libgxps - libxml2 - tracker - gstreamer - libgexiv2 - libosinfo - libseccomp - libiptcdata - poppler-glib - libjpeg-turbo - NetworkManager - totem-pl-parser - gst-plugins-base - - - /etc/xdg - /usr/bin - /usr/lib - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/glib-2.0 - /usr/share/tracker3-miners - /usr/share/bash-completion - /usr/share/dbus-1 - - - - - 2022-06-01 - 3.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 3.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 3.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 3.1.1 - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - zsync - http://zsync.moria.org.uk/ - - PisiLinux Community - admins@pisilinux.org - - Artistic - app:console - util.misc - A file transfer program that's able to connect to rsync servers - A file transfer program that's able to connect to rsync servers - http://zsync.moria.org.uk/download/zsync-0.6.2.tar.bz2 - util/misc/zsync/pspec.xml - - - zsync - - glibc - - - /usr/bin - /usr/share/man/man1 - /usr/share/doc - - - - - 2021-11-18 - 0.6.2 - First release. - Erkan IŞIK - erkanisik@pisilinux.org - - - - - - qdirstat - https://github.com/shundhammer/qdirstat - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - app:gui - util.misc - QDirStat is a graphical application to show where your disk space has gone and to help you to clean it up. - QDirStat is a graphical application to show where your disk space has gone and to help you to clean it up. - This is a Qt-only port of the old Qt3/KDE3-based KDirStat, now based on the latest Qt 5. It does not need any KDE libs or infrastructure. It runs on every X11-based desktop on Linux. - This is a Qt-only port of the old Qt3/KDE3-based KDirStat, now based on the latest Qt 5. It does not need any KDE libs or infrastructure. It runs on every X11-based desktop on Linux, - https://github.com/shundhammer/qdirstat/archive/1.4.tar.gz + multimedia.converter + Simple video editing/encoding tool + Basit bir video düzenleme/kodlama aracı + Avidemux is a video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities. + Avidemux basit kesme, filtreleme ve kodlama işlemleri için tasarlanmış bir video editörüdür. AVI, DVD uyumlu MPEG, MP4 ve ASF de dahil olmak üzere birçok dosya tipi destekliyor. Projeler, iş kuyruğu ve güçlü betik yetenekleri ile birçok işlem otomatikleştirilebiliyor. + avidemux + mirrors://sourceforge/avidemux/avidemux_2.8.0.tar.gz qt5-base-devel qt5-assistant-devel qt5-designer-devel qt5-linguist qt5-qdbusviewer - zlib-devel + qt5-multimedia-devel + bash + make + automake + aom-devel + extra-cmake-modules + freetype-devel + lame-devel + xvid-devel + gtk3-devel + mesa-devel + faac-devel + cairo-devel + libva-devel + libXv-devel + ffmpeg-devel + faad2-devel + libvpx-devel + libdca-devel + libsdl-devel desktop-file-utils - xdg-utils - - util/misc/qdirstat/pspec.xml - - - qdirstat - - zlib - libgcc - qt5-base - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2018-08-10 - 1.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-08-04 - 1.0 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - patchutils - http://cyberelk.net/tim/patchutils/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - util.misc - A small collection of programs that operate on patch files - A small collection of programs that operate on patch files - Yama dosyalarında çalışan küçük bir program koleksiyonu - Yama dosyalarında çalışan küçük bir program koleksiyonu - http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.4.2.tar.xz - - xmlto - python3-devel - libpcre2-devel - - util/misc/patchutils/pspec.xml - - - patchutils - - libpcre2 - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2021-11-10 - 0.4.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - pugixml - http://pugixml.org - - Stefan Gronewold - groni@pisilinux.org - - MIT - util.misc - Light-weight, simple and fast XML parser for C++ with XPath support - Light-weight, simple and fast XML parser for C++ with XPath support - https://github.com/zeux/pugixml/archive/v1.11.4.tar.gz - - cmake - - util/misc/pugixml/pspec.xml - - - pugixml - - libgcc - - - /usr/lib - - - - pugixml-devel - Development header for pugixml - - pugixml - - - /usr/include - /usr/lib/cmake - - - - - 2021-03-10 - 1.11.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 1.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 1.9 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.8.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-12 - 1.7 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - tree - http://mama.indstate.edu/users/ice/tree/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - Recursive directory listing tool - Dizin listeleme aracı - Tree lists directories recursively, and produces an indented listing of files. - Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir. - https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/tree/1.7.0-5/tree_1.7.0.orig.tar.gz - util/misc/tree/pspec.xml - - - tree - - /usr/bin - /usr/share/bash-completion - /usr/share/doc - /usr/share/man - - - tree.bashcomp - - - - - 2018-08-10 - 1.7.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-20 - 1.7.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-08 - 1.7.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 1.7.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - tracker - https://gitlab.gnome.org/GNOME/tracker - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - util.misc - Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. - Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. - https://download.gnome.org/sources/tracker/3.2/tracker-3.2.1.tar.xz - - meson + libX11-devel gettext-devel - glib2-devel - vala-devel - asciidoc - dbus-devel - icu4c-devel - json-glib-devel - libsoup-devel - libsoup3-devel - libxml2-devel + yasm-devel + xvid-devel sqlite-devel - NetworkManager-devel - bash-completion - gobject-introspection-devel + libopus-devel libxslt-devel - python3-pygobject3-devel + libsamplerate-devel + intltool + lame-devel + libass-devel + x264-devel + x265-devel + libvdpau-devel + yasm-devel + mesa-glu-devel + xvba-video + twolame-devel + libXext-devel + fribidi-devel + alsa-lib-devel + libvorbis-devel + fontconfig-devel + opencore-amr-devel + libfdk-aac-devel + pulseaudio-libs-devel + jack-audio-connection-kit-devel - tracker-3.1.1-Fix-asciidoc-manpage.xsl-location.patch + log.diff + qt-5.15.diff - util/misc/tracker/pspec.xml + multimedia/converter/avidemux/pspec.xml - tracker - - glib2 - icu4c - sqlite - libsoup - libsoup3 - libxml2 - json-glib - - - /usr/bin - /usr/lib/girepository-1.0 - /usr/lib/lib*.so* - /usr/lib/tracker* - /usr/libexec - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/share/tracker3 - /usr/share/bash-completion - /usr/share/dbus-1 - - - - tracker-devel - - tracker - glib2-devel - icu4c-devel - sqlite-devel - libxml2-devel - libsoup-devel - json-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - - 2021-10-31 - 3.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-15 - 3.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 3.1.1 - First release for Pisi Linux. - Berk Çakar - berk2238@hotmail.com - - - - - - krusader - http://krusader.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - util.misc - Advanced KDE twin-panel(commander-style) file-manager - Krusader is an advanced twin panel (commander style) file manager for KDE and other desktops in the *nix world, similar to Midnight or Total Commander.. - krusader - http://kde.mirrors.omnilance.com/stable/krusader/2.7.1/krusader-2.7.1.tar.xz - - qt5-base-devel - qt5-qdbusviewer - qt5-xmlpatterns-devel - kparts-devel - kwallet-devel - kxmlgui-devel - kguiaddons-devel - zlib-devel - plasma-framework-devel - kdoctools-devel - extra-cmake-modules - karchive-devel - kbookmarks-devel - kcodecs-devel - kcompletion-devel - kcoreaddons-devel - kconfig-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kio-devel - knotifications-devel - solid-devel - ktextwidgets-devel - kwidgetsaddons-devel - kwindowsystem-devel - kservice-devel - kjobwidgets-devel - kconfigwidgets-devel - cmake - - util/misc/krusader/pspec.xml - - - krusader + avidemux-common + Common files for avidemux qt5-base - kparts - kwallet - kguiaddons - kxmlgui + aom + lame + xvid + faac + ffmpeg + faad2 + libva + libvpx + libdca + desktop-file-utils + x264 + x265 + libvdpau + yasm + mesa-glu + xvba-video + mesa + libglvnd zlib - plasma-framework - kdoctools - karchive - kbookmarks - kcodecs - kcompletion - kcoreaddons - kconfig - ki18n - kiconthemes - kitemviews - kio - knotifications - solid - ktextwidgets - kwidgetsaddons - kwindowsystem - acl - libgcc - kservice - kjobwidgets - kconfigwidgets - p7zip - rar + libXv + libX11 + sqlite + libopus + freetype + twolame + fribidi + alsa-lib + libvorbis + fontconfig + opencore-amr + libfdk-aac + pulseaudio-libs + jack-audio-connection-kit - /etc/xdg /usr/bin + /usr/share/locale + /usr/share/doc/avidemux + /usr/share/ /usr/lib - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - 2018-09-10 - 2.7.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-05-16 - 2.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 15.08 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-10 - 15.08 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - mc - http://www.midnight-commander.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - GNU Midnight Commander cli-based file manager - GNU Midnight Commander konsol kip dosya yöneticisi - Contains GNU Midnight Commander cli-based file manager. You can do lots of file management and editing tasks, both in normal terminals and in terminal emulators of X. Also has file transfer capabilities over FTP, SSH, and Samba. - GNU Midnight Commander (mc), komut satırında çalışan metin tabanlı bir dosya yönetim ve düzenleme uygulamasıdır. İki sistem arasında FTP, SSH ve Samba protokollerini kullanarak dosya transferlerine de olanak verir. - http://ftp.midnight-commander.org/mc-4.8.26.tar.xz - - libX11-devel - libXt-devel - unzip - glib2-devel - slang-devel - gpm - - util/misc/mc/pspec.xml - - mc + avidemux-devel + Avidemux için geliştirme dosyaları - e2fsprogs - glib2 - gpm - libssh2 - slang - which + avidemux-cli + avidemux-qt - /etc/profile.d - /usr/bin - /usr/lib - /usr/libexec - /usr/share/doc - /usr/share/locale + /usr/include/avidemux + + + + avidemux-cli + + avidemux-common + libgcc + + + /usr/bin/avidemux3_cli /usr/share/man - /usr/share/mc - /etc/mc + /usr/lib/libADM_UI_Cli6.so + /usr/lib/libADM_render6_cli.so + /usr/lib/ADM_plugins6/videoFilters/libADM_vf_*Cli.so + /usr/lib/ADM_plugins6/videoFilters/libADM_vf_swscaleResize_cli.so + + + + avidemux-qt + Simple video editing/encoding tool (QT GUI) + + avidemux-common + qt5-base + x264 + x265 + libX11 + libglvnd + libXv + libXext + mesa-glu + + + /usr/bin/avidemux3_qt5 + /usr/share/avidemux6/qt5/i18n + /usr/share/applications/avidemux3-qt.desktop + /usr/lib/libADM_UIQT56.so + /usr/lib/libADM_render6_QT5.so + /usr/lib/ADM_plugins6/videoFilters/libADM_vf_gl*.so + /usr/lib/ADM_plugins6/videoFilters/libADM_vf_*Gl*.so + /usr/lib/ADM_plugins6/videoFilters/qt5/libADM_vf_*QT5.so + /usr/lib/ADM_plugins6/videoEncoders/qt5/libADM_ve_x264_QT5.so + /usr/lib/ADM_plugins6/videoEncoders/qt5/libADM_ve_x265_QT5.so + /usr/lib/ADM_plugins6/scriptEngines/libADM_script_qt.so + /usr/lib/ADM_plugins6/videoFilters/qt5/libADM_vf_swscaleResize_QT5.so - mc.profile - u7z - mc.ini + avidemux3-qt.desktop + + avidemux-help + Avidemux için yardım dosyaları + + avidemux-common + + + /usr/share/avidemux6/help + + - - 2021-05-29 - 4.8.26 + + 2022-05-25 + 2.8.0 Version bump. - Erkan IŞIK - erkanisik@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - - 2018-08-10 - 4.8.20 + + 2021-06-06 + 2.7.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-15 + 2.7.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 2.7.4 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2018-01-14 - 4.8.20 + + 2019-10-14 + 2.7.4 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-01-25 - 4.8.18 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-08 - 4.8.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-09 - 4.8.15 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - bleachbit - https://www.bleachbit.org/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPL-3 - app:gui - util.misc - Deletes unneeded files to free disk space and maintain privacy. - BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there. - mirrors://sourceforge/project/bleachbit/bleachbit/4.2.0/bleachbit-4.2.0.tar.bz2 - - gtk3-devel - python3-setuptools - python-pygobject-devel - python3-pygobject3-devel - - util/misc/bleachbit/pspec.xml - - - bleachbit - - gtk3 - python-pygobject - python3-pygobject3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - - - - - 2021-04-29 - 4.2.0 - Version bump. + + 2019-04-13 + 2.7.2 + Version Bump. Mustafa Cinasal - muscnsl@gmail.com + muscnsl@pisilinux.org - - 2018-07-31 - 2.0 - Rebuild New T. + + 2018-09-04 + 2.7.1 + Version Bump. Mustafa Cinasal - muscnsl@gmail.com + muscnsl@pisilinux.org - - 2018-05-09 - 2.0 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org + + 2018-05-20 + 2.7.0 + Rebuild ffmpeg. + Mustafa Cinasal + muscnsl@pisilinux.org - - 2017-05-04 - 1.12 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-04 - 1.12 + + 2018-04-02 + 2.7.0 First Release. Stefan Gronewold(groni) groni@pisilinux.org @@ -276828,1118 +198137,389 @@ from a wide variety of machine architectures. - tidy - http://tidy.sourceforge.net/ + ccd2iso + https://sourceforge.net/projects/ccd2iso/ PisiLinux Community admins@pisilinux.org GPLv2 app:console - util.misc - HTML and XML error checking - HTML ve XML hata denetleme aracı - tidy, as the name suggests, tidies the layout of and corrects errors in HTML and XML documents. - tidy, HTML ve XML belgelerinin düzenini denetleyen ve hatalarını düzelten bir araçtır. - https://github.com/htacg/tidy-html5/archive/5.6.0/tidy-html5-5.6.0.tar.gz - - cmake - libxslt-devel - - util/misc/tidy/pspec.xml + multimedia.converter + CloneCD image files to ISO converter + CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir uygulama + ccd2iso converts CloneCD image files to ISO image files. + CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir komut satırı uygulaması. + mirrors://sourceforge/ccd2iso/ccd2iso-0.3.tar.gz + multimedia/converter/ccd2iso/pspec.xml - tidy + ccd2iso /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - tidy-devel - Development files for tidy - tidy için geliştirme dosyaları - - tidy - - - /usr/include - /usr/lib/pkgconfig + /usr/share/doc/ccd2iso - 2019-04-18 - 5.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-03-08 + 0.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2018-08-10 - 20101110 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-01 - 20101110 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 20101110 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2012-10-04 - 20101110 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - neofetch - https://github.com/dylanaraps/neofetch - - Berk Çakar - berk2238@hotmail.com - - MIT - util.misc - A fast, highly customizable system info script. - A version of Neofetch patched for Pisi Linux support. - https://github.com/dylanaraps/neofetch/archive/refs/tags/7.1.0.tar.gz - - bash - - - neofetch.1.patch - neofetch.patch - - util/misc/neofetch/pspec.xml - - - neofetch - Hızlı, özelleştirilebilir sistem bilgisi betiği. - - bash - - - /usr/bin/* - /usr/share/* - - - - - 2021-04-06 - 7.1.0 - Fixed file install paths - Berk Çakar - berk2238@hotmail.com - - - 2021-04-05 - 7.1.0 - Pisi Linux Support - Berkan Şahin - cicektaksi@tutanota.com - - - - - - screen - http://www.gnu.org/software/screen/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - Terminal multiplexer (to have multiple sessions in a single terminal window) - Screen bir terminal(komut penceresi) çoğaltıcıdır. - GNU Screen is a free terminal multiplexer developed by the GNU Project. It allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. - screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır. - http://ftp.gnu.org/gnu/screen/screen-4.6.2.tar.gz - util/misc/screen/pspec.xml - - - screen - - ncurses - - - /run - /etc - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/info - /usr/share/screen - /usr/share/terminfo - /usr/lib/tmpfiles.d/screen.conf - - - System.Package - - - screenrc - screen.pam.system-auth - tmpfiles.conf - - - - - 2018-08-10 - 4.6.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 4.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 4.5.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-08 - 4.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-07 - 4.3.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - ibus - https://github.com/ibus/ibus/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app - util.misc - Intelligent Input Bus for Linux / Unix OS - IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. - https://github.com/ibus/ibus/releases/download/1.5.25/ibus-1.5.25.tar.gz - - gtk2-devel - gtk3-devel - gtk4-devel - glib2-devel - dconf-devel - vala-devel - libnotify-devel - libxkbcommon-devel - intltool - iso-codes-devel - libxslt - gtk-doc - nodejs - python-six - dbus-python - python3-pygobject3-devel - python3-devel - qt5-base-devel - json-glib-devel - gobject-introspection-devel - docbook-xsl - libXtst-devel - - util/misc/ibus/pspec.xml - - - ibus - - glib2 - libX11 - atk - gtk2 - gtk3 - cairo - json-glib - libXi - iso-codes - pango - dconf - libnotify - gdk-pixbuf - libxkbcommon - gobject-introspection - python3-pygobject3 - wayland-client - - - /etc/bash_completion.d/ - /etc/gconf/schemas/ibus.schemas - /etc/dconf/ - /usr/bin - /usr/lib - /usr/share - - - - ibus-gtk2 - ibus için gtk2 desteği - - ibus - glib2 - gtk2 - pango - - - /usr/lib/gtk-2.0/2.10.0/immodules/ - - - - ibus-gtk3 - ibus için gtk3 desteği - - ibus - glib2 - gtk3 - pango - - - /usr/lib/gtk-3.0/3.0.0/immodules/ - - - - ibus-gtk4 - ibus için gtk4 desteği - - ibus - glib2 - gtk4 - pango - - - /usr/lib/gtk-4.0/4.0.0/immodules/ - - - - ibus-devel - ibus için geliştirme dosyaları - ibus için geliştirme dosyaları - - ibus - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-08-24 - 1.5.25 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-15 - 1.5.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-31 - 1.5.21 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2019-10-24 - 1.5.19 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-24 - 1.5.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - 2018-08-05 - 1.5.17 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 1.5.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-06 - 1.5.14 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org + 0.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2017-01-25 - 1.5.14 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2017-02-05 + 0.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2016-06-08 - 1.5.10 + 2016-06-09 + 0.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-06-16 - 1.5.10 + 2014-06-18 + 0.3 First release - Vedat Demir - vedat@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - augeas - http://augeas.net + ffmulticonverter + https://github.com/Ilias95/FF-Multi-Converter - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - app:console - library - util.misc - A library for changing configuration files - Yapılandırma dosyalarını düzenlemek için bir kitaplık - augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API. - augeas yapılandırma dosyalarının programlama dilleri üzerinden düzenlenmesini sağlayan bir kitaplıktır. augeas yapılandırma dosyalarını ayıklayıp bir ağaç yapısı şeklinde programcıya sunar. - http://download.augeas.net/augeas-1.12.0.tar.gz - - libxml2-devel - readline-devel - - util/misc/augeas/pspec.xml - - - augeas - - libxml2 - readline - - - /usr/bin - /usr/lib - /usr/share/augeas - /usr/share/vim/vimfiles - /usr/share/doc - /usr/share/man - - - - augeas-devel - Development files for augeas - augeas için geliştirme dosyaları - - augeas - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-01-25 - 1.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 1.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 1.7.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-08 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-31 - 1.4.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - lsof - http://people.freebsd.org/~abe/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.misc - Lists open files for running Unix processes - Çalışan UNIX süreçleri tarafından açılan dosyaları listeyen bir araç - Lista archivos abiertos por procesos unix en ejecución - lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists information about any files that are open by processes currently running on the system. It can also list communications open by each process. - lsof sistemde çalışmakta olan UNIX süreçleri tarafından açılmış dosyaları listeleyen kullanışlı bir araçtır. - Lsof es una herramienta de diagnostica específica de Unix. Su nombre quiere decir LiSt Open files (listar archivos abiertos), y hace justamente esto. Genera una lista con información sobre cada archivo abierto por procesos que están activos en el sistema. También puede listar comunicaciones abiertas por cada proceso. - https://sourceforge.net/projects/pisilinux/files/source/lsof_4.91_src.tar/download - util/misc/lsof/pspec.xml - - - lsof - - /usr/sbin - /usr/share/doc - /usr/share/lsof - /usr/share/man - - - - - 2020-01-14 - 4.91 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-25 - 4.84 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-29 - 4.84 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 4.84 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-09 - 4.84 - First release Kamil Atlı - suvarice@gmail.com - - - - - - rkrenamer - https://sourceforge.net/projects/ktageditor/ - - Stefan Gronewold - groni@pisilinux.org - - LGPL - util.misc - KTag Editor is an Audio tag editor developed in Qt5 framework. - RKrenamer is application for renaming a large number of files. You can rename a large number of files with one click. Insert text in file name, replace, delete or even change the case of name, or serialize the files in folder. - https://sourceforge.net/projects/rkrenamer/files/Source/0.4.0/rkrenamer.zip/download - - qt5-base-devel - - util/misc/rkrenamer/pspec.xml - - - rkrenamer - Application for renaming large number of files - - libgcc - qt5-base - - - /usr/bin - /usr/share - - - - - 2018-08-10 - 0.4.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-21 - 0.4.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - tmux - https://github.com/tmux/tmux - - PisiLinux Community - admins@pisilinux.org - - BSD - ISC - app:console - util.misc - A terminal multiplexer - Bir terminal çoğaltıcı uygulaması - Tmux is a terminal multiplexer. It's similar to GNU Screen. - tmux bir terminal çoğaltıcısıdır. GNU screen gibi terminal pencerenizi birden fazla parçalara bölerek çalışmanızı sağlar. - https://github.com/tmux/tmux/releases/download/2.8/tmux-2.8.tar.gz - - libevent-devel - ncurses-devel - - util/misc/tmux/pspec.xml - - - tmux - - libevent - ncurses - - - /usr/bin - /etc - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share - - - - - 2019-02-13 - 2.8 - First release. - Hasan Basri - hbasria@pisilinux.org - - - - - - strace - https://strace.io/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - util.misc - Tracks and displays system calls associated with a running process - Çalışan bir süreç ile ilişkili sistem çağrılarını gösteren bir araç - Herramienta útil para diagnostico, aprendizaje y depuración - strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. - strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. - https://strace.io/files/5.15/strace-5.15.tar.xz - - libunwind-devel - - util/misc/strace/pspec.xml - - - strace - - libunwind - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2022-02-04 - 5.15 - Version bump. - Pisilinux Community - admins@pisilinux.org - - - 2021-11-11 - 5.14 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2021-10-17 - 5.10 - Kernel bump. - PisiLinux Community - admins@pisilinux.org - - - 2020-09-11 - 5.8 - Kernel bump. - PisiLinux Community - admins@pisilinux.org - - - 2020-08-13 - 4.21 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 4.21 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 4.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 4.15 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-08 - 4.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-25 - 4.9 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - polo - https://github.com/teejee2008/polo - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app - util.admin - Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more. - Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası. - Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more. - Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası. - https://github.com/teejee2008/polo/archive/v18.8-beta.tar.gz - - atk-devel - vte-devel - gtk3-devel - vala-devel - zlib-devel - cairo-devel - glib2-devel - pango-devel - gnutls-devel - libX11-devel - libgee-devel - libxml2-devel - libpcre2-devel - json-glib-devel - gdk-pixbuf-devel - - util/admin/polo/pspec.xml - - - polo - - atk - vte - gtk3 - zlib - cairo - glib2 - p7zip - pango - gnutls - libX11 - libgee - libxml2 - libpcre2 - json-glib - gdk-pixbuf - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - /var/log/polo - - - - - 2019-01-19 - 18.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - pgModeler - http://www.pgmodeler.com.br/ - - Ertuğrul Erata - ertugrulerata@gmail.com + suvari@pisilinux.org GPLv3 app:gui - util.admin - PostgreSQL Database Modeler - PostgreSQL Database Modeler: an open source CASE tool for modeling PostgreSQL databases - https://github.com/pgmodeler/pgmodeler/archive/v0.9.1.tar.gz + multimedia.converter + A multi converter. + Bir çoklu dönüştürücü + FF Multi Converter is a simple graphical application that enables you to convert audio, video, image and document files between all popular formats, using and combining other programs. It uses ffmpeg for audio/video files, unoconv for document files (which uses the OpenOffice's UNO bindings) and PIL library for image file conversions. + FF Multi Converter; ses, video, resim ve belge dosya biçimlerini farklı biçimlere dönüştürmek için kullanılabilecek diğer uygulamalara önyüzlük yapan basit bir araçtır. Ses ve video dosyaları için ffmpeg, belge dosyaları için unoconv ve resim dosyaları için PIL kütüphanesi kullanılmaktadır. + ffmulticonverter + mirrors://sourceforge/ffmulticonv/ffmulticonverter-1.8.0.tar.gz - libxml2-devel - mesa-devel - shared-mime-info - doxygen - mesa-devel - qt5-base-devel - qt5-svg-devel - qt5-sql-postgresql - postgresql-server + ffmpeg-devel + gettext-devel + python3-devel + python3-qt5-devel - util/admin/pgModeler/pspec.xml + + QProgressBar_value_replaced_to_int.patch + + multimedia/converter/ffmulticonverter/pspec.xml - pgModeler + ffmulticonverter - libgcc - libxml2 - qt5-svg - qt5-base - postgresql-lib + ffmpeg + unoconv + python3-qt5 + imagemagick - /etc/pgmodeler /usr/bin /usr/lib - /usr/share - - - pgModeler.desktop - - - - - 2018-09-09 - 0.9.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-06-30 - 0.9.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-11-26 - 0.9.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-10-13 - 0.8.2_p1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - panda - https://pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.admin - PisiLinux Alternative Driver Administration - PisiLinux Alternatif Sürücü Yönetimi - PANDA is an alternative driver administration for PisiLinux. - Panda, PisiLinux için alternatif sürücü yönetim modülüdür. - https://github.com/forYali/panda/archive/0.2.tar.gz - - add-32bit_packages.diff - remove_module-nvidia-userspace.patch - remove_module-fglrx-userspace.patch - - util/admin/panda/pspec.xml - - - panda - - /usr/libexec - /usr/lib + /usr/share/pixmaps + /usr/share/applications + /usr/share/ffmulticonverter + /usr/share/man /usr/share/doc - - 2018-08-31 - 0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-05 - 0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - phpldapadmin - http://phpldapadmin.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - util.admin - phpLDAPadmin (also known as PLA) is a web-based LDAP client - Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. - phpLDAPadmin (also known as PLA) is a web-based LDAP client. It provides easy, anywhere-accessible, multi-language administration for your LDAP server. - Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. LDAP sunucunuz için çoklu dil desteği yönetimi, herhangi bir yerden erişilebilirlik ve kolaylık sağlar. - https://github.com/leenooks/phpLDAPadmin/archive/refs/tags/1.2.6.2.tar.gz - util/admin/phpldapadmin/pspec.xml - - - phpldapadmin - - mod_php - openldap-server - openldap-client - apache - - - /usr/share/phpldapadmin - /usr/share/doc - /usr/share/phpldapadmin/config/config.php - /etc/apache2/conf.d/phpldapadmin.conf - - - - - 2021-11-20 - 1.2.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-09-09 - 1.2.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2021-12-28 + 1.8.0 + Rebuild python. + Kamil Atlı + suvari@pisilinux.org - 2017-01-30 - 1.2.3 - Rebuild + 2020-03-08 + 1.8.0 + Rebuild. Kamil Atlı suvari@pisilinux.org - 2016-06-10 - 1.2.3 - First release - Aydın Demirel - aydin@demirel.web.tr + 2018-12-03 + 1.8.0 + First release. + Kamil Atlı + suvari@pisilinux.org - zeitgeist - https://zeitgeist.freedesktop.org/ + flacon + https://flacon.github.io/ - fury - uglyside@yandex.ru + Pisilinux Community + admins@pisilinux.org - LGPL-2.1 - library - util.admin - Activity logging framework. - Zeitgeist is a service which logs the users's activities and events (files opened, websites visites, conversations held with other people, etc.) and makes relevant information available to other applications. - https://gitlab.freedesktop.org/zeitgeist/zeitgeist/-/archive/v1.0.4/zeitgeist-v1.0.4.tar.bz2 + LGPLv2.1 + app:gui + multimedia.converter + Flacon is a open source audio file encoder. + An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks + You can split a single large audio file containing the entire album into the separate audio tracks. + Bir Ses Dosyası Kodlayıcısı. Ses parçalarını bir ses CD görüntüsünden ayrı parçalara ayıklar. + https://github.com/flacon/flacon/archive/refs/tags/v8.3.0.tar.gz - dbus-devel - gtk3-devel - vala-devel - glib2-devel - sqlite-devel - python3-six - python3-devel - python3-rdflib - python3-isodate - json-glib-devel - python3-pyparsing - telepathy-glib-devel - gobject-introspection-devel + cmake + taglib-devel + qt5-linguist + qt5-base-devel + uchardet-devel - util/admin/zeitgeist/pspec.xml + multimedia/converter/flacon/pspec.xml - zeitgeist + flacon - gtk3 - glib2 - sqlite - python3 - json-glib - dbus-python3 - telepathy-glib + libgcc + taglib + qt5-base + uchardet - /etc/xdg /usr/bin /usr/lib /usr/share /usr/share/man + /usr/share/metainfo + /usr/share/doc + + + 2022-04-16 + 8.3.0 + Version bump. + fury + uglyside@yandex.ru + + + 2022-01-17 + 8.2.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2021-04-26 + 5.5.1 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + flowblade + https://github.com/jliljebl/flowblade + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app + multimedia.converter + Multitrack non-linear video editor + Multitrack non-linear video editor + Çok kanallı doğrusal olmayan video düzenleyici + Çok kanallı doğrusal olmayan video düzenleyici + https://github.com/jliljebl/flowblade/archive/refs/tags/v2.8.0.3.tar.gz + + python3-devel + desktop-file-utils + python3-setuptools + appstream-glib-devel + + + fedora/flowblade_sys_path.patch + + multimedia/converter/flowblade/pspec.xml + - zeitgeist-devel + flowblade - zeitgeist - glib2-devel + mlt6 + gmic + gtk3 + ffmpeg + python3 + librsvg + python-mlt6 + dbus-python3 + frei0r-plugins + python3-numpy + python3-pillow + python3-pygobject3 - /usr/include - /usr/lib/pkgconfig + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/metainfo + /usr/share/doc + + + + + 2021-10-28 + 2.8.0.3 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2021-10-25 + 2.8.0.3 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2021-08-30 + 2.8.0.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + handbrake + https://handbrake.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + app:gui + multimedia.converter + The open source video transcoder. + Çoklu görev destekli video kodlama/düzenleme aracı + HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players. + Handbrake,Video dosyalarını portatif medya oynatıcıları için düzenleyebilmenin yanısıra çözünürlülük değişimi desteğide sunan özgür video kodlama ve düzenleme aracıdır. + HandBrake + https://github.com/HandBrake/HandBrake/releases/download/1.5.1/HandBrake-1.5.1-source.tar.bz2 + + nasm + meson + cmake + bzip2 + libgcc + python3 + intltool + gtk3-devel + lame-devel + x264-devel + x265-devel + zlib-devel + speex-devel + libva-devel + libvpx-devel + libogg-devel + libass-devel + fribidi-devel + libxml2-devel + libopus-devel + numactl-devel + librsvg-devel + jansson-devel + libgudev-devel + gstreamer-devel + libbluray-devel + libnotify-devel + libvorbis-devel + libtheora-devel + fontconfig-devel + gst-plugins-good + at-spi2-core-devel + libsamplerate-devel + libjpeg-turbo-devel + gst-plugins-base-devel + + multimedia/converter/handbrake/pspec.xml + + + handbrake + + xz + gtk3 + lame + x264 + zlib + bzip2 + glib2 + cairo + pango + libva + speex + libass + libogg + libvpx + libgcc + libxml2 + jansson + fribidi + libopus + numactl + freetype + libgudev + gstreamer + libbluray + libnotify + gst-libav + libvorbis + libtheora + gdk-pixbuf + libsamplerate + libjpeg-turbo + gst-plugins-base + + + /usr/bin + /usr/share/locale + /usr/share + /usr/share/doc - 2022-01-18 - 1.0.4 - Version bump - fury - uglyside@yandex.ru + 2022-04-24 + 1.5.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2021-10-13 - 1.0.3 + 2021-10-19 + 1.4.2 First build fury uglyside@yandex.ru @@ -277948,499 +198528,164 @@ from a wide variety of machine architectures. - isodumper - https://github.com/papoteur-mga/isodumper - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - util.admin - A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. - IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. - A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. - IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. - https://sourceforge.net/projects/pisilinux/files/source/isodumper-0.48.tar.xz - - isodumper.svg - isodumper.png - header.png - header.svg - isodumper.desktop.in - tr.po - - - intltool - imagemagick-devel - - util/admin/isodumper/pspec.xml - - - isodumper - - coreutils - pango - polkit - procps - imagemagick - python-gtk - python-cairo - python-pygobject - libglade - python - dbus-python - pyparted - udisks2 - xterm - - - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/share - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/isodumper - /usr/share/polkit-1 - /usr/share/locale - /usr/share/doc - - - - - 2021-06-22 - 0.48 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-20 - 0.48 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-08-31 - 0.48 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 0.45 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-22 - 0.45 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-04 - 0.45 - First Release - Alihan Öztürk - alihan@pisilinux.org - - - - - - timeshift - https://github.com/teejee2008/timeshift - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - app:gui - util.admin - Timeshift protects your system by taking incremental snapshots of the file system at regular intervals. These snapshots can be restored at a later date to undo all changes to the system. - Timeshift protects your system by taking incremental snapshots of the file system at regular intervals. These snapshots can be restored at a later date to undo all changes to the system. - Timeshift, düzenli aralıklarla dosya sisteminin artımlı anlık görüntülerini alarak sisteminizi korur. Bu anlık görüntüler, sistemdeki tüm değişiklikleri geri almak için daha sonraki bir tarihte geri yüklenebilir. - Timeshift, düzenli aralıklarla dosya sisteminin artımlı anlık görüntülerini alarak sisteminizi korur. Bu anlık görüntüler, sistemdeki tüm değişiklikleri geri almak için daha sonraki bir tarihte geri yüklenebilir. - https://github.com/teejee2008/timeshift/archive/refs/tags/v20.11.1.tar.gz - - atk-devel - vte-devel - gtk3-devel - zlib-devel - vala-devel - cairo-devel - glib2-devel - pango-devel - gnutls-devel - libX11-devel - libgee-devel - libpcre2-devel - json-glib-devel - gdk-pixbuf-devel - - util/admin/timeshift/pspec.xml - - - timeshift - - atk - vte - gtk3 - zlib - vala - cairo - glib2 - pango - gnutls - libX11 - libgee - libpcre2 - json-glib - gdk-pixbuf - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/doc - - - - - 2021-05-10 - 20.11.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - woeusb - https://github.com/slacka/WoeUSB - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - app:gui - util.admin - Create a Windows USB stick installer - woeusb ile bir Ms Windows USB bellek yükleyicisi oluşturun - A Linux program to create a Windows USB stick installer from a real Windows DVD or iso image. The important part is that you should format usb stick in NTFS. - Ms Windows DVD veya iso imaj görüntüsünden, Windows USB bellek yükleyicisi oluşturmak için bir Linux programı. İso yazdırılmadan önce, usb bellek, NTFS olarak biçimlendirilmelidir. - https://github.com/slacka/WoeUSB/archive/v3.3.1.tar.gz - - m4 - wxGTK-devel - - util/admin/woeusb/pspec.xml - - - woeusb - - wxGTK - libgcc - parted - ntfs-3g - dosfstools - - - /usr/bin - /usr/share - /usr/share/doc/woeusb - - - - - 2020-04-07 - 3.3.1 - ver. bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-06-04 - 3.3.0 - ver. bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-10-22 - 3.2.10 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - fwupd - https://fwupd.org - - Ertuğrul Erata - ertugrulerata@gmail.com - - GPLv2 - util.admin - Aims to make updating firmware on Linux automatic, safe and reliable - Aims to make updating firmware on Linux automatic, safe and reliable - https://github.com/hughsie/fwupd/archive/1.7.4.tar.gz - - meson - gnu-efi - fwupd-efi - gi-docgen - curl-devel - gcap-devel - libjcat-devel - gpgme-devel - sqlite-devel - polkit-devel - gnutls-devel - libusb-devel - elfutils-devel - libxmlb-devel - libgudev-devel - libgusb-devel - valgrind-devel - python3-pillow - libsmbios-devel - tpm2-tss-devel - bash-completion - elogind-devel - protobuf-c-devel - appstream-glib-devel - python3-pygobject3-devel - efivar-devel - - util/admin/fwupd/pspec.xml - - - fwupd - - gcap - glib2 - curl - libjcat - gpgme - gnutls - polkit - libxmlb - tpm2-tss - json-glib - libgpg-error - efivar - sqlite - libgusb - libsoup - bash-completion - libgudev - elfutils - protobuf-c - libsmbios - libarchive - libutil-linux - appstream-glib - - - /lib - /etc - /usr/bin - /usr/lib - /usr/libexec - /usr/share - /usr/share/man - /usr/share/polkit-1 - /usr/share/dbus-1 - /usr/share/gir-1.0 - /usr/share/fwupd - /usr/share/metainfo - /usr/share/bash-completion - /usr/share/vala - /usr/share/locale - /usr/share/installed-tests - /var - - - org.freedesktop.fwupd.service - - - - fwupd-devel - - fwupd - curl-devel - gcap-devel - glib2-devel - libgusb-devel - libjcat-devel - libxmlb-devel - libgudev-devel - valgrind-devel - json-glib-devel - libarchive-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-01-14 - 1.7.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-14 - 1.7.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-21 - 1.7.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-05 - 1.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-20 - 1.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-02 - 1.3.9 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-28 - 1.1.3 - remove os-release file. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-10-22 - 1.1.3 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-09-09 - 1.0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-15 - 1.0.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - logrotate - https://fedorahosted.org/releases/l/o/logrotate + mkvtoolnix + http://www.bunkus.org/videotools/mkvtoolnix/ PisiLinux Community admins@pisilinux.org GPLv2 app:console - util.admin - Rotates, compresses, removes and emails system log files - Sistem günlük (log) dosyalarını yönetmeyi kolaylaştıran bir araç - logrotate is designed to ease administration of systems that generate large numbers of log files. It allows automatic rotation, compression, removal, and emailing of log files. - Logrotate kayıt dosyalarının rotasyonunu, silinmesini veya e-posta ile gönderilmesi gibi işlevleri ile sistem yönetimini kolaylaştırıan bir uygulamadır. - https://github.com/logrotate/logrotate/releases/download/3.15.1/logrotate-3.15.1.tar.xz + app:gui + multimedia.converter + A set of tools to create, alter and inspect Matroska files + Matroska dosyalarını yaratmak, değiştirmek ve incelemek için araçlar + MKVToolnix is a set of tools (mkvmerge, mkvinfo and mkvextract) With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. + mkvtoolnix Matroska (MKV) dosyaları ile kullanılmak için bilgi edinme aracı (mkvinfo), veri/iz çıkarmak aracı (mkvextract) ve MKV oluşturma aracı (mkvmerge) içeren araç setidir. + mmg + https://gitlab.com/mbunkus/mkvtoolnix/-/archive/release-61.0.0/mkvtoolnix-release-61.0.0.tar.gz - popt-devel - acl-devel + file + fmt-devel + gmp-devel + rubygems + flac-devel + zlib-devel + ruby-devel + cmark-devel + boost-devel + docbook-xsl + libpcre2-devel + libogg-devel + libdvdread-devel + qt5-linguist + libxslt-devel + pugixml-devel + libebml-devel + qt5-base-devel + libvorbis-devel + libmatroska-devel + imagemagick-devel + qt5-multimedia-devel + pulseaudio-libs-devel - util/admin/logrotate/pspec.xml + multimedia/converter/mkvtoolnix/pspec.xml - logrotate + mkvtoolnix + A set of tools to create, alter and inspect Matroska files - popt - acl + file + gmp + flac + zlib + cmark + boost + libgcc + libogg + libebml + pugixml + libpcre2 + qt5-base + libvorbis + libdvdread + libmatroska + qt5-multimedia - /etc - /usr/sbin - /usr/share/doc /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/pixmaps + /usr/share/mkvtoolnix + /usr/share/applications + /usr/share/metainfo + /usr/share/locale - - 2020-02-02 - 3.15.1 + + 2021-10-05 + 61.0.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-08-15 - 3.11.0 - Version Bump + + 2021-06-29 + 58.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 46.0.0 + Major version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-03-08 + 43.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 19.0.0 + Rebuild Pisi Linux Community admin@pisilinux.org - - 2017-01-25 - 3.9.1 + + 2018-03-24 + 19.0.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-17 + 19.0.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-17 + 9.7.1 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-04 + 9.5.0 Version bump. - Stefan Gronewold + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-08-11 + 9.3.1 + Version bump. + Stefan Gronewold(groni) groni@pisilinux.org - 2016-06-08 - 3.8.8 + 2016-06-09 + 8.5.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-26 - 3.8.8 + 2016-04-08 + 8.5.2 First release Stefan Gronewold(groni) groni@pisilinux.org @@ -278449,985 +198694,873 @@ from a wide variety of machine architectures. - inxi - https://smxi.org/docs/inxi.htm/ + soundconverter + https://soundconverter.org/ - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + fury + uglyside@yandex.ru - GPL-3 - app:console - util.admin - script to get system information - A command line system information tool. - script voor het opvragen van systeem informatie - Script para la información del sistema - script to get system information - inxi is a full featured CLI system information tool. - Script voor het opvragen van systeem informatie - Inxi es un completo script que muestra la información del sistema - https://github.com/smxi/inxi/archive/refs/tags/3.3.08-1.tar.gz - util/admin/inxi/pspec.xml + GPLv3 + app:gui + multimedia.converter + GNOME sound converter application. + A simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files. + https://launchpad.net/soundconverter/trunk/4.0.2/+download/soundconverter-4.0.2.tar.gz + + intltool + gtk3-devel + python3-devel + gstreamer-devel + desktop-file-utils + python3-setuptools + python3-distutils-extra + python3-pygobject3-devel + + + Prevent_crash_when_duration_is_not_known_or_zero.patch + + multimedia/converter/soundconverter/pspec.xml - inxi + soundconverter + + gtk3 + python3 + gst-libav + gst-plugins-bad + gst-plugins-base + gst-plugins-ugly + gst-plugins-good + python3-setuptools + python3-pygobject3 + /usr/bin - /usr/share/kde4/apps/konversation/scripts/inxi + /usr/lib + /usr/share + /usr/share/locale /usr/share/man /usr/share/doc - - 2021-11-11 - 3.3.08.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-09-11 - 3.1.06.1 - Version bump. - fury - uglyside@yandex.ru - - - 2018-09-09 - 3.0.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-15 - 2.3.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-01-25 - 2.3.8 + 2021-10-28 + 4.0.2 Version bump. - Stefan Gronewold - groni@pisilinux.org + fury + uglyside@yandex.ru - 2016-06-10 - 2.3.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org + 2021-05-18 + 4.0.1 + Version bump. + fury + uglyside@yandex.ru - 2015-07-23 - 2.2.19 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2020-12-04 + 4.0.0 + First build + fury + uglyside@yandex.ru - pgadmin4 - https://www.pgadmin.org/ + soundkonverter + https://www.opendesktop.org/p/1126634/ - İdris Kalp - idriskalp@gmail.com + Kamil Atlı + suvari@pisilinux.org - custom + GPLv2 app:gui - util.admin - Comprehensive design and management interface for PostgreSQL - pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world. - https://pgadmin-archive.postgresql.org/pgadmin4/v4.19/source/pgadmin4-4.19.tar.gz + multimedia.converter + SoundKonverter is a frontend to various audio converters. + Audio conversion, replay Gain calculation, CD ripping. It is extendable by plugins and supports many backends: soundKonverter supports reading and writing tags for many formats, so the tags are preserved when converting files. + soundkonverter + https://sourceforge.net/projects/pisilinux/files/source/soundkonverter-3.0.1.tar.gz - python3-devel + cmake + libkcddb + kio-devel + kinit-devel + ki18n-devel + solid-devel + taglib-devel + ffmpeg-devel + kconfig-devel + kxmlgui-devel qt5-base-devel - postgresql-lib - imagemagick-devel - python3-setuptools - python3-sphinx - python3-extras - python3-fixtures - python3-html5lib - python3-pbr - python3-mimeparse - python3-pyrsistent - python3-blinker - python3-flask - python3-flask-login - python3-flask-migrate - python3-flask-sqlalchemy - python3-flask-wtf - python3-passlib - python3-pytz - python3-simplejson - python3-six - python3-speaklater - python3-sqlparse - python3-wtforms - python3-psutil - python3-Jinja2 - python3-paramiko - python3-psycopg2 - python3-cryptography - python3-sqlalchemy - python3-testtools - python3-webencodings - python3-werkzeug - python3-dateutil - python3-flask-gravatar - python3-flask-mail - python3-flask-principal - python3-flask-paranoid - python3-sshtunnel - python3-flask-security - python3-flask-compress - python3-email-validator + kdesignerplugin + libvorbis-devel + kdoctools-devel + kemoticons-devel + qt5-phonon-devel + cdparanoia-devel + kitemmodels-devel + extra-cmake-modules + kconfigwidgets-devel + kwidgetsaddons-devel + kunitconversion-devel + kdelibs4-support-devel - - pgadmin4-python-de-vendor-venv-paths.patch - python-3.8.patch - - util/admin/pgadmin4/pspec.xml + multimedia/converter/soundkonverter/pspec.xml - pgadmin4 - Comprehensive design and management interface for PostgreSQL + soundkonverter - python3 + kio + ki18n + solid + libgcc + taglib + kconfig + kxmlgui + kservice + libkcddb qt5-base - postgresql-lib - imagemagick - python3-blinker - python3-flask - python3-flask-login - python3-flask-migrate - python3-flask-sqlalchemy - python3-flask-wtf - python3-passlib - python3-pytz - python3-simplejson - python3-six - python3-speaklater - python3-sqlparse - python3-wtforms - python3-psutil - python3-Jinja2 - python3-paramiko - python3-psycopg2 - python3-cryptography - python3-sqlalchemy - python3-testtools - python3-webencodings - python3-werkzeug - python3-dateutil - python3-flask-gravatar - python3-flask-mail - python3-flask-principal - python3-flask-paranoid - python3-sshtunnel - python3-flask-security - python3-flask-compress - python3-email-validator + cdparanoia + qt5-phonon + kcompletion + kcoreaddons + ktextwidgets + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + sox + faac + flac + lame + faad2 + speex + ffmpeg + mplayer + libopus + twolame + wavpack + libvorbis + timidity + fluidsynth + vorbis-tools /usr/bin /usr/lib /usr/share - - pgadmin4 - pgadmin4-server - pgAdmin4.desktop - config_distro.py - - - - pgadmin4-docs - Documentation files for pgadmin4 - - pgadmin4 - - - /usr/share/doc/pgadmin4 - - 2020-03-24 - 4.19 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - pisido - https://pisilinux.org/ - - Harun Gültekin - hrngultekin@gmail.com - - GPLv3+ - app:gui - util.admin - A pisi packager from GUI - Grafik arayüzde çalışan pisi paketçisi. - You can make pisi packages with a GUI. Also, you can import your existing build files. Warning:Alfa version. Ported Qt5. - Grafik arayüzde pisi paketleri yapabilirsiniz. Ayrıca var olan inşa dosyalarınızı içe aktarıp inşa edebilirsiniz.Çoklu paket yapısı eklenmiştir. Hala geliştirilme aşamasındasır. Alfa sürümdür. Qt5 ile hazırlanmıştır. - https://github.com/PisiLinuxNew/pisido/archive/pisido-v2.3.7.tar.gz - - qt5-linguist - qscintilla2-devel - qtermwidget5-devel - - - no-git-folder+fix-docker.patch - - util/admin/pisido/pspec.xml - - - pisido - A pisi packager with GUI - - libgcc - qt5-base - qscintilla2 - qtermwidget5 - - - /usr/bin - /usr/share/doc - /usr/share - - - - - 2021-11-14 - 2.3.7 + 2020-03-08 + 3.0.1 Rebuild Kamil Atlı suvari@pisilinux.org - - 2020-12-20 - 2.3.7 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-05-11 - 2.3.6 - version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-11-30 - 2.3.5 - Rebuild qscintilla2. - Pisi Linux Community - admin@pisilinux.org - - - 2019-02-03 - 2.3.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-11 - 2.3.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-10-17 - 2.3.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-14 - 2.3.5 - add german lang - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-06 - 2.3.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-06-02 - 2.3.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-05-16 - 2.3.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 2.3.5 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 2.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2015-10-26 - 2.3.3 + 2018-12-03 + 3.0.1 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - pisilinux-dev-tools - https://pisilinux.org + uchardet + https://www.freedesktop.org/wiki/Software/uchardet - Marcin Bojara - marcin@pisilinux.org + PisiLinux Community + admins@pisilinux.org + + MPL + library + multimedia.converter + Encoding detector library ported from Mozilla + Encoding detector library ported from Mozilla + Encoding detector library ported from Mozilla + Encoding detector library ported from Mozilla + https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.7.tar.xz + + cmake + + multimedia/converter/uchardet/pspec.xml + + + uchardet + + libgcc + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + uchardet-devel + Development files for uchardet + + uchardet + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-04-26 + 0.0.7 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2020-01-01 + 0.0.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + unoconv + http://dag.wieers.com/home-made/unoconv + + PisiLinux Community + admins@pisilinux.org GPLv2 app:console - util.admin - A collection of useful tools that Pisi Linux developers use to make their developing work a lot easier - Pisilinux-dev-tools is a collection of useful tools that Pisilinux developers use to make their developing work a lot easier. Such tools can include packaging preparation, package analysis, etc. - http://source.pisilinux.org/pisilinux-dev-tools/pisilinux-dev-tools-0.0.2.tar.xz - - fix_detect_mesa.patch - spped_up.patch - ignore_glibc-32bit.patch - - util/admin/pisilinux-dev-tools/pspec.xml + multimedia.converter + A document converter + Bir belge dönüştürücü + unoconv converts between any document format that OpenOffice / OpenOffice understands. + unoconv, her belge biçimini OpenOffice ve OpenOffice'in anlayacağı biçime dönüştüren bir terminal uygulamasıdır. + https://github.com/dagwieers/unoconv/archive/0.8.2.tar.gz + + xmlto + asciidoc + python3-devel + python3-setuptools + + multimedia/converter/unoconv/pspec.xml - pisilinux-dev-tools + unoconv - chrpath - binutils + xmlto + asciidoc /usr/bin + /usr/lib + /usr/share/man /usr/share/doc + + 2020-03-08 + 0.8.2 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + - 2020-02-06 - 0.0.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2018-11-04 + 0.8.2 + Version bump. + Kamil Atlı + suvari@pisilinux.org - 2018-07-30 - 0.0.2 + 2018-08-05 + 0.7 Rebuild Pisi Linux Community admin@pisilinux.org - 2017-01-30 - 0.0.2 - Release Bump + 2017-02-05 + 0.7 + Rebuild Pisi Linux Community admin@pisilinux.org - 2016-06-08 - 0.0.2 + 2016-06-09 + 0.7 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-06-28 - 0.0.2 + 2016-03-23 + 0.7 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Stefan Gronewold + groni@pisilinux.org - phpmyadmin - http://www.phpmyadmin.net/ + vcdimager + https://www.gnu.org/software/vcdimager/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.converter + VCD and SVCD image file maker and converter + VCD ve SVDC görüntü dosyası oluşturucu ve çevirici + VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CD's and Super Video CD's. The core functionality consists of directly making Video CD BIN/CUE-style CD images from mpeg files. + VCDImager Video CD ve Super Video CD'leri yaratmaya, parçalarına ayırmaya ve analiz etmeye yarayan kapsamlı bir CD görüntüsü yazma uygulamasıdır. En temel özelliği .mpeg dosyalarından direk BIN/CUE uzantılı CD görüntüleri yaratabilmesidir. + http://ftp.gnu.org/gnu/vcdimager/vcdimager-2.0.1.tar.gz + + libcdio-devel + popt-devel + libxml2-devel + + multimedia/converter/vcdimager/pspec.xml + + + vcdimager + + libcdio + popt + libxml2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + vcdimager-devel + Development files for vcdimager + vcdimager için geliştirme dosyaları + + vcdimager + libcdio-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-08 + 2.0.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-05 + 2.0.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.7.24 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 0.7.24 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.7.24 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.7.24 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + blender + https://www.blender.org/ PisiLinux Community admins@pisilinux.org GPLv2 app:gui - util.admin - Browser based MySQL Admin Tool - Tarayıcı tabanlı MySQL Yönetim Aracı - A populer application for managing MySQL Server; add/update data etc. with PHP5 support. - MySQL Sunucusunu yönetmek için PHP5 desteği ile birlikte gelen popüler bir uygulama. - https://files.phpmyadmin.net/phpMyAdmin/5.1.1/phpMyAdmin-5.1.1-all-languages.tar.xz - util/admin/phpmyadmin/pspec.xml + multimedia.editor + 3D modeling, animation, rendering and post-production application + 3D animasyon sistemi + blender is the essential software solution you need for 3D, from modeling, animation, rendering and post-production to interactive creation and playback. + Blender 3B modelleme ve animasyon yapmaya yarayan açık kaynak bir yazılımdır. + blender + http://download.blender.org/source/blender-3.0.1.tar.xz + + git + cmake + llvm + potrace + gmp-devel + openxr-devel + ffmpeg-devel + fftw3-devel + boost-devel + freetype-devel + glew-devel + icu4c-devel + imath-devel + jack-audio-connection-kit-devel + libdc1394-devel + libgomp + libjpeg-turbo-devel + libpng-devel + libsdl-devel + libsdl2-devel + libsndfile-devel + libspnav-devel + libX11-devel + libXi-devel + libXxf86vm-devel + mesa-devel + libglvnd-devel + mesa-glu-devel + openal-devel + openexr-devel + openjpeg-devel + python3-devel + tiff-devel + openimageio-devel + webp-devel + zlib-devel + python3-requests + python3-numpy + intel-tbb-devel + OpenCOLLADA-devel + opencolorio-devel + python3-idna + python3-setuptools + jemalloc-devel + zstd-devel + + + blender-openexr.patch + blender-3.0.0-intern-ghost-fix-typo-in-finding-XF86VMODE.patch + + multimedia/editor/blender/pspec.xml - phpmyadmin + blender - mod_php - mariadb-lib - mariadb-client - mariadb-server + gmp + zstd + boost + openxr + pugixml + potrace + libsdl2 + ffmpeg + fftw3 + freetype + libglvnd + intel-tbb + libXfixes + openjpeg2 + libXrender + glew + imath + jack-audio-connection-kit + libgcc + libdc1394 + libgomp + libjpeg-turbo + libpng + libsdl + libsndfile + libspnav + libX11 + libXi + libXxf86vm + mesa + mesa-glu + openal + openexr-libs + openjpeg + python3 + tiff + openimageio + zlib + intel-tbb + OpenCOLLADA + opencolorio + jemalloc + /usr/bin + /usr/lib/python3.9/ + /usr/share/blender/ /usr/share/doc - /usr/share/phpmyadmin - /usr/share/phpmyadmin/config.inc.php - /etc/apache2/conf.d/phpmyadmin.conf + /usr/share/pixmaps/ + /usr/share/man/man1 + /usr/share/icons + /usr/share/applications + /usr/share/mime + /usr/share/locale - - System.Package - - config.inc.php - phpmyadmin.conf + blender.xml + blender-wrapper + blender.desktop - - 2021-11-06 - 5.1.1 + + 2022-05-23 + 3.0.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-09-09 - 4.8.2 - Version Bump. + + 2021-12-05 + 3.0.0 + Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-01-30 - 4.6.6 + + 2021-11-19 + 2.93.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2.93.5 Version bump - Kamil Atlı - suvari@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - - 2016-06-10 - 4.6.2 - First release - Pisi Linux Admins - admins@pisilinux.org + + 2021-10-21 + 2.92.0 + Rebuild boost. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-30 + 2.92.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - - - - - sudo - https://www.sudo.ws/ - - PisiLinux Community - admins@pisilinux.org - - Sudo - app:console - util.admin - Allows restricted root access for specified users - Yönetici haklarıyla komut çalıştırma uygulaması - sudo allows certain users/groups to run commands with root user privileges. - sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. - https://www.sudo.ws/sudo/dist/sudo-1.9.8p2.tar.gz - - nss-devel - pam-devel - zlib-devel - audit-devel - openssl-devel - cyrus-sasl-devel - openldap-client - - util/admin/sudo/pspec.xml - - - sudo - Allows restricted root access for specified users - - nss - pam - zlib - audit - openssl - cyrus-sasl - openldap-client - - - /etc - /run/sudo - /var/db/sudo - /usr/share/doc - /usr/share/man - /usr/include - /usr/bin - /usr/sbin - /usr/libexec - /usr/share/locale - /usr/lib/tmpfiles.d/sudo.conf - - - System.Package - - - sudoers - sudoers - sudo.pamd - sudo.tmpfiles.conf - - - - 2021-09-22 - 1.9.8_p2 + 2021-03-11 + 2.92.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-17 - 1.9.8_p1 + 2021-01-20 + 2.91.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-14 - 1.9.8 + 2020-09-19 + 2.90.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-08 - 1.9.7 + 2020-06-04 + 2.83.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-05 - 1.9.5 - Sudo rebuild. - Berk Çakar - berk2238@hotmail.com + 2020-04-25 + 2.82 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2021-01-27 - 1.9.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-02-11 + 2.81 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2020-11-07 - 1.9.0 + 2018-09-01 + 2.79 Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + Pisi Linux Community + admin@pisilinux.org - 2020-05-19 - 1.9.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com + 2018-05-11 + 2.79 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2020-02-02 - 1.8.31 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-04-27 + 2.79 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2018-08-10 - 1.8.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-03-24 + 2.79 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2018-03-14 - 1.8.22 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-02-14 + 2.79 + Version bump + PisiLinux Community + admins@pisilinux.org - 2017-01-25 - 1.8.19 - Version bump. - Stefan Gronewold - groni@pisilinux.org + 2017-05-28 + 2.78c + Version bump + PisiLinux Community + admins@pisilinux.org - 2016-09-26 - 1.8.18 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + 2017-03-17 + 2.78 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org 2016-06-15 - 1.8.16 + 2.75a Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-16 - 1.8.16 - Version bump. Add sudoers.orig for live user privileges - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2016-06-15 + 2.75a + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2016-01-10 - 1.8.13 + 2016-05-08 + 2.75a First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ali Algul + alialgul@pisilinux.org - fwupdate - https://github.com/rhinstaller/fwupdate + devedeNG + https://rastersoft.com/programas/devede.html - Ertuğrul Erata - ertugrulerata@gmail.com + Kamil Atlı + suvari@pisilinux.org - GPLv2 - app:console - util.admin - Tools for using the ESRT and UpdateCapsule() to apply firmware updates - Tools for using the ESRT and UpdateCapsule() to apply firmware updates - https://github.com/rhboot/fwupdate/archive/9.tar.gz - - gnu-efi - efivar-devel - popt-devel - libsmbios-devel - - - build.patch - fwupdate-9-objcopy_detection.patch - - util/admin/fwupdate/pspec.xml - - - fwupdate - - popt - efivar - libsmbios - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/bash-completion - /usr/share/locale - - - - fwupdate-devel - - fwupdate - - - /usr/include - /usr/lib/pkgconfig - - - - - 2019-01-20 - 9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-09 - 9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-11 - 9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - pisiyap - https://github.com/Rmys/pisiyap - - Stefan Gronewold - groni@pisilinux.org - - GPLv3+ - CCPL-Attribution-NonCommercial-NoDerivs-3.0 + GPLv3 app:gui - util.admin - A Simple PiSi source file creator - Basit bir PiSi kaynak dosyası üreticisi - PisiYap is a simple graphical user interface for easily creating PiSi source files. - PisiYap, PiSi kaynak dosyaları üretmek için basit bir kullanıcı arayüzüdür. - pisiyap - https://github.com/Rmys/pisiyap/archive/pisiyap.tar.gz + multimedia.editor + Graphical frontend to create video DVDs/(S)VCDs + Video DVD ve SVCD oluşturmak için grafik arayüz + Devede NG is a rewrite of the Devede DVD disc authoring program. This new +code has been written from scratch, and uses Python3 and Gtk3. It is also +cleaner, which will allow to add new features in the future. + DeVeDeng, neredeyse tüm görüntü biçimlerinden, (ev oynatıcıları için uyumlu) video DVD üretebilen bir uygulamadır. + devede + https://gitlab.com/rastersoft/devedeng/-/archive/4.16.0/devedeng-4.16.0.tar.bz2 - qt5-base-devel - python-qt5-devel - python-setuptools - qt5-linguist + gtk3-devel + ffmpeg-devel + gettext-devel + python3-devel - util/admin/pisiyap/pspec.xml + multimedia/editor/devedeNG/pspec.xml - pisiyap + devedeNG - python-qt5 - python-sip - xdg-utils + gtk3 + ffmpeg + cdrkit + python3 + mplayer + vcdimager + dvdauthor + python-gtk + python3-cairo + python3-urllib3 + python3-setuptools + python3-pygobject3 /usr/bin /usr/lib - /usr/share/applications - /usr/share/pisiyap - /usr/share/icons - /usr/share/pixmaps + /usr/share /usr/share/doc - - - - kde-servicemenu-pisiyap - PiSi related service menus - Paketlemeyle ilgili servis menüleri - PiSiYap servicemenus provides some useful service menus for lazy packagers. - PiSiYap ile gelen servis menüleri, konsol açmaya erinen paketçiler için çeşitli servis menüleri sunar. - - pisiyap - plasma-workspace - - - /usr/share/kservices5/ServiceMenus + /usr/share/man/man1 - - 2020-01-20 - 0.7b - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-03 - 0.7b - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-17 - 0.7b - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2018-05-16 - 0.7b - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2020-09-27 + 4.16.0 + Version bump. + fury + uglyside@yandex.ru - 2017-06-21 - 0.7b - Rebuild + 2020-03-05 + 4.12.0 + Rebuild. Mustafa Cinasal - muscnsl@gmail.com + muscnsl@pisilinux.org - 2016-05-13 - 0.7b + 2018-12-03 + 4.12.0 First release - Stefan Gronewold - groni@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - systemtap - http://sourceware.org/systemtap/ + dvdauthor + http://dvdauthor.sourceforge.net/ PisiLinux Community admins@pisilinux.org - GPLv2+ + GPLv2 app:console - util.admin - Instrumentation System - Enstrümantasyon sistemi - systemtap is an instrumentation system for systems running Linux 2.6. Developers can write instrumentation to collect data on the operation of the system. - systemtap Linux 2.6 üzerinde çalışan sistemler için tasarlanmış bir enstrümantasyon altyapısıdır. Geliştiriciler, systemtap kullanarak, çalışmakta olan işletim sistemiyle ilgili veri toplamak için özel araçlar yazabilirler. - https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz + multimedia.editor + A simple DVD tool + Basit bir DVD yaratma aracı + dvdauthor is a set of simple tools to help you author a DVD. + dvdauthor DVD oynatıcıya takıldığında sorunsuzca oynatılabilecek bir DVD üretebilen bir uygulamadır. + https://sourceforge.net/projects/dvdauthor/files/dvdauthor-0.7.2.tar.gz - bzip2 - nss-devel - boost-devel - python-devel - sqlite-devel - json-c-devel - ncurses-devel + libpng-devel + gettext-devel libxml2-devel - readline-devel - elfutils-devel - python-setuptools + fribidi-devel + freetype-devel + fontconfig-devel + libdvdread-devel + imagemagick-devel + GraphicsMagick-devel - util/admin/systemtap/pspec.xml + + backport_from_git.patch + + multimedia/editor/dvdauthor/pspec.xml - systemtap + dvdauthor - elfutils - readline - sqlite - python - libgcc - bzip2 - nspr - nss + libpng + fribidi + libxml2 + freetype + fontconfig + libdvdread + GraphicsMagick - /etc /usr/bin + /usr/share/doc /usr/lib /usr/share/man - /usr/share/doc - /run/systemtap - /run/stap-server - /etc/logrotate.d - /var/log/stap-server - /var/cache/systemtap - /usr/share/locale - /usr/share/systemtap/tapset - /usr/share/systemtap/runtime - /usr/libexec/systemtap - /usr/lib/tmpfiles.d/systemtap.conf - /usr/share/systemtap/examples - - - System.Package - - - tmpfiles.conf - - - - systemtap-testsuite - Testsuite allows testing of the entire SystemTap toolchain without having to rebuild from sources - - systemtap - systemtap-sdt-devel - - - /usr/share/systemtap/testsuite - - - - systemtap-sdt-devel - Static probe support tools - systemtap için statik deney desteği araçları - - systemtap - python-devel - sqlite-devel - readline-devel - ncurses-devel - libxml2-devel - json-c-devel - boost-devel - nss-devel - - - /usr/bin/dtrace - /usr/include + /usr/share + + 2020-09-27 + 0.7.2 + Version bump. + fury + uglyside@yandex.ru + - 2020-02-02 - 4.2 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2020-03-05 + 0.7.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-10 - 3.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2018-09-01 + 0.7.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2018-03-22 - 3.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2017-02-03 + 0.7.1 + Rebuild for new Toolchains. + Stefan Gronewold(groni) + groni@pisilinux.org - 2017-11-24 - 3.2 + 2016-07-09 + 0.7.1 First release Osman Erkan osman.erkan@pisilinux.org @@ -279436,37 +199569,147 @@ from a wide variety of machine architectures. - libtree - https://github.com/haampie/libtree + easytag + https://wiki.gnome.org/Apps/EasyTAG - fury - uglyside@yandex.ru + PisiLinux Community + admins@pisilinux.org - MIT - app - util.admin - ldd as a tree. - A tool that turns ldd into a tree. - https://github.com/haampie/libtree/archive/refs/tags/v3.1.0.tar.gz + GPLv2 + app:gui + multimedia.editor + Audio File Tag Viewer/Editor + Ses Dosyaları Etiketlerini Görüntüleme/Düzenleme Yazılımı + EasyTAG is a utility for viewing and editing id tags for MP3, MP2, MP4/AAC, FLAC, Ogg Vorbis, MusePack and Monkey's Audio files. + EasyTAG MP3, MP2, MP4/AAC, FLAC, Ogg Vorbis, Musepack ve Monkey's Audio ses dosyalarının id etiketlerinin görüntülenebileceği ve düzenlenebileceği bir yazılımdır. + easytag + https://download.gnome.org/sources/easytag/2.4/easytag-2.4.3.tar.xz - gcc + itstool + intltool + gtk3-devel + flac-devel + speex-devel + pango-devel + docbook-xml + docbook-xsl + taglib-devel + libogg-devel + id3lib-devel + wavpack-devel + libxslt-devel + libopus-devel + python3-devel + opusfile-devel + libid3tag-devel + libvorbis-devel + gdk-pixbuf-devel + desktop-file-utils + appstream-glib-devel - util/admin/libtree/pspec.xml + + ru_translation.patch + basque_translation.patch + slovenian_translation.patch + + multimedia/editor/easytag/pspec.xml - libtree + easytag - glibc + flac + gtk3 + glib2 + speex + id3lib + libgcc + libogg + taglib + libopus + wavpack + opusfile + libid3tag + libvorbis + gdk-pixbuf - /usr/bin/libtree - /usr/share/man/man1/libtree.1 + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc - 2022-04-14 - 3.1.0 + 2020-12-04 + 2.4.3 + First release. + fury + uglyside@yandex.ru + + + + + + gaupol + https://otsaloma.io/gaupol/ + + PisiLinux Community + admins@pisilinux.org + + GPL-3 + app:gui + multimedia.editor + Editor for text-based subtitle files. + Metin yazı biçimli altyazıları düzenleme aracı + Gaupol is an editor for text-based subtitle files. It supports multiple subtitle file formats and provides means of creating, editing and translating subtitles and timing subtitles to match video. + Metin yazı biçimli altyazıları düzenleme aracıdır. Çeşitli altyazı türlerini desteklemektedir. Ayrıca yazı içeriğini ve zamanlamayı düzeltmenize olanak sağlar. + https://github.com/otsaloma/gaupol/archive/refs/tags/1.11.tar.gz + + gtk3-devel + python3-devel + python3-setuptools + python3-pygobject3-devel + + multimedia/editor/gaupol/pspec.xml + + + gaupol + + gtk3 + python3 + iso-codes + gst-libav + mpv-player + python3-cairo + python3-chardet + gst-plugins-bad + gst-plugins-base + gst-plugins-ugly + gst-plugins-good + python3-pygobject3 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-05-14 + 1.11 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-04 + 1.10.1 First build. fury uglyside@yandex.ru @@ -279475,39 +199718,2082 @@ from a wide variety of machine architectures. - htop - https://htop.dev/ + id3lib + http://id3lib.sourceforge.net/ + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv1 + driver + multimedia.editor + ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık + ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık + ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık + ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık + https://sourceforge.net/projects/id3lib/files/id3lib/3.8.3/id3lib-3.8.3.tar.gz + + zlib-devel + libgcc + + + 00-add-libz-to-compilation.patch + 05-create-m4-directory.patch + 10-fix-compilation-with-cpp-headers.patch + 15-fix-headers-of-main-functions.patch + 20-create-manpages.patch + 30-fix-utf16.patch + 40-deal-with-mkstemp.patch + 50-remove-outdated-check.patch + 60-add-c-wrapper-functions.patch + 60-fix_make_check.patch + 60-id3lib-missing-nullpointer-check.patch + 60-spelling.patch + 61-fix_vbr_stack_smash.patch + + multimedia/editor/id3lib/pspec.xml + + + id3lib + + zlib + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + id3lib-devel + Development files for id3lib + + id3lib + + + /usr/include + + + + + 2020-03-05 + 3.8.3 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 3.8.3 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-17 + 3.8.3 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + ktageditor + https://sourceforge.net/projects/ktageditor/ + + Stefan Gronewold + groni@pisilinux.org + + LGPL + multimedia.editor + KTag Editor is an Audio tag editor developed in Qt5 framework. + KTag Editor is a free open source ID3v tag editor developed in Qt5 framework. Supported files are mp3, wav, ogg, wma, flac, asf + https://sourceforge.net/projects/ktageditor/files/Source/0.2.0/ktageditor.zip + + qt5-base-devel + qt5-phonon-devel + taglib-devel + qt5-phonon-backend-gstreamer + + multimedia/editor/ktageditor/pspec.xml + + + ktageditor + KTag Editor is an Audio tag editor developed in Qt5 framework. + + qt5-base + qt5-phonon + qt5-phonon-backend-gstreamer + libgcc + taglib + + + /usr/bin + /usr/share + + + + + 2020-03-05 + 0.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-21 + 0.2.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + libopenshot + https://openshot.org/ + + Kamil Atlı + suvari@pisilinux.org + + GPL + library + multimedia.editor + A free, open-source C++ library dedicated to delivering high quality video editing, animation, and playback solutions to the world. + Dünyaya yüksek kaliteli video düzenleme, animasyon ve oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığı. + OpenShot Video Library (libopenshot) is a free, open-source C++ library dedicated to delivering high quality video editing, animation, and playback solutions to the world. + OpenShot Video Kitaplığı (libopenshot), dünyaya yüksek kaliteli video düzenleme, animasyon ve oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığıdır. + https://github.com/OpenShot/libopenshot/archive/refs/tags/v0.2.7.tar.gz + + swig + cmake + catch2 + libgcc + doxygen + x264-devel + ruby-devel + glibc-devel + ffmpeg-devel + zeromq-devel + openmp-devel + opencv-devel + python3-pyzmq + python3-devel + qt5-svg-devel + jsoncpp-devel + qt5-base-devel + protobuf-devel + alsa-lib-devel + python3-qt5-devel + libopenshot-audio-devel + imagemagick-devel + qt5-multimedia-devel + + multimedia/editor/libopenshot/pspec.xml + + + libopenshot + + ffmpeg + libgcc + zeromq + jsoncpp + libgomp + python3 + qt5-base + imagemagick + libopenshot-audio + + + /usr/lib/python3.9/site-packages + /usr/lib/libopenshot_protobuf.so* + /usr/lib/libopenshot.so* + /usr/share/doc + + + + libopenshot-devel + Development files for libopenshot + + libopenshot + + + /usr/include + + + + + 2021-12-09 + 0.2.7 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libopenshot-audio + https://openshot.org/ + + Kamil Atlı + suvari@pisilinux.org + + GPLv3 + library + multimedia.editor + A free, open-source C++ library dedicated to delivering high quality audio editing and audio playback solutions. + Yüksek kaliteli ses düzenleme ve ses oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığı. + OpenShot Audio Library (libopenshot-openshot) is a free, open-source C++ library dedicated to delivering high quality audio editing and audio playback solutions to the world. + OpenShot Ses Kitaplığı (libopenshot-openshot), dünyaya yüksek kaliteli ses düzenleme ve ses oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığıdır. + https://github.com/OpenShot/libopenshot-audio/archive/refs/tags/v0.2.2.tar.gz + + cmake + zlib-devel + glibc-devel + python3-devel + alsa-lib-devel + freetype-devel + + multimedia/editor/libopenshot-audio/pspec.xml + + + libopenshot-audio + + zlib + libgcc + alsa-lib + + + /usr/bin + /usr/lib/libopenshot-audio.so* + /usr/share/doc + /usr/share/man/man1 + + + + libopenshot-audio-devel + Development files for libopenshot-audio + + libopenshot-audio + + + /usr/include + /usr/lib/cmake + + + + + 2021-12-07 + 0.2.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + ogre-next + https://github.com/OGRECave/ogre-next + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2 + library + multimedia.editor + Scene-oriented, flexible 3D engine written in C++ + C++ ile yazılmış, sahne odaklı, esnek 3B motor + Ogre-Next is a 3D graphics rendering engine. Not to be confused with a game engine which provides Networking, Sound, Physics, etc. + Ogre-Next, bir 3D grafik işleme motorudur. Ağ, Ses, Fizik vb. Sağlayan bir oyun motoruyla karıştırılmamalıdır. + https://github.com/OGRECave/ogre-next/archive/refs/tags/v2.3.0.tar.gz + + git + cmake + ninja + doxygen + mesa-devel + zlib-devel + boost-devel + libXt-devel + vulkan-devel + openvr-devel + libX11-devel + dejavu-fonts + libXaw-devel + cppunit-devel + libsdl2-devel + zziplib-devel + openssl-devel + tinyxml-devel + python3-devel + libglvnd-devel + mesa-glu-devel + graphviz-devel + freetype-devel + rapidjson-devel + libXrandr-devel + FreeImage-devel + + multimedia/editor/ogre-next/pspec.xml + + + ogre-next + + zlib + mesa + libXt + libgcc + openvr + libX11 + libXaw + openssl + tinyxml + doxygen + cppunit + libsdl2 + zziplib + freetype + graphviz + mesa-glu + libglvnd + FreeImage + rapidjson + libXrandr + dejavu-fonts + + + /usr/bin + /usr/lib/OGRE + /usr/lib/libOgreHlmsPbs.so* + /usr/lib/libOgreMeshLodGenerator.so* + /usr/lib/libOgreOverlay.so* + /usr/lib/libOgreSceneFormat.so* + /usr/lib/libOgreMain.so* + /usr/lib/libOgreHlmsUnlit.so* + /usr/share/OGRE + /usr/share/doc + + + + ogre-next-devel + Development files for ogre-next + + ogre-next + + + /usr/include + /usr/lib/OGRE/cmake + /usr/lib/pkgconfig + + + + + 2022-04-30 + 2.3.0 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + openshot + http://www.openshotvideo.com + + Kamil Atlı + suvari@pisilinux.org + + GPLv3 + app:gui + multimedia.editor + An award-winning free and open-source video editor. + Ödüllü, ücretsiz ve açık kaynaklı bir video düzenleyici. + OpenShot Video Editor is an award-winning free and open-source video editor and is dedicated to delivering high quality video editing and animation solutions to the world. + OpenShot Video Editor, ödüllü ücretsiz ve açık kaynaklı bir video düzenleyicidir ve kendini dünyaya yüksek kaliteli video düzenleme ve animasyon çözümleri sunmaya adamıştır. + openshot + https://github.com/OpenShot/openshot-qt/archive/refs/tags/v2.6.1.tar.gz + + cmake + ffmpeg-devel + python3-devel + python3-pyzmq + qt5-base-devel + python-gtk-devel + libopenshot-devel + python3-requests + python3-qt5-devel + python3-setuptools + libopenshot-audio-devel + + + openshot-2.6.1-no_metric_default.patch + + multimedia/editor/openshot/pspec.xml + + + openshot + + ffmpeg + python3 + qt5-base + python-gtk + python-mlt + libopenshot + python3-qt5 + python3-pyzmq + libopenshot-audio + + + /usr/bin + /usr/lib + /usr/lib/python2.7/site-packages/openshot/locale + /usr/share/applications + /usr/share/mime + /usr/share/pixmaps + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/metainfo + + + + + 2021-12-07 + 2.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + picard + http://musicbrainz.org/doc/MusicBrainz_Picard + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + app:gui + multimedia.editor + MusicBrainz Picard is the official MusicBrainz tagger. + MusicBrainz Picard is a cross-platform (Linux/MacMusicBrainz Picard resmi MusicBrainz etiketleyicisidir. + Picard supports the majority of audio file formats, is capable of using audio fingerprints (AcoustIDs), performing CD lookups and disc ID submissions, and it has excellent Unicode support. Additionally, there are several plugins available that extend Picard's features. + Picard, ses dosyası formatlarının çoğunu destekler, ses parmak izlerini (AcoustID'ler) kullanabilir, CD aramaları ve disk kimliği gönderimleri gerçekleştirebilir ve mükemmel Unicode desteğine sahiptir. Ek olarak, Picard'ın özelliklerini genişleten birkaç eklenti vardır. + http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.3.2.tar.gz + + bzip2 + python3-devel + python3-mutagen + libdiscid-devel + python3-setuptools + musicbrainz5-devel + python3-qt5-devel + + multimedia/editor/picard/pspec.xml + + + picard + + bzip2 + libdiscid + python3-qt5 + musicbrainz5 + python-discid + libchromaprint + python3-mutagen + + + /usr/bin + /usr/lib + /usr/share/icons/highcolor + /usr/share/applications + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2020-05-11 + 2.3.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + pipewire + https://pipewire.org/ PisiLinux Community admins@pisilinux.org - GPL-2 - app:console - util.admin - Visionneur de processus pour Linux - An interactive process viewer for Linux. - Linux için etkileşimli bir süreç izleyici - htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. - htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. - htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. - htop - https://github.com/htop-dev/htop/archive/refs/tags/3.1.1.tar.gz + LGPLv2.1 + library + multimedia.editor + Server and user space API to deal with multimedia pipelines + Server and user space API to deal with multimedia pipelines + Server and user space API to deal with multimedia pipelines + Server and user space API to deal with multimedia pipelines + https://github.com/PipeWire/pipewire/archive/0.3.50.tar.gz - python3 - libcap-devel + git + meson + doxygen + valgrind + sbc-devel + dbus-devel + avahi-devel + avahi-libs + glib2-devel + eudev-devel + libusb-devel + vulkan-devel + vulkan-headers + ffmpeg-devel ncurses-devel - gettext-devel - libunwind-devel - lm_sensors-devel + libsdl2-devel + readline-devel + alsa-lib-devel + gstreamer-devel + libfdk-aac-devel + libsndfile-devel + bluez-libs-devel + pulseaudio-libs-devel + gst-plugins-base-devel + jack-audio-connection-kit-devel - util/admin/htop/pspec.xml + multimedia/editor/pipewire/pspec.xml - htop + pipewire - libcap + sbc + dbus + glib2 + eudev + vulkan + ffmpeg + libusb + alsa-lib + gstreamer + libfdk-aac + libsndfile + avahi-libs + bluez-libs + pulseaudio-libs + gst-plugins-base + jack-audio-connection-kit + + + /usr/bin + /etc + /lib/udev/rules.d/90-pipewire-alsa.rules + /usr/lib + /usr/share + /usr/share/doc + + + + pipewire-devel + Development files for pipewire + + pipewire + + + /usr/include + /usr/lib/pkgconfig + + + + pipewire-docs + Development files for pipewire + + pipewire + + + /usr/share/doc/pipewire/html + + + + + 2022-04-19 + 0.3.50 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-12 + 0.3.43 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-06 + 0.3.40 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-24 + 0.3.37 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 0.3.34 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-01 + 0.3.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-19 + 0.3.19 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2021-01-06 + 0.3.19 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2020-03-30 + 0.3.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + pipewire-0.2 + https://pipewire.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.editor + Server and user space API to deal with multimedia pipelines, 0.2.x series + Server and user space API to deal with multimedia pipelines, 0.2.x series + https://github.com/PipeWire/pipewire/archive/0.2.7.tar.gz + + meson + doxygen + valgrind-devel + sbc-devel + dbus-devel + glib2-devel + eudev-devel + alsa-lib-devel + + multimedia/editor/pipewire-0.2/pspec.xml + + + pipewire-0.2 + + sbc + dbus + glib2 + eudev + alsa-lib + + + /usr/lib + /usr/share + /usr/share/doc + + + + pipewire-0.2-devel + Development files for pipewire-0.2 + + pipewire-0.2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-03-19 + 0.2.7 + Fix file conflicts + PisiLinux Community + admins@pisilinux.org + + + 2021-01-19 + 0.2.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + puddletag + https://docs.puddletag.net/ + + Pisilinux Community + admins@pisilinux.org + + GPL-3 + app:gui + multimedia.editor + Puddletag is an audio tag editor (primarily created) for GNU/Linux. + Linux üzerinde mp3 etiketlerini düzenlemenizi sağlayan bir araç + Supported formats: ID3v1, ID3v2 (mp3), MP4 (mp4, m4a, etc.), VorbisComments (ogg, flac), Musepack (mpc), Monkey’s Audio (.ape) and WavPack (wv). + Puddletag programı, kolay görünümü sayesinde mp3 etiketlerinde rahatça değişiklik yapabilmenizi sağlar. ID3v1, ID3v2, mp4, ogg, flac,mps, ape, wv formatlarını destekler. + https://files.pythonhosted.org/packages/source/p/puddletag/puddletag-2.1.1.tar.gz + + python3-qt5 + python3-devel + python3-setuptools + + multimedia/editor/puddletag/pspec.xml + + + puddletag + + python3-qt5 + libchromaprint + python3-mutagen + python3-configobj + python3-pyparsing + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-02-05 + 2.1.1 + Minor ver. bump + fury + uglyside@yandex.ru + + + 2022-02-04 + 2.1.0 + First release + fury + uglyside@yandex.ru + + + + + + tageditor + https://github.com/Martchus/tageditor + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + multimedia.editor + A tag editor with Qt GUI and command-line interface. + A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska. + https://github.com/Martchus/tageditor/archive/refs/tags/v3.7.0.tar.gz + + cmake + qt5-linguist + cppunit-devel + qt5-base-devel + tagparser-devel + qtutilities-devel + cpp-utilities-devel + qt5-multimedia-devel + + multimedia/editor/tageditor/pspec.xml + + + tageditor + + libgcc + qt5-base + tagparser + qtutilities + cpp-utilities + qt5-declarative + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2022-04-14 + 3.7.0 + Version bump + fury + uglyside@yandex.ru + + + 2022-01-18 + 3.6.0 + Version bump + fury + uglyside@yandex.ru + + + 2021-11-04 + 3.5.0 + First build. + fury + uglyside@yandex.ru + + + + + + vapoursynth + https://vapoursynth.com/doc/ + + fury + uglyside@yandex.ru + + LGPL-2.1 + app:console + multimedia.editor + A video processing framework with simplicity in mind. + VapourSynth is an application for video manipulation. It has a core library written in C++ and a Python module to allow video scripts to be created. + https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R57.tar.gz + + nasm + cython3 + python3-devel + libzimg-devel + python3-sphinx + + multimedia/editor/vapoursynth/pspec.xml + + + vapoursynth + + ffmpeg + python3 + libzimg + + + /usr/bin + /usr/lib + /usr/lib/python3.9/site-packages/ + /usr/share/man + + + + vapoursynth-doc + + /usr/share/vapoursynth/html + + + + vapoursynth-devel + + vapoursynth + libzimg-devel + python3-devel + + + /usr/lib/pkgconfig + /usr/include/vapoursynth + + + + + 2021-12-11 + 57 + First build + fury + uglyside@yandex.ru + + + + + + graphviz + https://www.graphviz.org/ + + fury + uglyside@yandex.ru + + EPL + app + multimedia.graphics + Open source graph drawing software. + Açık kaynak bir grafik çizim programıdır + Graphviz is open source graph visualization software which has web and interactive graphical interfaces, and auxiliary tools and libraries. Graphviz has many useful features for diagrams, such as options for colors, fonts, tabular node layouts, line styles, and custom shapes. + Graphviz web ve etkileşimli grafik arayüzüne, yardımcı araç ve kütüphanelere sahip açık kaynak bir grafik canlandırma yazılımıdır. Graphviz renk, font, çizelge planı, çizgi stili ayarları ve özel şekiller gibi diyagramlara yönelik bir çok kullanışlı özelliğe sahiptir. + https://gitlab.com/graphviz/graphviz/-/archive/2.50.0/graphviz-2.50.0.tar.bz2 + + perl + swig + libtool + doxygen + gd-devel + tcl-devel + guile-devel + pango-devel + cairo-devel + libXt-devel + libX11-devel + libXaw-devel + libXmu-devel + python3-devel + librsvg-devel + freeglut-devel + mesa-glu-devel + ghostscript-devel + + multimedia/graphics/graphviz/pspec.xml + + + graphviz + + gd + zlib + perl + glib2 + guile + pango + cairo + expat + libXt + libX11 + libXaw + libXmu + libgcc + python3 + librsvg + ghostscript + libtool-ltdl + + + /usr/bin + /usr/lib + /usr/share/graphviz + /usr/share/man + + + + graphviz-docs + + /usr/share/graphviz/doc + + + + graphviz-demo + + graphviz + + + /usr/share/graphviz/demo + + + + graphviz-devel + graphviz için geliştirme dosyaları + + graphviz + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-18 + 2.50.0 + Version bump + fury + uglyside@yandex.ru + + + 2021-06-10 + 2.47.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-24 + 2.46.1 + Version bump. + fury + uglyside@yandex.ru + + + 2017-01-18 + 2.40.1 + First release. + Ali Algul + aligulle3801@gmail.com + + + + + + aalib + http://aa-project.sourceforge.net/aalib/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + An ASCII-graphics Library + Bir ASCII-grafik Kitaplığı + Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. + Aalib is an ASCII-graphics library generating ASCII character outputs. + AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. + Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. + mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz + + gpm + ncurses-devel + + + m4.patch + + multimedia/graphics/aalib/pspec.xml + + + aalib + + gpm ncurses - libunwind + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + aalib-devel + Development files for aalib + aalib için geliştirme dosyaları + + aalib + + + /usr/share/aclocal + /usr/include + /usr/share/man/man3 + + + + + 2022-01-17 + 1.4_rc5 + Rebuild. + Pisilinux Community + admins@pisilinux.org + + + 2020-01-12 + 1.4_rc5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.4_rc5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 1.4_rc5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4_rc5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.4_rc5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + assimp + http://assimp.sourceforge.net/index.html + + Stefan Gronewold + groni@pisilinux.org + + BSD + multimedia.graphics + A JavaScript 3D rendering API for Qt Quick + APIs are provided for C and C++. There are various bindings to other languages (C#, Java, Python, Delphi, D). Assimp also runs on Android and iOS. + https://github.com/assimp/assimp/archive/v5.0.1.tar.gz + + ninja + boost-devel + cmake + glib2-devel + zlib-devel + pkgconfig + minizip-devel + git + + + assimp-3.3.1-install-pkgconfig.patch + + multimedia/graphics/assimp/pspec.xml + + + assimp + Portable Open Source library to import various well-known 3D model formats in an uniform manner + + libgcc + minizip + zlib + + + /usr/bin + /usr/lib + /usr/share/doc + + + + assimp-devel + Development files for assimp + + boost-devel + assimp + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-01-03 + 5.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 5.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-05 + 4.1.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 4.1.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-28 + 4.1.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-21 + 3.3.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + azpainter + http://azsky2.html.xdomain.jp/soft/azpainter.html + + fury + uglyside@yandex.ru + + GPLv3 + app:gui + multimedia.graphics + A full color painting software for illustration drawing. + Full color painting software for Linux for illustration drawing. This is not suitable for dot editing. Since the color is handled with 16 bit color (15 bit fixed point number) internally, the accuracy of color rises, but the memory is consumed correspondingly. + https://gitlab.com/azelpg/azpainter/-/archive/v3.0.5/azpainter-v3.0.5.tar.bz2 + + ninja + tiff-devel + webp-devel + libXi-devel + libX11-devel + libpng-devel + libXext-devel + freetype-devel + libXcursor-devel + fontconfig-devel + libjpeg-turbo-devel + + multimedia/graphics/azpainter/pspec.xml + + + azpainter + + zlib + tiff + webp + libXi + libpng + libX11 + libXext + freetype + libXcursor + fontconfig + libjpeg-turbo + + + /usr/bin + /usr/share + + + + + 2022-04-14 + 3.0.5 + Ver. bump. + fury + uglyside@yandex.ru + + + 2021-12-11 + 3.0.4 + Ver. bump. + fury + uglyside@yandex.ru + + + 2021-07-10 + 3.0.3 + Ver. bump. + fury + uglyside@yandex.ru + + + 2021-07-02 + 3.0.2 + Ver. bump. + fury + uglyside@yandex.ru + + + 2021-05-25 + 3.0.0 + Ver. bump. + fury + uglyside@yandex.ru + + + 2020-12-31 + 2.1.7 + Ver. bump. + fury + uglyside@yandex.ru + + + 2020-04-22 + 2.1.6 + Ver. bump. + fury + uglyside@yandex.ru + + + 2020-01-17 + 2.1.5 + First build. + fury + uglyside@yandex.ru + + + + + + azpainterb + http://azsky2.html.xdomain.jp/soft/azpainterb.html + + fury + uglyside@yandex.ru + + GPLv3 + app:gui + multimedia.graphics + A simple full-color paint software. + Paint software for Linux which can be used for various purposes such as dot editing, illustration, retouching, etc. You can sense pen pressure with XInput2. + http://azsky2.html.xdomain.jp/arc/azpainterb-1.1.3.tar.xz + + libXi-devel + libX11-devel + libpng-devel + libXext-devel + freetype-devel + fontconfig-devel + libjpeg-turbo-devel + + multimedia/graphics/azpainterb/pspec.xml + + + azpainterb + + zlib + libXi + libpng + libX11 + libXext + freetype + fontconfig + libjpeg-turbo + + + /usr/bin + /usr/share + + + + + 2020-12-31 + 1.1.3 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-04-22 + 1.1.2 + Ver. bump + fury + uglyside@yandex.ru + + + 2019-04-30 + 1.1.1 + First build. + fury + uglyside@yandex.ru + + + + + + babl + http://gegl.org/babl + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + multimedia.graphics + A dynamic, any to any, pixel format translation library + Dinamik piksel biçimi dönüştürme kütüphanesi + babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. + babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. + https://download.gimp.org/pub/babl/0.1/babl-0.1.90.tar.xz + + meson + vala-devel + lcms2-devel + gobject-introspection-devel + + multimedia/graphics/babl/pspec.xml + + + babl + + lcms2 + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/vala + + + + babl-devel + Development files for babl + babl için geliştirme dosyaları + + babl + lcms2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-03-22 + 0.1.90 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-06 + 0.1.88 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-21 + 0.1.80 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 0.1.74 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-29 + 0.1.66 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2019-04-24 + 0.1.62 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2019-03-24 + 0.1.60 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2018-12-25 + 0.1.60 + Version Bump. + Mustafa Cinasal + admin@pisilinux.org + + + 2018-08-05 + 0.1.46 + Version Bump. + Mustafa Cinasal + admin@pisilinux.org + + + 2018-04-27 + 0.1.46 + Version Bump. + Mustafa Cinasal + admin@pisilinux.org + + + 2017-12-21 + 0.1.38 + Version Bump. + Mustafa Cinasal + admin@pisilinux.org + + + 2017-02-05 + 0.1.24 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.1.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-07 + 0.1.12 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + darktable + https://darktable.org/ + + Stefan Gronewold + groni@pisilinux.org + + GPL-3.0 + multimedia.graphics + darktable is an open source photography workflow application and RAW developer. + Açık kaynak fotoğraf iş akışı uygulaması ve ham(raw) geliştirme ortamı + darktable is an open source photography workflow application and RAW developer. A virtual lighttable and darkroom for photographers. + darktable, açık kaynak fotoğraf iş akışı uygulaması ve ham(raw) geliştirme ortamı sunan gelişmiş bir araçtır. + https://github.com/darktable-org/darktable/releases/download/release-3.4.1/darktable-3.4.1.tar.xz + + llvm + cmake + libgomp + intltool + llvm-libs + llvm-mlir + llvm-polly + gtk2-devel + gtk3-devel + mesa-devel + webp-devel + tiff-devel + cups-devel + curl-devel + zlib-devel + exiv2-devel + gconf-devel + glib2-devel + lcms2-devel + colord-devel + libX11-devel + libpng-devel + sqlite-devel + lensfun-devel + librsvg-devel + libsdl2-devel + libxml2-devel + pugixml-devel + libsoup-devel + openexr-devel + mesa-glu-devel + flickcurl-devel + iso-codes-devel + json-glib-devel + libXrandr-devel + libsecret-devel + openjpeg2-devel + colord-gtk-devel + libgnome-keyring + libgphoto2-devel + llvm-clang-devel + ghostscript-devel + desktop-file-utils + libjpeg-turbo-devel + GraphicsMagick-devel + + + darktable-openexr3.patch + + multimedia/graphics/darktable/pspec.xml + + + darktable + darktable is an open source photography workflow application and RAW developer. + + webp + cups + curl + gtk3 + zlib + mesa + tiff + gtk2 + cairo + glib2 + lcms2 + pango + colord + libX11 + libgcc + libpng + sqlite + libxml2 + pugixml + libsdl2 + lensfun + librsvg + libsoup + libgomp + mesa-glu + flickcurl + libXrandr + libsecret + openjpeg2 + json-glib + colord-gtk + exiv2-libs + gdk-pixbuf + libgphoto2 + ghostscript + openexr-libs + libjpeg-turbo + GraphicsMagick + libgnome-keyring + + + /etc + /usr/lib/ + /usr/share/man + /usr/bin + /usr/share/icons + /usr/share/appdata + /usr/share/darktable + /usr/lib/darktable + /usr/share/applications + /usr/share/doc/darktable + /usr/share/locale + + + + + 2021-02-24 + 3.4.1 + Version bump and rebuild. + Blue Devil + bluedevil@sctzine.com + + + 2021-01-19 + 3.4.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-09-20 + 3.2.1 + Minor version bump and translations added + Blue Devil + bluedevil@sctzine.com + + + 2020-03-28 + 3.0.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-03-05 + 3.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-05 + 2.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-13 + 2.4.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-01 + 2.2.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-14 + 2.2.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 2.2.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-15 + 2.2.4 + Rebuild with new toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-13 + 2.0.7 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + dia + https://live.gnome.org/Dia + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.graphics + Diagram editor + Diyagram editörü. + Dia is a GTK+ based diagram creation program for GNU/Linux, + Dia, GTK tabanlı diyagram çizme ve düzenleme programıdır. + dia + http://ftp.gnome.org/pub/gnome/sources/dia/0.97/dia-0.97.3.tar.xz + + intltool + qt5-base-devel + cairo-devel + python-devel + zlib-devel + freetype-devel + gdk-pixbuf-devel + gtk2-devel + glib2-devel + pango-devel + libxml2-devel + libpng-devel + libart_lgpl-devel + atk-devel + docbook-xsl + perl-XML-Parser + libxslt-devel + fontconfig-devel + + multimedia/graphics/dia/pspec.xml + + + dia + + python + zlib + freetype + cairo + gdk-pixbuf + gtk2 + pango + libxml2 + libpng + libart_lgpl + atk + libxslt + fontconfig + glib2 + + + /usr/bin + /usr/lib/dia + /usr/share/applications + /usr/share/icons + /usr/share/oaf + /usr/share/dia + /usr/share/mime-info + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + + 2020-03-05 + 0.97.3 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-08-05 + 0.97.3 + Rebuild with new toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2017-04-15 + 0.97.3 + Rebuild with new toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-07 + 0.97.3 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + enblend + http://enblend.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.graphics + Image blending with multiresolution splines + Resim harmanlama aracı + enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see. + enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar. + mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.5.tar.gz + + cmake + gsl-devel + zlib-devel + tiff-devel + vigra-devel + boost-devel + lcms2-devel + libpng-devel + openexr-devel + imagemagick-devel + libjpeg-turbo-devel + + + gentoo_prepare.patch + + multimedia/graphics/enblend/pspec.xml + + + enblend + + gsl + tiff + boost + lcms2 + vigra + libgcc + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share/info + + + + + 2020-10-29 + 4.1.5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-03-05 + 4.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-10-05 + 4.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-01 + 4.1.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 4.1.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-17 + 4.1.3 + Rebuild for new toolchain. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 4.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-27 + 4.1.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + fbida + https://www.kraxel.org/blog/linux/fbida/ + + fury + uglyside@yandex.ru + + GPLv2 + app + multimedia.graphics + The fbida project contains a few applications for viewing and editing images, with the main focus being photos. + The fbida project contains a few applications for viewing and editing images, with the main focus being photos. + https://www.kraxel.org/releases/fbida/fbida-2.14.tar.gz + + gc-devel + util-linux + mesa-devel + lirc-devel + tiff-devel + webp-devel + cairo-devel + libdrm-devel + libpng-devel + giflib-devel + pixman-devel + libXpm-devel + libpcd-devel + sane-backends + libexif-devel + freetype-devel + libepoxy-devel + openmotif-devel + fontconfig-devel + imagemagick-devel + poppler-glib-devel + libjpeg-turbo-devel + + + gcc10_build_fix.patch + + multimedia/graphics/fbida/pspec.xml + + + fbida + + mesa + tiff + webp + cairo + libXt + giflib + libX11 + libXpm + libdrm + libpcd + libpng + pixman + libXext + libexif + freetype + libepoxy + openmotif + fontconfig + imagemagick + ghostscript + poppler-glib + libjpeg-turbo /usr/bin @@ -279517,90 +201803,4570 @@ from a wide variety of machine architectures. - - 2021-10-17 - 3.1.1 - Version bump. + + 2020-12-06 + 2.14 + First build fury uglyside@yandex.ru - - 2020-09-11 - 3.0.1 - Community version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-09-09 - 2.0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 2.0.2 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 1.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-17 - 1.0.3 - First release - Kamil Atlı - burakerturk@pisilinux.org - - utempter - http://www.redhat.com/ + feh + https://feh.finalrewind.org/ + + Mogyorósi Petra + squeakymouse@protonmail.com + + MIT + multimedia.graphics + feh – a fast and light image viewer + feh is an X11 image viewer aimed mostly at console users. Unlike most other viewers, it does not have a fancy GUI, but simply displays images. It is controlled via commandline arguments and configurable key/mouse actions. It is released under a variant of the MIT license. + https://feh.finalrewind.org/feh-3.3.tar.bz2 + + curl-devel + imlib2-devel + libX11-devel + libXinerama-devel + libexif-devel + libpng-devel + libXt-devel + + + nolocal.patch + + multimedia/graphics/feh/pspec.xml + + + feh + feh – a fast and light image viewer + + curl + imlib2 + libX11 + libXinerama + libexif + libpng + + + /usr/bin/* + /usr/share/applications/* + /usr/share/doc/* + /usr/share/feh/* + /usr/share/icons/* + /usr/share/man/* + + + + + 2020-03-05 + 3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-01 + 3.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-06-28 + 2.27 + Latest version + Mogyorósi Petra + squeakymouse@protonmail.com + + + + + + ffmpegthumbnailer + https://github.com/dirkvdb/ffmpegthumbnailer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + multimedia.graphics + Lightweight video thumbnailer that can be used by file managers to create thumbnails for video files. + Dosya yöneticileri için hafif görüntü önizleyicisi + FFmpegthumbnailer is a lightweight video thumbnailer that can be used by file managers to create thumbnails for your video files. The thumbnailer uses ffmpeg to decode frames from the video files, so supported videoformats depend on the configuration flags of ffmpeg. + Ffmpeg Thumbnailer, görüntü dosyalarınız için dosya yöneticilerinizde önizlemeler oluşturmaya yarar. + https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/2.2.2/ffmpegthumbnailer-2.2.2.tar.bz2 + + libjpeg-turbo-devel + ffmpeg-devel + libpng-devel + zlib-devel + cmake + + multimedia/graphics/ffmpegthumbnailer/pspec.xml + + + ffmpegthumbnailer + + libjpeg-turbo + ffmpeg + libgcc + libpng + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + ffmpegthumbnailer-devel + Development files for ffmpegthumbnailer + Ffmpegthumbnailer için geliştirme dosyaları + + ffmpegthumbnailer + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-12-06 + 2.2.2 + First Beta release. + fury + uglyside@yandex.ru + + + + + + flameshot + https://flameshot.org/ + + Idris Kalp + idriskalp@gmail.com + + GPLv3 + app:gui + multimedia.graphics + Powerful yet simple to use screenshot software. + Powerful yet simple to use screenshot software. + Flameshot is a free and open-source, cross-platform tool to take screenshots with many built-in features to save you time. + Flameshot is a free and open-source, cross-platform tool to take screenshots with many built-in features to save you time. + https://github.com/flameshot-org/flameshot/archive/refs/tags/v11.0.0.tar.gz + + cmake + qt5-linguist + qt5-svg-devel + qt5-base-devel + kguiaddons-devel + + + flameshot-wayland-clipboard.patch + + multimedia/graphics/flameshot/pspec.xml + + + flameshot + + grim + libgcc + qt5-svg + qt5-base + kguiaddons + icon-theme-hicolor + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-02-21 + 11.0.0 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + geeqie + http://www.geeqie.org/ + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + multimedia.graphics + Geeqie is a lightweight image viewer for Linux, BSDs and compatibles. + Geeqie can be used as a simple, fast, database-free image viewer, but equally it can be used to manage large collections of images. + https://github.com/BestImageViewer/geeqie/releases/download/v1.7.2/geeqie-1.7.2.tar.xz + + doxygen + intltool + lua-devel + gtk2-devel + tiff-devel + webp-devel + lirc-devel + lcms2-devel + lua51-devel + exiv2-devel + libraw-devel + libheif-devel + gettext-devel + openjpeg2-devel + libarchive-devel + libjpeg-turbo-devel + ffmpegthumbnailer-devel + + + Open_archive_not_working.patch + + multimedia/graphics/geeqie/pspec.xml + + + geeqie + + lua + gtk2 + tiff + webp + lirc + exiv2 + fbida + cairo + glib2 + lcms2 + lua51 + pango + zenity + libgcc + libraw + gphoto2 + libheif + openjpeg2 + exiv2-libs + gdk-pixbuf + libarchive + libjpeg-turbo + ffmpegthumbnailer + perl-Image-ExifTool + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man/man1 + /usr/share/doc + + + + + 2022-02-04 + 1.7.2 + Version bump. + fury + uglyside@yandex.ru + + + 2022-01-18 + 1.7.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-06 + 1.6 + First build. + fury + uglyside@yandex.ru + + + + + + gegl + http://gegl.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + LGPLv3+ + library + app:console + multimedia.graphics + A graph based image processing framework + Graf tabanlı resim işleme altyapısı + gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. + gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. + https://download.gimp.org/pub/gegl/0.4/gegl-0.4.36.tar.xz + + ruby + meson + asciidoc + intltool + enscript + rubygems + lua-devel + vala-devel + gtk2-devel + webp-devel + tiff-devel + cairo-devel + pango-devel + exiv2-devel + lcms2-devel + ffmpeg-devel + libsdl2-devel + libv4l-devel + jasper-devel + luajit-devel + libraw-devel + librsvg-devel + openexr-devel + lensfun-devel + libspiro-devel + json-glib-devel + libgexiv2-devel + poppler-glib-devel + libjpeg-turbo-devel + gobject-introspection-devel + babl-devel + + multimedia/graphics/gegl/pspec.xml + + + gegl + A graph based image processing framework + + tiff + webp + babl + glib2 + lcms2 + cairo + pango + ffmpeg + libraw + libgcc + jasper + libpng + libsdl2 + librsvg + libspiro + json-glib + libgexiv2 + gdk-pixbuf + openexr-libs + libjpeg-turbo + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/locale/ + + + + gegl-devel + Development files for gegl + gegl için geliştirme dosyaları + gegl-devel, gegl için geliştirme dosyalarını içerir. + + babl-devel + glib2-devel + json-glib-devel + gegl + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc/html + + + + + 2022-03-22 + 0.4.36 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-17 + 0.4.32 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-06 + 0.4.32 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-21 + 0.4.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-19 + 0.4.22 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 0.4.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 0.4.16 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-27 + 0.4.16 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-29 + 0.4.16 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-25 + 0.4.14 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-25 + 0.4.12 + Rebuild Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.3.34 + Rebuild Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 0.3.34 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 0.3.26 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-21 + 0.3.26 + update + Mustafa Cinasal + admin@pisilinux.org + + + 2017-03-05 + 0.3.14 + update + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-15 + 0.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-20 + 0.2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gegl02 + http://gegl.org + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + LGPLv3+ + library + app:console + multimedia.graphics + A graph based image processing framework + Graf tabanlı resim işleme altyapısı + gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. + gegl02, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. + http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.2.tar.bz2 + + libspiro-devel + json-glib-devel + openexr-devel + ffmpeg-devel + libsdl-devel + libv4l-devel + jasper-devel + cairo-devel + pango-devel + exiv2-devel + babl-devel + libjpeg-turbo-devel + gtk2-devel + lua-devel + asciidoc + intltool + ruby + zlib-devel + openexr-libs + librsvg-devel + lcms2-devel + gettext-devel + + + gegl-0.2.0-ffmpeg-4-0-compat.patch + gegl-0.2.0-ffmpeg-av_frame_alloc.patch + gegl-0.2.0-fix-without-exiv2.patch + gegl-0.2.0-libopenraw-0.1.patch + gegl-0.2.0-underlinking.patch + + multimedia/graphics/gegl02/pspec.xml + + + gegl02 + + glib2 + gdk-pixbuf + libspiro + jasper + libpng + libsdl + cairo + pango + babl + zlib + openexr-libs + librsvg + lcms2 + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale/ + + + + gegl02-devel + Development files for gegl02 + gegl02 için geliştirme dosyaları + + gegl02 + glib2-devel + babl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc/html + + + + + 2021-10-27 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-20 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-27 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-29 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.2.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 0.2.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 0.2.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 0.2.0 + fixed file conflict with gegl1.x + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-12-20 + 0.2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + geh + https://github.com/software-revive/geh-rv + + fury + uglyside@yandex.ru + + MIT + app:gui + multimedia.graphics + A simple command line image viewer. + Geh is a simple command line image viewer written in C/Gtk+ with various nice features. + https://github.com/software-revive/geh-rv/releases/download/0.4.0/geh-0.4.0.tar.gz + + libXt + libICE + gtk3-devel + gnome-common + + multimedia/graphics/geh/pspec.xml + + + geh + + gtk3 + pango + gdk-pixbuf + + + /usr/bin + /usr/share/doc + + + + + 2020-12-18 + 0.4.0 + First build. + fury + uglyside@yandex.ru + + + + + + giflib + https://sourceforge.net/projects/giflib/ PisiLinux Community admins@pisilinux.org MIT - LGPLv2.1 - app:console - util.admin - Application that allows non-privileged applications to write utmp (login) info - utemper, utmp(oturum açma) bilgilerini yazmak için ayrıcalıksız uygulamalara izin veren bir uygulamadır. - Utempter is a utility that allows non-privileged applications such as terminal emulators to modify the utmp database without having to setuid root. - Utempter, terminal emulatörleri gibi, yetkisiz uygulamalara setuid e ihtiyaç duymadan utmp veritabanına yazma hakkı verir. - ftp://ftp.altlinux.org/pub/people/ldv/utempter/libutempter-1.1.6.tar.bz2 + library + multimedia.graphics + Library to handle, display and manipulate GIF images + GIF türündeki resimleri görüntüleyip işlemeye aracılık eden kitaplık + libungif est une librairies de lecture et d'écriture d'images gif. La fonctionnalité de sauvegarde utilise un algorithme gif non compressé pour éviter le brevet Unisys LZW. giflib est un remplaçant de cette dernière compatible aussi bien au niveau de l'interface de programmation (API) qu'au niveau binaire (ABI) pour les pays où LZW n'est pas breveté. + The giflib package contains a shared library of functions for loading and saving GIF format image files. It is API and ABI compatible with libungif, the library which supported uncompressed GIFs while the Unisys LZW patent was in effect. + libungif, gif dosyalarını okumaya ve yazmaya yarayan bir kütüphanedir. Kaydetme algoritması Unisys LZW patentine takılmamak için sıkıştırma yapmamaktadır. Böylece LZW'nin patentli olmadığı ülkelerde kullanılmak için API ve ABI uyumlu bir alternatif sunar. + mirrors://sourceforge/giflib/giflib-5.2.1.tar.gz - libutempter-pierelro.patch + giflib-5.1.9-fix-missing-quantize-API-symbols.patch + giflib-5.1.9-make-flags.patch - util/admin/utempter/pspec.xml + multimedia/graphics/giflib/pspec.xml - utempter + giflib - /usr/libexec + /usr/bin /usr/lib /usr/share/doc /usr/share/man - - System.Package - - utempter-devel - Development files for utempter - utempter için geliştirme dosyaları + giflib-devel - utempter + giflib + + + /usr/include + /usr/share/doc/giflib/html + + + + giflib-32bit + 32-bit shared libraries for giflib + + giflib + + + /usr/lib32 + + + + + 2020-01-18 + 5.2.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-30 + 5.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-28 + 5.1.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 5.1.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.0.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 5.0.6 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 5.0.6 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + colorize-gimp + https://www.gimp.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics.gimp.addon + Colorization plugin for GIMP + GIMP için renklendirme eklentisi + colorize-gimp is an implementation of colorization using optimization for GIMP. + colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. + gimp + https://sourceforge.net/projects/pisilinux/files/source/colorize-gimp-20070930.tar.gz + + gimp-devel + gtk2-devel + SuiteSparse-devel + + multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml + + + colorize-gimp + + atk + babl + gegl + gimp + gtk2 + cairo + glib2 + pango + freetype + harfbuzz + json-glib + gdk-pixbuf + fontconfig + SuiteSparse + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + 2021-02-05 + 2.6.0 + Rebuild for gimp + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-25 + 2.6.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 2.6.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.6.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-data-extras + https://www.gimp.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + multimedia.graphics.gimp.addon + Gimp extras + Gimp ekleri + Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. + Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. + gimp + http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.4.tar.bz2 + + gimp-devel + + multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml + + + gimp-data-extras + + gimp + + + /usr/share/gimp + /usr/share/doc + + + + + 2021-02-04 + 2.0.4 + Rebuild for gimp + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-25 + 2.0.4 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 2.0.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.0.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-dds-plugin + https://www.gimp.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics.gimp.addon + DirectDraw Surface (DDS) format plugin for Gimp + This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gimp-dds/gimp-dds-3.0.1.tar.bz2 + + gimp-devel + gtk2-devel + + multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml + + + gimp-dds-plugin + + atk + gimp + gtk2 + babl + gegl + cairo + glib2 + pango + libgomp + freetype + harfbuzz + json-glib + fontconfig + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins/dds + /usr/share/doc/gimp-dds-plugin + + + + + 2021-02-04 + 3.0.1 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-26 + 3.0.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 3.0.1 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 3.0.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-focusblur-plugin + http://registry.gimp.org/node/1444 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Makes out of focus with luminosity and depth. + Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. + https://sourceforge.net/projects/pisilinux/files/source/focusblur-3.2.6.tar.bz2 + + fftw3-devel + gimp-devel + intltool + + + focusblur-3.2.6-gcc10.patch + gimp-focusblur-plugin-fix-gettext.patch + gimp-focusblur-plugin-include-main-glib.patch + + multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml + + + gimp-focusblur-plugin + + fftw3 + gdk-pixbuf + gimp + gtk2 + glib2 + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + /usr/share/locale + + + + + 2021-02-04 + 3.2.6 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-26 + 3.2.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 3.2.6 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 3.2.6 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-gmic-plugin + http://gmic.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + CeCILL-2 + app:console + library + multimedia.graphics.gimp.addon + Gimp plugin for the G'MIC image processing framework + G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. + https://gmic.eu/files/source/gmic_3.0.0.tar.gz + + qt5-base-devel + ffmpeg-devel + fftw3-devel + gimp-devel + GraphicsMagick-devel + libjpeg-turbo-devel + lapack-devel + opencv-devel + openexr-devel + tiff-devel + curl-devel + + multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml + + + gmic + + curl + tiff + zlib + fftw3 + libX11 + libgcc + libpng + libgomp + libjpeg-turbo + GraphicsMagick + + + /etc/bash_completion.d + /usr/bin + /usr/lib + /usr/share/doc/gmic + /usr/share/man + + + + gmic-devel + Development files for gmic + gmic için geliştirme dosyaları + + gmic + + + /usr/include + + + + gimp-gmic-plugin + Gimp plugin for the GMIC image procession framework. + GMIC görüntü işleme çerçevesi için Gimp eklentisi. + + atk + babl + gegl + curl + gtk2 + zlib + gimp + cairo + pango + libX11 + libgcc + libpng + libgomp + freetype + fftw3 + glib2 + fontconfig + gdk-pixbuf + qt5-base + + + /usr/lib/gimp + /usr/share/doc/gimp-gmic-plugin + + + + + 2021-12-09 + 3.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-02 + 2.9.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-05 + 2.6.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-05-06 + 2.6.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-29 + 2.4.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-26 + 1.7.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-27 + 1.7.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 1.7.9 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.6.5.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-10 + 1.6.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gimp-layer-effects + http://registry.gimp.org/node/186 + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + multimedia.graphics.gimp.addon + Layer effects for GIMP + GIMP için katman efektleri + Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. + Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. + gimp + https://sourceforge.net/projects/pisilinux/files/source/layer-effects.tar.gz + multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml + + + gimp-layer-effects + + gimp + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc + + + COPYING + + + + + 2021-02-05 + 2.6.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-25 + 2.6.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 2.6.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.6.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-lqr-plugin + http://liquidrescale.wikidot.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Plugin for The GIMP providing Liquid Rescale. + Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. + http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 + + intltool + gimp-devel + liblqr-devel + + + gimp-lqr-plugin-0.7.2-gcc10.patch + + multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml + + + gimp-lqr-plugin + + gdk-pixbuf + gimp + gtk2 + glib2 + liblqr + + + /usr/lib/gimp/2.0/plug-ins/* + /usr/share/doc/gimp-lqr-plugin/* + /usr/share/gimp-lqr-plugin/* + /usr/share/gimp/2.0/scripts/* + /usr/share/locale/* + + + + + 2021-02-05 + 0.7.2 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-24 + 0.7.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 0.7.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.7.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 0.7.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-refocus-it-plugin + https://sourceforge.net/projects/refocus-it/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. + Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. + https://sourceforge.net/projects/refocus-it/files/refocus-it/2.0.0/refocus-it-2.0.0.tar.gz + + intltool + gimp-devel + gtk2-devel + + multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml + + + gimp-refocus-it-plugin + + gimp + glib2 + gtk2 + + + /usr/bin + /usr/lib/gimp/2.0/plug-ins + /usr/share/doc/gimp-refocus-it-plugin + /usr/share/help + /usr/share/locale + + + + + 2021-02-05 + 2.0.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-26 + 2.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 2.0.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-resynthesizer + http://www.logarithmic.net/pfh/resynthesizer + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + addon + multimedia.graphics.gimp.addon + Resynthesizer is a Gimp plug-in for texture synthesis + Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. + http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz + + gimp-devel + + multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml + + + gimp-resynthesizer + + gimp + atk + babl + gegl + gtk2 + cairo + glib2 + pango + libgcc + freetype + harfbuzz + json-glib + fontconfig + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + 2021-02-05 + 0.16 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-24 + 0.16 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 0.16 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 0.16 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimp-save-for-web + http://registry.gimp.org/node/33 + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.graphics.gimp.addon + GIMP Save for Web + GIMP Save for Web + GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. + GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. + https://sourceforge.net/projects/pisilinux/files/source/gimp-save-for-web-0.29.3.tar.bz2 + + intltool + gimp-devel + gtk2-devel + gdk-pixbuf-devel + + multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml + + + gimp-save-for-web + + gimp + glib2 + gtk2 + gdk-pixbuf + + + /usr/lib/gimp/2.0/plug-ins + /usr/share/gimp-save-for-web + /usr/share/locale + /usr/share/doc + + + + + 2021-02-05 + 0.29.3 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-26 + 0.29.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 0.29.3 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.29.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 0.29.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gimpfx-foundry + http://gimpfx-foundry.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + public-domain + data + multimedia.graphics.gimp.addon + A scripts collection for GIMP + GIMP için zengin bir betik paketi + FX-Foundry project is constantly updating custom scripts for each major GIMP release. + FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. + mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz + multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml + + + gimpfx-foundry + + gimp + + + /usr/share/gimp/2.0/scripts + /usr/share/doc + + + + + 2021-02-05 + 2.6.1 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-24 + 2.6.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-24 + 2.6.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.6.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-19 + 2.6.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + mypaint-brushes + https://github.com/Jehan/mypaint-brushes + + PisiLinux Community + admins@pisilinux.org + + custom + library + multimedia.graphics.gimp.addon + MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar + MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar + MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar + MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar + https://github.com/Jehan/mypaint-brushes/archive/v1.3.0.tar.gz + + libmypaint-devel + + multimedia/graphics/gimp/addon/mypaint-brushes/pspec.xml + + + mypaint-brushes + + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-02-05 + 1.3.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2020-02-12 + 1.3.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2018-12-25 + 1.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gimp + https://www.gimp.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + multimedia.graphics.gimp + GNU Image Manipulation Program + Bir resim işleme programı + 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.30.tar.bz2 + + bzip2 + xz-devel + gtk-doc + atk-devel + xdg-utils + tiff-devel + zlib-devel + lcms-devel + gegl-devel + glib-networking + babl-devel + dbus-devel + gtk2-devel + aalib-devel + pango-devel + cairo-devel + glib2-devel + libwmf-devel + jasper-devel + libX11-devel + libmng-devel + libpng-devel + libXpm-devel + libXmu-devel + libXext-devel + librsvg-devel + libexif-devel + libgudev-devel + alsa-lib-devel + freetype-devel + mypaint-brushes + dbus-glib-devel + libXfixes-devel + libXcursor-devel + fontconfig-devel + python-gtk-devel + gdk-pixbuf-devel + ghostscript-devel + poppler-glib-devel + libjpeg-turbo-devel + intltool + python-devel + libmypaint-devel + libgexiv2-devel + lcms2-devel + python-cairo-devel + python-six + gettext-devel + perl + harfbuzz-devel + dietlibc + iso-codes-devel + shared-mime-info + webp-devel + openexr-devel + + multimedia/graphics/gimp/gimp/pspec.xml + + + gimp-devel + Documents et entêtes de développement pour GIMP. + Development header and documents for GIMP + GIMP için geliştirme belgeleri ve başlık dosyaları + data + data:doc + + gtk2-devel + gegl-devel + cairo-devel + gdk-pixbuf-devel + gimp + + + /usr/include + /usr/share/gtk-doc + /usr/lib/pkgconfig + /usr/share/aclocal + + + + gimp + app:gui + + xz + dbus + webp + babl + gegl + gtk2 + tiff + zlib + eudev + aalib + bzip2 + pango + cairo + glib2 + lcms2 + libgcc + libwmf + libXpm + libmng + libpng + libXmu + jasper + libX11 + libXext + librsvg + libexif + harfbuzz + alsa-lib + freetype + libgudev + json-glib + dbus-glib + libXfixes + libgexiv2 + libXcursor + fontconfig + gdk-pixbuf + libmypaint + ghostscript + openexr-libs + poppler-glib + libjpeg-turbo + mypaint-brushes + + + /etc + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/libexec + /usr/share/gimp + /usr/share/icons + /usr/share/appdata + /usr/share/metainfo + /usr/share/mime-info + /usr/share/applications + /usr/share/application-registry + /usr/share/locale/ky/LC_MESSAGES/gimp20.mo + /usr/share/locale/kab + + + gimp-splash-pencils.png + + + + gimp-i18n-tr + Gimp translation files for Turkish + Türkçe için GIMP yerelleştirme dosyaları + locale:tr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/tr + + + + gimp-i18n-ast + Gimp translation files for Asturian + Asturya dili için GIMP yerelleştirme dosyaları + locale:ast + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ast + + + + gimp-i18n-my + Gimp translation files for Burmese + Burmese dili için GIMP yerelleştirme dosyaları + locale:my + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/my + + + + gimp-i18n-nds + Gimp translation files for Low Saxon + Aşağı Saxon dili için GIMP yerelleştirme dosyaları + locale:nds + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nds + + + + gimp-i18n-el + Gimp translation files for Greek + Yunanca için GIMP yerelleştirme dosyaları + locale:el + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/el + + + + gimp-i18n-gu + Gimp translation files for Gujarati + Gujarati dili için GIMP yerelleştirme dosyaları + locale:gu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gu + + + + gimp-i18n-be + Gimp translation files for Belarusian + Belarusça için GIMP yerelleştirme dosyaları + locale:be + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/be + + + + gimp-i18n-vi + Gimp translation files for Vietnamese + Viyetnamca için GIMP yerelleştirme dosyaları + locale:vi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/vi + + + + gimp-i18n-ca + Gimp translation files for Catalan + Katalanca için GIMP yerelleştirme dosyaları + locale:ca + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ca + + + + gimp-i18n-eo + Gimp translation files for Esperanto + Esperanto için GIMP yerelleştirme dosyaları + locale:eo + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/eo + + + + gimp-i18n-cs + Gimp translation files for Czech + Çekçe için GIMP yerelleştirme dosyaları + locale:cs + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/cs + + + + gimp-i18n-ca_valencia + Gimp translation files for Catalan (Valencia) + Valensiya Katalancası için GIMP yerelleştirme dosyaları + locale:ca@valencia + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ca@valencia + + + + gimp-i18n-ar + Gimp translation files for Arabic + Arapça için GIMP yerelleştirme dosyaları + locale:ar + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ar + + + + gimp-i18n-bs + Gimp translation files for Bahama + locale:ar + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/bs + + + + gimp-i18n-km + Gimp translation files for Khmer + Khmer dili için GIMP yerelleştirme dosyaları + locale:km + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/km + + + + gimp-i18n-ga + Gimp translation files for Irish Gaelic + Gaelik İrlandacası için GIMP yerelleştirme dosyaları + locale:ga + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ga + + + + gimp-i18n-fi + Gimp translation files for Finnish + Fince için GIMP yerelleştirme dosyaları + locale:fi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fi + + + + gimp-i18n-eu + Gimp translation files for Basque + Baskça için GIMP yerelleştirme dosyaları + locale:eu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/eu + + + + gimp-i18n-et + Gimp translation files for Estonian + Estonyaca için GIMP yerelleştirme dosyaları + locale:et + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/et + + + + gimp-i18n-xh + Gimp translation files for Xhosa + Xhosa dili için GIMP yerelleştirme dosyaları + locale:xh + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/xh + + + + gimp-i18n-gl + Gimp translation files for Galician + Galiçya dili için GIMP yerelleştirme dosyaları + locale:gl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gl + + + + gimp-i18n-id + Gimp translation files for Indonesian + Endonezyaca için GIMP yerelleştirme dosyaları + locale:id + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/id + + + + gimp-i18n-es + Gimp translation files for Spanish + İspanyolca için GIMP yerelleştirme dosyaları + locale:es + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/es + + + + gimp-i18n-ru + Gimp translation files for Russian + Rusça için GIMP yerelleştirme dosyaları + locale:ru + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ru + + + + gimp-i18n-rw + Gimp translation files for Kinyarwanda + Kinyarwanda dili için GIMP yerelleştirme dosyaları + locale:rw + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/rw + + + + gimp-i18n-nl + Gimp translation files for Dutch + Hollandaca için GIMP yerelleştirme dosyaları + locale:nl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nl + + + + gimp-i18n-nn + Gimp translation files for Norwegian Nynorsk + Norveç Nynorsk dili için GIMP yerelleştirme dosyaları + locale:nn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nn + + + + gimp-i18n-nb + Gimp translation files for Norwegian Bookmal + Norveç Bookmal dili için GIMP yerelleştirme dosyaları + locale:nb + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/nb + + + + gimp-i18n-ne + Gimp translation files for Nepali + Nepali dili için GIMP yerelleştirme dosyaları + locale:ne + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ne + + + + gimp-i18n-lt + Gimp translation files for Lithuanian + Litvanyaca için GIMP yerelleştirme dosyaları + locale:lt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/lt + + + + gimp-i18n-pa + Gimp translation files for Punjabi + Punjabi dili için GIMP yerelleştirme dosyaları + locale:pa + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pa + + + + gimp-i18n-ro + Gimp translation files for Romanian + Rumence için GIMP yerelleştirme dosyaları + locale:ro + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ro + + + + gimp-i18n-en_GB + Gimp translation files for British English + İngiliz İngilizcesi için GIMP yerelleştirme dosyaları + locale:en_GB + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/en_GB + + + + gimp-i18n-yi + Gimp translation files for Yi + Yi dili için GIMP yerelleştirme dosyaları + locale:yi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/yi + + + + gimp-i18n-en_CA + Gimp translation files for Catalan (en) + Katalanca için GIMP yerelleştirme dosyaları + locale:en_CA + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/en_CA + + + + gimp-i18n-fr + Gimp translation files for French + Fransızca için GIMP yerelleştirme dosyaları + locale:fr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fr + + + + gimp-i18n-bg + Gimp translation files for Bulgarian + Bulgarca için GIMP yerelleştirme dosyaları + locale:bg + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/bg + + + + gimp-i18n-ms + Gimp translation files for Malay + Malay dili için GIMP yerelleştirme dosyaları + locale:ms + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ms + + + + gimp-i18n-pt_BR + Gimp translation files for Brazilian Portuguese + Brezilya Portekizcesi için GIMP yerelleştirme dosyaları + locale:pt_BR + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pt_BR + + + + gimp-i18n-hr + Gimp translation files for Croatian (Hrvatski) + Hırvatça için GIMP yerelleştirme dosyaları + locale:hr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hr + + + + gimp-i18n-zh_TW + Gimp translation files for Chinese Traditional + Geleneksel Çince için GIMP yerelleştirme dosyaları + locale:zh_TW + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_TW + + + + gimp-i18n-ko + Gimp translation files for Korean + Korece için GIMP yerelleştirme dosyaları + locale:ko + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ko + + + + gimp-i18n-it + Gimp translation files for Italian + İtalyanca için GIMP yerelleştirme dosyaları + locale:it + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/it + + + + gimp-i18n-fa + Gimp translation files for Farsi (Persian) + Farsça için GIMP yerelleştirme dosyaları + locale:fa + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/fa + + + + gimp-i18n-dz + Gimp translation files for Dzongkha + Dzongkha dili için GIMP yerelleştirme dosyaları + locale:dz + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/dz + + + + gimp-i18n-sr_Latn + Gimp translation files for Serbian Latin + Latin sırpça için GIMP yerelleştirme dosyaları + locale:sr@Latn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sr@latin + + + + gimp-i18n-da + Gimp translation files for Danish + Danimarkaca için GIMP yerelleştirme dosyaları + locale:da + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/da + + + + gimp-i18n-ja + Gimp translation files for Japanese + Japonca için GIMP yerelleştirme dosyaları + locale:ja + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ja + + + + gimp-i18n-he + Gimp translation files for Hebrew + İbranice için GIMP yerelleştirme dosyaları + locale:he + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/he + + + + gimp-i18n-pt + Gimp translation files for Portuguese + Portekizce için GIMP yerelleştirme dosyaları + locale:pt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pt + + + + gimp-i18n-zh_CN + Gimp translation files for Chinese Simplified + Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları + locale:zh_CN + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_CN + + + + gimp-i18n-sr + Gimp translation files for Serbian + Sırpça için GIMP yerelleştirme dosyaları + locale:sr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sr + + + + gimp-i18n-oc + Gimp translation files for Occitan + Occitan dili için GIMP yerelleştirme dosyaları + locale:oc + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/oc + + + + gimp-i18n-sv + Gimp translation files for Swedish + İsveççe için GIMP yerelleştirme dosyaları + locale:sv + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sv + + + + gimp-i18n-mk + Gimp translation files for Macedonian + Makedonyaca için GIMP yerelleştirme dosyaları + locale:mk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/mk + + + + gimp-i18n-sk + Gimp translation files for Slovak + Slovakça için GIMP yerelleştirme dosyaları + locale:sk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sk + + + + gimp-i18n-de + Gimp translation files for German + Almanca için GIMP yerelleştirme dosyaları + locale:de + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/de + + + + gimp-i18n-pl + Gimp translation files for Polish + Lehçe için GIMP yerelleştirme dosyaları + locale:pl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/pl + + + + gimp-i18n-uk + Gimp translation files for Ukrainian + Ukraynaca için GIMP yerelleştirme dosyaları + locale:uk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/uk + + + + gimp-i18n-sl + Gimp translation files for Slovenian + Slovence için GIMP yerelleştirme dosyaları + locale:sl + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/sl + + + + gimp-i18n-hu + Gimp translation files for Hungarian + Macarca için GIMP yerelleştirme dosyaları + locale:hu + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hu + + + + gimp-i18n-tt + Gimp translation files for Tatarish + Tatarca için GIMP yerelleştirme dosyaları + locale:tt + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/tt + + + + gimp-i18n-az + Gimp translation files for Azerbaijani + Azerice için GIMP yerelleştirme dosyaları + locale:az + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/az + + + + gimp-i18n-am + Gimp translation files for Amharic + Amharic dili için GIMP yerelleştirme dosyaları + locale:am + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/am + + + + gimp-i18n-is + Gimp translation files for Icelandic + İzlanda dili için GIMP yerelleştirme dosyaları + locale:is + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/is + + + + gimp-i18n-lv + Gimp translation files for Latvia + Latvia dili için GIMP yerelleştirme dosyaları + locale:lv + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/lv + + + + gimp-i18n-th + Gimp translation files for Thai + Thai dili için GIMP yerelleştirme dosyaları + locale:th + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/th + + + + gimp-i18n-ka + Gimp translation files for Georgian + Gürcüce için GIMP yerelleştirme dosyaları + locale:ka + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ka + + + + gimp-i18n-hi + Gimp translation files for Hindi + Hindi dili için GIMP yerelleştirme dosyaları + locale:hi + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/hi + + + + gimp-i18n-zh_HK + Gimp translation files for Chinese Hong Kong + Hong Kong Çincesi için GIMP yerelleştirme dosyaları + locale:zh_HK + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/zh_HK + + + + gimp-i18n-ml + Gimp translation files for Malayalam + Malayalam dili için GIMP yerelleştirme dosyaları + locale:ml + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ml + + + + gimp-i18n-ta + Gimp translation files for Tamil + Tamil dili için GIMP yerelleştirme dosyaları + locale:ta + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/ta + + + + gimp-i18n-kn + Gimp translation files for Kannada + Kannada dili için GIMP yerelleştirme dosyaları + locale:kn + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/kn + + + + gimp-i18n-si + Gimp translation files for Sinhala + Sinhala dili için GIMP yerelleştirme dosyaları + locale:si + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/si + + + + gimp-i18n-kk + Gimp translation files for Kazakh + Kazakça için GIMP yerelleştirme dosyaları + locale:kk + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/kk + + + + gimp-i18n-br + Gimp translation files for Breton + Breton dili için GIMP yerelleştirme dosyaları + locale:br + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/br + + + + gimp-i18n-te + Gimp translation files for Telugu + locale:te + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/te + + + + gimp-i18n-csb + Gimp translation files for Kashubian + locale:csb + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/csb + + + + gimp-i18n-gd + Gimp translation files for Scottish Gaelic + locale:gd + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/gd + + + + gimp-i18n-mr + Gimp translation files for Scottish Moritanya + locale:mr + multimedia.graphics.gimp.l10n + + gimp + + + /usr/share/locale/mr + + + + + 2022-05-14 + 2.10.30 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 2.10.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-06 + 2.10.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-05 + 2.10.22 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-09-20 + 2.10.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 2.10.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-29 + 2.10.12 + Version bump. + Mustafa Cinasal + admin@pisilinux.org + + + 2019-05-31 + 2.10.10 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2019-04-25 + 2.10.10 + Release Bump. + Mustafa Cinasal + admin@pisilinux.org + + + 2018-12-26 + 2.10.8 + Release Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-14 + 2.9.8 + Release Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-02-06 + 2.9.8 + Release Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-12-21 + 2.9.8 + Version Bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-03-08 + 2.8.20 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 2.8.20 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.8.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 2.8.16 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gpick + http://www.gpick.org/ + + fury + uglyside@yandex.ru + + BSD-3-Clause + app:gui + multimedia.graphics + Gpick is an advanced color picker and palette editing tool. + Gpick is an application that allows you to sample any color from anywhere on the desktop, and use it to create palettes (i.e. collections of colors) for use in graphic design applications. + https://github.com/thezbyg/gpick/archive/gpick-0.2.6.tar.gz + + cmake + ragel + lua-devel + gtk3-devel + expat-devel + boost-devel + + multimedia/graphics/gpick/pspec.xml + + + gpick + + lua + gtk3 + glib2 + expat + boost + cairo + pango + libgcc + gdk-pixbuf + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-11-04 + 0.2.6 + Release + fury + uglyside@yandex.ru + + + 2020-12-04 + 0.2.6_rc1 + First build + fury + uglyside@yandex.ru + + + + + + GraphicsMagick + http://www.graphicsmagick.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + multimedia.graphics + GraphicsMagick Image Processing System + GraphicsMagick Resim İşleme Sistemi + GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. + GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. + https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.37/GraphicsMagick-1.3.37.tar.xz + + tiff-devel + webp-devel + lcms2-devel + libSM-devel + libwmf-devel + libICE-devel + jasper-devel + jbigkit-devel + libXext-devel + libjpeg-turbo-devel + ghostscript-devel + zlib-devel + libxml2-devel + freetype-devel + xz-devel + zstd-devel + + + GraphicsMagick-1.3.16-multilib.patch + + multimedia/graphics/GraphicsMagick/pspec.xml + + + GraphicsMagick + app:console + + tiff + webp + zstd + zlib + bzip2 + libgcc + freetype + libX11 + libxml2 + libpng + lcms2 + libwmf + jasper + libXext + jbigkit + libgomp + ghostscript + libjpeg-turbo + libtool-ltdl + + + /etc + /usr/bin/gm + /usr/lib/GraphicsMagick-* + /usr/lib/lib* + /usr/share/GraphicsMagick-* + /usr/share/doc + /usr/share/man + + + + GraphicsMagick-devel + Development files for GraphicsMagick + + GraphicsMagick + + + /usr/bin/*-config + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/GraphicsMagick/www + /usr/share/man/man1/*-config.* + + + + PerlMagick + GraphicsMagick perl bindings + + GraphicsMagick + + + /usr/lib/perl5 + /usr/share/doc/PerlMagick + + + + + 2021-12-14 + 1.3.37 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 1.3.35 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-05 + 1.3.30 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-20 + 1.3.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-13 + 1.3.25 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-06 + 1.3.25 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.3.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 1.3.23 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + hugin + http://hugin.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + library + multimedia.graphics + A panoramic photo stitcher + Panoramik görüntü birleştirici + hugin can be used to stitch multiple images together. The resulting image can span 360 degrees. Another common use is the creation of very high resolution pictures by combining multiple images. + hugin bir çok görüntüyü harmanlamak için kullanılabilecek bir araçtır. Bu sayede, 360 derecelik görüntüler oluşturulabilir. Bir diğer kullanım alanı ise birden fazla görüntüyü birleştirerek çok yüksek çözünürlüklü görüntüler üretmektir. + hugin + mirrors://sourceforge/hugin/hugin/hugin-2020.0/hugin-2020.0.0.tar.bz2 + + swig + cmake + glew-devel + tiff-devel + zlib-devel + vigra-devel + boost-devel + wxGTK-devel + lcms2-devel + exiv2-devel + fftw3-devel + flann-devel + libXmu-devel + libpng-devel + python-devel + lapack-devel + sqlite-devel + openexr-devel + lensfun-devel + freeglut-devel + libpano13-devel + libjpeg-turbo-devel + + + hugin-openexr3.patch + + multimedia/graphics/hugin/pspec.xml + + + hugin + + blas + glew + flann + mesa + tiff + boost + fftw3 + vigra + wxGTK + lapack + libgcc + python + lcms2 + libX11 + sqlite + enblend + libgomp + libglvnd + freeglut + mesa-glu + libpano13 + exiv2-libs + openexr-libs + wxGTK-common + perl-Image-ExifTool + + + /usr/lib/ + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/hugin + /usr/share/pixmaps + /usr/share/appdata + /usr/share/metainfo/ + /usr/share/applications + /usr/share/locale + + + hugin-libs + hugin-tools + + + + hugin-docs + Help documents for hugin + hugin için yardım belgeleri + + /usr/share/hugin/xrc/data/help* + + + + + 2021-10-27 + 2020.0.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2021-03-12 + 2020.0.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-09-20 + 2019.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 2019.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 2019.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2018.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-11 + 2018.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 2018.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-14 + 2018.0.0 + Ver.Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 2017.0.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-17 + 2016.2.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2015.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-06 + 2015.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + icoutils + http://www.nongnu.org/icoutils/ + + PisiLinux Community + admin@pisilinux.org + + GPLv3+ + app:gui + multimedia.graphics + Utility for extracting and converting Microsoft icon and cursor files + A set of programs for extracting and converting images in icon and cursor files (.ico, .cur) + http://download.savannah.gnu.org/releases/icoutils/icoutils-0.32.3.tar.bz2 + + libpng-devel + + multimedia/graphics/icoutils/pspec.xml + + + icoutils + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/share/locale + + + + + 2020-03-06 + 0.32.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2018-09-01 + 0.32.3 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2018-03-21 + 0.32.3 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.31.1 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2016-06-02 + 0.31.0 + First release + PisiLinux Community + admin@pisilinux.org + + + + + + imagemagick + http://www.imagemagick.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + A collection of tools and libraries for many image file formats + Resimleri işlemek ve göstermek için bir X uygulaması + Narzędzie do wyświetlania, konwersji i manipulacji grafikami + ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. + https://www.imagemagick.org/download/releases/ImageMagick-7.1.0-37.tar.xz + + xz-devel + libzip-devel + djvu-devel + webp-devel + tiff-devel + lcms2-devel + fftw3-devel + cairo-devel + pango-devel + libraw-devel + libpng-devel + jasper-devel + liblqr-devel + libwmf-devel + libheif-devel + libXext-devel + openexr-devel + librsvg-devel + libxml2-devel + openjpeg2-devel + fontconfig-devel + ghostscript-devel + libjpeg-turbo-devel + + multimedia/graphics/imagemagick/pspec.xml + + + imagemagick + A collection of tools and libraries for many image file formats + + xz + libzip + perl + tiff + djvu + webp + zlib + bzip2 + cairo + pango + glib2 + fftw3 + lcms2 + libraw + libX11 + libgcc + liblqr + libpng + libwmf + librsvg + libheif + libXext + libxml2 + libgomp + freetype + openjpeg2 + fontconfig + ghostscript + libtool-ltdl + openexr-libs + libjpeg-turbo + + + /usr/bin + /etc/ImageMagick-7/ + /usr/lib + /usr/share/ImageMagick-* + /usr/share/man + /usr/share/doc + + + + imagemagick-docs + HTML documentation for imagemagick + Imagemagick için API belgeleri + imagemagick-docs, imagemagick için belgelendirme dosyalarını içerir. + data:doc + + imagemagick + + + /usr/share/doc/imagemagick/html + + + + imagemagick-devel + Development files for imagemagick + imagemagick için geliştirme dosyaları + Pliki nagłówkowe imagemagick + imagemagick-devel, imagemagick için geliştirme dosyalarını içerir. + + imagemagick + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/bin/*-config + /usr/share/man/man1/*-config* + + + + + 2022-06-07 + 7.1.0.37 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-17 + 7.0.10.62 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 7.0.10.62 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-20 + 7.0.10.29 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-06 + 7.0.9.27 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2019-06-24 + 7.0.8.50 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2019-01-15 + 7.0.8.23 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-08-06 + 7.0.7.39 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-03-20 + 7.0.7.27 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2017-05-28 + 7.0.5.8 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2017-03-05 + 7.0.4.9 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-02-15 + 7.0.4.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-06 + 7.0.3.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-10 + 6.9.4.8 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-03-22 + 6.9.3.7 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + imagemagick6 + https://legacy.imagemagick.org/ + + Pisilinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + A collection of tools and libraries for many image file formats. + Resimleri işlemek ve göstermek için bir X uygulaması + Narzędzie do wyświetlania, konwersji i manipulacji grafikami + ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. + https://imagemagick.org/download/releases/ImageMagick-6.9.12-27.tar.xz + + intltool + zstd-devel + tiff-devel + webp-devel + cairo-devel + pango-devel + fftw3-devel + lcms2-devel + libpng-devel + libraw-devel + libwmf-devel + jbigkit-devel + libheif-devel + liblqr-devel + jasper-devel + libgxps-devel + librsvg-devel + openexr-devel + libXext-devel + openjpeg2-devel + fontconfig-devel + ghostscript-devel + libjpeg-turbo-devel + + multimedia/graphics/imagemagick6/pspec.xml + + + imagemagick6 + + tiff + webp + cairo + pango + fftw3 + lcms2 + liblqr + libpng + libraw + libwmf + jbigkit + libheif + libgxps + librsvg + libXext + libgomp + freetype + openjpeg2 + fontconfig + ghostscript + openexr-libs + libjpeg-turbo + + + /etc/ImageMagick-6/ + /usr/lib/libMagick* + /usr/share/ImageMagick-* + /usr/lib/ImageMagick-6* + /usr/share/doc/imagemagick6/LICENSE + /usr/share/doc/imagemagick6/README.txt + + + + imagemagick6-docs + HTML documentation for imagemagick6 + Imagemagick6 için API belgeleri + imagemagick6-docs, imagemagick6 için belgelendirme dosyalarını içerir. + data:doc + + /usr/share/doc/imagemagick6/html + + + + imagemagick6-devel + Development files for imagemagick6 + imagemagick6 için geliştirme dosyaları + Pliki nagłówkowe imagemagick6 + imagemagick6-devel, imagemagick6 için geliştirme dosyalarını içerir. + + imagemagick6 + + + /usr/include + /usr/lib/imagemagick6/pkgconfig + + + + + 2022-01-19 + 6.9.12.27 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-28 + 6.9.12.27 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 6.9.11.62 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-20 + 6.9.11.29 + ver6 rebuild. + fury + uglyside@yandex.ru + + + + + + imlib2 + https://sourceforge.net/projects/enlightenment/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.graphics + Second version of the general image loading and rendering library + Genel resim yükleme ve tarama kütüphanesi'nin ikinci versiyonu + Imlib 2 est le successeur de Imlib. Il ne s'agit pas là juste d'une version plus récente d'imlib 1, mais vraiment d'une librairie complètement différente. S'agissant effectivement d'une différente librairie - même si elles ont des fonctionnalités similaires, Imlib2 peut être installée aux côtés de Imlib1.x sans aucun problème. + Imlib 2 is the successor to Imlib. It is not just a newer version - it is a completely new library. Imlib2 can be installed alongside Imlib 1.x without any problems since they are effectively different libraries - but they Have very similar functionality. + Imlib 2, Imlib'in gelişmişidir. Sadece ileri bir sürümü değildir, tamamen yeni bir kütüphanedir. Imlib2 ve Imlib 1.x tamamen farklı oldukları için bir arada kurulu bulunabilirler. İkisi de aynı amaçla yapılmıştır. + Imlib 2 es el sucesor de Imlib. no es simplemente una versión actualizada - es una librería completamente nueva. Imlib2 puede instalarse junto con Imlib 1.x sin problemas, ya que efectivamente son librerías diferentes - sin embargo tienen una funcionalidad similar. + https://sourceforge.net/projects/enlightenment/files/imlib2-src/1.7.5/imlib2-1.7.5.tar.xz + + bzip2 + zlib-devel + webp-devel + giflib-devel + libid3tag-devel + libXext-devel + libjpeg-turbo-devel + tiff-devel + freetype-devel + + multimedia/graphics/imlib2/pspec.xml + + + imlib2 + + webp + giflib + libid3tag + libXext + libjpeg-turbo + tiff + zlib + bzip2 + libX11 + libpng + freetype + + + /usr/bin + /usr/lib + /usr/share/imlib2 + /usr/share/doc + + + + imlib2-devel + Development files for imlib2 + imlib2 için geliştirme dosyaları + + imlib2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-11 + 1.7.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 1.6.1 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2019-09-28 + 1.5.1 + Version Bump + fury + uglyside@yandex.ru + + + 2018-07-31 + 1.4.10 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 1.4.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 1.4.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.4.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + inkscape + https://inkscape.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + LGPL-2.1 + app:gui + multimedia.graphics + SVG vector graphics application. + Vektörel çizim programı + Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. + SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. + https://media.inkscape.org/dl/resources/file/inkscape-1.2.tar.xz + + cmake + ragel + ccache + cython3 + potrace + gc-devel + intltool + gsl-devel + gdl-devel + libXt-devel + libXv-devel + libSM-devel + libXaw-devel + libXmu-devel + libXpm-devel + libXres-devel + libXtst-devel + ncurses-devel + xcb-util-devel + readline-devel + libxkbfile-devel + dbus-devel + gtk3-devel + popt-devel + lcms2-devel + boost-devel + aalib-devel + aspell-devel + gtkmm3-devel + libwpg-devel + libcdr-devel + libwpd-devel + liblqr-devel + libxslt-devel + libsoup-devel + python3-devel + boost-python3 + poppler-devel + poppler-utils + libyaml-devel + libvisio-devel + libspiro-devel + gtkspell3-devel + dbus-glib-devel + librevenge-devel + poppler-glib-devel + desktop-file-utils + libjpeg-turbo-devel + GraphicsMagick-devel + appstream-glib-devel + double-conversion-devel + python3-pygobject3-devel + + multimedia/graphics/inkscape/pspec.xml + + + inkscape + SVG vector graphics application. + + gc + gdl + gsl + dbus + gtk3 + zlib + atkmm + cairo + glib2 + lcms2 + pango + boost + aspell + glibmm + gtkmm3 + libX11 + libcdr + libgcc + libpng + libwpg + python3 + potrace + cairomm + libgomp + libsoup + libxml2 + libxslt + pangomm + poppler + readline + freetype + harfbuzz + lib2geom + libvisio + libspiro + dbus-glib + gtkspell3 + libsigc++ + fontconfig + gdk-pixbuf + librevenge + poppler-glib + python3-lxml + python3-numpy + python3-scour + boost-python3 + libjpeg-turbo + GraphicsMagick + python3-pygobject3 + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/metainfo + /usr/share/inkscape + /usr/lib/inkscape + /usr/share/locale + /usr/share/applications + /usr/share/bash-completion/completions/inkscape + + + + lib2geom + + gsl + glib2 + cairo + libgcc + double-conversion + + + /usr/lib + + + + lib2geom-devel + + lib2geom + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-05-01 + 1.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2022-05-01 + 1.1.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-20 + 1.1.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-06-05 + 1.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-20 + 1.0.2 + Version bump. + fury + uglyside@yandex.ru + + + 2020-09-11 + 1.0.1 + Ver bump, gtk3. + fury + uglyside@yandex.ru + + + 2020-04-16 + 0.92.5 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-10-05 + 0.92.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-06-26 + 0.92.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-01 + 0.92.3 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-23 + 0.92.3 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-16 + 0.92.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.91 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-29 + 0.91 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + jasper + http://www.ece.uvic.ca/~mdadams/jasper + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + multimedia.graphics + Software implementation of JPEG-2000 Part 1 + JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım + JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000). + https://github.com/jasper-software/jasper/releases/download/version-2.0.33/jasper-2.0.33.tar.gz + + cmake + libjpeg-turbo-devel + + + jasper-1.900.1-fix-filename-buffer-overflow.patch + fix-opengl-linking.patch + + multimedia/graphics/jasper/pspec.xml + + + jasper + + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/man + + + + jasper-docs + + jasper + + + /usr/share/doc + + + + jasper-devel + Development files for jasper + jasper için geliştirme dosyaları + + jasper + + + /usr/include + /usr/lib/pkgconfig/jasper.pc + + + + jasper-32bit + 32-bit shared libraries for jasper + jasper için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libjpeg-turbo-32bit + + + jasper + libjpeg-turbo-32bit + + + /usr/lib32 + + + + + 2022-05-14 + 2.0.33 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 2.0.14 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-02-06 + 2.0.14 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 2.0.14 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-21 + 2.0.14 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 2.0.10 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.900.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.900.1 + Release bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-06-26 + 1.900.1 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + jbigkit + http://www.cl.cam.ac.uk/~mgk25/jbigkit/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.graphics + A portable library of compression and decompression functions + Taşınabilir bir sıkıştırma kitaplığı + JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents. + jbigkit, faks sayfaları ve taranmış belgeler gibi yüksek çözünürlüklü görüntüler için, yüksek performanslı bir sıkıştırma kitaplığıdır. + https://www.cl.cam.ac.uk/~mgk25/jbigkit/download/jbigkit-2.1.tar.gz + + jbigkit-2.1-shared.diff + jbigkit-2.0-warnings.patch + + multimedia/graphics/jbigkit/pspec.xml + + + jbigkit + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/lib + + + + jbigkit-devel + Development files for jbigkit + jbigkit için geliştirme dosyaları + + jbigkit /usr/include @@ -279608,35 +206374,12426 @@ from a wide variety of machine architectures. - 2020-02-02 - 1.1.6 + 2020-01-14 + 2.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-25 + 2.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 2.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 2.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + lcms + http://www.littlecms.com/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.graphics + Moteur de gestion de couleurs léger et optimisé pour la vitesse. + A lightweight, speed optimized color management engine + Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru + LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. + mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz + + swig + tiff-devel + libjpeg-turbo-devel + + + CVE-2009-0793.patch + lcms-1.19-cve_2013_4276-1.patch + + multimedia/graphics/lcms/pspec.xml + + + lcms + + tiff + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/lcms + /usr/share/doc + /usr/share/man + + + + lcms-devel + lcms için geliştirme dosyaları + + lcms + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + lcms-32bit + 32-bit shared libraries for lcms + lcms için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + + + lcms + + + /usr/lib32 + + + + + 2020-02-12 + 1.19 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-14 + 1.19 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 1.19 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 1.19 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + lcms2 + http://www.littlecms.com + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + multimedia.graphics + A color management library. + Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms. + https://sourceforge.net/projects/lcms/files/lcms/2.12/lcms2-2.12.tar.gz + + libjpeg-turbo-devel + tiff-devel + + multimedia/graphics/lcms2/pspec.xml + + + lcms2 + + libjpeg-turbo + tiff + + + /usr/bin + /usr/lib + /usr/share/lcms/ + /usr/share/man + /usr/share/doc + + + + lcms2-devel + Development files for lcms2 + + lcms2 + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + lcms2-32bit + 32-bit shared libraries for lcms2 + emul32 + + tiff-32bit + libjpeg-turbo-32bit + + + lcms2 + + + /usr/lib32 + + + + + 2021-03-10 + 2.12 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 2.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-29 + 2.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-21 + 2.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 2.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 2.6 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-01 + 2.6 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + lensfun + http://lensfun.berlios.de/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + GPLv3 + CCPL-Attribution-ShareAlike-3.0 + library + multimedia.graphics + A programming library for rectifying and simulating photographic lens distortions + Mercek kaynaklı bozulmaları simüle etmek ve düzeltmek için bir kütüphane + lensfun provides an open source database of photographic lenses and their characteristics. The library provides also the necessary set of algorithms for correcting images based on detailed knowledge of lens properties and calibration data. + lensfun, kamera objektiflerinin karakteristiklerini içeren açık kaynaklı bir veritabanı ve bu karakteristikleri temel alarak mercek kaynaklı bozulmaları düzeltmek için yazılmış algoritmaları içeren bir kütüphanedir. + https://sourceforge.net/projects/lensfun/files/0.3.95/lensfun-0.3.95.tar.gz + + cmake + doxygen + libpng-devel + python3-devel + glib2-devel + + multimedia/graphics/lensfun/pspec.xml + + + lensfun + + libgcc + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + + + + lensfun-devel + Development files for lensfun + lensfun için geliştirme dosyaları + + lensfun + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 0.3.95 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-12 + 0.3.2 + Rebuild revert. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-12 + 0.3.95 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 0.3.2 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2018-09-01 + 0.3.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-05 + 0.3.2 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-13 + 0.3.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libart_lgpl + http://www.levien.com/libart + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.graphics + A LGPL version of libart + libart'ın bir LGPL sürümü + Libart est une librairie pour graphiques 2D à hautes performances. Elle est actuellement utilisé comme moteur de rendu anti-aliassé pour le Canvas Gnome. Libart fournit le support pour un modèle image très puissant, simplement le même que SVG et l'API (Interface de Programmation d'Application) Java 2D. + Libart is a library for high-performance 2D graphics. It is currently being used as the antialiased rendering engine for the Gnome Canvas. Libart supports a very powerful imaging model, basically the same as SVG and the Java 2D API. + Libart, yüksek performanslı iki boyutlu grafikler için bir kütüphanedir. Halihazırda Gnome Canvas için kenarların yumuşatıldığı dönüştürme aracı olarak kullanılmaktadır. Libart, temelde Java 2D API ve SVG benzeri, çok güçlü bir görüntüleme modelini destekler. +  Libart es una librería para gráficos 2D de alta performance. Actualmente está usado como antialiased rendering engine para Gnome Canvas. Libart soporta un modelo de imagen muy potente, básicamente el mismo como SVG y el API 2D de Java. + http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2 + + noartconfig.patch + libart_lgpl-2.3.21-crosscompile.patch + libart_lgpl-2.3.21-no-test-build.patch + + multimedia/graphics/libart_lgpl/pspec.xml + + + libart_lgpl + + /usr/lib + /usr/share/doc + + + + libart_lgpl-devel + Development files for libart_lgpl + libart_lgpl için geliştirme dosyaları + + libart_lgpl + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 2.3.21 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-05 + 2.3.21 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 2.3.21 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.3.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 2.3.21 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libcaca + http://caca.zoy.org/ + + PisiLinux Community + admins@pisilinux.org + + WTFPL-2 + LGPLv2.1 + GPLv2 + library + multimedia.graphics + A library that creates colored ASCII-art graphics + Renkli ASCII-sanat grafikleri oluşturan bir kütüphane + libcaca est une librairie graphique qui génère du texte au lieu de pixels afin de pouvoir fonctionner sur de vieilles cartes graphique ou sur des terminaux texte. + libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals + libcaca piksel yerine metin üreten bir grafik kütüphanesidir, böylece eski video kart yada metin uçbirimleriyle çalışabilir. + libcaca es una librería gráfica que produce una salida de texto en vez de pixels, por lo tanto puede funcionar con tarjetas de video más antiguas y terminales de texto + https://fossies.org/linux/privat/libcaca-0.99.beta19.tar.gz + + imlib2-devel + slang-devel + ncurses-devel + libX11-devel + + multimedia/graphics/libcaca/pspec.xml + + + libcaca + + imlib2 + zlib + slang + ncurses + libX11 + + + /usr/bin + /usr/lib + /usr/share/libcaca + /usr/share/man + /usr/share/doc + + + + libcaca-devel + Development files for libcaca + libcaca için geliştirme dosyaları + + libcaca + + + /usr/bin/caca-config + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-19 + 0.99_beta19 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 0.99_beta19 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-23 + 0.99_beta19 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.99_beta19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.99_beta19 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libdmtx + http://www.libdmtx.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.graphics + A Library for working with Data Matrix 2D bar-codes + Data Matrix 2D barkodlarıyla çalışmak için kitaplık + libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. + libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. + https://github.com/dmtx/libdmtx/archive/v0.7.5.tar.gz + + fedora/libdmtx-0.7.5-c99.patch + fedora/libdmtx-0.7.5-math.patch + fedora/libdmtx-0.7.5-size_t.patch + + multimedia/graphics/libdmtx/pspec.xml + + + libdmtx + + /usr/lib + /usr/share/doc + + + + libdmtx-devel + Development files for libdmtx + libdmtx için geliştirme dosyaları + + libdmtx + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-03-06 + 0.7.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-11 + 0.7.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-02 + 0.7.4 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-22 + 0.7.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-06-05 + 0.7.4 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libgexiv2 + https://wiki.gnome.org/Projects/gexiv2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + GObject-based wrapper around the Exiv2 library + GObject-based wrapper around the Exiv2 library + GObject-based wrapper around the Exiv2 library + GObject-based wrapper around the Exiv2 library + https://download.gnome.org/sources/gexiv2/0.14/gexiv2-0.14.0.tar.xz + + meson + gtk-doc + python-six + glib2-devel + docbook-xsl + libxslt-devel + gobject-introspection-devel + exiv2-devel + vala-devel + python3-pygobject3-devel + + multimedia/graphics/libgexiv2/pspec.xml + + + libgexiv2 + + glib2 + libgcc + exiv2-libs + + + /usr/lib + /usr/share + /usr/share/gtk-doc/html + /usr/share/vala/vapi + + + + libgexiv2-devel + Development files for libgexiv2 + + libgexiv2 + exiv2-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-22 + 0.14.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 0.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 0.12.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-25 + 0.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-18 + 0.11.0 + Version bump. + fury + uglyside@yandex.ru + + + 2018-08-14 + 0.10.8 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-20 + 0.10.6 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + libimagequant + https://pngquant.org/lib/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + multimedia.graphics + Palette quantization library that powers pngquant and other PNG optimizers + pngquant ve diger PNG en-iyilestiricilerini giclendiren, palet nicelendirme kitapligidir + Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images. + RGBA gorsellerin 8-bit indislenmis-renk gorsellerine donusumu icin kucuk moduler bi c kitapligidir.. + https://github.com/ImageOptim/libimagequant/archive/2.12.6.tar.gz + + libgcc + + + libimagequant_solibperm.patch + + multimedia/graphics/libimagequant/pspec.xml + + + libimagequant + + libgomp + + + /usr/lib + /usr/share/doc + + + + libimagequant-devel + Development files for libimagequant + libimagequant için geliştirme dosyaları + libimagequant-devel, libimagequant için geliştirme dosyaları içerir. + + libimagequant + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-15 + 2.12.6 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + libjpeg-turbo + http://www.libjpeg-turbo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.graphics + MMX, SSE, and SSE2 SIMD accelerated JPEG library + libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which +uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal. + https://github.com/libjpeg-turbo/libjpeg-turbo/archive/2.1.2.tar.gz + + cmake + + multimedia/graphics/libjpeg-turbo/pspec.xml + + + libjpeg-turbo + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + jpeg + + + + libjpeg-turbo-devel + Development files for libjpeg-turbo + libjpeg-turbo için geliştirme dosyaları + + libjpeg-turbo + + + /usr/include/ + /usr/lib/pkgconfig + + + jpeg-devel + + + + libjpeg-turbo-32bit + 32-bit shared libraries for jpeg + emul32 + emul32 + + libjpeg-turbo + + + /usr/lib32 + + + jpeg-32bit + + + + + 2021-11-19 + 2.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-03 + 2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-26 + 2.0.6 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2020-01-05 + 2.0.4 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2020-01-05 + 2.0.2 + Rebuild. + Idris Kalp + idriskalp@gmail.com + + + 2019-06-19 + 2.0.2 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-01-05 + 2.0.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-25 + 1.5.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-20 + 1.5.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-09-20 + 1.5.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.4.2 + Release bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-08 + 1.4.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libmng + http://www.libmng.com/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.graphics + Multiple Image Networkgraphics lib (animated png's) + Çoklu resim Networkgraphics (Animasyonlu png) + Libmng - La librairie de référence pour lire, afficher, écrire et examiner des Multiple-Image Network Graphics (graphiques orientés réseaux composés d'images multiples). MNG est l'extension d'animation pour le format d'image populaire PNG. + Libmng -The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. MNG is the animation extension to the popular PNG image-format. + Libmng, Çoklu Görüntü Ağ Grafiklerini (MNG) okuma, görüntüleme, yazma ve denemek için başvuru kütüphanesidir. MNG popüler PNG görüntü formatı için animasyon uzantısıdır. + Libmng -librería de referencia para lectura, visualización, escritura y análisis de gráficos tipo Multiple-Image Network. MNG es la extensión de animación al formato popular de imágenes PNG. + http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.3/libmng-2.0.3.tar.xz + + zlib-devel + lcms2-devel + libjpeg-turbo-devel + + multimedia/graphics/libmng/pspec.xml + + + libmng + + zlib + libjpeg-turbo + lcms2 + + + /usr/lib + + + + libmng-devel + + libmng + + + /usr/share/doc + /usr/share/man + /usr/include/ + /usr/lib/pkgconfig + + + + libmng-32bit + 32-bit shared libraries for libmng + emul32 + emul32 + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + + + zlib-32bit + lcms2-32bit + libjpeg-turbo-32bit + libmng + + + /usr/lib32 + + + + + 2020-01-19 + 2.0.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-29 + 2.0.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-09-20 + 2.0.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 2.0.2 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-04 + 2.0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libmypaint + https://github.com/mypaint/libmypaint + + PisiLinux Community + admins@pisilinux.org + + ISC + library + multimedia.graphics + a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support + a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support + a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support + a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support + https://github.com/mypaint/libmypaint/releases/download/v1.5.0/libmypaint-1.5.0.tar.xz + + python3 + intltool + json-c-devel + gobject-introspection-devel + + multimedia/graphics/libmypaint/pspec.xml + + + libmypaint + + glib2 + json-c + + + /usr/lib + /usr/share + /usr/share/locale + + + + libmypaint-devel + Development files for libmypaint + + libmypaint + glib2-devel + json-c-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-11-07 + 1.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 1.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 1.3.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-20 + 1.3.0 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + libopenraw + https://libopenraw.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + multimedia.graphics + A library for camera RAW files decoding. + RAW (Ham) fotoğraf dosyası işleme kütüphanesi + libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application. + libopenraw, fotoğraf makineleri tarafından sunulan ham görüntü dosyalarını (RAW) işlemek için kullanılabilecek bir kütüphanedir. + https://libopenraw.freedesktop.org/download/libopenraw-0.3.0.tar.xz + + rust + curl-devel + boost-devel + libxml2-devel + gdk-pixbuf-devel + libjpeg-turbo-devel + + multimedia/graphics/libopenraw/pspec.xml + + + libopenraw + + glib2 + libgcc + gdk-pixbuf + libjpeg-turbo + + + /usr/lib + /usr/share/doc + + + + libopenraw-devel + libopenraw için geliştirme dosyaları + + libopenraw + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-14 + 0.3.0 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-24 + 0.1.3 + Ver. bump. + fury + uglyside@yandex.ru + + + 2014-05-24 + 0.0.9 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-02-01 + 0.0.9 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-08-29 + 0.0.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libpcd + https://www.kraxel.org/blog/linux/libpcd/ + + fury + uglyside@yandex.ru + + GPLv2 + library + multimedia.graphics + libpcd is a tiny library for decoding PhotoCD images. + libpcd is a tiny library for decoding PhotoCD images. It used to come bundled with xpcd, but I've decided to release it separately so other apps such as fbi and ida can use it too. + https://www.kraxel.org/releases/libpcd/libpcd_1.0.1.tar.gz + multimedia/graphics/libpcd/pspec.xml + + + libpcd + + /usr/lib + /usr/share + + + + libpcd-devel + + libpcd + + + /usr/include + + + + + 2020-12-06 + 1.0.1 + First build. + fury + uglyside@yandex.ru + + + + + + libraw + https://www.libraw.org/ + + Yücel KILIÇ + yucel.kilic@linux.org.tr + + LGPLv2.1 + CDDL + library + multimedia.graphics + Raw image decoder + LibRaw is a library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others). + https://www.libraw.org/data/LibRaw-0.20.2.tar.gz + + libgomp + lcms2-devel + jasper-devel + libjpeg-turbo-devel + + multimedia/graphics/libraw/pspec.xml + + + libraw + + zlib + lcms2 + libgcc + jasper + libgomp + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libraw-devel + Development files for libraw + libraw için geliştirme dosyaları + + libraw + lcms2-devel + jasper-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-17 + 0.20.2 + Version bump. + fury + uglyside@yandex.ru + + + 2020-03-15 + 0.19.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-11 + 0.19.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.18.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-21 + 0.18.8 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 0.18.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.16.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-13 + 0.16.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + librecad + http://librecad.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.graphics + A 2D CAD drawing tool based QCad + Bilgisayar destekli tasarım programı + LibreCAD is an application for computer aided design (CAD) in two dimensions (2D). With LibreCAD you can create technical drawings such as plans for buildings, interiors, mechanical parts or schemas and diagrams + LibreCAD ile bina, iç mekan, mekanik parça gibi teknik çizimler oluşturabilirsiniz. + librecad + https://github.com/LibreCAD/LibreCAD/archive/2.1.3.tar.gz + + qt5-base-devel + qt5-svg-devel + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + qt5-qdbusviewer + freetype-devel + icu4c-devel + librsvg-devel + muparser-devel + imagemagick-devel + libxml2-devel + boost-devel + + + 0001-fix-build-with-Qt-5.11.patch + 0002-fix-build-with-Qt-5.15.patch + librecad-2.1.3-gcc-9.patch + + multimedia/graphics/librecad/pspec.xml + + + librecad + + qt5-base + muparser + qt5-svg + qt5-assistant + libgcc + + + /usr/bin + /usr/include + /usr/share + /usr/share/man + /usr/share/doc + + + librecad.desktop + librecad.png + + + + + 2020-03-06 + 2.1.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-01 + 2.1.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 2.1.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-06-08 + 2.1.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 2.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-07 + 2.0.9 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libwmf + http://wvware.sourceforge.net/libwmf.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.graphics + Library for reading and converting WMF files + WMF (Windows metafile) okuma ve dönüştürme kitaplığı + Librairie pour convertir les fichiers WMF. + A library for reading and converting Windows MetaFile vector graphics (WMF). + Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. + mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz + + libjpeg-turbo-devel + harfbuzz-devel + freetype-devel + libX11-devel + libxml2-devel + gettext-devel + gdk-pixbuf-devel + + multimedia/graphics/libwmf/pspec.xml + + + libwmf + + zlib + libX11 + libpng + libxml2 + freetype + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/libwmf + + + + libwmf-devel + Development files for libwmf + libwmf için geliştirme dosyaları + + libwmf + + + /usr/bin/libwmf-config + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-12 + 0.2.8.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 0.2.8.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 0.2.8.4 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.2.8.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.2.8.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libzimg + https://github.com/sekrit-twc/zimg + + Mathias Freire + mathiasfreire45@gmail.com + + WTFPL + library + multimedia.graphics + Scaling, colorspace conversion, and dithering library + The "z" library implements the commonly required image processing basics of scaling, colorspace conversion, and depth conversion. + https://github.com/sekrit-twc/zimg/archive/refs/tags/release-3.0.3.tar.gz + multimedia/graphics/libzimg/pspec.xml + + + libzimg + + /usr/lib + /usr/share/doc + + + + libzimg-devel + Header files for libzimg. + + libzimg + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-06 + 3.0.3 + Version bump. + fury + uglyside@yandex.ru + + + 2020-01-14 + 2.9.2 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + mjpegtools + http://mjpeg.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:gui + multimedia.graphics + Tools for MJPEG video + MJPEG video dosyaları için kullanılabilecek araçlar + mjpegtools is a complete suite of tools for you to capture, edit, process, filter and play your media as you wish. You can digitize your VHS collection, create DVDs, and do advanced video filtering on already-digitized videos. + Mjpegtools size görüntü yakalama, düzenleme, işleme ve filtreleme olanakları sunan ayrıca dosyalarınızı istediğiniz gibi oynatabileceğiniz tam bir araçlar paketidir. VHS kolleksiyonunuzu dijital ortama taşıyabilir, DVDler yaratabilirsiniz. Zaten dijital ortamda olan videolara ileri düzeyde video filtrelemesi yapabilirsiniz. + http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/mjpegtools-2.1.0.tar.gz/download + + gtk2-devel + libdv-devel + libsdl-devel + libXxf86dga-devel + libjpeg-turbo-devel + libpng-devel + + multimedia/graphics/mjpegtools/pspec.xml + + + mjpegtools + + gtk2 + glib2 + libdv + libgcc + libsdl + libjpeg-turbo + libpng + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + mjpegtools-devel + Development files for mjpegtools + mjpegtools için geliştirme dosyaları + + mjpegtools + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-01-18 + 2.1.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 2.1.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 2.1.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + netpbm + http://netpbm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.graphics + A set of utilities to convert to/from the netpbm (and related) formats + Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi + Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. + http://archlinux.c3sl.ufpr.br/other/netpbm/netpbm-10.61.02.tar.gz + + config.mk + + + jasper-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + zlib-devel + libX11-devel + libxml2-devel + + + netpbm-CAN-2005-2471.patch + netpbm-security-code.patch + netpbm-security-scripts.patch + library-link.patch + + multimedia/graphics/netpbm/pspec.xml + + + netpbm + + jasper + tiff + libpng + libjpeg-turbo + zlib + libX11 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/netpbm + /usr/share/man + /usr/share/doc + + + + netpbm-devel + Development files for netpbm + netpbm için geliştirme dosyaları + + netpbm + + + /usr/include + /usr/share/man/man3 + + + + + 2020-03-06 + 10.61.02 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-01 + 10.61.02 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-18 + 10.61.02 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 10.61.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-21 + 10.61.02 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openimageio + https://sites.google.com/site/openimageio/home + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + multimedia.graphics + Library for reading and writing images + Görüntüleri okuma ve yazma için bir kütüphane + OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. + https://github.com/OpenImageIO/oiio/archive/Release-2.2.18.0.tar.gz + + git + cmake + pybind11 + boost-devel + boost-python3 + openssl-devel + pugixml-devel + openexr-devel + imath-devel + glew-devel + python3-devel + txt2man + libpng-devel + tiff-devel + webp-devel + ffmpeg-devel + opencv-devel + freetype-devel + giflib-devel + zlib-devel + jasper-devel + libraw-devel + hdf5-devel + qt5-base-devel + intel-tbb-devel + openjpeg2-devel + opencolorio-devel + libjpeg-turbo-devel + + multimedia/graphics/openimageio/pspec.xml + + + openimageio + + tiff + webp + boost + opencv + pugixml + openssl + giflib + pybind11 + imath + openjpeg2 + openexr-libs + libjpeg-turbo + libraw + zlib + ffmpeg + libpng + python3 + freetype + libgcc + libglvnd + qt5-base + + + /usr/lib + /usr/bin + /usr/share + + + + openimageio-devel + Development files for openimageio + openimageio için geliştirme başlıkları + + openimageio + tiff-devel + webp-devel + boost-devel + opencv-devel + giflib-devel + pugixml-devel + imath-devel + openjpeg2-devel + openexr-devel + libjpeg-turbo-devel + libraw-devel + zlib-devel + ffmpeg-devel + libpng-devel + python3-devel + freetype-devel + + + /usr/include + + + + + 2022-01-18 + 2.2.18.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-20 + 2.2.18.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 2.2.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-30 + 2.2.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-12 + 2.2.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 2.2.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-18 + 2.0.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-05 + 1.8.17 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.8.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 1.8.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-26 + 1.8.9 + Rebuild ffmpeg + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-23 + 1.7.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 1.7.12 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-17 + 1.7.12 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-20 + 1.6.14 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-15 + 1.5.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-08 + 1.5.20 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openjpeg + http://www.openjpeg.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.graphics + JPEG2000 decoding library + JPEG2000 çözme kütüphanesi + Biblioteka implementująca kodek formatu JPEG 2000 + openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). + http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.2/openjpeg-1.5.2.tar.gz + + tiff-devel + doxygen + libpng-devel + + + openjpeg-20070717svn-mqc-optimize.patch + + multimedia/graphics/openjpeg/pspec.xml + + + openjpeg + + libpng + tiff + + + /usr/bin + /usr/share/pkgconfig/ + /usr/share/openjpeg-1.5 + /usr/share/man/man1 + /usr/lib + /usr/share/doc + + + + openjpeg-devel + Development files for openjpeg + openjpeg için geliştirme dosyaları + Pliki nagłówkowe do openjpeg + + openjpeg + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/man/man3 + + + + openjpeg-32bit + 32-bit shared libraries for openjpeg + emul32 + + tiff-32bit + libpng-32bit + + + openjpeg + + + /usr/lib32 + + + + + 2020-01-19 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2019-11-05 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.5.2 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2014-05-22 + 1.5.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + openjpeg2 + https://github.com/uclouvain/openjpeg + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.graphics + JPEG2000 decoding library + JPEG2000 çözme kütüphanesi + Biblioteka implementująca kodek formatu JPEG 2000 + openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). + https://github.com/uclouvain/openjpeg/archive/v2.4.0.tar.gz + + cmake + doxygen + lcms2-devel + tiff-devel + zlib-devel + libpng-devel + + multimedia/graphics/openjpeg2/pspec.xml + + + openjpeg2 + + lcms2 + tiff + libpng + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man1 + /usr/share/man3 + /usr/share/doc + + + + openjpeg2-devel + Development files for openjpeg2 + openjpeg2 için geliştirme dosyaları + Pliki nagłówkowe do openjpeg2 + + openjpeg2 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/openjpeg-2.3 + /usr/lib32/openjpeg-2.3 + + + + openjpeg2-32bit + 32-bit shared libraries for openjpeg2 + emul32 + emul32 + + zlib-32bit + lcms2-32bit + tiff-32bit + libpng-32bit + + + lcms2-32bit + tiff-32bit + libpng-32bit + + + /usr/lib32 + /usr/bin/*_32 + + + + + 2021-06-03 + 2.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 2.3.1 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2019-11-05 + 2.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-23 + 2.3.0 + First release. + PisiLinux Community + admins@pisilinux.org + + + 2018-08-03 + 2.3.0 + First release. + PisiLinux Community + admins@pisilinux.org + + + 2018-03-30 + 2.3.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + OpenSceneGraph + http://www.openscenegraph.org + + PisiLinux Community + admins@pisilinux.org + + OSGPLv0.0 + wxWinLL-3 + LGPLv2 + app:gui + library + multimedia.graphics + A C++ scene graph API on OpenGL for real time graphics + OpenGL üzerinde gerçek zamanlı grafikler oluşturmak için C++ manzara grafik API'si + The Open Scene Graph is a cross-platform C++/OpenGL library for the real-time visualization. Uses range from visual simulation, scientific modeling, virtual reality through to games. + Open Scene Graph, gerçek zamanlı görüntüleme için C++/OpenGL kiatplığıdır. Görsel simülasyon, bilimsel modelleme ve sanal gerçeklikten oyunlara kadar geniş bir alanda kullanılır. + https://github.com/openscenegraph/OpenSceneGraph/archive/OpenSceneGraph-3.6.5.zip + + xine-lib-devel + jasper-devel + librsvg-devel + curl-devel + giflib-devel + libvncserver-devel + cmake + + + 0003-Activate-osgviewerWX.patch + + multimedia/graphics/OpenSceneGraph/pspec.xml + + + OpenSceneGraph + + curl + zlib + libgcc + libX11 + libgcc + libpng + freetype + giflib + jasper + cairo + librsvg + xine-lib + libvncserver + libjpeg-turbo + mesa + + + /usr/bin + /usr/lib + /usr/share/doc + + + + OpenSceneGraph-devel + development files for OpenSceneGraph + OpenSceneGraph için geliştirme dosyaları + + OpenSceneGraph + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-06-22 + 3.6.5 + New Release + PisiLinux Community + admins@pisilinux.org + + + + + + optipng + http://optipng.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + zlib + app:console + multimedia.graphics + PNG Optimizer + PNG İyileştirici + OptiPNG is a PNG optimizer that recompresses image files to a smaller size, without losing any information. This program also converts external formats (BMP, GIF, PNM and TIFF) to optimized PNG, and performs PNG integrity checks and corrections. + OptiPNG, herhangi bir veri kaybı olmadan resim dosyalarını tekrar sıkıştıran bir PNG iyileştiricisidir. Bu program aynı zamanda, diğer biçimleri (BMP, GIF, PNM, TIFF) iyileştirilmiş PNG biçimine çevirebilir ve PNG bütünlük kontrolü ve düzeltmeleri yapabilir. + mirrors://sourceforge/optipng/optipng-0.7.7.tar.gz + + zlib-devel + libpng-devel + + multimedia/graphics/optipng/pspec.xml + + + optipng + + zlib + libpng + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2021-10-14 + 0.7.7 + First build + fury + uglyside@yandex.ru + + + + + + potrace + http://potrace.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app + multimedia.graphics + Transforming bitmaps into vector graphics. + Bitmap dosyalarını grafik vektör formatına dönüştürür. + Potrace is a tool for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image. + potrace komut tabanlı çalışan, bitmap resim dosyasından grafik vektör resimlerine dönüştüren bir uygulamadır + https://sourceforge.net/projects/potrace/files/1.16/potrace-1.16.tar.gz + + zlib-devel + + multimedia/graphics/potrace/pspec.xml + + + potrace + Transforming bitmaps into vector graphics. + + zlib + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/include + + + + + 2020-04-30 + 1.16 + Ver. bump + fury + uglyside@yandex.ru + + + 2014-06-18 + 1.11 + Rebuild for gcc + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-11-20 + 1.11 + Update + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2011-08-22 + 1.10 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + rawtherapee + http://rawtherapee.com/ + + Marcin Bojara + marcin@pisilinux.org + + GPLv3 + app:gui + multimedia.graphics + RawTherapee is a powerful, cross-platform raw photo processing program + Edytor zdjęć RAW + RawTherapee is designed for developing raw files from a broad range of digital cameras, as well as HDR DNG files and non-raw image formats (JPEG, TIFF and PNG). + Zaawansowany program do wywoływania zdjęć. + https://github.com/Beep6581/RawTherapee/releases/download/5.8/rawtherapee-5.8.tar.xz + + cmake + gtk3-devel + tiff-devel + zlib-devel + exiv2-devel + expat-devel + fftw3-devel + glib2-devel + atkmm-devel + lcms2-devel + glibmm-devel + gtkmm3-devel + libpng-devel + librsvg-devel + lensfun-devel + libsigc++-devel + libcanberra-devel + libiptcdata-devel + libjpeg-turbo-devel + libcanberra-gtk3-devel + + multimedia/graphics/rawtherapee/pspec.xml + + + rawtherapee + + tiff + zlib + gtk3 + glib2 + expat + fftw3 + lcms2 + atkmm + gtkmm3 + glibmm + libpng + libgcc + libgomp + cairomm + pangomm + librsvg + lensfun + libsigc++ + libcanberra + libiptcdata + libjpeg-turbo + libcanberra-gtk3 + + + /usr/bin + /usr/share/doc/rawtherapee + /usr/share + /usr/share/man + + + + + 2020-03-31 + 5.8 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + tiff + https://libtiff.gitlab.io/libtiff/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.graphics + Library for manipulation of TIFF (Tag Image File Format) images + TIFF (Tag Image File Format) türündeki resimleri işlemeye aracılık eden kütüphane + Ce logiciel fournit le support pour le format "Tag Image File Format" (TIFF), un format très employé pour stocker des informations d'image. + This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. + Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. + Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. + Biblioteka do manipulacji plikami w formacie TIFF. + http://download.osgeo.org/libtiff/tiff-4.4.0.tar.xz + + xz-devel + zlib-devel + zstd-devel + libjpeg-turbo-devel + jbigkit-devel + + multimedia/graphics/tiff/pspec.xml + + + tiff + + xz + zlib + zstd + libjpeg-turbo + jbigkit + + + /usr/bin + /usr/lib + + + + tiff-devel + Developement files for tiff + tiff için geliştirme dosyaları + + tiff + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + tiff-docs + Documentation for tiff + tiff için belgelendirme dosyaları + + tiff + + + /usr/share/doc + /usr/share/man + + + + tiff-32bit + 32-bit shared libraries for tiff + tiff için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + xz-32bit + zlib-32bit + libjpeg-turbo-32bit + + + tiff + libjpeg-turbo-32bit + libgcc + xz-32bit + zlib-32bit + + + /usr/lib32 + + + + + 2022-05-28 + 4.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 4.2.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-15 + 4.1.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-10-26 + 4.0.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-09 + 4.0.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 4.0.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-21 + 4.0.8 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 4.0.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 4.0.3 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-19 + 4.0.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + webp + https://www.webmproject.org/ + + PisiLinux Community + admins@pisilinux.org + + Copyright (c) 2010, Google Inc. All rights reserved. + application + multimedia.graphics + webp image format and format conversion png,jpeg,tiff + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + webp image format and format conversion png,jpeg,tiff + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + https://github.com/webmproject/libwebp/archive/v1.2.0.tar.gz + + mesa-devel + mesa-glu-devel + libpng-devel + tiff-devel + libsdl-devel + giflib-devel + freeglut-devel + libjpeg-turbo-devel + + multimedia/graphics/webp/pspec.xml + + + webp + webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı + + tiff + mesa + giflib + libpng + freeglut + libjpeg-turbo + + + /usr/lib/libwebp* + /usr/bin + /usr/share/man + /usr/share/doc/webp + + + + webp-devel + webp için geliştirme dosyaları + + webp + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-06-03 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-12 + 1.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 1.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-18 + 1.0.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-28 + 1.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-21 + 0.6.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 0.6.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-06 + 0.4.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libavif + https://github.com/AOMediaCodec/libavif + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + Library for encoding and decoding avif files + Library for encoding and decoding avif files + Library for encoding and decoding avif files + Library for encoding and decoding avif files + https://github.com/AOMediaCodec/libavif/archive/refs/tags/v0.9.3.tar.gz + + cmake + nasm + aom-devel + zlib-devel + rav1e-devel + dav1d-devel + glib2-devel + libpng-devel + svt-av1-devel + gdk-pixbuf-devel + libjpeg-turbo-devel + + multimedia/misc/libavif/pspec.xml + + + libavif + + aom + rav1e + dav1d + glib2 + libpng + svt-av1 + gdk-pixbuf + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libavif-devel + Development files for libavif + + libavif + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-11-01 + 0.9.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libpano13 + http://sourceforge.net/projects/panotools + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.misc + Library for manipulating panoramic images + Panoramik görüntü kitaplığı + libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs. + libpano13 panoramik görüntüleri yüksek kalitede düzeltip birleştirebilen bir kitaplıktır. + mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz + + zlib-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + + multimedia/misc/libpano13/pspec.xml + + + libpano13 + + tiff + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + libpano13-devel + Development files for libpano13 + libpano13 için geliştirme dosyaları + + libpano13 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-05 + 2.9.19 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2018-08-15 - 1.1.6 + 2018-09-01 + 2.9.19 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2017-01-30 - 1.1.6 + 2017-04-08 + 2.9.19 Release Bump Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 2.9.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-11-10 + 2.9.19 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cmark + https://github.com/jgm/cmark + + PisiLinux Community + admins@pisilinux.org + + BSD2 + library + multimedia.misc + CommonMark parsing and rendering library and program in C + CommonMark parsing and rendering library and program in C + CommonMark parsing and rendering library and program in C + CommonMark parsing and rendering library and program in C + https://github.com/commonmark/cmark/archive/0.30.2.tar.gz + + cmake + python3-devel + + multimedia/misc/cmark/pspec.xml + + + cmark + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + cmark-devel + Development files for cmark + + cmark + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-10-05 + 0.30.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-23 + 0.30.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 0.29.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + compface + http://www.xemacs.org/Download/optLibs.html + + PisiLinux Community + admins@pisilinux.org + + MIT + library + multimedia.misc + X-Face library + X-Face kütüphanesi + Utilitaires et librairie pour convertir de/vers le format X-Face. + Utilities and library to convert to/from X-Face format. + X-Face formatını okuma ve yazmaya yarayan bir kütüphane + Utilitarios y librerías para convertir desde/al formato X-Face + http://ftp.xemacs.org/pub/xemacs/aux/compface-1.5.2.tar.gz + + xbmp.patch + shared.patch + cve-2009-2286.patch + + multimedia/misc/compface/pspec.xml + + + compface + + /usr/bin + /usr/lib + /usr/share/doc/compface + /usr/share/man + + + + compface-devel + Development files for compface + compface için geliştirme dosyaları + + compface + + + /usr/include + /usr/share/man/man3 + + + + + 2020-01-15 + 1.5.2 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-01 + 1.5.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 1.5.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-21 + 1.5.2 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.5.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + DirectFB + http://www.directfb.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Thin library on top of the Linux framebuffer devices + Linux framebuffer aygıtlarının üstünde çalışan hafif bir kütüphane + DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers. + DirectFB donanımsal grafik hızlandırması, giriş aygıtları işleme ve soyutlama sağlayan yarısaydam pencereler ve çoklu görüntü katmanlarını destekleyen pencere sistemi ile bütünleşik bir kütüphanedir. + http://sources.buildroot.net/DirectFB-1.7.7.tar.gz + + libgcc + giflib-devel + libX11-devel + zlib-devel + tiff-devel + jasper-devel + freetype-devel + libpng-devel + libXext-devel + libglvnd-devel + mesa-devel + webp-devel + mesa-glu-devel + libdrm-devel + libjpeg-turbo-devel + libmng-devel + lcms2-devel + libvdpau-devel + libmad-devel + libvorbis-devel + + multimedia/misc/DirectFB/pspec.xml + + + DirectFB-docs + + DirectFB + + + /usr/share/doc + + + + DirectFB + + zlib + libgcc + libpng + freetype + libX11 + libXext + libglvnd + mesa + libdrm + libjpeg-turbo + libvdpau + webp + tiff + jasper + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share + + + + DirectFB-devel + Development files for DirectFB + DirectFB için geliştirme dosyaları + + DirectFB + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-04 + 1.7.7 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-08 + 1.7.7 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-29 + 1.7.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 1.7.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 1.7.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.7.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 1.7.7 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + exempi + https://libopenraw.freedesktop.org/exempi/ + + PisiLinux Community + admins@pisilinux.org + + BSD-3 + library + multimedia.misc + An implementation of XMP, based on Adobe SDK + Adobe SDK'sını temel alan bir XMP implementasyonu. + exempi is a port of Adobe XMP SDK to work on UNIX and to be built with GNU automake. It includes XMPCore and XMPFiles, and exempi, a C-based API. + exempi, Adobe XMP SDK'sının UNIX'te çalışması ve GNU automake ile derlenmesi için yapılmış bir portudur. XMPCore, XMPFiles ve exempi isimli C temelli bir API içerir. + http://libopenraw.freedesktop.org/download/exempi-2.5.1.tar.bz2 + + zlib-devel + expat-devel + + multimedia/misc/exempi/pspec.xml + + + exempi + + zlib + expat + libgcc + + + /usr/lib + /usr/bin + /usr/share/doc/exempi + /usr/share/man + + + + exempi-devel + Development files for exempi + exempi için geliştirme dosyaları + + exempi + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-02-29 + 2.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + exiv2 + http://www.exiv2.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.misc + Another library for parsing, editing, and saving EXIF data + EXIF verilerini ayrıştırmak, düzenlemek ve kaydetmek için bir diğer kitaplık + Exiv2 est une librairie C++ ainsi qu'un utilitaire en ligne de commande pour accéder aux méta-données d'images. Exiv2 est disponible en tant que logiciel libre ou avec une licence commerciale et est utilisée par un nombre croissant de projets. + exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects. + Exiv2 resimlerin başlık bilgilerine ulaşmak için kullanılan bir C++ kütüphanesi ve komut satırı uygulamasıdır. Exiv2, hem özgür yazılım hem de ticari yazılım lisansıyla kullanılabilir. + Exiv2 es una librería C++ y una herramienta de línea de comandopara acceder metadatos de imágenes. Exiv2 está disponible como software libre y con licencia comercial, y se utiliza cada vez en más proyectos. + http://www.exiv2.org/builds/exiv2-0.27.4-Source.tar.gz + + cmake + curl-devel + zlib-devel + expat-devel + + + f01805f6.patch + + multimedia/misc/exiv2/pspec.xml + + + exiv2 + + exiv2-libs + libgcc + + + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + exiv2-libs + + zlib + curl + expat + libgcc + + + /usr/lib + + + + exiv2-devel + Development files for exiv2 + exiv2 için geliştirme dosyaları + + exiv2-libs + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-10-24 + 0.27.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 0.27.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-25 + 0.27.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 0.27.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.26 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-06 + 0.26 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 0.25 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-02 + 0.25 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ezanvakti + https://github.com/fbostanci/ezanvakti + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + multimedia + multimedia.misc + Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. + Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. + Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. + Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. + https://github.com/fbostanci/ezanvakti/archive/v7.1.tar.gz + + libnotify-devel + ffmpeg-devel + wget + curl-devel + bash-completion + + multimedia/misc/ezanvakti/pspec.xml + + + ezanvakti + + libnotify + ffmpeg + mplayer + wget + bash-completion + yad + iputils + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + ezanvakti.desktop + ezanvakti.png + + + + + 2020-04-27 + 7.1 + version bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-04-07 + 6.3.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ffnvcodec + https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git + + PisiLinux Community + admins@pisilinux.org + + MIT + library + multimedia.misc + FFmpeg version of headers required to interface with Nvidias codec APIs + FFmpeg version of headers required to interface with Nvidias codec APIs + https://sourceforge.net/projects/pisilinux/files/source/ffnvcodec-9.1.23.1.tar.xz + multimedia/misc/ffnvcodec/pspec.xml + + + ffnvcodec + + /usr/include + /usr/lib/pkgconfig + /usr/share + + + + + 2020-01-14 + 9.1.23.1 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + FreeImage + http://freeimage.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + An Open Source library project + FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. + FreeImage es un proyecto de librería código abierto para desarrolladores que quisieran soportar formatos populares de imágenes como PNG, BMP, JPEG, TIFF y otros, usados en aplicaciones multimedia actuales + https://sourceforge.net/projects/freeimage/files/Source%20Distribution/3.18.0/FreeImage3180.zip + + dos2unix + tiff-devel + webp-devel + mesa-devel + libmng-devel + libraw-devel + openexr-devel + mesa-glu-devel + openjpeg2-devel + libjpeg-turbo-devel + + + freeimage-libraw-0.20.patch + + multimedia/misc/FreeImage/pspec.xml + + + FreeImage + + tiff + webp + mesa + libgcc + libmng + libraw + dos2unix + mesa-glu + openjpeg2 + openexr-libs + libjpeg-turbo + + + /usr/lib + /usr/share/doc + + + + FreeImage-devel + Development files for FreeImage + FreeImage için geliştirme dosyaları + + FreeImage + + + /usr/include + + + + + 2021-10-29 + 3.18.0 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2021-05-25 + 3.18.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + frei0r-plugins + https://frei0r.dyne.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A plugin API for video sources and filters + Video kaynakları ve süzgeçleri için bir eklenti programlama arayüzü + frei0r-plugins is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. + frei0r-plugins video kaynakları ve süzgeçleri için basit bir eklenti programlama arayüzüdür. Efektlerin davranışları basit parametrelerle denetlenebilmektedir. + https://files.dyne.org/frei0r/releases/frei0r-plugins-1.7.0.tar.gz + + libgcc + cairo-devel + cmake + + multimedia/misc/frei0r-plugins/pspec.xml + + + frei0r-plugins + + libgcc + cairo + + + /usr/lib + /usr/share/doc + + + + frei0r-plugins-devel + Development files for frei0r-plugins + frei0r-plugins için geliştirme dosyaları + + frei0r-plugins + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 1.7.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.6.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.4 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + fribidi + http://fribidi.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.misc + A free implementation of the unicode bidirectional algorithm + Çift yönlü unikod algoritmanın özgür bir uyarlaması + GNU FriBidi est l'implémentation libre de l'algorithme bidirectionnel Unicode. + GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm. + GNU FriBidi, Çift Yönlü Unicode Algoritması'nın özgür uygulamasıdır. + GNU FriBidi es la implementación libre del algoritmo Unicode Bidirectional. + https://github.com/fribidi/fribidi/releases/download/v1.0.8/fribidi-1.0.8.tar.bz2 + multimedia/misc/fribidi/pspec.xml + + + fribidi + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + fribidi-devel + Development files for fribidi + fribidi için geliştirme dosyaları + + fribidi + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + fribidi-32bit + 32-bit shared libraries for fribidi + emul32 + emul32 + + fribidi + + + /usr/lib32 + + + + + 2020-01-18 + 1.0.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-15 + 1.0.5 + Rebuild 32bit. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-17 + 1.0.5 + Version Bump + Aydin Atmaca + aydinatmaca@gmail.com + + + 2018-08-03 + 1.0.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.19.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.19.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-23 + 0.19.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gd + https://libgd.github.io/ + + PisiLinux Community + admins@pisilinux.org + + as-is + BSD + library + app:console + multimedia.misc + Une librairie rapide pour créer des graphiques en images. + A fast library for creating graphic images + Hızlı bir şekilde resim oluşturmak için bir kütüphane + The gd graphics library allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and to write out the result as a PNG or JPEG file. This is particularly useful in Web applications, where PNG and JPEG are two of the formats accepted for inline images by most browsers. Note that gd is not a paint program. + GD çizge kitaplığı, hızlıca çizgiler, yaylar, metinler ve çeşitli renkler ile resimler yaratmanızı sağlarken, diğer resimler üzerinde kopyala-yapıştır yapmanıza olanak tanır ve sonuçlarınızı PNG veya JPEG olarak kaydetmenizi sağlar. + https://github.com/libgd/libgd/releases/download/gd-2.3.3/libgd-2.3.3.tar.gz + + bdc281eadb1d58d5c0c7bbc1125ee4674256df08.patch + + + tiff-devel + webp-devel + zlib-devel + libavif-devel + libheif-devel + libpng-devel + libvpx-devel + freetype-devel + fontconfig-devel + libjpeg-turbo-devel + + multimedia/misc/gd/pspec.xml + + + gd + A fast library for creating graphic images + + webp + tiff + zlib + libavif + libheif + libpng + libvpx + freetype + fontconfig + libjpeg-turbo + + + /usr/lib + /usr/bin + /usr/share/doc/gd + + + + gd-devel + Development files for gd + gd için geliştirme dosyaları + gd-devel, gd için geliştirme dosyalarını içerir. + + gd + webp-devel + tiff-devel + zlib-devel + libheif-devel + libavif-devel + libpng-devel + freetype-devel + fontconfig-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/bin/gdlib-config + + + + gd-docs + Documentation files for gd + gd için geliştirme belgeleri + gd-docs, gd için belgelendirme dosyalarını içerir. + + /usr/share/doc/gd/html + + + + + 2021-11-01 + 2.3.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 2.3.2 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2020-05-20 + 2.3.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-19 + 2.2.5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 2.2.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 2.2.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-12 + 2.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-08-02 + 2.1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gphoto2 + http://www.gphoto.org/ + + fury + uglyside@yandex.ru + + GPLv2 + app:console + multimedia.misc + Digital camera software. + gPhoto2 is a free, redistributable, ready to use set of digital camera software applications for Unix-like systems, written by a whole team of dedicated volunteers around the world. It supports more than 2500 cameras. + mirrors://sourceforge/project/gphoto/gphoto/2.5.28/gphoto2-2.5.28.tar.xz + + cdk-devel + popt-devel + aalib-devel + readline-devel + libgphoto2-devel + libjpeg-turbo-devel + + multimedia/misc/gphoto2/pspec.xml + + + gphoto2 + + cdk + popt + aalib + libexif + ncurses + readline + libgphoto2 + libjpeg-turbo + + + /usr/bin + /usr/share/locale + /usr/share/man/man1 + /usr/share/doc + + + + + 2022-01-17 + 2.5.28 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-19 + 2.5.26 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-06 + 2.5.23 + First build. + fury + uglyside@yandex.ru + + + + + + indicator-sound-switcher + https://yktoo.com/en/software/sound-switcher-indicator/ + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + multimedia.misc + Sound input/output selector indicator for Linux. + It shows an icon in the indicator area or the system tray (whatever is available in your desktop environment). The icon's menu allows you to switch the current sound input and output (i.e. source ports and sink ports in PulseAudio's terms, respectively) with just two clicks. + https://github.com/yktoo/indicator-sound-switcher/archive/refs/tags/v2.3.8.tar.gz + + python3-setuptools + + multimedia/misc/indicator-sound-switcher/pspec.xml + + + indicator-sound-switcher + + gtk3 + python3 + keybinder + python3-pygobject3 + ayatana-libappindicator + + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + + + + + 2022-05-28 + 2.3.8 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-04 + 2.3.6 + First build. + fury + uglyside@yandex.ru + + + + + + ispc + https://ispc.github.io/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + C-based SPMD programming language compiler + C-based SPMD programming language compiler + C tabanlı SPMD programlama dili derleyicisi + C tabanlı SPMD programlama dili derleyicisi + https://github.com/ispc/ispc/archive/refs/tags/v1.16.0.tar.gz + + flex + llvm + cmake + doxygen + zlib-devel + llvm-mlir + llvm-polly + libxml2-devel + ncurses-devel + llvm-clang-devel + python3-devel + + + 0001-Link-against-libclang-cpp.so.patch + + multimedia/misc/ispc/pspec.xml + + + ispc + + libgcc + llvm-libs + llvm-clang + + + /usr/bin + /usr/share/doc + + + + + 2021-06-30 + 1.16.0 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + jansson + http://www.digip.org/jansson/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + MIT + library + multimedia.misc + Jansson is a C library for encoding, decoding and manipulating JSON data. + It features: Simple and intuitive API and data model, Comprehensive documentation, No dependencies on other libraries, Full Unicode support (UTF-8), Extensive test suite. + http://www.digip.org/jansson/releases/jansson-2.12.tar.bz2 + multimedia/misc/jansson/pspec.xml + + + jansson + + glibc + + + /usr/lib + /usr/share + /usr/share/doc + + + + jansson-devel + + jansson + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-11-07 + 2.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-19 + 2.12 + Version Bump + İdris Kalp + aidriskalp@gmail.com + + + 2018-08-13 + 2.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-19 + 2.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 2.7 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + klavaro + http://klavaro.sourceforge.net/en/index.html + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + app:gui + multimedia.misc + Free touch typing tutor program + Klavye eğitimi programı + Klavaro is just another free touch typing tutor program. Klavaro intends to be keyboard and language independent, saving memory and time (and money). + Klavaro, özgür bir klavye eğitimi programıdır. Bir çok dilde klavye ve arayüz desteği sağlar. + klavaro + https://sourceforge.net/projects/klavaro/files/klavaro-3.13.tar.bz2/download + + intltool + atk-devel + curl-devel + gtk3-devel + cairo-devel + glib2-devel + pango-devel + harfbuzz-devel + gdk-pixbuf-devel + gtkdatabox-devel + + multimedia/misc/klavaro/pspec.xml + + + klavaro + + atk + curl + gtk3 + cairo + glib2 + pango + harfbuzz + intltool + gtkdatabox + gdk-pixbuf + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/lib + + + klavaro.desktop + + + + + 2021-10-16 + 3.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-07 + 3.11 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + libaribb24 + https://github.com/nkoriyama/aribb24 + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + multimedia.misc + Library for ARIB STD-B24, decoding JIS 8 bit characters and parsing MPEG-TS stream + Library for ARIB STD-B24, decoding JIS 8 bit characters and parsing MPEG-TS stream + https://github.com/nkoriyama/aribb24/archive/v1.0.3.tar.gz + + libpng-devel + + multimedia/misc/libaribb24/pspec.xml + + + libaribb24 + + libgcc + libpng + + + /usr/lib + /usr/share/doc + + + + libaribb24-devel + Development files for libaribb24 + + libaribb24 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 1.0.3 + First release + İdris Kalp + idriskalp@gmail.com + + + + + + libass + https://github.com/libass/libass + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + Subtitle rendering library + Altyazı çizim kitaplığı + libass is a portable subtitle rendering library for the ASS/SSA. + libass ASS/SSA altyazı çizim kitaplığıdır. + https://github.com/libass/libass/releases/download/0.14.0/libass-0.14.0.tar.xz + + fontconfig-devel + freetype-devel + fribidi-devel + + multimedia/misc/libass/pspec.xml + + + libass + + fontconfig + freetype + fribidi + harfbuzz + + + /usr/lib + /usr/share/doc/libass + + + + libass-devel + Development files for libass + libass için geliştirme dosyaları + + libass + fontconfig-devel + freetype-devel + fribidi-devel + harfbuzz-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-17 + 0.14.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 0.14.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 0.13.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.13.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-06 + 0.13.1 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libbinio + https://github.com/adplug/libbinio + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Binary I/O stream class library + İkili I/O yayın sınıfı kitaplığı + libbinio is a binary I/O stream class library. + libbinio ikili I/O yayın sınıfı kitaplığıdır. + https://github.com/adplug/libbinio/releases/download/libbinio-1.5/libbinio-1.5.tar.bz2 + + gcc44.patch + string-conversion.patch + + multimedia/misc/libbinio/pspec.xml + + + libbinio + + libgcc + + + /usr/lib + /usr/share/doc + /usr/share/info + + + + libbinio-devel + Headers I/O stream class library + libbinio için geliştirme başlıkları + libbinio is a binary I/O stream class library. + libbinio için geliştirme başlıklarını içerir. + + libbinio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-18 + 1.5 + Version bump + fury + uglyside@yandex.ru + + + 2020-03-06 + 1.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-06 + 1.4 + First release + Ali Cengiz KLurt + alicengizkurt@gmail.com + + + + + + libbluray + http://www.videolan.org/developers/libbluray.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.misc + Library to access Blu-Ray disks for video playback + Blu-Ray disklere ulaşmak için kitaplık + Libbluray package is aiming to provide a full portable free open source bluray library, which can be plugged into popular media players to allow full bluray navigation and playback on Linux. It will eventually be compatible with all current titles, and will be easily portable and embeddable in standard players such as mplayer and vlc. + Libbluray kitaplığı, Linux üzerinde bluray oynatmak için tam destek sağlayan, popüler çokluortam oynatıcılarına taşınabilir bir bağımsız açık kaynak bluray kitaplığı olma amacıyla ortaya çıkmıştır. Zaman içerisinde bütün güncel başlıklar ile uyumlu olması, kolay taşınabilmesi ve mplayer, vlc gibi standart oynatıcılara gömülebilir olması amaçlanmaktadır. + ftp://ftp.videolan.org/pub/videolan/libbluray/1.1.2/libbluray-1.1.2.tar.bz2 + + libtool + doxygen + pkgconfig + libxml2-devel + freetype-devel + fontconfig-devel + + multimedia/misc/libbluray/pspec.xml + + + libbluray + + libxml2 + freetype + fontconfig + + + /usr/bin + /usr/lib + + + + libbluray-devel + Development files for libbluray + Libbluray için geliştirme dosyaları + + libbluray + libxml2-devel + freetype-devel + fontconfig-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libbluray-docs + document files for libbluray + + libbluray + + + /usr/share/doc/ + + + + + 2021-03-10 + 1.1.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 1.1.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 0.9.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 0.9.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.9.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-04 + 0.9.2 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libcdr + http://www.freedesktop.org/wiki/Software/libcdr + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + MPLv1.1 + library + multimedia.misc + Library parsing the Corel cdr documents + Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications. + https://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.7.tar.xz + + doxygen + zlib-devel + lcms2-devel + icu4c-devel + libwpd-devel + boost-devel + librevenge-devel + cppunit-devel + + multimedia/misc/libcdr/pspec.xml + + + libcdr + + lcms2 + icu4c + zlib + libgcc + librevenge + cppunit + + + /usr/lib + /usr/bin + /usr/share/doc/libcdr + + + + libcdr-devel + Development files for libcdr + libcdr için geliştirme dosyaları + + icu4c-devel + zlib-devel + lcms2-devel + librevenge-devel + libcdr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-05 + 0.1.7 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2021-03-10 + 0.1.6 + rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2020-02-22 + 0.1.6 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-09-01 + 0.1.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 0.1.4 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-02-15 + 0.1.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.1.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-02 + 0.1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdiscid + http://musicbrainz.org/doc/libdiscid + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + A C library for creating MusicBrainz DiscIDs from audio CDs + Ses CD'lerinden MusicBrainz DiscID oluşturmak için C kütüphanesi + libdiscid reads a CD's table of contents (TOC) and generates an identifier which can be used to lookup the CD at MusicBrainz. Additionally, it provides a submission URL for adding the DiscID to the database. + libdiscid, CD içeriğini okuyarak; MusicBrainz veritabanı üzerinden tanımlama yapar. Ayrıca bu veritabanına DiscID eklemek için başvuru URI'si sağlar. + http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/libdiscid-0.6.2.tar.gz + multimedia/misc/libdiscid/pspec.xml + + + libdiscid + + /usr/lib + /usr/share/doc + + + + libdiscid-devel + Development files for libdiscid + libdiscid için geliştirme dosyaları + + libdiscid + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-11 + 0.6.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libdvdcss + http://www.videolan.org/libdvdcss/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A portable abstraction library for DVD decryption + DVD çözmek için soyutlanmış taşınabilir bir kütüphane + libdvdcss est une librairie simple et portable d'abstraction conçue pour accéder auxDVDs comme des périphériques par blocs sans avoir à se soucier du décodage. On peut construire un lecteur DVD à partir de l'API de libdvdcss en 4 ou 5 appels. + libdvdcss is a simple and library portable abstraction library designed for accessing DVDs like a block device without having to bother about the decryption. A DVD player can be built around the libdvdcss API using no more than 4 or 5 library calls. + Libdvdcss, şifre çözme konusunda zahmete girmeden bir blok aygıt gibi DVD'lere erişim için düzenlenmiş basit ve soyutlanmış taşınabilir bir kütüphanedir. Bir DVD çalıcısı libdvdcss API etrafında 4 veya 5'ten fazla olmaksızın kütüphane çağrısı kullanarak kurulabilir. + libdvdcss es una liraría simple y portable de abstracción para acceder a DVDs como a dispositivos de bloques, sin preocuparse de decriptación. Se puede construir un reproductor DVD alrededor el API libdvdcss con no más de 4 o 5 llamadas de librería. + http://download.videolan.org/pub/videolan/libdvdcss/1.4.2/libdvdcss-1.4.2.tar.bz2 + multimedia/misc/libdvdcss/pspec.xml + + + libdvdcss + + /usr/lib + /usr/share/doc + + + + libdvdcss-devel + Development files for libdvdcss + libdvdcss için geliştirme dosyaları + + libdvdcss + + + /usr/include/dvdcss + /usr/lib/pkgconfig + + + + + 2020-01-19 + 1.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.4.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.4.0 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-05 + 1.4.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libdvdnav + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + libdvdnav is a library for developers of multimedia applications + libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane + libdvdnav est une librairie pour les développeur d'applications multimédia. Elle permet l'utilisation de fonctionnalités sophistiquées de navigation DVD tels que les menus DVD, la lecture multi-angle et même des jeux interactifs DVD. + libdvdnav is a library for developers of multimedia applications. It allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. + libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane. libdvdnav ile karmaşık DVD dolaşmalarını Örn: DVD menüleri, değişik açılı gösterimleri ve hatta etkileşimli DVD oyunlarını kullanabilirsiniz + libdvdnav es una librería para desarrollo de aplicaciones multimedia. Permite uso fácil de navegación avanzada en DVDs como en menús de DVDs, reproducción multi-ángulo, e incluso DVDs con juegos interactivos. + http://download.videolan.org/pub/videolan/libdvdnav/6.1.0/libdvdnav-6.1.0.tar.bz2 + + libdvdread-devel + + multimedia/misc/libdvdnav/pspec.xml + + + libdvdnav + + libdvdread + + + /usr/lib + /usr/share/doc/libdvdnav + + + + libdvdnav-devel + Development files for libdvdnav + libdvdnav için geliştirme dosyaları + + libdvdnav + libdvdread-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2020-10-05 + 6.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 6.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-01 + 6.0.0 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 5.0.3 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-31 + 5.0.3 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libdvdread + http://www.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + Provides a simple foundation for reading DVD-Video images + DVD videolarını okumak için basit bir kütüphane + Un lecteur DVD pour les environnements Solaris, Linux et BSD publié sous la licence publique GNU (GPL). Il gère les signets, les sauts dans le temps, les sorties audio sur plusieurs canaux, sortie SPDIF, le zoom et le crop (vision exclusive d'une zone) vidéo. Il gère également les menus DVD et la navigation, permet de lire depuis les DVD montés ou non montés, depuis un disque dur. Il peut lire les DVDs cryptés et non cryptés grâce à libdvdread/libdvdcss. + A DVD player for the Solaris, Linux and BSD environments released under the GNU Public License (GPL). It is includes bookmarks, time skipping, multichannel audio, SPDIF output, crop and zoom video. It supports DVD menus and navigation, reads from mounted, unmounted DVDs and hard drive and reads encrypted and unencrypted DVDs using libdvdread/libdvdcss. + GNU Public License (GPL) altındaki Solaris, Linux ve BSD ortamları için bir DVD oynatıcısıdır. Yerimi, zaman atlatma, çoklukanal ses çıktı, SPDIF çıktı, video kırpma ve büyütme özellikleri içerir. DVD menüleri ve dolaşma özelliğini destekler, bağlanmış (mount) ve bağlanmamış sabit diskleri okur ve libdvdread / libdvdcss kullanan şifreli ve şifresiz DVDleri oynatabilir. + DVD player para Solaris, Linux y BSD liberado bajo la licencia GNU Public License (GPL). incluye marcadores (bookmarks), time skipping, multichannel audio, salida SPDIF, video crop y zoom. soporta menús DVD y navegación, lee de DVDs y discos rígidos montados y no-montados y lee DVDs encriptados y no-encriptados usando libdvdread/libdvdcss. + http://download.videolan.org/pub/videolan/libdvdread/6.1.1/libdvdread-6.1.1.tar.bz2 + + libdvdcss-devel + git + + multimedia/misc/libdvdread/pspec.xml + + + libdvdread + + libdvdcss + glibc + + + /usr/lib + /usr/share/doc/libdvdread + + + + libdvdread-devel + Development files for libdvdread + libdvdread için geliştirme dosyaları + + libdvdread + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-10-14 + 6.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 6.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 6.0.0 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 5.0.3 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-05 + 5.0.3 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libebml + http://www.matroska.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie de format binaire extensible (un peu comme XML). + Extensible binary format library (kinda like XML) + Genişletilebilir ikilik biçimlendirme kütüphanesi + Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. + https://dl.matroska.org/downloads/libebml/libebml-1.4.2.tar.xz + + cmake + + multimedia/misc/libebml/pspec.xml + + + libebml + + libgcc + + + /usr/lib + /usr/share/doc + + + + libebml-devel + Development files for libebml + libebml için geliştirme dosyaları + + libebml + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + /usr/share/man/man3 + + + + + 2021-06-29 + 1.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 1.3.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 1.3.9 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.3.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-03 + 1.3.4 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-20 + 1.3.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libexif + http://libexif.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie pour analyser, éditer et sauvegarder des données EXIF. + Library for parsing, editing, and saving EXIF data + EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane + Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. + mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 + + doxygen + + + libexif-0.6.13-pkgconfig.patch + + multimedia/misc/libexif/pspec.xml + + + libexif + + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libexif-devel + Development files for libexif + libexif için geliştirme dosyaları + + libexif + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/libexif/libexif-api.html + + + + + 2020-01-19 + 0.6.21 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-08-14 + 0.6.21 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 0.6.21 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.6.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.6.21 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libgme + https://bitbucket.org/mpyne/game-music-emu + + Stefan Gronewold + groni@pisilinux.org + + LGPL + multimedia.misc + Video game music file emulation/playback library + Video game music file emulation/playback library + https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-0.6.3.tar.xz + + cmake + libgcc + zlib-devel + + multimedia/misc/libgme/pspec.xml + + + libgme + Video game music file emulation/playback library + + zlib + libgcc + + + /usr/lib + /usr/share/doc + + + + libgme-devel + Development file for libgme + + libgme + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 0.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.6.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-30 + 0.6.1 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + libheif + https://github.com/strukturag/libheif + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app + multimedia.misc + HEIF file format decoder and encoder + HEIF file format decoder and encoder + HEIF file format decoder and encoder + HEIF file format decoder and encoder + https://github.com/strukturag/libheif/archive/v1.12.0.tar.gz + + aom-devel + x265-devel + dav1d-devel + glib2-devel + libpng-devel + gdk-pixbuf-devel + libjpeg-turbo-devel + + multimedia/misc/libheif/pspec.xml + + + libheif + + aom + x265 + dav1d + glib2 + libgcc + libpng + gdk-pixbuf + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/mime + /usr/share/doc + + + + libheif-devel + Development files for libheif + + aom-devel + x265-devel + dav1d-devel + libheif + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-02 + 1.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 1.11.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libid3tag + http://mad.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + La librairie id3tag MAD. + The MAD id3tag library + MAD id3tag kütüphanesi + Die MAD id3tag Bibliothek + libid3tag is a library for reading and (eventually) writing ID3 tags, both ID3v1 and the various versions of ID3v2. + mirrors://sourceforge/mad/libid3tag-0.15.1b.tar.gz + + zlib-devel + gperf + + + libid3tag-0.15.1b-fix_overflow.patch + libid3tag-0.15.1b-unknown-encoding.patch + libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch + libid3tag-gperf.patch + + multimedia/misc/libid3tag/pspec.xml + + + libid3tag + + zlib + + + /usr/lib + /usr/share/doc + + + + libid3tag-devel + + libid3tag + + + /usr/include + /usr/lib/pkgconfig + + + id3tag.pc + + + + + 2020-01-19 + 0.15.1b + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2019-03-13 + 0.15.1b + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.15.1b + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 0.15.1b + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.15.1b + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.15.1b + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libiptcdata + http://libiptcdata.sourceforge.net/ + + Erdinç Gültekin + admins@pisilinux.org + + LGPL + library + multimedia.misc + A library for manipulating the International Press Telecommunications Council (IPTC) + Uluslararası Basın Telekomünikasyon Konseyi meta verilerini işlemek için bir kütüphane + libiptcdata is a library for manipulating the International Press Telecommunications Council (IPTC) metadata stored within multimedia files such as images. + libiptcdata, görüntüler gibi çeşitli veri dosyalarında bulunan Uluslararası Basın Telekomünikasyon Konseyi (IPTC) meta verilerini okumak ve yazmak için bağımsız bir C kütüphanesidir. + mirrors://sourceforge/libiptcdata/1.0.4/libiptcdata-1.0.4.tar.gz + + glibc-devel + + multimedia/misc/libiptcdata/pspec.xml + + + libiptcdata + + /usr/bin + /usr/lib/ + /usr/share/locale + /usr/share/doc + /usr/share/gtk-doc + + + + libiptcdata-devel + libiptcdata için geliştirme dosyaları + + libiptcdata + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-31 + 1.0.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libkate + http://code.google.com/p/libkate + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.misc + A text codec for embedding in Ogg + Ogg için karaoke ve metin kitaplığı + Kate is a codec for karaoke and text encapsulation for Ogg. + Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir. + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libkate/libkate-0.4.1.tar.gz + + libogg-devel + libpng-devel + doxygen + + multimedia/misc/libkate/pspec.xml + + + libkate + + libogg + libpng + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libkate-devel + Development files for libkate + libkate için geliştirme dosyaları + + libkate + libogg-devel + libpng-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libkate-docs + API documentation for libkate + libkate paketine ait API belgeleri + + libkate + + + /usr/share/doc/libkate/html + /usr/share/doc/libkate/examples + + + + + 2020-02-07 + 0.4.1 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-08-07 + 0.4.1 + Rebuild Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-04 + 0.4.1 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.4.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + liblqr + http://liblqr.wikidot.com + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + LGPLv3 + library + multimedia.misc + An easy to use C/C++ seam carving library + Görüntü boyutlandırma kütüphanesi + liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. + liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. + http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 + + glib2-devel + + multimedia/misc/liblqr/pspec.xml + + + liblqr + + glib2 + + + /usr/lib + /usr/share/doc + + + + liblqr-devel + Development files for liblqr + liblqr için geliştirme dosyaları + + liblqr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-06 + 0.4.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-06 + 0.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 0.4.2 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.4.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libmediainfo + http://mediaarea.net/en/MediaInfo + + Pisi Linux Community + admins@pisilinux.org + + LGPLv3 + library + multimedia.misc + shared library for mediainfo + shared library for mediainfo + shared library for mediainfo + shared library for mediainfo + https://mediaarea.net/download/source/libmediainfo/19.09/libmediainfo_19.09.tar.bz2 + + autoconf + automake + libtool + zlib-devel + libzen-devel + curl-devel + libmms-devel + + multimedia/misc/libmediainfo/pspec.xml + + + libmediainfo + + curl + zlib + glib2 + libgcc + libzen + libmms + + + /usr/share/doc/ + /usr/lib/ + + + + libmediainfo-devel + + curl-devel + libzen-devel + libmediainfo + + + /usr/lib/pkgconfig + /usr/include/MediaInfo + /usr/include/MediaInfoDLL + + + + + 2020-03-06 + 19.09 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.7.94 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-09 + 0.7.94 + Version bump. + Kamil Atlı suvari@pisilinux.org - 2016-06-08 - 1.1.6 + 2016-11-24 + 0.7.90 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-20 + 0.7.65 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + liboil + https://liboil.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Liboil is a library of simple functions that are optimized for various CPUs + Liboil, farklı işlemciler için optimize edilmiş temel fonksiyonlardan oluşan bir kütüphanedir + Liboil est une librairie de fonctions simples optimisées pour différents processeurs. Ces fonction sont en général des boucles implémentant des algorithmes simples, tel que convertir un tableau de N entiers en nombres à virgule flottante ou multiplier et additionner un tableau de N nombres. + Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. + liboil çeşitli CPU 'lar için en iyilenmiş basit fonksiyon kütüphanesidir. Bu fonksiyonlar genellikle döngüler için gerçekleştirilen yalın algoritmalardır, örneğin ; N integer elemanı olan bir diziyi float elemanlı diziye dönüştürmek yada N elemanlı bir dizi ile toplama yada çarpma yapmak gibi. + Liboil es una librería con funciones simples, optimizados para múltiples CPUs. Estas funciones son generalmente bucles realizando simples algoritmos, como conversión de arrays de N enteros a números de punto flotante o multiplicación y suma de un array de N números. + http://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz + + 02_amd64-cpuid.patch + 03_stride-segfaults.patch + + multimedia/misc/liboil/pspec.xml + + + liboil + + /usr/lib + /usr/share/doc + + + + liboil-devel + Development files for liboil + liboil için geliştirme dosyaları + + liboil + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 0.3.17 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.3.17 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 0.3.17 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.3.17 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-24 + 0.3.17 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libopus + https://opus-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + Opus is a totally open, royalty-free, highly versatile audio codec + Açık kaynak, telif ücretsiz, çok yönlü ses codec bileşenidir + Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. + Opus Internet üzerinde etkileşimli ses ve müzik iletimi için eşsiz olan, ama aynı zamanda saklama ve akış uygulamaları için tasarlanmıştır. +Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 olarak Internet Engineering Task Force (IETF) tarafından standartlaştırılmıştır. + https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz + + doxygen + + multimedia/misc/libopus/pspec.xml + + + libopus + + /usr/lib + /usr/share + + + + libopus-devel + Development files for libopus + Libopus için geliştirme dosyaları + + libopus + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libopus-docs + document files for libopus + + libopus + + + /usr/share/doc + + + + libopus-32bit + 32-bit shared libraries for libopus + emul32 + emul32 + + libopus + + + /usr/lib32 + + + + + 2020-01-11 + 1.3.1 + Rebuild + Kamil Atlı + uglyside@yandex.ru + + + 2019-06-24 + 1.3.1 + Version bump. + fury + uglyside@yandex.ru + + + 2018-08-16 + 1.2.1 + Rebuild 32bit. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.2.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.1.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-22 + 1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libopusenc + https://opus-codec.org/ + + fury + uglyside@yandex.ru + + BSD + library + multimedia.misc + Library for encoding .opus audio files and live streams. + Opus biçemindeki ses ve canlı yayınları kodlayabilmek için kitaplık. + The libopusenc libraries provide a high-level API for encoding .opus files. libopusenc depends only on libopus. + libopusenc, Opus biçemindeki ses ve canlı yayınları kodlayabilmek için kitaplık sunar. + https://archive.mozilla.org/pub/opus/libopusenc-0.2.1.tar.gz + + libopus-devel + libopus-32bit + doxygen + + multimedia/misc/libopusenc/pspec.xml + + + libopusenc + Library for encoding .opus audio files and live streams. + + libopus + + + /usr/lib + /usr/share + + + + libopusenc-devel + Development files for libopusenc + libopusenc için geliştirme dosyaları + libopusenc-devel, libopusenc için geliştirme dosyalarını içerir. + + libopusenc + + + /usr/lib32/pkgconfig + /usr/lib/pkgconfig + /usr/include + + + + libopusenc-docs + document files for libopusenc + libopusenc için belgelendirme dosyaları + libopusenc-docs, libopusenc için belgelendirme dosyalarını içerir. + + libopusenc + + + /usr/share/doc/ + + + + libopusenc-32bit + 32-bit shared libraries for libopusenc + libopusenc için 32-bit paylaşımlı kitaplıklar + libopusenc-32bit, libopusenc için 32-bit paylaşımlı kitaplıklar sunar. + emul32 + emul32 + + libopusenc + + + /usr/lib32 + + + + + 2019-06-24 + 0.2.1 + First build. + fury + uglyside@yandex.ru + + + + + + libsdl + http://www.libsdl.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Simple Direct Media Layer (Couche Média Simple et Directe). + Simple Direct Media Layer + Basit bir direk ortam erişim katmanı + Einfachee direkte Medien-Schicht + libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. + libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. + http://www.libsdl.org/release/SDL-1.2.15.tar.gz + + DirectFB-devel + alsa-lib-devel + aalib-devel + libX11-devel + libusb-compat-devel + libXtst-devel + libICE-devel + libXrandr-devel + libglvnd-devel + mesa-glu-devel + + + sdl-1.2.14-disable-mmx.patch + sdl_x11sym.patch + SDL-1.2.14-dont-propagate-lpthread.patch + SDL-1.2.14-noproc.patch + SDL-1.2.13-rh484362.patch + libsdl-1.2.15-sdl-config.patch + libsdl-1.2.15-resizing.patch + libsdl-1.2.15-joystick.patch + + multimedia/misc/libsdl/pspec.xml + + + libsdl-docs + libsdl reference documents + libsdl başvuru belgeleri + + libsdl + + + /usr/share/man + /usr/share/doc + + + + libsdl + + DirectFB + aalib + + + /usr/lib + + + + libsdl-devel + Development files for libsdl + libsdl için geliştirme dosyaları + + libsdl + DirectFB-devel + alsa-lib-devel + aalib-devel + libX11-devel + libusb-compat-devel + libXtst-devel + libICE-devel + libXrandr-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/libSDLmain.a + /usr/share/aclocal + + + + libsdl-32bit + 32-bit shared libraries for libsdl + libsdl için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl + + + /usr/lib32 + + + + + 2020-01-11 + 1.2.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-01 + 1.2.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-12 + 1.2.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 1.2.15 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.2.15 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-03-27 + 1.2.15 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libsdl2 + http://www.libsdl.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + LGPLv2.1 + library + multimedia.misc + Simple Direct Media Layer (Couche Média Simple et Directe). + Simple Direct Media Layer 2.0 series + Basit bir direk ortam erişim katmanı 2.0 serisi + Einfachee direkte Medien-Schicht + libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. + libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. + https://www.libsdl.org/release/SDL2-2.0.16.tar.gz + + DirectFB-devel + alsa-lib-devel + audiofile-devel + dbus-devel + ibus-devel + libXi-devel + vulkan-devel + libX11-devel + libXext-devel + libXinerama-devel + libXrandr-devel + libXrender-devel + libXt-devel + libXv-devel + libglvnd-devel + mesa-glu-devel + libXScrnSaver-devel + libxkbcommon-devel + egl-wayland-devel + wayland-protocols-devel + pulseaudio-libs-devel + + + 25cd749.patch + fedora/0001-audio-Support-pulse-as-an-alias-for-pulseaudio.patch + fedora/0001-video-wayland-use-EGL_EXT_present_opaque-when-availa.patch + fedora/0001-wayland-Add-support-for-high-DPI-cursors.patch + fedora/0001-wayland-Expose-xdg_toplevel-to-SysWM.patch + fedora/0001-wayland-For-text-ignore-key-events-when-Ctrl-is-held.patch + fedora/0001-wayland-Reuse-KeySymToUcs4-to-replicate-X11-keymap-b.patch + fedora/0002-wayland-Woops-forgot-to-assign-cursor-theme-size.patch + + multimedia/misc/libsdl2/pspec.xml + + + libsdl2 + libsdl2 reference documents + + DirectFB + alsa-lib + audiofile + libX11 + libXScrnSaver + libXext + libXinerama + libXrandr + libXrender + libXt + libglvnd + pulseaudio-libs + + + /usr/share/doc + /usr/lib/libSDL2.so + /usr/lib/libSDL2.a + /usr/lib/libSDL2main.a + /usr/lib/libSDL2-2.0.so.0* + /usr/lib/libSDL2_test.a + + + + libsdl2-devel + Development files for libsdl2 + libsdl2 için geliştirme dosyaları + + libsdl2 + + + /usr/bin + /usr/include/SDL2 + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/lib/cmake/SDL2 + + + + libsdl2-32bit + 32-bit shared libraries for libsdl2 + libsdl2 için 32-bit paylaşımlı kitaplıklar + emul32 + + libXt-32bit + libX11-32bit + libXext-32bit + libglvnd-32bit + alsa-lib-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + + + libXt-32bit + libX11-32bit + libXext-32bit + alsa-lib-32bit + libglvnd-32bit + audiofile-32bit + libXrandr-32bit + libXrender-32bit + libXinerama-32bit + libXScrnSaver-32bit + pulseaudio-libs-32bit + libsdl2 + + + /usr/lib32 + + + + + 2021-10-24 + 2.0.16 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-11 + 2.0.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-08 + 2.0.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-10 + 2.0.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-17 + 2.0.10 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-08-05 + 2.0.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-12 + 2.0.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 2.0.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.4 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + libshout + http://www.icecast.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.misc + A library for communicating with and sending data to an icecast server + Icecast sunucusuyla veri alış verişini sağlayan bir kütüphane + Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. + Libshout, Icecast sunucusuyla iletişimi ve veri alış verişini sağlar. Verilerin zamanlamasını ve gerekli soket bağlantılarını kontrol ederek, sunucu üzerinde hatalı veri transferini önler. + https://ftp.osuosl.org/pub/xiph/releases/libshout/libshout-2.4.3.tar.gz + + libvorbis-devel + libogg-devel + libtheora-devel + speex-devel + + + pthread_flag.patch + + multimedia/misc/libshout/pspec.xml + + + libshout + + libvorbis + libogg + libtheora + speex + + + /usr/lib + /usr/share/doc + + + + libshout-devel + Development files for libshout + libshout için geliştirme dosyaları + + libshout + libtheora-devel + libvorbis-devel + libogg-devel + speex-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/*.c + + + + + 2020-01-19 + 2.4.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 2.4.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.4.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.3.1 Release Bump Pisi Linux Community admin@pisilinux.org 2014-05-25 + 2.3.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libspnav + http://spacenav.sourceforge.net + + Osman Erkan + osman.erkan@pisilinux.org + + BSD + library + multimedia.misc + Open source alternative to 3DConnextion drivers + The spacenav project provides a free compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 6dof space navigation input devices. It provides both a replacement free user-space driver, and a replacement SDK library. + http://downloads.sourceforge.net/spacenav/libspnav-0.2.3.tar.gz + + libX11-devel + + + Makefile.patch + + multimedia/misc/libspnav/pspec.xml + + + libspnav + + libX11 + + + /usr/lib/ + /usr/share/doc + + + + libspnav-devel + Development files for libspnav + libspnav için geliştirme dosyaları + + libspnav + + + /usr/include + /usr/lib/libspnav.so + + + + + 2020-02-11 + 0.2.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.2.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-08 + 0.2.3 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-16 + 0.2.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libtg_owt + https://github.com/desktop-app/tg_owt + + Pisi Linux Admins + admin@pisilinux.org + + BSD + library + multimedia.misc + WebRTC library - static linked + WebRTC library - static linked + WebRTC library - static linked + WebRTC library - static linked + https://github.com/desktop-app/tg_owt/archive/63a934db1ed212ebf8aaaa20f0010dd7b0d7b396.tar.gz + + git + ninja + cmake + pulseaudio + yasm-devel + unzip + libX11-devel + mesa-devel + libvpx-devel + libepoxy-devel + pipewire-devel + libXtst-devel + libopus-devel + openssl-devel + libXrandr-devel + libXcomposite-devel + libva-devel + libjpeg-turbo-devel + ffmpeg-devel + protobuf-devel + pulseaudio-libs-devel + alsa-lib-devel + python3-setuptools + libXdamage-devel + abseil-cpp-devel + + multimedia/misc/libtg_owt/pspec.xml + + + libtg_owt + + ffmpeg + libgcc + libopus + openssl + libvpx + protobuf + libjpeg-turbo + abseil-cpp + + + /usr/lib + /usr/share + /usr/share/doc + + + + libtg_owt-devel + Development files for libtg_owt + + libtg_owt + yasm-devel + unzip + libopus-devel + openssl-devel + libXrandr-devel + libXcomposite-devel + libva-devel + libjpeg-turbo-devel + ffmpeg-devel + protobuf-devel + pulseaudio-libs-devel + alsa-lib-devel + libvpx-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-04-17 + 20220414 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-24 + 20220314 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-09 + 20211222 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-14 + 20211212 + Version bump. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-12-05 + 20211112 + Version bump. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-10-20 + 20210915 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-01-26 + 20210915 + Version bump. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-01-26 + 20210124 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libzen + http://sourceforge.net/projects/zenlib/ + + Pisi Linux Community + admins@pisilinux.org + + ZLIB + as-is + app:console + multimedia.misc + Small C++ derivate class to have a simpler life. + shared library for libmediainfo and mediainfo + https://mediaarea.net/download/source/libzen/0.4.37/libzen_0.4.37.tar.bz2 + multimedia/misc/libzen/pspec.xml + + + libzen + + libgcc + + + /usr/lib + /usr/share/doc + + + + libzen-devel + + libzen + + + /usr/bin/libzen-config + /usr/lib/pkgconfig + /usr/lib/libzen.so + /usr/include/ZenLib + + + + + 2020-03-07 + 0.4.37 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.4.37 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-08 + 0.4.35 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-24 + 0.4.31 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + lv2 + http://lv2plug.in/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + MIT + library + multimedia.misc + LV2 is a simple but extensible successor of LADSPA + LV2 is a portable plugin standard for audio systems, similar in scope to ​LADSPA, VST, AU, and others. It defines a C API for code and a format for data files which collectively describe a plugin. + http://lv2plug.in/spec/lv2-1.16.0.tar.bz2 + + gtk2-devel + libsndfile-devel + glib2-devel + cairo-devel + pango-devel + freetype-devel + fontconfig-devel + gdk-pixbuf-devel + python-devel + python3-devel + cmake + atk-devel + + + lv2-1.16.0-fix_lv2_validate.patch + + multimedia/misc/lv2/pspec.xml + + + lv2 + + gtk2 + glib2 + cairo + pango + harfbuzz + freetype + fontconfig + gdk-pixbuf + libsndfile + atk + + + /usr/lib + /usr/share/doc + /usr/share + /usr/bin + + + + lv2-devel + Development files for lv2 + lv2 için geliştirme dosyaları + + lv2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-30 + 1.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.14.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-04 + 1.14.0 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + mbedtls + https://github.com/ARMmbed/mbedtls + + PisiLinux Community + admins@pisilinux.org + + Apache + library + multimedia.misc + Cryptographic library for embedded systems + Cryptographic library for embedded systems + Gömülü sistemler için kriptografik kitaplık + Gömülü sistemler için kriptografik kitaplık + https://github.com/ARMmbed/mbedtls/archive/refs/tags/v2.27.0.tar.gz + + cmake + python3 + + multimedia/misc/mbedtls/pspec.xml + + + mbedtls + + /usr/bin + /usr/lib + /usr/share/doc + + + + mbedtls-devel + Development files for mbedtls + + mbedtls + + + /usr/include + /usr/lib/cmake + + + + + 2021-11-09 + 2.27.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mediainfo + http://mediaarea.net/en/MediaInfo + + Pisi Linux Community + admins@pisilinux.org + + LGPLv3 + app:gui + multimedia.misc + MediaInfo supplies technical and tag information about mediafiles + MediaInfo supplies technical and tag information about a video or audio file. It is free software (free of charge and free access to source code: GPL or LGPL licence) + https://mediaarea.net/download/source/mediainfo/19.09/mediainfo_19.09.tar.bz2 + + libtool + autoconf + automake + libzen-devel + libzen-devel + libmediainfo-devel + wxGTK-devel + + multimedia/misc/mediainfo/pspec.xml + + + mediainfo + + wxGTK + libgcc + libzen + libmediainfo + + + /usr/bin/ + /usr/share + /usr/share/doc/ + + + mediainfo.desktop + + + + + 2020-03-07 + 19.09 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.7.94 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-09 + 0.7.94 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-02 + 0.7.90 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-20 + 0.7.65 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + musicbrainz5 + http://www.musicbrainz.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Client library to access metadata of mp3/vorbis/CD media + Mp3/Ogg Vorbis/Audio-Cd gibi ses dosyalarınızın etiketlerine erişiminizi sağlayan istemci kütüphanesidir. + MusicBrainz est un projet tentant de créer une encyclopédie de musique au contenu ouvert. C'est une base de données en ligne contenant des informations concernant les musiques enregistrées. La librairie client MusicBrainz capture les informations concernant les artistes, le nom de l'album, les titres des chansons, leur longueur et beaucoup d'autres données encore. + MusicBrainz is a project that aims to create an open content music encyclopedia. It is an online database of information about recorded music. MusicBrainz client library captures information about artists, the album title, track titles,the length of each track and many more. + MusicBrainz açık içerikli müzik ansiklopedisi oluşturmayı amaçlayan bir projedir. Kayıtlı albüm ve müzik parçaları hakkında çevrim içi veri tabanı sağlar. MusicBrainz kütüphanesi sanatçı, albüm, çalınan parça ve daha birçok konuda veri toplar. + MusicBrainz es un proyecto con la finalidad de crear una enciclopedia de contenido abierto sobre música. Es una base de datos de información en línea sobre grabaciones de música. La libreía de cliente MusicBrainz captura información de artista, título de album, título de las músicas, longitudes de cada música, y mucho más. + ftp://ftp.parrot.org/.1/blfs/svn/l/libmusicbrainz-5.1.0.tar.gz + + neon-devel + libxml2-devel + cmake + + multimedia/misc/musicbrainz5/pspec.xml + + + musicbrainz5 + + libgcc + libxml2 + neon + + + /usr/lib + /usr/share/doc + + + + musicbrainz5-devel + Development files for musicbrainz5 + musicbrainz5 için geliştirme dosyaları + + musicbrainz5 + neon-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 5.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 5.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-09 + 5.1.0 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 5.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-20 + 5.1.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + OpenCOLLADA + https://collada.org/mediawiki/index.php/OpenCOLLADA + + Pisi Linux Admins + admin@pisilinux.org + + MIT + app + multimedia.misc + Collada 3D import and export libraries + Collada 3D import and export libraries + Collada 3B kütüphaneleri içe ve dışa aktarma + Collada 3B kütüphaneleri içe ve dışa aktarma + https://github.com/KhronosGroup/OpenCOLLADA/archive/refs/tags/v1.6.68.tar.gz + + cmake + libpcre-devel + libxml2-devel + + + fedora/OpenCOLLADA-pcre.patch + + multimedia/misc/OpenCOLLADA/pspec.xml + + + OpenCOLLADA + + libgcc + libpcre + libxml2 + + + /etc + /usr/lib + /usr/share/doc + + + opencollada.conf + + + + OpenCOLLADA-devel + Development files for OpenCOLLADA + + OpenCOLLADA + libpcre-devel + + + /usr/include + /usr/lib/cmake + + + + + 2021-05-11 + 1.6.68 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + opencolorio + http://opencolorio.org/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + multimedia.misc + Enables color transforms and image display across graphics apps + 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 + + cmake + pybind11 + yaml-cpp + glew-devel + lcms2-devel + boost-devel + openxr-devel + pystring-devel + freeglut-devel + tinyxml-devel + python3-devel + imath-devel + + multimedia/misc/opencolorio/pspec.xml + + + opencolorio + + glew + expat + libgcc + imath + lcms2 + freeglut + libglvnd + mesa-glu + pystring + + + /usr/bin + /usr/lib + /usr/share/ocio + /usr/share/doc + + + OpenColorIO1 + + + + opencolorio-devel + Development files for opencolorio + + opencolorio + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-10-25 + 2.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-30 + 2.0.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + OpenColorIO1 + http://opencolorio.org/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + multimedia.misc + Enables color transforms and image display across graphics apps + Enables color transforms and image display across graphics apps + Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir + Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir + https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v1.1.1.tar.gz + + cmake + yaml-cpp + lcms2-devel + boost-devel + tinyxml-devel + python3-devel + openimageio-devel + + + 8d48ee8da42de2d878db7b42586db8b3c67f83e1.patch + + multimedia/misc/OpenColorIO1/pspec.xml + + + OpenColorIO1 + + lcms2 + libgcc + tinyxml + + + /usr/bin + /usr/lib + /usr/share/ocio + /usr/share/doc + + + opencolorio + + + + OpenColorIO1-devel + Development files for OpenColorIO1 + + OpenColorIO1 + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-10-23 + 1.1.1 + Rebuild boost + Pisi Linux Admins + admin@pisilinux.org + + + 2021-05-11 + 1.1.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + openexr + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + library + multimedia.misc + A high dynamic-range (HDR) image file format library + OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. + 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/v3.1.3.tar.gz + + cmake + imath-devel + zlib-devel + + multimedia/misc/openexr/pspec.xml + + + openexr + + imath + libgcc + openexr-libs + + + /usr/bin + + + + openexr-libs + OpenEXR runtime libraries + OpenEXR çalışma zamanı kitaplıkları + + imath + zlib + libgcc + + + /usr/lib/lib* + /usr/share/doc + + + + openexr-docs + OpenEXR example files + OpenEXR örnek dosyalar + + /usr/share/doc/OpenEXR/examples + + + + openexr-devel + Development files for openexr + OpenEXR için geliştirme dosyaları + + openexr + mesa-glu-devel + imath-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2021-11-20 + 3.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-26 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-20 + 2.5.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.2.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-06 + 2.2.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-14 + 2.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 2.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-28 + 2.2.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openvr + https://github.com/ValveSoftware/openvr + + Kamil Atlı + suvari@pisilinux.org + + MIT + app + multimedia.misc + API and runtime that allows access to VR hardware from multiple vendors + Birden çok satıcıdan VR donanımına erişim sağlayan API ve çalışma zamanı + OpenVR is an API and runtime that allows access to VR hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting. This repository is an SDK that contains the API and samples. The runtime is under SteamVR in Tools on Steam. + OpenVR, uygulamaların hedefledikleri donanım hakkında özel bilgiye sahip olmalarını gerektirmeden birden fazla satıcıdan VR donanımına erişime izin veren bir API ve çalışma zamanıdır. Bu depo, API ve örnekleri içeren bir SDK'dır. Çalışma zamanı, Steam'deki Araçlar'da SteamVR altındadır. + https://github.com/ValveSoftware/openvr/archive/refs/tags/v1.16.8.tar.gz + + cmake + jsoncpp-devel + libglvnd-devel + rapidjson-devel + + + 0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch + fix-missing-stdarg-h.patch + install-library.patch + + multimedia/misc/openvr/pspec.xml + + + openvr + + libgcc + jsoncpp + libglvnd + rapidjson + + + /usr/lib/libopenvr_api.so* + /usr/share/doc + + + + openvr-devel + Development files for openvr + openvr için geliştirme dosyaları + + openvr + + + /usr/include + /usr/lib/cmake + /usr/share/pkgconfig + + + + + 2022-05-01 + 1.16.8 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + openxr + https://www.khronos.org/openxr/ + + Pisi Linux Admins + admin@pisilinux.org + + APACHE + library + multimedia.misc + An open standard for virtual reality and augmented reality platforms and devices + An open standard for virtual reality and augmented reality platforms and devices + An open standard for virtual reality and augmented reality platforms and devices + An open standard for virtual reality and augmented reality platforms and devices + https://github.com/KhronosGroup/OpenXR-SDK-Source/archive/release-1.0.20.tar.gz + + cmake + mesa-devel + wayland-client + wayland-devel + python3-devel + libX11-devel + vulkan-devel + libglvnd-devel + vulkan-headers + jsoncpp-devel + libXrandr-devel + libXxf86vm-devel + + multimedia/misc/openxr/pspec.xml + + + openxr + + libgcc + libX11 + vulkan + libglvnd + jsoncpp + libXxf86vm + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/openxr + /usr/share/doc + + + + openxr-devel + Development files for openxr + + openxr + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-11-20 + 1.0.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.0.19 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-07 + 1.0.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-20 + 1.0.13 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + opusfile + https://opus-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + Library for opening, seeking, and decoding .opus files + Library for opening, seeking, and decoding .opus files + Library for opening, seeking, and decoding .opus files + Library for opening, seeking, and decoding .opus files + https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.12.tar.gz + + libogg-devel + libopus-devel + openssl-devel + + multimedia/misc/opusfile/pspec.xml + + + opusfile + + libogg + libopus + openssl + + + /usr/lib + /usr/share + /usr/share/doc + + + + opusfile-32bit + 32-bit shared libraries for opusfile + emul32 + emul32 + + libogg-32bit + libopus-32bit + openssl-32bit + + + libogg-32bit + libopus-32bit + openssl-32bit + + + /usr/lib32 + + + + opusfile-devel + Development files for opusfile + + opusfile + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2020-06-27 + 0.12 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2020-03-07 + 0.11 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + orc + https://gstreamer.freedesktop.org/modules/orc.html + + PisiLinux Community + admins@pisilinux.org + + BSD + BSD-2 + app:console + multimedia.misc + The Oil Runtime Compiler + Optimized Inner Loop Runtime Compiler + https://gstreamer.freedesktop.org/src/orc/orc-0.4.31.tar.xz + + valgrind + meson + + multimedia/misc/orc/pspec.xml + + + orc + + /usr/bin/ + /usr/lib/ + /usr/share/ + + + + orc-32bit + 32-bit shared libraries for orc + emul32 + emul32 + + orc + + + /usr/lib32 + + + + orc-devel + orc için geliştirme dosyaları + orc için geliştirme dosyaları + + orc + + + /usr/include/ + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2020-01-11 + 0.4.31 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.4.28 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-24 + 0.4.26 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-06-12 + 0.4.25 + Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-05-27 + 0.4.19 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 0.4.19 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + pybind11 + https://pybind11.readthedocs.org/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + multimedia.misc + Seamless operability between C++11 and Python + Seamless operability between C++11 and Python + Seamless operability between C++11 and Python + Seamless operability between C++11 and Python + https://github.com/pybind/pybind11/archive/v2.6.2.tar.gz + + cmake + boost-devel + python3-devel + python3-setuptools + python3-pytest + + multimedia/misc/pybind11/pspec.xml + + + pybind11 + + /usr/include + /usr/share + + + + + 2021-03-10 + 2.6.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + rav1e + https://github.com/xiph/rav1e + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.misc + The fastest and safest AV1 encoder + The fastest and safest AV1 encoder + En hızlı ve en güvenli AV1 kodlayıcı + En hızlı ve en güvenli AV1 kodlayıcı + https://github.com/xiph/rav1e/archive/refs/tags/v0.5.0.tar.gz + + rust + nasm + cargo-c + + multimedia/misc/rav1e/pspec.xml + + + rav1e + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + rav1e-devel + Development files for rav1e + + rav1e + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-02 + 0.5.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + regionset + http://linvdr.org/projects/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPLv2 + app:console + multimedia.misc + regionset - adjusts and shows the region code of DVD drives + regionset allows you to check and set the region code of DVD drives. + http://linvdr.org/download/regionset/regionset-0.2.tar.gz + multimedia/misc/regionset/pspec.xml + + + regionset + + /usr/bin + /usr/share/doc + + + + + 2020-03-07 + 0.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-09 + 0.2 + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-24 + 0.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sdl-image + http://www.libsdl.org/projects/SDL_image/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie SDL de chargement de fichier d'image. + SDL image file loading library + SDL resim yükleme kitaplığı + SDL_image is an image file loader for SDL. + SDL_image, SDL için resim yükleme kitaplığıdır. + http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz + + tiff-devel + libsdl-devel + libpng-devel + libjpeg-turbo-devel + + + gif-overflow.patch + + multimedia/misc/sdl-image/pspec.xml + + + sdl-image + + libsdl + tiff + zlib + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib/ + /usr/share/doc + + + + sdl-image-devel + Development files for sdl-image + sdl-image için geliştirme dosyaları + + sdl-image + libsdl-devel + tiff-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl-image-32bit + 32-bit shared libraries for sdl-image + sdl-image için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl-32bit + libpng-32bit + libjpeg-turbo-32bit + tiff-32bit + + + sdl-image + libsdl-32bit + libpng-32bit + libjpeg-turbo-32bit + tiff-32bit + zlib-32bit + + + /usr/lib32/ + + + + + 2020-10-15 + 1.2.12 + Rebuild for new toolchain. + Kamil Atlı + admin@pisilinux.org + + + 2018-08-07 + 1.2.12 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 1.2.12 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 1.2.12 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sdl-mixer + http://www.libsdl.org/projects/SDL_mixer/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie du mixer SDL. + SDL mixer library + SDL ses yükleme kitaplığı + SDL_mixer is a SDL library for loading sound files. + SDL_mixer, SDL için bir ses yükleme kitaplığıdır. + http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz + + libsdl-devel + libmikmod-devel + libvorbis-devel + libogg-devel + smpeg-devel + timidity + + + ldflags.patch + + multimedia/misc/sdl-mixer/pspec.xml + + + sdl-mixer + + libsdl + libmikmod + libvorbis + libogg + smpeg + timidity + + + /usr/lib + /usr/share/doc + + + + sdl-mixer-devel + Development files for sdl-mixer + sdl-mixer için geliştirme dosyaları + + sdl-mixer + libsdl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl-mixer-32bit + 32-bit shared libraries for sdl-mixer + sdl-mixer için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl-32bit + libmikmod-32bit + libvorbis-32bit + libogg-32bit + smpeg-32bit + + + sdl-mixer + libsdl-32bit + libmikmod-32bit + libvorbis-32bit + libogg-32bit + smpeg-32bit + + + /usr/lib32/ + + + + + 2020-03-07 + 1.2.12 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 1.2.12 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 1.2.12 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 1.2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-21 + 1.2.12 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + sdl-net + http://www.libsdl.org/projects/SDL_net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie réseau de SDL. + SDL network library + SDL ağ kütüphanesi + sdl-mixer is a SDL library for network access. + sdl-net, SDL için ağ erişim kitaplığıdır. + http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8.tar.gz + + libsdl-devel + + multimedia/misc/sdl-net/pspec.xml + + + sdl-net + + libsdl + + + /usr/lib + /usr/share/doc + + + + sdl-net-devel + Development files for sdl-net + sdl-net için geliştirme dosyaları + + sdl-net + libsdl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 1.2.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.2.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 1.2.8 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + sdl-ttf + http://www.libsdl.org/projects/SDL_ttf/ + + Mathias Freire + mathiasfreire45@gmail.com + + LGPLv2.1 + library + multimedia.misc + TrueType font support for SDL2 + SDL_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. + http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.tar.gz + + libsdl-devel + freetype-devel + libtool + libICE-devel + + multimedia/misc/sdl-ttf/pspec.xml + + + sdl-ttf + + libsdl + harfbuzz + freetype + + + /usr/lib + /usr/share/doc + + + + sdl-ttf-devel + Development files for sdl-ttf + + libsdl-devel + sdl-ttf + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl-ttf-32bit + 32-bit shared libraries for sdl-ttf + emul32 + emul32 + + libsdl-32bit + freetype-32bit + + + libpng-32bit + libsdl-32bit + harfbuzz-32bit + freetype-32bit + sdl-ttf + + + /usr/lib32/ + + + + + 2020-03-07 + 2.0.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 2.0.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 2.0.11 + Rebuild for new toolchain. + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-11-24 + 2.0.14 + Rebuild for Pisi Linux 2.0 + Stefan Gronewold (groni) + groni@pisilinux.org + + + 2016-06-09 + 2.0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.14 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + sdl2-image + http://www.libsdl.org/projects/SDL_image/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie SDL2 de chargement de fichier d'image. + SDL image file loading library + SDL2 resim yükleme kitaplığı + SDL_image is an image file loader for SDL. + SDL2_image, SDL2 için resim yükleme kitaplığıdır. + https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.5.tar.gz + + zlib-devel + libsdl2-devel + tiff-devel + libpng-devel + libjpeg-turbo-devel + + multimedia/misc/sdl2-image/pspec.xml + + + sdl2-image + + libsdl2 + tiff + zlib + libpng + libjpeg-turbo + + + /usr/bin + /usr/lib/ + /usr/share/doc + + + + sdl2-image-devel + Development files for sdl2-image + sdl2-image için geliştirme dosyaları + + sdl2-image + libsdl2-devel + tiff-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 2.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-10 + 2.0.1 + First Release. + Stefan Gronewold + groni@pisilinux.org + + + + + + sdl2-mixer + http://www.libsdl.org/projects/SDL_mixer/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + SDL2 mixer library + SDL2_mixer is a SDL2 library for loading sound files. + http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz + + flac-devel + mpg123-devel + libopus-devel + opusfile-devel + libsdl2-devel + libvorbis-devel + fluidsynth-devel + libmodplug-devel + + multimedia/misc/sdl2-mixer/pspec.xml + + + sdl2-mixer + + flac + mpg123 + libopus + libsdl2 + opusfile + libvorbis + fluidsynth + libmodplug + + + /usr/lib + /usr/share/doc + + + + sdl2-mixer-devel + Development files for sdl2-mixer + + sdl2-mixer + libsdl2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl2-mixer-32bit + 32-bit shared libraries for sdl2-mixer + emul32 + emul32 + + flac-32bit + mpg123-32bit + libopus-32bit + libsdl2-32bit + opusfile-32bit + libvorbis-32bit + + + sdl2-mixer + flac-32bit + mpg123-32bit + libopus-32bit + libsdl2-32bit + opusfile-32bit + libvorbis-32bit + + + /usr/lib32/ + + + + + 2020-03-07 + 2.0.4 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + sdl2-net + http://www.libsdl.org/projects/SDL_net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.misc + Librairie réseau de SDL. + SDL network library 2.0 series + SDL ağ kütüphanesi 2.0 serisi + sdl-mixer is a SDL library for network access. + sdl-net, SDL için ağ erişim kitaplığıdır. + http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz + + libsdl2-devel + + multimedia/misc/sdl2-net/pspec.xml + + + sdl2-net + + libsdl2 + + + /usr/lib + /usr/share/doc + + + + sdl2-net-devel + Development files for sdl-net + sdl2-net için geliştirme dosyaları + + sdl2-net + libsdl2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 2.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 2.0.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.1 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + sdl2-ttf + http://www.libsdl.org/projects/SDL_ttf/ + + Mathias Freire + mathiasfreire45@gmail.com + + LGPLv2.1 + library + multimedia.misc + TrueType font support for SDL2 + SDL2 TTF kitaplığı + SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle. + SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. + SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır. + SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable. + http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz + + libsdl2-devel + freetype-devel + + multimedia/misc/sdl2-ttf/pspec.xml + + + sdl2-ttf + + libsdl2 + harfbuzz + freetype + + + /usr/lib + /usr/share/doc + + + + sdl2-ttf-devel + Development files for sdl2-ttf + sdl2-ttf için geliştirme dosyaları + + libsdl2-devel + sdl2-ttf + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + sdl2-ttf-32bit + 32-bit shared libraries for sdl2-ttf + sdl2-ttf için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libsdl2-32bit + freetype-32bit + + + libpng-32bit + libsdl2-32bit + harfbuzz-32bit + freetype-32bit + sdl2-ttf + + + /usr/lib32/ + + + + + 2020-03-07 + 2.0.15 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.0.14 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 2.0.14 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.14 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + svt-av1 + https://gitlab.com/AOMediaCodec/SVT-AV1 + + PisiLinux Community + admins@pisilinux.org + + custom + library + multimedia.misc + Scalable Video Technology AV1 encoder and decoder + Scalable Video Technology AV1 encoder and decoder + Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü + Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü + https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.8.7/SVT-AV1-v0.8.7.tar.bz2 + + nasm + cmake + + multimedia/misc/svt-av1/pspec.xml + + + svt-av1 + + /usr/bin + /usr/lib + /usr/share/doc + + + + svt-av1-devel + Development files for svt-av1 + + svt-av1 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-02 + 0.8.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + t1lib + ftp://metalab.unc.edu/pub/Linux/libs/graphics/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.misc + A Type 1 Font Rasterizer Library for UNIX/X11 + UNIX/X11 sistemler için Tip-1 yazıtipi işleme kütüphanesi + t1lib est une librairie écrite en langage C permettant à un programmeur de générer des bitmaps de fontes Adobe (TM) Type 1 assez facilement. Ces bitmaps sont retournés sous la forme d'une structure de données de type GLYPH. Ce type spécial GLYPH est également utilisé dans le système de fenêtrage X11 pour décrire les bitmaps caractères. Il contien les données bitmap en plus de quelques informations métriques. t1lib est toutefois totalement indépendante du système X11 ou tout autre interface graphique. + t1lib is a library written in the C programming language allowing a programmer to generate bitmaps from Adobe (TM) Type 1 fonts quite easily. These bitmaps are returned in a data structure with type GLYPH. This special GLYPH-type is also used in the X11 window system to describe character bitmaps. It contains the bitmap data as well as some metric information. But t1lib is in itself entirely independent of the X11-system or any other graphical user interface. + T1lib, programcıya Adobe Type1 yazıtiplerinden kolay bir şekilde bitmap dosyalar üretmeye izin veren C programlama dilinde yazılan bir kütüphanedir. Bu bitmapler GLYPH tipi ile bir veri yapısı içinde dönüştürülürler. Bu özel GLYPH tipi, karakter bitmapleri tasvir etmek için X11 pencere sisteminde de kullanılırlar. Bitmap veri içerdikleri gibi bazı metrik bilgileri de içerirler. + t1lib es una librería programada en C que permite al programador generar fácilmente bitmaps de fuentes Adobe (TM) Type 1. Estos bitmaps están representados por una estructura de datos del tipo GLYPH. Este tipo especial GLYPH también está usado en el sistema de ventanas X11 para describir mapas de bits de caracteres. Contiene los datos del bitmap y además algunas informaciones métricas. Sin embargo t1lib mismo está completamente independiente del sistema X11 y de otros interfaces gráficos de usuario. + https://www.ibiblio.org/pub/Linux/libs/graphics/t1lib-5.1.2.tar.gz + + libXmu-devel + libICE-devel + libXt-devel + libXpm-devel + libXext-devel + libSM-devel + libXaw-devel + + + parallel.patch + t1lib-5.1.2-format-security.patch + t1lib-5.1.2-CVE-2010-2642_2011-0433_2011-5244.patch + t1lib-5.1.2-cve-2011-0764.patch + t1lib-5.1.2-CVE-2011-1552_1553_1554.patch + + multimedia/misc/t1lib/pspec.xml + + + t1lib + + libXmu + libICE + libXt + libXpm + libXext + libSM + libXaw + + + /usr/bin + /etc/t1lib + /usr/share/doc/t1lib + /usr/lib + + + + t1lib-devel + Development files for t1lib + t1lib için geliştirme dosyaları + + t1lib + + + /usr/include + + + + + 2020-03-20 + 5.1.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + taglib + https://taglib.org/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPL-2 + library + multimedia.misc + A library for reading and editing audio meta data. + Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi + TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires. + TagLib is a library for reading and editing the meta data of several popular audio formats. + TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir. + https://taglib.org/releases/taglib-1.12.tar.gz + + cmake + zlib-devel + boost-devel + + multimedia/misc/taglib/pspec.xml + + + taglib + + zlib + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + taglib-devel + Development files for taglib + taglib için geliştirme dosyaları + + taglib + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-23 + 1.12 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-09-15 + 1.11.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-19 + 1.11.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.11.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 1.11.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-27 + 1.11.1 + Rebuild for kfilemetadata. + Stefan Gronewold + groni@pisilinux.org + + + 2017-02-16 + 1.11.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.9.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.9.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + taglib-extras + http://amarok.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.misc + Taglib extras library from Amarok team + Amarok takımından taglib ekstraları kütüphanesi + Taglib-extras delivers support for reading and editing the meta-data of audio formats not supported by taglib, including: asf, mp4v2, rmff, wav. + Taglib-extras taglib tarafından desteklenmeyen ses formatlarının (asf, mp4v2, rmff, wav vs.) meta verilerini okumak ve düzenlemek için gerekli desteği verir. + http://download.kde.org/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz + + pkgconfig + cmake + taglib-devel + + + taglib-1.10.patch + + multimedia/misc/taglib-extras/pspec.xml + + + taglib-extras + + taglib + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + taglib-extras-devel + Development files for taglib-extras + taglib-extras için geliştirme dosyaları + + taglib-extras + + + /usr/include/taglib-extras + /usr/lib/pkgconfig + + + + + 2020-03-07 + 1.0.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-19 + 1.0.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 1.0.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.0.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + tagparser + https://github.com/Martchus/tagparser + + fury + uglyside@yandex.ru + + GPL-2 + library + 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/v11.1.0.tar.gz + + cmake + doxygen + zlib-devel + openssl-devel + cppunit-devel + iso-codes-devel + cpp-utilities-devel + + multimedia/misc/tagparser/pspec.xml + + + tagparser + + zlib + libgcc + cpp-utilities + + + /usr/lib + /usr/share + /usr/share/doc + + + + tagparser-devel + + tagparser + cpp-utilities-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/tagparser + + + + + 2022-04-14 + 11.1.0 + Version bump. + fury + uglyside@yandex.ru + + + 2022-02-05 + 10.4.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-04 + 10.3.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-13 + 10.2.0 + First build + fury + uglyside@yandex.ru + + + + + + audacious-plugins + https://audacious-media-player.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + data + multimedia.plugin + plugins for audacious + Audacious eklentileri + Zestaw pluginów do Audacious + plugins for audacious + Audacious için eklentiler + Zestaw pluginów do Audacious + https://distfiles.audacious-media-player.org/audacious-plugins-4.1.tar.bz2 + + meson + cmake + flac-devel + mesa-devel + lame-devel + neon-devel + curl-devel + gtk2-devel + faac-devel + lirc-devel + faad2-devel + cairo-devel + pango-devel + qt5-linguist + libogg-devel + libcue-devel + ffmpeg-devel + libmms-devel + mpg123-devel + libmtp-devel + libxml2-devel + libsdl2-devel + libbs2b-devel + libsoxr-devel + libcddb-devel + wavpack-devel + libbinio-devel + qt5-base-devel + alsa-lib-devel + libnotify-devel + libvorbis-devel + fluidsynth-devel + libsndfile-devel + gdk-pixbuf-devel + libXrender-devel + libmodplug-devel + qt5-x11extras-devel + libXcomposite-devel + libsamplerate-devel + qt5-multimedia-devel + pulseaudio-libs-devel + libcdio-paranoia-devel + jack-audio-connection-kit-devel + libcdio-devel + audacious-devel + + multimedia/plugin/audacious-plugins/pspec.xml + + + audacious-plugins + + neon + gtk2 + faac + curl + flac + zlib + lame + lirc + mesa + glib2 + faad2 + cairo + pango + libcue + ffmpeg + libmms + mpg123 + libmtp + libX11 + libogg + libgcc + libsoxr + libbs2b + wavpack + libxml2 + libcddb + libsdl2 + qt5-base + libglvnd + libbinio + alsa-lib + audacious + libvorbis + libnotify + fluidsynth + gdk-pixbuf + libXrender + libmodplug + libsndfile + qt5-x11extras + libsamplerate + libXcomposite + qt5-multimedia + pulseaudio-libs + libcdio-paranoia + jack-audio-connection-kit + libcdio + + + /usr/lib/audacious + /usr/share/audacious + /usr/share/locale + /usr/share/doc + + + + + 2022-01-18 + 4.1 + Version bump + fury + uglyside@yandex.ru + + + 2020-03-07 + 3.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-06 + 3.10 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + ladspa-sdk + http://www.ladspa.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.plugin + The Linux Audio Developer's Simple Plugin API + Ses geliştiricisinin temel eklenti kütüphanesi + La Linux Audio Developer's Simple Plugin API (LADSPA - L'API de plugin (greffon) simple pour développeurs linux audio) tente de donner aux programmeurs la possibilité d'écrire en C/C++ des processeurs audio simples sous forme de plugin' et les lier dynamiquement à différentes applications hôte. + The Linux Audio Developer's Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin' audio processors in C/C++ and link them dynamically against a range of host applications + ladspa, Linux üzerinde ses uygulamaları geliştiren programcıların temel ses işleme eklentileri geliştirmelerini ve bu eklentileri bir seri ses uygulaması ile birlikte kullanabilmelerini sağlar. + El Linux Audio Developer's Simple Plugin API (LADSPA) intenta facilitar a programadores la tarea de escribir procesadores simples de audio en C/C++ y enlazarlos dinámicamente con una gama de aplicaciones host. + http://www.ladspa.org/download/ladspa_sdk_1.15.tgz + + ladspa-sdk-1.12-gcc4.patch + fix-memleak-in-plugin-scanning.patch + + multimedia/plugin/ladspa-sdk/pspec.xml + + + ladspa-sdk + + /usr/bin + /usr/lib + /etc + /usr/share/doc/ladspa-sdk + + + 60ladspa + + + + ladspa-sdk-devel + Development files for ladspa-sdk + ladspa-sdk için geliştirme dosyaları + + ladspa-sdk + + + /usr/include + /usr/share/doc/ladspa-sdk/html + + + + + 2020-01-18 + 1.15 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 1.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 1.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.13 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + leptonica + http://www.leptonica.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:console + multimedia.plugin + Leptonica Library + Leptonica açık kaynaklı görsel işleme ve analiz kitaplığıdır. + An open source C library for efficient image processing and image analysis operations. + Daha verimli görüntü işleme ve görsel çözümleme operasyonları için açık kaynaklı bir C kitaplığıdır. + https://github.com/DanBloomberg/leptonica/archive/1.79.0.tar.gz + + libjpeg-turbo-devel + giflib-devel + libpng-devel + tiff-devel + webp-devel + zlib-devel + + multimedia/plugin/leptonica/pspec.xml + + + leptonica + Software that is broadly useful for image processing and image analysis applications + + libjpeg-turbo + giflib + libpng + webp + tiff + zlib + + + /usr/lib + /usr/share/doc + /usr/bin + + + + leptonica-devel + Development file for leptonica + leptonica için geliştirme dosyaları + leptonica-devel, leptonica için geliştirme dosyaları içerir. + + leptonica + + + /usr/lib/pkgconfig + /usr/include/leptonica + + + + + 2020-01-18 + 1.79.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-01-04 + 1.74.4 + Version Bump. + Ali Cengiz Kurt(alick) + alicengizkurt@gmail.com + + + 2017-01-18 + 1.74.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libchromaprint + https://acoustid.org/chromaprint + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.plugin + Chromaprint is the core component of the Acoustid project. + Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. + https://github.com/acoustid/chromaprint/releases/download/v1.5.0/chromaprint-1.5.0.tar.gz + + boost-devel + fftw3-devel + ffmpeg-devel + cmake + + multimedia/plugin/libchromaprint/pspec.xml + + + libchromaprint + + ffmpeg + libgcc + + + /usr/share + /usr/lib + + + + libchromaprint-devel + libchromaprint için geliştirme dosyaları + + libchromaprint + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-30 + 1.5.0 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2020-03-07 + 1.4.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-14 + 1.4.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-14 + 1.4.3 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-04-27 + 1.4.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 1.4.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-03 + 1.4.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-17 + 1.3.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-18 + 1.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libmpdclient + https://www.musicpd.org/libs/libmpdclient/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.plugin + C library to implement a MPD client + MPD için istemci geliştirme kitaplığı + Biblioteka kliencka MPD + A stable, documented, asynchronous API library for interfacing MPD in the C, C++ and Objective C languages. + libmpdclient, MPD etkileşimi için C, C++ ve Object C dillerinde kullanılabilen istikrarlı, belgelendirilmiş, asenkron bir kitaplıktır. + Biblioteka do tworzenia klientów demona MPD (Music Player Daemon). + https://musicpd.org/download/libmpdclient/2/libmpdclient-2.20.tar.xz + + meson + + multimedia/plugin/libmpdclient/pspec.xml + + + libmpdclient + + vala + glib2 + + + /usr/lib + /usr/share + /usr/share/doc + + + + libmpdclient-devel + libmpdclient için geliştirme dosyaları + Pliki naglowkowe do libmpdclient + + libmpdclient + + + /usr/lib/pkgconfig + /usr/include + /usr/share/vala + + + + + 2021-11-23 + 2.20 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-13 + 2.19 + First Beta release. + fury + uglyside@yandex.ru + + + + + + flac + http://flac.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + multimedia.sound + An encoder/decoder for the Free Lossless Audio Codec + Özgür Kayıpsız Ses Kodlaması için kodlayıcı/çözücü araçları + flac is the Free Lossless Audio Codec. The FLAC format supports streaming, seeking, and archival, and gives 25-75% compression on typical CD audio. This package contains tools and libraries to work with and support for files in FLAC format. + flac bir Özgür Kayıpsız Ses Kodlaması'dır. (Free Lossless Audio Codec) FLAC biçemi akan görüntü, arama ve arşivleme ve tipik bir Ses CD'sinde %25-75 sıkıştırmayı destekler. + https://ftp.osuosl.org/pub/xiph/releases/flac/flac-1.3.3.tar.xz + + libogg-devel + + multimedia/sound/flac/pspec.xml + + + flac + An encoder/decoder for the Free Lossless Audio Codec + + libogg + + + /usr/bin + /usr/lib + /usr/share/man + + + + flac-docs + Documentation files for flac + flac ile ilgili belgeler + flac-docs, flac ile ilgili belgelendirme dosyaları içerir. + + flac + + + /usr/share/doc + + + + flac-devel + Development files for flac + flac için geliştirme dosyaları + flac-devel, flac için geliştirme dosyaları içerir. + + libogg-devel + flac + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + flac-32bit + 32-bit shared libraries for flac + flac için 32-bit paylaşımlı kitaplıklar + flac-32bit, flac için 32-bit paylaşımlı kitaplıklar içerir. + emul32 + emul32 + + libogg-32bit + + + libogg-32bit + libgcc + flac + + + /usr/lib32 + + + + + 2020-01-06 + 1.3.3 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-01 + 1.3.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.3.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.3.1 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-12-03 + 1.3.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libilbc + https://github.com/TimothyGu/libilbc/ + + Mathias Freire + mathiasfreire45@gmail.com + + BSD + library + multimedia.sound + A friendly copy of the iLBC codec from the WebRTC project + This is a packaging friendly copy of the iLBC codec from the WebRTC project. It provides a base for distribution packages and can be used as drop-in replacement for the non-free code from RFC 3591. + https://github.com/TimothyGu/libilbc/releases/download/v2.0.2/libilbc-2.0.2.tar.bz2 + multimedia/sound/libilbc/pspec.xml + + + libilbc + + /usr/bin + /usr/lib + /usr/share/doc + + + + libilbc-devel + Header files for libilbc. + + libilbc + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-12 + 2.0.2 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + openal + https://kcat.strangesoft.net/openal.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + multimedia.sound + Open Audio Library is a vendor-neutral API for interactive spatialized audio + Açık ses kütüphanesi + OpenAL est une API audio 3D multi-plateforme utilisable pour les jeux et beaucoup d'autre types d'application audio. Les objets de base d'OpenAL sont le Listener (auditeur), a Source (source), et le Buffer (tampon). + OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. The basic OpenAL objects are a Listener, a Source, and a Buffer. + OpenAL, oyun uygulamaları ve diğer birçok audio uygulama tipleriyle kullanılmaya tahsisli bir üç boyutlu audio API(Uygulama Programlama Arayüzü) çapraz platformudur. + https://github.com/kcat/openal-soft/archive/refs/tags/1.21.1.tar.gz + + cmake + zlib-devel + libsdl2-devel + alsa-lib-devel + pulseaudio-libs-devel + qt5-base-devel + jack-audio-connection-kit-devel + + multimedia/sound/openal/pspec.xml + + + openal + + libsdl2 + alsa-lib + qt5-base + + + /usr/bin + /usr/lib + /usr/share/doc/openal + /usr/share/openal + + + + openal-devel + Development files for openal + openal için geliştirme dosyaları + + openal + pulseaudio + + + /usr/include + /usr/lib/pkgconfig/openal.pc + /usr/lib32/pkgconfig/openal.pc + + + + openal-32bit + 32-bit shared libraries for openal + openal için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib-32bit + libsdl2-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + openal + zlib-32bit + libsdl2-32bit + alsa-lib-32bit + pulseaudio-libs-32bit + + + /usr/lib32 + + + + + 2021-09-24 + 1.21.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 1.20.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-04 + 1.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-23 + 1.18.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.18.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 1.17.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.15.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.15.1 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-25 + 1.15.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + a52dec + http://liba52.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + DVD ATSC A/52 streams decoder library + DVD'de kullanılan ATSC A/52 akımını çözen kütüphane + liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3. + liba52 ATSC A/52 yayınlarının kodlarını çözen ücretsiz bir kütüphanedir. A/52 standart dijital televizyon ve DVD programlarını da içeren çeşitli uygulamalar tarafından kullanılmaktadır. + http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz + + glibc-devel + djbfft-devel + + + a52dec-0.7.4-build.patch + use-djbfft.patch + constant.patch + + multimedia/sound/a52dec/pspec.xml + + + a52dec + + djbfft + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + a52dec-devel + Development files for a52dec + a52dec için geliştirme dosyaları + + a52dec + + + /usr/include + + + + + 2020-01-19 + 0.7.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.7.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-12 + 0.7.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.7.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.7.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + amarok + https://amarok.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.sound + Amarok audio player + Amarok Audio-speler + Amarok Audio-Player + KDE için müzik çalıcısı + Odtwarzacz muzyczny Amarok + Reproductor de música para KDE + Lecteur audio riche en fonctionnalité pour le système KDE. + Amarok is a feature-rich audio player for the KDE desktop. + Amarok is een feature-rijke audio-speler voor het KDE-bureaublad. + Amarok, pek çok yeni özelliklere sahip yeni nesil bir müzik çalıcısıdır + Amarok to bogaty w funkcje odtwarzacz audio dedykowany środowisku graficznemu KDE. + Amarok es un potente reproductor de música con una interfaz intuitiva + amarok + https://github.com/KDE/amarok/archive/refs/tags/v2.9.71.tar.gz + + extra-cmake-modules + qt5-base-devel + qt5-svg-devel + qt5-script-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-declarative-devel + qt5-webengine-devel + qt5-webkit-devel + qt5-designer-devel + kcoreaddons-devel + re2-devel + solid-devel + kdelibs4-support-devel + kcodecs-devel + ki18n-devel + threadweaver-devel + plasma-framework-devel + kcmutils-devel + knewstuff-devel + ktexteditor-devel + kglobalaccel-devel + kio-devel + knotifyconfig-devel + karchive-devel + kdnssd-devel + kdesignerplugin + kdoctools-devel + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + taglib-devel + curl-devel + libmtp-devel + ffmpeg-devel + liblastfm-devel + qca2-qt5-devel + openssl-devel + libofa-devel + clamz + ifuse + loudmouth-devel + libgpod-devel + libmygpo-qt-devel + taglib-extras-devel + gdk-pixbuf-devel + gst-plugins-base-devel + gst-plugins-bad-devel + mariadb-lib + mariadb-client + mariadb-server + fftw3-devel + kirigami-devel + qt5-quickcontrols2-devel + kdeclarative-devel + python3-qt5-devel + qt5-phonon-devel + kwallet-devel + liblastfm_fingerprint + + multimedia/sound/amarok/pspec.xml + + + amarok + + kio + attica + kcrash + ki18n + fftw3 + glib2 + kdnssd + solid + libgpod + libmtp + kwallet + ffmpeg + kpackage + libgcc + libofa + taglib + kcodecs + kconfig + kxmlgui + qt5-svg + karchive + kcmutils + kservice + qt5-base + knewstuff + gdk-pixbuf + libmygpo-qt + kdeclarative + liblastfm + kguiaddons + kitemviews + qt5-phonon + qt5-script + qt5-webengine + qt5-declarative + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + ktexteditor + mariadb-lib + kglobalaccel + ktextwidgets + threadweaver + kwindowsystem + taglib-extras + kconfigwidgets + knotifications + kwidgetsaddons + kdelibs4-support + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/amarok + /usr/share/appdata + /usr/share/applications/ + /usr/share/config.kcfg + /usr/share/dbus-1/interfaces + /usr/share/metainfo + /usr/share/doc + /usr/share/icons + /usr/share/kconf_update + /usr/share/knotifications5 + /usr/share/kservices5 + /usr/share/kservicetypes5 + /usr/share/solid + + + + + 2021-12-13 + 2.9.71 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 2.9.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2018-04-27 + 2.9.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2018-04-11 + 2.9.0 + First release + PisiLinux Community + admins@pisilinux.org + + + 2017-01-07 + 2.8.83 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ario + http://ario-player.sourceforge.net/ + + Pisilinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.sound + Ario is a GTK+ client for MPD. + ario - A GTK client for MPD (Music player daemon) inspired by Rhythmbox but much lighter and faster. + mirrors://sourceforge/ario-player/1.6/ario-1.6.tar.gz + + avahi + python3 + intltool + atk-devel + curl-devel + gtk3-devel + avahi-libs + cairo-devel + pango-devel + taglib-devel + gnutls-devel + libxml2-devel + libsoup-devel + gettext-devel + dbus-glib-devel + libunique-devel + libnotify-devel + libgcrypt-devel + avahi-glib-devel + fontconfig-devel + gdk-pixbuf-devel + libmpdclient-devel + + + fix_window_size_if_tags_are_too_long.patch + + multimedia/sound/ario/pspec.xml + + + ario + + atk + gtk3 + curl + avahi + cairo + pango + taglib + gnutls + libxml2 + libsoup + dbus-glib + libnotify + libunique + avahi-libs + fontconfig + gdk-pixbuf + avahi-glib + libmpdclient + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc/ario + + + System.PackageHandler + + + + + 2020-12-13 + 1.6 + First Beta build. + fury + uglyside@yandex.ru + + + + + + audacious + https://audacious-media-player.org + + PisiLinux Community + admins@pisilinux.org + + GPL-3 + app:gui + multimedia.sound + an advanced audio player + Açık kaynak kodlu bir müzikçalar + Audacious es un reproductor de audio disponible como software libre + Zaawansowany odtwarzacz muzyczny + Audacious is an open source audio player. A descendant of XMMS, Audacious plays your music how you want it, without stealing away your computer’s resources from other tasks. Drag and drop folders and individual song files, search for artists and albums in your entire music library, or create and edit your own custom playlists.Listen to CD’s or stream music from the Internet. Tweak the sound with the graphical equalizer or experiment with LADSPA effects. Enjoy the modern GTK-themed interface or change things up with Winamp classic skins. Use the plugins included with Audacious to fetch lyrics for your music, to set an alarm in the morning, and more. + Audacious ile dilerseniz bilgisayarınızdan ya da diğer kaynaklardan, sürükle-bırak yöntemiyle,müzik dosyalarınızı çalabilrsiniz. + Sanatçı ve albüm müzik kütüphanesi için arama yapabilir veya kendi özel çalma listelerinizi oluşturup ve düzenleyebilirsiniz. + CD ya da internet üzerinden canlı müzik dinleyeblir, GTK temalı arayüzlü bu uygulamayla , modern bir müzikçaların keyfini çıkarabilirsiniz. + Dilerseniz Winamp klasik arayüzleri ile görüntüsünü değiştirebilirsiniz. + Audacious ile birlikte eklentilerini ve daha fazlasını,örneğin sabahları bir alarm kurmak için kullanabilirsiniz. + Con Audacious puede escuchar música desde su ordenador o desde otras fuentes, si lo desea, puede arrastrar y soltar los archivos de música. Puede buscar por artista y álbum, disponer de biblioteca de música o crear sus propias listas de reproducción y editarlas. También puede cambiar la apariencia de la interfaz al modo de Winamp clásico. + Audacious to zaawansowany i bardzo wydajny odtwarzacz audio. Program obsługuje najpopularniejsze formaty dźwiękowe a w razie potrzeby listę formatów można poszerzyć dzięki licznym wtyczkom. + https://distfiles.audacious-media-player.org/audacious-4.1.tar.bz2 + + meson + cmake + gtk2-devel + glib2-devel + pango-devel + qt5-linguist + python3-devel + qt5-base-devel + gdk-pixbuf-devel + libarchive-devel + + multimedia/sound/audacious/pspec.xml + + + audacious + + gtk2 + glib2 + cairo + pango + libgcc + qt5-base + gdk-pixbuf + libarchive + + + /usr/share/doc + /usr/bin + /usr/share + /usr/lib + /usr/share/locale + + + + audacious-devel + + audacious + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-01-18 + 4.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-03-07 + 3.10 + Rebuild + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2018-12-06 + 3.10 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + audacity + https://www.audacityteam.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.sound + Multi-track audio editor and recorder + Özgür ses düzenleyici ve kaydedici + Grabador y editor de audio de código libre + With Audacity, you can cut, copy, splice or mix sounds together; change the speed or pitch of a recording and much more. Editing is very fast and provides unlimited undo/redo. There are digital effects and spectrum analysis tools. Supported file formats include Ogg Vorbis, MP3, WAV, AIFF, and AU.. + Audacity ses dosyalarını kaydetmek ve düzenlemek için özgür, açık kodlu bir yazılımdır. + Audacity es un editor de grabación y edición de sonido libre, de código abierto y multiplataforma. + https://github.com/audacity/audacity/archive/Audacity-2.4.1.tar.gz + + cmake + wxGTK3 + lv2-devel + flac-devel + gtk3-devel + lame-devel + expat-devel + glib2-devel + wxGTK-devel + wxBase-devel + ffmpeg-devel + libmad-devel + libogg-devel + taglib-devel + twolame-devel + alsa-lib-devel + libid3tag-devel + libvorbis-devel + libsndfile-devel + soundtouch-devel + gdk-pixbuf-devel + desktop-file-utils + libsamplerate-devel + vamp-plugin-sdk-devel + jack-audio-connection-kit-devel + + + audacity-2.4.1-fix-vertical-track-resizing.patch + + multimedia/sound/audacity/pspec.xml + + + audacity + Multi-track audio editor and recorder + + lv2 + flac + gtk3 + expat + glib2 + ffmpeg + libogg + libmad + libgcc + wxBase + wxGTK3 + twolame + alsa-lib + libid3tag + libvorbis + libsndfile + soundtouch + gdk-pixbuf + soundtouch + wxGTK-common + libsamplerate + vamp-plugin-sdk + jack-audio-connection-kit + lame + + + /usr/share/man + /usr/bin + /usr/share/mime + /usr/share/icons + /usr/share/pixmaps + /usr/share/appdata + /usr/share/audacity + /usr/share/doc/audacity + /usr/share/locale + /usr/share/applications + + + + + 2020-05-21 + 2.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2020-05-21 + 2.4.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-21 + 2.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-30 + 2.3.3 + Version bump. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2019-03-13 + 2.3.1 + Version bump. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-04-28 + 2.2.2 + Rebuild ffmpeg. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-04-04 + 2.2.2 + First release for Pisi Linux 2.0. + Stefan Gronewold + groni@pisilinux.org + + + + + + audex + https://github.com/KDE/audex + + Stefan Gronewold + groni@pisilinux.org + + GPLv3 + app:gui + multimedia.sound + Audex is an audio grabber tool for CD-ROM drives for the KDE desktop environment. + Audex creates profiles for LAME, Ogg Vorbis (oggenc), FLAC, MP4/M4A/AAC (faac) and RIFF WAVE. Please install your favorite encoder. For WAVE no external encoder is needed. Beyond you can define custom profile, which means, that Audex works together with commmand line encoders in general. + https://github.com/groni/Sources/raw/master/audex-master.zip + + cdparanoia-devel + glibc-devel + gettext-devel + extra-cmake-modules + kconfig-devel + kcompletion-devel + kcoreaddons-devel + ki18n-devel + kiconthemes-devel + kcmutils-devel + kio-devel + solid-devel + ktextwidgets-devel + kwidgetsaddons-devel + kxmlgui-devel + qt5-base-devel + qt5-x11extras-devel + qt5-script-devel + python + libkcddb + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + qt5-qdbusviewer + + multimedia/sound/audex/pspec.xml + + + audex + + kio + ki18n + solid + libgcc + kconfig + kxmlgui + kcmutils + kservice + libkcddb + qt5-base + cdparanoia + qt5-script + kcompletion + kcoreaddons + kiconthemes + ktextwidgets + qt5-x11extras + kconfigwidgets + kwidgetsaddons + lame + flac + faac + vorbis-tools + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2020-03-08 + 0.95 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.95 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-14 + 0.95 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + audiofile + http://www.68k.org/~michael/audiofile/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.sound + An elegant API for accessing audio files + Ses dosyalarına erişim için zarif bir UPA + audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. + audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar. + http://audiofile.68k.org/audiofile-0.3.6.tar.gz + + alsa-lib-devel + flac-devel + + + 01_gcc6.patch + 03_CVE-2015-7747.patch + 04_clamp-index-values-to-fix-index-overflow-in-IMA.cpp.patch + 05_Always-check-the-number-of-coefficients.patch + 06_Check-for-multiplication-overflow-in-MSADPCM-decodeSam.patch + 07_Check-for-multiplication-overflow-in-sfconvert.patch + 08_Fix-signature-of-multiplyCheckOverflow.-It-returns-a-b.patch + 09_Actually-fail-when-error-occurs-in-parseFormat.patch + 10_Check-for-division-by-zero-in-BlockCodec-runPull.patch + + multimedia/sound/audiofile/pspec.xml + + + audiofile + + alsa-lib + flac + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + audiofile-devel + Development files for audiofile + audiofile için geliştirme dosyaları + + audiofile + + + /usr/bin/audiofile-config + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + audiofile-32bit + 32-bit shared libraries for audiofile + audiofile için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + alsa-lib-32bit + flac-32bit + + + alsa-lib-32bit + flac-32bit + audiofile + + + /usr/lib32 + + + + + 2020-01-17 + 0.3.6 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-16 + 0.3.6 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-05 + 0.3.6 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 0.3.6 + Version fix + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.3.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + cantata + https://github.com/CDrummond/cantata + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv3 + multimedia.sound + Qt4 / KDE4 Music Player Client + Cantata is a graphical client for MPD + cantata + https://github.com/CDrummond/cantata/releases/download/v2.4.2/cantata-2.4.2.tar.bz2 + + qt5-base-devel + qt5-svg-devel + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + qt5-qdbusviewer + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-multimedia-devel + qt5-sql-postgresql + cmake + libcddb-devel + musicbrainz5-devel + cdparanoia-devel + libxml2-devel + solid-devel + udisks2-devel + zlib-devel + eudev-devel + speex-devel + libmtp-devel + mpg123-devel + taglib-devel + ffmpeg-devel + libqjson-devel + vlc-devel + perl-URI + libcdio-paranoia-devel + taglib-extras-devel + + multimedia/sound/cantata/pspec.xml + + + cantata + + qt5-base + qt5-svg + qt5-multimedia + zlib + libcddb + cdparanoia + musicbrainz5 + perl-URI + eudev + libgcc + vlc-libs + speex + libmtp + mpg123 + taglib + ffmpeg + libqjson + libcdio-paranoia + taglib-extras + + + /usr/bin + /etc/dbus-1 + /usr/share/doc/ + /usr/share/icons + /usr/share/pixmaps + /usr/share/cantata + /usr/share/dbus-1 + /usr/lib + /usr/share/locale + /usr/share/applications + + + + + 2020-10-01 + 2.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 2.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 2.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 2.2.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-02 + 2.0.1 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-12-07 + 2.0.1 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + celt + http://www.celt-codec.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + multimedia.sound + An audio codec for use in low-delay speech and audio communication + Düşük gecikmeli konuşma ve ses iletişimde kullanılmak üzere tasarlanan ses kodeği + CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). + CELT (Constrained Energy Lapped Transform) yüksek kalitede konuşma ve ses görüşmesinin gerçek zamanlı iletiminde kullanılmak üzere tasarlanmış bir ses kodeğidir. + http://downloads.us.xiph.org/releases/celt/celt-0.11.3.tar.gz + + libogg-devel + + multimedia/sound/celt/pspec.xml + + + celt + app:console + library + + libogg + + + /usr/bin + /usr/lib + /usr/share/doc + + + + celt-devel + Development files for celt + celt için geliştirme dosyaları + library + + celt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-12 + 0.11.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 0.11.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.11.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.11.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-15 + 0.11.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + clementine + https://www.clementine-player.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + app:gui + multimedia.sound + Clementine, modern bir müzik çalar ve kütüphane düzenleyicisidir. + Clementine is a modern music player and library organizer + Een cross-platform muziekspeler op basis van Amarok 1.4 + Nowoczesny i prosty w obsłudze odtwarzacz muzyki + Reproductor de música basado en Amarok 1.4 + Clementine, Amarok 1.4 esas alınarak Qt5 ile yeniden yazılmış modern bir müzik oynatıcıdır. + Clementine is a modern music player and library organiser. Clementine is a port of Amarok 1.4, with some features rewritten to take advantage of Qt5. + Clementine is een moderne muziekspeler. Clementine is een port van Amarok 1.4, met een aantal functies herschreven om te profiteren van Qt5. + Clementine to port Amaroka 1.4 - popularnego odtwarzacza muzycznego dla systemu Linux. + Clementine es un moderno reproductor de música escrito en QT5 y basado en Amarok 1.4. + https://github.com/clementine-player/Clementine/releases/download/1.4.0rc1-772-g245f64a88/clementine-1.4.0rc1-772-g245f64a88.tar.xz + + cmake + ccache + gst-libav + glew-devel + dbus-devel + boost-devel + fftw3-devel + glibc-devel + libogg-devel + libmtp-devel + ffmpeg-devel + taglib-devel + qt5-linguist + qt5-sql-odbc + sqlite-devel + libcdio-devel + qt5-sql-mysql + libgpod-devel + qt5-svg-devel + libglvnd-devel + qt5-base-devel + libplist-devel + libqjson-devel + protobuf-devel + mesa-glu-devel + crypto++-devel + alsa-lib-devel + qt5-sql-sqlite + qca2-qt5-devel + libnotify-devel + qt5-qdbusviewer + liblastfm-devel + gstreamer-devel + qt5-webkit-devel + gst-plugins-ugly + gst-plugins-good + libusbmuxd-devel + libechonest-devel + libmygpo-qt-devel + google-sparsehash + libprojectM-devel + icon-theme-hicolor + desktop-file-utils + qt5-designer-devel + qt5-sql-postgresql + libkvkontakte-devel + qt5-x11extras-devel + qt5-assistant-devel + libchromaprint-devel + pulseaudio-libs-devel + gst-plugins-bad-devel + libimobiledevice-devel + gst-plugins-base-devel + libcdio-paranoia-devel + + multimedia/sound/clementine/pspec.xml + + + clementine + + glew + zlib + fftw3 + glib2 + libX11 + libgcc + libmtp + sqlite + taglib + libogg + libcdio + libgpod + protobuf + crypto++ + alsa-lib + qt5-base + libglvnd + libnotify + gstreamer + liblastfm + libprojectM + libmygpo-qt + qt5-x11extras + libchromaprint + pulseaudio-libs + gst-plugins-bad + gst-plugins-ugly + gst-plugins-good + gst-plugins-base + libprojectM-pulseaudio + + + /usr/bin + /usr/share + + + + + 2022-01-09 + 1.4.0_rc1.772 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-11-04 + 1.4.0_rc1.740 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-03-31 + 1.4.0_rc1 + Rebuild from git. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 1.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 1.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 1.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 1.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-22 + 1.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-08 + 1.3.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-07 + 1.3.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + codec2 + http://www.rowetel.com/?page_id=452 + + Mathias Freire + mathiasfreire45@gmail.com + + LGPL + library + multimedia.sound + Low bit rate open source speech codec + Codec 2 is an open source speech codec designed for communications quality speech between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF digital radio. + https://hobbes1069.fedorapeople.org/freetel/codec2/codec2-0.8.1.tar.xz + + cmake + speex-devel + portaudio-devel + + multimedia/sound/codec2/pspec.xml + + + codec2 + + speex + portaudio + + + /usr/bin + /usr/lib + /usr/share/doc + + + + codec2-devel + Header files for codec2. + + codec2 + + + /usr/include + + + + + 2020-01-12 + 0.8.1 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + deadbeef + https://deadbeef.sourceforge.io/ + + PisiLinux Community + admins@pisilinux.org + + Zlib + GPLv2 + LGPLv2.1 + app:gui + multimedia.sound + Audio player for GNU/Linux systems with X11. + X11 ile GNU / Linux sistemleri için ses çalar + Lkki i przejrzysty odtwarzacz plików muzycznych + DeaDBeeF (as in 0xDEADBEEF) is a modular audio player for GNU/Linux, *BSD, OpenSolaris, macOS, and other UNIX-like systems. + DeaDBeeF (0xDEADBEEF gibi) X11 ile GNU / Linux sistemleri (şimdi olsa da FreeBSD, X olmaksızın düz konsolda çalışır ve OpenSolaris) için bir ses oynatıcısıdır. + DeaDBeeF Program pozwala odtwarzać najpopularniejsze formaty muzyki, a także płyty Audio-CD i strumienie audio emitowane za pośrednictwem Internetu. Jego ogromną zaletą jest prostota, dopracowanie oraz minimalne zapotrzebowanie na zasoby systemowe. + mirrors://sourceforge/project/deadbeef/travis/linux/1.8.8/deadbeef-1.8.8.tar.bz2 + + bison + intltool + atk-devel + lld-devel + gtk2-devel + gtk3-devel + flac-devel + curl-devel + yasm-devel + dbus-devel + zlib-devel + llvm-clang + glib2-devel + faad2-devel + cairo-devel + pango-devel + libcue-devel + ffmpeg-devel + libmad-devel + libzip-devel + imlib2-devel + mpg123-devel + libX11-devel + jansson-devel + wavpack-devel + libcddb-devel + libopus-devel + libcdio-devel + opusfile-devel + alsa-lib-devel + libmp4v2-devel + libsocket-devel + libvorbis-devel + libsndfile-devel + cdparanoia-devel + gdk-pixbuf-devel + llvm-clang-devel + libdispatch-devel + libsamplerate-devel + pulseaudio-libs-devel + + multimedia/sound/deadbeef/pspec.xml + + + deadbeef + + atk + gtk2 + gtk3 + curl + dbus + zlib + flac + glib2 + faad2 + cairo + pango + libogg + libgcc + mpg123 + libX11 + ffmpeg + libmad + libzip + imlib2 + wavpack + libcdio + libcddb + jansson + freetype + opusfile + alsa-lib + harfbuzz + libvorbis + fontconfig + cdparanoia + libsndfile + gdk-pixbuf + libdispatch + libsamplerate + pulseaudio-libs + + + /usr/bin + /usr/include + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-09-12 + 1.8.8 + Version bump. + fury + uglyside@yandex.ru + + + 2021-02-21 + 1.8.7 + Rebuild. + fury + uglyside@yandex.ru + + + 2021-02-12 + 1.8.7 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-22 + 1.8.6 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-10 + 1.8.5 + Version bump. + fury + uglyside@yandex.ru + + + 2020-06-29 + 1.8.4 + Version bump. + fury + uglyside@yandex.ru + + + 2020-03-20 + 1.8.3 + Version bump. + fury + uglyside@yandex.ru + + + 2020-03-08 + 1.8.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-28 + 1.8.2 + Version bump. + fury + uglyside@yandex.ru + + + 2019-06-26 + 1.8.1 + Version bump. + fury + uglyside@yandex.ru + + + 2019-04-14 + 1.8.0 + Version bump. + fury + uglyside@yandex.ru + + + 2018-09-01 + 0.7.20 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-28 + 0.7.20 + Rebuild ffmpeg. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-02-10 + 0.7.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.7.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.7.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-17 + 0.7.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-12-25 + 0.6.2 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + decibel-audio-player + http://decibel.silent-blade.org/ + + Yoyo Fernández + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.sound + Decibel Audio Player is a GTK+ open-source (GPL) audio player for GNU/Linux + Decibel Audio Player es un reproductor de audio escrito en GTK+ de código abierto (GPL) para GNU/Linux + Decibel Audio Player is a GTK+ open-source (GPL) audio player for GNU/Linux. It is very straightforward to use thanks to a clean and user-friendly interface. It is especially targeted at Gnome and follows the Gnome HIG. + Decibel Audio Player es un reproductor de audio escrito en GTK+ de código abierto (GPL) para GNU/Linux. Está especialmente dirigido a Gnome aunque puede usarse en KDE. + http://decibel.silent-blade.org/uploads/Main/decibel-audio-player-1.08.tar.gz + + prefix.patch + decibel-audio-player-pil.patch + + multimedia/sound/decibel-audio-player/pspec.xml + + + decibel-audio-player + + dbus-python + gst-python + python-gtk + python-imaging + python-mutagen + + + /usr/bin + /usr/share/man/man1 + /usr/share/decibel-audio-player + /usr/share/applications + /usr/share/pixmaps + /usr/share/locale/ + /usr/share/doc + + + decibel-audio-player + decibel-audio-player-remote + + + + + 2020-03-08 + 1.08 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.08 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 1.08 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 1.08 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-07 + 1.08 + First Release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + drumstick + http://drumstick.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + app:gui + multimedia.sound + Qt5/C++ wrapper for ALSA Sequencer + ALSA ardıştırıcısı için Qt5/C++ kitaplığı + Drumstick library is a C++ wrapper around the ALSA library sequencer interface, using Qt5 objects, idioms and style. + Drumstick, ALSA ardıştırıcı arayüzü için Qt5 nesnelerini, deyimlerini ve tarzını kullanan bir C++ ara kitaplığıdır. + drumstick + mirrors://sourceforge/drumstick/1.1.3/drumstick-1.1.3.tar.bz2 + + cmake + qt5-base-devel + qt5-svg-devel + alsa-lib-devel + fluidsynth-devel + libxslt + doxygen + docbook-xsl + shared-mime-info + pulseaudio-libs-devel + + multimedia/sound/drumstick/pspec.xml + + + drumstick + + drumstick-libs + libgcc + qt5-svg + qt5-base + alsa-lib + + + /usr/bin + /usr/share + /usr/share/mime + /usr/share/applications + /usr/share/icons + /usr/share/doc + /usr/share/man + + + + drumstick-libs + Libraries for Drumstick + Drumstick kitaplıkları + drumstick-libs provides libraries for Drumstick based applications. + drumstick-libs, Drumstick temelli uygulamalar için kitaplık dosyaları sunar. + library + + libgcc + alsa-lib + qt5-base + fluidsynth + pulseaudio-libs + + + /usr/lib/drumstick + /usr/lib/libdrum* + + + + drumstick-devel + Development files for Drumstick + Drumstick kitaplığı için geliştirme dosyaları + drumstick-devel provides development files for Drumstick libraries. + drumstick-devel, Drumstick kitaplığı için geliştirme dosyaları sunar. + data + + qt5-base-devel + alsa-lib-devel + drumstick-libs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-08 + 1.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 1.1.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-17 + 1.0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + espeak + http://espeak.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + app:console + multimedia.sound + Software speech synthesizer (text-to-speech) + Yazılımsal konuşma sentezleyici (text-to-speech) + espeak produces good quality English speech. It uses a different synthesis method from other open source TTS engines and sounds quite different. + espeak iyi kalitede İngilizce konuşma sentezler. Diğer açık kaynaklı TTS motorlarından farklı bir sentezleme yöntemi kullandığından üretilen sesler biraz farklıdır. + http://sourceforge.net/projects/espeak/files/espeak/espeak-1.48/espeak-1.48.04-source.zip/download + + compile-voices.sh + + + coreutils + portaudio-devel + pulseaudio-libs-devel + + + espeak-1.23-makefile_nostaticlibs.patch + espeak-1.48-gcc-6-fix.patch + + multimedia/sound/espeak/pspec.xml + + + espeak + + portaudio + + + /usr/bin + /usr/lib + /usr/share/espeak-data + /usr/share/man + /usr/share/doc + + + espeak.1 + + + + espeak-devel + Development headers for espeak + espeak için geliştirme başlıkları + + espeak + + + /usr/include + + + + + 2020-07-14 + 1.48.04 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.48.04 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-10 + 1.48.04 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-18 + 1.48.04 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.48.04 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-01 + 1.48.04 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + espeak-ng + https://github.com/espeak-ng/espeak-ng + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + multimedia.sound + Multi-lingual software speech synthesizer + Multi-lingual software speech synthesizer + Multi-lingual software speech synthesizer + Multi-lingual software speech synthesizer + https://github.com/espeak-ng/espeak-ng/archive/1.50.tar.gz + + espeak-ng-fix-699.patch + + multimedia/sound/espeak-ng/pspec.xml + + + espeak-ng + + /usr/bin + /usr/lib + /usr/share + /usr/share/vim + /usr/share/doc + + + + espeak-ng-devel + Development files for espeak-ng + + espeak-ng + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-04-01 + 1.50 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + faac + https://github.com/knik0/faac + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + MPEG-4 audio codecs + Özgür MPEG-4 ses codecleri + Free MPEG-4 audio codecs by AudioCoding.com. + https://ftp.osuosl.org/pub/blfs/conglomeration/faac/faac-1_30.tar.gz + + libmp4v2-devel + + multimedia/sound/faac/pspec.xml + + + faac + + libmp4v2 + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + faac-devel + Development files for faac. + faac için geliştirme dosyaları + + faac + + + /usr/include + + + + + 2021-12-20 + 1.30 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 1.29.9.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.29.9.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-12 + 1.28 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.28 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-14 + 1.28 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + faad2 + https://github.com/knik0/faad2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.sound + Freeware Advanced Audio (AAC) Decoder including SBR decoding. + AAC yorumlayıcı + FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. FAAD2 includes code for SBR (HE AAC) decoding. FAAD2 is licensed under the GPL. + FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür. + https://ftp.osuosl.org/pub/blfs/conglomeration/faad2/faad2-2_10_0.tar.gz + multimedia/sound/faad2/pspec.xml + + + faad2 + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + faad2-devel + Development files for faad2. + faad2 için geliştirme dosyaları + + faad2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-12-13 + 2.10 + Ver. bump + Pisi Linux Community + admin@pisilinux.org + + + 2020-03-03 + 2.8.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 2.8.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 2.8.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-12 + 2.7 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 2.7 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + flite + http://www.speech.cs.cmu.edu/flite/index.html + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + multimedia.sound + Flite: a small run-time speech synthesis engine + Küçük ve hızlı bir konuşma sentezleyici + Flite (festival-lite) is a small, fast run-time speech synthesis engine developed at CMU and primarily designed for small embedded machines and/or large servers. Flite is designed as an alternative synthesis engine to Festival for voices built using the FestVox suite of voice building tools. + Flite (festival-lite), CMU tarafından geliştirilmiş küçük ve hızlı bir konuşma sentezleyicisidir. Flite, Festival'e alternatif sentezleyici olarak, öncelikle küçük gömülü sistemler ve/veya büyük sunucular için tasarlanmıştır. + http://festvox.org/flite/packed/flite-2.1/flite-2.1-release.tar.bz2 + + alsa-lib-devel + chrpath + + + flite-ldflags.patch + CVE-2014-0027_unsafe_temporary_file.patch + + multimedia/sound/flite/pspec.xml + + + flite + + alsa-lib + + + /usr/bin + /usr/share/doc + /usr/lib + + + + flite-devel + Development headers for flite + flite için geliştirme başlıkları + + flite + + + /usr/include + + + + + 2020-02-28 + 2.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-28 + 2.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-21 + 2.1 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-01-19 + 2.1 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2018-08-05 + 2.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 2.0.0 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-29 + 2.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-08-18 + 1.9.0 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-05-27 + 1.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2014-01-24 + 1.4 + Rebuild + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2010-10-12 + 1.4 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + fluidsynth + http://www.fluidsynth.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + multimedia.sound + A realtime software synthesizer + Gerçek zamanlı bir yazılım birleştirici + FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. + FluidSynth, SoundFort 2 özelliklerine sahip gerçek zamanlı bir yazılım bireştiricidir. + https://github.com/FluidSynth/fluidsynth/archive/v2.1.1.tar.gz + + dbus-devel + readline-devel + libsdl2-devel + alsa-lib-devel + ladspa-sdk-devel + libsndfile-devel + pulseaudio-libs-devel + jack-audio-connection-kit-devel + cmake + + multimedia/sound/fluidsynth/pspec.xml + + + fluidsynth + + dbus + glib2 + readline + alsa-lib + libsdl2 + ladspa-sdk + libsndfile + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + fluidsynth-devel + Development files for fluidsynth + fluidsynth için geliştirme dosyaları + + fluidsynth + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 2.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 1.1.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 1.1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.1.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-26 1.1.6 First release Kamil Atlı @@ -279646,3271 +218803,616 @@ from a wide variety of machine architectures. - cgmanager - https://github.com/lxc/cgmanager + freealut + http://www.openal.org - Aydın Demirel - aydin.demirel@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPL - app:console - util.admin - Central cgroup management daemon - Merkezi cgroup yönetimi uygulamacığı - CGManager is a central privileged daemon that manages all your cgroups for you through a simple DBus API. - CGManager basit bir DBUS api üzerinden sizin için tüm cgruplarınızı yöneten merkezi ayrıcalıklı bir uygulamacıktır. - https://github.com/lxc/cgmanager/archive/v0.42.tar.gz + LGPLv2.1 + library + multimedia.sound + Boîte à outils utilitaire d'OpenAL. + The OpenAL Utility Toolkit + Açık ses kütüphanesi Openal aletleri + Die OpenAL Werkzeugsammlung + freealut is a free implementation of OpenAL's ALUT standard. + http://github.com/vancegroup/freealut/archive/freealut_1_1_0.tar.gz - popt-devel - libnih-devel - pam-devel - help2man + openal-devel - util/admin/cgmanager/pspec.xml + + shared-openal.patch + + multimedia/sound/freealut/pspec.xml - cgmanager + freealut - libnih - pam - popt - dbus + openal + + + /usr/lib + /usr/share/doc/freealut + + + + freealut-devel + Development files for freealut + freealut için geliştirme dosyaları + + freealut + openal-devel /usr/bin - /usr/libexec/cgmanager/cgm-release-agent - /lib/security - /usr/share/man - /usr/share/cgmanager - /usr/lib/libcgmanager* - - - System.Service - - - - cgmanager-devel - - cgmanager - libnih-devel - - /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/share/doc/freealut/html - 2020-09-01 - 0.42 - fixed "Unknown subsys name 'subsystems'" error - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-02-01 - 0.42 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 0.41 + 2020-03-08 + 1.1.0 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - - 2018-01-15 - 0.41 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 0.39 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 0.39 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-10 - 0.39 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - xrdp - https://xorg.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache - library - util.admin - xrdp an open source RDP server - xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü - xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü - xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü - https://github.com/neutrinolabs/xrdp/releases/download/v0.9.16/xrdp-0.9.16.tar.gz - - nasm - openssl-devel - pam-devel - libjpeg-turbo-devel - fuse-devel - libopus-devel - lame-devel - pixman-devel - libX11-devel - libXfixes-devel - libXrandr-devel - - util/admin/xrdp/pspec.xml - - - xrdp - - pam - fuse - lame - pixman - mit-kerberos - libX11 - libopus - openssl - libXfixes - libXrandr - libjpeg-turbo - - - /usr/bin - /usr/sbin - /etc - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - xrdp-devel - Development files for xrdp - - xrdp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-29 - 0.9.16 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - fwupd-efi - https://github.com/fwupd/fwupd-efi - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - util.admin - Firmware update EFI binaries - Firmware update EFI binaries - Firmware update EFI binaries - Firmware update EFI binaries - https://people.freedesktop.org/~hughsient/releases/fwupd-efi-1.1.tar.xz - - meson - gnu-efi - - util/admin/fwupd-efi/pspec.xml - - - fwupd-efi - - /usr/libexec - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-10-20 - 1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gnupg - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - util.crypt - The GNU Privacy Guard, a PGP replacement - GNU Gizlilik Koruması - GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. - GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. - https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.27.tar.bz2 - - openldap-client - pinentry - npth-devel - libassuan-devel - libksba-devel - zlib-devel - bzip2 - texinfo - sqlite-devel - gnutls-devel - readline-devel - libgcrypt-devel - libgpg-error-devel - libusb-compat-devel - - - gnupg-2.1.20-gpgscm-Use-shorter-socket-path-lengts-to-improve-tes.patch - - util/crypt/gnupg/pspec.xml - - - gnupg - - openldap-client - sqlite - npth - libassuan - pinentry - libksba - zlib - bzip2 - gnutls - readline - libgcrypt - libgpg-error - libusb - libusb-compat - - - /usr/bin - /usr/sbin - /usr/libexec - /usr/share/doc - /usr/share/doc/html - /usr/share/gnupg - /usr/share/info - /usr/share/locale - /usr/share/man - - - dirmngr - - - dirmngr - - - System.Package - - - - gnupg-docs - Documentation files for GnuPG - GnuPG paketine ait API dokümantasyonu - - gnupg - - - /usr/share/doc/gnupg/html - /usr/share/gnupg/help.* - /usr/share/doc/gnupg/faq.html - - - - - 2021-05-28 - 2.2.27 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-09 - 2.2.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 2.2.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.2.19 - Version bump. - İdris Kalp - idriskalp@gmail.com - - 2019-09-15 - 2.2.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-05 - 2.2.4 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2017-01-25 - 2.1.18 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-24 - 2.1.17 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 2.1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-21 - 2.1.7 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - crypto++ - https://www.cryptopp.com - - PisiLinux Community - admins@pisilinux.org - - public-domain - library - util.crypt - Public domain C++ class library of cryptographic schemes - Değişik kripto şemaları içeren kamu malı C++ kitaplığı - Klasa C++ dostarczająca narzędzia do kryptografii - crypto++ is a free C++ class library of cryptographic schemes. One purpose of Crypto++ is to act as a repository of public domain (not copyrighted) source code. Although the library is copyrighted as a compilation, the individual files in it are in the public domain. - crypto++, kriptografik şemalar içeren özgür bir C++ kitaplığıdır. Crypto++ kitaplığının en önemli özelliği kodlarının kamu malı (telif haksız) olmasıdır. Kitaplık, seçki olarak telif haklarına sahip olsa da, dosyalar tek tek kamu malıdır. - crypto++ jest klasą C++ dostarczającą narzędzia do kryptografii. - https://github.com/weidai11/cryptopp/archive/CRYPTOPP_8_2_0.tar.gz - - cryptopp.pc - - - cmake - dos2unix - - - cve-2019-14318.patch - - util/crypt/crypto++/pspec.xml - - - crypto++ - - libgcc - - - /usr/bin - /usr/lib - /usr/share - - - - crypto++-devel - Development files for crypto++ - crypto++ için geliştirme dosyaları - Pliki nagłówkowe do crypto++. - - crypto++ - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-11-20 - 8.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-23 - 7.0.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2018-02-22 - 7.0.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2018-02-22 - 6.0.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2017-01-04 - 5.6.5 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libtasn1 - http://www.gnutls.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - util.crypt - ASN.1 library used in GNUTLS - GNUTLS için kullanılan ASN.1 kütüphanesi - libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS. - libtasn1, ASN.1 yapılarının ayrıştırılmasını sağlayan ve GNUTLS içerisinde kullanılan ASN.1 kütüphanesidir. - http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.16.0.tar.gz - util/crypt/libtasn1/pspec.xml - - - libtasn1 - - /usr/share - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libtasn1-devel - Development files for libtasn1 - libtasn1 için geliştirme dosyaları - - libtasn1 - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libtasn1-32bit - 32-bit shared libraries for libtasn1 - libtasn1 için 32bit kütüphanesi - emul32 - emul32 - - libtasn1 - - - /usr/lib32/ - - - - - 201-03-01 - 4.16.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-07 - 4.15.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 4.13 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-22 - 4.13 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 4.10 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-08 - 4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 4.5 - Release bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2015-07-13 - 4.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libksba - http://www.gnupg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - app:console - util.crypt - rends les certificats X.509 et le CMS facilement accessible aux applications. - Library handling X.509 certificates and CMS data - Çeşitli uygulamaların X.509 sertifikaları ve CMS verilerine kolay erişebilmesini sağlayan bir kitaplık - libksba is a library designed to build software based on the X.509 and CMS protocols. - libksba, X.509 ve CMS protokollerini kullanan yazılımlar üretmek için kullanılan bir kitaplıktır. - https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.5.1.tar.bz2 - - libgpg-error-devel - - util/crypt/libksba/pspec.xml - - - libksba - - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/info - /usr/share/doc - - - - libksba-devel - Development files for libksba - libksba için geliştirme dosyaları - - libksba - - - /usr/include - /usr/share/aclocal - - - - - 2021-05-28 - 1.5.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 1.3.5 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2018-08-03 - 1.3.5 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2017-02-19 - 1.3.5 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-24 - 1.3.5 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 1.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-12 - 1.3.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - pinentry - http://www.gnupg.org/aegypten/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - util.crypt - Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol - Assuan protokolünün kullanımı için basit PIN veya parola-kelimesi girişi arabirimleri - Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project. - Pinetry Aegypten projesi tarafından tanımlanan Assuan protokolünden faydalanan basit PIN veya şifre girme diaologları derlemesidir. - ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-1.1.0.tar.bz2 - - libsecret-devel - libgpg-error-devel - libassuan-devel - gtk2-devel - pango-devel - libcap-devel - ncurses-devel - glib2-devel - fltk-devel - - util/crypt/pinentry/pspec.xml - - - pinentry - - fltk - libgcc - glib2 - libassuan - libsecret - libgpg-error - libcap - ncurses - - - /usr/bin - /usr/share/info - /usr/share/doc - - - pinentry-wrapper - - - - pinentry-gtk - pinentry for GTK toolkit - GTK+ ile yazılmış pinentry arayüzü - - pinentry - ncurses - libcap - libassuan - libsecret - libgpg-error - glib2 - gtk2 - pango - - - /usr/bin/pinentry-gtk* - - - - - 2020-01-19 + 2018-09-01 1.1.0 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2018-08-03 - 1.1.0 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2018-02-22 - 1.1.0 - Version Bump - PisiLinux Community - admins@pisilinux.org - - - 2017-02-17 - 1.0.0 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 0.9.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-21 - 0.9.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libxcrypt - https://github.com/besser82/libxcrypt/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:console - util.crypt - Modern library for one-way hashing of passwords - libxcrypt, şifrelerin tek yönlü hash edilmesi için modern bir kitaplıktır. - libxcrypt is a modern library for one-way hashing of passwords. It supports a wide variety of both modern and historical hashing methods: yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt, md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt, and descrypt. - libxcrypt, şifrelerin tek yönlü hash edilmesi için modern bir kitaplıktır. Çok çeşitli modern ve tarihsel hashing yöntemlerini destekler: yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt, md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt ve descrypt. - https://github.com/besser82/libxcrypt/archive/v4.4.17.tar.gz - - glibc-devel - - util/crypt/libxcrypt/pspec.xml - - - libxcrypt - - /usr/share/doc - /usr/share/man - /usr/lib - - - - libxcrypt-devel - Development files for libxcrypt - - libxcrypt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-01-14 - 4.4.17 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - qca2-qt5 - http://download.kde.org/stable/qca-qt5 - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - util.crypt - Cryptographic Architecture for QT4 - QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. QCA2 has been re-written for QT4. - https://download.kde.org/stable/qca/2.3.2/qca-2.3.2.tar.xz - - cmake - gnupg - doxygen - nss-devel - openssl-devel - libgcrypt-devel - cyrus-sasl-devel - qt5-base-devel - - util/crypt/qca2-qt5/pspec.xml - - - qca2-qt5 - - nss - libgcc - openssl - libgcrypt - cyrus-sasl - qt5-base - - - /usr/bin - /usr/qt/4/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/qca - - - - qca2-qt5-devel - Development files for qca2 - - qca2-qt5 - qt5-base-devel - - - /usr/include/qt5/Qca-qt5/QtCrypto - /usr/lib/cmake/Qca-qt5 - /usr/lib/pkgconfig/qca2-qt5.pc - /usr/lib/qt5/mkspecs/features - - - - - 2021-03-04 - 2.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-07 - 2.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 2.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-03 - 2.2.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-08 - 2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 2.1.3 - Rebuild qt5 - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-25 - 2.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-16 - 2.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 2.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-22 - 2.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 2.1.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 2.1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-15 - 2.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-06 - 2.1.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libmcrypt - http://mcrypt.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - util.crypt - A thread-safe encryption library - Güvenli şifreleme kütüphanesi. - libmcrypt is a thread-safe encryption library. It allows developers to use a wide range of encryption functions, without making drastic changes to their code. It allows users to encrypt files or data streams without having to be cryptographers. - libmcrypt bir güvenli şifreleme kütüphanesidir. Geliştiricilere kodlarında çok büyük bir değişikliğe gerek duymadan kullanabilecekleri, geniş bir şifreleme fonksiyon kaynağı sunar. Şifreleme uzmanı olmadan dosya ve verileri kolayca şifrelemenizi sağlar. - mirrors://sourceforge/mcrypt/libmcrypt-2.5.8.tar.bz2 - - libmcrypt-2.5.8-nolibltdl.patch - libmcrypt-2.5.8-prototypes.patch - libmcrypt-2.5.8-uninitialized.patch - - util/crypt/libmcrypt/pspec.xml - - - libmcrypt - - /usr/lib - /usr/share/doc/libmcrypt - - - - libmcrypt-devel - Development files for libmcrypt - libmcrypt için geliştirme dosyaları - - libmcrypt - - - /usr/bin - /usr/include - /usr/share/aclocal - /usr/share/man - - - - - 2020-02-22 - 2.5.8 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-08-10 - 2.5.8 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - - 2017-09-19 - 2.5.8 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 2.5.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-31 - 2.5.8 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - nss - http://www.mozilla.org/projects/security/pki/nss/ - - Erdinç Gültekin - admins@pisilinux.org - - MPL-2.0 - GPLv2 - LGPLv2.1 - library - util.crypt - Network Security Services - Ağ Güvenlik Servisleri - Network Security Services (NSS) est un ensemble de librairies conçues pour faciliter le développement multi-plateforme d'applications client et serveur sécurisées. Les applications ocnstruite avec NSS peuvent gérer SSL v2 et v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, les certificats X.509 v3 et d'autres standards de sécurité. - Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. - NSS, platform bağımsız güvenli ağ servisi geliştirme kitaplıklarından oluşur. Bu kitaplık yardımı ile SSL v2 ve v3, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 sertifikaları ve diğer bir çok güvenlik standardına uygun güvenli sunucu-istemci yazılımları geliştirilebilir. - Network Security Services (NSS) es un conjunto de librerías para desarrollo cross-plataforma de aplicaciones cliente-servidor con facilidad de seguridad. Aplicaciones usando NSS pueden soportar certificados SSL v2 y v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3, y otros estándares de seguridad. - https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_78_RTM/src/nss-3.78.tar.gz - - nss.pc.in - nss-config.in - generate-pc-config.sh - - - zlib-devel - sqlite-devel - nspr-devel - - - add_spi+cacert_ca_certs.patch - fedora/add-relro-linker-option.patch - dbm.patch - - util/crypt/nss/pspec.xml - - - nss - - zlib - sqlite - nspr - - - /usr/lib - /usr/bin - /etc - - - ld.so.conf - nssdb/cert8.db - nssdb/key3.db - nssdb/secmod.db - - - - nss-devel - Development files for nss - nss için geliştirme dosyaları - - nspr-devel - nss - - - /usr/bin/nss-config - /usr/include - /usr/lib/pkgconfig - /usr/lib/nss/*.a - - - - - 2022-05-24 - 3.78 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-25 - 3.76.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-08 - 3.76 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2022-02-14 - 3.75 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2022-01-10 - 3.74 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-11 - 3.72 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-05 - 3.71 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-05 - 3.69.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 3.69 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-18 - 3.67 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-31 - 3.66 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-19 - 3.63 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2021-02-26 - 3.62 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-12-25 - 3.60 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-12-17 - 3.59 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-10-19 - 3.58 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-08-24 - 3.56 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-24 - 3.53.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-02 - 3.52.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-05 - 3.52 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 3.51 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 3.50 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-01-09 - 3.49 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-12-02 - 3.47.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-22 - 3.47 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-04 - 3.46 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-08 - 3.44.1 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-03-28 - 3.42.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-11 - 3.41 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-03 - 3.40 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-27 - 3.38 - Rebuild for new toolchain. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-08 - 3.38 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-08 - 3.37 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-24 - 3.35 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-26 - 3.33 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-28 - 3.30 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-10 - 3.29 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-15 - 3.23 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 3.22 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-14 - 3.22 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gnutls - http://www.gnutls.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - util.crypt - GNU TLS Library - GNU TLS Kütüphanesi - Biblioteka GNU TLS (Transport Layer Security) - GnuTLS est un projet dont l'objectif est de développer une librairie fournissant une couche de sécurité au dessus d'une couche de transport fiable. Actuellement la librairie GnuTLS implémente les standards proposés par le groupe de travail TLs de l'IETF. - gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group. - GnuTLS, erişilebilir bir gönderim katmanı üzerinde güvenli katman oluşturmayı amaçlayan bir projedir. GnuTLS kütüphanesi halen IETF TLS çalışma grubunun öngördüğü standartları uygulamaya geçirmektedir. - GnuTLS es un proyecto que apunta al desarrollo de una librería, que facilite una capa segura, a través de una capa de transporte fiable. Actualmente la librería GnuTLS implementa los estándares propuestos del grupo de trabajo de TLS de IETF. - GnuTLS to projekt mający na celu stworzenie biblioteki udostępniającej powłokę bezpieczeństwa ponad powłoką transportową (np. TCP/IP). Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez grupę roboczą IETF TLS. - https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.5.tar.xz - - gc-devel - gmp-devel - nettle-devel - autogen-devel - p11-kit-devel - libidn2-devel - libunistring-devel - zlib-devel - zstd-devel - brotli-devel - libtasn1-devel - - util/crypt/gnutls/pspec.xml - - - gnutls - - zlib - zstd - brotli - libidn2 - gmp - nettle - autogen - p11-kit - libgcc - libunistring - libtasn1 - - - /usr/share - /usr/lib - /usr/bin - - - - gnutls-devel - Development files for gnutls - gnutls için geliştirme dosyaları - Pliki nagłówkowe do gnutls. - - nettle-devel - p11-kit-devel - libtasn1-devel - zlib-devel - zstd-devel - brotli-devel - libidn2-devel - gnutls - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/info/gnutls* - /usr/bin/libgnutls*-config - - - libgnutls-config - libgnutls-config - - - - gnutls-32bit - 32-bit shared libraries for gnutls - gnutls için 32-bit paylaşımlı kitaplıklar - 32-bitowe biblioteki GnuTLS. - emul32 - emul32 - - gmp-32bit - zlib-32bit - libidn2-32bit - nettle-32bit - p11-kit-32bit - libtasn1-32bit - - - libgcc - gmp-32bit - zlib-32bit - libidn2-32bit - nettle-32bit - p11-kit-32bit - libtasn1-32bit - - - /usr/lib32 - - - - - 2022-05-15 - 3.7.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 3.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 3.6.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-11 - 3.6.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 3.6.13 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-07 - 3.6.11.1 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2018-09-16 - 3.6.2 - Rebuild - Mustafa Cianasal - muscnsl@gmail.com - - - 2018-03-03 - 3.6.2 - Rebuild - Mustafa Cianasal - muscnsl@gmail.com - - - 2018-02-21 - 3.6.2 - Version Bump - Mustafa Cianasal - muscnsl@gmail.com - 2017-02-18 - 3.5.8 - Version bump. + 1.1.0 + Rebuild for new toolchain. Stefan Gronewold groni@pisilinux.org - 2017-01-25 - 3.3.26 - Version bump. + 2016-12-07 + 1.1.0 + Rebuild for Pisi Linux 2.0 + Stefan Gronewold + groni@pisilinux.org + + + 2014-06-08 + 1.1.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2014-01-24 + 1.1.0 + Rebuild Stefan Gronewold(groni) groni@pisilinux.org - - 2016-06-08 - 3.3.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 3.3.16 - Release bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - 2015-07-13 - 3.3.16 + 2010-10-12 + 1.1.0 First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - gpgme - http://www.gnupg.org/gpgme.html - - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - - GPLv2 - LGPLv2 - library - util.crypt - GnuPG Made Easy is a library for making GnuPG easier to use - GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir - GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs. - GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management. - GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar. - GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves. - https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.16.0.tar.bz2 - - swig - gnupg - doxygen - python-devel - python3-devel - qt5-base-devel - libassuan-devel - libgpg-error-devel - - util/crypt/gpgme/pspec.xml - - - gpgme - - libgcc - libassuan - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/common-lisp - /usr/share/doc - /usr/share/info - - - - gpgme-devel - Development files for gpgme - gpgme için geliştirme dosyaları - - gpgme - libgpg-error-devel - libassuan-devel - glib2-devel - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - gpgme-qt5 - Qt5 bindings for gpgme - - gpgme - libgcc - qt5-base - libgpg-error - - - /usr/lib/libqgpgme.so* - /usr/lib/cmake/Qgpgme - - - - gpgme-python - Python bindings for gpgme - - gpgme - python - - - /usr/lib/python2.7/site-packages - - - - gpgme-python3 - Python3 bindings for gpgme - - python3 - gpgme - - - /usr/lib/python3.9/site-packages/ - - - - gpgme-qt5-devel - Development files for gpgme-qt5 - - qt5-base-devel - gpgme - gpgme-qt5 - gpgme-devel - - - /usr/lib/cmake/QGpgme - /usr/include/qgpgme/* - /usr/include/QGpgME/* - - - - - 2021-10-25 - 1.16.0 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-28 - 1.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 1.13.1 - Rebuild. - Mustafa Cinasal - muscnslp@gmail.com - - - 2020-06-03 - 1.13.1 - Rebuild. - Mustafa Cinasal - muscnslp@gmail.com - - - 2020-01-19 - 1.13.1 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2019-11-08 - 1.13.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 1.13.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-14 - 1.10.0 - Rebuild qt5. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-25 - 1.10.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-13 - 1.10.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-31 - 1.8.0 - split package. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-07-04 - 1.8.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2017-01-02 - 1.7.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 1.5.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-21 - 1.5.5 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - sbsigntools - https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git/about/ + gogglesmm + https://gogglesmm.dev/ - Ertuğrul Erata - ertugrulerata@gmail.com + fury + uglyside@yandex.ru - GPLv2 - app:console - util.crypt - Tools to add signatures to EFI binaries and Drivers - Tools to add signatures to EFI binaries and Drivers - https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git/snapshot/sbsigntools-0.9.3.tar.gz - https://dev.gentoo.org/~tamiko/distfiles/sbsigntool-0.8-ccan.tar.gz + GPL-3 + app:gui + multimedia.sound + Goggles Music Manager. + A fast and lightweight manager of a large music collections and audio player. + https://github.com/gogglesmm/gogglesmm/archive/refs/tags/1.2.2.tar.gz + cmake + zlib-devel + dbus-devel + tiff-devel + flac-devel + webp-devel + expat-devel + faad2-devel + libXi-devel + libXv-devel + libSM-devel + taglib-devel + libICE-devel + libXmu-devel + libXpm-devel + libogg-devel + libX11-devel + libxcb-devel + libXft-devel + gnutls-devel + libpng-devel + libmad-devel + sqlite-devel + libXtst-devel + libXext-devel + libopus-devel openssl-devel - libutil-linux-devel - gnu-efi - help2man + libXres-devel + mesa-glu-devel + alsa-lib-devel + freetype-devel + libepoxy-devel + libvorbis-devel + libXrandr-devel + openjpeg2-devel + libXfixes-devel + libgcrypt-devel + fontconfig-devel + libXdamage-devel + libXcursor-devel + libXxf86vm-devel + libXrender-devel + libXinerama-devel + libmatroska-devel + libxkbcommon-devel + libjpeg-turbo-devel + pulseaudio-libs-devel - - sbsigntools-0.9.1-openssl-1.1.0-compat.patch - - util/crypt/sbsigntools/pspec.xml + multimedia/sound/gogglesmm/pspec.xml - sbsigntools + gogglesmm + dbus + flac + tiff + webp + zlib + expat + faad2 + libSM + libICE + libX11 + libXft + libgcc + libmad + libogg + libpng + sqlite + taglib + libXext + libopus openssl - libutil-linux + alsa-lib + freetype + libepoxy + mesa-glu + libXfixes + libXrandr + libvorbis + fontconfig + libXcursor + libXrender + libjpeg-turbo + pulseaudio-libs /usr/bin + /usr/lib/gogglesmm + /usr/share + /usr/share/locale /usr/share/man /usr/share/doc - - 2020-11-07 - 0.9.3 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-01-15 - 0.9.3 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-10-21 - 0.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 0.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-12-14 - 0.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com + 2021-12-21 + 1.2.2 + First build. + fury + uglyside@yandex.ru - p11-kit - http://p11-glue.freedesktop.org/ + gsm + http://www.quut.com/gsm/ PisiLinux Community admins@pisilinux.org - BSD + OSI-Approved library - util.crypt - Library to work with PKCS#11 modules - Biblioteka i moduł proxy do właściwego wczytywania i współdzielenia modułów PKCS #11 - The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules. - p11-kit zapewnia możliwość ładowania i numeracji modułów PKCS #11 (a Cryptographic Token Interface Standard). - https://github.com/p11-glue/p11-kit/releases/download/0.23.22/p11-kit-0.23.22.tar.xz - - libtasn1-devel - libffi-devel - - util/crypt/p11-kit/pspec.xml + multimedia.sound + Lossy speech compression library and tool + Kayıplı ses sıkıştırması kitaplığı ve araçları + Gsm est une implémentation du brouillon final du standard GSM 06.10 pour un transcodage audio à plein régime. + Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding + GSM, tam oranlı konuşma kod çevrimi için GSM 06.10 standardı son taslak uyarlamasıdır + Gsm es una implementación del estándar GSM 06.10 final draft de codificación de voz full-rate + http://www.quut.com/gsm/gsm-1.0.18.tar.gz + + gsm-1.0.10-dyn.patch + gsm-1.0-pl10-includes.patch + gsm-1.0.12-64bit.patch + gsm-shared.patch + pardusflags_1.0.18.patch + + multimedia/sound/gsm/pspec.xml - p11-kit - - libtasn1 - libffi - + gsm /usr/bin - /usr/libexec/p11-kit - /usr/share/doc - /usr/share/gtk-doc - /usr/share/p11-kit /usr/lib - /etc/pkcs11 + /usr/share/man + /usr/share/doc - p11-kit-devel - p11-kit için geliştirme dosyaları - p11-kit için geliştirme dosyaları. - Pliki nagłówkowe do biplioteki p11-kit. + gsm-devel + Development files for gsm + gsm için geliştirme dosyaları - p11-kit + gsm /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig + /usr/share/man/man3 - p11-kit-32bit - 32-bit shared libraries for p11-kit + gsm-32bit + 32-bit shared libraries for gsm + gsm için 32-bit paylaşımlı kitaplıklar emul32 emul32 - - libtasn1-32bit - libffi-32bit - - p11-kit - libffi-32bit - libtasn1-32bit + gsm /usr/lib32 - - p11-kit-docs - Development documents for p11-kit - - /usr/share/gtk-doc/html - - - - 2021-03-01 - 0.23.22 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-07 - 0.23.18.1 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-01 - 0.23.13 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-01-23 - 0.23.13 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.23.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - 2018-02-28 - 0.23.9 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.23.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 0.23.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 0.23.1 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2015-04-28 - 0.23.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libsodium - https://libsodium.org/ - - Kamil Atlı - suvari@pisilinux.org - - custom:ISC - library - util.crypt - P(ortable|ackageable) NaCl-based crypto library - Modern, taşınabilir, kullanımı kolay bir kripto kitaplığı - Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more. - Modern, taşınabilir, kullanımı kolay bir kripto kitaplığı - https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz - - glibc-devel - - util/crypt/libsodium/pspec.xml - - - libsodium - - /usr/lib - /usr/share/doc - - - - libsodium-devel - Development files for libsodium - libsodium için geliştirme dosyaları - - libsodium - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-01-21 - 1.0.18 - Rebuild - Kamil Atlı - suvari@gmail.com - - - 2019-10-30 - 1.0.18 - First release - Kamil Atlı - suvari@gmail.com - - - - - - plank - https://launchpad.net/plank - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - util.dock - An elementary fork of Plank, the stupidly-simple dock. - Elegant, simple, clean dock - Plank is meant to be the simplest dock on the planet. The goal is to provide just what a dock needs and absolutely nothing more. It is, however, a library which can be extended to create other dock programs with more advanced features. - Elegant, simple, clean dock - https://github.com/elementary/dock/archive/05fd6fccdf1a769f6737a0d7e57e092825348660.zip - - intltool - gettext-devel - bamf-devel - vala-devel - gtk3-devel - cairo-devel - glib2-devel - libXi-devel - pango-devel - libX11-devel - libgee-devel - libwnck3-devel - libXfixes-devel - gdk-pixbuf-devel - gnome-menus-devel - libdbusmenu-devel - libdbusmenu-gtk3 - gobject-introspection-devel - meson - granite-devel - - util/dock/plank/pspec.xml - - - plank - - bamf - gtk3 - cairo - glib2 - libXi - pango - libX11 - libgee - granite - libwnck3 - libXfixes - gdk-pixbuf - gnome-menus - libdbusmenu-glib - libdbusmenu-gtk3 - - - /usr/bin - /etc - /usr/lib/plank - /usr/lib/libplank*.so* - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/metainfo - /usr/share/icons - /usr/share/doc - - - - plank-devel - Development files for plank - - plank - bamf-devel - gtk3-devel - cairo-devel - glib2-devel - libgee-devel - gdk-pixbuf-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-07-17 - 20210715 - Switched to eOS plank fork. - Berk Çakar - berk2238@hotmail.com - - - 2021-03-28 - 0.11.89 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - latte-dock - https://www.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - desktop.kde.addon - Plazma Çerçevelerine dayalı bir platform - Plazma Çerçevelerine dayalı bir platform - Plazma Çerçevelerine dayalı bir platform - Plazma Çerçevelerine dayalı bir platform - https://download.kde.org/stable/latte-dock/latte-dock-0.9.11.tar.xz - - cmake - kconfig-devel - kpackage-devel - kservice-devel - kguiaddons-devel - libksysguard-devel - kactivities-devel - karchive-devel - kcoreaddons-devel - kcrash-devel - kdbusaddons-devel - kdeclarative-devel - kglobalaccel-devel - ki18n-devel - kiconthemes-devel - knewstuff-devel - knotifications-devel - kwayland-devel - kwindowsystem-devel - kxmlgui-devel - plasma-framework-devel - qt5-base-devel - qt5-declarative-devel - qt5-x11extras-devel - qt5-quickcontrols - qt5-graphicaleffects - qt5-quickcontrols2-devel - extra-cmake-modules - libX11-devel - libSM-devel - libxcb-devel - - util/dock/latte-dock/pspec.xml - - - latte-dock - - ki18n - kcrash - libX11 - libgcc - libxcb - kconfig - kxmlgui - karchive - kpackage - kwayland - qt5-base - knewstuff - kservice - kguiaddons - libksysguard - kactivities - kcoreaddons - kdbusaddons - kiconthemes - kdeclarative - kglobalaccel - kwindowsystem - qt5-x11extras - knotifications - qt5-declarative - plasma-framework - - - /usr/bin - /etc/xdg - /usr/lib - /usr/share - /usr/share/dbus-1 - /usr/share/locale - /usr/share/metainfo - /usr/share/doc - - - - - 2020-09-15 - 0.9.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-04 - 0.9.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-20 - 0.9.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2019-10-27 - 0.9.4 + 1.0.18 Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-04 - 0.9.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-18 - 0.9.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-08-03 - 0.9.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2019-03-03 - 0.8.7 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2019-02-16 - 0.8.6 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2019-02-15 - 0.8.5 - Rebuild. - PisiLinux Community - admins@pisilinux.org + Pisi Linux Community + admin@pisilinux.org - 2019-01-27 - 0.8.5 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2019-01-13 - 0.8.4 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-11-25 - 0.8.3 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-11-03 - 0.8.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - bashdb - http://bashdb.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - util.shell - A Debugger for Bash - Bash Kabuğu için bir hata ayıklayıcısı - bashdb is a comprehensive source-code debugger for bash. - bashdb, bash için kapsamlı bir kaynak kodu hata ayıklayıcısıdır. - mirrors://sourceforge/bashdb/bashdb/5.0-1.1.2/bashdb-5.0-1.1.2.tar.gz - util/shell/bashdb/pspec.xml - - - bashdb - - /usr/bin - /usr/share/doc - /usr/share/bashdb - /usr/share/info - /usr/share/man - - - - - 2020-01-25 - 1.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-29 - 0.94 + 2018-08-31 + 1.0.13 Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 0.94 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Pisi Linux Community + admin@pisilinux.org - 2017-02-17 - 0.92 - Release Bump + 2017-02-16 + 1.0.13 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2016-06-08 - 0.91 + 2016-06-09 + 1.0.13 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-22 - 0.91 + 2014-12-14 + 1.0.13 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - bash-completion - https://github.com/scop/bash-completion + gsound + https://gitlab.gnome.org/GNOME/gsound - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - GPLv2 - app:console - util.shell - Programmable completion for bash - Bash kabuğu için otomatik tamamlama - A relatively new feature in bash is programmable completion. Since now, users have been able to complete commands, variables and filenames; now it is also possible to complete parameters. - Kabukta çeşitli uygulamalar için otomatik tamamlama özelliği eklenebilmesine olanak sağlayan bir programdır. - https://github.com/scop/bash-completion/releases/download/2.10/bash-completion-2.10.tar.xz - util/shell/bash-completion/pspec.xml - - - bash-completion - - /etc - /usr/share/doc - /usr/share - /var - - - System.Package - - - pisilinux - - - - - 2020-01-11 - 2.10 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-07-29 - 2.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 2.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 2.4 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-23 - 2.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - dash - http://gondor.apana.org.au/~herbert/dash/ - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - util.shell - Small and fast POSIX-compliant shell - Ufak ve hızlı POSIX uyumlu kabuk - DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. - DASH, POSIX uyumlu bir /bin/sh gerçeklemesi olup, olabildiğince ufak olmayı hedefleyen bir kabuktur. - http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.10.2.tar.gz - util/shell/dash/pspec.xml - - - dash - - /bin/dash - /usr/share/man - /usr/share/doc - - - - - 2020-01-25 - 0.5.10.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-29 - 0.5.10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-14 - 0.5.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 0.5.9 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 0.5.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-21 - 0.5.8 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - zsh - https://www.zsh.org - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - util.shell - Powerful command line shell - Güçlü bir diğer komut satırı kabuğu - Zsh is a command interpreter (shell) which has command-line editing, built-in spelling correction, programmable command completion, shell functions (with autoloading), a history mechanism, and a lots of other features. - Zsh komut satırı düzenleme, yanlışları düzeltme, programlanabilir komut tamamlama, kabuk fonksiyonları, geçmiş mekanizması ve diğer bir çok özellikleriyle birlikte gelen bir (kabuk) komut yorumlayıcısıdır. - mirrors://sourceforge/zsh/zsh-5.7.1.tar.xz - - libcap-devel - libpcre-devel - ncurses-devel - - util/shell/zsh/pspec.xml - - - zsh - - libcap - libpcre - ncurses - - - /etc - /bin - /usr/lib/zsh - /usr/share/zsh - /usr/share/man - /usr/share/doc/ - - - zprofile - zshrc - zsh_command_not_found - accept-line - - - - - 2020-01-25 - 5.7.1 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2019-02-14 - 5.7.1 - First release. - Hasan Basri - hbasria@pisilinux.org - - - - - - kdsoap - https://github.com/KDAB/KDSoap - - PisiLinux Community - admins@pisilinux.org - - custom + LGPLv2.1 library - server.web - Qt-based client-side and server-side SOAP component - Qt tabanlı istemci tarafı ve sunucu tarafı SOAP bileşeni - It can be used to create client applications for web services and also provides the means to create web services without the need for any further component such as a dedicated web server. - Web hizmetleri için istemci uygulamaları oluşturmak için kullanılabilir ve ayrıca özel bir web sunucusu gibi başka bir bileşene ihtiyaç duymadan web hizmetleri oluşturmak için araçlar sağlar. - https://github.com/KDAB/KDSoap/releases/download/kdsoap-1.9.0/kdsoap-1.9.0.tar.gz + multimedia.sound + GSound is a small library for playing system sounds. + GSound is a small library for playing system sounds. It's designed to be used via GObject Introspection, and is a thin wrapper around the libcanberra C library. + https://download.gnome.org/sources/gsound/1.0/gsound-1.0.3.tar.xz - cmake - qt5-base-devel + meson + vala-devel + glib2-devel + intltool + libcanberra-devel + gobject-introspection-devel - server/web/kdsoap/pspec.xml + multimedia/sound/gsound/pspec.xml - kdsoap + gsound - libgcc - qt5-base + glib2 + libcanberra + /usr/lib/girepository-1.0 + /usr/lib/lib*.* + /usr/share/doc /usr/bin - /usr/lib - /usr/share - /usr/share/doc - kdsoap-devel - Development files for kdsoap + gsound-devel + Development files for gsound - kdsoap - - - /usr/include - /usr/lib/cmake - - - - - 2020-05-11 - 1.9.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - nginx - http://www.nginx.net/ - - Kamil Atlı - suvari@pisilinux.org - - as-is - service - server.web - nginx is an HTTP and reverse proxy server - Küçük, sağlam ve yüksek performanslı http ve ters vekil sunucusu - Nginx is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. Written by Igor Sysoev in 2005, Nginx now hosts between 1% and 4% of all domains worldwide. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. - nginx, özgür, açık kaynaklı, yüksek performanslı bir HTTP, ters vekil (reverse proxy) ve aynı zamanda IMAP/POP3 sunucusudur. - http://nginx.org/download/nginx-1.20.1.tar.gz - - perl - gd-devel - zlib-devel - geoip-devel - libxslt-devel - libpcre-devel - openssl-devel - - server/web/nginx/pspec.xml - - - nginx - - gd - perl - zlib - geoip - libxslt - libpcre - openssl - libxml2 - - - /etc/nginx - /etc/logrotate.d - /usr/sbin - /var/www/nginx - /var/log/nginx - /run - /var/lib/nginx/client_body - /var/lib/nginx/fastcgi - /var/lib/nginx/proxy - /usr/lib - /usr/share/man - /usr/share/doc - - - System.Package - System.Service - - - conf/nginx.conf - conf/ssl.conf - conf/00_default_vhost.conf - nginx.logrotate - default-page/index.html - default-page/index-tr.html - default-page/404.html - default-page/nginx.css - default-page/nginx.gif - default-page/pisi-linux.png - - - - - 2021-08-29 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-27 - 1.17.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-25 - 1.17.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libmicrohttpd - http://www.gnu.org/software/libmicrohttpd - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - server.web - A compact API and implementation of HTTP web server - Bir HTTP sunucu uygulama programlama arayüzü (API) ve uygulaması - libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. - libmicrohttpd, bir HTTP sunucusunun diğer yazılımların parçası olarak çalışmasını kolaylaştıran kitaplıktır. - http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.69.tar.gz - - texinfo - gnutls-devel - libgcrypt-devel - libgpg-error-devel - - server/web/libmicrohttpd/pspec.xml - - - libmicrohttpd - - gnutls - libgcrypt - libgpg-error - - - /usr/bin/microspdy2http - /usr/bin/demo - /usr/lib - /usr/share/man - /usr/share/info - /usr/share/doc - - - - libmicrohttpd-devel - Development files for libmicrohttpd - libmicrohttpd için geliştirme dosyaları - - gnutls-devel - - - gnutls-devel - libmicrohttpd + gsound /usr/include /usr/lib/pkgconfig - /usr/share/man/man3 + /usr/share/gir-1.0 + /usr/share/vala - - - 2020-01-27 - 0.9.69 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-10 - 0.9.59 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-05-09 - 0.9.54 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-08 - 0.9.49 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-25 - 0.9.49 - First release - Ali Algul(gulle) - alialgul@pisilinux.org - - - - - - apache - http://httpd.apache.org/ - - Pisi Linux Admins - admins@pisilinux.org - - Apache-2.0 - service - server.web - Apache web sunucusu - Apache Webserver - Apache web server - Apache HTTP Server is a free software/open source web server for Unix-like systems, Microsoft Windows, Novell NetWare and other operating systems. Apache is notable for playing a key role in the initial growth of the World Wide Web, and continues to be the most popular web server in use, serving as the de facto reference platform against which other web servers are designed and judged. - Dünyanın en çok tercih edilen web sunucu olan Apache artık diğer genelağ sunucularının standartlarını belirlemek için takip ettiği hızlı, güçlü, esnek ve yüksek özelleştirilebilirliğe sahip bir genelağ sunucusudur. - http://archive.apache.org/dist/httpd/httpd-2.4.53.tar.bz2 - - apr-devel - nss-devel - lua-devel - zlib-devel - openssl-devel - libxml2-devel - db-devel - expat-devel - libpcre-devel - apr-util-devel - cyrus-sasl-devel - - server/web/apache/pspec.xml - - apache - - nss - apr - lua - apr-util - cyrus-sasl - openldap-client - zlib - openssl - libxml2 - libpcre - db - expat - + gsound-docs - /etc - /usr/sbin - /usr/bin - /usr/include - /var/log/apache2 - /var/www - /run/apache2 - /var/cache - /usr/share/doc - /usr/share/man - /usr/lib - /usr/share/dbus-1/services/apache.service + /usr/share/gtk-doc - - System.Package - System.Service - - - apache.service - apache2.confd - httpd.conf - 00_default_vhost.conf - 00_apache_manual.conf - 40_mod_ssl.conf - 41_mod_ssl.default-vhost.conf - 45_mod_dav.conf - 46_mod_ldap.conf - webroot/apache.css - webroot/apache_pb.gif - webroot/index.html - webroot/index-tr.html - webroot/index-ptbr.html - webroot/index-es.html - webroot/index-de.html - webroot/pisi-linux.png - - - 2022-05-31 - 2.4.53 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-11-01 - 2.4.51 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-27 - 2.4.41 + + 2021-08-19 + 1.0.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-09-09 - 2.4.34 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-17 - 2.4.29 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 2.4.25 - Version Bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-14 - 2.4.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-04-17 - 2.4.20 - First release - Ertuğrul Erata - ertugrulerata@gmail.com + 2021-05-28 + 1.0.2 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com - dhcp - https://www.isc.org/dhcp/ + hydrogen + http://www.hydrogen-music.org/ PisiLinux Community admins@pisilinux.org - isc-dhcp - app:console - library - service - server - DHCP Sunucusu - DHCP-Server - Dynamic host configuration protocol software - DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. - IP adresi atanmasını ve TCP/IP bilgilerinin yapılandırılmasını sağlayan DHCP Sunucusu - http://ftp.isc.org/isc/dhcp/4.4.1/dhcp-4.4.1.tar.gz + GPLv2 + app:gui + multimedia.sound + Advanced drum machine for GNU/Linux + GNU/Linux için gelişmiş bir davul yazılımı + Hydrogen is an advanced drum machine for GNU/Linux. It's main goal is to bring professional yet simple and intuitive pattern-based drum programming. + https://github.com/hydrogen-music/hydrogen/releases/download/1.1.0/hydrogen-1.1.0.tar.gz - groff - openldap-client + cmake + flac-devel + lash-devel + zlib-devel + libtar-devel + qt5-linguist + liblrdf-devel + qt5-base-devel + portmidi-devel + alsa-lib-devel + audiofile-devel + portaudio-devel + ladspa-sdk-devel + libsndfile-devel + qt5-xmlpatterns-devel + jack-audio-connection-kit-devel - server/dhcp/pspec.xml + multimedia/sound/hydrogen/pspec.xml - dhcp + hydrogen - openldap-client + zlib + libtar + libgcc + liblrdf + alsa-lib + qt5-base + libsndfile + qt5-xmlpatterns + jack-audio-connection-kit - /etc /usr/bin - /usr/sbin - /usr/lib - /var/lib - /run - /usr/share/man + /usr/lib/libhydrogen-core-1.1.0.so + /usr/share/hydrogen/data + /usr/share/hydrogen + /usr/share/applications + /usr/share/icons /usr/share/doc + /usr/share/man + /usr/share/appdata - - System.Service - System.Service - System.Service - System.Package - - - dhcpd - dhcpd6 - dhcrelay - dhcpd.conf - - dhclient - Provides the dhclient ISC DHCP client daemon - DHCP İstemcisi - app:console - network.connection - - /etc/dhcp/dhclient.conf - /usr/sbin/dhclient - /var/lib/dhclient - /usr/share/man/man5/dhclient* - /usr/share/man/man8/dhclient* - /usr/share/man/man5/dhcp-options* - /usr/share/man/man5/dhcp-eval* - /usr/share/doc/dhcp/dhclient* - - - dhclient.conf - - - - dhcp-devel - Development files for dhcp - dhcp için geliştirme dosyaları + hydrogen-devel + hydrogen için geliştirme dosyaları - dhcp + hydrogen - /usr/include - /usr/share/man/man3 + /usr/include/hydrogen + + 2021-12-01 + 1.1.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + jack-audio-connection-kit + http://jackaudio.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + service + multimedia.sound + A low-latency audio server + Düşük gecikmeli bir ses sunucu + JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. + GNU/Linux gibi POSIX uyumlu işletim sistemleri için yazılmış, düşük gecikmeli bir ses sunucudur. Bir çok sayıdaki uygulamayı bir ses aygıtına bağlayıp aralarında ses alışverişi yapmaya olanak sağlamaktadır. + https://github.com/jackaudio/jack2/archive/v1.9.19.tar.gz + + python3 + dbus-devel + libsamplerate-devel + alsa-lib-devel + celt-devel + pkgconfig + eigen3 + libopus-devel + doxygen + libsndfile-devel + readline-devel + + multimedia/sound/jack-audio-connection-kit/pspec.xml + + + jack-audio-connection-kit + + db + alsa-lib + libsamplerate + libsndfile + dbus + expat + readline + libgcc + celt + libopus + + + /etc/security + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/jack-audio-connection-kit + /usr/share/dbus-1 + /usr/share/doc + + + 99-jack.conf + 40-hpet-permissions.rules + 99-audio.conf + + + + jack-audio-connection-kit-devel + Development files for jack-audio-connection-kit + jack-audio-connection-kit için geliştirme dosyaları + + jack-audio-connection-kit + + + /usr/include + /usr/lib/pkgconfig + + + + jack-audio-connection-kit-docs + Help files and API documents for jack-audio-connection-kit + jack-audio-connection-kit için yardım dosyaları ve API belgeleri + + jack-audio-connection-kit + + + /usr/share/jack-audio-connection-kit/reference + /usr/share/man + + + + + 2021-08-16 + 1.9.19 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2020-01-27 - 4.4.1 + 2021-06-29 + 1.9.18 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-10 - 4.4.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-12 + 1.9.14 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.9.12 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-10-25 - 4.3.6 - Version bump,fix #2943 - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-05-09 + 1.9.10 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-05-09 - 4.3.0 - Release Bump - Kamil Atlı + 2017-02-17 + 1.9.10 + Rebuild for new toolchain, patch. + Pisi Linux Community admin@pisilinux.org - 2016-06-08 - 4.3.0 + 2016-06-09 + 1.9.10 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-19 - 4.3.0 + 2015-08-24 + 1.9.10 First release Vedat Demir vedat@pisilinux.org @@ -282919,467 +219421,2007 @@ from a wide variety of machine architectures. - openssh - http://www.openssh.com/ + knowthelist + https://github.com/knowthelist/knowthelist/wiki - PisiLinux Community - admins@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - BSD - app:console - service - server - Port of OpenBSD's free SSH release - OpenBSD'den aktarılmış SSH sürümü - OpenSSH est une version libre des outils de connexion SSH sur lesquels les utilisateurs techniquement chevronnés s'appuient. Les utilisateurs de telnet, rlogin et ftp ne se rendent peut être pas compte que les mots de passe sont transmis sur internet en clair. OpenSSH crypte tout le trafic (y compris les mots de passe) pour éliminer les écoutes passives, les détournements de connexion et autres attaques. - OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on. Users of telnet, rlogin, and ftp may not realize that their password is transmitted across the Internet unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, and other attacks. - OpenSSH teknik internet kullanıcıların güvendikleri SSH bağlanırlık araçlarının Özgür (free) sürümüdür.telnet, rlogin ve ftp kullanıcıları parolalarının internetten şifresiz olarak aktarıldığını anlayamayabilirler ancak aktarılmaktadır.OpenSSH eavesdropping (iletişim kanalını dinleme), connection hijacking (bağlantı çalma) ve diğer atakları önlemek için tüm bağlantı trafiğini (parolalar dahil) şifrelemektedir. - https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.6p1.tar.gz + LGPLv3 + app:gui + multimedia.sound + Knowthelist the awesome party music player + Knowthelist the awesome party music player + Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) + Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) + knowthelist + https://github.com/knowthelist/knowthelist/archive/v2.3.1.tar.gz - libedit-devel - zlib-devel - openssl-devel - mit-kerberos-devel - pam-devel + qt5-base-devel + qt5-xmlpatterns-devel + qt5-sql-mysql + qt5-sql-postgresql + qt5-sql-sqlite + qt5-linguist + glib2-devel + alsa-lib-devel + taglib-devel + gstreamer-devel + gst-plugins-bad-devel + gst-plugins-base-devel - server/openssh/pspec.xml + multimedia/sound/knowthelist/pspec.xml - openssh + knowthelist - libedit - zlib - openssl - mit-kerberos - pam + qt5-base + gstreamer + taglib + alsa-lib + glib2 + libgcc - /etc /usr/bin - /usr/sbin - /usr/libexec - /usr/lib - /usr/share/openssh - /var/empty - /usr/share/man + /usr/share + /usr/share/applications + /usr/share/icons /usr/share/doc - - System.Service - - - 2021-06-05 - 8.6_p1 - Version bump. - Berk Çakar - berk2238@hotmail.com - - 2020-01-21 - 8.1_p1 - Version bump. - Pisi Linux Community - admin@pisilinux.org + 2020-03-08 + 2.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-10 - 7.6_p1 + 2019-04-27 + 2.3.0 Version bump. - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2017-02-19 - 7.4_p1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-04-29 + 2.3.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com - 2016-06-08 - 7.2_p2 + 2016-06-09 + 2.3.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-30 - 7.2_p2 + 2015-11-11 + 2.3.0 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Stefan Gronewold(groni) + groni@pisilinux.org - postfix - http://www.postfix.com/ + lame + http://lame.sourceforge.net/ PisiLinux Community admins@pisilinux.org - IPL-1 - service - server - A fast and secure drop-in replacement for sendmail - Hızlı ve güvenli bir e-posta sunucusu - Postfix is Wietse Venema's mailer that started life as an alternative to the widely-used Sendmail program. - Postfix, Wietse Venema tarafından yazılmış, sendmail a alternatif güçlü bir e-posta sunucusudur. - http://www.postfix.org/postfix-release/official/postfix-3.5.12.tar.gz + LGPLv2.1 + app:console + library + multimedia.sound + A free MP3 encoder/decoder + MP3 ses çözümleme kütüphanesi + LAME is an MPEG Audio Layer III (MP3) encoder licensed under the LGPL. + Lame, Kısıtlı Genel Kamu lisansı altında lisanslanmış MPEG III(MP3) kod çözücüsüdür. + mirrors://sourceforge/lame/lame-3.100.tar.gz - db-devel - libnsl-devel - libpcre-devel - openssl-devel - cyrus-sasl-devel - openldap-client - postgresql-lib - mit-kerberos-devel - mariadb-lib + ncurses-devel - server/postfix/pspec.xml + multimedia/sound/lame/pspec.xml - postfix + lame - db - pam - libnsl - zlib - libpcre - openssl - mariadb-lib - cyrus-sasl - bind-libs - openldap-client - postgresql-lib - mit-kerberos - comar-api + ncurses - /etc /usr/bin - /usr/sbin /usr/lib - /var /usr/share/man - /usr/share/doc/postfix/AAAREADME - /usr/share/doc/postfix/COMPATIBILITY - /usr/share/doc/postfix/HISTORY - /usr/share/doc/postfix/LICENSE - /usr/share/doc/postfix/RELEASE_NOTES - /usr/share/doc/postfix/defaults - - System.Package - System.Service - + + + lame-docs + + /usr/share/doc + + + + lame-devel + Development files for lame + lame için geliştirme dosyaları + + lame + + + /usr/include + /usr/share/man/man3 + + + + + 2020-01-17 + 3.100 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 3.100 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 3.99.5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.99.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-14 + 3.99.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + lash + http://savannah.nongnu.org/projects/lash + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:gui + multimedia.sound + LASH Audio Session Handler + LASH Ses Oturum Yöneticisi + LASH is a session management system for JACK and ALSA audio applications on GNU/Linux. It allows you to save and restore audio sessions consisting of multiple interconneced applications, restoring program state (i.e. loaded patches) and the connections between them. + LASH GNU/Linux'taki JACK ve ALSA ses uygulamaları için bir ses oturumu yönetim sistemidir. Bir çok birbirine bağlı uygulamanın ses oturumunu kaydedip, geri yüklemenize, program durumunu (örneğin yüklenmiş yamalar) ve aralarındaki bağlantıları geri yüklemenize olanak tanır. + lash + http://download.savannah.gnu.org/releases/lash/lash-0.6.0~rc2.tar.bz2 + + alsa-lib-devel + gtk2-devel + jack-audio-connection-kit-devel + dmapi-devel + texi2html + dbus-devel + libxml2-devel + python-devel + libutil-linux-devel + + + makefile.patch + docs-Makefile.patch + + multimedia/sound/lash/pspec.xml + + + lash + + gtk2 + dbus + glib2 + dmapi + libgcc + libxml2 + readline + alsa-lib + libutil-linux + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share + - smtpd.conf - saslpass - main.cf - mkcert.sh - aliases - mailcap - bounce.cf.tr + lash-panel.desktop - postfix-docs - Help files for postfix package - Postfix paketine ait yardım dosyaları + lash-devel + Development files for lash + lash için geliştirme dosyaları - postfix + dbus-devel + lash + alsa-lib-devel + libxml2-devel + libutil-linux-devel + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 0.6.0_rc2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 0.6.0_rc2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.6.0_rc2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.6.0_rc2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 0.6.0_rc2 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libao + http://www.xiph.org/ao/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + La librairie de rendu (sortie) audio. + The audio output library + Ses çıktısı kütüphanesi + Libao is a cross platform audio output library. It currently supports ESD, OSS, Solaris, and IRIX. + http://downloads.xiph.org/releases/ao/libao-1.2.0.tar.gz + + alsa-lib-devel + pulseaudio-libs-devel + + multimedia/sound/libao/pspec.xml + + + libao + + alsa-lib + pulseaudio-libs + + + /usr/lib /usr/share/doc + /usr/share/man + + + + libao-devel + Development files for libao + libao için geliştirme dosyaları + + libao + + + /usr/include/ao + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libao/html + + + + + 2020-02-02 + 1.2.0 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-14 + 1.2.0 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-02-17 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-26 + 1.2.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libbs2b + http://bs2b.sourceforge.net/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv3 + library + multimedia.sound + Bauer stereophonic-to-binaural DSP library + The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is designed to improve headphone listening of stereo audio records. + mirrors://sourceforge/bs2b/libbs2b/3.1.0/libbs2b-3.1.0.tar.bz2 + + libsndfile-devel + + multimedia/sound/libbs2b/pspec.xml + + + libbs2b + + libsndfile + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libbs2b-devel + Header files for libbs2b. + + libbs2b + + + /usr/include + + + + + 2020-01-17 + 3.1.0 + First release. + Mathias Freire + mathiasfreire45@gmail.com + + + + + + libcanberra + http://0pointer.de/lennart/projects/libcanberra/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + A library for generating event sounds on free desktops + Masaüstü üzerinde bildirim sesleri üretmek için kütüphane + libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null) and is designed to be portable. + libcanberra, çeşitli arka uç (ALSA, PulseAudio, GStreamer, null) destekleri olan, XDG Ses Teması ve İsimlendirme standartlarına uygun, bildirim sesi çalma kütüphanesidir. + https://sourceforge.net/projects/pisilinux/files/source/libcanberra-0.30.tar.xz + + libogg-devel + pulseaudio-libs-devel + gstreamer-devel + libvorbis-devel + alsa-lib-devel + glib2-devel + gtk2-devel + gtk3-devel + at-spi2-core-devel + eudev-devel + atk-devel + cairo-devel + pango-devel + libogg-devel + libtdb-devel + libvorbis-devel + fontconfig-devel + gstreamer-devel + gtk-doc + + + fix-pthread.patch + fix-underlinking.patch + + multimedia/sound/libcanberra/pspec.xml + + + libcanberra + + libtdb + libtool-ltdl + glib2 + alsa-lib + libvorbis + pulseaudio-libs + gstreamer + + + /usr/lib + /usr/share/doc + /usr/share/gdm + /usr/share/gnome/ + + + + libcanberra-devel + Development files for libcanberra + libcanberra için geliştirme dosyaları + + libcanberra + + + /usr/include/canberra.h + /usr/share/vala + /usr/lib/pkgconfig + + + + libcanberra-gtk + GTK+ convenience API and utilities for libcanberra + GTK+ için libcanberra araçları ve programlama kitaplığı + + libcanberra + gtk2 + libX11 + + + /usr/lib/gtk-2* + /usr/lib/libcanberra-gtk.so* + + + + libcanberra-gtk-devel + Development files for libcanberra-gtk + + libcanberra + libcanberra-gtk + libcanberra-devel + gtk2-devel + + + /usr/lib/pkgconfig/libcanberra-gtk.pc + /usr/share/vala/vapi/libcanberra-gtk.vapi + + + + libcanberra-gtk3 + GTK+ convenience API and utilities for libcanberra + + gtk3 + glib2 + eudev + libX11 + libcanberra + + + /usr/lib/gtk-3* + /usr/lib/libcanberra-gtk3* + /usr/share/doc/libcanberra-gtk3 + /usr/bin/canberra-boot + /usr/bin/canberra-gtk-play + + + + libcanberra-gtk3-devel + Development files for libcanberra-gt3k + + libcanberra + libcanberra-devel + libcanberra-gtk3 + gtk3-devel + + + /usr/include/canberra-gtk.h + /usr/lib/pkgconfig/libcanberra-gtk3.pc - 2021-11-06 - 3.5.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-07-14 + 0.30 + Version bump to git clone + Kamil Atlı + suvari@pisilinux.org - 2021-06-05 - 3.5.8 - Version bump. - Berk Çakar - berk2238@hotmail.com - - - 2020-01-27 - 3.4.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-02 - 3.2.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 3.2.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 3.1.0 + 2020-03-31 + 0.30 Release Bump Pisi Linux Community admin@pisilinux.org + + 2018-08-15 + 0.30 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.30 + Fix + Varol Maksutoğlu + waroi@pisilinux.org + - 2016-02-27 - 3.1.0 + 2016-05-08 + 0.30 First release - Kamil Atlı - suvari@pisilinux.org + Varol Maksutoğlu + waroi@pisilinux.org - openldap - http://www.openldap.org + libcdaudio + http://libcdaudio.sourceforge.net PisiLinux Community admins@pisilinux.org - OPENLDAP - server - Open-source suite of LDAP applications and development tools - LDAP uygulamaları ve geliştirme araçları - OpenLDAP is an open-source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools - LDAP hizmeti için gereken uygulamalar ve geliştirme araçlarını içerir - ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.59.tgz - - nss-devel - db-devel - openssl-devel - tcp-wrappers-devel - cyrus-sasl-devel - libtool-ltdl - icu4c-devel - unixODBC-devel - mariadb-server - libutil-linux-devel - mit-kerberos-devel - chrpath - groff - - - openldap-2.4.39-ntlm-1.patch - fedora/openldap-reentrant-gethostby.patch - fedora/openldap-ldaprc-currentdir.patch - fedora/openldap-nss-update-list-of-ciphers.patch - fedora/openldap-nss-ignore-certdb-type-prefix.patch - fedora/openldap-nss-pk11-freeslot.patch - fedora/openldap-switch-to-lt_dlopenadvise-to-get-RTLD_GLOBAL-set.patch - fedora/openldap-autoconf-pkgconfig-nss.patch - fedora/openldap-ai-addrconfig.patch - - server/openldap/pspec.xml - - - openldap-client - Command-line ldap client commands (ldapsearch, ldapadd etc..) + GPLv2 library app:console - - nss - nspr - openssl - cyrus-sasl - + multimedia.sound + A library for controlling CD-ROM devices + CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık + libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems. + libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır. + mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz + + libcdaudio-0.99.10.config.patch + security-bug-8587.patch + + multimedia/sound/libcdaudio/pspec.xml + + + libcdaudio - /etc/openldap/ldap.conf* - /usr/include /usr/bin /usr/lib - /usr/share/man/man1 - /usr/share/man/man5/ldap.conf.5 + /usr/share/doc - openldap-server - OpenLDAP server slapd and releated tools - OpenLDAP server slapd, additional backends, configuration files, schema definitions required for operation, and database maintenance tools - service + libcdaudio-devel + Development files for libcdaudio + libcdaudio için geliştirme dosyaları - db - perl - unixODBC - libutil-linux - tcp-wrappers - libtool-ltdl - nss - cyrus-sasl - openldap-client + libcdaudio - /etc/conf.d - /etc/openldap - /usr/lib/tmpfiles.d/openldap-server.conf - /usr/sbin - /usr/libexec - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc - /var/lib - /run/openldap + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + + 2020-03-08 + 0.99.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 0.99.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.99.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.99.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-26 + 0.99.12 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libcue + https://github.com/lipnitsk/libcue + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Cue sheet parser library + Cue sayfası ayrıştırma kitaplığı + libcue is intended for parsing a so-called cue sheet from a char string or a file pointer. + libcue, cue sayfalarındaki metinleri ayrıştırmak için kullanılan bir kitaplıktır. + https://github.com/lipnitsk/libcue/archive/v2.2.1.tar.gz + + cmake + + multimedia/sound/libcue/pspec.xml + + + libcue + + /usr/lib + /usr/share/doc - - System.Package - System.Service - - - tmpfiles.conf - slapd.conf - gencert.sh - - openldap-32bit - 32-bit shared libraries for openldap - openldap için 32-bit paylaşımlı kitaplıklar + libcue-devel + Development files for libcue + libcue için geliştirme dosyaları + + libcue + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-07 + 2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 2.1.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-08 + 1.4.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libdca + https://www.videolan.org/developers/libdca.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Library for decoding DTS Coherent Acoustics streams + libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane + libdts est une librairie libre pour décoder les flux DTS Coherent Acoustics. + libdts is a free library for decoding DTS Coherent Acoustics streams. + libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane + libdts es una librería libre para decodificar flujos acústicos coherentes DTS. + http://download.videolan.org/pub/videolan/libdca/0.0.6/libdca-0.0.6.tar.bz2 + + libdca-0.0.5-cflags.patch + + multimedia/sound/libdca/pspec.xml + + + libdca + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + libdca-devel + Development files for libdca + libdca için geliştirme dosyaları + + libdca + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 0.0.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 0.0.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 0.0.5 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.0.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.0.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libechonest + https://projects.kde.org/projects/playground/libs/libechonest + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + C++ wrapper for the Echo Nest API + Echo Nest servisinin programlama arayüzü için C++ bağlayıcıları + libechonest is a collection of C++/Qt classes designed to make a developer's life easy when trying to use the APIs provided by The Echo Nest. + libechonest Echo Nest servisi tarafından sağlanan programlama arayüzüne erişmek için tasarlanmış C++/Qt sınıflarını içermektedir. + http://files.lfranchi.com/libechonest-2.3.1.tar.bz2 + + qt5-base-devel + cmake + doxygen + + multimedia/sound/libechonest/pspec.xml + + + libechonest + + libgcc + qt5-base + + + /usr/lib + /usr/share/doc + + + + libechonest-devel + Development files for libechonest + libechonest için geliştirme dosyaları + + libechonest + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-08 + 2.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 2.3.1 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-04 + 2.3.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libfishsound + https://www.xiph.org/fishsound/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + multimedia.sound + La librairie pour fichiers au format média Oggz. + A simple programming interface that wraps Xiph.Org audio codecs + libfishsound Xiph.org kodekleri(FLAC, Speex ve Vorbis) kullanarak ses verisi enkode ve dekode edebilir. + libfishsound provides a simple programming interface for decoding and encoding audio data using the Xiph.org codecs (FLAC, Speex and Vorbis). + libfishsound Xiph.org kodekleri(FLAC, Speex ve Vorbis) kullanarak ses verisi enkode ve dekode etmek için kitaplık dosyaları sunar. + http://downloads.xiph.org/releases/libfishsound/libfishsound-1.0.0.tar.gz + + libvorbis-devel + speex-devel + flac-devel + + multimedia/sound/libfishsound/pspec.xml + + + libfishsound + A simple programming interface that wraps Xiph.Org audio codecs + + libvorbis + speex + flac + + + /usr/share/doc + /usr/lib + /usr/share + + + + libfishsound-devel + Development files for libfishsound + libfishsound için geliştirme dosyaları + libfishsound-devel, libfishsound için geliştirme dosyaları içerir + + libfishsound + libvorbis-devel + speex-devel + flac-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-01-02 + 1.0.0 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + liblastfm + https://github.com/lastfm/liblastfm + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + multimedia.sound + A library for Last.fm integration + Last.fm entegrasyonu sağlayan bir kitaplık + liblastfm is a collection of libraries to help you integrate Last.fm services into your rich desktop software. It is officially supported software developed by Last.fm staff. + liblastfm, masaüstü uygulamalarına Last.fm servislerini entegre etmeyi sağlayan kitaplıklardan oluşur. Last.fm geliştiricileri tarafından hazırlanmıştır. + https://github.com/lastfm/liblastfm/archive/1.1.0.tar.gz + + cmake + qt5-base-devel + fftw3-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + libsamplerate-devel + + + liblastfm-qt5.11.patch + + multimedia/sound/liblastfm/pspec.xml + + + liblastfm + + libgcc + qt5-base + + + /usr/lib/liblastfm5.so* + /usr/share/doc + + + + liblastfm-devel + A collection of libraries to help you integrate Last.fm services + liblastfm için geliştirme dosyaları + + liblastfm + liblastfm_fingerprint + + + /usr/include + + + + liblastfm_fingerprint + A collection of libraries to help you integrate Last.fm services + Last.fm entegrasyonu kolaylaştıran kitaplık koleksiyonu + + liblastfm + qt5-base + libsamplerate + libgcc + fftw3 + + + /usr/lib/liblastfm_fingerprint* + + + + + 2021-12-13 + 1.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 1.0.9 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2019-04-24 + 1.0.9 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-09-19 + 1.0.9 + Rebuild with new toolchain + Alihan Öztürk + alihan@pisilinux.org + + + 2017-05-02 + 1.0.9 + Rebuild with new toolchain + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-27 + 1.0.9 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libmad + http://mad.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Librairie de "D"écompression "A"udio "M"peg ("M"peg "A"udio "D"ecoder") + "M"peg "A"udio "D"ecoder library + Yüksek kaliteli MPEG ses çözücü kütüphanesi + libmad is an audio decoder library for MPEG based content. + libmad MPEG tabanlı ses çözüm kitaplığıdır. + mirrors://sourceforge/mad/libmad-0.15.1b.tar.gz + + amd64-64bit.diff + libmad-0.15.1b-cflags-O2.patch + libmad-0.15.1b-cflags.patch + + multimedia/sound/libmad/pspec.xml + + + libmad + "M"peg "A"udio "D"ecoder library + + /usr/lib + /usr/share/doc + + + + libmad-devel + Development files for libmad + libmad için geliştirme dosyaları + libmad-devel, libmad için geliştirme dosyaları içerir. + + libmad + + + /usr/include + /usr/lib/pkgconfig + + + mad.pc + + + + + 2020-01-06 + 0.15.1b + Rebuilt. + Blue DeviL + bluedevil@sctzine.com + + + 2018-07-29 + 0.15.1b + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.15.1b + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.15.1b + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.15.1b + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmikmod + http://mikmod.raphnet.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.sound + A library to play a wide range of module formats + Bir çok modül formatını çalabilen bir kitaplık + libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669. + libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few. + libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir. + libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos. + http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.11.1/libmikmod-3.3.11.1.tar.gz + + audiofile-devel + alsa-lib-devel + + multimedia/sound/libmikmod/pspec.xml + + + libmikmod + + pulseaudio-libs + + + /usr/lib + /usr/share/doc/libmikmod + /usr/share/info + /usr/share/man + + + + libmikmod-devel + Development files for libmikmod + libmikmod için geliştirme dosyaları + + libmikmod + + + /usr/bin/libmikmod-config + /usr/include + /usr/share/aclocal + + + + libmikmod-32bit + 32-bit shared libraries for libmikmod + libmikmod için 32-bit paylaşımlı kitaplıklar emul32 emul32 - openssl-32bit - libtool-ltdl-32bit + audiofile-32bit + alsa-lib-32bit + pulseaudio-libs-32bit - openssl-32bit - openldap-client + libmikmod + audiofile-32bit + alsa-lib-32bit + pulseaudio-libs-32bit /usr/lib32 - - 2021-11-06 - 2.4.59 + + 2020-03-07 + 3.3.11.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-29 + 3.3.11.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 3.3.10 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-19 + 3.3.7 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + libmodplug + http://modplug-xmms.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.sound + Librairie pour jouer les fichiers son de type MOD. + Library for playing MOD-like music files + MOD-like müzik dosyalarını çalmak için bir kütüphane + libmodplug is a library based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque. + http://sourceforge.net/projects/modplug-xmms/files/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz + + libgcc + + + libmodplug-0.8.4-timidity-patches.patch + + multimedia/sound/libmodplug/pspec.xml + + + libmodplug + + libgcc + + + /usr/lib + /usr/share/doc + + + + libmodplug-devel + + libmodplug + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 0.8.9.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 0.8.9.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.8.8.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.8.8.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.8.8.5 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmygpo-qt + https://gpodder.github.io/docs/libmygpo-qt.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.sound + Qt Library that wraps the gpodder.net Web API + gpodder.net Web API'sine ara yazılım sunan bir Qt kitaplığı + libmygpo-qt is a Qt Library that wraps the gpodder.net Web API. + libmygpo-qt, gpodder.net Web API'sine ara yazılım sunan bir Qt kitaplığıdır. + https://github.com/gpodder/libmygpo-qt/archive/1.1.0.tar.gz + + cmake + qt5-base-devel + + + libmygpo-qt-1.1.0-qt-5.11b3.patch + + multimedia/sound/libmygpo-qt/pspec.xml + + + libmygpo-qt + + libgcc + qt5-base + + + /usr/lib + /usr/share/doc + + + + libmygpo-qt-devel + Development files for libmygpo-qt + libmygpo-qt için geliştirme dosyaları + + qt5-base-devel + libmygpo-qt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2018-08-07 + 1.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-10 + 1.1.0 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2017-01-04 + 1.0.9 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libogg + https://www.xiph.org/ogg/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.sound + La librairie pour fichiers au format média Ogg. + The Ogg media file format library + Ogg dosya biçimi kütüphanesi + libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams. + libogg Ogg biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Ogg biçimli dosya oluşturmak için hem de Ogg dosyalarından paket ayıklamak için kullanılabilir. + https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.5.tar.xz + multimedia/sound/libogg/pspec.xml + + + libogg + The Ogg media file format library + + /usr/lib + /usr/share/doc + + + + libogg-devel + Development files for the ogg media file format library + libogg için geliştirme dosyaları + libogg-devel, libogg için geliştirme dosyaları içerir. + + libogg + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/aclocal + /usr/share/doc/libogg/*html + /usr/share/doc/libogg/*png + /usr/share/doc/libogg/ogg + + + + libogg-32bit + 32-bit shared libraries for libogg + libogg için 32-bit paylaşımlı kitaplıklar + libogg-32bit, libogg için 32-bit paylaşımlı kitaplıklar içerir. + emul32 + emul32 + + libogg + + + /usr/lib32 + + + - 2020-11-07 - 2.4.48 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2021-12-04 + 1.3.5 + Version bump. + Blue DeviL + bluedevil@sctzine.com - 2020-01-14 - 2.4.48 + 2020-01-06 + 1.3.4 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-07-29 + 1.3.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.3.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.3.2 Version bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.3.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + liboggz + https://www.xiph.org/oggz/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + app::console + library + multimedia.sound + La librairie pour fichiers au format média Oggz. + A simple programming interface for reading and writing Ogg files and streams. + Oggz dosya biçimi kütüphanesi + liboggz is a C library for reading and writing Ogg files and streams. It offers various improvements over the reference libogg, including support for seeking, validation and timestamp interpretation. + liboggz, Oggz biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Oggz biçimli dosya oluşturmak için hem de Oggz dosyalarından paket ayıklamak için kullanılabilir. + http://downloads.xiph.org/releases/liboggz/liboggz-1.1.1.tar.gz + + libogg-devel + + multimedia/sound/liboggz/pspec.xml + + + liboggz + A simple programming interface for reading and writing Ogg files and streams. + + libogg + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + /usr/share + + + + liboggz-devel + Development files for libfishsound + liboggz için geliştirme dosyaları + liboggz-devel, liboggz için geliştirme dosyaları içerir + + liboggz + libogg-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-01-02 + 1.1.1 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + libopenmpt + http://lib.openmpt.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + BSD + library + multimedia.sound + A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. + A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. + https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.11+release.autotools.tar.gz + + flac-devel + zlib-devel + libogg-devel + mpg123-devel + libvorbis-devel + portaudio-devel + libsndfile-devel + pulseaudio-libs-devel + + multimedia/sound/libopenmpt/pspec.xml + + + libopenmpt + + flac + zlib + libgcc + libogg + mpg123 + libvorbis + portaudio + libsndfile + pulseaudio-libs + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libopenmpt-devel + Header files for libopenmpt. + + libopenmpt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 0.4.11 + First release Idris Kalp idriskalp@gmail.com + + + + + libreplaygain + https://www.musepack.net/ + + Pisilinux Community + admins@pisilinux.org + + LGPL + library + multimedia.sound + replaygain library. + musepack replaygain library. + https://files.musepack.net/source/libreplaygain_r475.tar.gz + multimedia/sound/libreplaygain/pspec.xml + + + libreplaygain + + /usr/lib + + + + libreplaygain-devel + Development files for libreplaygain + + libreplaygain + + + /usr/include + + + + + 2020-09-17 + 8 + First build. + Pisilinux Community + admins@pisilinux.org + + + + + + libsamplerate + https://github.com/libsndfile/libsamplerate + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.sound + Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter). + Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio + libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü + Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects. + libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir. + https://github.com/libsndfile/libsamplerate/releases/download/0.2.2/libsamplerate-0.2.2.tar.xz + + libsndfile-devel + + multimedia/sound/libsamplerate/pspec.xml + + + libsamplerate + + libsndfile + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libsamplerate-devel + Development files for libsamplerate + libsamplerate için geliştirme dosyaları + libsamplerate için geliştirme dosyaları + + libsamplerate + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-18 + 0.2.2 + Version bump + PisiLinux Community + admins@pisilinux.org + - 2018-08-03 - 2.4.45 - Release bump for toolchain - Kamil Atlı - suvari@pisilinux.org + 2020-01-12 + 0.1.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-01-27 - 2.4.44 - Release bump for toolchain - Kamil Atlı - suvari@pisilinux.org + 2018-08-03 + 0.1.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2016-06-15 - 2.4.44 + 2017-02-06 + 0.1.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.1.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.1.8 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libsndfile + https://libsndfile.github.io/libsndfile/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + A C library for reading and writing files containing sampled sound + Örneklenmiş ses verileri içeren dosyalar yazmak ve okumak için C dili kütüphanesi. + Libsndfile est une librairie C pour lire et écrire des fichiers contenant des échantillons sonores (tels que les fichiers aux formats MS Windows WAV et Apple/SGI AIFF) à travers une seule interface de librairie standard. + Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. + Libsndfile, standart bir kütüphane arayüzü vasıtası ile (MS Windows WAV ve Apple/SGI AIFF biçimi gibi)örneklenmiş ses içeren dosyalar yazmak ve okumak için bir C dili kütüphanesidir. + Libsndfile es una librería C de lectura y escritura para archivos de sonido (como MS Windows WAV y el formato Apple/SGI AIFF) con una interfaz estándar de libería. + https://github.com/libsndfile/libsndfile/releases/download/1.0.31/libsndfile-1.0.31.tar.bz2 + + flac-devel + libogg-devel + python3-devel + libopus-devel + alsa-lib-devel + libvorbis-devel + + multimedia/sound/libsndfile/pspec.xml + + + libsndfile + + flac + libogg + libopus + alsa-lib + libvorbis + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/octave + + + + libsndfile-devel + Development files for libsndfile + libsndfile için geliştirme dosyaları + + libsndfile + flac-devel + libogg-devel + libopus-devel + libvorbis-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libsndfile-32bit + 32-bit shared libraries for libsndfile + libsndfile için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + flac-32bit + alsa-lib-32bit + libogg-32bit + libopus-32bit + libvorbis-32bit + + + flac-32bit + alsa-lib-32bit + libogg-32bit + libopus-32bit + libvorbis-32bit + libsndfile + + + /usr/lib32 + + + + + 2021-12-04 + 1.0.31 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-12 + 1.0.28 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.0.28 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.0.27 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.25 Release Bump Pisi Linux Community admin@pisilinux.org 2016-05-27 - 2.4.44 + 1.0.25 Release bump - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org - 2016-03-28 - 2.4.44 + 2014-05-25 + 1.0.25 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Alihan Öztürk + alihan@pisilinux.org - phodav - https://wiki.gnome.org/phodav + libsoxr + https://sourceforge.net/p/soxr/wiki/Home/ - Kamil Atlı - suvari@pisilinux.org + Mathias Freire + mathiasfreire45@gmail.com - LGPLv2.1 + GPL library - app:console - server.misc - WebDav server implementation using libsoup (RFC 4918) - phởdav (phodav) is a minimal WebDAV server implementation using GNOME libsoup (RFC 4918.) - https://download.gnome.org/sources/phodav/2.5/phodav-2.5.tar.xz + multimedia.sound + The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio + The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio + https://sourceforge.net/projects/soxr/files/soxr-0.1.3-Source.tar.xz - meson - gtk-doc - asciidoc - libsoup-devel - libxml2-devel + cmake - server/misc/phodav/pspec.xml + multimedia/sound/libsoxr/pspec.xml - phodav - WebDav server implementation using libsoup (RFC 4918) + libsoxr - glib2 - libxml2 - libsoup - asciidoc + libgcc + libgomp /usr/bin - /usr/share/doc/ - /usr/share/gtk-doc/ + /usr/lib + /usr/share/doc /usr/share/man - /lib/udev/rules.d - /usr/share/locale - /usr/lib/libphodav-2.0.so* - phodav-devel - Development files for phodav + libsoxr-devel + Header files for libsoxr. - glib2-devel - libsoup-devel - libxml2-devel - phodav + libsoxr /usr/include @@ -283388,1341 +221430,2947 @@ from a wide variety of machine architectures. - 2021-10-10 - 2.5 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libvncserver - http://libvncserver.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - server.misc - Library for creating VNC (Virtual Network Computing) servers - VNC sunucu oluşturmak için kütüphane - Biblioteka do łatwego implementowania serwera VNC - libvncserver provides a C library to create VNC servers. - VNC sunucu benzeri kendi VNC (Virtual Network Computing) sunucunuzu oluşturmak isterseniz gerekli kütüphane - Wieloplatformowa biblioteka C, pozwalającą na łatwą implementację trybu serwera lub klienta VNC (Virtual Network Computing) we własnym programie. - https://github.com/LibVNC/libvncserver/archive/LibVNCServer-0.9.13.tar.gz - - gnutls-devel - libjpeg-turbo-devel - libgcrypt-devel - libpng-devel - openssl-devel - lzo-devel - cmake - - server/misc/libvncserver/pspec.xml - - - libvncserver - - zlib - libpng - libgcrypt - gnutls - libjpeg-turbo - openssl - lzo - - - /usr/bin/*-config - /usr/lib - - - - libvncserver-devel - Development files for libvncserver - libvncserver için geliştirme dosyaları - Pliki nagłówkowe libvncserver - - libvncserver - zlib-devel - libpng-devel - libgcrypt-devel - gnutls-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-04-25 - 0.9.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 0.9.12 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-15 - 0.9.12 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2018-08-07 - 0.9.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-29 - 0.9.9 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 0.9.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-14 - 0.9.9 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libgda - http://www.gnome-db.org/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv2 - library - server.database - Library for writing gnome database programs - libgda is a library that eases the task of writing Gtk3-based database programs. - https://ftp.gnome.org/pub/GNOME/sources/libgda/5.2/libgda-5.2.9.tar.xz - - cairo-devel - db-devel - gdk-pixbuf-devel - gobject-introspection-devel - goocanvas-devel - graphviz-devel - gtk3-devel - gtksourceview3-devel - intltool - iso-codes-devel - itstool - jdk8-openjdk - json-glib-devel - libsecret-devel - libsoup-devel - libxslt-devel - mariadb-lib - mdbtools-devel - openssl-devel - pango-devel - sqlcipher-devel - sqlite-devel - readline-devel - gtk-doc - vala-devel - postgresql-lib - openldap-client - - server/database/libgda/pspec.xml - - - libgda - Library for writing gnome database programs - - glib2 - libxml2 - libxslt - libsecret - gdk-pixbuf - - - /etc - /usr/lib - /usr/lib/girepository-1.0/Gda-5.0.typelib - /usr/share/help - /usr/share/libgda-5.0 - /usr/share/locale - /usr/share/man - - - - libgda-devel - Development files for libgda - - libgda - gtk3-devel - libxslt-devel - glib2-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - libgda-docs - libgda reference documents - data:doc - - /usr/share/doc - /usr/share/gtk-doc - - - - libgda-bdb - Berkeley DB provider for libgda - - libgda - - - /usr/lib/libgda-5.0/providers/libgda-bdb.so - /usr/share/libgda-5.0/bdb_specs_dsn.xml - - - - libgda-java - Java provider for libgda - - libgda - jdk8-openjdk - - - /usr/lib/libgda-5.0/providers/gdaprovider-5.0.jar - /usr/lib/libgda-5.0/providers/libgda-jdbc.so - /usr/share/libgda-5.0/jdbc* - - - - libgda-ldap - Ldap provider for libgda - - libgda - openldap-client - - - /usr/lib/libgda-5.0/providers/libgda-ldap.so - /usr/share/libgda-5.0/ldap* - - - - libgda-mysql - Mysql provider for libgda - - libgda - mariadb-lib - - - /usr/lib/libgda-5.0/providers/libgda-mysql.so - /usr/share/libgda-5.0/mysql* - - - - libgda-postgres - Postgres provider for libgda - - libgda - postgresql-lib - - - /usr/lib/libgda-5.0/providers/libgda-postgres.so - /usr/share/libgda-5.0/postgres* - - - - libgda-sqlcipher - SQLiteCipher provider for libgda - - libgda - openssl - sqlcipher - - - /usr/lib/libgda-5.0/providers/libgda-sqlcipher.so - /usr/share/libgda-5.0/sqlcipher* - - - - libgda-sqlite - SQLite provider for libgda - - libgda - sqlite - - - /usr/lib/libgda-5.0/providers/libgda-sqlite.so - /usr/share/libgda-5.0/sqlite* - - - - libgda-mdb - Mdb provider for libgda - - libgda - mdbtools - - - /usr/lib/libgda-5.0/providers/libgda-mdb.so - /usr/share/libgda-5.0/mdb_specs_dsn.xml - - - - libgda-tools - Graphical tools for libgda - - libgda - gtk3 - cairo - libsoup - graphviz - readline - goocanvas - libgda-ui - gtksourceview3 - - - /usr/bin - /usr/share/appdata - /usr/share/applications - /usr/share/gnome/gda-browser - /usr/share/icons - /usr/share/pixmaps - - - - libgda-ui - UI extensions for libgda - - libgda - pango - - - /usr/lib/girepository-1.0/Gdaui-5.0.typelib - /usr/lib/libgda-5.0/plugins/gdaui* - /usr/lib/libgda-ui-5.0.so.* - /usr/share/libgda-5.0/dtd/gdaui-layout.dtd - /usr/share/libgda-5.0/icons - /usr/share/libgda-5.0/language-specs - /usr/share/libgda-5.0/pixmaps - /usr/share/libgda-5.0/ui - - - - libgda-ui-devel - Development files for libgda-ui - - libgda - libgda-ui - - - /usr/bin/gdaui-demo-5.0 - /usr/include/libgda-5.0/libgda-ui - /usr/lib/libgda-5.0/plugins/libgda-ui-plugins.so - /usr/lib/libgda-ui-5.0.so - /usr/share/glade/catalogs/gdaui-catalog.xml - /usr/share/glade/pixmaps/widget-gdaui* - /usr/share/libgda-5.0/demo - - - - libgda-web - Web provider for libgda - - libgda - libsoup - - - /usr/lib/libgda-5.0/providers/libgda-web.so - /usr/share/libgda-5.0/php - /usr/share/libgda-5.0/web - - - - - 2021-07-19 - 5.2.9 - Rebuild - Berk Çakar - berk2238@hotmail.com - - - 2021-04-20 - 5.2.9 - First release - Berk Çakar - berk2238@hotmail.com - - - - - - mariadb - https://mariadb.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:console - server.database - MariaDB is a drop-in replacement for MySQL - Hızlı, çok kullanıcılı ve çok görevli SQL veritabanı sunucusu - MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. - MySQL, çoklu iş parçacıklı (multi-threaded), çok kullanıcılı (multi-user), hızlı ve sağlam (robust) bir Veritabanı yönetim sistemidir. Özelllikle basit web uygulamaları için LAMP sistemi içinde sıkça tercih edilmektedir. - https://ftp.osuosl.org/pub/blfs/conglomeration/mariadb/mariadb-10.6.4.tar.gz - - ncurses-devel - zlib-devel - libxml2-devel - readline-devel - libevent-devel - openssl-devel - libpcre-devel - libaio-devel - unixODBC-devel - pam-devel - snappy-devel - cracklib-devel - mit-kerberos-devel - xz-devel - lzo-devel - curl-devel - libpcre2-devel - cmake - - server/database/mariadb/pspec.xml - - - mariadb-lib - MariaDB client tools - MySQL istemcileri tarafından gereken paylaşımlı kitaplıklar - app:console - library - - zlib - curl - bzip2 - libgcc - libpcre - libxml2 - openssl - libaio - unixODBC - xz - lzo - libpcre2 - - - /usr/bin - /usr/bin/mysql_config - /usr/include - /usr/lib/libmariadb.so.3 - /usr/lib/libmariadbclient.a - /usr/lib/libmariadbd* - /usr/lib/libmariadb.so - /usr/lib/libmysqlclient.so - /usr/lib/libmysqlclient.so.19 - /usr/lib/libmysqlclient.so.19.0.0 - /usr/lib/libmysqlclient_r.so - /usr/lib/libmysqlclient_r.so.19 - /usr/lib/libmysqlclient_r.so.19.0.0 - /usr/lib/libmysqld.a - /usr/lib/libmysqlclient_r.a - /usr/lib/libmysqlclient.a - /usr/lib/libmysqld.so - /usr/lib/libmysqld.so.19 - /usr/lib/libmysqlservices.a - /usr/bin/mysqld_safe_helper - /usr/lib/pkgconfig/libmariadb.pc - /usr/lib/pkgconfig/mariadb.pc - /usr/share/pam_user_map.so - /usr/share/user_map.conf - - - mysql-lib - - - - mariadb-client - MariaDB client libraries - MariaDB istemci uygulamaları - app:console - - mariadb-lib - libaio - zlib - libgcc - libpcre - ncurses - openssl - - - /usr/bin/mysql - /usr/bin/mysqladmin - /usr/bin/mysqlcheck - /usr/bin/mysqldump - /usr/bin/mysqlimport - /usr/bin/mysqlshow - /usr/bin/mysqlslap - - - mysql-client - - - - mariadb-server - MariaDB server and releated files - MariaDB sunucusu ve ilgili dosyalar - service - - mariadb-lib - mariadb-client - curl - bzip2 - zlib - libgcc - openssl - libxml2 - unixODBC - pam - snappy - cracklib - mit-kerberos - - - /etc - /usr/bin/aria_chk - /usr/bin/aria_dump_log - /usr/bin/aria_ftdump - /usr/bin/aria_pack - /usr/bin/aria_read_log - /usr/bin/innochecksum - /usr/bin/msql2mysql - /usr/bin/my_print_defaults - /usr/bin/myisam_ftdump - /usr/bin/myisamchk - /usr/bin/myisamlog - /usr/bin/myisampack - /usr/bin/mysql_ldb - /usr/bin/mysql_client_test - /usr/bin/mysql_convert_table_format - /usr/bin/mysql_embedded - /usr/bin/mysql_client_test_embedded - /usr/bin/mysqltest_embedded - /usr/bin/mysql_find_rows - /usr/bin/mysql_fix_extensions - /usr/bin/mysql_install_db - /usr/bin/mysql_plugin - /usr/bin/mysql_secure_installation - /usr/bin/mysql_setpermission - /usr/bin/mysql_tzinfo_to_sql - /usr/bin/mysql_upgrade - /usr/bin/mysql_waitpid - /usr/bin/mysql_zap - /usr/bin/mysqlaccess - /usr/bin/mysqlbinlog - /usr/bin/mysqlbug - /usr/bin/mysqld - /usr/bin/mysqld-post - /usr/bin/mysqld_multi - /usr/bin/mysqld_safe - /usr/bin/mysqldumpslow - /usr/bin/mysqlhotcopy - /usr/bin/mysqltest - /usr/bin/perror - /usr/bin/replace - /usr/bin/resolve_stack_dump - /usr/bin/resolveip - /usr/bin/tokuft_logprint - /usr/bin/tokuftdump - /usr/bin/wsrep_sst_common - /usr/bin/wsrep_sst_mysqldump - /usr/bin/wsrep_sst_rsync - /usr/bin/wsrep_sst_xtrabackup - /usr/bin/wsrep_sst_xtrabackup-v2 - /usr/bin/mytop - /usr/lib/mysql/plugin - /usr/share/mysql - /usr/share/groonga-normalizer-mysql - /var - /usr/share/doc - /usr/share/groonga - /usr/lib/tmpfiles.d/mariadb.conf - /run/mysqld - - - mysql-server - - - System.Service - System.Package - - - my.cnf - tmpfiles.conf - - - - mariadb-man-pages - MariaDB server and client man pages - MariaDB sunucu ve istemci uygulamarına ait kılavuz sayfaları - data - - /usr/share/man - - - mysql-man-pages - - - - - 2021-11-06 - 10.6.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-13 - 10.4.11 - Version Bump. + 2020-01-14 + 0.1.3 + First release. Idris Kalp idriskalp@gmail.com - - 2018-08-03 - 10.2.13 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-09 - 10.1.21 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-08 - 10.1.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 10.1.10 - First release - Alihan Öztürk - alihan@pisilinux.org - - lmdb - http://symas.com/mdb/ + libvisual + http://libvisual.sourceforge.net PisiLinux Community admins@pisilinux.org - OpenLDAP - custom - library - app:console - server.database - Symas Lightning Memory-Mapped Database - An ultra-fast, ultra-compact key-value embedded data store. - https://github.com/LMDB/lmdb/archive/LMDB_0.9.29.tar.gz - - lmdb.pc - - server/database/lmdb/pspec.xml - - - lmdb - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - lmdb-devel - Development files for lmdb - - lmdb - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-06-20 - 0.9.29 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 0.9.24 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-08-10 - 0.9.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-09 - 0.9.19 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 0.9.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-28 - 0.9.16 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - sqlcipher - https://www.zetetic.net/sqlcipher/ - - Alihan Öztürk - alihan@pisilinux.org - - BSD - data - server.database - SQLite extension that provides transparent 256-bit AES encryption of database files - SQLCipher is an SQLite extension that provides transparent 256-bit AES encryption of database files. Pages are encrypted before being written to disk and are decrypted when read back. Due to the small footprint and great performance it’s ideal for protecting embedded application databases and is well suited for mobile development. - https://github.com/sqlcipher/sqlcipher/archive/v4.3.0.tar.gz - - readline-devel - tcl-devel - openssl-devel - sqlite-devel - ncurses-devel - - server/database/sqlcipher/pspec.xml - - - sqlcipher - SQLite extension that provides transparent 256-bit AES encryption of database files. - - openssl - readline - sqlite - tcl - ncurses - - - /usr/bin - /usr/lib/tcl8.6 - /usr/lib/lib* - /usr/share/doc - - - - sqlcipher-devel - Development files for sqlcipher. - - sqlcipher - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-07 - 4.3.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-04-26 - 4.0.1 - Version bump. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2017-02-09 - 3.4.0 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 3.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-22 - 3.3.1 - First release. - Alihan Öztürk - alihan@pisilinux.org - - - - - - postgresql - http://www.postgresql.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - server.database - A powerful, open source relational database system - Güçlü bir açık kaynaklı ilişkisel veritabanı sistemi - PostgreSQL is a powerful, open source relational database system. - PostgreSQL, açık kaynak kodlu, güçlü bir ilişkisel veritabanıdır - https://ftp.postgresql.org/pub/source/v12.1/postgresql-12.1.tar.bz2 - - mit-kerberos - e2fsprogs-devel - pam-devel - readline-devel - zlib-devel - python-devel - openssl-devel - tcl-devel - libxslt-devel - libxml2-devel - openldap-server - - server/database/postgresql/pspec.xml - - - postgresql-lib - Essential shared libraries for any PostgreSQL client program or interface - library - - mit-kerberos - python - zlib - libxml2 - openssl - e2fsprogs - libxslt - openldap-client - - - /usr/lib - /usr/include - /usr/lib/pkgconfig - /usr/share/postgresql - /usr/bin/pg_config - - - - postgresql-doc - Postgresql documents - Postegresql belgeleri - Additional documentation for PostgreSQL. - PostegreSQL için ek belgelendirme - data:doc - - postgresql-lib - - - /usr/share/doc - - - - postgresql-server - service - - postgresql-lib - pam - zlib - libxml2 - openssl - readline - e2fsprogs - mit-kerberos - openldap-server - openldap-client - - - /etc - /usr/bin - /usr/share/locale - /usr/share/postgresql/contrib - /usr/share/man - /var/lib - - - System.Package - System.Service - - - postgresql.conf-8 - - - - postgresql-pl - - postgresql-lib - tcl - perl - - - /usr/bin/pltcl_listmod - /usr/bin/pltcl_loadmod - /usr/bin/pltcl_delmod - /usr/lib/postgresql/plperl.so - /usr/lib/postgresql/plpython.so - /usr/lib/postgresql/pltcl.so - /usr/share/postgresql/unknown.pltcl - - - - - 2020-11-06 - 12.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-15 - 12.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 10.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-09-20 - 9.6.2 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-08 - 9.3.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-03 - 9.3.9 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - firebird - http://www.firebirdsql.org/ - - PisiLinux Community - admins@pisilinux.org - - IPL-1 - IDPL-1 LGPLv2.1 - service library - server.database - A relational database offering many ANSI SQL-99 features - Birçok ANSI SQL-99 özelliği sunan ilişkisel bir veritabanı - Firebird is an open source relational database management system offering many ANSI SQL-99 features. - Birçok ANSI SQL-99 özelliği sunan, küçük, hızlı ve çok kararlı bir veritabanı sunucu. - https://github.com/FirebirdSQL/firebird/archive/R2_5_9.tar.gz - - icu4c-devel - btyacc - libedit-devel - - server/database/firebird/pspec.xml + multimedia.sound + Abstraction library for audio visualisation plugins + Ses canlandırma eklentileri için kütüphane + Libvisual est une librairie d'abstraction venant entre les applications et les plugins (greffons) de visualisation audio. + libvisual is an abstraction library that comes between applications and audio visualisation plugins. + libvisual, uygulamalar ve ses canlandırma eklentileri arasında yer alan bir soyutlama kütüphanesidir. + Libvisual es una librería de abstracción que actúa entre aplicaciones y plugins con funciones audiovisuales. + mirrors://sourceforge/libvisual/libvisual-0.4.0.tar.bz2 + + disable_altivec.patch + libvisual-0.4.0-inlinedefineconflict.patch + + multimedia/sound/libvisual/pspec.xml - firebird-client - Firebird database client library - Firebird veritabanı istemci kütüphanesi - Firebird relational database client library. - Firebird sunucuya bağlantı için kullanılan istemci kütüphanesi - - libgcc - + libvisual - /usr/lib/libfbclient.* - /usr/lib/libgds.* - /usr/lib/libib_util.* - /usr/lib/libfbtrace.so - /opt/firebird/lib/libfbclient.* - /opt/firebird/lib/libgds.* - /opt/firebird/lib/libib_util.* - /opt/firebird/plugins/libfbtrace.so + /usr/lib + /usr/share/doc + /usr/share/locale - firebird-superserver - Firebird super server - Firebird veritabanı sunucusu - Firebird veritabanı için super sunucu. Klasik sunucu mimarisine göre, SMP performansı daha fazladır. + libvisual-32bit + 32-bit shared libraries for libvisual + emul32 + emul32 - firebird-client - icu4c - libedit - libgcc + libvisual - /etc/firebird - /etc/env.d/50firebird - /opt/firebird/*.conf - /opt/firebird/*.msg - /opt/firebird/security2.fdb - /opt/firebird/README - /opt/firebird/WhatsNew - /opt/firebird/UDF - /opt/firebird/bin - /opt/firebird/doc - /opt/firebird/examples - /opt/firebird/help - /opt/firebird/intl - /opt/firebird/lib/libicu* - /opt/firebird/upgrade - /opt/firebird/firebird.log - /opt/firebird - /run/firebird + /usr/lib32 - - System.Service - System.Package - - - hosts.equiv - 50firebird - - firebird-devel - Development files for firebird - Firebird için geliştirme dosyaları + libvisual-devel + Development files for libvisual + libvisual için geliştirme dosyaları - firebird-client + libvisual - /usr/include/firebird + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig - - 2020-01-16 - 2.5.9.27139 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - 2020-01-16 - 2.5.7.27050 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-01-11 + 0.4.0 + Rebuild + Kamil Atlıy + suvari@pisilinux.org 2018-07-31 - 2.5.7.27050 + 0.4.0 Rebuild. Pisi Linux Community admin@pisilinux.org - 2018-01-30 - 2.5.7.27050 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - 2017-02-18 - 2.5.6.27020 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-08 - 2.5.4.26856 + 0.4.0 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-06-09 + 0.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 0.4.0 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + - 2015-07-03 - 2.5.4.26856 + 2014-05-20 + 0.4.0 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Serdar Soytetir + kaptan@pisilinux.org - libtdb - https://tdb.samba.org + libvorbis + https://xiph.org/vorbis/ PisiLinux Community admins@pisilinux.org - LGPLv3+ + BSD library - app:console - server.database - Trivial database library - TDB veritabanına erişim için gerekli kitaplıklar - libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. - libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir. - https://www.samba.org/ftp/tdb/tdb-1.4.5.tar.gz + multimedia.sound + Librairie de formatage de fichier son Ogg Vorbis libre. + The Vorbis general audio compression codec + Vorbis genel ses sıkıştırma kodlaması + libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel. + libvorbis tamamen açık, sahipsiz, genel amaçlı sıkıştırılmış ses biçimidir. + https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.7.tar.xz - libxslt - libtirpc-devel - python3-devel - docbook-xsl - libbsd-devel + libogg-devel - server/database/libtdb/pspec.xml + multimedia/sound/libvorbis/pspec.xml - libtdb + libvorbis + The Vorbis general audio compression codec - python3 - libbsd + libogg - /usr/bin /usr/lib - /usr/share/man + + + + libvorbis-devel + Development files for libvorbis + libvorbis için geliştirme dosyaları + libvorbis-devel, libvorbis için geliştirme dosyaları içerir. + + libvorbis + libogg-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + + libvorbis-docs + Documentation files for libvorbis + libvorbis ile ilgili belgeler + libvorbis-docs, libvorbis ile ilgili belgelendirme dosyaları içerir. + + libvorbis + + /usr/share/doc - libtdb-devel - Development files for libtdb - libtdb için geliştirme dosyaları - - libtdb - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - libtdb-32bit - 32-bit shared libraries for libtdb + libvorbis-32bit + 32-bit shared libraries for libvorbis + libvorbis için 32-bit paylaşımlı kitaplıklar + libvorbis-32bit, libvorbis için 32-bit paylaşımlı kitaplıklar içerir. emul32 - _emul32 + emul32 - libgcc + libogg-32bit - libtdb - libgcc + libvorbis + libogg-32bit /usr/lib32 - - 2021-10-23 - 1.4.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-17 - 1.4.3 - Rebuild 32bit. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.4.3 - Version bump. - İdris Kalp - idriskalp@gmail.com - - 2018-08-03 - 1.3.16 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2021-12-04 + 1.3.7 + Version bump. + Blue DeviL + bluedevil@sctzine.com - 2018-08-03 - 1.3.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-06 + 1.3.6 + Rebuilt for the new toolchain. + Blue DeviL + bluedevil@sctzine.com - 2018-05-08 - 1.3.15 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-29 + 1.3.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2017-02-09 - 1.3.12 - Release bump. - Stefan Gronewold - groni@pisilinux.org + 2017-02-06 + 1.3.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-07-24 - 1.3.8 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-08 - 1.3.7 + 2016-06-09 + 1.3.4 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-27 + 1.3.4 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + - 2015-07-30 - 1.3.7 + 2014-05-20 + 1.3.4 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Serdar Soytetir + kaptan@pisilinux.org - libpwquality - https://fedorahosted.org/libpwquality/ + mocp + http://moc.daper.net/ + + fury + uglyside@yandex.ru + + GPL-2 + app:console + multimedia.sound + Music On Console Player. + MOC (music on console) is a console audio player for Linux/Unix designed to be powerful and easy to use. + https://codeload.github.com/jonsafari/mocp/zip/638e6b8bd14497c65c2af2ca9bf90d55d5d5f817 + + intltool + db-devel + popt-devel + curl-devel + flac-devel + icu4c-devel + faad2-devel + speex-devel + ffmpeg-devel + libmad-devel + taglib-devel + gettext-devel + wavpack-devel + ncurses-devel + alsa-lib-devel + libvorbis-devel + libid3tag-devel + libmpcdec-devel + libsndfile-devel + libmodplug-devel + libsamplerate-devel + pulseaudio-libs-devel + jack-audio-connection-kit-devel + + + pulseaudio.patch + + multimedia/sound/mocp/pspec.xml + + + mocp + + db + curl + file + flac + popt + zlib + faad2 + speex + ffmpeg + libmad + libogg + taglib + ncurses + wavpack + alsa-lib + libid3tag + libmpcdec + libvorbis + libmodplug + libsndfile + libtool-ltdl + libsamplerate + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man/man1 + /usr/share/doc + + + + + 2021-10-13 + 2.6.0 + First build + fury + uglyside@yandex.ru + + + + + + mpg123 + http://www.mpg123.de/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + app:console + multimedia.sound + Console MP3 player + Gerçek zamanlı bir mp3 oynatıcı + mpg123 is a fast and free console MP3 player. It does not require high system resources, it can even run in a 100MHz computer. + mpg123 düşük konfigürasyonlu sistemlerde de rahatlıkla çalışabilen hızlı bir mp3 oynatıcısıdır. + mirrors://sourceforge/mpg123/mpg123-1.29.3.tar.bz2 + + alsa-lib-devel + + multimedia/sound/mpg123/pspec.xml + + + mpg123 + + alsa-lib + libtool-ltdl + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + mpg123-devel + Development files for mpg123 + mpg123 için geliştirme dosyaları + + mpg123 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mpg123-32bit + 32-bit shared libraries for mpg123 + mpg123 için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + alsa-lib-32bit + + + mpg123 + alsa-lib-32bit + + + /usr/lib32 + + + + + 2021-12-13 + 1.29.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 1.29.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-12 + 1.25.13 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 1.25.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 1.23.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.22.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-13 + 1.22.4 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + musepack + https://www.musepack.net/ + + Pisilinux Community + admins@pisilinux.org + + BSD + LGPL + library + multimedia.sound + Portable Musepack decoder library. + Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. + https://files.musepack.net/source/musepack_src_r475.tar.gz + + libcue-devel + libreplaygain-devel + + + arch/configure.patch + arch/Makefile.patch + arch/mpcchap.patch + arch/mpcdec.patch + arch/mpcdecmake.patch + + multimedia/sound/musepack/pspec.xml + + + musepack + + libcue + libmpcdec + libreplaygain + + + /usr/bin + /usr/share + + + + libmpcdec + + /usr/lib + + + + libmpcdec-devel + Development files for libmpcdec + + libmpcdec + + + /usr/include + + + + + 2020-09-17 + 8 + First build. + Pisilinux Community + admins@pisilinux.org + + + + + + ncmpcpp + https://rybczak.net/ncmpcpp/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.sound + NCurses Music Player Client (Plus Plus). + Ncurses tabanlı MPD istemcisi + ncmpcpp – featureful ncurses based MPD client inspired by ncmpc. + Ncmpcpp; etiket düzenleyici, çalma listesi düzenleyici, şarkı sözü desteği vb. özellikleri olan bir MPD istemcisidir. + https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.9.2.tar.bz2 + + ccache + curl-devel + fftw3-devel + icu4c-devel + boost-devel + taglib-devel + ncurses-devel + readline-devel + libmpdclient-devel + + multimedia/sound/ncmpcpp/pspec.xml + + + ncmpcpp + + mpd + curl + boost + fftw3 + icu4c + libgcc + taglib + ncurses + readline + libmpdclient + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2021-11-04 + 0.9.2 + Version bump + fury + uglyside@yandex.ru + + + 2020-12-23 + 0.9.1 + Version bump + fury + uglyside@yandex.ru + + + 2020-12-20 + 0.9 + Version bump + fury + uglyside@yandex.ru + + + 2020-12-13 + 0.8.2 + 0.9 release coming soon. + fury + uglyside@yandex.ru + + + + + + normalize + http://normalize.nongnu.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + multimedia.sound + Bu karışık CD'ler ve mp3 koleksiyonları oluşturma gibi şeyler için yararlıdır + Bu karışık CD'ler ve mp3 koleksiyonları oluşturma gibi şeyler için yararlıdır + Normalize is a tool for adjusting the volume of audio files to a standard level. This is useful for things like creating mixed CD's and mp3 collections, where different recording levels on different albums can cause the volume to vary greatly from song to song + Bu karışık CD'ler ve mp3 koleksiyonları oluşturma gibi şeyler için yararlıdır + http://savannah.nongnu.org/download/normalize/normalize-0.7.7.tar.gz + + intltool + libmad-devel + vorbis-tools + lame-devel + flac-devel + mpg123-devel + audiofile-devel + bash-completion + + + mageia/compressed-wav-files.dpatch + mageia/fix-flac.dpatch + mageia/normalize-0.7.7-audiofile-pkgconfig.patch + mageia/normalize-0.7.7-automake-1.13.patch + mageia/normalize-0.7.7-m4.patch + mageia/normalize-0.7.7-mdv-fix-local-config.patch + + multimedia/sound/normalize/pspec.xml + + + normalize + + libmad + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2020-03-08 + 0.7.7 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2018-12-17 + 0.7.7 + First release k3b. + PisiLinux Community + admins@pisilinux.org + + + + + + opus-tools + https://opus-codec.org/ + + fury + uglyside@yandex.ru + + BSD + app:console + multimedia.sound + A set of tools to encode, inspect, and decode audio in the Opus format. + Opus dosya biçemini kodlamakö dekod etmek, incelemek vb için bir araç takımı. + This is opus-tools, a set of tools to encode, inspect, and decode audio in the Opus format. + opus-tools, Opus dosya biçemini kodlamak. dekod etmek, incelemek vbç için bir araç takımı sunar. + https://archive.mozilla.org/pub/opus/opus-tools-0.2.tar.gz + + libopusenc-devel + opusfile-devel + libopus-devel + openssl-devel + libogg-devel + flac-devel + + multimedia/sound/opus-tools/pspec.xml + + + opus-tools + A set of tools to encode, inspect, and decode audio in the Opus format. + + libopusenc + opusfile + openssl + libopus + libogg + flac + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2020-06-28 + 0.2 + Rebuild. + fury + uglyside@yandex.ru + + + 2019-06-24 + 0.2 + First build. + fury + uglyside@yandex.ru + + + + + + pavucontrol + https://freedesktop.org/software/pulseaudio/pavucontrol/ + + fury + uglyside@yandex.ru + + GPLv2 + app:gui + multimedia.sound + PulseAudio Volume Control + PulseAudio Ses Denetimi + PulseAudio Volume Control (pavucontrol) is a simple GTK based volume control tool ("mixer") for the PulseAudio sound server. In contrast to classic mixer tools this one allows you to control both the volume of hardware devices and of each playback stream separately. + pavucontrol, PulseAudio ses sunucusu için basit bir ses denetimi uygulamasıdır. Diğer karıştırıcı araçlara ek olarak, bu uygulama hem donanımsal aygıtların hem de ses akışlarının ses seviyelerini ayarlamanıza izin verir. + https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-5.0.tar.xz + + intltool + gtkmm3-devel + libsigc++-devel + json-glib-devel + pulseaudio-libs-devel + libcanberra-gtk-devel + libcanberra-gtk3-devel + + multimedia/sound/pavucontrol/pspec.xml + + + pavucontrol + + gtk3 + glib2 + atkmm + gtkmm3 + glibmm + libgcc + libsigc++ + libcanberra + pulseaudio-libs + libcanberra-gtk3 + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-09-15 + 5.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-08-17 + 4.0 + First release + fury + uglyside@yandex.ru + + + + + + pogo + https://launchpad.net/pogo + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.sound + Probably the simplest and fastest audio player for Linux. + Pogo's elementary-inspired design uses the screen-space very efficiently. It is especially well-suited for people who organize their music by albums on the harddrive. The main interface components are a directory tree and a playlist that groups albums in an innovative way.Supported file formats include Ogg Vorbis, MP3, FLAC, Musepack, Wavpack, and MPEG-4 AAC. Pogo is a fork of Decibel Audio Player. + https://github.com/jendrikseipp/pogo/archive/v1.0.tar.gz + multimedia/sound/pogo/pspec.xml + + + pogo + + python + python-gtk + python-mutagen + python-imaging + gst-python + notify-python + gst-plugins-base + gst-plugins-good + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2020-03-08 + 1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 0.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-08-06 + 0.8.7 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-16 + 0.8.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-12-22 + 0.8.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + portaudio + http://www.portaudio.com + + PisiLinux Community + admins@pisilinux.org + + as-is + library + multimedia.sound + Portable audio library + Ses kütüphanesi + Une API audio multi-plateforme libre. + PortAudio is a free, cross platform, open-source, audio I/O library. + Birden çok platformda kullanılabilinen açıkkodlu ses kütüphanesi + http://files.portaudio.com/archives/pa_stable_v190700_20210406.tgz + + alsa-lib-devel + jack-audio-connection-kit-devel + + multimedia/sound/portaudio/pspec.xml + + + portaudio + + libgcc + alsa-lib + jack-audio-connection-kit + + + /usr/lib + /usr/share/doc + + + + portaudio-devel + Development files for portaudio + portaudio için geliştirme dosyaları + + portaudio + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/portaudio/html + + + + + 2021-07-21 + 190700.20210406 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-03-22 + 190600.20161030 + Rebuild with cxx. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-12 + 190600.20161030 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 190600.20161030 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 190600.20161030 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 19.20140130 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-21 + 19.20140130 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + portmidi + http://portmedia.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + app:console + multimedia.sound + Real-time MIDI I/O library + Gerçek zamanlı MIDI G/Ç kitaplığı + PortMedia is a set of simple clean APIs and cross-platform library implementations for music and other media. PortMidi sub-project provides a real-time MIDI input/output library. This package contains the PortMidi libraries. + portmidi, PortMedia projesinin gerçek zamanlı MIDI girdi/çıktı kitaplığıdır. + mirrors://sourceforge/portmedia/portmidi-src-217.zip + + build-pyportmidi + + + python-devel + jdk8-openjdk + alsa-lib-devel + cmake + + + portmidi-cmake.patch + + multimedia/sound/portmidi/pspec.xml + + + portmidi + + alsa-lib + + + /usr/bin + /usr/lib + /usr/share/doc + + + + python-portmidi + Python bindings for portmidi + portmidi için python bağlayıcısı + programming.language.python + + python + portmidi + + + /usr/lib/python* + + + + portmidi-devel + Development files for portmidi + portmidi için geliştirme dosyaları + + portmidi + + + /usr/include + /usr/share/man/man3 + + + + + 2020-03-08 + 217 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 217 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 217 + Rebuild. + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-21 + 217 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + pulseaudio + https://www.freedesktop.org/wiki/Software/PulseAudio/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + GPLv2 + BSD + app:console + library + multimedia.sound + A networked sound server with an advanced plugin system + pulseaudio is a sound server for POSIX and Win32 systems. It allows you to do advanced operations on your sound data as it passes between your application and your hardware. + https://freedesktop.org/software/pulseaudio/releases/pulseaudio-15.0.tar.xz + + meson + bluez + doxygen + intltool + valgrind + orc-devel + sbc-devel + xcb-proto + dbus-devel + gtk3-devel + lirc-devel + fftw3-devel + eudev-devel + avahi-devel + speex-devel + libSM-devel + check-devel + json-c-devel + libcap-devel + libtdb-devel + libICE-devel + libsoxr-devel + libXtst-devel + xcb-util-devel + alsa-lib-devel + speexdsp-devel + bash-completion + bluez-libs-devel + libsndfile-devel + libasyncns-devel + desktop-file-utils + libatomic_ops-devel + jack-audio-connection-kit-devel + + multimedia/sound/pulseaudio/pspec.xml + + + pulseaudio-libs + Libraries for PulseAudio clients + + sbc + orc + dbus + lirc + glib2 + eudev + fftw3 + bluez + speex + libSM + json-c + libX11 + libtdb + libxcb + libICE + openssl + libXtst + libsoxr + speexdsp + alsa-lib + avahi-libs + libasyncns + libsndfile + libtool-ltdl + tcp-wrappers + jack-audio-connection-kit + + + /usr/bin/pa* + /etc/pulse/client.conf + /usr/lib/libpulse.so + /usr/lib/libpulse.so* + /usr/lib/libpulse-simple.so + /usr/lib/libpulse-simple.so* + /usr/lib/pulseaudio/libpulsecommon-* + /usr/lib/libpulse-mainloop-glib.so + /usr/lib/libpulse-mainloop-glib.so* + /usr/lib/pulseaudio/libpulsedsp.* + /usr/lib/pulse/modules + /usr/lib/udev/rules.d + /usr/lib/pulseaudio/libpulsecore*.so + + + + pulseaudio-libs-devel + Development files for pulseaudio-libs + + pulseaudio-libs + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/vala/vapi + /usr/lib/cmake/PulseAudio + + + + pulseaudio-docs + doxygen generated API documentation for PulseAudio + + /usr/share/doc/pulseaudio/html + + + + pulseaudio + + dbus + gconf + glib2 + libcap + libtool-ltdl + pulseaudio-libs + + + /usr/bin/pulseaudio + /usr/bin/qpaeq + /usr/bin/start-pulseaudio-kde + /usr/bin/esdcompat + /usr/bin/start-pulseaudio-x11 + /usr/lib/pm-utils/sleep.d + /usr/libexec + /usr/lib/pulse-5.0/modules + /etc + /usr/lib/tmpfiles.d/pulseaudio.conf + /lib/udev/rules.d + /usr/share/pulseaudio/alsa-mixer + /usr/share + /usr/share/icons + /var/lib/pulse + /run/pulse + + + System.Package + + + pulseaudio.conf + pisilinux/pulseaudio.sysconfig + + + + pulseaudio-libs-32bit + 32-bit shared libraries for pulseaudio-libs + emul32 + emul32 + + libtdb-32bit + xcb-util-32bit + libxcb-32bit + libX11-32bit + libgudev-32bit + speexdsp-32bit + openssl-32bit + orc-32bit + eudev-32bit + json-c-32bit + dbus-32bit + glib2-32bit + speex-32bit + libcap-32bit + libsndfile-32bit + libtool-ltdl-32bit + + + pulseaudio-libs + dbus-32bit + glib2-32bit + libsndfile-32bit + json-c-32bit + + + /usr/lib32 + + + + + 2021-08-03 + 15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-17 + 14.2 + Rebuild for meson. + Kamil Atlı + suvari@pisilinux.org + + + 2021-02-04 + 14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-26 + 13.99 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 13.0 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2019-12-04 + 13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-02 + 12.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-27 + 10.0 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-09-13 + 9.0 + Relase Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-09-10 + 9.0 + Relase Bump-bluez4 disable + Ergün Salman + poyraz76@pisilinux.org + + + 2016-09-10 + 9.0 + Relase Bump-jack + Ergün Salman + poyraz76@pisilinux.org + + + 2016-09-10 + 9.0 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 8.0 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-24 + 8.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pulseaudio-qt + https://kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + multimedia.sound + Libpulse için Qt bağları + Libpulse için Qt bağları + Libpulse için Qt bağları + Libpulse için Qt bağları + https://download.kde.org/stable/pulseaudio-qt/pulseaudio-qt-1.3.tar.xz + + cmake + doxygen + glib2-devel + extra-cmake-modules + pulseaudio-libs-devel + qt5-sql-mysql + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + multimedia/sound/pulseaudio-qt/pspec.xml + + + pulseaudio-qt + + qt5-base + pulseaudio-libs + + + /usr/lib + /usr/share + /usr/share/doc + + + + pulseaudio-qt-devel + Development files for pulseaudio-qt + + pulseaudio-qt + + + /usr/include + /usr/lib/cmake + + + + + 2021-08-17 + 1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-31 + 1.2 + Rebuild. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2020-02-03 + 1.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-12-01 + 1.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + qmmp + http://qmmp.ylsoftware.com + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + multimedia.sound + An audio-player, written with Qt5 library + Qt tabanlı müzik oynatıcı + Qmmp is an audio-player, written with Qt5 library. It's similar to Winamp or Xmms. Also supports Xmms and Winamp skins. qmmp-skins package in Contrib repository is recommended, too. + Qmmp Qt tabanlı bir müzik oynatıcısıdır. Xmms ve Winamp temalarını destekler. Ayrıca Contrib deposunda bulunan ve Pisi Linux'a özel temalar da içeren qmmp-skins paketini de kurmanız önerilir. + qmmp + http://qmmp.ylsoftware.com/files/qmmp-1.4.1.tar.bz2 + + qt5-multimedia-devel + qt5-base-devel + libX11-devel + qt5-x11extras-devel + qt5-linguist + qt5-sql-postgresql + qt5-sql-odbc + qt5-sql-mysql + qt5-sql-sqlite + libsamplerate-devel + wavpack-devel + flac-devel + faad2-devel + libmodplug-devel + libmms-devel + libcdio-devel + libvorbis-devel + libsndfile-devel + pulseaudio-libs-devel + alsa-lib-devel + mesa-devel + libmad-devel + taglib-devel + ffmpeg-devel + libmpcdec-devel + libcddb-devel + libogg-devel + libbs2b-devel + mpg123-devel + libarchive-devel + jack-audio-connection-kit-devel + cmake + + multimedia/sound/qmmp/pspec.xml + + + qmmp + + qt5-base + curl + libX11 + libgcc + qt5-x11extras + qt5-multimedia + libsamplerate + wavpack + flac + faad2 + libmodplug + libmms + libvorbis + libsndfile + pulseaudio-libs + alsa-lib + libmad + taglib + ffmpeg + libcddb + libcdio + libcdio-paranoia + jack-audio-connection-kit + libmpcdec + libogg + mpg123 + libbs2b + libarchive + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + qmmp-devel + qmmp development files + qmmp için geliştirme dosyaları + + qmmp + qt5-base-devel + + + /usr/lib/pkgconfig + /usr/include/ + + + + + 2020-09-19 + 1.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 1.3.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-08 + 1.3.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 1.2.4 + version bumb. + erkan IŞIK + erkanisik@pisilinux.org + + + 2018-09-01 + 1.2.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 1.2.1 + Version bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2017-04-24 + 1.1.8 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-20 + 1.0.10 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-09 + 1.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 1.0.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-11-19 + 1.0.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + sayonara + https://sayonara-player.com/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv3 + app:gui + multimedia.sound + Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. + Although Sayonara is considered as a lightweight player, it holds a lot of features to organize even big music collections. + https://gitlab.com/luciocarreras/sayonara-player/-/archive/1.7.0-stable3/sayonara-player-1.7.0-stable3.tar.bz2 + + cmake + ccache + zlib-devel + glib2-devel + libmtp-devel + taglib-devel + qt5-linguist + qt5-sql-odbc + qt5-sql-mysql + qt5-svg-devel + qt5-base-devel + qt5-sql-sqlite + gstreamer-devel + libnotify-devel + gst-plugins-ugly + qt5-sql-postgresql + gst-plugins-bad-devel + gst-plugins-base-devel + + multimedia/sound/sayonara/pspec.xml + + + sayonara + + zlib + glib2 + libgcc + libmtp + taglib + qt5-svg + qt5-base + libnotify + gstreamer + gst-plugins-bad + gst-plugins-base + gst-plugins-good + gst-plugins-ugly + + + /usr/bin + /usr/lib/sayonara + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2021-10-17 + 1.7.0_3 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-09-17 + 1.6.0_beta6 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-03-08 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-01 + 1.4.1 + Version bump. + fury + uglyside@yandex.ru + + + 2019-05-01 + 20190428 + Version bump. + fury + uglyside@yandex.ru + + + 2019-04-14 + 20180905 + Version bump. + fury + uglyside@yandex.ru + + + 2017-04-24 + 20161030 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-04 + 20161030 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.9.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-16 + 0.9.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-02 + 0.8.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + shine + https://github.com/toots/shine + + Mathias Freire + mathiasfreire45@gmail.com + + GPL2 + library + multimedia.sound + Super fast fixed-point MP3 encoder + shine is a blazing fast mp3 encoding library implemented in fixed-point arithmetic. The library can thus be used to performe super fast mp3 encoding on architectures without a FPU, such as armel, etc + https://github.com/toots/shine/releases/download/3.1.1/shine-3.1.1.tar.gz + multimedia/sound/shine/pspec.xml + + + shine + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + shine-devel + Header files for shine. + + shine + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 3.1.1 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + sound-theme-freedesktop + https://www.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + custom + library + multimedia.sound + Freedesktop sound theme + Freedesktop sound theme + Freedesktop ses teması + Freedesktop ses teması + http://people.freedesktop.org/~mccann/dist/sound-theme-freedesktop-0.8.tar.bz2 + + intltool + + multimedia/sound/sound-theme-freedesktop/pspec.xml + + + sound-theme-freedesktop + + /usr/share + /usr/share/sounds/freedesktop + /usr/share/doc + + + + + 2021-10-16 + 0.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + soundtouch + http://www.surina.net/soundtouch + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.sound + Audio Processing Library + Ses işleme kitaplığı + Librairie de traitement audio open-source (libre) pour changer le Tempo, le Pitch et la vitesse de lecture de flux audio ou de fichiers. + soundtouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or file. + soundtouch ses dosyalarının temposunu, oynatma hızını ve frekansını değiştirmek için kullanılabilen açık kaynaklı bir ses işleme kütüphanesidir. + Librería código libre para procesamiento de sonido para manipular Tempo, Pitch y Tasas de reproducción de flujos o archivos de audio + https://gitlab.com/soundtouch/soundtouch/-/archive/2.1.2/soundtouch-2.1.2.tar.bz2 + multimedia/sound/soundtouch/pspec.xml + + + soundtouch + + /usr/bin + /usr/lib + /usr/share/doc + + + + soundtouch-devel + Development files for soundtouch + soundtouch için geliştirme dosyaları + + soundtouch + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2020-10-09 + 2.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.1.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 2.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 2.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 1.9.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-05 + 1.8.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + sox + http://sox.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + library + multimedia.sound + The swiss army knife of sound processing programs + Bir çok ses formatını birbirine dönüştürebilen, çalabilen ve kaydedebilen bir yazılım + SoX is a command line utility that can convert various audio formats to other formats. It can also apply various effects to these sound files during the conversion. SoX can also play and record audio files. + SoX çeşitli ses dosyası formatlarını birbirine çevirebilen bir konsol aracıdır. Sox ayrıca bu çevirme esnasında ses dosyalarına çeşitli efektler uygulayabilir. Bunların yanı sıra ses kaydı yapabilir ve ses dosyalarını oynatabilir. + mirrors://sourceforge/sox/sox-14.4.2.tar.bz2 + + pulseaudio-libs-devel + opencore-amr-devel + libsndfile-devel + ladspa-sdk-devel + libid3tag-devel + libvorbis-devel + alsa-lib-devel + wavpack-devel + libmad-devel + ffmpeg-devel + libogg-devel + libao-devel + lame-devel + gsm-devel + twolame-devel + libgomp + + + sox-dynamic.patch + + multimedia/sound/sox/pspec.xml + + + sox + + gsm + file + lame + libao + libmad + libogg + libgomp + twolame + wavpack + alsa-lib + libvorbis + libsndfile + libtool-ltdl + opencore-amr + pulseaudio-libs + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + + + + sox-devel + Development files for sox + sox için geliştirme dosyaları + + sox + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-02-03 + 14.4.2 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2018-09-01 + 14.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-27 + 14.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 14.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 14.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-17 + 14.4.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + speech-dispatcher + https://freebsoft.org/speechd + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + GPLv2 + service + app:console + library + multimedia.sound.speech-dispatcher + speech dispatcher: common interface to speech synthesis + Konuşma sentezi ortak arayüzü + Speech Dispatcher is a device independent layer for speech synthesis that provides a common easy to use interface for both client applications (programs that want to speak) and for software synthesizers (programs actually able to convert text to speech). + Speech Dispatcher, seslendirme yapılmak istenen veya konuşma sentezi yapan uygulamalar için ortak ve kolay kullanımlı bir arayüz sunan, cihaz-bağımsız bir katmandır. + https://github.com/brailcom/speechd/releases/download/0.11.0/speech-dispatcher-0.11.0.tar.gz + + glib2-devel + libsndfile-devel + dotconf-devel + espeak-devel + python3-devel + intltool + gettext-devel + texinfo + help2man + pkgconfig + libtool-ltdl + libao-devel + espeak-ng-devel + alsa-lib-devel + pulseaudio-libs-devel + + + 0001-Remove-pyxdg-dependency.patch + + multimedia/sound/speech-dispatcher/speech-dispatcher/pspec.xml + + + speech-dispatcher + + glib2 + libao + espeak + dotconf + alsa-lib + espeak-ng + libsndfile + libtool-ltdl + pulseaudio-libs + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + /usr/libexec/speech-dispatcher-modules + /etc/speech-dispatcher + /var/log/speech-dispatcher + /usr/share/speech-dispatcher + + + + python3-speech-dispatcher + Python3 bindings for speech-dispatcher + + speech-dispatcher + python3 + + + /usr/lib/python3.* + + + python-speech-dispatcher + + + + speech-dispatcher-devel + Development headers for speech-dispatcher + speech-dispatcher için geliştirme başlıkları + + glib2-devel + espeak-ng-devel + speech-dispatcher + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2021-12-13 + 0.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 0.10.2 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-21 + 0.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-24 + 0.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 0.9.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 0.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-25 + 0.9.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-21 + 0.8.6 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-19 + 0.8.6 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-12-30 + 0.8.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.8.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 0.8.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + speex + http://www.speex.org/ + + PisiLinux Community + admins@pisilinux.org + + xiph + app:console + multimedia.sound + Audio compression format designed for speech and its converter application + Konuşma için tasarlanmış bir ses sıkıştırma biçimi kütüphanesi ve araçları + speex is an Open Source/Free Software patent-free audio compression format designed for speech. The Speex Project aims to lower the barrier of entry for voice applications by providing a free alternative to expensive proprietary speech codecs. The package also contains a command-line tool to convert to/from Speex codec. + speex, konuşma için tasarlanmış özgür ve açık kaynaklı bir ses sıkıştırma biçimidir. Paket kütüphanenin yanında speex biçimine/biçiminden dönüştürme yapmak için gerekli araçları içerir. + http://downloads.us.xiph.org/releases/speex/speex-1.2.0.tar.gz + + libogg-devel + speexdsp-devel + + + speex-ac.patch + + multimedia/sound/speex/pspec.xml + + + speex + + libogg + speexdsp + + + /usr/bin + /usr/share/man + /usr/lib + /usr/share/doc + + + + speex-devel + Development files for speex + speex için geliştirme dosyaları + + speex + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + speex-32bit + 32-bit shared libraries for speex + speex için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libogg-32bit + speexdsp-32bit + + + speex + libogg-32bit + + + /usr/lib32 + + + + + 2020-01-14 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.2.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 1.2.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2_rc1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.2_rc1 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.2_rc1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + speexdsp + https://www.speex.org/ + + Alihan Öztürk + alihan@pisilinux.org + + BSD + library + multimedia.sound + DSP library derived from Speex. + DSP library derived from Speex + http://downloads.xiph.org/releases/speex/speexdsp-1.2.0.tar.gz + + glibc-devel + + multimedia/sound/speexdsp/pspec.xml + + + speexdsp + DSP library derived from Speex. + + glibc + + + /usr/lib/libspeexdsp* + /usr/share/doc + + + + speexdsp-devel + Development files for speexdsp + + speexdsp + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + speexdsp-32bit + 32-bit shared libraries for speexdsp + emul32 + emul32 + + speexdsp + + + /usr/lib32/libspeexdsp* + + + + + 2020-01-12 + 1.2.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.2_rc3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 1.2_rc3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + suil + http://drobilla.net/software/suil/ Osman Erkan osman.erkan@pisilinux.org - GPLv2 - library - server.auth - Password quality checking - The libpwquality package contains a library used for password quality checking and generation of random passwords that pass the checks. - https://github.com/libpwquality/libpwquality/releases/download/libpwquality-1.4.0/libpwquality-1.4.0.tar.bz2 + ISC + app:gui + multimedia.sound + Lightweight C library for loading and wrapping LV2 plugin UIs + Suil makes it possible to load a UI of any toolkit in a host using any other toolkit (assuming the toolkits are both supported by Suil). + http://download.drobilla.net/suil-0.10.6.tar.bz2 - cracklib-devel - pam-devel - audit-devel + qt5-base-devel + gtk3-devel + gtk2-devel + lv2-devel + atk-devel + pango-devel + cairo-devel + libX11-devel + freetype-devel + gdk-pixbuf-devel + python-devel + python3-devel + cmake + fontconfig-devel - server/auth/libpwquality/pspec.xml + multimedia/sound/suil/pspec.xml - libpwquality + suil - cracklib - pam + qt5-base + gtk2 + atk + gtk3 + cairo + glib2 + pango + libX11 + libgcc + freetype + gdk-pixbuf + fontconfig - /lib - /etc/security - /usr/lib - /usr/share/man/man1 - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc/libpwquality - /usr/share/locale - /usr/bin + /usr/share/doc + /usr/lib/libsuil* + /usr/lib/suil-0/libsuil* - libpwquality-devel - libpwquality için geliştirme dosyaları - libpwquality için geliştirme dosyaları + suil-devel + Development files for suil + suil için geliştirme dosyaları - libpwquality + suil + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-08 + 0.10.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.10.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-04 + 0.10.0 + First release. + Stefan Gronewold + groni@pisilinux.org + + + + + + timidity + http://timidity.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + multimedia.sound + Software synthesizer and MIDI converter + MIDI WAV dönüştürücüsü + Timidity is a software synthesizer, MIDI player and MIDI to other sound formats converter which can also emulate a midi port. + OSS ve ALSA ses çıkışı üretebilen MIDI'den WAV oluşturabilen ve midi aygıt emulasyonu yapabilen sunucu + mirrors://sourceforge/timidity/TiMidity++-2.14.0.tar.bz2 + + alsa-lib-devel + libao-devel + libXaw-devel + flac-devel + libvorbis-devel + speex-devel + libXext-devel + libogg-devel + jack-audio-connection-kit-devel + gtk2-devel + Xaw3d-devel + glib2-devel + libX11-devel + ncurses-devel + libpng-devel + + + timidity++-2.14.0-revert-for-required-ctl_speana_data-function.patch + + multimedia/sound/timidity/pspec.xml + + + timidity + + alsa-lib + libao + libXaw + flac + libvorbis + speex + libXext + libogg + jack-audio-connection-kit + gtk2 + timidity-shompatches + Xaw3d + glib2 + libX11 + libpng + ncurses + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/timidity + + + System.Service + + + timidity.conf.d + timidity.cfg + timidity-update + + + + + 2020-03-07 + 2.14.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 2.14.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 2.14.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.14.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-21 + 2.14.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + timidity-shompatches + http://www.i.h.kyoto-u.ac.jp + + PisiLinux Community + admins@pisilinux.org + + as-is + data + multimedia.sound.timidity-shompatches + Sound patches for Timidity (Shom) + Timidity ses bilgisi dosyaları + Containts Matsumoto Shoji's patch collection for TiMidity (Roland SC-55 style) + Matsumoto Shoji'nin TiMidity (Roland SC-55 stili) ses bilgisi dosyaları + https://sourceforge.net/projects/pisilinux/files/source/shominst-0409.zip + multimedia/sound/timidity-shompatches/timidity-shompatches/pspec.xml + + + timidity-shompatches + + /usr/share/timidity + + + + + 2020-03-07 + 0.409 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-01 + 0.409 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.409 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.409 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-04 + 0.409 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + twolame + https://www.twolame.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.sound + An optimised MPEG Audio Layer 2 + Optimize edilmiş bir MPEG Ses katman 2 çözücüsü + TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME. + TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür. + mirrors://sourceforge/twolame/twolame-0.4.0.tar.gz + + libsndfile-devel + + multimedia/sound/twolame/pspec.xml + + + twolame + + libsndfile + + + /usr/bin + /usr/lib + /usr/share/doc/twolame + /usr/share/man + + + + twolame-devel + Development files for twolame + twolame için geliştirme dosyaları + + twolame + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/twolame/html + + + + + 2021-12-04 + 0.4.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 0.3.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 0.3.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.3.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.3.13 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + vorbis-tools + https://xiph.org/vorbis/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + multimedia.sound + Tools for using the Ogg Vorbis sound file format + Ogg Vorbis ses dosyaları için araçlar paketi. + This set of tools allow you to play and encode Ogg Vorbis files. + vorbis-tools Ogg Vorbis dosyaları oluşturabilmenize ve oynatabilmenize olanak tanır. + https://ftp.osuosl.org/pub/xiph/releases/vorbis/vorbis-tools-1.4.2.tar.gz + + curl-devel + flac-devel + libao-devel + speex-devel + libogg-devel + libkate-devel + opusfile-devel + libvorbis-devel + + multimedia/sound/vorbis-tools/pspec.xml + + + vorbis-tools + + libvorbis + libao + flac + speex + libogg + libkate + + + /usr/bin + /usr/share/doc + /usr/share/locale + /usr/share/man + + + + + 2021-12-04 + 1.4.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-03-08 + 1.4.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-01 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-28 + 1.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + wavpack + https://www.wavpack.com/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + multimedia.sound + WavPack audio compression tools + WavPack ses sıkıştırma araçları. + WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. + WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir. + WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido. + https://www.wavpack.com/wavpack-5.4.0.tar.xz + multimedia/sound/wavpack/pspec.xml + + + wavpack + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + wavpack-devel + + wavpack /usr/include @@ -284730,37 +224378,44 @@ from a wide variety of machine architectures. + + 2021-12-04 + 5.4.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + - 2021-06-06 - 1.4.0 - Release Bump. + 2020-01-18 + 5.1.0 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2021-04-26 - 1.4.0 - Release Bump. + 2018-08-03 + 5.1.0 + Version Bump. Pisi Linux Community admin@pisilinux.org - 2017-01-26 - 1.3.0 - Version bump. - Stefan Gronewold - groni@pisilinux.org + 2017-02-17 + 5.1.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2016-06-08 - 1.2.4 + 2016-06-09 + 4.75.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-23 - 1.2.4 + 2015-08-20 + 4.75.0 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -284769,253 +224424,6246 @@ from a wide variety of machine architectures. - cyrus-sasl - https://www.cyrusimap.org/sasl/ + yarock + https://seb-apps.github.io/yarock/ + + Stefan Gronewold + groni@pisilinux.org + + GPLv3 + multimedia.sound + Qt Modern Music Player with collection browse based on cover art. + Yarock is a music player in c++/Qt designed to provide a clean, simple and beautiful music collection based on album coverart. + https://launchpadlibrarian.net/416223454/Yarock_1.4.0_Sources.tar.gz + + cmake + qt5-sql-odbc + qt5-linguist + qt5-sql-mysql + qt5-sql-sqlite + qt5-base-devel + qt5-sql-postgresql + qt5-x11extras-devel + mpv-player-devel + qt5-phonon-devel + htmlcxx-devel + taglib-devel + + multimedia/sound/yarock/pspec.xml + + + yarock + + qt5-linguist + qt5-base + qt5-x11extras + mpv-player + qt5-phonon + htmlcxx + taglib + + + /usr/bin + /usr/lib/yarock + /usr/share/appdata + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/yarock/translations + /usr/share/doc/yarock + + + + + 2020-09-17 + 1.4.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 1.4.0 + Version bump + fury + uglyside@yandex.ru + + + 2018-09-01 + 1.1.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-23 + 1.1.6 + Rebuild with new toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-24 + 1.1.6 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + ymuse + https://yktoo.com/en/software/ymuse/ + + fury + uglyside@yandex.ru + + Apache-2 + app:gui + multimedia.sound + Easy, functional, and snappy client for Music Player Daemon. + Ymuse is an easy, functional, and snappy GTK front-end (client) for Music Player Daemon written in Go. + https://github.com/yktoo/ymuse/archive/v0.17.tar.gz + + golang + gtk3-devel + glib2-devel + gobject-introspection-devel + + multimedia/sound/ymuse/pspec.xml + + + ymuse + + atk + gtk3 + cairo + glib2 + pango + freetype + gdk-pixbuf + fontconfig + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2021-10-13 + 0.17 + First build + fury + uglyside@yandex.ru + + + + + + darkice + http://www.darkice.org/ PisiLinux Community admins@pisilinux.org - as-is - library - service - server.auth - The Cyrus SASL (Simple Authentication and Security Layer) - Cyrus basit kimlik tanımlama ve güvenlik katmanı - cyrus-sasl is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols. To use SASL, a protocol includes a command for identifying and authenticating a user to a server and for optionally negotiating protection of subsequent protocol interactions. - Cyrus-sasl, bağlantı tabanlı protokoller için kullanılan bir kimlik doğrulama uygulamasıdır. Çoğunlukla Smtp doğrulaması için kullanılır. - https://github.com/cyrusimap/cyrus-sasl/releases/download/cyrus-sasl-2.1.27/cyrus-sasl-2.1.27.tar.gz + GPLv3 + app:console + multimedia.stream + Live audio streamer + Canlı müzik, ses yayınlama aracı + DarkIce as a live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a streaming server. + Darkice bir canlı müzik, ses yayınlama uygulamasıdır. Bir ses arayüzünden (örneğin bir ses kartı) sesleri kaydeder, kodlar ve yayınlayacak sunucuya gönderir. + https://github.com/rafael2k/darkice/releases/download/v1.4/darkice-1.4.tar.gz - mit-kerberos-devel - pam-devel - gdbm-devel - e2fsprogs-devel - openssl-devel - groff - openldap-server + lame-devel + faac-devel + libogg-devel + libopus-devel + twolame-devel + alsa-lib-devel + libvorbis-devel + libsamplerate-devel + pulseaudio-libs-devel - - gentoo/cyrus-sasl-2.1.25-auxprop.patch - gentoo/cyrus-sasl-2.1.26-missing-size_t.patch - gentoo/cyrus-sasl-2.1.27-CVE-2019-19906.patch - gentoo/cyrus-sasl-2.1.27-as_needed.patch - gentoo/cyrus-sasl-2.1.27-autoconf-2.71.patch - gentoo/cyrus-sasl-2.1.27-autotools_fixes.patch - gentoo/cyrus-sasl-2.1.27-avoid_pic_overwrite.patch - gentoo/cyrus-sasl-2.1.27-db_gdbm-fix-gdbm_errno-overlay-from-gdbm_close.patch - gentoo/cyrus-sasl-2.1.27-doc_build_fix.patch - gentoo/cyrus-sasl-2.1.27-gss_c_nt_hostbased_service.patch - gentoo/cyrus-sasl-2.1.27-memmem.patch - gentoo/cyrus-sasl-2.1.27-slibtool.patch - - server/auth/cyrus-sasl/pspec.xml + multimedia/stream/darkice/pspec.xml - cyrus-sasl + darkice - mit-kerberos - pam - gdbm - e2fsprogs - openssl + lame + faac + libgcc + libogg + libopus + twolame + alsa-lib + libvorbis + libsamplerate + pulseaudio-libs /etc - /usr/lib/tmpfiles.d/cyrus-sasl.conf - /usr/sbin - /usr/lib - /usr/share/cyrus-sasl-2 - /run - /usr/share/man /usr/share/doc - - - System.Service - System.Package - - - saslauthd.confd - saslauthd.pam - tmpfiles.conf - - - - cyrus-sasl-devel - Development files for cyrus-sasl - cyrus-sasl için geliştirme dosyaları - - cyrus-sasl - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/cyrus-sasl/*.txt - /usr/share/man/man3 + /usr/share/man + /usr/bin - - 2021-11-06 - 2.1.27 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-07 - 2.1.27 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - 2020-01-12 - 2.1.27 - Version bump - Idris Kalp - idriskalp@gmail.com + 2020-09-28 + 1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-03 - 2.1.26 - Rebuild + 2020-03-03 + 1.3 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2018-05-09 - 2.1.26 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com + 2018-09-01 + 1.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2017-02-19 - 2.1.26 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-02-15 + 1.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-06-08 - 2.1.26 + 2016-06-09 + 1.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-07-05 - 2.1.26 + 2016-02-08 + 1.2 First release - Marcin Bojara - marcin@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - samba - http://www.samba.org + icecast + http://www.icecast.org PisiLinux Community admins@pisilinux.org GPLv2 service - server - A suite of SMB and CIFS client/server programs for UNIX - Linux için Windows ağ paylaşım servisi - samba is a free software implementation of Microsoft's networking protocol released under the GNU General Public License. As of version 4, Samba not only provides file and print services for various Microsoft Windows clients but can also integrate with a Windows Server domain, either as a Primary Domain Controller (PDC) or as a Domain Member. It can also be part of an Active Directory domain. - Samba, Linux ve Unix işletim sistemleri ile Windows NT ve Windows 9x işletim sistemleri arasındaki iletişimi sağlayan bir ağ sunucusu uygulamasıdır. Samba yalnızca Linux ve windows makinaların birbirlerini görmelerini sağlamaz aynı zamanda Linux çalıştıran bilgisayarların windows ağında yazıcı sunucusu gibi işlevleri edinmesi içinde kullanılır. Ayrıca Active Directory ile de uyumludur. - https://download.samba.org/pub/samba/stable/samba-4.14.10.tar.gz + multimedia.stream + ShoutCast compatible streaming media server + Shoutcast uyumlu muzik yayın sunucusu + Icecast is a streaming media server which currently supports Ogg Vorbis and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. + Icecast, Ogg Vorbis ve Mp3 formatlarını destekleyerek ağ üzerinden muzik yayını yapmanızı sağlar. Icecast ile bir internet radyo istasyonu kurabilir ya da kendinize özel bir şarkı liste oluşturup paylaşabilirsiniz. + icecast + http://downloads.xiph.org/releases/icecast/icecast-2.4.4.tar.gz - acl-devel - pam-devel - perl-parse-yapp - jansson-devel - rpcsvc-proto-devel - docbook-xsl - avahi-devel - gnutls-devel - libgpg-error-devel - popt-devel - libtalloc-devel - python3-devel - icu4c-devel - cups-devel - mit-kerberos - libcap-devel - openldap-client - openldap-server - libtdb-devel - libarchive-devel - dbus-devel - libtirpc-devel - libnsl-devel + libxslt-devel + libogg-devel + libvorbis-devel + libkate-devel + speex-devel + libtheora-devel + curl-devel + libxml2-devel + openssl-devel - 0001-Fix-build-on-libtirpc-less-glibc.patch + pthread_flag.patch + icecast.conf.patch - server/samba/pspec.xml + multimedia/stream/icecast/pspec.xml - samba + icecast - acl - pam - cups - dbus - popt - zlib - icu4c - gnutls - libbsd - libcap - libnsl - libtdb - jansson - python3 - libtasn1 - libtirpc - libtalloc - avahi-libs - openldap-client + libxslt + libogg + libvorbis + libkate + speex + libtheora + curl + libxml2 + openssl - /etc - /lib - /run - /var + /etc/icecast /usr/bin - /usr/lib/cups - /usr/lib/lib*.so* - /usr/lib/python3.9 - /usr/lib/samba - /usr/lib/tmpfiles.d - /usr/libexec - /usr/sbin - /usr/share/samba + /usr/share/doc + /usr/share/icecast /usr/share/man + /usr/share/pixmaps + /var + /run + /usr/lib/tmpfiles.d/icecast.conf System.Package System.Service - lmhosts - samba.pam - smbusers - smb.conf - tmpfiles.conf + tmpfiles.conf + + + 2020-02-07 + 2.4.4 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-09-01 + 2.4.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-15 + 2.4.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.4.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-08 + 2.4.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libmms + http://sourceforge.net/projects/libmms + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.stream + A common library for accessing MMS media streaming protocol + MMS protokolüne erişim sağlayan bir kütüphane + libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol. + libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir. + mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz + multimedia/stream/libmms/pspec.xml + - samba-devel - Development files for samba - samba için geliştirme dosyaları + libmms + + /usr/lib + /usr/share/doc + + + + libmms-devel + Development files for libmms + libmms için geliştirme dosyaları - samba - libtalloc-devel - libtevent-devel + libmms + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-03 + 0.6.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.6.4 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-15 + 0.6.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-23 + 0.6.4 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + live555 + http://www.live555.com + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.stream + Multimedia streaming library + Çokluortam yayın kitaplığı + Live555 est un ensemble de librairies C++ pour le streaming (diffusion numérique) multimédia utilisant les protocoles de standards ouverts (RTP/RTCP, RTSP, SIP). + Live555 is a set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP) + Live555, açık standart protokolleri kullanan (RTP/RTCP, RTSP, SIP) çoklu ortam duraksız işlemleri (streaming) için C++ kütüphaneleridir. + http://live555.com/liveMedia/public/live.2020.01.11.tar.gz + + openssl-devel + + + shared-config.patch + + multimedia/stream/live555/pspec.xml + + + live555 + + openssl + + + /usr/lib + /usr/share/doc + + + + live555-devel + Development files for live555 + live555 için geliştirme dosyaları + + live555 + + + /usr/include + + + + + 2020-01-19 + 2020.01.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 2018.08.05 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-18 + 2018.02.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 2016.10.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2016.10.21 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2014.05.08 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 2014.05.08 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + mpd + https://www.musicpd.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + app + multimedia.stream + Music Player Daemon. + Müzik Çalıcı Sunucusu (MPD) + Music Player Daemon (MPD) is a flexible, powerful, server-side application for playing music. Through plugins and libraries it can play a variety of sound files while being controlled by its network protocol. + MPD çoğu müzik dosyasını (MP3, Ogg Vorbis, FLAC, AAC, Mod vs.) çalar ve ağda yayınlar. + https://musicpd.org/download/mpd/0.23/mpd-0.23.7.tar.xz + + meson + cmake + fmt-devel + curl-devel + flac-devel + yajl-devel + lame-devel + zlib-devel + dbus-devel + boost-devel + expat-devel + samba-devel + icu4c-devel + avahi-devel + faad2-devel + libao-devel + shine-devel + libmms-devel + mpg123-devel + sqlite-devel + openal-devel + ffmpeg-devel + libgme-devel + libmad-devel + libogg-devel + libnfs-devel + libcdio-devel + libopus-devel + libsoxr-devel + libupnp-devel + twolame-devel + wavpack-devel + zziplib-devel + libpcre2-devel + alsa-lib-devel + libshout-devel + liburing-devel + pipewire-devel + libmpcdec-devel + libgcrypt-devel + audiofile-devel + libid3tag-devel + libmikmod-devel + libvorbis-devel + cyrus-sasl-devel + fluidsynth-devel + libmodplug-devel + libsndfile-devel + libopenmpt-devel + libmpdclient-devel + libsamplerate-devel + libchromaprint-devel + pulseaudio-libs-devel + libcdio-paranoia-devel + jack-audio-connection-kit-devel + python3-six + python3-Babel + python3-sphinx + python3-certifi + python3-requests + python3-imagesize + python3-snowballstemmer + python3-sphinx-alabaster-theme + python3-sphinxcontrib-websupport + + multimedia/stream/mpd/pspec.xml + + + mpd + + curl + flac + yajl + lame + zlib + dbus + boost + expat + samba + icu4c + avahi + faad2 + libao + shine + libmms + mpg123 + sqlite + openal + ffmpeg + libgme + libmad + libogg + libnfs + libcdio + libopus + libsoxr + libupnp + twolame + wavpack + zziplib + libpcre2 + alsa-lib + libshout + liburing + pipewire + libmpcdec + libgcrypt + audiofile + libid3tag + libmikmod + libvorbis + avahi-libs + fluidsynth + libmodplug + libsndfile + libopenmpt + libmpdclient + libsamplerate + libchromaprint + pulseaudio-libs + libcdio-paranoia + jack-audio-connection-kit + + + /etc + /usr/bin + /usr/share/icons + /usr/share/man + /usr/share/doc + + + + + 2022-05-14 + 0.23.7 + Version bump. + fury + uglyside@yandex.ru + + + 2022-04-16 + 0.23.6 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-02 + 0.23.5 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-23 + 0.23.4 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-23 + 0.23.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-17 + 0.23 + Version bump. + fury + uglyside@yandex.ru + + + 2021-09-07 + 0.22.11 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-11 + 0.22.9 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-29 + 0.22.8 + Version bump. + fury + uglyside@yandex.ru + + + 2021-05-20 + 0.22.7 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-12 + 0.22.6 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-22 + 0.22.4 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-13 + 0.22.3 + First Beta release. + fury + uglyside@yandex.ru + + + + + + radiotray-ng + https://github.com/ebruck/radiotray-ng + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + multimedia.stream + Radiotray-NG: An Internet radio player for Linux. + It became clear as one of the early contributors to the RadioTray project that it was not getting the attention it required and was probably dead. A lot of the technologies it used had moved on to newer versions and the bugs started piling up. I did my best to help users, but a new start was required. + https://github.com/ebruck/radiotray-ng/archive/refs/tags/v0.2.8.tar.gz + + cmake + ccache + wxGTK3 + curl-devel + gtk3-devel + boost-devel + wxGTK-devel + lsb-release + wxGTK-common + glibmm-devel + libbsd-devel + python3-devel + ncurses-devel + jsoncpp-devel + libnotify-devel + gstreamer-devel + libxdg-basedir-devel + libappindicator-devel + + multimedia/stream/radiotray-ng/pspec.xml + + + radiotray-ng + + curl + gtk3 + boost + glib2 + glibmm + libbsd + libgcc + wxGTK3 + jsoncpp + gstreamer + libnotify + libsigc++ + python3-lxml + wxGTK-common + libxdg-basedir + libappindicator + + + /etc/xdg/autostart + /usr/bin + /usr/share + /usr/share/doc + + + + + 2021-09-12 + 0.2.8 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-28 + 0.2.7 + First Beta build. + fury + uglyside@yandex.ru + + + + + + rtmpdump + http://rtmpdump.mplayerhq.hu/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + app:console + library + multimedia.stream + Toolkit for RTMP streams + RTMP yayınları araç takımı + rtmpdump is a tool for dumping media content streamed over RTMP. All forms of RTMP are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . + rtmpdump, RTMP üzerinden yayın yapan ortam içeriklerinin dökümünü yapmak için yazılmış bir araçtır. RTMP yayımının bütün biçimleri desteklenmektedir: rtmp://, rtmpt://, rtmpe://, rtmpte://, ve rtmps:// . + https://sourceforge.net/projects/pisilinux/files/source/rtmpdump-20190330.tar.xz + + openssl-devel + zlib-devel + + + rtmpdump-openssl-1.1-v2.patch + rtmpdump-swf_vertification_type_2.patch + rtmpdump-swf_vertification_type_2_part_2.patch + + multimedia/stream/rtmpdump/pspec.xml + + + rtmpdump + + openssl + zlib + + + /usr/bin + /usr/lib + /usr/share/doc/rtmpdump + /usr/share/man + + + + rtmpdump-devel + Development files for rtmpdump + rtmpdump için geliştirme dosyaları + + rtmpdump + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-01-18 + 20190330 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 20150115 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 20150115 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 20150115 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-29 + 20150115 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + hypnotix + https://github.com/linuxmint/hypnotix + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app + multimedia.tv + Hypnotix is an IPTV streaming application with support for live TV, movies and series. + Hypnotix, canlı TV, filmler ve dizileri destekleyen bir IPTV akış uygulamasıdır. + Hypnotix is an IPTV streaming application with support for live TV, movies and series. + Hypnotix, canlı TV, film ve dizi desteği olan bir IPTV akış uygulamasıdır. + https://github.com/linuxmint/hypnotix/archive/refs/tags/2.6.tar.gz + multimedia/tv/hypnotix/pspec.xml + + + hypnotix + + xapp + dconf + mpv-player + python3-cairo + python3-imdbpy + python3-requests + python3-youtube_dl + python3-setproctitle + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/glib-2.0 + /usr/share/locale + /usr/share/icons + /usr/share/hypnotix + /usr/share/doc + + + + + 2022-05-22 + 2.6 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-06-25 + 1.9 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + mlt + https://www.mltframework.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + multimedia.tv + A multimedia framework, designed and developed for television broadcasting + Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı + MLT is an open source multimedia framework, designed and developed for television broadcasting. + MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. + https://github.com/mltframework/mlt/releases/download/v7.2.0/mlt-7.2.0.tar.gz + + cmake + alsa-lib-devel + swig + 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 + rubberband-devel + + multimedia/tv/mlt/pspec.xml + + + perl-mlt + Perl bindings for MLT + MLT için Perl bağlayıcıları + programming.language.perl + + libgcc + perl + mlt + + + /usr/lib/perl* + + + + python-mlt + Python bindings for MLT + MLT için Python bağlayıcıları + programming.language.python + + libgcc + python3 + mlt + + + /usr/lib/python* + + + + mlt + + sox + fftw3 + pango + glib2 + opencv + ffmpeg + libX11 + libgcc + libsdl + libsdl2 + libexif + libxml2 + qt5-svg + alsa-lib + qt5-base + libvorbis + sdl-image + fontconfig + gdk-pixbuf + rubberband + libsamplerate + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/mlt-7 + /usr/share/mlt/modules + /usr/share/mlt/modules/lumas/PAL + /usr/share/man + + + + mlt-devel + Development files for mlt + mlt için geliştirme dosyaları + + mlt + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-12-09 + 7.2.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 7.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-14 + 7.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-30 + 6.26.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-17 + 6.26.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-11 + 6.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-03 + 6.18.0 + Version bump. + Kamil Atlı + suvariqpisilinux.org + + + 2019-09-17 + 6.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-18 + 6.12.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-10-13 + 6.10.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-01 + 6.6.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-26 + 6.6.0 + Rebuild ffmpeg + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-13 + 6.4.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-25 + 6.2.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-20 + 0.9.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-16 + 0.9.8 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + 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-12-09 + 6.26.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + xawtv + http://linuxtv.org/downloads/xawtv/ + + Erdinc Gultekin + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.tv + TV application + TV uygulaması + xawtv is a TV application that supports many interfaces (analog video streams), such as Xvideo, v4l2 and bktr etc. It can display TV streams and record them. + xawtv Xvideo, v4l2, bktr gibi birçok arayüzü destekleyen bir TV uygulamasıdır. xawtv ayrıca video kayıt yeteneği ve birkaç yararlı konsol aracına sahiptir. + xawtv + http://linuxtv.org/downloads/xawtv/xawtv-3.106.tar.bz2 + + alsa-lib-devel + aalib-devel + libquicktime-devel + openmotif-devel + libdv-devel + zvbi-devel + lirc-devel + libv4l-devel + xorg-font + libXxf86dga-devel + libdv + libXpm-devel + libXrender-devel + libXv-devel + mesa-devel + libXext-devel + libXrandr-devel + libXxf86vm-devel + libXmu-devel + libFS-devel + fontconfig-devel + libXt-devel + libXft-devel + libXaw-devel + zvbi-devel + libXinerama-devel + libSM-devel + libICE-devel + libexplain-devel + libjpeg-turbo-devel + gpm + zlib-devel + libX11-devel + libpng-devel + ncurses-devel + freetype-devel + + + v4l-conf_non-position-independent-executable_fix.patch + xawtv-3.95.patch + + multimedia/tv/xawtv/pspec.xml + + + xawtv + + gpm + zvbi + lirc + mesa + zlib + aalib + libSM + libdv + libXt + libXv + libX11 + libpng + libXmu + libXaw + libICE + libv4l + libXpm + libXft + ncurses + libXext + freetype + alsa-lib + xorg-font + libXrandr + libXrender + libXxf86vm + fontconfig + libexplain + libXxf86dga + libXinerama + libquicktime + libjpeg-turbo + + + /etc + /usr/bin + /usr/lib/xawtv + /usr/share/doc + /usr/share/man + /usr/share/xawtv + /usr/share/applications + /usr/share/pixmaps + + + xawtv.desktop + + + + + 2020-03-04 + 3.106 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 3.105 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-15 + 3.103 + Add Dependency. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.103 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 3.103 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + zvbi + http://zapping.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + multimedia.tv + VBI Decoding Library for Zapping + Zapping uygulaması için VBI çözücü kütüphanesi + Zapping est un lecteur TV pour le bureau Gnome. Avec Zapping et une carte TV vous pouvez, voir la télévision, faire des copies d'écran et effectuer des enregistrements audio et vidéo. Zapping gère les sous-titres et le télétexte. + Zapping is a TV viewer for the Gnome desktop. With Zapping and a TV card you can watch TV, take screenshots, and record video and audio. Zapping supports Closed Caption and Teletext subtitles. + Zapping Gnome masaüstü için bir televizyon göstericisidir. Zapping ve bir TV kartı ile TV seyredebilir, ekran resmi çekebilir ve video ve audio kaydedebilirsiniz. Zapping Kapalı Çekim (Closed Capture) ve Teletex altyazılarını desteklemektedir. + Zapping es un visualizador de TV para el escritorio Gnome. Con Zapping y una tarjeta de TV puede mirar la tele, capturar pantallas, grabar video y audio. Zapping soporta subtitulos teletext y Closed Caption. + mirrors://sourceforge/zapping/zvbi-0.2.35.tar.bz2 + + libpng-devel + libX11-devel + doxygen + + + zvbi-0.2.31-linkage_fix.diff + zvbi-0.2.7-fix-build.patch + + multimedia/tv/zvbi/pspec.xml + + + zvbi + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/doc/zvbi + /usr/share/man + /usr/share/locale + + + + zvbi-devel + Development files for zvbi + zvbi için geliştirme dosyaları + + zvbi + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/zvbi/html + + + + + 2020-03-03 + 0.2.35 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 0.2.35 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 0.2.35 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.2.35 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-27 + 0.2.35 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libdv + http://libdv.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + multimedia.video + Software codec for dv-format video (camcorders etc) + Dijital video (kaydedici cihazlar vs) için çözümleme yazılımı + Le codec Quasar DV (libdv) est un codec logiciel pour la vidéo DV, le format d'encodage utilisé par la plupart des caméras numériques, typiquement celles gérant l'interface IEEE 1394 (a.k.a. FireWire ou i.Link). Libdv a été développé selon les standards officiels pour la vidéo DV : IEC 61834 et SMPTE 314M. + The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. + Quasar DV codec (libdv), DV video için çözümleyicidir. Bu dosya biçimi çoğu dijital kameralarda (özellikle de IEEE 1394) kullanılır. Libdv, DV videonun resmi standartları olan IEC 61834 ve SMPTE 314M'ye göre geliştirilmiştir. + El codec Quasar DV (libdv) es un codec de software para video DV, el formato de codificación usado en la mayoría de los camcorders digitales, que típicamente soportan la interfaz IEEE 1394 (alias FireWire o i.Link). Libdv fue desarrollado de conforme los estándares oficiales para video DV: IEC 61834 y SMPTE 314M. + mirrors://sourceforge/libdv/libdv-1.0.0.tar.gz + + libsdl-devel + popt-devel + + + libdv-0.99-2.6.patch + libdv-1.0.0-pic.patch + libdv-1.0.0-dso-linking.patch + libdv-mmxdetect-athlon.patch + + multimedia/video/libdv/pspec.xml + + + libdv + + popt + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libdv-devel + Development files for libdv + libdv için geliştirme dosyaları + + libdv + + + /usr/include/libdv + /usr/lib/pkgconfig + + + + + 2020-01-18 + 1.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-02 + 1.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.0.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 1.0.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + aom + https://aomedia.org/ + + Mathias Freire + mathiasfreire45@gmail.com + + BSD + library + multimedia.video + Alliance for Open Media video codec + aom is the AOMedia video encoder for ​AV1, an open source and royalty-free video codec. aom can save about 30% bitrate compared to VP9 and H.265 / HEVC, and about 50% over H.264, while retaining the same visual quality. + https://storage.googleapis.com/aom-releases/libaom-3.2.0.tar.gz + + ninja + cmake + + multimedia/video/aom/pspec.xml + + + aom + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + aom-devel + Header files for aom. + + aom + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-01 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-12 + 1.0.0_20200112 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + cheese + https://gitlab.gnome.org/GNOME/cheese + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + multimedia.video + Take photos and videos with your webcam, with fun graphical effects + Take photos and videos with your webcam, with fun graphical effects + https://download.gnome.org/sources/cheese/41/cheese-41.1.tar.xz + + appstream-glib-devel + gobject-introspection-devel + meson + vala-devel + yelp-tools + clutter-devel + clutter-gst-devel + clutter-gtk-devel + gnome-desktop-devel + libseccomp-devel + libseccomp + libcanberra-devel + libcanberra-gtk3-devel + gettext-devel + gdk-pixbuf-devel + glib2-devel + itstool + libXtst-devel + librsvg-devel + libgee-devel + gnome-video-effects + gst-plugins-bad-devel + + multimedia/video/cheese/pspec.xml + + + cheese + + cogl + gtk3 + cairo + glib2 + libX11 + clutter + gstreamer + gdk-pixbuf + clutter-gst + clutter-gtk + gnome-desktop + gst-plugins-base + libcanberra-gtk3 + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/share/applications + /usr/share/dbus-1 + /usr/share/help + /usr/share/doc + /usr/share/locale + /usr/share/man + /usr/share/glib-2.0 + /usr/share/icons + /usr/share/metainfo + + + + cheese-devel + + cheese + gtk3-devel + glib2-devel + libX11-devel + clutter-devel + gstreamer-devel + gdk-pixbuf-devel + clutter-gst-devel + clutter-gtk-devel + gst-plugins-base-devel + gst-plugins-bad-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-11-15 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-20 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.38.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + dav1d + https://code.videolan.org/videolan/dav1d + + Mathias Freire + mathiasfreire45@gmail.com + + BSD + library + multimedia.video + dav1d is a new AV1 cross-platform decoder, open-source, and focused on speed and correctness. + The goal of this project is to provide a decoder for most platforms, and achieve the highest speed possible to overcome the temporary lack of AV1 hardware decoder. It supports all features from AV1, including all subsampling and bit-depth parameters. In the future, this project will host simple tools or simple wrappings (like, for example, an MFT transform). + http://downloads.videolan.org/pub/videolan/dav1d/0.8.1/dav1d-0.8.1.tar.xz + + nasm + meson + ninja + + multimedia/video/dav1d/pspec.xml + + + dav1d + + libgcc + + + /usr/bin/dav1d + /usr/lib + /usr/share/doc + + + + dav1d-devel + + dav1d + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-01-24 + 0.8.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-01-12 + 0.5.2 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + davs2 + https://github.com/pkuvcl/davs2/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPL + library + multimedia.video + Open-Source decoder of AVS2-P2/IEEE1857.4 video coding standard + davs2 is an open-source decoder of AVS2-P2/IEEE1857.4 video coding standard. + https://github.com/pkuvcl/davs2/archive/1.6.tar.gz + + davs2-1.6-gcc8-fix.patch + + + yasm-devel + + multimedia/video/davs2/pspec.xml + + + davs2 + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + davs2-devel + Header files for davs2. + + davs2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-12 + 1.6 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + ffmpeg + http://ffmpeg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + LGPLv2 + LGPLv3 + app:console + multimedia.video + A command-line tool to record, convert and stream audio and video + FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu + FFmpeg is a complete solution to record, convert and stream audio and video. + FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. + FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. + https://ffmpeg.org/releases/ffmpeg-4.4.2.tar.xz + + srt-devel + freetype-devel + fontconfig-devel + lame-devel + cairo-devel + xz-devel + x264-devel + x265-devel + xavs-devel + xavs2-devel + ffnvcodec + libbs2b-devel + libavc1394-devel + libraw1394-devel + svt-av1-devel + libdrm-devel + libmfx-devel + rav1e-devel + dav1d-devel + davs2-devel + aom-devel + libva-devel + libsdl2-devel + libvpx-devel + libass-devel + libopus-devel + libilbc-devel + codec2-devel + libfdk-aac-devel + libgme-devel + lensfun-devel + libiec61883-devel + kvazaar-devel + libopenmpt-devel + librsvg-devel + rubberband-devel + shine-devel + flite-devel + libsoxr-devel + snappy-devel + vid.stab-devel + libxcb-devel + libzimg-devel + openal-devel + alsa-lib-devel + libvdpau-devel + libtheora-devel + libvorbis-devel + celt-devel + gsm-devel + libbluray-devel + opencore-amr-devel + libmodplug-devel + pulseaudio-libs-devel + openjpeg2-devel + frei0r-plugins-devel + rtmpdump-devel + speex-devel + yasm-devel + libv4l-devel + pkgconfig + libvo-amrwbenc-devel + xvid-devel + libdc1394-devel + libcdio-paranoia-devel + libXv-devel + wavpack-devel + webp-devel + ladspa-sdk-devel + libaribb24-devel + jack-audio-connection-kit-devel + twolame-devel + fribidi-devel + libxml2-devel + opencl-icd-devel + openssl-devel + libomxil-bellagio-devel + zeromq-devel + + + fix-vmaf-model-path.patch + + multimedia/video/ffmpeg/pspec.xml + + + ffmpeg + + srt + gsm + celt + lame + x264 + x265 + xvid + zlib + bzip2 + speex + libva + libXv + libX11 + libsdl2 + libv4l + libvpx + libxcb + libass + libopus + libXext + alsa-lib + freetype + libvdpau + openjpeg2 + xz + cairo + glib2 + xavs + xavs2 + libbs2b + libavc1394 + libraw1394 + svt-av1 + libdrm + libmfx + rav1e + dav1d + davs2 + aom + libva + libsdl2 + libvpx + libass + libopus + libilbc + codec2 + libfdk-aac + libgme + lensfun + libiec61883 + kvazaar + libopenmpt + librsvg + rubberband + shine + flite + libsoxr + snappy + vid.stab + libxcb + libzimg + openal + rtmpdump + libbluray + libdc1394 + libtheora + libvorbis + fontconfig + libmodplug + libvo-aacenc + opencore-amr + libvo-amrwbenc + pulseaudio-libs + libcdio-paranoia + wavpack + webp + ladspa-sdk + libaribb24 + jack-audio-connection-kit + twolame + fribidi + libxml2 + opencl-icd + openssl + libomxil-bellagio + zeromq + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/ffmpeg + + + + ffmpeg-devel + Development files for ffmpeg + ffmpeg için geliştirme dosyaları + Pliki nagłówkowe ffmpeg + + ffmpeg + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-19 + 4.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-30 + 4.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-12 + 4.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-04 + 4.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-28 + 4.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-08 + 4.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-16 + 4.2.2 + Rebuild. + Mustafa Cinasal + muscnslp@gmail.com + + + 2020-01-22 + 4.2.2 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-14 + 4.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 4.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-22 + 4.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-28 + 4.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-19 + 4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-05 + 4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 3.4.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 3.3.6 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 3.3.6 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-04 + 3.3.6 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 3.2.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-13 + 3.0.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 2.8.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-16 + 2.8.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + graphene + https://ebassi.github.io/graphene/ + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + multimedia.video + A thin layer of graphic data types + A thin layer of graphic data types + A thin layer of graphic data types + A thin layer of graphic data types + https://github.com/ebassi/graphene/archive/1.10.8.tar.gz + + meson + gtk-doc + glib2-devel + gobject-introspection-devel + + multimedia/video/graphene/pspec.xml + + + graphene + + glib2 + + + /usr/lib + /usr/libexec + /usr/share + /usr/share/gir-1.0 + /usr/share/doc + + + + graphene-devel + Development files for graphene + + graphene + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + graphene-docs + Development files for graphene + + graphene + + + /usr/share/gtk-doc + + + + + 2022-03-21 + 1.10.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-23 + 1.10.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gst-editing-services + https://gitlab.freedesktop.org/gstreamer/gst-editing-services + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + library + multimedia.video + GStreamer library for creating audio/video editors + 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.20.2.tar.xz + + gstreamer-devel + gst-plugins-base-devel + gst-plugins-bad-devel + gobject-introspection-devel + libxml2-devel + python3-devel + python3-pygobject3-devel + meson + + multimedia/video/gst-editing-services/pspec.xml + + + gst-editing-services + + glib2 + libxml2 + python3 + gstreamer + gst-plugins-base + + + /usr/bin + /usr/lib/libges* + /usr/lib/girepository-1.0 + /usr/lib/gst-validate-launcher + /usr/lib/gstreamer-1.0 + /usr/lib/python3.* + /usr/share/bash-completion + /usr/share/doc + /usr/share/gstreamer-1.0 + /usr/share/man + + + + gst-editing-services-devel + Development files for gst-editing-services + + gst-editing-services + glib2-devel + libxml2-devel + python3-devel + gstreamer-devel + gst-plugins-base-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.18.4 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-14 + 1.18.4 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gst-libav + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + 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.20.2.tar.xz + + meson + python3 + valgrind + orc-devel + xz-devel + zlib-devel + yasm-devel + ffmpeg-devel + libunwind-devel + gst-plugins-base-devel + + multimedia/video/gst-libav/pspec.xml + + + gst-libav + + xz + zlib + bzip2 + glib2 + ffmpeg + gstreamer + gst-plugins-base + + + /usr/lib + /usr/share/doc + + + gst-libav-next + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-01 + 1.16.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-16 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-28 + 1.12.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + + + + gst-plugins-bad + https://gstreamer.freedesktop.org/modules/gst-plugins-bad.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + A set of GStreamer plug-ins that aren't up to par compared to the rest + 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.20.2.tar.xz + + meson + valgrind + srt-devel + zvbi-devel + aom-devel + sbc-devel + flite-devel + lcms2-devel + libva-devel + libass-devel + libgme-devel + libmfx-devel + nettle-devel + openal-devel + libnice-devel + libsrtp-devel + vulkan-devel + libkate-devel + libmpcdec-devel + imath-devel + libbs2b-devel + librsvg-devel + rtmpdump-devel + libfdk-aac-devel + libmodplug-devel + libopenmpt-devel + fluidsynth-devel + openexr-devel + orc-devel + curl-devel + gsm-devel + faac-devel + gtk3-devel + libglvnd-devel + webp-devel + x265-devel + faad2-devel + libX11-devel + libunwind-devel + mpg123-devel + libxml2-devel + libusb-devel + openssl-devel + libdca-devel + jasper-devel + libsdl-devel + opencv-devel + libexif-devel + libopus-devel + libgudev-devel + wayland-devel + libdc1394-devel + openjpeg2-devel + mesa-glu-devel + wayland-cursor + libmpeg2-devel + DirectFB-devel + libvdpau-devel + libtheora-devel + libdvdnav-devel + libsndfile-devel + mjpegtools-devel + soundtouch-devel + libdvdread-devel + llvm-clang-devel + schroedinger-devel + libvo-aacenc-devel + libjpeg-turbo-devel + libvo-amrwbenc-devel + gstreamer-devel + gobject-introspection-devel + gst-plugins-base-devel + + multimedia/video/gst-plugins-bad/pspec.xml + + + gst-plugins-bad + + gsm + srt + curl + orc + zvbi + pango + libusb + libxml2 + libsrtp + openssl + libgudev + libdc1394 + openjpeg2 + aom + sbc + flite + lcms2 + libva + libass + libgme + libmfx + nettle + openal + vulkan + libkate + libmpcdec + imath + libnice + libbs2b + librsvg + rtmpdump + libfdk-aac + libmodplug + libopenmpt + fluidsynth + openexr-libs + faac + gtk3 + libglvnd + opencv + libxcb + webp + x265 + bzip2 + cairo + faad2 + glib2 + libX11 + libdca + libdrm + libgcc + wayland + libpng + libopus + DirectFB + libvdpau + libdvdnav + libdvdread + libsndfile + mjpegtools + soundtouch + libvo-aacenc + schroedinger + libjpeg-turbo + gstreamer + libvo-amrwbenc + wayland-client + gst-plugins-base + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/gstreamer-1.0 + /usr/share/gst-plugins-bad/1.0/ + /usr/share/gir-1.0/ + /usr/share/doc + + + gst-plugins-bad-next + + + + gst-plugins-bad-devel + Development files for gst-plugins-bad + gst-plugins-bad için geliştirme dosyaları + + gstreamer-devel + gst-plugins-base-devel + gst-plugins-bad + + + /usr/lib/pkgconfig + /usr/include + + + gst-plugins-bad-next-devel + + + + + 2022-06-04 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-09 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-04 + 1.18.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-06 + 1.18.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-12 + 1.18.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-09 + 1.17.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-05 + 1.17.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-18 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-01 + 1.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Rebuild x265. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-26 + 1.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-24 + 1.14.2 + Rebuild qt5. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-16 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-23 + 1.12.4 + Rebuild qt5. + Pisi Linux Community + admin@pisilinux.org + + + 2018-10-16 + 1.12.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-28 + 1.12.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.10.23 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.10.23 + Rebuild and edit. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.10.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-14 + 0.10.23 + rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-31 + 0.10.23 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gst-plugins-base + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Basepack of plugins for gstreamer + Gstreamer için temel eklentiler paketi + 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.20.2.tar.xz + + git + meson + mesa-devel + libdrm-devel + libgudev-devel + libglvnd-devel + graphene-devel + libjpeg-turbo-devel + valgrind + zlib-devel + orc-devel + iso-codes-devel + cdparanoia-devel + pango-devel + cairo-devel + libXv-devel + libogg-devel + libXext-devel + libopus-devel + alsa-lib-devel + python3-devel + elfutils-devel + libvorbis-devel + libtheora-devel + libvisual-devel + wayland-cursor + wayland-devel + libunwind-devel + libX11-devel + xorg-proto + xorg-server-xvfb + gstreamer-devel + gobject-introspection-devel + wayland-protocols-devel + + multimedia/video/gst-plugins-base/pspec.xml + + + gst-plugins-base + + mesa + libdrm + libgudev + libjpeg-turbo + orc + zlib + glib2 + pango + cairo + libglvnd + libXv + libX11 + libogg + libpng + libxcb + wayland + libXext + libopus + alsa-lib + libvorbis + libvisual + libtheora + cdparanoia + graphene + wayland-cursor + wayland-client + gstreamer + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/man + /usr/share/locale + /usr/share/gst-plugins-base/1.0 + + + gst-plugins-base-next + + + + gst-plugins-base-32bit + 32-bit shared libraries for gst-plugins-base + emul32 + emul32 + + orc-32bit + glib2-32bit + libXv-32bit + pango-32bit + libogg-32bit + libX11-32bit + libopus-32bit + alsa-lib-32bit + libtheora-32bit + libvorbis-32bit + libvisual-32bit + gstreamer-32bit + libgudev-32bit + libdrm-32bit + mesa-32bit + libglvnd-32bit + libjpeg-turbo-32bit + + + gst-plugins-base + orc-32bit + zlib-32bit + cairo-32bit + libglvnd-32bit + glib2-32bit + libXv-32bit + libpng-32bit + libxcb-32bit + wayland-32bit + pango-32bit + libogg-32bit + libX11-32bit + libopus-32bit + libxml2-32bit + libXext-32bit + alsa-lib-32bit + libtheora-32bit + libvorbis-32bit + libvisual-32bit + gstreamer-32bit + libgudev-32bit + mesa-32bit + libdrm-32bit + libjpeg-turbo-32bit + + + /usr/lib32/gstreamer-1.0 + /usr/lib32/libgst* + /usr/lib32/libgraphene* + + + gst-plugins-base-next-32bit + + + + gst-plugins-base-devel + Development files for gst-plugins-base + gst-plugins-base için geliştirme dosyaları + + gst-plugins-base + orc-devel + gstreamer-devel + glib2-devel + libX11-devel + wayland-devel + libglvnd-devel + graphene-devel + mesa-devel + zlib-devel + libdrm-devel + libgudev-devel + + + /usr/include + /usr/lib32/graphene-1.0/include/graphene-config.h + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/graphene* + /usr/lib32/pkgconfig/gstreamer*.pc + /usr/share/man/man3 + + + gst-plugins-base-next-devel + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 1.16.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.16.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-16 + 1.14.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-28 + 1.12.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-11 + 1.12.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-19 + 0.10.36 + Rebuild and edit. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.10.36 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 0.10.36 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-20 + 0.10.36 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gst-plugins-good + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Ensemble de plug-ins (greffons) de bonne qualité sous la licence préférée de gstreamer. + 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.20.2.tar.xz + + meson + xz-devel + valgrind + orc-devel + gtk3-devel + flac-devel + lame-devel + cairo-devel + aalib-devel + libdv-devel + speex-devel + mpg123-devel + taglib-devel + libpng-devel + libvpx-devel + libX11-devel + libv4l-devel + wavpack-devel + twolame-devel + libsoup-devel + libcaca-devel + libgudev-devel + libunwind-devel + libshout-devel + libXfixes-devel + libXdamage-devel + libavc1394-devel + libraw1394-devel + gdk-pixbuf-devel + libiec61883-devel + libjpeg-turbo-devel + gstreamer-devel + pulseaudio-libs-devel + gst-plugins-base-devel + jack-audio-connection-kit-devel + + multimedia/video/gst-plugins-good/pspec.xml + + + gst-plugins-good + + orc + gtk3 + flac + zlib + lame + aalib + bzip2 + cairo + glib2 + libdv + speex + mpg123 + taglib + libX11 + libpng + libv4l + libvpx + twolame + libXext + libcaca + libsoup + wavpack + libgudev + libshout + libXfixes + gdk-pixbuf + libXdamage + libavc1394 + libraw1394 + libiec61883 + libjpeg-turbo + gstreamer + pulseaudio-libs + gst-plugins-base + jack-audio-connection-kit + + + /etc/gconf + /usr/bin + /usr/lib + /usr/share/gstreamer-1.0/presets + /usr/share/doc + /usr/share/man + /usr/share/locale + + + gst-plugins-good-next + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 1.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-26 + 1.14.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-16 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-28 + 1.12.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.10.31 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.10.31 + Rebuild and edit. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.10.31 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-28 + 0.10.31 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gst-plugins-ugly + http://gstreamer.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Other plugins for gstreamer + Gstreamer için diğer eklentiler + 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.20.2.tar.xz + + meson + xz-devel + zlib-devel + valgrind + python3 + orc-devel + x264-devel + lame-devel + glib2-devel + a52dec-devel + libmad-devel + mpg123-devel + libcdio-devel + twolame-devel + libunwind-devel + libmpeg2-devel + libdvdread-devel + opencore-amr-devel + gstreamer-devel + gst-plugins-base-devel + + multimedia/video/gst-plugins-ugly/pspec.xml + + + gst-plugins-ugly + + orc + lame + x264 + glib2 + a52dec + libmad + mpg123 + libcdio + twolame + libmpeg2 + libdvdread + opencore-amr + gstreamer + gst-plugins-base + + + /usr/lib/gstreamer-1.0 + /usr/share/doc/gst-plugins-ugly + /usr/share/gtk-doc + /usr/share/gstreamer-1.0 + /usr/share/locale + + + gst-plugins-ugly-next + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-05 + 1.17.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-01 + 1.16.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-16 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-28 + 1.12.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-18 + 0.10.19 + Rebuild and edit. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.10.19 + Rebuild and edit. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 0.10.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-10 + 0.10.19 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gst-rtsp-server + https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + library + multimedia.video + RTSP server library based on GStreamer + 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.20.2.tar.xz + + meson + python3-devel + glib2-devel + gstreamer-devel + gst-plugins-bad-devel + + multimedia/video/gst-rtsp-server/pspec.xml + + + gst-rtsp-server + + glib2 + gstreamer + gst-plugins-base + + + /usr/lib/libgstrtspserver* + /usr/lib/gstreamer-1.0 + /usr/lib/girepository-1.0 + /usr/share/doc + + + + gst-rtsp-server-devel + Development files for gst-rtsp-server + + gst-rtsp-server + gstreamer-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-24 + 1.18.4 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + gstreamer + https://gstreamer.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + multimedia.video + GStreamer streaming media framework runtime + GStreamer ses yayın altyapısı + 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.20.2.tar.xz + + meson + gobject-introspection-devel + libunwind-devel + bash-completion + python3-devel + libxml2-devel + elfutils-devel + libcap-devel + glib2-devel + gsl-devel + gmp-devel + valgrind + zlib-devel + xz-devel + + multimedia/video/gstreamer/pspec.xml + + + gstreamer + + glib2 + libcap + elfutils + libunwind + + + /usr/bin + /usr/lib/libgstbase* + /usr/lib/libgstcheck* + /usr/lib/libgstcontroller* + /usr/lib/libgstnet* + /usr/lib/libgstreamer* + /usr/lib/gstreamer-1.0 + /usr/lib/girepository-1.0 + /usr/libexec + /usr/share/gir-1.0 + /usr/share/bash-completion + /usr/share/doc + /usr/share/locale + /usr/share/gstreamer-1.0/gdb + /usr/share/gdb/auto-load/usr/lib/libgstreamer-1.0.so.0.2002.0-gdb.py + /usr/share/man + + + gstreamer-next + + + + gstreamer-32bit + 32-bit shared libraries for gstreamer + gstreamer için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + glib2-32bit + libcap-32bit + elfutils-32bit + libunwind-32bit + + + glib2-32bit + elfutils-32bit + libunwind-32bit + gstreamer + + + /usr/lib32/libgstbase* + /usr/lib32/libgstcheck* + /usr/lib32/libgstcontroller* + /usr/lib32/libgstnet* + /usr/lib32/libgstreamer* + /usr/lib32/gstreamer-1.0 + /usr/share/gdb/auto-load/usr/lib32/libgstreamer-1.0.so.0.2002.0-gdb.py + + + gstreamer-next-32bit + + + + gstreamer-devel + Development files for gstreamer + gstreamer için geliştirme dosyaları + + gstreamer + libunwind-devel + elfutils-devel + glib2-devel + zlib-devel + xz-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + + + gstreamer-next-devel + + + + + 2022-05-11 + 1.20.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 1.16.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-16 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-28 + 1.12.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.10.36 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.10.36 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 0.10.36 + Release bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-06-26 + 0.10.36 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + gstreamer-vaapi + http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2.1 + library + multimedia.video + GStreamer Multimedia Framework VA Plugins + gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. + https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.20.2.tar.xz + + meson + python3 + mesa-devel + libglvnd-devel + libva-devel + libXrandr-devel + wayland-protocols-devel + gstreamer-devel + gst-plugins-bad-devel + gst-plugins-base-devel + + multimedia/video/gstreamer-vaapi/pspec.xml + + + gstreamer-vaapi + + glib2 + libva + libglvnd + eudev + libX11 + libdrm + libXrandr + libXrender + wayland-client + wayland-protocols + gstreamer + gst-plugins-bad + gst-plugins-base + + + /usr/lib + /usr/share/doc + + + gstreamer-vaapi-next + gstreamer-vaapi-next-devel + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 1.18.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-01 + 1.16.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-26 + 1.14.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-16 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-28 + 1.12.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + + + + gstreamermm + https://gstreamer.freedesktop.org/bindings/cplusplus.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + multimedia.video + GStreamer C++ bindings + Gstreamer C++ arayüzü + The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism. + Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır. + http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/1.10/gstreamermm-1.10.0.tar.xz + + glibmm-devel + pangomm-devel + cairomm-devel + libxmlpp-devel + gstreamer-devel + gst-plugins-base-devel + + multimedia/video/gstreamermm/pspec.xml + + + gstreamermm + + glib2 + glibmm + libgcc + libxml2 + libxmlpp + gstreamer + libsigc++ + gst-plugins-base + + + /usr/lib + /usr/share/devhelp/books/gstreamermm-1.0 + /usr/share/doc + + + gstreamermm-next + + + + gstreamermm-devel + gstreamermm için geliştirme dosyaları + gstreamermm için geliştirme dosyaları + + glibmm-devel + libxmlpp-devel + gstreamer-devel + gst-plugins-base-devel + gstreamermm + + + /usr/include/gstreamermm-1.0 + /usr/lib/pkgconfig + + + gstreamermm-next-devel + + + + + 2022-05-11 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2022-04-13 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-10-27 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-06-14 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-01-18 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-18 + 1.10.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-10-05 + 1.10.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-16 + 1.10.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-28 + 1.10.0 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.10.11 + rebuild and edit. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.10.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-29 + 0.10.11 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + kvazaar + http://ultravideo.cs.tut.fi/#encoder + + Mathias Freire + mathiasfreire45@gmail.com + + LGPL + library + multimedia.video + An open-source HEVC encoder + Kvazaar is an award-winning academic open-source video encoder for the state-of-the-art High Efficiency Video Coding (HEVC/H.265) standard. Kvazaar is being developed in C and optimized in Assembly under the LGPLv2.1. + https://github.com/ultravideo/kvazaar/releases/download/v2.0.0/kvazaar-2.0.0.tar.xz + + yasm + crypto++-devel + + multimedia/video/kvazaar/pspec.xml + + + kvazaar + + crypto++ + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + kvazaar-devel + Header files for kvazaar. + + kvazaar + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-11-07 + 2.0.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-28 + 2.0.0 + Version bump. + fury + uglyside@yandex.ru + + + 2020-01-12 + 1.3.0 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + l-smash + https://github.com/l-smash/l-smash + + Alihan Öztürk + alihan@pisilinux.org + + custom + app:console + multimedia.video + MP4 muxer and other tools. + Loyal to Spec of MPEG4, and Ad-hock Simple Hackwork library. + https://github.com/l-smash/l-smash/archive/v2.14.5.tar.gz + multimedia/video/l-smash/pspec.xml + + + l-smash + MP4 muxer and other tools. + + glibc + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + l-smash-devel + Development files for l-smash. + + l-smash + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-01-17 + 2.14.5 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-07-31 + 2.14.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 2.9.1 + Rebuild for new toolchain. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-12 + 2.9.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libdvbpsi + https://www.videolan.org/developers/libdvbpsi.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Librairie pour la génération et le décodage des tables PSI TS/DVB MPEG. + Library for MPEG TS/DVB PSI tables decoding and generation + MPEG TS/DVB PSI taslaklarını üretmek ve çözümlemek için kullanılan bir kitaplık + libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables. + libdvbpsi, MPEG TS ve DVB PSI tablolarının ürteimi ve çözümlenmesi için tasarlanmış basit bir kitaplıktır. + http://download.videolan.org/pub/libdvbpsi/1.3.3/libdvbpsi-1.3.3.tar.bz2 + multimedia/video/libdvbpsi/pspec.xml + + + libdvbpsi + + /usr/lib + /usr/share/doc + + + + libdvbpsi-devel + Development files for libdvbpsi + libdvbpsi için geliştirme dosyaları + + libdvbpsi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-04 + 1.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 1.3.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-11 + 1.3.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.3.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libfdk-aac + https://github.com/mstorsjo/fdk-aac + + PisiLinux Community + admins@pisilinux.org + + custom + library + multimedia.video + Fraunhofer FDK AAC codec library + Fraunhofer FDK AAC codec library + Fraunhofer FDK AAC codec library + Fraunhofer FDK AAC codec library + https://github.com/mstorsjo/fdk-aac/archive/v2.0.1.tar.gz + multimedia/video/libfdk-aac/pspec.xml + + + libfdk-aac + + /usr/lib + + + + libfdk-aac-devel + Development files for libfdk-aac + + libfdk-aac + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2020-01-18 + 2.0.1 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2019-11-04 + 2.0.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libmatroska + http://www.matroska.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Format de conteneur multimédia extensible basé sur EBML. + Extensible multimedia container format based on EBML + EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı + Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio). + https://dl.matroska.org/downloads/libmatroska/libmatroska-1.6.3.tar.xz + + libebml-devel + cmake + + multimedia/video/libmatroska/pspec.xml + + + libmatroska + + libebml + libgcc + + + /usr/lib + /usr/share/doc + + + + libmatroska-devel + Development files for libmatroska + libmatroska için geliştirme dosyaları + + libmatroska + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-06-29 + 1.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 1.5.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.4.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-03 + 1.4.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.4.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-20 + 1.4.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libmp4v2 + https://github.com/TechSmith/mp4v2 + + Pisilinux Community + admins@pisilinux.org + + MPL-1.1 + library + app:console + multimedia.video + MPEG4 library + MPEG4 kütüphanesi + Librairie MPEG4 extraite de MPEG4IP, habituellement utilisée dans les sytèmes de son 3D. + MPEG4 library extracted from MPEG4IP, usually used in 3D sound systems. + Genellikle 3B ses işleme uygulamalarında kullanılan, MPEG4IP yazılımının parçası olan MPEG4 kütüphanesi. + Librería MPEG4 parte de MPEG4IP, comúnmente utilizado en sistemas de sonido 3D. + https://github.com/TechSmith/mp4v2/archive/refs/tags/Release-ThirdParty-MP4v2-5.0.1.tar.gz + + libgcc + + multimedia/video/libmp4v2/pspec.xml + + + libmp4v2 + + libgcc + + + /usr/bin + /usr/lib + + + + libmp4v2-devel + Development files for libmp4v2 + libmp4v2 için geliştirme dosyaları + + libmp4v2 + + + /usr/include + + + + + 2021-11-27 + 5.0.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-01-18 + 2.0.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 2.0.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-11 + 2.0.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 2.0.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libmpeg2 + http://libmpeg2.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams + mpeg-2 ve mpeg-1 video görüntülerini çözmek için ücretsiz bir kütüphane + libmpeg2 est une librairie libre pour décoder les flux vidéos mpeg-2 et mpeg-1. libmpeg2 est capable de décoder tous les flux vidéos se conformant à certaines restrictions : "paramètres contraints (constrained parameters)" pour mpeg-1 et "profil principal (main profile)" pour mpeg-2. + libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. + libmpeg2, mpeg-1 ve mpeg-2 video akışlarının çözülerek okunması için ücretsiz bir kütüphanedir. Libmpeg-2, bir takım kısıtlayıcı kurallara (mpeg-1 için "kısıtlanmış parametreler" ve mpeg-2 için "ana profil") uyan bütün mpeg yayınlarını çözebilir. + libmpeg2 es una librería libre para decodificar flujos de video mpeg-2 y mpeg-1. libmpeg2 puede decodificar todo tipo de flujos mpeg que cumplen ciertos restricciones: "constrained parameters" para mpeg-1, y "main profile" para mpeg-2. + http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz + + libmpeg2-0.4.1-use-readelf-for-test.patch + + multimedia/video/libmpeg2/pspec.xml + + + libmpeg2 + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libmpeg2-devel + Development files for libmpeg2 + libmpeg2 için geliştirme dosyaları + + libmpeg2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-19 + 0.5.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.5.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.5.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.5.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.5.1 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libprojectM + http://projectm.sourceforge.net + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2 + library + multimedia.video + An advanced MilkDrop-compatible music visualization library + MilkDrop uyumlu müzik görselleştirme kitaplığı + libprojectM is an iterative music visualization library which uses OpenGL for hardware acceleration. It is a reimplementation of Winamp visualization plug-in MilkDrop which uses 3D graphics hardware, combined with iterative image-based rendering techniques and compatible with MilkDrop presets. + libprojectM, donanım hızlandırma kullanılarak OpenGL ile müzik görselleştirme işlemini yapan bir kitaplıktır. + https://github.com/projectM-visualizer/projectm/releases/download/v3.1.12/projectM-3.1.12.tar.gz + + cmake + mesa-devel + libsdl2-devel + libglvnd-devel + qt5-base-devel + freeglut-devel + libvisual-devel + pulseaudio-libs-devel + + multimedia/video/libprojectM/pspec.xml + + + libprojectM + + libgcc + libglvnd + libsdl2 + + + /usr/bin/projectM-unittest + /usr/share/icons + /usr/share/doc + /usr/share/projectM/ + /usr/lib/libprojectM.so* + + + + libprojectM-devel + Development files for libprojectM + libprojectM için geliştirme dosyaları + + qt5-base-devel + libprojectM + + + /usr/include + /usr/lib/pkgconfig + + + + libprojectM-sdl + ProjectM support for sdl + + libsdl2 + qt5-base + jack-audio-connection-kit + libprojectM + + + /usr/bin/projectMSDL + + + + libprojectM-pulseaudio + ProjectM support for Pulseaudio + + qt5-base + libglvnd + pulseaudio-libs + libprojectM + + + /usr/share/man/man1/projectM-pulseaudio.1 + /usr/bin/projectM-pulseaudio + /usr/share/applications/projectM-pulseaudio.desktop + + + + + 2022-01-09 + 3.1.12 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libquicktime + http://libquicktime.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + multimedia.video + A library based on quicktime4linux with extensions + quicktime4linux ve eklentileri tabanlı bir kütüphane + Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement. + Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development. + Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir. + Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo. + mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz + + mesa-devel + lame-devel + zlib-devel + glib2-devel + libglvnd-devel + libX11-devel + libpng-devel + faac-devel + gtk2-devel + libdv + faad2-devel + libXt-devel + libXv-devel + ffmpeg-devel + libXaw-devel + libXext-devel + alsa-lib-devel + libvorbis-devel + libavc1394-devel + libraw1394-devel + schroedinger-devel + libjpeg-turbo-devel + x264-devel + + + CVE-2016-2399.patch + libquicktime-1.2.4-CVE-2017-9122_et_al.patch + libquicktime-1.2.4+libav-9.patch + libquicktime-1.2.4-ffmpeg2.patch + libquicktime-1.2.4-ffmpeg29.patch + libquicktime-1.2.4-ffmpeg4.patch + libquicktime-1.2.4-ffmpeg-codecs.patch + + multimedia/video/libquicktime/pspec.xml + + + libquicktime + + libglvnd + lame + zlib + glib2 + libX11 + libpng + faac + gtk2 + libdv + faad2 + libXt + libXv + ffmpeg + libXaw + libXext + alsa-lib + libvorbis + libavc1394 + libraw1394 + schroedinger + libjpeg-turbo + x264 + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + + libquicktime-devel + Development files for libquicktime + libquicktime için geliştirme dosyaları + + libquicktime + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2021-10-30 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-15 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-12 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-05 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-29 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.2.4 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-13 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-13 + 1.2.4 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libtheora + https://www.theora.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + multimedia.video + Le codec (compresseur / décompresseur) de compression vidéo Theora. + The Theora Video Compression Codec + Theora video sıkıştırma kodlaması + Der Theora Video Kompressions-Codec + libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system. + libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır. + http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 + + libogg-devel + libvorbis-devel + + + flags.patch + libtheora-1.1.1-libpng16.patch + + multimedia/video/libtheora/pspec.xml + + + libtheora + + libogg + libvorbis + + + /usr/lib + /usr/share/doc + + + + libtheora-32bit + 32-bit shared libraries for libtheora + emul32 + emul32 + + libogg-32bit + + + libtheora + libogg-32bit + + + /usr/lib32 + + + + libtheora-devel + Development files for libtheora + libtheora için geliştirme dosyaları + + libtheora + libogg-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2020-01-11 + 1.1.1 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-07-31 + 1.1.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-11 + 1.1.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.1.1 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.1.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libvpx + http://www.webmproject.org + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + multimedia.video + WebM VP8 Codec SDK + WebM VP8 geliştirme altyapısı + libvpx is the VP8 development library usually used in WebM and similiar formats. + libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. + https://github.com/webmproject/libvpx/archive/v1.11.0.tar.gz + + git + libgcc + yasm-devel + + multimedia/video/libvpx/pspec.xml + + + libvpx + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/libvpx + + + + libvpx-devel + libvpx header files + libvpx için başlık dosyaları + + libvpx + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-19 + 1.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-03 + 1.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-27 + 1.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.8.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 1.7.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-05 + 1.6.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-12 + 1.5.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-15 + 1.4.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + opencore-amr + http://opencore-amr.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + multimedia.video + AMR speech codec implementation + AMR ses kodek sistemi + Opencore AMR is an implementation of Adaptive Multi Rate Narrowband and Wideband speech codec. + Opencore AMR, Adaptive Multi Rate Narrowband ve Wideband ses kodek sistemi altyapısıdır. + mirrors://sourceforge/opencore-amr/opencore-amr/opencore-amr-0.1.5.tar.gz + multimedia/video/opencore-amr/pspec.xml + + + opencore-amr + + /usr/lib + /usr/share/doc/opencore-amr + + + + opencore-amr-devel + Development files for opencore-amr + opencore-amr için geliştirme dosyaları + + opencore-amr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 0.1.5 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2018-03-26 + 0.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-05 + 0.1.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.1.3 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + rubberband + https://github.com/breakfastquay/rubberband + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv1 + library + multimedia.video + Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı + Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı + Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı + Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı + https://github.com/breakfastquay/rubberband/archive/v1.8.2.tar.gz + + vamp-plugin-sdk-devel + libsamplerate-devel + libsndfile-devel + ladspa-sdk-devel + fftw3-devel + jdk8-openjdk + fftw3-devel + + multimedia/video/rubberband/pspec.xml + + + rubberband + + fftw3 + libgcc + libsndfile + libsamplerate + vamp-plugin-sdk + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + rubberband-devel + + rubberband + + + /usr/lib/pkgconfig + /usr/include + + + + + 2021-03-10 + 1.8.2 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-18 + 1.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 1.8.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-27 + 1.8.1 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + schroedinger + http://www.diracvideo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + multimedia.video + Dirac codec library + Dirac kodek kitaplığı + C-based libraries and GStreamer plugins for the Dirac video codec. + C ile kodlanmış Dirac video kodeği kitaplıkları ve GStreamer eklentileri + https://src.fedoraproject.org/repo/pkgs/schroedinger/schroedinger-1.0.11.tar.gz/da6af08e564ca1157348fb8d92efc891/schroedinger-1.0.11.tar.gz + + orc-devel + + + ltmain_as-needed.patch + + multimedia/video/schroedinger/pspec.xml + + + schroedinger + + orc + + + /usr/lib + /usr/share/doc + + + + schroedinger-devel + Development files for schroedinger + schroedinger için geliştirme dosyaları + + schroedinger + orc-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-18 + 1.0.11 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-01 + 1.0.11 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-11 + 1.0.11 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 1.0.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.0.11 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + smpeg + http://www.lokigames.com/development/smpeg.php3 + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:gui + multimedia.video + SDL MPEG kitaplığı + SDL MPEG + SDL MPEG library + SMPEG is a SDL MPEG decoding library. + SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır. + https://sources.voidlinux.org/smpeg-0.4.5/smpeg-0.4.5.tar.gz + + libsdl-devel + freeglut-devel + mesa-devel + mesa-glu-devel + + + smpeg-0.4.5-gcc6.patch + smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff + smpeg-0.4.5-fix-header.patch + smpeg-0.4.5-libsupc++.patch + smpeg-0.4.5-link.patch + + multimedia/video/smpeg/pspec.xml + + + smpeg + + libsdl + mesa + mesa-glu + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + smpeg-devel + Development files for smpeg + smpeg için geliştirme dosyaları + + smpeg + + + /usr/bin/smpeg-config + /usr/include + /usr/share/aclocal + + + + smpeg-32bit + 32-bit shared libraries for smpeg + smpeg için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + freeglut-32bit + mesa-32bit + libsdl-32bit + mesa-glu-32bit + + + smpeg + libsdl-32bit + + + /usr/lib32 + + + + + 2018-08-05 + 0.4.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.4.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.4.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-01 + 0.4.5 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + vamp-plugin-sdk + https://www.vamp-plugins.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + BSD + library + multimedia.video + Vamp ses analizi eklenti sistemi + Vamp ses analizi eklenti sistemi + Vamp ses analizi eklenti sistemi + Vamp ses analizi eklenti sistemi + https://github.com/c4dm/vamp-plugin-sdk/archive/vamp-plugin-sdk-v2.8.tar.gz + + libsndfile-devel + + multimedia/video/vamp-plugin-sdk/pspec.xml + + + vamp-plugin-sdk + + libgcc + libsndfile + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + vamp-plugin-sdk-devel + + vamp-plugin-sdk + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-01-17 + 2.8 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2018-08-05 + 2.7.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-27 + 2.7.1 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + vid.stab + http://www.rowetel.com/?page_id=452 + + Mathias Freire + mathiasfreire45@gmail.com + + GPL + library + multimedia.video + Video stabilization library + Video stabilization library + https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz + + cmake + + multimedia/video/vid.stab/pspec.xml + + + vid.stab + + libgcc + libgomp + + + /usr/bin + /usr/lib + /usr/share/doc + + + + vid.stab-devel + Header files for vid.stab. + + vid.stab + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 1.1.0 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + vmaf + https://github.com/netflix/vmaf/ + + Idris KALP + idriskalp@gmail.com + + Apache + library + multimedia.video + Perceptual video quality assessment algorithm based on multi-method fusion + VMAF is a perceptual video quality assessment algorithm developed by Netflix. VMAF Development Kit (VDK) is a software package that contains the VMAF algorithm implementation, as well as a set of tools that allows a user to train and test a custom VMAF model. + https://github.com/Netflix/vmaf/archive/v1.3.15.tar.gz + multimedia/video/vmaf/pspec.xml + + + vmaf + + libgcc + + + /usr/bin + /usr/share/doc + /usr/share + + + + vmaf-devel + + /usr/lib + /usr/include + /usr/lib/pkgconfig + + + + + 2019-10-27 + 1.3.15 + First Release + Idris KALP + idriskalp@gmail.com + + + + + + vo-aacenc + http://sourceforge.net/projects/opencore-amr/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:cli + multimedia.video + VisualOn AAC encoder library + VisualOn AAC encoder library + http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.3.tar.gz/download + multimedia/video/vo-aacenc/pspec.xml + + + libvo-aacenc + + /usr/lib + /usr/share/doc + + + + libvo-aacenc-devel + + libvo-aacenc + + + /usr/include + /usr/lib/pkgconfig/vo-aacenc.pc + + + + + 2020-01-18 + 1.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-02 + 1.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-11 + 1.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-18 + 1.3 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + vo-amrwbenc + http://sourceforge.net/projects/opencore-amr/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + app:cli + multimedia.video + VisualOn AMR-WB encoder library + VisualOn AMR-WB encoder library + http://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc/vo-amrwbenc-0.1.3.tar.gz + multimedia/video/vo-amrwbenc/pspec.xml + + + vo-amrwbenc + + libvo-amrwbenc + + + /usr/bin/amrwb-enc + + + + libvo-amrwbenc + + /usr/lib + /usr/share/doc + + + + libvo-amrwbenc-devel + + libvo-amrwbenc + + + /usr/include + /usr/lib/pkgconfig/vo-amrwbenc.pc + + + + + 2020-01-18 + 1.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-02 + 1.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-11 + 1.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-27 + 1.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + x264 + http://developers.videolan.org/x264.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.video + Open source H264/AVC encoder + Açık kaynak kodlu H264/AVC çözücü + x264 is a free library for encoding H264/AVC video streams. + x264 H264/AVC görüntü dosyalarını açmak için kullanılan bir kütüphane + http://ftp.osuosl.org/pub/blfs/conglomeration/x264/x264-20210814.tar.xz + + yasm-devel + l-smash-devel + + multimedia/video/x264/pspec.xml + + + x264 + + l-smash + + + /usr/bin + /usr/lib + + + + x264-devel + Development files for x264 + x264 için geliştirme dosyaları + + x264 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-30 + 20210814 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 20210211 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-14 + 20200819 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-17 + 20191217 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2019-10-10 + 2245.20191010 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-12 + 2245.20190412 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2245.20180730 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-19 + 2245.19052018 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 2245.17022018 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2017-09-20 + 2245.12062016 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-07-22 + 2245.12062016 + Fix relase + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-13 + 2245.12062016 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 2245 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-02 + 2245 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + x265 + http://x265.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + multimedia.video + Open source H265/EVC encoder + Açık kaynak kodlu H265/EVC çözücü + x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard. + x265 H265/EVC görüntü dosyalarını açmak için kullanılan bir kütüphane + https://bitbucket.org/multicoreware/x265_git/get/3.5.tar.gz + + git + yasm-devel + cmake + + multimedia/video/x265/pspec.xml + + + x265 + + libgcc + + + /usr/bin + /usr/lib + + + + x265-devel + Development files for x265 + x265 için geliştirme dosyaları + + x265 /usr/include @@ -285024,137 +230672,434 @@ from a wide variety of machine architectures. - 2021-11-20 - 4.14.10 + 2021-05-05 + 3.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-11-20 - 4.14.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-10-14 + 3.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2021-06-22 - 4.14.5 - Rebuild. - Berk Çakar - berk2238@hotmail.com + 2020-01-17 + 3.2.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2021-06-20 - 4.14.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2019-10-06 + 3.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2020-12-18 - 4.13.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2019-04-14 + 3.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2020-01-19 - 4.11.5 - Version bump. - İdris Kalp - idriskalp@gmail.com + 2018-08-05 + 2.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2019-04-05 - 4.9.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-05-19 + 2.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2018-08-06 - 4.7.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-02-18 + 2.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2017-02-28 - 4.5.5 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-02-11 + 2.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-07-24 - 4.4.5 - Version Bump fix service.py - Ergün Salman - poyraz76@pisilinux.org + 2016-06-12 + 1.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-06-15 - 4.2.3 + 2016-06-09 + 1.7 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-07-30 - 4.2.3 + 2015-07-23 + 1.7 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - rpcbind - http://nfsv4.bullopensource.org + xavs + http://xavs.sourceforge.net/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPL + library + multimedia.video + XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS). + XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS). + https://sourceforge.net/projects/pisilinux/files/source/xavs-0.1.55.tar.xz + + yasm + + + xavs-dynamic-xavs.patch + xavs-0.1.55-dont-strip-symbols.patch + xavs-dup-asm.patch + xavs-x32-yasm.patch + + multimedia/video/xavs/pspec.xml + + + xavs + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + xavs-devel + Header files for xavs. + + xavs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 0.1.55 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + xavs2 + https://github.com/pkuvcl/xavs2/ + + Mathias Freire + mathiasfreire45@gmail.com + + GPL + library + multimedia.video + Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard + Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard + https://github.com/pkuvcl/xavs2/archive/1.3.tar.gz + + yasm + + multimedia/video/xavs2/pspec.xml + + + xavs2 + + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + xavs2-devel + Header files for xavs2. + + xavs2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 1.3 + First release. + İdris Kalp + idriskalp@gmail.com + + + + + + xine-lib + http://xine.sourceforge.net/ PisiLinux Community admins@pisilinux.org - BSD - service - server - Universal Addresses to RPC Program Number Mapper - Evrensel adresleri RPC program numaralarına eşleştirici - The rpcbind utility is a server that converts RPC program numbers into universal addresses. It must be running on the host to be able to make RPC calls on a server on that machine. - RPCbind aracı, RPC program numaralarını DARPA protokolü port numaralarına çeviren bir sunucu yazılımıdır. - mirrors://sourceforge/rpcbind/1.2.6/rpcbind-1.2.6.tar.bz2 + GPLv2 + library + multimedia.video + Librairies centrales pour le lecteur vidéo Xine. + Core libraries for Xine movie player + Xine çokluortam oynatıcısının çekirdek kitaplıkları + This package contains the Xine library. It can be used to play back various media, decode multimedia files from local disk drives, and display multimedia streamed over the Internet. It interprets many of the most common multimedia formats available - and some uncommon formats, too. + xine-lib çeşitli medyaları oynatmak, farklı medya yapılarını birbirine dönüştürmek, Internet üzerinden yayınları işleyip göstermek gibi işlevleri olan bir çokluortam kitaplığıdır. Yaygın çokluortam yapılarının çoğunu desteklediği gibi fazla yaygın olmayan yapıları da desteklemektedir. + https://sourceforge.net/projects/xine/files/xine-lib/1.2.12/xine-lib-1.2.12.tar.xz + + accel_vaapi.h + - libtirpc-devel - tcp-wrappers-devel + aom-devel + dav1d-devel + faad2-devel + gnutls-devel + libmng-devel + libpng-devel + libcaca-devel + libssh2-devel + openssl-devel + wayland-devel + libdvdnav-devel + libmpcdec-devel + libdvdread-devel + libjpeg-turbo-devel + libXext-devel + fontconfig-devel + freetype-devel + zlib-devel + libXinerama-devel + libXv-devel + libXvMC-devel + libogg-devel + libvorbis-devel + libglvnd-devel + libdvdcss-devel + DirectFB-devel + flac-devel + libsdl-devel + alsa-lib-devel + aalib-devel + libtheora-devel + libvpx-devel + samba-devel + libmad-devel + speex-devel + libmodplug-devel + ffmpeg-devel + a52dec-devel + libv4l-devel + pulseaudio-libs-devel + libdca-devel + libbluray-devel + libmng-devel + libSM-devel + libICE-devel + libcdio-devel + mesa-glu-devel + libvdpau-devel - server/rpcbind/pspec.xml + + list.patch + no_autopoint.patch + lpthread.patch + + multimedia/video/xine-lib/pspec.xml - rpcbind + xine-lib - libtirpc - tcp-wrappers + libglvnd + zlib + flac + speex + aalib + libXv + libmad + a52dec + libdca + libsdl + libogg + libv4l + ffmpeg + libX11 + libXvMC + libXext + libvpx + libxcb + alsa-lib + freetype + DirectFB + libvdpau + mesa-glu + libtheora + libbluray + libvorbis + fontconfig + libmodplug + aom + dav1d + faad2 + gnutls + libmng + libpng + libcaca + libssh2 + openssl + wayland + libdvdnav + libmpcdec + libdvdread + libjpeg-turbo + pulseaudio-libs - /etc - /usr/sbin/rpcbind - /usr/bin/rpcinfo - /var/lib + /usr/bin + /usr/lib + /usr/share/xine + /usr/share/xine-lib/fonts /usr/share/man - /usr/share/doc + /usr/share/doc/xine-lib + + + + xine-lib-devel + Development files for xine-lib + xine-lib için geliştirme dosyaları + xine-lib için geliştirme dosyaları + + xine-lib + + + /usr/bin/xine-config + /usr/lib/pkgconfig + /usr/include + /usr/share/aclocal - - System.Service - - - rpcbind.sysconfig - + + 2022-04-19 + 1.2.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-29 + 1.2.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-09 + 1.2.10 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-10-05 + 1.2.10 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-09-18 + 1.2.10 + Rebuild ffmpeg. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-19 + 1.2.10 + Rebuild ffmpeg. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-28 + 1.2.9 + Rebuild ffmpeg. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 1.2.9 + Rebuild ffmpeg. + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-26 + 1.2.9 + Rebuild ffmpeg. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-24 + 1.2.9 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 1.2.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-14 + 1.2.6 + Release bump. + Pisi Linux Community + admin@pisilinux.org + - 2022-03-11 + 2016-03-27 1.2.6 First release Kamil Atlı @@ -285164,337 +231109,993 @@ from a wide variety of machine architectures. - bind - https://www.isc.org/software/bind/ + xvid + http://www.xvid.org/ PisiLinux Community admins@pisilinux.org - as-is - service - server - The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server - Berkeley İnternet İsim Alanı (BIND) DNS (Alan Adı Sistemi) sunucusu - bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly. - bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir. - ftp://ftp.isc.org/isc/bind9/9.14.9/bind-9.14.9.tar.gz - - openssl-devel - libxml2-devel - libcap-devel - zlib-devel - e2fsprogs-devel - readline-devel - geoip-devel - python3-devel - python3-PLY - - - nslookup-pisilinux.patch - fedora/bind-9.5-PIE.patch - fedora/bind97-rh645544.patch - fedora/bind99-rh640538.patch - - server/bind/pspec.xml + GPLv2 + library + multimedia.video + High performance MPEG-4 video de-/encoding solution + Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü + Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality. + Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır. + Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen. + http://downloads.xvid.org/downloads/xvidcore-1.3.5.tar.gz + multimedia/video/xvid/pspec.xml - bind-libs - bind-libs contains the libraries used by both the bind server package and the tools package - bind kitaplık dosyaları - library - server.library - - openssl - libxml2 - mit-kerberos - + xvid /usr/lib + /usr/share/doc/xvid - bind-devel - bind header and development files - bind geliştirme başlıkları ve araçları - library - server.library + xvid-devel - bind-libs + xvid + /usr/share/doc/xvid/examples /usr/include - /usr/bin/isc-config.sh - /usr/share/man/man1/isc-config* - /usr/share/man/man3/lwres* - - bind-tools - Utilities for querying DNS name servers - DNS isim çözümleme araçları - app:console - network.analyzer - - bind-libs - readline - mit-kerberos - python3 - python3-PLY - - - /usr/bin - /usr/share/man/man1 - - - - bind-chroot - A chroot runtime environment for the ISC BIND DNS server 'named' - bind sunucusunu chroot içinde çalıştırmak için gerekli dizin ve dosyalar - service - - bind - - - /etc/rsyslog.d/bind_chroot.conf - /var/named/chroot/etc - /var/named/chroot - - - System.Package - System.Service - - - chroot.rsyslog - - - - bind - service - - bind-libs - libcap - libxml2 - openssl - python3 - python3-PLY - - - /etc - /usr/sbin - /var - /usr/share/man/man3 - /usr/share/man/man5 - /usr/share/man/man8 - /usr/share/doc - - - System.Service - System.Package - - - named.conf - named.confd - gentoo/named.ca - gentoo/127.zone - gentoo/localhost.zone - fedora/named.logrotate - - + + 2020-01-17 + 1.3.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + - 2020-01-15 - 9.14.9 - Version Bump + 2018-08-01 + 1.3.5 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2018-08-10 - 9.12.0 - Release Bump + 2018-03-27 + 1.3.5 + Version Bump Pisi Linux Community admin@pisilinux.org - 2017-05-09 - 9.10.2 - Release Bump - Kamil Atlı + 2017-02-11 + 1.3.4 + Version Bump + Pisi Linux Community admin@pisilinux.org - 2016-06-08 - 9.10.2 + 2016-06-09 + 1.3.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-05-08 - 9.10.2 + 2014-12-14 + 1.3.3 First release - Vedat Demir - vedat@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - ntp - http://www.ntp.org + kaffeine + http://www.kde.org/applications/multimedia/kaffeine/ PisiLinux Community admins@pisilinux.org - MIT - BSD - GPLv2+ - service - server - NTP daemon and client - NTP hizmeti ve istemcisi - Network Time Protocol utilities and daemons that will synchronize your computer's time to Coordinated Universal Time (UTC) via the NTP protocol and NTP servers. - ntp, NTP protokolü üzerinden uzak sunucuları kullanarak sisteminizin zamanını eşitlemek için gerekli araçları ve hizmetleri içerir. - https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p15.tar.gz - - fix-man-pages.sh - + GPLv1 + app:gui + multimedia.videoplayer + Kaffeine Media Player for KDE5 + KDE4 için Kaffeine Ortam Oynatıcı + Awesome media player and vcr for KDE5. + KDE4 için harika bir video oynatıcı + https://download.kde.org/stable/kaffeine/kaffeine-2.0.18.tar.xz - avahi-compat-libdns_sd-devel - libedit-devel - net-snmp-devel - perl-HTML-Parser - libcap-devel - openssl-devel - libevent-devel + qt5-base-devel + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-mysql + qt5-assistant-devel + qt5-designer-devel + libXScrnSaver-devel + ki18n-devel + kwidgetsaddons-devel + kxmlgui-devel + kio-devel + solid-devel + knotifications-devel + kidletime-devel + kdbusaddons-devel + libX11-devel + libXext-devel + gettext-devel + qt5-x11extras-devel + libv4l-devel + vlc-devel + kconfig-devel + kcoreaddons-devel + kconfigwidgets-devel + pkgconfig + extra-cmake-modules + kdoctools-devel - server/ntp/pspec.xml + multimedia/videoplayer/kaffeine/pspec.xml - ntp-server - NTP server - NTP hizmeti + kaffeine - avahi-compat-libdns_sd - libedit - net-snmp - libcap - openssl - libevent - ntp-client + qt5-sql-sqlite + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-mysql + qt5-base + libXScrnSaver + ki18n + kwidgetsaddons + kxmlgui + kio + solid + knotifications + kidletime + kdbusaddons + libX11 + qt5-x11extras + vlc-libs + libgcc + libv4l + kconfig + kcoreaddons + kconfigwidgets + kwindowsystem - /etc/ntp.conf - /etc/conf.d - /etc/ntp/crypto - /usr/bin/ntpstat - /usr/bin/update-leap - /usr/bin/calc_tickadj - /usr/share/ntp/lib/NTP/Util.pm - /usr/libexec - /usr/sbin + /usr/share + /usr/bin + /usr/lib /usr/share/doc - /usr/share/man - /var/lib/ntp - - - System.Package - System.Service - - - fedora/ntp.conf - fedora/ntpd.sysconfig - fedora/ntp.cryptopw - - - - ntp-client - NTP client - NTP istemcisi - app:console - util.admin - - /etc/conf.d/ntpdate - /etc/ntp/step-tickers - /etc/ntp/keys - /usr/sbin/ntpdate - /usr/share/man/man8/ntpdate.8* - - - System.Service - System.Package - - - fedora/ntpdate.sysconfig - fedora/ntp.step-tickers - fedora/ntp.keys - - - - ntp-docs - NTP documentation - NTP belgeleri - data:doc - - ntp-client - - - /usr/share/doc/ntp/html + /usr/share/icons - - 2021-07-14 - 4.2.8_p15 + + 2020-03-08 + 2.0.18 Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-03-27 - 4.2.8_p15 + 2019-07-11 + 2.0.18 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-03-20 - 4.2.8_p13 + 2018-05-04 + 2.0.15 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-10 - 4.2.8_p10 - Rebuild New T. + 2018-02-18 + 2.0.13 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2017-05-09 - 4.2.8_p10 - Version Bump - Kamil Atlı - suvari@pisilinux.org + 2017-10-09 + 2.0.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2016-10-27 - 4.2.8_p8 - Version Bump - Pisi Linux Community - admin@pisilinux.org + 2017-01-11 + 2.0.5 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-06-08 - 4.2.8_p4 + 2016-06-09 + 2.0.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-01 - 4.2.8_p4 + 2016-06-04 + 2.0.1 + First Release. + Stefan Gronewold + groni@pisilinux.org + + + + + + libv4l + http://freecode.com/projects/libv4l + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + library + multimedia.videoplayer + V4L wrapper for V4L2 + V4L kitaplığı + Warstwa abstrakcji dla urządzeń video4linux2 + A library to access V4L2 API with V4L1 alike calls. + V4L2 arabirimini V4L1 tarzı çağrılarla erişim sağlayan kitaplık. + libv4l to zestaw bibliotek dodający niewielką warstwę abstrakcji dla urządzeń video4linux2. Celem tej warstwy jest ułatwienie autorom aplikacji obsługi szerokiej gamy urządzeń bez pisania osobnego kodu dla różnych urządzeń tej samej klasy. + https://linuxtv.org/downloads/v4l-utils/v4l-utils-1.20.0.tar.bz2 + + qt5-base-devel + libjpeg-turbo-devel + glibc-devel + libglvnd-devel + mesa-glu-devel + alsa-lib-devel + libgcc + doxygen + eudev-devel + elfutils-devel + + multimedia/videoplayer/libv4l/pspec.xml + + + libv4l + + libjpeg-turbo + eudev + libX11 + libglvnd + mesa-glu + + + /lib/udev/rules.d + /lib/udev/rc_keymaps + /usr/lib/lib* + /usr/lib/v4l* + /usr/share/doc + + + + v4l-utils + Utilities for libv4l + Zbiór narzędzi do urządzeń Video4Linux + + elfutils + libgcc + alsa-lib + qt5-base + libv4l + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/applications + /usr/share/icons + /usr/share/locale + + + + libv4l-devel + Development files for libv4l + libv4l için geliştirme dosyaları + Pliki nagłówkowe bibliotek libv4l + + eudev-devel + libv4l + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libv4l-32bit + 32-bit shared libraries for libv4l + libv4l için 32-bit paylaşımlı kitaplıklar + 32-bitowe biblioteki libv4l + emul32 + emul32 + + libjpeg-turbo-32bit + libX11-32bit + libglvnd-32bit + mesa-glu-32bit + alsa-lib-32bit + eudev-32bit + + + eudev-32bit + libjpeg-turbo-32bit + libv4l + + + /usr/lib32/lib* + /usr/lib32/v4l* + + + + + 2021-02-20 + 1.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 1.18.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-10-16 + 1.14.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 1.14.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 1.12.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-28 + 1.10.0 + update + Serdar Soytetir + kaptan@pisilinux.org + + + 2015-05-25 + 1.0.1 + Rebuild + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-20 + 1.0.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + mplayer + http://www.mplayerhq.hu/design7/news.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + app:console + multimedia.videoplayer + Media Player for Linux + Linux için ses ve görüntü oynatıcı + MPlayer is a movie player that can run on many platforms. It plays most MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files, supported by many native codecs. + MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA dosyalarını çalabilen ve farklı platformaların kütüphanelerini de kullanarak ses ve görüntü dosyaları oynatmaya yarayan uygulama. + mplayer + https://sourceforge.net/projects/pisilinux/files/source/mplayer-38313.tar.gz + https://ffmpeg.org/releases/ffmpeg-4.4.1.tar.xz + https://mplayerhq.hu/MPlayer/skins/Clearlooks-multilingual-2.0.7.tar.bz2 + + gsm-devel + aom-devel + glib2-devel + atk-devel + lzo-devel + gtk2-devel + faac-devel + lirc-devel + xvid-devel + lame-devel + libglvnd-devel + x264-devel + enca-devel + aalib-devel + samba-devel + cairo-devel + pango-devel + libva-devel + speex-devel + faad2-devel + libdv-devel + libXv-devel + libmad-devel + libbs2b-devel + giflib-devel + libdca-devel + libogg-devel + a52dec-devel + mpg123-devel + openal-devel + libvpx-devel + libass-devel + libmng-devel + libsdl-devel + fribidi-devel + twolame-devel + libXvMC-devel + live555-devel + libcaca-devel + libXext-devel + libopus-devel + libvdpau-devel + rtmpdump-devel + libmpeg2-devel + alsa-lib-devel + openjpeg-devel + DirectFB-devel + libtheora-devel + libmpcdec-devel + libbluray-devel + libvorbis-devel + libdvdnav-devel + openjpeg2-devel + fontconfig-devel + libXrender-devel + ladspa-sdk-devel + libdvdread-devel + libXxf86vm-devel + libXinerama-devel + libXxf86dga-devel + libmatroska-devel + schroedinger-devel + opencore-amr-devel + libXScrnSaver-devel + libjpeg-turbo-devel + pulseaudio-libs-devel + libcdio-paranoia-devel + jack-audio-connection-kit-devel + lzo-devel + zlib-devel + bzip2 + cdparanoia-devel + yasm-devel + gnutls-devel + libX11-devel + libmng-devel + libpng-devel + libcdio-devel + ncurses-devel + freetype-devel + libdvdcss-devel + + + tr-locale-fix.patch + + multimedia/videoplayer/mplayer/pspec.xml + + + mplayer + app:console + mplayer + + gsm + aom + glib2 + gtk2 + xvid + lirc + enca + faac + lame + x264 + mesa + faad2 + samba + libdv + speex + aalib + libXv + libmad + libass + libdca + openal + giflib + mpg123 + libsdl + libvpx + a52dec + libogg + libopus + libXvMC + libcaca + libglvnd + libbs2b + twolame + libXext + DirectFB + openjpeg + alsa-lib + libvdpau + rtmpdump + libmpeg2 + libbluray + libdvdnav + libtheora + libvorbis + fribidi + openjpeg2 + fontconfig + libXxf86vm + libdvdread + gdk-pixbuf + libXxf86dga + libXinerama + opencore-amr + schroedinger + libjpeg-turbo + libXScrnSaver + pulseaudio-libs + libcdio-paranoia + jack-audio-connection-kit + lzo + zlib + bzip2 + gnutls + libX11 + libmng + libpng + libcdio + ncurses + freetype + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/mplayer + /usr/share/pixmaps + + + mplayer.png + extensions + test-webcam + midentify + bash_completion + + + + mplayer-gui + MPlayer gui + MPlayer arayüzü + mplayer-gui is the default graphical frontend of MPlayer. + mplayer-gui, MPlayer öntanımlı grafik arayüzünü içerir. + app:gui + mplayer + + mplayer + + + /usr/bin/gmplayer + /usr/share/applications + /usr/share/mplayer/skins + /usr/share/icons + + + mplayer.desktop + + + + + 2022-04-19 + 1.4_38313 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-30 + 1.4_38313 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 1.4_38313 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-31 + 1.4_38184 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-18 + 1.4_38184 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2019-10-25 + 1.4_38152 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2019-04-27 + 1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-13 + 1.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-28 + 1.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 1.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-15 + 1.3.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + mpv-player + https://mpv.io/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + multimedia.videoplayer + mpv is based on mplayer2 + mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video->video and audio->audio). This allows using most of FFmpeg's filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs. + https://github.com/mpv-player/mpv/archive/v0.34.1.tar.gz + + python3-devel + libzimg-devel + mesa-devel + ffmpeg-devel + wayland-devel + libarchive-devel + gnutls-devel + libglvnd-devel + pkgconfig + perl + samba-devel + libX11-devel + zlib-devel + libass-devel + lua52-devel + libsdl2-devel + yasm + libjpeg-turbo-devel + rubberband-devel + libvdpau-devel + mesa-glu-devel + libbluray-devel + libdvdread-devel + libdvdnav-devel + enca-devel + libcdio-devel + lcms2-devel + libXinerama-devel + libxkbcommon-devel + libXScrnSaver-devel + libXv-devel + libffado-devel + libva-devel + libdrm-devel + libv4l-devel + libXext-devel + libcaca-devel + alsa-lib-devel + libvdpau-devel + libXrandr-devel + wayland-devel + wayland-cursor + wayland-protocols-devel + pulseaudio-libs-devel + libcdio-paranoia-devel + jack-audio-connection-kit-devel + libvdpau-devel + libavc1394-devel + libarchive-devel + python3-youtube_dl + + + 05_add-keywords.patch + + multimedia/videoplayer/mpv-player/pspec.xml + + + mpv-player + + libzimg + mesa + wayland + libarchive + lua52 + enca + libglvnd + zlib + lcms2 + libXv + libva + samba + ffmpeg + libX11 + libass + libdrm + libv4l + libXext + libcaca + libcdio + alsa-lib + libvdpau + libXrandr + rubberband + libbluray + libdvdnav + libdvdread + libXinerama + libxkbcommon + libXScrnSaver + libjpeg-turbo + wayland-client + wayland-cursor + pulseaudio-libs + libcdio-paranoia + python3-setuptools + python3-youtube_dl + jack-audio-connection-kit + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/applications + /usr/share/icons + /usr/share + /usr/share/zsh + /usr/share/mpv + + + + mpv-player-devel + + mpv-player + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-01-04 + 0.34.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-02 + 0.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-29 + 0.33.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-29 + 0.33.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-05 + 0.32.0 + rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-15 + 0.32.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-22 + 0.31.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-10-28 + 0.30.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-14 + 0.29.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-12 + 0.29.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-28 + 0.29.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-03 + 0.29.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 0.29.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-05 + 0.28.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 0.27.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 0.27.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 0.24.0 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2017-01-11 + 0.23.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-15 + 0.17.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.16.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-28 + 0.16.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-03-27 + 0.14 First release Stefan Gronewold groni@pisilinux.org @@ -285503,29 +232104,10235 @@ from a wide variety of machine architectures. - sshpass - https://sourceforge.net/projects/sshpass/ + obs-studio + https://obsproject.com/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + app:gui + multimedia.videoplayer + OBS-Studio is a rewrite of what was formerly known as Open Broadcaster Software + OBS-Studio is a rewrite of what was formerly known as Open Broadcaster + Software + OBS-Studio software was originally designed for recording and streaming live video content, efficiently + OBS-Studio software was originally designed for recording and streaming live + video content, efficiently + obs-studio + https://github.com/obsproject/obs-studio/archive/27.1.3.tar.gz + + curl-devel + dbus-devel + x264-devel + zlib-devel + eudev-devel + luajit-devel + glib2-devel + ffmpeg-devel + libX11-devel + libv4l-devel + libxcb-devel + jansson-devel + mbedtls-devel + python3-devel + alsa-lib-devel + libv4l-devel + vlc-devel + vlc-libs + pkgconfig + freetype-devel + libglvnd-devel + pipewire-devel + qt5-svg-devel + rnnoise-devel + qt5-base-devel + libfdk-aac-devel + libXfixes-devel + speexdsp-devel + fontconfig-devel + libXcomposite-devel + qt5-x11extras-devel + pulseaudio-libs-devel + jack-audio-connection-kit-devel + cmake + wayland-devel + wayland-client + wayland-cursor + wayland-server + + multimedia/videoplayer/obs-studio/pspec.xml + + + obs-studio + + curl + dbus + x264 + zlib + eudev + luajit + glib2 + ffmpeg + libX11 + libgcc + libv4l + libxcb + speexdsp + jansson + mbedtls + python3 + alsa-lib + freetype + libglvnd + pipewire + qt5-svg + rnnoise + wayland + qt5-base + libXfixes + fontconfig + vlc-libs + ffmpeg + libfdk-aac + libXcomposite + qt5-x11extras + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + obs-studio.desktop + obs-logo.png + + + + obs-studio-devel + Development files for obs-studio + + obs-studio + libX11-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-11-09 + 27.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-19 + 26.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 24.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-04 + 24.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-12 + 23.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 23.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-28 + 21.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 21.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-03 + 17.0.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-11 + 17.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-07-21 + 0.15.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-07-13 + 0.15.1 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + qmplay2 + http://zaps166.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPL + app:gui + multimedia.videoplayer + QMPlay2 is a video and audio player which can play most formats and codecs + It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX). It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and Prostopleer browser. + https://github.com/zaps166/QMPlay2/releases/download/20.12.16/QMPlay2-src-20.12.16.tar.xz + + qt5-base-devel + qt5-qdbusviewer + qt5-x11extras-devel + qt5-assistant-devel + qt5-designer-devel + qt5-svg-devel + qt5-linguist + qt5-declarative-devel + pkgconfig + cmake + ffmpeg-devel + libva-devel + libgme-devel + libvdpau-devel + taglib-devel + portaudio-devel + openal-devel + libcdio-devel + libcddb-devel + libass-devel + libX11-devel + gst-libav + pulseaudio-libs-devel + libXv-devel + mesa-devel + mesa-glu-devel + alsa-lib-devel + libva-devel + + multimedia/videoplayer/qmplay2/pspec.xml + + + qmplay2 + + qt5-base + qt5-x11extras + alsa-lib + mesa + libXv + libva + libgme + ffmpeg + libX11 + libcdio + libass + libgcc + taglib + libcddb + libvdpau + pulseaudio-libs + + + /usr/bin + /usr/share + /usr/share/qmplay2 + /usr/share/icons + /usr/share/applications + /usr/lib + /usr/share/doc + + + QMPlay2.png + QMPlay2.desktop + QMPlay2_enqueue.desktop + + + + qmplay2-devel + Development files for qmplay2 + + qmplay2 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2021-02-13 + 20.12.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 19.12.19 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-10 + 18.12.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-27 + 17.12.31 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 17.12.31 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-08 + 17.02.12 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-11 + 16.12.23 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-19 + 16.06.01 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-12 + 16.05.06 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + simplescreenrecorder + https://www.maartenbaert.be/simplescreenrecorder/ + + ali algul + aligulle3801@gmail.com + + LGPLv3 + app + multimedia.videoplayer + creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use + creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use + creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use + creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use + https://codeload.github.com/MaartenBaert/ssr/tar.gz/0.4.3 + + libv4l-devel + jack-audio-connection-kit-devel + cmake + libX11-devel + mesa-glu-devel + ffmpeg-devel + alsa-lib-devel + pulseaudio-libs-devel + qt5-base-devel + qt5-x11extras-devel + qt5-linguist + libXinerama-devel + libXi-devel + + multimedia/videoplayer/simplescreenrecorder/pspec.xml + + + simplescreenrecorder + + ffmpeg + libXi + libX11 + libgcc + libv4l + libXext + alsa-lib + mesa-glu + qt5-base + qt5-x11extras + libXfixes + libXinerama + pulseaudio-libs + jack-audio-connection-kit + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/man + /usr/share/mateinfo + /usr/share/doc + + + + + 2021-02-11 + 0.4.3 + First release + ali algul + aligulle3801@gmail.com + + + + + + smplayer + https://www.smplayer.info/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.videoplayer + A complete front-end for MPlayer + Gelişmiş bir mplayer önyüzü + SMPlayer es un frontend de Mplayer + smplayer is Qt application which intends to be a complete front-end for MPlayer, from basic features like playing videos, DVDs, and VCDs to more advanced features like support for MPlayer filters and more. + smplayer Qt ile yazılmış, gelişmiş bir mplayer önyüzüdür. Basit özelliklerinin yanı sıra, TV, DVD, VCD oynatma, mplayer filtrelerini kullanabilme gibi yetenekleri de bulunmaktadır. + SMPlayer es un reproductor multimedia gratuito y para Windows y Linux con códecs incorporados, que puede reproducir prácticamente cualquier formato de vídeo y audio. No necesita ningún códec externo. Simplemente instala SMPlayer y podrás reproducir cualquier formato sin la molestia de tener que buscar e instalar paquetes de códecs. + smplayer + https://sourceforge.net/projects/smplayer/files/SMPlayer/22.2.0/smplayer-22.2.0.tar.bz2 + https://downloads.sourceforge.net/smplayer/smplayer-themes-20.11.0.tar.bz2 + https://downloads.sourceforge.net/smplayer/smplayer-skins-20.11.0.tar.bz2 + + zlib-devel + qt5-linguist + qt5-base-devel + qt5-script-devel + libxkbcommon-devel + + multimedia/videoplayer/smplayer/pspec.xml + + + smplayer + + qt5-base + qt5-script + libX11 + zlib + libgcc + mpv-player + + + /usr/bin + /usr/share/smplayer + /usr/share/applications + /usr/share/icons + /usr/share/kde4 + /usr/share/man + /usr/share/doc/smplayer + /usr/share/metainfo/smplayer.appdata.xml + + + + + 2022-04-12 + 22.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-07 + 21.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 21.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-17 + 21.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-08 + 20.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-15 + 20.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-03 + 19.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-29 + 19.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-28 + 19.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-03 + 19.5.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-30 + 19.1.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 18.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-03 + 18.10.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-03 + 18.9.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 18.6.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-27 + 18.5.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-30 + 18.4.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-26 + 18.3.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-02 + 18.2.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-10 + 18.2.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 18.1.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-09 + 17.11.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-03 + 17.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-11 + 15.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 15.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 15.11 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + smtube + http://smplayer.sourceforge.net/en/info + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.videoplayer + Play and download Youtube videos + Youtube video indirme yöneticisi + SMTube allows to search, play and download Youtube videos. + SMTube, youtube videolarını oynatmak indirmek ve videolar içerisinde arama yapmak için bir uygulamadır. + https://sourceforge.net/projects/smtube/files/SMTube/21.7.0/smtube-21.7.0.tar.bz2 + + qt5-base-devel + qt5-script-devel + qt5-location-devel + qt5-webkit-devel + qt5-linguist + + multimedia/videoplayer/smtube/pspec.xml + + + smtube + + qt5-base + qt5-script + qt5-webkit + qt5-location + libgcc + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2021-08-31 + 21.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-28 + 20.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 20.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-29 + 19.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 17.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-26 + 17.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-10 + 17.1.0 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-03 + 17.1.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-11 + 16.7.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 15.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-06 + 15.11 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + vasviewer + http://azsky2.html.xdomain.jp/soft/vasviewer.html + + fury + uglyside@yandex.ru + + MIT + app:gui + multimedia.videoplayer + VapourSynth viewer. + Load the script file and display the frame image. Also you can save the frame image as PNG. + https://gitlab.com/azelpg/vasviewer/-/archive/v1.0.1/vasviewer-v1.0.1.tar.bz2 + + libX11-devel + libpng-devel + libXext-devel + libXcursor-devel + fontconfig-devel + vapoursynth-devel + + multimedia/videoplayer/vasviewer/pspec.xml + + + vasviewer + + zlib + libX11 + libpng + libXext + freetype + fontconfig + libXcursor + vapoursynth + + + /usr/bin + /usr/share + /usr/share/vasviewer + + + + + 2021-12-11 + 1.0.1 + First build + fury + uglyside@yandex.ru + + + + + + vlc + http://www.videolan.org/vlc + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:gui + multimedia.videoplayer + VLC media player + VLC çoklu ortam oynatıcısı + Odtwarzacz plików multimedialnych i serwer strumieni + VLC reproductor multimedia + VLC is a famous video player and streamer. + Media oynatıcısı ve yayın dinleyici + VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci. + VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia + vlc + http://mirrors.netix.net/vlc/vlc/3.0.17.3/vlc-3.0.17.3.tar.xz + + srt-devel + qt5-svg-devel + wayland-client + libcdio-devel + eudev-devel + lua-devel + libgcrypt-devel + xcb-proto + zlib-devel + gtk2-devel + gtk3-devel + zvbi-devel + faac-devel + flac-devel + lirc-devel + mesa-devel + x265-devel + x264-devel + dbus-devel + avahi-devel + samba-devel + aalib-devel + faad2-devel + speex-devel + libva-devel + libXt-devel + libXv-devel + cairo-devel + util-macros + libxcb-devel + libarchive-devel + libXau-devel + libtar-devel + libvpx-devel + ffmpeg-devel + libass-devel + libXpm-devel + gnutls-devel + libv4l-devel + libdca-devel + libmtp-devel + libmad-devel + libogg-devel + libsdl-devel + libsdl2-devel + taglib-devel + a52dec-devel + libebml-devel + libxml2-devel + libcddb-devel + libcaca-devel + libXext-devel + librsvg-devel + libcdio-devel + fribidi-devel + libupnp-devel + libkate-devel + freerdp-devel + twolame-devel + minizip-devel + live555-devel + libopus-devel + freetype-devel + libXdmcp-devel + kernel-headers + xcb-util-devel + libmpeg2-devel + alsa-lib-devel + libshout-devel + libdvbpsi-devel + libtheora-devel + libbluray-devel + libgcrypt-devel + libnotify-devel + libssh2-devel + openssl-devel + libvorbis-devel + libdc1394-devel + ncurses-devel + libid3tag-devel + sdl-image-devel + libmpcdec-devel + libdvdcss-devel + libdvdnav-devel + vcdimager-devel + libraw1394-devel + fluidsynth-devel + libdvdread-devel + fontconfig-devel + libavc1394-devel + libmodplug-devel + libXxf86vm-devel + gdk-pixbuf-devel + libmatroska-devel + libXinerama-devel + schroedinger-devel + crystalhd-firmware + libgpg-error-devel + libvncserver-devel + libsamplerate-devel + libjpeg-turbo-devel + qt5-base-devel + qt5-x11extras-devel + libchromaprint-devel + gstreamer-devel + pulseaudio-libs-devel + xcb-util-keysyms-devel + gst-plugins-base-devel + zvbi-devel + wayland-protocols-devel + + + vlc-2.2.8-freerdp-2.patch + + multimedia/videoplayer/vlc/pspec.xml + + + vlc + + lua + dbus + qt5-base + qt5-svg + wayland-client + qt5-x11extras + ncurses + libtar + libXpm + fribidi + libXi + libXext + minizip + zlib + libX11 + libgcc + freetype + vlc-libs + libXinerama + dejavu-fonts + + + /usr/bin + /usr/lib/vlc/plugins/gui + /usr/share/vlc + /usr/share/applications + /usr/share/icons + /usr/share/kde4/apps/solid/actions + /usr/share/metainfo + /usr/share/solid + /usr/share/doc + /usr/share/man + /usr/share/locale + + + System.Package + + + + vlc-lua + Lua scripting for VLC + + lua + vlc-libs + + + /usr/lib/vlc/lua + /usr/lib/vlc/plugins/lua/liblua_plugin.so + + + + vlc-libs + Codec and plugin library files for VLC + vlc için codec ve eklenti kitaplık dosyaları + + lua + libX11 + x264 + libgcc + freetype + dbus + zlib + gtk3 + lirc + flac + zvbi + x265 + libglvnd + libva + faad2 + samba + speex + aalib + cairo + glib2 + eudev + libpng + libxcb + harfbuzz + libidn + libmad + libass + gnutls + libdca + libsdl + ffmpeg + a52dec + libmtp + taglib + libogg + libvpx + libxml2 + libssh2 + libcddb + freerdp + libopus + libcaca + twolame + libebml + libcdio + librsvg + live555 + minizip + fribidi + libkate + libupnp + libshout + libarchive + avahi-libs + alsa-lib + libvdpau + libmpeg2 + libdvbpsi + libdc1394 + sdl-image + vcdimager + libbluray + libnotify + libdvdnav + libmpcdec + libtheora + libvorbis + libgcrypt + fontconfig + libraw1394 + fluidsynth + libmodplug + libdvdread + gdk-pixbuf + libavc1394 + libmatroska + schroedinger + wayland-client + libvncserver + libgpg-error + libsamplerate + libjpeg-turbo + gstreamer + libchromaprint + pulseaudio-libs + xcb-util-keysyms + crystalhd-firmware + gst-plugins-base + + + /usr/lib/libvlc* + /usr/lib/vlc + + + + vlc-devel + Development files for vlc + vlc için geliştirme dosyaları + Pliki nagłówkowe vlc + + vlc-libs + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-24 + 3.0.17.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-30 + 3.0.16 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-30 + 3.0.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-04 + 3.0.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 3.0.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-17 + 3.0.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-19 + 3.0.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-17 + 3.0.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-29 + 3.0.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-03 + 3.0.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-14 + 3.0.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 3.0.8 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-04-12 + 3.0.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-22 + 3.0.6 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-28 + 3.0.5 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 3.0.3 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-19 + 3.0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-28 + 3.0.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-03 + 3.0.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-18 + 3.0.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 2.2.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-21 + 2.2.8 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-05 + 2.2.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-12-24 + 2.2.4 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-20 + 2.2.4 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-09 + 2.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.2.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + vokoscreenNG + https://github.com/vkohaupt/vokoscreenNG + + Pisilinux Community + admins@pisilinux.org + + GPLv2 + app:gui + multimedia.videoplayer + New desktop recording program. + VokscreenNG is a user friendly Open Source screencaster for Linux and Windows. The new name is now vokoscreenNG and has been rewritten from scratch. + https://github.com/vkohaupt/vokoscreenNG/archive/refs/tags/3.2.0.tar.gz + + libX11-devel + qt5-linguist + qt5-base-devel + gstreamer-devel + wayland-devel + wayland-client + pulseaudio-libs-devel + qt5-x11extras-devel + qt5-multimedia-devel + + + 0001-Add-better-integration-for-Linux.patch + + multimedia/videoplayer/vokoscreenNG/pspec.xml + + + vokoscreenNG + + glib2 + libX11 + libgcc + qt5-base + gstreamer + gst-libav + pulseaudio + wayland-client + pulseaudio-libs + qt5-x11extras + qt5-multimedia + gstreamer-vaapi + gst-plugins-bad + gst-plugins-base + gst-plugins-good + gst-plugins-ugly + libva-intel-driver + + + /usr/bin/vokoscreenNG + /usr/share/applications/vokoscreenNG.desktop + /usr/share/pixmaps/vokoscreenNG.png + /usr/share/metainfo/vokoscreenNG.appdata.xml + /usr/share/icons/hicolor/256x256/apps/vokoscreenNG.png + /usr/share/doc + + + + + 2022-05-28 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-31 + 3.0.9 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2021-05-31 + 3.0.9 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-05-11 + 3.0.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-13 + 3.0.6 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-04-11 + 3.0.3 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-02-01 + 3.0.1 + Rewrited. + fury + uglyside@yandex.ru + + + + + + avahi + http://avahi.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + network.analyzer + Local network service discovery + Yerel ağ hizmeti bulma sistemi + avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. + avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz. + https://github.com/lathiat/avahi/releases/download/v0.7/avahi-0.7.tar.gz + + gtk2-devel + gtk3-devel + libcap-devel + libdaemon-devel + gobject-introspection-devel + libepoxy-devel + at-spi2-core-devel + gdbm-devel + intltool + python3 + + network/analyzer/avahi/pspec.xml + + + avahi-glib + Libraries for easy use of avahi from glib applications + Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar + + glib2 + avahi + avahi-libs + + + /usr/lib/libavahi-glib.* + /usr/lib/libavahi-gobject.* + + + + avahi-glib-devel + Development files for avahi-glib + avahi-glib için geliştirme dosyaları + + avahi-glib + avahi-devel + + + /usr/include/avahi-glib + /usr/include/avahi-gobject + /usr/lib/pkgconfig/avahi-glib.pc + /usr/lib/pkgconfig/avahi-gobject.pc + + + + avahi-ui + Gtk user interface library for Avahi + avahi için geliştirme dosyaları + + gdbm + gtk2 + glib2 + avahi-libs + avahi-glib + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/libavahi-ui.so* + + + + avahi-ui-devel + Development files for avahi-ui + avahi-ui için geliştirme dosyaları + + gtk2-devel + avahi-ui + avahi-devel + avahi-glib-devel + + + /usr/include/avahi-ui + /usr/lib/pkgconfig/avahi-ui.pc + + + + avahi-ui-gtk3 + Gtk3 user interface library for Avahi + avahi-gtk3, Gtk3 user interface library for Avahi + + gdbm + glib2 + gtk3 + avahi-libs + avahi-glib + atk + cairo + pango + gdk-pixbuf + + + /usr/lib/libavahi-ui-gtk3.so* + + + + avahi-ui-gtk3-devel + Development files for avahi-ui-gtk3 + avahi-ui-gtk3 için geliştirme dosyaları + + gtk2-devel + avahi-ui-gtk3 + avahi-devel + avahi-glib-devel + gtk3-devel + + + /usr/lib/pkgconfig/avahi-ui-gtk3.pc + + + + avahi-ui-tools + UI tools for mDNS browsing + Grafiksel mDNS tarama araçları + + gtk3 + glib2 + avahi + avahi-ui + avahi-glib + avahi-ui-gtk3 + avahi-libs + gtk3 + + + /usr/lib/python*/site-packages + /usr/bin/b* + /usr/bin/avahi-discover* + /usr/bin/avahi-bookmarks + /usr/share/man/man1/b* + /usr/share/man/man1/avahi-discover* + /usr/share/man/man1/avahi-bookmarks* + /usr/share/avahi/interfaces + /usr/share/applications/b* + /usr/share/applications/avahi-discover.desktop + + + + avahi-compat-howl + Libraries for howl compatibility + howl uyumluluk kitaplıkları + + avahi + avahi-libs + + + /usr/lib/libhowl.so* + + + + avahi-compat-howl-devel + Development files for avahi-compat-howl + avahi-compat-howl için geliştirme dosyaları + + avahi-compat-howl + + + /usr/include/avahi-compat-howl + /usr/lib/pkgconfig/avahi-compat-howl.pc + /usr/lib/pkgconfig/howl.pc + + + + avahi-compat-libdns_sd + Libraries for Apple Bonjour mDNSResponder compatibility + libdns_sd uyumluluk kitaplıkları + + avahi + avahi-libs + + + /usr/lib/libdns_sd.so* + + + + avahi-compat-libdns_sd-devel + Development files for avahi-compat-libdns_sd + avahi-compat-libdns_sd için geliştirme dosyaları + + avahi-compat-libdns_sd + + + /usr/include/avahi-compat-libdns_sd + /usr/include/dns_sd.h + /usr/lib/pkgconfig/avahi-compat-libdns_sd.pc + /usr/lib/pkgconfig/libdns_sd.pc + + + + avahi-libs + Libraries needed to run programs that use avahi + Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar + + dbus + + + /usr/lib/libavahi-common.so* + /usr/lib/libavahi-client.so* + + + + avahi + + dbus + expat + libcap + libdaemon + avahi-libs + + + /usr/sbin/avahi-daemon + /usr/lib/libavahi-core.so* + /etc/avahi/avahi-daemon.conf + /etc/avahi/hosts + /etc/avahi/services/ssh.service + /etc/dbus-1/system.d/avahi-dbus.conf + /usr/share/avahi + /usr/share/dbus-1/interfaces/*.xml + /usr/share/dbus-1/system-services + /usr/lib/avahi/service* + /lib/systemd/system + /usr/share/locale + /usr/share/doc + /usr/share/man/man5/* + /usr/share/man/man8/avahi-daemon.* + /run/avahi-daemon + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/lib/tmpfiles.d/avahi.conf + + + System.Service + System.Package + + + avahi.conf + + + + avahi-autoipd + Link-local IPv4 address automatic configuration daemon (IPv4LL) + Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL) + + libdaemon + + + /etc/avahi/avahi-autoipd.action + /usr/sbin/avahi-autoipd + /usr/share/man/man8/avahi-autoipd.* + /var/lib/avahi-autoipd + + + + avahi-dnsconfd + Configure local unicast DNS settings based on information published in mDNS + Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti + + libdaemon + avahi + avahi-libs + + + /etc/avahi/avahi-dnsconfd.action + /usr/sbin/avahi-dnsconfd + /usr/share/man/man8/avahi-dnsconfd.* + + + System.Service + + + + avahi-tools + Command line tools for mDNS browsing and publishing + mDNS taramak ve yayınlamak için komut satırı araçları + + gdbm + avahi + avahi-libs + + + /usr/bin + /usr/share/man/man1 + + + + avahi-devel + Development files for avahi + avahi için geliştirme dosyaları + + avahi-libs + + + /usr/lib/pkgconfig/avahi-core.pc + /usr/lib/pkgconfig/avahi-client.pc + /usr/include/avahi-client + /usr/include/avahi-common + /usr/include/avahi-core + + + + + 2021-07-02 + 0.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-07 + 0.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-03-24 + 0.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 0.7 + Rebuild New T. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-18 + 0.7 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.6.32 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.6.31 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.6.31 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + gnu-netcat + http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.analyzer + A tool designed to read and write data across connections using TCP/IP + A simple Unix utility which reads and writes data across network connections using TCP or UDP protocol. It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. + mirrors://sourceforge/netcat/netcat-0.7.1.tar.bz2 + network/analyzer/gnu-netcat/pspec.xml + + + gnu-netcat + + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/locale + /usr/share/man/man1 + + + + + 2021-07-02 + 0.7.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 0.7.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-15 + 0.7.1 + Release bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-07-02 + 0.7.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + iftop + http://www.ex-parrot.com/~pdw/iftop/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.analyzer + Bandwidth monitor + Bantgenişliği izleyicisi + iftop displays bandwidth usage on an interface. + iftop ağ bağlantılarınız üzerindeki veri akışını gösterir. + http://www.ex-parrot.com/~pdw/iftop/download/iftop-1.0pre4.tar.gz + + libpcap-devel + ncurses-devel + + network/analyzer/iftop/pspec.xml + + + iftop + + libpcap + ncurses + + + /usr/sbin + /usr/share/doc/iftop + /usr/share/man + + + iftoprc + + + + + 2016-03-02 + 1.0.4 + Rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2014-01-26 + 1.0.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-01 + 1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libpcap + http://www.tcpdump.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + network.analyzer + A system-independent library for user-level network packet capture + Kullanıcı seviyesinde ağ paketi yakalamak için bir sistem bağımsız kitaplığı + libpcap (Packet CAPture) fourni un cadre de développement portable pour la surveillance réseau de bas niveau. On peut l'utiliser pour collecter des statistiques réseau, surveiller la sécurité, corriger le réseau, etc. + libpcap (Packet CAPture) provides a portable framework for low-level network monitoring. Applications include network statistics collection, security monitoring, network debugging, etc. + libpcap (Packet CAPture) düşük-seviye ağların izlenmesi için kullanılan bir kitaplıktır. Ağ istatistikleri, güvenlik izleyicisi, ağ hata gözleme gibi uygulamalar genellikle bu kitaplığı kullanır. + libpcap (Packet CAPture) facilita un framework portable para monitoreo de redes a a bajo nivel. Aplicaciones abarcan sistemas de estadísticas de red, monitoreo de seguridad, depuración de red, etc. + http://www.tcpdump.org/release/libpcap-1.10.1.tar.gz + + bluez-libs-devel + + network/analyzer/libpcap/pspec.xml + + + libpcap + + /usr/lib + /usr/share/doc + /usr/share/man + + + + libpcap-devel + Development files for libpcap + libpcap için geliştirme dosyaları + + libpcap + + + /usr/bin/pcap-config + /usr/include + /usr/share/man/man3 + + + + + 2021-07-02 + 1.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.9.1 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-13 + 1.8.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-15 + 1.8.1 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 1.8.1 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 1.7.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-25 + 1.7.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libupnp + https://github.com/pupnp/pupnp + + Pisilinux Community + admins@pisilinux.org + + BSD + library + network.analyzer + Librairie UPnP. + Portable UPnP library. + Taşınabilir UPnP kitaplığı + Portabels UPnP Bibliothek + The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux. + mirrors://sourceforge/pupnp/libupnp-1.14.12.tar.bz2 + + kernel-headers + + network/analyzer/libupnp/pspec.xml + + + libupnp + + /usr/lib + /usr/share/doc + + + + libupnp-devel + Development files for libupnp. + libupnp için geliştirme dosyaları + + libupnp + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-16 + 1.14.12 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-02 + 1.14.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-13 + 1.14.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2018-08-07 + 1.6.25 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.6.25 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.6.20 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.6.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 1.6.19 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + openslp + http://www.openslp.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + service + network.analyzer + An open-source implementation of Service Location Protocol + Servis Yer Protokolünün (Service Location Protocol - SLP) bir açık kaynak uyarlaması + Le Service Location Protocol (Protocole de Localisation de Service) est un protocole standard de recherche de l'IETF fournissant un framework (cadre de développement) pour permettre aux application résau de découvrir l'existence, la localisation et la configuration de services réseaux au sein des réseaux d'entreprises. + Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. + SLP (Service Location Protocol – Hizmet Yer Protokolu), ağlara bağlı hizmetlerin bulunabilmesi için gereken altyapıyı sağlar. + Service Location Protocol es un protocolo según estándar IETF, que provee un framework que permite a aplicaciones descubrir la existencia, locación y configuración de servicios de red en redes empresariales. + mirrors://sourceforge/openslp/openslp-2.0.0.tar.gz + + zlib-devel + openssl-devel + doxygen + docbook-xsl + + + openslp-2.0.0-CVE-2016-7567.patch + openslp-2.0.0-CVE-2017-17833.patch + openslp-2.0.0-fdr-CVE-2019-5544.patch + openslp-2.0.0-null-pointer-deref.patch + openslp-2.0.0-openssl-1.1-fix.patch + + network/analyzer/openslp/pspec.xml + + + openslp + + openssl + + + /etc/slp.conf + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/doc/openslp/html/IntroductionToSLP + /usr/share/doc/openslp/html/UsersGuide + /usr/share/doc/openslp/html/faq* + /var/log + + + + openslp-server + OpenSLP server daemon + OpenSLP hizmet sunucusu + openslp-server contains ths OpenSLP server daemon to dynamically register services. + openslp-server, dinamik hizmet kaydı için gerekli OpenSLP sunucusunu içerir. + + openssl + openslp + + + /etc/slp.reg + /etc/slp.spi + /usr/sbin/slpd + + + + openslp-devel + Development files for openslp + openslp için geliştirme dosyaları + + openslp + zlib-devel + openssl-devel + + + /usr/include + /usr/share/doc/openslp/html/ProgrammersGuide + + + + + 2021-07-02 + 2.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-07 + 2.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 2.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-06 + 2.0.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-01 + 2.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + rrdtool + http://oss.oetiker.ch/rrdtool/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + network.analyzer + A system to store and display time-series data + Zaman serisi verilerini saklamak ve göstermek için bir araç + RRD is the acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine/room temperature, server load average). + RRD, Round Robin Database için kullanılan bir kısaltmadır. RRD, zaman serisi verilerini (ör. ağ bantgenişliği, makine/oda sıcaklığı, ortalama sunucu yükü) saklamak ve göstermek için kullanılan bir sistemdir. + http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.2.tar.gz + + perl + groff + lua-devel + tcl-devel + cairo-devel + pango-devel + dejavu-fonts + glib2-devel + python3-devel + libxml2-devel + libart_lgpl-devel + python3-setuptools + tcp-wrappers-devel + ruby-devel + + network/analyzer/rrdtool/pspec.xml + + + rrdtool + A system to store and display time-series data + + lua + tcl + perl + ruby + cairo + glib2 + pango + libpng + python3 + libxml2 + rubygems + libart_lgpl + dejavu-fonts + tcp-wrappers + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/rrdtool + /usr/share/locale + + + + rrdtool-devel + Development header files for rrdtool. + rrdtool için geliştirme dosyaları + rrdtool-devel, rrdtool için geliştirme dosyalarını içerir. + + rrdtool + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 1.7.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-28 + 1.7.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 1.7.2 + * Rebuild due to new ruby + * Fix translation + Blue Devil + bluedevil@sctzine.com + + + 2020-01-18 + 1.7.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-01 + 1.7.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 1.7.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 1.7.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 1.6.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-15 + 1.5.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 1.5.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + traceroute + http://traceroute.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.analyzer + Utility to trace the route of IP packets + IP paketlerinin izlediği yolları takip etme aracı + The traceroute utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute is used as a network debugging tool. If you're having network connectivity problems, traceroute will show you where along the route the trouble is. + traceroute IP paketlerinin ağda veya internette izlediği yolu görüntüler. Ağda bağlantı probleminiz varsa, traceroute problemin yol üzerinde tam olarak nereden kaynaklandığını gösterir. + https://sourceforge.net/projects/traceroute/files/traceroute/traceroute-2.1.0/traceroute-2.1.0.tar.gz + network/analyzer/traceroute/pspec.xml + + + traceroute + + /bin + /usr/share/doc + /usr/share/man + + + + + 2021-07-02 + 2.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 2.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-07 + 2.1.0 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + usbredir + https://www.spice-space.org/usbredir.html + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2.1 + library + app:console + network.analyzer + USB traffic redirection protocol + usbredir is the name of a network protocol for sending USB device traffic over a network connection. It is also the name of the software package offering a parsing library, a usbredirhost library and several utilities implementing this protocol. + https://spice-space.org/download/usbredir/usbredir-0.11.0.tar.xz + + meson + libusb-devel + glib2-devel + + network/analyzer/usbredir/pspec.xml + + + usbredir + a network protocol for sending USB device traffic over a network connection. + + glib2 + libusb + + + /usr/bin + /usr/share/doc/ + /usr/share/man + /usr/lib/libusbredirhost.so* + /usr/lib/libusbredirparser.so* + + + + usbredir-devel + Development files for usbredir + + libusb-devel + usbredir + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-10 + 0.11.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + wireshark + http://www.wireshark.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + network.analyzer + Network traffic analyzer + Ağ trafiği çözümleyicisi + Wireshark allows you to examine protocol data stored in files or as it is captured from wired or wireless (WiFi or Bluetooth) networks, USB devices, and many other sources. It supports dozens of protocol capture file formats and understands more than a thousand protocols. + Wireshark, dosyalarda saklanan veya kablolu veya kablosuz (WiFi veya Bluetooth) ağlardan, USB aygıtlarından ve diğer birçok kaynaktan alınan protokol verilerini incelemenize olanak tanır. Düzinelerce protokol yakalama dosya formatını destekler ve binden fazla protokolü anlar. + https://www.wireshark.org/download/src/all-versions/wireshark-3.4.7.tar.xz + + cmake + meson + glib2-devel + libpcap-devel + zlib-devel + lua52-devel + mit-kerberos + e2fsprogs-devel + gnutls-devel + libmaxminddb-devel + libgcrypt-devel + libcap-devel + sbc-devel + c-ares-devel + libxml2-devel + libssh-devel + libnl-devel + tiff-devel + lz4-devel + libnghttp2-devel + qt5-multimedia-devel + qt5-svg-devel + qt5-linguist + minizip-devel + zstd-devel + brotli-devel + speexdsp-devel + snappy-devel + libopus-devel + libilbc-devel + libxslt-devel + doxygen + + network/analyzer/wireshark/pspec.xml + + + wireshark + + lz4 + sbc + zlib + zstd + glib2 + lua52 + brotli + c-ares + gnutls + snappy + libssh + libilbc + libopus + libxml2 + libgcrypt + libnghttp2 + mit-kerberos + + + /usr/bin + /usr/lib/lib*.so* + /usr/lib/wireshark + /usr/share/appdata + /usr/share/applications + /usr/share/doc + /usr/share/icons + /usr/share/man + /usr/share/mime + /usr/share/wireshark + + + System.Package + + + + wireshark-devel + + wireshark + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-08-23 + 3.4.7 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + gloox + https://camaya.net/gloox + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + library + network.chat + Full-featured Jabber/XMPP client library + Çok işlevli Jabber/XMMP kitaplığı + gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free integration of Jabber/XMPP functionality into existing applications. + gloox, Jabber/XMMP istemcileri için C++ ile yazılmış çok işlevli bir kitaplıktır. Mevcut istemcilere kolayca Jabber/XMMP desteği eklenmesini sağlayarak standartlara uygun istemciler yazılmasına olanak verir. + https://camaya.net/download/gloox-1.0.23.tar.bz2 + + gnutls-devel + zlib-devel + + network/chat/gloox/pspec.xml + + + gloox + Full-featured Jabber/XMPP client library + + zlib + libgcc + libidn + gnutls + + + /usr/bin + /usr/lib + /usr/share/doc + + + + gloox-devel + Development files for gloox + gloox için geliştirme dosyaları + gloox-devel, gloox için geliştirme dosyalarını içerir. + + gloox + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-27 + 1.0.23 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-10-30 + 1.0.20 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + hexchat + https://hexchat.github.io/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + app:gui + network.chat + GTK+ IRC client. + A popular and easy to use graphical IRC client. + https://dl.hexchat.net/hexchat/hexchat-2.16.0.tar.xz + + cmake + meson + gtk2-devel + glib2-devel + luajit-devel + python3-cffi + python3-devel + openssl-devel + enchant-devel + libXext-devel + libproxy-devel + pciutils-devel + dbus-glib-devel + libnotify-devel + iso-codes-devel + python3-pycparser + libcanberra-devel + desktop-file-utils + appstream-glib-devel + + network/chat/hexchat/pspec.xml + + + hexchat + + perl + gtk2 + glib2 + luajit + openssl + python3 + libproxy + pciutils + libnotify + libcanberra + python3-cffi + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/info + /usr/share/doc + + + + hexchat-devel + Development files for hexchat + + hexchat + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-22 + 2.16.0 + First build + fury + uglyside@yandex.ru + + + + + + libotr + http://www.cypherpunks.ca/otr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.chat + Portable OTR (Off The Record) messaging library + Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı + OTR messaging allows you to have private conversations over instant messaging. + OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. + https://otr.cypherpunks.ca/libotr-4.1.1.tar.gz + + libgcrypt-devel + + network/chat/libotr/pspec.xml + + + libotr + + libgcrypt + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libotr-devel + Development files for libotr + libotr için geliştirme dosyaları + + libotr + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/share/doc/libotr/html + + + + + 2018-09-10 + 4.1.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-18 + 4.1.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 4.1.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + loudmouth + http://www.loudmouth-project.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + Lightweight C Jabber library + Hafif bir C jabber kitaplığı + Loudmouth is a lightweight and easy-to-use C library for programming with the XMPP protocol. It's designed to be easy to get started with and yet extensible to let you do anything the XMPP protocol allows. + Loudmouth XMPP protokolüyle programlama imkanı sunan hafif ve kullanımı kolay bir C kitaplığı. Programlamada kolay bir başlangıç sunmak ve XMPP protokolü el verdiği ölçüde esnek bir yapıda kalmak için tasarlanmıştır. + https://mcabber.com/files/loudmouth/loudmouth-1.5.3.tar.bz2 + + intltool + glib2-devel + mit-kerberos + gnutls-devel + + network/chat/loudmouth/pspec.xml + + + loudmouth + + glib2 + gnutls + mit-kerberos + + + /usr/lib/libloudmouth* + /usr/share/doc + /usr/share/gtk-doc + + + + loudmouth-devel + Development files for loudmouth + loudmouth için geliştirme dosyaları + + glib2-devel + loudmouth + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-08 + 1.5.3 + Rebuild. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-09-16 + 1.5.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2017-05-19 + 1.5.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + pidgin + http://www.pidgin.im + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + network.chat + Instant messaging application previously known as gaim + Eski sürümleri gaim olarak bilinen, hızlı haberleşme aracı + Multi-protocol instant messaging tool for MSN, Yahoo, IRC, Jabber and Gadu-Gadu protocols. + Birçok protokolü (MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu gibi) destekleyen hızlı haberleşme aracıdır. + pidgin + mirrors://sourceforge/pidgin/pidgin-2.13.0.tar.bz2 + + intltool + doxygen + nss-devel + atk-devel + tcl-devel + cairo-devel + tcltk-devel + python-devel + gconf-devel + gtk2-devel + glib2-devel + gnutls-devel + libSM-devel + ncurses-devel + libxslt-devel + gettext-devel + gtkspell-devel + sqlite-devel + libxml2-devel + gstreamer-devel + farstream-devel + libidn-devel + avahi-glib-devel + dbus-glib-devel + gdk-pixbuf-devel + cyrus-sasl-devel + libXScrnSaver-devel + NetworkManager-devel + gst-plugins-base-devel + + + pidgin-py3-fixes.patch + pidgin-nm-1.0.patch + pidgin-python-3.8.patch + + network/chat/pidgin/pspec.xml + + + pidgin + app:gui + + atk + dbus + gtk2 + cairo + glib2 + libSM + pango + libICE + sqlite + freetype + gtkspell + dbus-glib + gstreamer + fontconfig + gdk-pixbuf + libXScrnSaver + libpurple + gstreamer + farstream + + + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/icons + /usr/share/sounds + /usr/share/dbus-1 + /usr/share/purple + /usr/share/pixmaps + /usr/lib/pidgin + /etc/gconf/schemas + /usr/share/appdata/ + /usr/share/locale + /usr/share/applications + + + + pidgin-devel + Development files of pidgin + pidgin paketine ait geliştirme dosyaları + library + + pidgin + libpurple-devel + gtk2-devel + + + /usr/include/pidgin + /usr/bin/dh_pidgin + /usr/share/man/man3/Pidgin* + /usr/lib/pkgconfig/pidgin.pc + + + + finch + Console based instant messaging application + Konsol tabanlı anında mesajlaşma istemcisi + app:console + + glib2 + libX11 + python + libxml2 + ncurses + gstreamer + libpurple + + + /usr/lib/gnt + /usr/lib/finch + /usr/lib/libgnt* + /usr/bin/finch + /usr/share/man/man1/finch* + + + + finch-devel + Development files of finch + finch paketine ait geliştirme dosyaları + library + + finch + libpurple-devel + + + /usr/include/gnt + /usr/include/finch + /usr/lib/pkgconfig/gnt* + /usr/lib/pkgconfig/finch* + + + + libpurple + The core library of pidgin, supports MSN, XMPP, ICQ, Gadu-Gadu and etc. + Pidgin projesine ait, MSN, XMPP, ICQ, Gadu-Gadu gibi protokolleri destekleyen anında mesajlaşma kitaplığı + library + + nss + tcl + dbus + nspr + perl + glib2 + tcltk + gnutls + libidn + libxml2 + dbus-glib + gstreamer + avahi-glib + avahi-libs + cyrus-sasl + gst-plugins-base + + + /usr/lib/purple-2 + /usr/bin/purple* + /usr/lib/libpurple* + + + + libpurple-devel + Development files of libpurple + libpurple paketine ait geliştirme dosyaları + library + + libpurple + + + /usr/share/aclocal + /usr/include/libpurple + /usr/share/man/man3/Purple* + /usr/lib/pkgconfig/purple.pc + + + + + 2020-04-06 + 2.13.0 + rebuild for new Toolchain + Ayhan Yalcinsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-04-26 + 2.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 2.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-07 + 2.12.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-15 + 2.10.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-20 + 2.10.11 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + qtox + https://qtox.github.io/ + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + network.chat + Instant messaging, video conferencing, and more. + qTox is a chat, voice, video, and file transfer instant messaging client using the encrypted peer-to-peer Tox protocol. + https://github.com/qTox/qTox/archive/a3004159833e890c34189944595b71aec1563264.zip + + cmake + ccache + mesa-devel + ffmpeg-devel + openal-devel + qt5-linguist + toxext-devel + libexif-devel + qt5-svg-devel + qt5-base-devel + qrencode-devel + libglvnd-devel + toxcore-c-devel + sqlcipher-devel + libXScrnSaver-devel + tox-extension-messages-devel + + network/chat/qtox/pspec.xml + + + qtox + + libgcc + libX11 + ffmpeg + openal + toxext + libexif + qt5-svg + qt5-base + qrencode + libsodium + toxcore-c + sqlcipher + libXScrnSaver + tox-extension-messages + + + /usr/bin + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/metainfo + + + + + 2022-04-27 + 1.17.6 + First build. + fury + uglyside@yandex.ru + + + + + + telegram-desktop + https://desktop.telegram.org/ + + Safa Ariman + safa@ariman.gen.tr + + GPLv3 + app:gui + network.chat + Official Telegram Desktop client + Official Telegram Desktop client + Telegram is a messaging app with a focus on speed and security, it is super-fast, simple and free. You can use Telegram on all your devices at the same time — your messages sync seamlessly across any number of your phones, tablets or computers. + Telegram is a messaging app with a focus on speed and security, it is super-fast, simple and free. You can use Telegram on all your devices at the same time — your messages sync seamlessly across any number of your phones, tablets or computers. + https://github.com/telegramdesktop/tdesktop/releases/download/v3.7.1/tdesktop-3.7.1-full.tar.gz + + cmake + ninja + gtk3-devel + rnnoise-devel + qt5-base-devel + xz-devel + libdbusmenu-qt-devel + expected-devel + ffmpeg-devel + guidelines-support-library-devel + hunspell-devel + minizip-devel + openal-devel + openssl-devel + range-v3-devel + libopus-devel + xxhash-devel + alsa-lib-devel + pulseaudio-libs-devel + lz4-devel + libtg_owt-devel + xcb-util-keysyms-devel + jemalloc-devel + webkit2gtk-devel + glibmm-devel + qt5-svg-devel + llvm-clang-devel + abseil-cpp-devel + pipewire-devel + + + tdesktop.patch + + network/chat/telegram-desktop/pspec.xml + + + telegram-desktop + + xz + lz4 + gtk3 + zlib + glib2 + libX11 + libgcc + libxcb + ffmpeg + openal + xxhash + openssl + libopus + minizip + hunspell + qt5-base + libtg_owt + gdk-pixbuf + libjpeg-turbo + qt5-imageformats + libdbusmenu-qt + xcb-util-keysyms + open-sans-fonts + glibmm + libXext + libXtst + qt5-svg + rnnoise + libXfixes + libXrandr + libsigc++ + libXdamage + libXcomposite + jemalloc + abseil-cpp + pipewire + + + /usr/bin + /usr/share + + + + + 2022-04-22 + 3.7.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-18 + 3.6.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-09 + 3.4.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-10 + 3.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-05 + 3.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-09 + 3.1.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-01 + 3.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 2.5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-06 + 2.1.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-10 + 2.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-17 + 1.9.21 + First release + Safa Ariman + safa@ariman.gen.tr + + + + + + telepathy-butterfly + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.chat + MSN connection manager for Telepathy + Telepathy için MSN bağlantı yöneticisi + telepathy-butterfly is an MSN connection manager that handles presence, personal messages and conversations. + telepathy-butterfly MSN için durum bilgisi, kişisel iletiler ve sohbeti destekleyen bir Telepathy eklentisidir. + http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-0.5.15.tar.gz + + dont-compile-py.patch + + network/chat/telepathy-butterfly/pspec.xml + + + telepathy-butterfly + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + + + + + 2018-09-10 + 0.5.18 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-18 + 0.5.18 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.5.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 0.5.15 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-farstream + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + Telepathy client to handle media streaming channels + Ortam yayın kanallarıyla anlaşabilmek için gerekli Telepathy istemcisi + Telepathy-farstream is a Telepathy client that uses Farsight and Gstreamer to handle media streaming channels. It's used as a background process by other Telepathy clients, rather than presenting any user interface of its own. + Telepathy-farstream, Farsight ve Gstreamer kitaplıklarını kullanan bir Telepathy istemcisidir. + http://telepathy.freedesktop.org/releases/telepathy-farstream/telepathy-farstream-0.6.2.tar.gz + + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + farstream-devel + gstreamer-devel + + network/chat/telepathy-farstream/pspec.xml + + + telepathy-farstream + library + + dbus + glib2 + dbus-glib + farstream + gstreamer + telepathy-glib + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + + + + telepathy-farstream-docs + Help files and API documents of telepathy-farstream library + telepathy-farstream kitaplığına ait yardım dosyaları ve API belgeleri + data:doc + + telepathy-farstream + + + /usr/share/gtk-doc + + + + telepathy-farstream-devel + Development files for telepathy-farstream + telepathy-farstream için geliştirme dosyaları + + telepathy-farstream + glib2-devel + dbus-glib-devel + farstream-devel + gstreamer-devel + telepathy-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-11 + 0.6.2 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 0.6.2 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-18 + 0.6.2 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.6.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.6.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-gabble + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + network.chat + A Jabber/XMPP connection manager for Telepathy + Telepathy için Jabber/XMPP bağlantı yöneticisi + telepathy-gabble is a Jabber/XMPP connection manager, that handles single and multi-user chats and voice calls. + telepathy-gabble, tek ve çoklu kullanıcılı sohbet, sesli aramalar gibi özellikler sunan Jabber/XMPP bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-gabble/telepathy-gabble-0.18.4.tar.gz + + libnice-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + libxslt-devel + gnutls-devel + sqlite-devel + libsoup-devel + libnice-devel + cyrus-sasl-devel + + network/chat/telepathy-gabble/pspec.xml + + + telepathy-gabble + + dbus + glib2 + gnutls + sqlite + libnice + libsoup + libxml2 + dbus-glib + telepathy-glib + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share + /usr/share/doc + /usr/share/man + + + + + 2018-09-10 + 0.18.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-18 + 0.18.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.18.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-21 + 0.18.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-glib + http://telepathy.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + GLib bindings for the Telepathy D-Bus protocol + Telepathy D-Bus protokolü için GLib bağlayıcıları + Telepathy-glib is the glib binding for the Telepathy unified framework for all forms of real time conversations, including instant messaging, IRC, voice calls and video calls. + Telepathy-glib, anında mesajlaşma, IRC, sesli ve görüntülü görüşmeler dahil her türlü anlık iletişim türlerini destekleyen Telepathy altyapısının GLib bağlayıcılarıdır. + http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.1.tar.gz + + gobject-introspection-devel + dbus-devel + dbus-glib-devel + libxslt-devel + vala-devel + python3-devel + + network/chat/telepathy-glib/pspec.xml + + + telepathy-glib + GLib bindings for the Telepathy D-Bus protocol + library + + dbus + glib2 + python3 + dbus-glib + + + /usr/lib + /usr/share/gir-1.0 + /usr/share/doc + + + + telepathy-glib-docs + Help files and API documents of telepathy-glib library + telepathy-glib kitaplığına ait yardım dosyaları ve API belgeleri + data:doc + + telepathy-glib + + + /usr/share/gtk-doc + + + + telepathy-glib-devel + Development files for telepathy-glib + telepathy-glib için geliştirme dosyaları + + telepathy-glib + dbus-devel + glib2-devel + dbus-glib-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/vala/vapi + + + + + 2020-05-11 + 0.24.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-10 + 0.24.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-18 + 0.24.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.24.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.24.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-haze + http://developer.pidgin.im/wiki/Telepathy + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.chat + A multi-protocol Libpurple connection manager for Telepathy + Çok protokol destekli, libpurple üzerine kurulu bir Telepathy bağlantı yöneticisi + telepathy-haze is a connection manager built around libpurple, the core of Pidgin, as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and other will probably work too. + Telepathy-haze Pidgin'in de kullandığı libpurple üzerine kurulu bir bağlantı yöneticisidir. Libpurple tarafından desteklenen tüm protokol teoride telepathy-haze ile de desteklenmektedir. + http://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-0.8.0.tar.gz + + glib2-devel + dbus-devel + dbus-glib-devel + libpurple-devel + telepathy-glib-devel + libxslt-devel + python-devel + + + telepathy-haze-0.8.0-pidgin-2.10.12-compat.patch + + network/chat/telepathy-haze/pspec.xml + + + telepathy-haze + + dbus + glib2 + dbus-glib + libpurple + telepathy-glib + + + /usr/share + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2018-09-09 + 0.8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-07-07 + 0.8.0 + Release Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-21 + 0.8.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-idle + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + IRC connection manager for Telepathy + Telepathy için IRC (Internet Relay Chat) bağlantı yöneticisi + telepathy-idle is a full-featured IRC connection manager for the Telepathy framework. + telepathy-idle Telepathy iletişim altyapısı için IRC (Internet Relay Chat) bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-idle/telepathy-idle-0.2.0.tar.gz + + telepathy-glib-devel + libxslt-devel + gobject-introspection-devel + glib2-devel + dbus-devel + dbus-glib-devel + + network/chat/telepathy-idle/pspec.xml + + + telepathy-idle + + glib2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/dbus-1 + /usr/share/doc + /usr/share/man + /usr/share/telepathy + + + + + 2018-09-10 + 0.2.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-20 + 0.2.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 0.2.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-logger + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + library + network.chat + Logging utility Telepathy + Telepathy için kayıt tutma aracı. + telepathy-logger is a logging utility for Telepathy communication framework. + telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. + http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 + + glib2-devel + intltool + libxslt-devel + dbus-devel + dbus-glib-devel + gobject-introspection-devel + libxml2-devel + sqlite-devel + telepathy-glib-devel + + network/chat/telepathy-logger/pspec.xml + + + telepathy-logger + + dbus + glib2 + sqlite + libxml2 + dbus-glib + telepathy-glib + + + /usr/lib + /usr/share/gir-1.0/ + /usr/share/telepathy + /usr/share/glib-2.0/ + /usr/libexec + /usr/share/dbus-1 + /usr/share/gtk-doc + /usr/share/doc + + + + telepathy-logger-devel + Development files for telepathy-logger + telepathy-logger için geliştirme dosyaları + + telepathy-logger + telepathy-glib-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2018-09-10 + 0.8.2 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-20 + 0.8.2 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.8.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.8.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-logger-qt + https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app + network.chat + Qt bindings for telepathy logger + Qt Wrapper around TpLogger client library. + https://download.kde.org/stable/telepathy-logger-qt/17.08/src/telepathy-logger-qt-17.08.0.tar.xz + + extra-cmake-modules + qt5-base-devel + qt5-assistant-devel + qt5-doc + doxygen + telepathy-qt5-devel + glib2-devel + dbus-devel + dbus-glib-devel + libxml2-devel + telepathy-logger-devel + + network/chat/telepathy-logger-qt/pspec.xml + + + telepathy-logger-qt + Qt bindings for telepathy logger + + glib2 + libgcc + qt5-base + telepathy-qt5 + telepathy-glib + telepathy-logger + + + /usr/lib/libtelepathy-logger-qt.* + /usr/share/doc + + + + telepathy-logger-qt-devel + Development files for telepathy-logger-qt + + telepathy-logger-qt + telepathy-glib-devel + qt5-base-devel + + + /usr/include + /usr/lib/cmake/TelepathyLoggerQt + + + + + 2018-09-10 + 17.08.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-09 + 17.08.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-22 + 15.04.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 15.04.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 15.04.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-mission-control + http://telepathy.freedesktop.org/wiki/Mission_Control + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + library + network.chat + Telepathy component managing connection managers + Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni + telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. + telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. + http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.4.tar.gz + + libxslt-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + gtk-doc + NetworkManager-devel + docbook-xsl + python-six + libaccounts-glib-devel + + network/chat/telepathy-mission-control/pspec.xml + + + telepathy-mission-control + + dbus + glib2 + dbus-glib + NetworkManager + telepathy-glib + libaccounts-glib + + + /usr/bin + /usr/lib/libmission-control-plugins.so.0* + /usr/lib/telepathy/mission-control-5 + /usr/share/man + /usr/share/doc + /usr/share/dbus-1 + /usr/share/glib-2.0 + + + + telepathy-mission-control-devel + Development files for telepathy-mission-control + telepathy-mission-control için geliştirme dosyaları + + telepathy-mission-control + telepathy-glib-devel + + + /usr/include/mission-control-5.5 + /usr/lib/libmission-control-plugins.so + /usr/lib/pkgconfig/mission-control-plugins.pc + /usr/share/gtk-doc/html/mission-control-plugins + + + + + 2018-09-10 + 5.16.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 5.16.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-22 + 5.16.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 5.16.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 5.16.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-qt5 + http://telepathy.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.chat + Qt based classes for Telepathy communication framework + Telepathy iletişim çatısı için Qt tabanlı sınıflar + The Telepathy project is about building a unified framework for many different kinds of real-time communications. telepathy-qt contains Qt-based base and proxy classes for use in connection managers and clients. + Telepathy projesi çeşitli gerçek zamanlı iletişim türleri için birleşik bir çatı oluşturmayı amaçlar. telepathy-qt bağlantı yöneticileri ve istemcilerde kullanılmak üzere Qt tabanlı temel ve vekil sınıfları içerir. + http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.8.tar.gz + + cmake + qt5-doc + python3-devel + qt5-base-devel + qt5-assistant-devel + gobject-introspection-devel + dbus-glib-devel + libxml2-devel + farstream-devel + telepathy-farstream-devel + doxygen + + network/chat/telepathy-qt5/pspec.xml + + + telepathy-qt5 + + glib2 + libgcc + qt5-base + telepathy-glib + telepathy-farstream + doxygen + + + /usr/lib + /usr/share/doc + + + + telepathy-qt5-devel + Development files for telepathy-qt5 + telepathy-qt5 için geliştirme dosyaları + + telepathy-qt5 + qt5-base-devel + telepathy-glib-devel + telepathy-farstream-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-11 + 0.9.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 0.9.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-20 + 0.9.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.9.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.9.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-salut + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + network.chat + Link-local XMPP Telepathy connection manager + XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. + telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. + telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz + + libxslt-devel + glib2-devel + gobject-introspection-devel + dbus-devel + dbus-glib-devel + telepathy-glib-devel + avahi-devel + avahi-glib-devel + libsoup-devel + openssl-devel + python-devel + sqlite-devel + cyrus-sasl-devel + + + fix_bork_in_tr_locale.patch + + network/chat/telepathy-salut/pspec.xml + + + telepathy-salut + + dbus + glib2 + sqlite + libsoup + libxml2 + openssl + dbus-glib + avahi-glib + avahi-libs + telepathy-glib + + + /usr/bin + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/doc + /usr/share/man + + + + + 2018-09-10 + 0.8.1 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-22 + 0.8.1 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 0.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 0.8.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + telepathy-sunshine + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + library + network.chat + Gadu-Gadu connection manager for telepathy + Telepathy için Gadu Gadu bağlantı yöneticisi + Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. + Telepathy-sunshine Telepathy iletişim altyapısı için Gadu Gadu bağlantı yöneticisidir. + http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz + + dont-compile-py.patch + + network/chat/telepathy-sunshine/pspec.xml + + + telepathy-sunshine + + /usr/libexec + /usr/lib + /usr/share/dbus-1 + /usr/share/telepathy + /usr/share/man + /usr/share/doc + + + + + 2018-09-10 + 2.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-22 + 2.0 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 2.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + tox-extension-messages + https://github.com/toxext/tox_extension_messages + + fury + uglyside@yandex.ru + + GPL-3 + library + network.chat + pass + pass + https://github.com/toxext/tox_extension_messages/archive/refs/tags/v0.0.3.tar.gz + + cmake + toxext-devel + toxcore-c-devel + + network/chat/tox-extension-messages/pspec.xml + + + tox-extension-messages + + toxext + + + /usr/lib/libtox_extension_messages.a + + + + tox-extension-messages-devel + + tox-extension-messages + + + /usr/include + /usr/lib/cmake/ToxExtensionMessages + + + + + 2022-04-19 + 0.0.3 + First build. + fury + uglyside@yandex.ru + + + + + + toxcore-c + https://tox.chat/ + + fury + uglyside@yandex.ru + + GPL-3 + app + network.chat + This is an experimental cryptographic network library. + Tox is a peer to peer (serverless) instant messenger aimed at making security and privacy easy to obtain for regular users. It uses NaCl for its encryption and authentication. + https://github.com/TokTok/c-toxcore/archive/refs/tags/v0.2.17.tar.gz + + cmake + libvpx-devel + libopus-devel + libsocket-devel + libconfig-devel + libsodium-devel + msgpack-c-devel + + network/chat/toxcore-c/pspec.xml + + + toxcore-c + + libvpx + libopus + libconfig + libsodium + msgpack-c + + + /etc/tox-bootstrapd.conf + /usr/bin + /usr/lib + /usr/share/bash-completion/completions + + + System.Package + System.Service + + + + toxcore-c-devel + + toxcore-c + libvpx-devel + libopus-devel + libsocket-devel + libsodium-devel + msgpack-c-devel + + + /usr/lib/pkgconfig + /usr/include/tox + + + + + 2022-04-25 + 0.2.17 + First build. + fury + uglyside@yandex.ru + + + + + + toxext + https://github.com/toxext/toxext + + fury + uglyside@yandex.ru + + GPL-3 + library + network.chat + An extension library for tox. + An extension library with negotiation allows more experimentation with less risk resulting in more features for tox clients. + https://github.com/toxext/toxext/archive/refs/tags/v0.0.3.tar.gz + + cmake + toxcore-c-devel + + network/chat/toxext/pspec.xml + + + toxext + + toxcore-c + + + /usr/lib/libtoxext.a + + + + toxext-devel + + toxext + toxcore-c-devel + + + /usr/include + /usr/lib/cmake/ToxExt + + + + + 2022-04-19 + 0.0.3 + First build. + fury + uglyside@yandex.ru + + + + + + bridge-utils + http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.connection + Linux network bridging utilities + Linux için ağ köprüleme yardımcı uygulamaları + Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel. + Linux için ağ köprüleme yardımcı uygulamaları. + https://www.kernel.org/pub/linux/utils/net/bridge-utils/bridge-utils-1.7.1.tar.xz + + bridge-utils-1.0.4-inc.patch + + network/connection/bridge-utils/pspec.xml + + + bridge-utils + + /usr/include + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2021-07-02 + 1.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-19 + 1.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-19 + 1.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-20 + 1.6 + Version Bump + Thanks to Mustafa Cinasal + admin@pisilinux.org + + + 2016-06-09 + 1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-19 + 1.5 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libnfs + https://github.com/sahlberg/libnfs + + Mogyorósi Petra + squeakymouse@protonmail.com + + LGPLv2.1 + GPLv3 + BSDv2 + library + network.connection + NFS client library + LIBNFS is a client library for accessing NFS shares over a network. + A libnfs egy NFS-kezelő könyvtár, ami háromféle módon tud hozzáférést nyújtani az NFS-szolgáltatásokhoz + https://github.com/sahlberg/libnfs/archive/libnfs-4.0.0.tar.gz + + cmake + libxslt + + network/connection/libnfs/pspec.xml + + + libnfs + NFS client library + + glibc + + + /usr/bin + /usr/lib/libnfs.so + /usr/lib/libnfs.so.11.0.0 + /usr/lib/libnfs.so.2.0.0 + /usr/share/man/* + /usr/share/doc/* + + + + libnfs-devel + Development files for libnfs + A libnfs fejlécei + + libnfs + + + /usr/include/* + /usr/lib/pkgconfig/* + /usr/lib/cmake/* + + + + + 2020-12-13 + 4.0.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2018-07-03 + 3.0.0 + Latest revision from GitHub + Mogyorósi Petra + squeakymouse@protonmail.com + + + + + + linux-atm + http://linux-atm.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + library + network.connection + Tools to support ATM networking under Liunx + ATM ağ bağlantısı desteği için araçlar + linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others. + linux-atm ATM (Asynchronous Transfer Mode) bağlantısı için gerekli çeşitli araçlar ve kitaplıklarını içerir. + mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz + + flex + + + man-pages.patch + remove-define-hacks.patch + 0001-saaldump-atmdump-Include-linux-sockios.h-for-SIOCGST.patch + + network/connection/linux-atm/pspec.xml + + + linux-atm + + flex + + + /lib/firmware + /usr/sbin + /usr/bin + /etc + /usr/lib + /usr/share/man + /usr/share/doc + + + + linux-atm-devel + Development files for linux-atm + linux-atm için geliştirme dosyaları + + linux-atm + + + /usr/include + + + + + 2021-07-02 + 2.5.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-23 + 2.5.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-18 + 2.5.2 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 2.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-13 + 2.5.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mobile-broadband-provider-info + http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders + + PisiLinux Community + admins@pisilinux.org + + public-domain + data + network.connection + Service provider specific settings of mobile broadband providers in different countries + Çeşitli ülkelerdeki mobil genişbant servis sağlayıcıları hakkında bilgileri içeren ayar veritabanı + The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information. + mobile-broadband-provider-info paketi, dünya üzerindeki mobil genişbant sağlayıcılarının ve ilgili tarifelerinin listesini tutan bir veritabanıdır. + https://download.gnome.org/sources/mobile-broadband-provider-info/20220511/mobile-broadband-provider-info-20220511.tar.xz + + libxslt-devel + + network/connection/mobile-broadband-provider-info/pspec.xml + + + mobile-broadband-provider-info + + /usr/share + + + + + 2022-05-11 + 20220511 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-06 + 20210805 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 20201225 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-02-02 + 20190618 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 20170310 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 20170310 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-02-18 + 20151214 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 20120614 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2012-08-28 + 20120614 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ModemManager + http://projects.gnome.org/NetworkManager + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + service + network.connection + A manager framework for mobile broadband modems + Mobil modemler için yönetim katmanı + ModemManager provides a unified high level API for communicating with mobile broadband modems. + ModemManager, 3G ve GSM gibi mobil genişbant modemlerle D-Bus üzerinden iletişimi sağlayan bir sistem hizmetidir. + http://www.freedesktop.org/software/ModemManager/ModemManager-1.18.8.tar.xz + + dbus-devel + glib2-devel + libgudev-devel + libxslt-devel + gobject-introspection-devel + polkit-devel + ppp-devel + libqmi-devel + libmbim-devel + intltool + gtk-doc + docbook-xsl + vala-devel + elogind-devel + autoconf-archive + dbus-python3 + python3-pygobject3-devel + + network/connection/ModemManager/pspec.xml + + + ModemManager + + glib2 + libqmi + polkit + libmbim + libgudev + libmm-glib + + + /etc/ModemManager/fcc-unlock.d + /usr/share/doc + /usr/sbin + /usr/share/icons + /usr/share/locale + /usr/share/dbus-1 + /usr/share/gir-1.0/ModemManager-1.0.gir + /lib/udev/rules.d/ + /etc/dbus-1/system.d/ + /usr/lib/ModemManager + /usr/lib/girepository-1.0/ModemManager-1.0.typelib + /usr/share/man/man8/ModemManager.8 + /usr/share/man/man1/mmcli.1 + /usr/share/polkit-1 + /usr/share/bash-completion + /usr/share/ModemManager/fcc-unlock.available.d + /usr/share/ModemManager/mm-foxconn-carrier-mapping.conf + /usr/share/ModemManager/mm-foxconn-t77w968-carrier-mapping.conf + /usr/share/ModemManager/mm-foxconn-t99w175-carrier-mapping.conf + /usr/share/ModemManager/mm-dell-dw5821e-carrier-mapping.conf + /etc/ModemManager/connection.d + /usr/share/ModemManager/connection.available.d/99-log-event + + + + ModemManager-devel + Development files for ModemManager + ModemManager için geliştirme dosyaları + + ModemManager + + + /usr/include/ModemManager/ + /usr/lib/pkgconfig/ModemManager.pc + + + + libmm-glib + D-Bus service for managing modems - shared libraries + + glib2 + libgudev + + + /usr/bin + /usr/share/vala/vapi/libmm-glib.vapi + /usr/share/vala/vapi/libmm-glib.deps + /usr/lib/libmm-glib.so* + /usr/share/man/man8/mmcli.8 + + + + libmm-glib-devel + Development files for libmm-glib + libmm-glib için geliştirme dosyaları + + libmm-glib + glib2-devel + ModemManager-devel + + + /usr/include/libmm-glib/ + /usr/lib/pkgconfig/mm-glib.pc + + + + ModemManager-docs + Development files for ModemManager + + ModemManager + + + /usr/share/gtk-doc + + + + + 2022-05-29 + 1.18.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-27 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.16.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-04 + 1.16.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-24 + 1.14.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 1.14.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-15 + 1.14.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-10 + 1.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-20 + 1.12.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-30 + 1.12.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 1.10.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 1.10.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.6.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-19 + 1.6.12 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-19 + 1.6.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-11-12 + 1.6.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 1.4.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.4.12 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + netcf + https://fedorahosted.org/netcf + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + library + network.connection + A library for configuring network interfaces + Ağ arayüzlerini yapılandırmak için geliştirilmiş bir kitaplık + netcf is a cross-platform network configuration library for modifying the network configuration of a system. Network configurations are expressed in XML format. + netcf, XML biçiminde tuttuğu ağ arayüz bilgilerini kullanarak platform-bağımsız ağ yapılandırması olanağı sunan bir kitaplıktır. + https://releases.pagure.org/netcf/netcf-0.2.8.tar.gz + + gcc + xz-devel + libxml2-devel + libxslt-devel + libnl-devel + readline-devel + augeas-devel + + network/connection/netcf/pspec.xml + + + netcf + + xz + zlib + libnl + augeas + libxml2 + libxslt + readline + libgcrypt + libgpg-error + + + /usr/bin + /usr/libexec/ + /etc/rc.d/init.d + /usr/lib + /usr/share/netcf + /usr/share/doc + /usr/share/man/man1/ncftool.1 + + + + netcf-devel + Development files for netcf + netcf için geliştirme dosyaları + + augeas-devel + libxslt-devel + netcf + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-03-13 + 0.2.8 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-31 + 0.2.8 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-04-29 + 0.2.8 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.2.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-31 + 0.2.8 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + network-manager-applet + http://projects.gnome.org/NetworkManager + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:gui + network.connection + Network connection manager GUI interface + NetworkManager için güçlü bir grafik arayüzü + network-manager-applet is a powerful graphical frontend to NetworkManager. + network-manager-applet, NetworkManager için GTK+ arayüz kitaplığı kullanılarak yazılmış güçlü bir arayüzdür. + https://download.gnome.org/sources/network-manager-applet/1.28/network-manager-applet-1.28.0.tar.xz + + gtk-doc + gtk2-devel + gtk3-devel + libsecret-devel + cairo-devel + pango-devel + libnotify-devel + libmm-glib-devel + gdk-pixbuf-devel + at-spi2-core-devel + NetworkManager-devel + iso-codes-devel + dbus-devel + glib2-devel + dbus-glib-devel + atk-devel + libgudev-devel + intltool + python-six + libnma-devel + libappindicator-devel + + network/connection/network-manager-applet/pspec.xml + + + network-manager-applet + + gtk3 + atk + cairo + pango + libnma + libsecret + libnotify + libmm-glib + gdk-pixbuf + NetworkManager + dbus + glib2 + dbus-glib + libgudev + libappindicator + + + /usr/bin + /usr/share/libnm-gtk + /usr/lib/ + /usr/share/icons + /usr/share/applications + /usr/share/nm-applet + /etc/dbus-1 + /usr/share + /usr/libexec + /etc/gconf/schemas + /etc/xdg/autostart + /usr/share/man + /usr/share/doc + /usr/share/locale + + + + + 2022-06-08 + 1.28.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-22 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-17 + 1.24.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-04 + 1.22.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 1.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-10 + 1.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-20 + 1.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-17 + 1.8.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-02 + 1.8.20 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 1.8.16 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-04 + 1.8.4 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 1.8.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 1.8.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-28 + 1.8.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-21 + 1.0.10 + Release down + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-02 + 1.4.4 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilnux.org + + + 2016-11-19 + 1.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 1.0.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 1.0.10 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + NetworkManager + http://projects.gnome.org/NetworkManager + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2+ + app:console + network.connection + Network connection manager powered by D-Bus and UDEV + D-Bus üzerinden yapılandırmaya izin veren, gelişmiş bir ağ yönetim altyapısı + NetworkManager attempts to keep an active network connection available at all times. + NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. + https://download.gnome.org/sources/NetworkManager/1.32/NetworkManager-1.32.12.tar.xz + + meson + curl-devel + intltool + dhclient + dhcpcd + gtk-doc + docbook-xsl + autoconf + gettext-devel + ppp-devel + nss-devel + newt-devel + nspr-devel + libnl-devel + audit-devel + elogind-devel + jansson-devel + libsoup-devel + bluez-libs-devel + iptables-devel + wpa_supplicant + dbus-glib-devel + libndp-devel + libmm-glib-devel + dbus-devel + glib2-devel + polkit-devel + readline-devel + libgudev-devel + libutil-linux-devel + python3-pygobject3-devel + libxslt-devel + vala-devel + dbus-python3 + gnutls-devel + mobile-broadband-provider-info + gobject-introspection-devel + + network/connection/NetworkManager/pspec.xml + + + NetworkManager + + curl + eudev + dbus + nspr + libpsl + glib2 + audit + polkit + readline + dbus-glib + jansson + libutil-linux + nss + newt + ppp + libnl + libsoup + elogind + libgudev + bluez-libs + iproute2 + iptables + libmm-glib + ModemManager + wpa_supplicant + libndp + mobile-broadband-provider-info + + + /etc + /usr/share + /etc/dbus-1 + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /lib/udev + /usr/sbin + /lib/udev/rules.d + /usr/libexec + /run/NetworkManager + /lib/systemd/system + /usr/share/locale + /var/lib/NetworkManager + /etc/NetworkManager/system-connections + /usr/lib/tmpfiles.d/NetworkManager.conf + /etc/polkit-1/localauthority/10-vendor.d + + + System.Service + + + NetworkManager.confd + tmpfiles.conf + NetworkManager.conf + dhcp.conf + migrate-comar-network-profiles + gentoo/01-org.freedesktop.NetworkManager.settings.modify.system.pkla + 01-org.freedesktop.ModemManager1.rules + 01-org.freedesktop.NetworkManager.settings.modify.system.rules + + + + NetworkManager-devel + Development files for NetworkManager + NetworkManager için geliştirme dosyaları + + glib2-devel + dbus-glib-devel + NetworkManager + + + /usr/include + /usr/lib/pkgconfig/ + + + + NetworkManager-docs + Development files for NetworkManager + + NetworkManager + + + /usr/share/gtk-doc + + + + + 2021-10-24 + 1.32.12 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-22 + 1.32.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 1.32.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-11 + 1.32.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-29 + 1.32.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-21 + 1.32.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-19 + 1.32.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-04 + 1.32.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-04 + 1.30.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 1.30.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-10 + 1.22.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-30 + 1.22.10 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 1.20.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-27 + 1.20.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-16 + 1.20.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-17 + 1.20.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-01 + 1.14.6 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + systemRestart + + + + 2018-09-16 + 1.10.10 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + systemRestart + + + + 2017-11-04 + 1.8.4 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + systemRestart + + + + 2017-07-30 + 1.8.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + systemRestart + + + + 2017-05-28 + 1.8.0 + Revert version + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilnux.org + + systemRestart + + + + 2017-03-15 + 1.0.10 + Revert version + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilnux.org + + systemRestart + + + + 2016-12-15 + 1.0.10 + Revert version + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + systemRestart + + + + 2016-11-12 + 1.4.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-15 + 1.0.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.0.10 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + systemRestart + + + + + + + networkmanager-openvpn + https://gitlab.gnome.org/GNOME/NetworkManager-openvpn + + Kamil Atlı + suvari@pisilinux.org + + GPL + service + network.connection + OpenVPN support for NetworkManager + NetworkManager için OpenVPN desteği + OpenVPN support for NetworkManager + NetworkManager için OpenVPN desteği + https://gitlab.gnome.org/GNOME/NetworkManager-openvpn/-/archive/1.8.16/NetworkManager-openvpn-1.8.16.tar.gz + + m4 + git + poxml + gettext + intltool + openvpn + atk-devel + gtk3-devel + cairo-devel + pango-devel + libnma-devel + gettext-devel + python3-devel + harfbuzz-devel + libsecret-devel + gdk-pixbuf-devel + NetworkManager-devel + + network/connection/networkmanager-openvpn/pspec.xml + + + networkmanager-openvpn + + atk + gtk3 + cairo + glib2 + pango + libnma + python3 + harfbuzz + gdk-pixbuf + NetworkManager + + + /usr/lib + /usr/share/locale + /usr/share/dbus-1/system.d/nm-openvpn-service.conf + /usr/share/doc + /usr/share/metainfo/network-manager-openvpn.metainfo.xml + + + + networkmanager-openvpn-devel + Development files for networkmanager-openvpn + networkmanager-openvpn için geliştirme başlıkları + + networkmanager-openvpn + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-28 + 1.8.16 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + openconnect + http://www.infradead.org/openconnect.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + app:console + network.connection + A client for Cisco's AnyConnect VPN, which uses HTTPS and DTLS protocols + Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci + openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc. + openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır. + https://www.infradead.org/openconnect/download/openconnect-8.10.tar.gz + + libproxy-devel + intltool + lz4-devel + python3-devel + openssl-devel + libxml2-devel + zlib-devel + mit-kerberos + gnutls-devel + p11-kit-devel + e2fsprogs-devel + + network/connection/openconnect/pspec.xml + + + openconnect + + lz4 + zlib + libxml2 + openssl + mit-kerberos + gnutls + p11-kit + e2fsprogs + bash-completion + libproxy + + + /usr/bin/openconnect + /usr/libexec/openconnect + /usr/share/man/man8 + /usr/share/doc + /usr/share/locale + /usr/sbin + /usr/lib + /usr/share/bash-completion/completions/openconnect + + + + openconnect-devel + 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 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-07-02 + 8.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-08 + 8.05 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 7.08 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 7.08 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 7.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-15 + 7.06 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + openvpn + https://openvpn.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + network.connection + A full featured SSL VPN solution + Sanal özel ağ çözümü + OpenVPN is a full-featured SSL VPN solution which can accomodate a wide range of configurations, including remote access, site-to-site VPNs, WiFi security, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls. + OpenVPN uzaktan bağlantı, kablosuz bağlantı güvenliği gibi konularda çok geniş ayarlar içeren bir sanal özel ağ (VPN) çözümüdür. + https://swupdate.openvpn.org/community/releases/openvpn-2.5.2.tar.xz + + openvpn-test.sh + + + git + cmake + iproute2 + pam-devel + lz4-devel + lzo-devel + openssl-devel + p11-kit-devel + + network/connection/openvpn/pspec.xml + + + openvpn + A full featured SSL VPN solution + + lzo + lz4 + pam + openssl + p11-kit + iproute2 + + + /usr/lib + /run/openvpn + /usr/share/man + /usr/share/doc + /etc/openvpn + /usr/include + /usr/sbin + /usr/share/openvpn + /usr/lib/tmpfiles.d/openvpn.conf + + + System.Service + + + tmpfiles.conf + roadwarrior-client.conf + roadwarrior-server.conf + + + + + 2021-05-10 + 2.5.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ppp + http://samba.org/ppp + + PisiLinux Community + admins@pisilinux.org + + BSD + GPLv2 + service + network.connection + Point-to-point protocol - patched for PPPOE + Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü + The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. + PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. + https://www.samba.org/ftp/ppp/ppp-2.4.9.tar.gz + http://distfiles.gentoo.org/distfiles/ppp-dhcpc.tgz + + libpcap-devel + openssl-devel + pam-devel + + + gentoo/0001-Change-Make-vars-to-work-in-Gentoo-builds.patch + gentoo/0002-Use-internal-implementation-of-logwtmp-function.patch + gentoo/0003-Add-MPLSCP-support.patch + gentoo/0004-smarter-killaddr.patch + gentoo/0005-Improve-waiting-for-children-on-exit.patch + gentoo/0006-Remove-one-of-the-2-pidfiles-pidfilename-or-linkpidf.patch + gentoo/0007-Run-etc-ppp-auth-fail-script-if-exists-and-authentic.patch + gentoo/0008-Try-to-create-dev-ppp-if-not-available.patch + gentoo/0009-passwordfd-read-early.patch + gentoo/0010-Add-option-to-ask-peer-for-WINS-address.patch + gentoo/0011-Log-connect-errors-to-var-log-ppp-connect-errors.patch + gentoo/0012-Don-t-hang-when-starting-pppoe-connection-without-se.patch + gentoo/0013-Add-defaultmetric-as-compatibility-option-name.patch + gentoo/0014-Warn-user-of-deprecated-option-defaultmetric.patch + gentoo/85_all_dhcp-make-vars.patch + gentoo/86_all_dhcp-sys_error_to_strerror.patch + + network/connection/ppp/pspec.xml + + + ppp + + libpcap + pam + openssl + + + /etc + /usr/lib/tmpfiles.d/ppp.conf + /usr/lib + /usr/sbin + /usr/share/doc + /usr/share/man + /run/ppp + + + tmpfiles.conf + options-pptp + options-pppoe + chat-default + ip-up + ip-down + confd.ppp0 + ppp.pamd + ppp.logrotate + + + + ppp-devel + Development files for ppp + ppp için geliştirme dosyaları + + ppp + + + /usr/include + + + + + 2021-02-25 + 2.4.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-21 + 2.4.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 2.4.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 2.4.7 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 2.4.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 2.4.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + wpa_supplicant + http://hostap.epitest.fi/wpa_supplicant/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + service + network.connection + IEEE 802.1X/WPA supplicant for secure wireless transfers + Güvenli kablosuz erişim için IEEE 802.1X/WPA sağlayıcı + wpa_supplicant is a WPA supplicant with support for WPA and WPA2. + WPA ve WPA2 desteği olan ve Linux, BSD ve Windows ortamları için bir WPA istemcisidir. + https://w1.fi/releases/wpa_supplicant-2.9.tar.gz + + wpa_supplicant.config + + + libnl-devel + openssl-devel + dbus-devel + readline-devel + + + 0001-P2P-Fix-copying-of-secondary-device-types-for-P2P-gr.patch + ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch + wpa_supplicant-1.0-dbus-path-fix.patch + mandriva/wpa_supplicant-0.6.3-WEP232.patch + fedora/wpa_supplicant-openssl-more-algs.patch + fedora/wpa_supplicant-flush-debug-output.patch + fedora/wpa_supplicant-assoc-timeout.patch + suse/wpa_supplicant-errormsg.patch + + network/connection/wpa_supplicant/pspec.xml + + + wpa_supplicant + + libnl + dbus + openssl + readline + + + /etc + /etc/dbus-1 + /usr/sbin + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/dbus-1/system-services + /run + + + System.Service + + + wpa_supplicant.conf + wpa_supplicant.confd + wpa_supplicant.logrotate + wpa_supplicant.py + + + + + 2021-07-02 + 2.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-22 + 2.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 2.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 2.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-15 + 2.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + aria2 + https://aria2.github.io/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.download + A download utility with resuming and segmented downloading. + Parçalı ve yarım kalan dosyaları indirme özelliğine sahip bir indirme aracı + aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP, HTTPS, FTP and BitTorrent. It also supports Metalink version 3.0. + Aria2 parçalı indirme ve yarım kalan indirmeleri devam ettirme özelliklerine sahip olan bir indirme aracıdır. + https://github.com/aria2/aria2/releases/download/release-1.36.0/aria2-1.36.0.tar.xz + + gmp-devel + zlib-devel + c-ares-devel + gnutls-devel + nettle-devel + sqlite-devel + libxml2-devel + libssh2-devel + + network/download/aria2/pspec.xml + + + aria2 + + gmp + zlib + c-ares + libgcc + gnutls + nettle + sqlite + libxml2 + libssh2 + + + /usr/bin + /usr/lib + /usr/share/bash-completion + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + aria2-devel + + aria2 + + + /usr/lib/pkgconfig + /usr/include + + + + + 2021-09-14 + 1.36.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-01 + 1.35.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-15 + 1.35.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2019-07-04 + 1.34.0 + Rebuild. + fury + uglyside@yandex.ru + + + 2019-04-18 + 1.34.0 + Version bump + fury + uglyside@yandex.ru + + + 2016-03-22 + 1.21.0 + Version bump, rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2015-02-15 + 1.18.9 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2013-11-22 + 1.18.1 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-10-01 + 1.18.0 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2013-06-15 + 1.17.1 + Version bump + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-04-23 + 1.16.0 + Dep fixed + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-12-14 + 1.16.0 + First release + M. Tayyip Yel + admins@pisilinux.org + + + + + + axel + https://github.com/axel-download-accelerator/axel + + Idris Kalp + idriskalp@gmail.com + + GPLv2 + app:console + network.download + Light command line download accelerator + Axel tries to accelerate the download process by using multiple connections per file, and can also balance the load between different servers. + https://github.com/axel-download-accelerator/axel/releases/download/v2.17.11/axel-2.17.11.tar.xz + + openssl-devel + + network/download/axel/pspec.xml + + + axel + + openssl + libgcc + + + /usr/bin + /usr/include + /usr/share/locale + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2022-05-23 + 2.17.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-02 + 2.7.10 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-01-11 + 2.7.6 + First release. + Idris Kalp + idriskalp@gmail.com + + + + + + clipgrab + https://clipgrab.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + network.download + A video downloader + Bir video indirici. + A program which downloads and converts online videos from YouTube, Vimeo, DailyMotion, MyVideo and many other platforms. + YouTube, Vimeo, DailyMotion, MyVideo ve diğer bazı platformlardan video indirip dönüştürebilen bir programdır. + clipgrab + https://download.clipgrab.org/clipgrab-3.9.7.tar.gz + + ffmpeg-devel + qt5-base-devel + qt5-webengine-devel + + network/download/clipgrab/pspec.xml + + + clipgrab + + ffmpeg + libgcc + yt-dlp + qt5-base + qt5-webengine + + + /usr/bin + /usr/share/pixmaps + /usr/share/applications + /usr/share/doc/clipgrab + + + clipgrab.desktop + + + + + 2022-03-29 + 3.9.7 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + persepolis + https://persepolisdm.github.io + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + library + network.download + Qt front-end for aria2 download manager + Persepolis is a Download Manager and a GUI For aria2. + https://github.com/persepolisdm/persepolis/archive/refs/tags/3.2.0.tar.gz + + aria2-devel + ffmpeg-devel + qt5-svg-devel + python3-devel + python3-psutil + libnotify-devel + python3-requests + python3-qt5-devel + python3-setuptools + python3-youtube_dl + python-setproctitle + pulseaudio-libs-devel + sound-theme-freedesktop + + network/download/persepolis/pspec.xml + + + persepolis + + aria2 + ffmpeg + python3 + qt5-svg + python3-qt5 + pulseaudio-libs + python3-requests + python3-youtube_dl + python-setproctitle + sound-theme-freedesktop + + + /usr/share + /usr/bin + /usr/share/man/man1 + /usr/share/doc/persepolis + /usr/lib/python3.9/site-packages + + + + + 2022-02-05 + 3.2.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + prozilla + http://freecode.com/projects/prozilla + + Mathias Freire + mathiasfreire45@gmail.com + + GPLv3 + app:console + network.download + Console based download accelerator. + Prozilla is a console based download accelerator which speeds up download process approximately %200-300. + http://ftp.disconnected-by-peer.at/prozilla/prozilla-2.0.5.tar.bz2 + + ncurses-devel + + network/download/prozilla/pspec.xml + + + prozilla + + /usr/bin + /usr/include + /usr/share/locale + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2019-06-09 + 2.0.5 + First release + Mathias Freire + mathiasfreire45@gmail.com + + + + + + uget + http://ugetdm.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:gui + network.download + uget - Download manager using GTK+ and libcurl + Bir indirme aracı. + uGet is an Open Source download manager application for GNU/Linux developed with GTK+. + Uget, Linux için yazılmış, GTK tabanlı bir indirme yöneticisidir. + uget + https://sourceforge.net/projects/urlget/files/uget%20%28stable%29/2.2.3/uget-2.2.3-1.tar.gz + + intltool + gtk3-devel + curl-devel + cairo-devel + glib2-devel + pango-devel + openssl-devel + libnotify-devel + gdk-pixbuf-devel + gstreamer-devel + + network/download/uget/pspec.xml + + + uget + + curl + gtk3 + cairo + glib2 + pango + openssl + libnotify + gdk-pixbuf + gstreamer + aria2 + + + /usr/bin + /usr/share/applications + /usr/share/pixmaps + /usr/share/sounds + /usr/share/icons + /usr/share/locale + /usr/share/doc + + + + + 2020-04-11 + 2.2.3.1 + Version bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2016-03-22 + 2.0.5 + Version bump, rebuilt with docker. + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2014-07-09 + 1.10.4 + Version Bump. + Vedat Demir + vedat@pisilinux.org + + + 2014-02-17 + 1.10.3 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2013-02-08 + 1.10.3 + First release + Idris Kalp + admins@pisilinux.org + + + + + + wget + http://www.gnu.org/software/wget/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + app:console + network.download + Command-line utility to retrieve files from remote systems + Http ve ftp gibi internet protokollerini kullanarak dosya indirebilen bir yazılım + GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. + GNU Wget, HTTP, HTTPS ve FTP gibi en çok kullanılan Internet protokollerini kullanarak dosyalara ulaşmak icin kullanılan bir özgür yazılım paketidir. Etkileşimsiz bir komutsatırı aracıdır, böylece X-Windows desteği olmadan, betikler, işlemler, terminal kullanımı gerçekleştirilebilir. + http://ftp.gnu.org/gnu/wget/wget-1.21.1.tar.gz + + openssl-devel + zlib-devel + libidn2-devel + + network/download/wget/pspec.xml + + + wget + + zlib + openssl + libidn2 + + + /etc + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale + + + + + 2021-03-01 + 1.21.1 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-11-07 + 1.20.3 + Rebuild + mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 1.20.3 + Version bump + idris kalp + idriskalp@gmail.com + + + 2018-08-07 + 1.19 + Rebuild + mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 1.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-10-27 + 1.18 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 1.17.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-25 + 1.17.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + iproute2 + https://wiki.linuxfoundation.org/networking/iproute2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.filter + Kernel routing and traffic control utilities + Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları. + Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. + Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. + https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-5.14.0.tar.gz + + db-devel + zlib-devel + libbsd-devel + libcap-devel + libmnl-devel + elfutils-devel + linux-atm-devel + iptables-devel + + + 0001-make-iproute2-fhs-compliant.patch + + network/filter/iproute2/pspec.xml + + + iproute2 + + iptables + db + elfutils + libcap + libmnl + libbsd + linux-atm + + + /etc + /sbin + /usr/lib + /usr/include + /usr/share/tc + /usr/share/man + /usr/share/doc + /usr/share/bash-completion + /var/lib + + + + + 2021-09-02 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-02 + 5.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-23 + 5.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 5.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-23 + 4.19.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-13 + 4.15.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-06-09 + 4.14.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-01-29 + 4.9.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-10-19 + 4.8.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 4.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-05 + 4.4.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + iptables + http://www.iptables.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.filter + Firewall, NAT and packet mangling tools + Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı + Contains iptables firewall, NAT and packet mangling tools. + Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır. + https://www.netfilter.org/projects/iptables/files/iptables-1.8.7.tar.bz2 + + libmnl-devel + libpcap-devel + libnfnetlink-devel + + network/filter/iptables/pspec.xml + + + iptables + + libmnl + libpcap + libnfnetlink + + + /usr/bin + /sbin + /lib + /usr/lib + /usr/share/man + /etc + /var + /usr/share/xtables + + + System.Service + Network.Firewall + + + + iptables-devel + Development files for iptables + iptables için geliştirme dosyaları + + iptables + + + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-07-19 + 1.8.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-01 + 1.8.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-19 + 1.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 1.6.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-20 + 1.6.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + filezilla + https://filezilla-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + network.ftp + Simple FTP Client + FTP ve SFTP istemcisi + Easy-to-use FTP Client which also supports SFTP. + Filezilla; dosyalarınızı ftp, sftp, ftps ile göndermenize ve indirmenize yarar + filezilla + https://download.filezilla-project.org/client/FileZilla_3.51.0_src.tar.bz2 + + wxGTK3 + wxGTK-common + cppunit-devel + libidn-devel + dbus-devel + sqlite-devel + gnutls-devel + gtk2-devel + xdg-utils + wxGTK-devel + nettle-devel + libfilezilla-devel + + network/ftp/filezilla/pspec.xml + + + filezilla + + gtk2 + wxGTK + dbus + sqlite + libgcc + glib2 + gnutls + nettle + xdg-utils + libfilezilla + wxGTK3 + wxGTK-common + + + /usr/bin + /usr/lib/libfzclient-private* + /usr/share/applications + /usr/share/filezilla + /usr/share/pixmaps + /usr/share/icons + /usr/share/locale + /usr/share/doc + /usr/share/man + /usr/share/appdata/ + + + + + 2020-12-17 + 3.51.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 20-06-04 + 3.48.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-01 + 3.32.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-07 + 3.32.0 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2018-02-20 + 3.30.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-25 + 3.25.2 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 3.14.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-26 + 3.14.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + lftp + http://lftp.yar.ru/ PisiLinux Community admins@pisilinux.org GPLv3 app:console - server - Fool ssh into accepting an interactive password non-interactively - Fool ssh into accepting an interactive password non-interactively - Fool ssh into accepting an interactive password non-interactively - Fool ssh into accepting an interactive password non-interactively - https://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz + network.ftp + Command line FTP client + Komut satırı FTP istemcisi + LFTP is sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. It has bookmarks, built-in mirror, can transfer several files in parallel. It was designed with reliability in mind. + LFTP komut satırı arayüzüne sahip gelişmiş bir dosya aktarım programıdır. FTP, HTTP, FISH, SFTP, HTTPS ve FTPS protokollerini destekler. Yer imleri, yansılama, paralel olarak birçok dosya transfer etme özellikleri bulunuyor. Güvenirlik esas alınarak tasarlandı. + lftp + http://lftp.tech/ftp/lftp-4.9.2.tar.gz - openssh + gnutls-devel + flex + bison + gcc + gettext-devel + libtool + zlib-devel + ncurses-devel + expat-devel + libidn2-devel + readline-devel - server/sshpass/pspec.xml + + config-dns-inet6_before_inet.patch + lftp_sys-stdint-kfreebsd.patch + + network/ftp/lftp/pspec.xml - sshpass + lftp - openssh + zlib + expat + libgcc + gnutls + libidn2 + ncurses + readline + + + /etc + /usr/bin + /usr/lib + /usr/share/doc/lftp + /usr/share/applications/lftp.desktop + /usr/share/icons/hicolor/48x48/apps/lftp-icon.png + /usr/share/man + /usr/share/locale + /usr/share/lftp + /usr/share/pixmaps + + + lftp.png + + + + + 2021-07-02 + 4.9.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 4.8.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-03 + 4.8.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-25 + 4.7.7 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-22 + 4.7.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + minicom + https://salsa.debian.org/minicom-team/minicom + + PisiLinux Community + admins@pisilinux.org + + GPL + app:console + network.ftp + A serial communication program + A serial communication program + Seri iletişim programı + Seri iletişim programı + https://salsa.debian.org/minicom-team/minicom/-/archive/2.8/minicom-2.8.tar.gz + + ncurses-devel + + network/ftp/minicom/pspec.xml + + + minicom + + ncurses + + + /usr/bin + /etc + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2021-08-09 + 2.8 + Version Bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-03-19 + 2.7.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + vsftpd + http://vsftpd.beasts.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + network.ftp + Very Secure FTP Daemon written with speed, size and security in mind + Hızlı, küçük ve ileri derecede güvenli bir ftp sunucusu + Vsftpd is a ftp server, mostly focuses on security. + Vsftpd güvenlik odaklı bir ftp sunucu yazılımıdır. + https://security.appspot.com/downloads/vsftpd-3.0.3.tar.gz + + libnsl-devel + + + vsftpd-pisilinux.patch + + network/ftp/vsftpd/pspec.xml + + + vsftpd + + pam + libcap + openssl + + + /etc + /usr/sbin + /home/ftp + /usr/share/doc + /usr/share/man + /usr/share/vsftpd/empty + /var/log/vsftpd + + + System.Package + System.Service + + + ftp-pamd + vsftpd.conf + ftpusers + + + + + 2021-07-02 + 3.0.3 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-02 + 3.0.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-25 + 3.0.3 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2016-11-22 + 3.0.3 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + cloud-init + https://cloud-init.io + + Kamil Atlı + suvari@pisilinux.org + + GPLv3 + app:console + network.library + The standard for customising cloud instances + Bulut örneklerini özelleştirme standardı + La norme pour la personnalisation des instances cloud + The standard for customising cloud instances + Bulut örneklerini özelleştirme standardı + https://launchpad.net/cloud-init/trunk/21.4/+download/cloud-init-21.4.tar.gz + + dhclient + python3-devel + python3-Jinja2 + python3-PyYAML + python3-requests + python3-configobj + python3-setuptools + + network/library/cloud-init/pspec.xml + + + cloud-init + + python3 + dhclient + python3-Jinja2 + python3-PyYAML + python-oauthlib + python-netifaces + python-configobj + python3-requests + python3-configobj + python-jsonschema + + + /usr/bin + /etc + /usr/lib/python3.9/site-packages + /usr/lib/cloud-init + /lib/udev/rules.d + /usr/share/bash-completion + /usr/share/doc/cloud-init + + + + + 2022-01-09 + 21.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + enet + http://enet.bespin.org/ + + Kamil Atlı + suvari@pisilinux.org + + MIT + library + network.library + UDP network library + UDP ağ kitaplığı + enet is a relatively thin, simple and robust network communication layer on top of UDP. + enet UDP protokolü üzerinden iletişim için kullanılabilecek küçük, kolay kullanımlı ve sağlam bir kitaplıktır. + enet + http://enet.bespin.org/download/enet-1.3.14.tar.gz + + glibc-devel + + network/library/enet/pspec.xml + + + enet + + /usr/lib + /usr/share/doc + + + + enet-devel + Development files for enet + enet için geliştirme dosyaları + + enet + + + /usr/include + /usr/lib/pkgconfig + + + + + 2019-10-30 + 1.3.14 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + flickcurl + http://librdf.org/flickcurl/ + + PisiLinux Community + admin@pisilinux.org + + GPLv2 + app:console + library + network.library + C library for the Flickr API + Flickr API için C Kitaplığı + Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. + Flickcurl oluşan istekleri taşıma, imzalama, token yönetimi, API çağırma, istenilen parametreleri sıralama ve yanıtları çözme işlemleri için bir C kitaplığıdır. + http://download.dajobe.org/flickcurl/flickcurl-1.26.tar.gz + + curl-devel + raptor2-devel + libxml2-devel + + + a5cc2a5d2fc7074f50fbaa772232b6e0fea7ce89.patch + + network/library/flickcurl/pspec.xml + + + flickcurl + + curl + raptor2 + libxml2 + + + /usr/bin + /usr/lib/ + /usr/share/doc + /usr/share/man + + + + flickcurl-devel + flickurl için geliştirme dosyaları + flickcurl için geliştirme dosyaları + + flickcurl + raptor2-devel + + + /usr/include + /usr/share/gtk-doc + /usr/lib/pkgconfig + + + + + 2020-03-05 + 1.26 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2018-10-14 + 1.26 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + glib-networking + http://git.gnome.org/browse/glib-networking/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + network.library + Network-related giomodules for glib + Moduły GIO dotyczące sieci do glib + This package contains various network related extensions for the GIO library. + Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. + mirrors://gnome/glib-networking/2.72/glib-networking-2.72.0.tar.xz + + meson + gnutls-devel + p11-kit-devel + ca-certificates + intltool + glib2-devel + libidn-devel + + network/library/glib-networking/pspec.xml + + + glib-networking + + gnutls + p11-kit + glib2 + ca-certificates + + + /usr/lib/gio/modules + /usr/lib/systemd + /usr/libexec + /usr/share + /usr/share/doc/glib-networking + + + + + 2022-06-01 + 2.72.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-06 + 2.70.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-06 + 2.68.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-29 + 2.68.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.62.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 2.54.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-19 + 2.50.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 2.38.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-30 + 2.38.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + ipaddr + https://pypi.org/project/ipaddr/ + + PisiLinux Community + admins@pisilinux.org + + Apache + library + network.library + An IPv4/IPv6 manipulation library in Python + ipaddr.py is a library for working with IP addresses, both IPv4 and IPv6 + https://files.pythonhosted.org/packages/9d/a7/1b39a16cb90dfe491f57e1cab3103a15d4e8dd9a150872744f531b1106c1/ipaddr-2.2.0.tar.gz + network/library/ipaddr/pspec.xml + + + ipaddr + + /usr/lib + /usr/share/doc + + + + + 2020-06-04 + 2.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + 2019-03-18 + 2.2.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libetpan + https://www.etpan.org/libetpan.html + + fury + uglyside@yandex.ru + + custom + library + network.library + A portable middleware for email access. + The purpose of this mail library is to provide a portable, efficient framework for different kinds of mail access: IMAP, SMTP, POP and NNTP. + https://github.com/dinhvh/libetpan/archive/1.9.4.tar.gz + + db-devel + curl-devel + expat-devel + gnutls-devel + openssl-devel + cyrus-sasl-devel + + + Detect_extra_data_after_STARTTLS_response_and_exit.patch + + network/library/libetpan/pspec.xml + + + libetpan + + db + openssl + cyrus-sasl + + + /usr/lib + + + + libetpan-devel + + libetpan + db-devel + gnutls-devel + openssl-devel + cyrus-sasl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-13 + 1.9.4 + First build + fury + uglyside@yandex.ru + + + + + + libfilezilla + https://lib.filezilla-project.org/doc/index.html + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2 + Libry + network.library + libfilezilla is a small and modern C++ library. + libfilezilla is a free, open source C++ library, offering some basic +functionality to build high-performing, platform-independent programs. + https://download.filezilla-project.org/libfilezilla/libfilezilla-0.26.0.tar.bz2 + + libgcc + gmp-devel + gnutls-devel + nettle-devel + + network/library/libfilezilla/pspec.xml + + + libfilezilla + + libgcc + gnutls + nettle + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale + + + + libfilezilla-devel + Development files for libfilezilla + + nettle-devel + gnutls-devel + libfilezilla + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-12-17 + 0.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-04 + 0.22.0 + Version bump + Kamil Atlıl + suvari@pisilinux.org + + + 2018-09-01 + 0.12.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-07 + 0.12.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2018-02-20 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-25 + 0.9.1 + First Release + Kamil Atlı + suvari@pisilinux.org + + + + + + libiscsi + https://github.com/sahlberg/libiscsi + + Kamil Atlı + suvari@pisilinux.org + + custom + library + network.library + Clientside library to implement the iSCSI protocol + iSCSI protokolünü uygulamak için istemci tarafı kitaplığı + Libiscsi is a client-side library to implement the iSCSI protocol that can be used to access the resources of an iSCSI target. + Libiscsi, bir iSCSI hedefinin kaynaklarına erişmek için kullanılabilecek iSCSI protokolünü uygulamaya yönelik bir istemci tarafı kitaplığıdır. + https://github.com/sahlberg/libiscsi/archive/refs/tags/1.19.0.tar.gz + + popt-devel + glibc-devel + libgcrypt-devel + + network/library/libiscsi/pspec.xml + + + libiscsi + + popt + libgcrypt + + + /usr/lib/libiscsi.so* + /usr/bin + /usr/share/man/man1 + /usr/share/doc/libiscsi + + + + libiscsi-devel + Development files for libiscsi + + libiscsi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-02-05 + 1.19.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libmbim + http://www.freedesktop.org/wiki/Software/libmbim/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.library + MBIM modem protocol helper library. + libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. + http://www.freedesktop.org/software/libmbim/libmbim-1.26.2.tar.xz + + gtk-doc + help2man + glib2-devel + python3-devel + libgudev-devel + autoconf-archive + gobject-introspection-devel + + network/library/libmbim/pspec.xml + + + libmbim + + glib2 + libgudev + + + /usr/lib + /usr/share/man + /usr/bin/ + /usr/share/gtk-doc/ + /usr/share/bash-completion + /usr/share/gir-1.0 + /usr/libexec + /usr/share/doc/libmbim + + + + libmbim-devel + libmbim için geliştirme dosyaları + libmbim için geliştirme dosyaları + + libmbim + glib2-devel + libgudev-devel + + + /usr/lib/pkgconfig + /usr/include/libmbim-glib/ + + + + + 2021-11-27 + 1.26.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-24 + 1.24.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-03 + 1.24.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-10 + 1.24.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 1.20.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 1.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.16.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-18 + 1.14.0 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-11-12 + 1.14.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 1.12.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.12.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libmnl + https://netfilter.org/projects/libmnl/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.library + libmnl is a minimalistic user-space library for Netlink developers. + libmnl, Netlink geliştiricileri için minimalistik kulanıcı alanı kütüphanesidir. + libmnl is a minimalistic user-space library for Netlink developers. There are a lot of common tasks involved in parsing, validating, and constructing both the Netlink header and TLVs that are repetitive and easy to get wrong. + libmnl, Netlink geliştiricileri için minimalistik kulanıcı alanı kütüphanesidir. Hem Netlink başlığı hemde TLV'ler gibi tekrarlayıp duran ve kolaylıkla yanlış gidebilecekler de çözümleme, doğrulama ve inşa etme gibi birçok yaygın görevler bulunmaktadır. Bu kütüphanenin amacı kodu yeniden kullanmanızı sağlamak ve tekerleği yeniden icat etmenizi engelleyecek temel yardımcıları sunmaktır. + https://netfilter.org/projects/libmnl/files/libmnl-1.0.4.tar.bz2 + network/library/libmnl/pspec.xml + + + libmnl + libmnl is a minimalistic user-space library for Netlink developers. + + /usr/share/doc/libmnl + /usr/lib/libmnl.so + /usr/lib/libmnl.so.0 + /usr/lib/libmnl.so.0.2.0 + + + + libmnl-devel + Development files for libmnl + libmnl için geliştirme dosyaları + libmnl-devel, libmnl için geliştirme dosyalarını içerir. + + libmnl + + + /usr/include/libmnl + /usr/lib/pkgconfig/libmnl.pc + + + + + 2020-04-10 + 1.0.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2016-03-13 + 1.0.3 + Rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2014-03-09 + 1.0.3 + Rebuild. + Kamil Atlı + suvarice@gmail.com + + + 2013-07-28 + 1.0.3 + Move pc files to devel pack, rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-02 + 1.0.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libnma + https://wiki.gnome.org/Projects/NetworkManager/ + + PisiLinux Community + admins@pisilinux.org + + GPL + library + network.library + NetworkManager GUI client library + NetworkManager GUI client library + NetworkManager GUI istemci kitaplığı + NetworkManager GUI istemci kitaplığı + https://download.gnome.org/sources/libnma/1.8/libnma-1.8.38.tar.xz + + meson + gtk-doc + gcr-devel + gtk4-devel + gtk3-devel + vala-devel + docbook-xsl + glib2-devel + iso-codes-devel + NetworkManager-devel + gobject-introspection-devel + mobile-broadband-provider-info + + network/library/libnma/pspec.xml + + + libnma + + gcr + gtk4 + gtk3 + cairo + glib2 + NetworkManager + + + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + libnma-devel + Development files for libnma + + libnma + NetworkManager-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libnma-docs + Development files for libnma + + libnma + + + /usr/share/gtk-doc + + + + + 2022-04-07 + 1.8.38 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-21 + 1.8.34 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-21 + 1.8.32 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 1.8.30 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-14 + 1.8.28 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libqmi + http://www.freedesktop.org/wiki/Software/libqmi/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + network.library + QMI modem protocol helper library + libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. + https://www.freedesktop.org/software/libqmi/libqmi-1.30.2.tar.xz + + help2man + glib2-devel + python3-devel + libgudev-devel + autoconf-archive + gobject-introspection-devel + libmbim-devel + + network/library/libqmi/pspec.xml + + + libqmi + + glib2 + libgudev + libmbim + gobject-introspection + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/gtk-doc + /usr/share/doc/libqmi/ + /usr/share/gir-1.0/Qmi-1.0.gir + /usr/share/bash-completion + + + + libqmi-devel + Development files for libqmi + + libqmi + glib2-devel + + + /usr/include + /usr/lib/pkgconfig/qmi-glib.pc + + + + + 2021-11-27 + 1.30.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-24 + 1.28.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-03 + 1.28.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 1.28.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-07-10 + 1.26.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-30 + 1.24.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 1.22.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 1.22.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.20.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-19 + 1.16.2 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-11-12 + 1.16.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 1.12.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-25 + 1.12.6 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libsrtp + https://github.com/cisco/libsrtp + + Pisi Linux Admins + admin@pisilinux.org + + BSD + library + network.library + An implementation of the Secure Real-time Transport Protocol (SRTP) + An implementation of the Secure Real-time Transport Protocol (SRTP) + SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü) + SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü) + https://github.com/cisco/libsrtp/archive/refs/tags/v2.3.0.tar.gz + + nss-devel + libpcap-devel + openssl-devel + + + libsrtp-2.3.0-rtp-header.patch + fedora/libsrtp-2.3.0-shared-fix.patch + fedora/libsrtp-2.3.0-test-util.patch + fedora/libsrtp-2.3.0-shared-test-fix.patch + + network/library/libsrtp/pspec.xml + + + libsrtp + + openssl + + + /usr/lib + /usr/share + /usr/share/doc + + + + libsrtp-devel + Development files for libsrtp + + libsrtp + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-04-04 + 2.3.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libuhttpmock + https://gitlab.com/uhttpmock/uhttpmock + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv2.1 + app + network.library + HTTP web service mocking project for projects which use libsoup + HTTP web service mocking project for projects which use libsoup + HTTP web service mocking project for projects which use libsoup + HTTP web service mocking project for projects which use libsoup + https://gitlab.com/uhttpmock/uhttpmock/-/archive/0.5.3/uhttpmock-0.5.3.tar.gz + + gtk-doc + vala-devel + glib2-devel + gettext-devel + libsoup-devel + autoconf-archive + + network/library/libuhttpmock/pspec.xml + + + libuhttpmock + + glib2 + libsoup + + + /usr/lib + /usr/share/vala + /usr/share/doc + + + + libuhttpmock-devel + Development files for libuhttpmock + + libuhttpmock + glib2-devel + libsoup-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + + 2021-06-02 + 0.5.3 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + miniupnpc + http://miniupnp.free.fr/ + + Kamil Atlı + suvari@pisilinux.org + + BSD-3-Clause + library + network.library + miniupnpc is a UPnP Control Point. + bir uPnP istemci kütüphanesi + miniupnpc, the client library, enabling applications to access the services provided by an UPnP "Internet Gateway Device" present on the network. In UPnP terminology,miniupnpc is a UPnP Control Point. + bir uPnP istemci kitaplığı;uygulamaların ağdaki mevcut bir UPnP "internet ağgeçidi aygıtı" tarafından sağlanan servislere erişimine olanak verir. + http://miniupnp.free.fr/files/miniupnpc-2.2.3.tar.gz + + cmake + python3-devel + python3-setuptools + + + fix_install_for_headers.patch + fix_install_rules_to_account_for_BUILD_var.patch + + network/library/miniupnpc/pspec.xml + + + miniupnpc + bir uPnP istemci kütüphanesi + + /usr/lib + /usr/share/doc + + + + python3-miniupnpc + + miniupnpc + + + /usr/lib/python3.9 + + + + miniupnpc-devel + miniupnpc için geliştirme dosyaları + + miniupnpc + + + /usr/include/miniupnpc + /usr/lib/pkgconfig + /usr/lib/cmake/miniupnpc + + + + + 2022-04-16 + 2.2.3 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2020-06-04 + 2.1.20191224 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-06-04 + 2.1.20190824 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2019-10-30 + 2.1.20190824 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + nodejs + http://nodejs.org/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + MIT + app:console + network.library + Evented I/O for V8 javascript + Olay bazlı V8 Javascript motoru + Node.js is an open-source, cross-platform, JavaScript runtime environment. It executes JavaScript code outside of a browser. + Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. + https://nodejs.org/dist/v16.11.1/node-v16.11.1.tar.xz + + icu4c-devel + libuv-devel + openssl-devel + python3-devel + libnghttp2-devel + + network/library/nodejs/pspec.xml + + + nodejs + Node.js JavaScript runtime + + icu4c + zlib + libuv + libgcc + openssl + libnghttp2 + + + /usr/lib/node_modules + /usr/share/systemtap + /usr/bin + /usr/include + /usr/share/doc + /usr/share/man + + + + + 2021-10-23 + 16.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-17 + 16.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-09 + 16.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 15.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-26 + 15.9.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-04-26 + 14.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-17 + 13.6.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 9.5.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-02 + 7.9.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-10 + 4.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openpgm + https://www.freshports.org/net/openpgm/ + + Blue Devil + bluedevil@sctzine.com + + LGPL2.1 + library + network.library + Implementation of the PGM reliable multicast protocol + Guvenilir coklu yayin protolu PGM'nin uygulamasi + OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. + OpenPGM, RFC 3208'de belirtilen Pragmatik Genel Coklu Yayın(Pragmatic General Multicast - PGM) uygulamasıdır. + https://github.com/steve-o/openpgm/archive/release-5-2-122.tar.gz + network/library/openpgm/pspec.xml + + + openpgm + Implementation of the PGM reliable multicast protocol + + /usr/lib + /usr/share/doc/libpgm + + + + openpgm-devel + Development files for openpgm + openpgm için geliştirme dosyaları + openpgm-devel, openpgm için geliştirme dosyaları sunar. + + openpgm + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2019-12-30 + 5.2.122 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + serf + https://serf.apache.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + Apachev2 + library + network.library + High-performance asynchronous HTTP client library. + The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library. + https://archive.apache.org/dist/serf/serf-1.3.9.tar.bz2 + + db-devel + zlib-devel + expat-devel + openssl-devel + apr-devel + apr-util-devel + scons + + + scons_py3.patch + + network/library/serf/pspec.xml + + + serf + + db + zlib + expat + openssl + apr + apr-util + openldap-client + + + /usr/lib + /usr/share/doc + + + + serf-devel + Development files for serf + serf için geliştirme dosyaları + + serf + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-22 + 1.3.9 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2020-02-26 + 1.3.9 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-01 + 1.3.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-21 + 1.3.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-06 + 1.3.8 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + srt + https://www.srtalliance.org + + Pisi Linux Admins + admin@pisilinux.org + + MPLv2.0 + library + network.library + Secure Reliable Transport protocol tools + Secure Reliable Transport protocol tools + Güvenli Güvenilir Aktarım protokolü araçları + Güvenli Güvenilir Aktarım protokolü araçları + https://github.com/Haivision/srt/archive/refs/tags/v1.4.2.tar.gz + + git + cmake + gnutls-devel + nettle-devel + openssl-devel + + network/library/srt/pspec.xml + + + srt + + gnutls + nettle + + + /usr/bin + /usr/lib + /usr/share/doc + + + + srt-devel + Development files for srt + + srt + gnutls-devel + nettle-devel + openssl-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-04-04 + 1.4.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + zeromq + https://github.com/zeromq/libzmq/ + + Blue Devil + bluedevil@sctzine.com + + LGPL + app:console + library + network.library + ZeroMQ core engine in C++, implements ZMTP/3.1 + ZeroMQ, ZMTP/3.1 uygulayan ve çekirdegi C++ olan bir kitaplıktır. + The ZeroMQ lightweight messaging kernel is a library which extends the standard socket interfaces with features traditionally provided by specialised messaging middleware products. ZeroMQ sockets provide an abstraction of asynchronous message queues, multiple messaging patterns, message filtering (subscriptions), seamless access to multiple transport protocols and more. + ZeroMQ soketleri asenkron mesaj kuyruklarının soyutlanması, çoklu mesaj oruntuleri, mesaj suzme coklu ulaşım protokollerine kesintisiz erişim saglayabilen bir kitaplıktır. + https://github.com/zeromq/libzmq/archive/v4.3.4.tar.gz + https://github.com/zeromq/cppzmq/archive/v4.8.0.tar.gz + + libsodium-devel + openpgm-devel + + network/library/zeromq/pspec.xml + + + zeromq + ZeroMQ core engine in C++, implements ZMTP/3.1 + + libsodium + openpgm + + + /usr/bin/curve_keygen + /usr/lib + /usr/share/doc/zeromq + + + + zeromq-devel + Development files for zeromq + zeromq için geliştirme dosyaları + zeromq-devel, zeromq için geliştirme dosyaları sunar. + + zeromq + libsodium-devel + openpgm-devel + + + /usr/include + /usr/include/zeromq + /usr/lib/pkgconfig + + + + + 2021-12-06 + 4.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-30 + 4.3.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + claws-mail + https://claws-mail.org/ + + fury + uglyside@yandex.ru + + GPL-3 + app:gui + network.mail + Claws Mail is an email client (and news reader), based on GTK+. + Claws Mail is a lightweight and highly configurable email client and news reader based on the GTK+ GUI toolkit. + https://claws-mail.org/releases/claws-mail-4.1.0.tar.xz + + flex + bison + curl-devel + gtk3-devel + gpgme-devel + libSM-devel + gnutls-devel + openssl-devel + libical-devel + librsvg-devel + python3-devel + gettext-devel + enchant2-devel + libetpan-devel + compface-devel + libnotify-devel + libsocket-devel + openldap-server + libarchive-devel + gumbo-parser-devel + NetworkManager-devel + python3-pygobject3-devel + startup-notification-devel + + network/mail/claws-mail/pspec.xml + + + claws-mail + + db + atk + curl + gtk3 + perl + zlib + cairo + expat + glib2 + gpgme + libSM + pango + gnutls + libgcc + libICE + nettle + libical + librsvg + openssl + python3 + freetype + compface + enchant2 + harfbuzz + libetpan + dbus-glib + libassuan + libnotify + cyrus-sasl + gdk-pixbuf + fontconfig + libarchive + gumbo-parser + libgpg-error + openldap-client + startup-notification + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc/clawsmail + + + + claws-mail-devel + + claws-mail + gtk3-devel + glib2-devel + enchant2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-14 + 4.1.0 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-20 + 4.0.0 + First build. + fury + uglyside@yandex.ru + + + + + + razor + https://github.com/toddr/Razor2-Client-Agent + + fury + uglyside@yandex.ru + + PerlArtistic + app + network.mail + Razor is a distributed, collaborative, spam detection and filtering network. + Vipul's Razor is a distributed, collaborative, spam detection and filtering network. Through user contribution, Razor establishes a distributed and constantly updating catalogue of spam in propagation that is consulted by email clients to filter out known spam. Detection is done with statistical and randomized signatures that efficiently spot mutating spam content. User input is validated through reputation assignments based on consensus on report and revoke assertions which in turn is used for computing confidence values associated with individual signatures. + https://cpan.metacpan.org/authors/id/T/TO/TODDR/Razor2-Client-Agent-2.86.tar.gz + + perl + + + razor.patch + + network/mail/razor/pspec.xml + + + razor + + perl + perl-URI + perl-Net-DNS + perl-Digest-SHA1 + perl-Digest-Nilsimsa + + + /usr/bin + /usr/lib/perl5 + /usr/share/man + + + + + 2021-12-20 + 2.86 + Rebuild + fury + uglyside@yandex.ru + + + 2021-09-18 + 2.85 + First build + fury + uglyside@yandex.ru + + + + + + spamassassin + https://spamassassin.apache.org/ + + Pisi Linux Community + admins@pisilinux.org + + Apache-2 + server + network.mail + Spam detector and markup engine. + Apache SpamAssassin is the Open Source anti-spam platform giving system administrators a filter to classify email and block spam (unsolicited bulk email). + mirrors://apache/spamassassin/source/Mail-SpamAssassin-3.4.6.tar.bz2 + + re2c + perl + razor + gnupg + perl-DBI + openssl-devel + perl-Mail-DKIM + libsocket-devel + perl-NetAddr-IP + perl-HTML-Parser + + network/mail/spamassassin/pspec.xml + + + spamassassin + + re2c + perl + razor + gnupg + openssl + perl-DBI + libsocket + perl-libwww + perl-Net-DNS + perl-NET-HTTP + perl-Mail-SPF + perl-Mail-DKIM + perl-NetAddr-IP + perl-HTML-Parser + perl-HTTP-Message + perl-IO-Socket-SSL + perl-IO-Socket-INET6 + + + /etc/conf.d/spamd + /etc/mail/spamassassin + /usr/bin + /usr/lib/perl5 + /usr/lib/tmpfiles.d + /usr/share/spamassassin + /run/spamd + /var/lib/spamd + /usr/share/man/man1 + /usr/share/man/man3 + + + System.Package + System.Service + + + spamd-confd + + + + + 2021-09-23 + 3.4.6 + First build + fury + uglyside@yandex.ru + + + + + + sylpheed + http://sylpheed.sraoss.jp/en/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + network.mail + A lightweight email client and newsreader + Hafif ve hızlı bir e-posta ve haber okuyucu + Szybki klient poczty bazujący na GTK+ + Sylpheed is a simple and lightweight but featureful and easy-to-use e-mail client. + GTK+ tabanlı, X-Window Sistemi üzerinde çalışan bir e-posta ve haber istemcisi. + Szybki klient poczty z przyjaznym, intuicyjnym interfejsem użytkownika. + sylpheed-128x128 + http://sylpheed.sraoss.jp/sylpheed/v3.7/sylpheed-3.7.0.tar.bz2 + + atk-devel + gtk2-devel + gpgme-devel + pango-devel + cairo-devel + openssl-devel + enchant-devel + compface-devel + gtkspell-devel + harfbuzz-devel + openldap-client + fontconfig-devel + gdk-pixbuf-devel + shared-mime-info + libgpg-error-devel + + + sendmail_accelerator.patch + add-xdg-support.patch + v2-0001-libsylph-ssl.c-Support-SNI-some-servers-imap.gmai.patch + + network/mail/sylpheed/pspec.xml + + + sylpheed-docs + Documentation files for sylpheed + sylpheed için belgelendirme dosyaları + data:doc + + sylpheed + + + /usr/share/doc/sylpheed + /usr/share/doc/sylpheed/html + + + + sylpheed + + atk + dbus + gtk2 + pango + cairo + glib2 + gpgme + enchant + openssl + freetype + compface + gtkspell + harfbuzz + dbus-glib + fontconfig + gdk-pixbuf + openldap-client + shared-mime-info + + + /usr/bin + /usr/share/locale + /usr/lib + /usr/share/pixmaps + /usr/share/applications + + + + sylpheed-devel + Development files for sylpheed + sylpheed için geliştirme dosyaları + Pliki nagłówkowe sylpheed + library + + sylpheed + + + /usr/include/sylpheed + + + + + 2021-02-06 + 3.7.0 + Version bump. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2017-01-28 + 3.5.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2015-02-13 + 3.4.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-01-13 + 3.3.0 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2012-09-03 + 3.2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + thunderbird + http://www.mozilla.org/projects/thunderbird/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2+ + app:gui + network.mail + The Stand-Alone Mozilla Mail Component + Thunderbird eposta istemcisi + Klient pocztowy Thunderbird + Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform. + Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir. + Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami. + thunderbird + http://ftp.mozilla.org/pub/thunderbird/releases/91.8.1/source/thunderbird-91.8.1.source.tar.xz + + pisilinux/mozconfig + + + autoconf213 + wget + yasm + bzip2 + nss-devel + gtk2-devel + gtk3-devel + zlib-devel + libXt-devel + libSM-devel + libpng-devel + sqlite-devel + libffi-devel + libXcomposite-devel + alsa-lib-devel + libjpeg-turbo-devel + dbus-devel + pixman-devel + dbus-glib-devel + hunspell-devel + libevent-devel + gconf-devel + libvpx-devel + pulseaudio-libs-devel + startup-notification-devel + cbindgen + rust + llvm + python3-devel + llvm-clang-devel + python3-setuptools + nodejs + libuv-devel + libnotify-devel + + network/mail/thunderbird/pspec.xml + + + thunderbird + + atk + nss + gtk2 + nspr + zlib + bzip2 + cairo + glib2 + libXt + pango + libX11 + pixman + libgcc + gconf + icu4c + hunspell + libvpx + libpng + sqlite + iconcan + libXext + alsa-lib + libevent + freetype + libXfixes + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + startup-notification + dbus + gtk3 + libffi + libxcb + dbus-glib + + + /usr/share/doc + /usr/bin + /usr/share/pixmaps + /usr/lib/thunderbird + /usr/share/applications + /usr/share/icons/hicolor + /usr/share/metainfo + + + vendor.js + thunderbird.desktop + pisilinux/network_mail_thunderbird_files_pisilinux_sound.wav + + + + thunderbird-lang-be + Беларуская мова пакет для Thunderbird + locale:be + system.locale + lang-be + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-ca + Arxiu d'idioma català del Thunderbird + locale:ca + system.locale + lang-ca + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-da + Dansk sprogpakke til Thunderbird + locale:da + system.locale + lang-da + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-de + Deutsch Sprachdatei für Thunderbird + locale:de + system.locale + lang-de + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-el + Ελληνική γλώσσα pack για τον Thunderbird + locale:el + system.locale + lang-el + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-en-US + English language pack for Thunderbird + locale:en_US + system.locale + lang-en-US + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-en-GB + English language pack for Thunderbird + locale:en_GB + system.locale + lang-en-GB + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-en-GB@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-es-AR + Paquete de idioma español para Thunderbird + locale:es_AR + system.locale + lang-es-AR + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-es-ES + Paquete de idioma español para Thunderbird + locale:es + system.locale + lang-es-ES + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-fi + Suomen kielen pack for Thunderbird + locale:fi + system.locale + lang-fi + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-fr + Paquet de langue française pour Thunderbird + locale:fr + system.locale + lang-fr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-hr + Hrvatski jezični paket za Thunderbird + locale:hr + system.locale + lang-hr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-hu + Magyar nyelvű pack for Thunderbird + locale:hu + system.locale + lang-hu + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-it + Language Pack italiano per Thunderbird + locale:it + system.locale + lang-it + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-lt + Lietuvių kalbos paketas Thunderbird + locale:lt + system.locale + lang-lt + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-nl + Nederlands taalpakket voor Thunderbird + locale:nl + system.locale + lang-nl + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-pl + Polski pakiet językowy dla programu Thunderbird + locale:pl + system.locale + lang-pl + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-pt-BR + Pacote de idioma português para o Thunderbird + locale:pt_BR + system.locale + lang-pt-BR + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-pt-PT + Pacote de idioma português para o Thunderbird + locale:pt + system.locale + lang-pt-PT + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-ro + Pachet de limba română pentru Thunderbird + locale:ro + system.locale + lang-ro + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-ru + Русский языковый пакет для Thunderbird + locale:ru + system.locale + lang-ru + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-sr + Паковање српски језик за Фирефок + locale:sr + system.locale + lang-sr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-sv-SE + Svenska språkpaket för Thunderbird + locale:sv_SE + system.locale + lang-sv-SE + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-tr + Thunderbird için Türkçe dil dosyası + locale:tr + system.locale + lang-tr + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org.xpi + + + + thunderbird-lang-uk + Український мовний пакет для Thunderbird + locale:uk + system.locale + lang-uk + + thunderbird + + + /usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org.xpi + + + + + 2022-05-01 + 91.8.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-31 + 91.2.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-29 + 91.2.1 + Version Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2021-04-24 + 78.10.0 + Version Bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2018-09-21 + 52.9.0 + Version Bump. + Stefan Gronewold + groni@pisilinux.org + + + 2018-02-04 + 52.6.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-22 + 52.1.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-15 + 45.1.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-29 + 38.5.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + c-ares + https://c-ares.haxx.se/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + network.misc + A C library that performs DNS requests and name resolves asynchronously + Eşzamansız DNS sorgulamaları ve isim çözme işlemleri için bir C kitaplığı + c-ares est une librairie qui effectue des requête DNS et les résolutions de nom de manière asynchrone. c-ares est issue d'un schisme de la librairie 'ares' écrite par Greg Hudson au MIT. + c-ares is a C library that performs DNS requests and name resolves asynchronously. c-ares is a fork of the library named 'ares', written by Greg Hudson at MIT. + Eşzamansız DNS sorgulamaları ve isim çözme işlemleri için bir C kitaplığı. c-ares, ares kitaplığı temel alınarak geliştirilmiştir. + c-ares es una librería C que realiza consultas DNS y resolución asíncron de nombres. c-ares es un derivado (fork) de la librería 'ares', escrito por Greg Hudson en el MIT. + https://c-ares.haxx.se/download/c-ares-1.17.2.tar.gz + network/misc/c-ares/pspec.xml + + + c-ares + + /usr/lib + /usr/share/man/man3 + /usr/share/doc/c-ares/* + + + + c-ares-devel + Development files for c-ares + c-ares için geliştirme dosyaları + + c-ares + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-08-15 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-04 + 1.15.0 + Version Bump. + fury + uglyside@yandex.ru + + + 2018-08-29 + 1.12.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-24 + 1.11.0 + Version bump, rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2014-02-17 + 1.9.1 + Release + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-01 + 1.9.1 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + clamz + https://code.google.com/archive/p/clamz/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv3 + library + network.misc + Amazon Downloader + Amazon Downloader + Clamz is a little command-line program to download MP3 files from Amazon.com's music store. It is intended to serve as a substitute for Amazon's official MP3 Downloader, which is not free software (and therefore is only available in binary form for a limited set of platforms.) Clamz can be used to download either individual songs or complete albums that you have purchased from Amazon. + Clamz is a little command-line program to download MP3 files from +Amazon.com's music store. It is intended to serve as a substitute +for Amazon's official MP3 Downloader, which is not free software (and +therefore is only available in binary form for a limited set of +platforms.) Clamz can be used to download either individual songs or +complete albums that you have purchased from Amazon. + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/clamz/clamz-0.5.tar.gz + + curl-devel + libgcrypt-devel + expat-devel + + network/misc/clamz/pspec.xml + + + clamz + + curl + expat + libgcrypt /usr/bin @@ -285535,22 +242342,6940 @@ from a wide variety of machine architectures. - - 2020-01-27 - 1.06 + + 2020-03-08 + 0.5 Rebuild. - PisiLinux Community - admins@pisilinux.org + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2018-08-20 + 0.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2019-05-04 - 1.06 + 2017-01-07 + 0.5 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + florb + http://florb.shugaa.de/ + + fury + uglyside@yandex.ru + + MIT + app:gui + network.misc + A simple map viewer and GPX editor. + florb is a really simple map viewer and GPX editor written in C++ using the FLTK UI toolkit. florb makes it easy to create and edit tracks for planning short and extended trips into the wild green. Or anywhere else for that matter. + https://github.com/shugaa/florb/archive/85d2be7d851f83db8a289fd2018832aec295d526.zip + https://github.com/pekdon/florb/raw/cmake_support/src/res/audio-input-microphone-ina.png + + cmake + yaml-cpp + curl-devel + mesa-devel + fltk-devel + gpsd-devel + boost-devel + libX11-devel + libXpm-devel + libXres-devel + tinyxml2-devel + libxkbfile-devel + libxkbcommon-devel + + + support_building_with_cmake.patch + allow_startup_with_missing_config_file.patch + no_build_about_resources.patch + + network/misc/florb/pspec.xml + + + florb + + fltk + curl + gpsd + boost + libgcc + libX11 + libXpm + tinyxml2 + + + /usr/bin + /usr/share + + + florb.desktop.in + + + + + 2021-10-22 + 1.1 + Rebuild + fury + uglyside@yandex.ru + + + 2020-12-19 + 1.1 + First build from git (include patches from @pekdon). + fury + uglyside@yandex.ru + + + + + + freerdp + http://www.freerdp.com + + Aydın Demirel + aydin.demirel@pisilinux.org + + ASF + app:console + network.misc + A Remote Desktop Implementation + Bir uzak masaüstü protokol uygulaması + FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. + FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. + https://github.com/FreeRDP/FreeRDP/archive/2.4.0.tar.gz + + pam-devel + cups-devel + ffmpeg-devel + alsa-lib-devel + libXinerama-devel + xmlto + libX11-devel + libXi-devel + libXcursor-devel + libxkbcommon-devel + libxkbfile-devel + libXv-devel + libXrandr-devel + gstreamer-devel + gst-plugins-base-devel + glib2-devel + openssl-devel + zlib-devel + cmake + libxslt + util-linux + wayland-devel + libusb-devel + libXext-devel + libXtst-devel + libXfixes-devel + libXdamage-devel + libjpeg-turbo-devel + wayland-client + wayland-cursor + pulseaudio-libs-devel + + network/misc/freerdp/pspec.xml + + + freerdp + + pam + cups + glib2 + libXi + libXv + ffmpeg + libX11 + libusb + libXext + libXtst + openssl + alsa-lib + libXfixes + libXrandr + libXcursor + libXdamage + libXrender + libxkbfile + libXinerama + libxkbcommon + libjpeg-turbo + wayland-client + wayland-cursor + pulseaudio-libs + gstreamer + gst-plugins-base + + + /usr/bin + /usr/lib + /usr/share/freerdp + /usr/share/doc + /usr/share/man + + + + freerdp-devel + + freerdp + openssl-devel + wayland-devel + libxkbcommon-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-17 + 2.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-03 + 2.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-07 + 2.0.0-rc4 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-10-25 + 2.0_20180426 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 2.0_20180426 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-04-26 + 2.0_20180426 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 2.0_20170201 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-14 + 2.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-01 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + geoclue + http://www.freedesktop.org/wiki/Software/GeoClue + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + network.misc + The Geoinformation Service. + Geoclue is a modular geoinformation service built on top of the D-Bus messaging system. + https://gitlab.freedesktop.org/geoclue/geoclue/-/archive/2.5.7/geoclue-2.5.7.tar.bz2 + + meson + intltool + dbus-devel + gtk-doc + glib2-devel + libsoup-devel + libnotify-devel + json-glib-devel + dbus-glib-devel + avahi-glib-devel + libxml2-devel + libxslt + libmm-glib-devel + + network/misc/geoclue/pspec.xml + + + geoclue + + glib2 + json-glib + libnotify + avahi-glib + avahi-libs + libsoup + libmm-glib + + + /etc + /usr/lib/ + /usr/share/ + /usr/libexec/ + + + + geoclue-devel + geoclue için geliştirme dosyaları + geoclue için geliştirme dosyaları + + geoclue + glib2-devel + dbus-glib-devel + libxml2-devel + + + /usr/include/libgeoclue-2.0/ + /usr/lib/pkgconfig + + + + + 2021-07-23 + 2.5.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-08 + 2.4.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 2.4.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-22 + 2.4.12 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 2.4.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 2.4.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-30 + 0.12.99 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 0.12.99 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.12.99 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-27 + 0.12.99 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + grpc + The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) + + Kamil Atlı + suvari@pisilinux.org + + Apache + library + network.misc + The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#) + C tabanlı gRPC (C++, Python, Ruby, Objective-C, PHP, C#) + High performance, open source, general RPC framework that puts mobile and HTTP/2 first. + Mobil ve HTTP/2'yi ilk sıraya koyan yüksek performanslı, açık kaynak, genel RPC çerçevesi. + https://github.com/grpc/grpc/archive/refs/tags/v1.46.3.tar.gz + https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz + + re2c + ninja + cmake + cython3 + chrpath + re2-devel + php-devel + zlib-devel + gtest-devel + c-ares-devel + openssl-devel + protobuf-devel + benchmark-devel + abseil-cpp-devel + python3-setuptools + NetworkManager-devel + python3-pygobject3-devel + + + python-grpcio-use-system-abseil.patch + + network/misc/grpc/pspec.xml + + + grpc + + xapp + gtk3 + polkit + libgcc + python3 + chrpath + protobuf + benchmark + abseil-cpp + NetworkManager + python3-pynacl + python3-protobuf + python3-zeroconf + python3-setuptools + python3-pygobject3 + python3-cryptography + python3-setproctitle + + + /usr/bin + /usr/share/grpc + /usr/lib/libgrpc* + /usr/lib/libgpr* + /usr/lib/libupb* + /usr/lib/libaddress* + + + + grpc-devel + + openssl-devel + abseil-cpp-devel + grpc + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-06-11 + 1.46.3 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + iputils + https://github.com/iputils/iputils + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + network.misc + Network monitoring tools including ping and ping6 + ping ve ping6 uygulamalarını da içeren ağ izleme araçları + Iputils contient les outils de surveillance réseau incluant ping et ping6. + iputils contains network monitoring tools including ping and ping6. + Iputils, ping ve ping6 gibi ağ izleme araçlarını içeren bir pakettir. + https://github.com/iputils/iputils/archive/s20190709.tar.gz + + openssl-devel + libidn2-devel + libcap-devel + meson + ninja + + + fix-setuid-redeclared.patch + + network/misc/iputils/pspec.xml + + + iputils + + libcap + libidn2 + openssl + + + /etc + /usr/bin + /usr/sbin + /sbin + /lib/systemd/system + /etc/conf.d/rdisc + /usr/share/doc + /usr/share/man + + + man/arping.8 + man/clockdiff.8 + man/ping.8 + man/rarpd.8 + man/rdisc.8 + man/tracepath.8 + man/traceroute6.8 + fedora/tftp.xinetd + + + + + 2020-02-07 + 20190709 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-13 + 20180629 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 20161105 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 20150815 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-01 + 20150815 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libasyncns + http://0pointer.de/lennart/projects/libasyncns + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + A C library for asynchronous name service queries + Asenkron isim servisi sorguları için C kitaplığı + libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv. + libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır. + http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz + network/misc/libasyncns/pspec.xml + + + libasyncns + + /usr/lib + /usr/share/doc + + + + libasyncns-devel + Development files for libasyncns + libasyncns için geliştirme dosyaları + + libasyncns + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-01-14 + 0.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 0.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-29 + 0.8 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libc-client + http://www.washington.edu/imap/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + service + network.misc + C-client mail access routines for IMAP and POP protocols + İmap protokolü için kitaplık + The c-client library is a common API for accessing mailboxes developed at the University of Washington. It is used mainly by php + Washington üniversitesi tarafından, POP ve IMAP protokolleri için geliştirilmiş genel kitaplıklar. Temel olarak php tarafından kullanılır. + http://ftp.ntua.gr/pub/net/mail/imap/imap-2007f.tar.gz + + pam-devel + openssl-devel + e2fsprogs-devel + mit-kerberos + + + imap-2007a-linux.diff + imap-2006c1-glibc-2.2.2.diff + imap-2006c1-krbpath.diff + imap-2001a-disable-mbox.patch + imap-2001a-overflow.patch + imap-2004a-doc.patch + imap-2007e-authmd5.patch + imap-2007e-shared.patch + uw-imap-2004c-amd64-so-fix.patch + 1006_openssl1.1_autoverify.patch + + network/misc/libc-client/pspec.xml + + + libc-client + + mit-kerberos + + + /usr/include + /usr/lib + + + + + 2020-02-22 + 2007f + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-09 + 2007f + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 2007f + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2007f + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-27 + 2007f + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libcddb + http://libcddb.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + network.misc + Une librairie pour accéder aux serveurs CDDB. + A library for accessing a CDDB server + CDDB sunucularına ulaşmak için bir kitaplık + Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http://freedb.org/). + libcddb, CDDB sunucularındaki (freedb.org) verilere erişmek için yazılmış bir C kitaplığıdır. + mirrors://sourceforge/libcddb/libcddb-1.3.2.tar.bz2 + network/misc/libcddb/pspec.xml + + + libcddb + + /usr/bin + /usr/lib + /usr/share/doc + + + + libcddb-devel + Development files for libcddb + libcddb için geliştirme dosyaları + + libcddb + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 1.3.2 + Rebuild. + Idris Kalp + idriskalp@gmail.com + + + 2018-08-07 + 1.3.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.3.2 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 1.3.2 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libgssglue + http://www.citi.umich.edu/projects/nfsv4/linux/ + + Marcin Bojara + marcin@pisilinux.org + + BSD + library + network.misc + exports a gssapi interface which calls other random gssapi libraries + Diğer raslantısal gssapi kitaplıklarına çağrı yapan gssapi arayüzünü dışa aktaran kitaplık + libgssglue provides a gssapi interface, but does not implement any gssapi mechanisms itself; instead it calls other gssapi functions (e.g., those provided by MIT Kerberos), depending on the requested mechanism, to do the work. + libgssglue herhangi bir gssapi mekanizma gerçekleştirimi yapmadan istenilen mekanizmaya bakarak diğer gssapi fonsiyonlarına (örn:MIT Kerberos tarafından sağlanan) ulaşabilmek için bir arayüz (API) sunar. + http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/libgssglue-0.4.tar.gz + + libgssglue-0.1-gssglue.patch + + network/misc/libgssglue/pspec.xml + + + libgssglue + + /usr/lib/libgssglue.so* + /usr/share/doc + + + + libgssglue-devel + libgssglue development files + libgssglue geliştirme dosyaları + + libgssglue + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-03-10 + 0.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libndp + http://libndp.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2+ + library + network.misc + Library for Neighbor Discovery Protocol + Ağ tarama protokolü için kitaplık + Library for Neighbor Discovery Protocol + Ağ tarama protokolü için kitaplık + https://github.com/jpirko/libndp/archive/v1.7.tar.gz + network/misc/libndp/pspec.xml + + + libndp + + /etc + /usr/share + /etc/dbus-1 + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libndp-devel + Development files for libndp + libndp için geliştirme dosyaları + + libndp + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2020-02-02 + 1.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-19 + 1.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-07 + 1.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libnet + https://github.com/libnet/libnet + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + app:console + network.misc + Low level network library + Alt seviye ağ kitaplığı + libnet is a library to provide an API for commonly used low-level network functions. + libnet sık kullanılan alt seviye ağ işlevleri için arabirim sunan bir kitaplıktır. + https://github.com/libnet/libnet/archive/v1.2.tar.gz + + doxygen + + network/misc/libnet/pspec.xml + + + libnet + Low level network library + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libnet-devel + Development files for libnet + libnet için geliştirme dosyaları + libnet-devel, libnet için geliştirme dosyalarını içerir. + + libnet + + + /usr/include + /usr/lib/pkgconfig + + + + + 2019-11-29 + 1.2 + Version bump, moved from contrib. + Blue DeviL + bluedevil@sctzine.com + + + + + + libnfnetlink + http://www.netfilter.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + Low level library for netfilter related kernel/userspace communication + Ağ filtreleme işlemleri ile ilgili çekirdek/uygulama iletişimi için alt seviye bir kitaplık + Niskopoziomowa biblioteka do netfilter + libnfnetlink provides a generic messaging infrastructure for in-kernel netfilter subsystems. + libnfnetlink, çekirdek içi ağ filtreleme alt sistemleri için jenerik bir mesajlaşma altyapısı sunar. + libnfnetlink to niskopoziomowa biblioteka do związanej z netfiltrem komunikacji między jądrem a przestrzenią użytkownika. Udostępnia ogólną infrastrukturę komunikatów dla podsystemów netfiltra w jądrze oraz ich użytkowników i/lub narzędzi zarządzających w przestrzeni użytkownika. + http://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 + network/misc/libnfnetlink/pspec.xml + + + libnfnetlink + + /usr/lib + + + + libnfnetlink-devel + Development files for libnfnetlink + libnfnetlink için geliştirme dosyaları + Pliki nagłówkowe do bibliioteki libnfnetlink + + libnfnetlink + + + /usr/include + /usr/lib/pkgconfig/libnfnetlink.pc + + + + + 2020-02-01 + 1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 1.0.1 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-13 + 1.0.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libnl + https://github.com/thom311/libnl + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + A library for applications dealing with netlink sockets + Netlink soketleri erişimi için bir kitaplığı + libnl is a convenience library to simplify the usage of the Linux kernel's netlink sockets interface for network manipulation. + libnl Linux çekirdeğinin netlink soket arayüzünü ağ ile ilgili çeşitli işlemleri kolaylaştırmak için kullanan bir kitaplığıdır. + https://github.com/thom311/libnl/archive/libnl3_5_0.tar.gz + + glibc + flex + bison + pkgconfig + libtool + check + + network/misc/libnl/pspec.xml + + + libnl + + /usr/lib + /usr/share/doc + /usr/share/man + /etc/libnl + /usr/sbin + /usr/bin + + + + libnl-devel + Development files for libnl + libnl için geliştirme dosyaları + + libnl + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 3.5.0 + Rebuild + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-05 + 3.5.0 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-07-29 + 3.4.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 3.2.25 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.2.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-15 + 3.2.25 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libproxy + https://github.com/libproxy/libproxy + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + network.misc + Proxy configuration library + Proxy yapılandırma kitaplığı + libproxy is a library that provides automatic proxy configuration management. + Otomatik proxy yapılandırma yönetimini sağlayan bir kitaplığı. + https://github.com/libproxy/libproxy/archive/0.4.17.tar.gz + + gconf-devel + libXmu-devel + NetworkManager-devel + webkit2gtk-devel + spidermonkey-devel + cmake + intltool + + network/misc/libproxy/pspec.xml + + + libproxy + + glib2 + libgcc + + + /usr/bin + /usr/lib + /usr/libexec/ + /usr/share/doc + /usr/share/vala + + + + libproxy-gnome3 + + libproxy + libgcc + + + /usr/lib/libproxy/*/modules/config_gnome3.* + /usr/libexec/pxgconf + + + + libproxy-networkmanager + + libproxy + dbus + libgcc + + + /usr/lib/libproxy/*/modules/network_networkmanager.* + + + + libproxy-webkit-gtk2 + + libproxy + webkit2gtk + libgcc + + + /usr/lib/libproxy/*/modules/pacrunner_webkit* + + + + libproxy-mozjs + + libproxy + + + /usr/lib/libproxy/*/modules/pacrunner_mozjs* + + + + libproxy-devel + Development files for libproxy + libproxy için geliştirme dosyaları + + libproxy + + + /usr/include + /usr/lib/pkgconfig + /usr/share/cmake + + + + + 2021-10-24 + 0.4.17 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-06 + 0.4.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-25 + 0.4.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-16 + 0.4.15 + Rebuild + Mustafa Cinasl + muscnsl@gmail.com + + + 2019-04-16 + 0.4.15 + Rebuild bump + Mustafa Cinasl + muscnsl@gmail.com + + + 2018-07-30 + 0.4.15 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-07-30 + 0.4.10 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-08 + 0.4.10 + Release bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-11-01 + 0.4.10 First release PisiLinux Community admins@pisilinux.org + + + libssh + http://www.libssh.org + + PisiLinux Community + admin@pisilinux.org + + LGPLv2.1 + library + network.misc + Full C library functions for manipulating a client-side SSH connection + SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı + libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl). + libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir. + https://www.libssh.org/files/0.9/libssh-0.9.6.tar.xz + + openssl-devel + cmocka-devel + zlib-devel + doxygen + cmake + openssh + + network/misc/libssh/pspec.xml + + + libssh + Full C library functions for manipulating a client-side SSH connection + + openssl + zlib + + + /usr/lib + /usr/share/doc + + + + libssh-devel + Development files for libssh + libssh için geliştirme dosyaları + libssh-devel, libssh için geliştirme dosyalarını içerir. + + libssh + + + /usr/include + /usr/lib/pkgconfig + + + + libssh-docs + Development documentation for libssh + libssh için belgelendirme dosyaları + libssh-docs, libssh için belgelendirme dosyalarını içerir. + + /usr/share/doc/libssh/html + /usr/share/man + + + + + 2021-08-26 + 0.9.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-24 + 0.9.3 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-10-17 + 0.8.4 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-15 + 0.8.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 0.7.4 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.7.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-25 + 0.7.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + neon + http://www.webdav.org/neon/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.misc + Librairie cliente HTTP et WebDAV. + HTTP and WebDAV client library + C arayüzü ile birlikte gelen, Http ve WebDAV için istemci kitaplığı + neon is an HTTP and WebDAV client library with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. + neon, C arayüzü sunan bir HTTP ve WebDAV istemci kitaplığıdır. HTTP ve WebDAV metodlarına yüksek seviyeli, HTTP istek değerlendirmesi için de düşük seviyeli bir arayüz sunar. + https://notroj.github.io/neon/neon-0.31.2.tar.gz + + openssl-devel + expat-devel + zlib-devel + mit-kerberos + + + fixdocdir.patch + multilib.patch + + network/misc/neon/pspec.xml + + + neon + + zlib + expat + openssl + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + neon-devel + Development files for neon + neon için geliştirme dosyaları + + neon + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-03-11 + 0.31.2 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-02-07 + 0.30.2 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-02 + 0.30.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-24 + 0.30.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.30.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 0.30.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + openmpi + https://www.open-mpi.org/ + + PisiLinux Community + admins@pisilinux.org + + custom:OpenMPI + library + app:console + network.misc + High performance message passing library (MPI) + Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı + Open MPI est un projet combinant les technologies et les ressources de plusieurs autres projets (FT-MPI, LA-MPI, LAM/MPI et PACX-MPI) afin de construire la meilleure librairie MPI disponible. Une implémentation totalement neuve conforme au MPI-2. Open MPI offre des avantages aux vendeurs de systèmes et de logiciels, au développeurs d'applications ainsi qu'aux chercheur en génie logiciel. + The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers. + Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı + Open MPI es un proyecto que combina recursos y tecnologías de varios otros proyectos (FT-MPI, LA-MPI, LAM/MPI, y PACX-MPI) para construir la mejor librería MPI. Una implementación MPI-2 compliant completamente nueva, Open MPI ofrece ventajas para fabricantes de sistemas y software, desarrolladores de aplicaciones y investigadores de computación. + https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.1.tar.bz2 + + valgrind-devel + zlib-devel + hwloc-devel + libnl-devel + + network/misc/openmpi/pspec.xml + + + openmpi + High performance message passing library (MPI) + + hwloc + libnl + + + /etc + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/pmix + /usr/share/openmpi + + + + openmpi-devel + Development files for openmpi + openmpi için geliştirme dosyaları + openmpi-devel, openmpi için geliştirme dosyalarını içerir. + + openmpi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-19 + 4.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-22 + 4.0.3 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + protobuf + https://developers.google.com/protocol-buffers/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + network.misc + Google's data interchange format + Google'ın veri alış veriş biçimi + Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. + Protokol Arabellekleri(protobuf) yapılandırılmış veriyi kodlamak için verimli bir biçimdir. Google kendi içindeki bütün RPC protokolleri ve dosya biçimleri için Protokol Arabelleklerini kullanmaktadır. + https://github.com/protocolbuffers/protobuf/archive/v3.18.1.tar.gz + + python-wheel + python-devel + python3-devel + python-setuptools + python3-setuptools + + network/misc/protobuf/pspec.xml + + + protobuf + Google's data interchange format + + zlib + libgcc + + + /usr/share/doc + /usr/bin + /usr/share/vim + /usr/share/emacs + /usr/lib/libproto* + + + + protobuf-devel + Development files for protobuf + protobuf için geliştirme dosyaları + protobuf-devel, protobuf için geliştime dosyaları içerir. + + protobuf + + + /usr/lib/pkgconfig + /usr/include/google/protobuf + + + + python-protobuf + Python 2 bindings for Google Protocol Buffers + protobuf için geliştirme dosyaları + protobuf-devel, protobuf için geliştime dosyaları içerir. + + python-setuptools + protobuf-devel + + + /usr/lib/python2* + + + + python3-protobuf + Python 3 bindings for Google Protocol Buffers + protobuf için geliştirme dosyaları + protobuf-devel, protobuf için geliştime dosyaları içerir. + + python3 + python3-setuptools + protobuf-devel + + + /usr/lib/python3* + + + + + 2021-10-25 + 3.18.1 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-20 + 3.18.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 3.15.6 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-08-30 + 3.13.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-12 + 3.11.3 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-24 + 3.11.2 + Fix deps and clean + Blue Devil + bluedevil@sctzine.com + + + 2019-12-25 + 3.11.2 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2016-03-23 + 3.0.0_beta2 + Version bump, rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2015-02-16 + 3.0.0_pre1 + Version bump. + Vedat Demir + vedat@pisilinux.org + + + 2015-02-03 + 2.6.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2014-02-05 + 2.5.0 + Version Bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2012-09-03 + 2.4.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + protobuf-c + https://github.com/protobuf-c/protobuf-c + + Stefan Gronewold(groni) + groni@pisilinux.org + + BSD + app:console + library + network.misc + Protocol Buffers implementation in C + Google Protokol Arabelleklerinin C Uygulaması + This is protobuf-c, a C implementation of the Google Protocol Buffers data serialization format.Needed for the libgadu Package + protobuf-c, Google Protokol Arabelleklerinin veri serileştirmesi biçimi için bir C Uygulamasıdır. libgadu paketi için gereklidir. + https://github.com/protobuf-c/protobuf-c/archive/v1.4.0.tar.gz + + protobuf-devel + + network/misc/protobuf-c/pspec.xml + + + protobuf-c + Protocol Buffers implementation in C + + protobuf + + + / + /usr/lib + /usr/share/doc + /usr/bin + + + + protobuf-c-devel + Development files for protobuf-c + protobuf-c için geliştirme dosyaları + protobuf-c-devel, protobuf-c için geliştime dosyaları içerir. + + protobuf-c + + + /usr/lib/pkgconfig + /usr/include/protobuf-c + /usr/include/google/protobuf-c + + + + + 2021-10-20 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-09 + 1.3.3 + *Patch version bump. + *Moved from contrib + Blue Devil + bluedevil@sctzine.com + + + + + + socat + http://www.dest-unreach.org/socat/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + network.misc + Multipurpose relay + Multipurpose relay + http://www.dest-unreach.org/socat/download/socat-1.7.3.4.tar.bz2 + + readline-devel + openssl-devel + + network/misc/socat/pspec.xml + + + socat + + readline + openssl + + + /usr/bin + /usr/share/man + + + + + 2020-02-23 + 1.7.3.4 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-15 + 1.7.3.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-13 + 1.7.3.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + webkit-gtk2 + http://webkitgtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + LGPLv2.1 + BSD + library + network.misc + An opensource web browser engine for GTK+ applications + The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. + http://www.webkitgtk.org/releases/webkitgtk-2.4.11.tar.xz + + mesa-devel + gtk-doc + glib2-devel + gtk2-devel + ruby-devel + webp-devel + cairo-devel + icu4c-devel + libXt-devel + enchant2-devel + sqlite-devel + geoclue-devel + libsoup-devel + fontconfig-devel + libxslt-devel + harfbuzz-devel + libsecret-devel + libXcomposite-devel + libjpeg-turbo-devel + gstreamer-devel + gst-libav + gobject-introspection-devel + gst-plugins-base-devel + gst-plugins-bad-devel + gst-plugins-good + which + icon-theme-hicolor + gperf + libSM-devel + + + install-minibrowser.patch + enchant-2.x.patch + icu59.patch + pkgconfig-enchant-2.patch + icu68.patch + fix-ftbfs-gcc6.patch + gtk-doc.patch + grammar.patch + + network/misc/webkit-gtk2/pspec.xml + + + webkit-gtk2 + + atk + zlib + glib2 + gtk2 + mesa + webp + cairo + icu4c + libXt + libX11 + libgcc + libpng + libxml2 + pango + sqlite + enchant2 + geoclue + libsoup + libxslt + harfbuzz + freetype + libsecret + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + gstreamer + gst-libav + gst-plugins-bad + gst-plugins-base + gst-plugins-good + gobject-introspection + + + /usr/lib + /usr/share + /usr/share/doc + + + + webkit-gtk2-devel + Development files for GTK+ port of WebKit + library + data:doc + + libgcc + gtk2-devel + glib2-devel + webkit-gtk2 + libsoup-devel + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/webkit-gtk/Web* + /usr/share/doc/webkit-gtk2/html + /usr/share/doc/webkit-gtk/JavaScriptCore + + + + + 2020-01-28 + 2.4.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-09 + 2.4.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-04 + 2.4.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-05 + 2.4.11 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-27 + 2.4.11 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-18 + 2.4.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-9 + 2.4.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-05 + 2.4.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + webkit2gtk + http://webkitgtk.org + + Alihan Öztürk + admins@pisilinux.org + + LGPLv2 + LGPLv2.1 + BSD + library + network.misc + An opensource web browser engine for GTK+ applications + The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. + https://www.webkitgtk.org/releases/webkitgtk-2.34.0.tar.xz + + cmake + which + gperf + gtk-doc + bubblewrap + ruby-devel + mesa-devel + gtk3-devel + gtk2-devel + webp-devel + libwpe-devel + cairo-devel + icu4c-devel + libXt-devel + lcms2-devel + sqlite-devel + python3-devel + libsoup-devel + wayland-devel + libxslt-devel + geoclue-devel + libgudev-devel + harfbuzz-devel + enchant2-devel + xdg-dbus-proxy + libtasn1-devel + libglvnd-devel + libnotify-devel + openjpeg2-devel + libsecret-devel + libgcrypt-devel + libseccomp-devel + icon-theme-hicolor + libjpeg-turbo-devel + gst-plugins-bad-devel + gst-plugins-base-devel + gobject-introspection-devel + wpebackend-fdo-devel + libmanette-devel + + network/misc/webkit2gtk/pspec.xml + + + webkit2gtk + + atk + zlib + gtk3 + mesa + webp + cairo + icu4c + libXt + glib2 + pango + libwpe + libX11 + libgcc + libpng + libxml2 + sqlite + enchant + geoclue + libsoup + libxslt + enchant2 + libtasn1 + harfbuzz + freetype + libglvnd + libsecret + openjpeg2 + libnotify + libgcrypt + gstreamer + gst-libav + fontconfig + gdk-pixbuf + libXdamage + libXrender + libseccomp + libXcomposite + libjpeg-turbo + gst-plugins-bad + gst-plugins-base + gst-plugins-good + gobject-introspection + wpebackend-fdo + libmanette + + + /usr/lib + /usr/share + /usr/share/doc + + + + webkit2gtk-devel + Development files for GTK+ port of WebKit + library + data:doc + + gtk3-devel + glib2-devel + libsoup-devel + webkit2gtk + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/webkit-gtk/Web* + /usr/share/doc/webkit2gtk/html + /usr/share/doc/webkit-gtk/JavaScriptCore + + + + + 2021-10-01 + 2.34.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-07 + 2.33.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 2.30.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-30 + 2.26.3 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + xdg-dbus-proxy + https://github.com/flatpak/xdg-dbus-proxy + + Kamil Atlı + suvari@pisilinux.org + + GPLv2.1 + app:console + network.misc + a filtering proxy for D-Bus connections + xdg-dbus-proxy, D-Bus bağlantıları için filtreleme proxy'sidir. + xdg-dbus-proxy is a filtering proxy for D-Bus connections. It was originally part of the flatpak project, but it has been broken out as a standalone module to facilitate using it in other contexts. + xdg-dbus-proxy, D-Bus bağlantıları için filtreleme proxy'sidir. Başlangıçta flatpak projesinin bir parçasıydı, ancak başka bağlamlarda kullanılmasını kolaylaştırmak için bağımsız bir modül olarak parçalandı. + https://github.com/flatpak/xdg-dbus-proxy/archive/0.1.2.tar.gz + + dbus-devel + glib2-devel + docbook-xsl + libxslt-devel + autoconf-archive + + network/misc/xdg-dbus-proxy/pspec.xml + + + xdg-dbus-proxy + + glib2 + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2021-06-14 + 0.1.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-12 + 0.1.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libnids + http://libnids.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + network.monitor + Network intrusion detection library + Ağ saldırıları yakalama kitaplığı + Libnids is an implementation of an E-component of Network Intrusion Detection System. It emulates the IP stack of Linux 2.0.x. Libnids offers IP defragmentation, TCP stream assembly and TCP port scan detection. + Libnids bir ağ saldırısı yakalama kitaplığıdır. Linux 2 serisi için IP yapısını taklit ederek IP bilgisi birleştirme, TCP yayını inceleme ve port taraması gibi işlemler için altyapı sunar. + https://sourceforge.net/projects/libnids/files/libnids/1.24/libnids-1.24.tar.gz + + glib2-devel + libnet-devel + libpcap-devel + + + libnids-1.24-inline.patch + + network/monitor/libnids/pspec.xml + + + libnids + Network intrusion detection library + + libnet + libpcap + + + /usr/lib + /usr/share/doc/libnids + + + + libnids-devel + Development files for libnids + libnids için geliştirme dosyaları + libnids-devel, libnids için geliştirme dosyalarını içerir. + + libnids + + + /usr/share/man + /usr/include + + + + + 2020-06-08 + 1.24 + Moved from contrib. + Blue DeviL + bluedevil@sctzine.com + + + + + + net-snmp + http://net-snmp.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + network.monitor + A collection of SNMP protocol tools and libraries + SNMP protokol araçları ve kitaplıkları + Kolekcja narzędzi do obsługi protokołu SNMP + Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6. + net-snmp, çeşitli ağ ekipmanlarının sağlığını ve işleyişini izlemek için SNMP protokolünü kullanan araçları içerir. + SNMP (Simple Network Management Protocol) jest protokołem używanym do zarządzania sieciami. Pakiet zawiera narzędzia: rozbudowywalnego agenta, bibliotekę SNMP, narzędzia do odpytywania oraz ustawiania informacji poprzez agentów SNMP, narzędzia do generowania i obsługi pułapek SNMP, wersję komendy netstat używającą SNMP, przeglądarkę mib w Tk/Perl, demona, dokumentację itp. + https://sourceforge.net/projects/net-snmp/files/net-snmp/5.9/net-snmp-5.9.tar.gz/download + + libnl-devel + python-setuptools + openssl-devel + python-devel + perl + pciutils-devel + tcp-wrappers-devel + + network/monitor/net-snmp/pspec.xml + + + net-snmp + + libnl + openssl + python + perl + pciutils + tcp-wrappers + + + /etc/snmp + /usr/bin + /usr/sbin/snmpd + /etc/conf.d/snmpd + /usr/lib + /usr/share/snmp + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + + + confd-snmpd.conf + net-snmpd.conf + + + + net-snmptrap + + net-snmp + tcp-wrappers + + + /etc/conf.d/snmptrapd + /etc/snmp/snmptrapd.conf + /usr/sbin/snmptrapd + + + System.Service + + + confd-snmptrapd.conf + net-snmptrapd.conf + + + + net-snmp-devel + Development files for net-snmp + net-snmp için geliştirme dosyaları + Pliki naglowkowe do net-snmp + + net-snmp + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-11-29 + 5.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-27 + 5.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-27 + 5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 5.7.3 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 5.7.3 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 5.7.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-02 + 5.7.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + tcpdump + http://www.tcpdump.org/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + app:console + network.monitor + A Tool for network monitoring and data acquisition + Ağı izlemek için kullanılan bir araç + Tcpdump is a tool to print out (or save to file) the contents of packets on a network interface. It also allows limiting the number of packets collected using expressions. + tcpdump bir ağ aygıtı üzerindeki paketlerin içeriğini ekrana basmaya ya da dosyaya yazmaya yarayan bir araçtır. İncelenecek paketleri çeşitli ifadelerle sınırlama desteği de mevcuttur. + https://www.tcpdump.org/release/tcpdump-4.99.1.tar.gz + + libpcap-devel + openssl-devel + + network/monitor/tcpdump/pspec.xml + + + tcpdump + + libpcap + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2021-08-09 + 4.99.1 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-11-29 + 4.9.3 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2016-02-22 + 4.7.4 + Version bump, built with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2010-10-13 + 4.1.1 + Mass rebuild for Pardus 2011 Beta + Gökcen Eraslan + gokcen@pardus.org.tr + + + 2010-06-07 + 4.1.1 + New upstream release + Enable smi + Don't blow up if a zero-length link-layer address is passed to linkaddr_string() + Fix printing of MAC addresses for VLAN frames with a length field + Add some additional bounds checks and use the EXTRACT_ macros more + Add a -b flag to print the AS number in BGP packets in ASDOT notation rather than ASPLAIN notation + Add ICMPv6 RFC 5006 support + Decode the access flags in NFS access requests + Handle the new DLT_ for memory-mapped USB captures on Linux + Make the default snapshot (-s) the maximum + Print name of device (when -L is used) + Print new TCP flags + Add support for RPL DIO + Add support for TCP User Timeout (UTO) + Add support for non-standard Ethertypes used by 3com PPPoE gear + Add support for 802.11n and 802.11s + Add support for Transparent Ethernet Bridge ethertype in GRE + Add 4 byte AS support for BGP printer + Add support for the MDT SAFI 66 BG printer + Add basic IPv6 support to print-olsr + Add USB printer + Add printer for ForCES + Handle frames with an FCS + Handle 802.11n Control Wrapper, Block Acq Req and Block Ack frames + Fix TCP sequence number printing + Report 802.2 packets as 802.2 instead of 802.3 + Lots of code clean up + Onur Küçük + onur@pardus.org.tr + + + 2009-05-04 + 4.0.0 + Fix linking with pcap + Onur Küçük + onur@pardus.org.tr + + + 2009-05-04 + 4.0.0 + Version bump + Onur Küçük + onur@pardus.org.tr + + + 2007-10-07 + 3.9.8 + Version bump. + Furkan Duman + coderlord@gmail.com + + + 2007-08-10 + 3.9.7 + Stable update + İsmail Dönmez + ismail@pardus.org.tr + + + 2007-07-17 + 3.9.6 + Fix CVE-2007-3798 + İsmail Dönmez + ismail@pardus.org.tr + + + 2007-06-17 + 3.9.6 + Version bump + Furkan Duman + coderlord@gmail.com + + + 2007-02-03 + 3.9.5 + Fix 802.11 denial of service + İsmail Dönmez + ismail@pardus.org.tr + + + 2007-01-16 + 3.9.5 + Stable update + İsmail Dönmez + ismail@pardus.org.tr + + + 2005-11-19 + 3.9.4 + First release + Furkan Duman + coderlord@gmail.com + + + + + + vnstat + https://humdi.net/vnstat/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + network.monitor + vnStat is a console-based network traffic monitor for Linux and BSD + vnStat is a console-based network traffic monitor for Linux and BSD that keeps a log of network traffic for the selected interface(s). + https://humdi.net/vnstat/vnstat-2.7.tar.gz + + gd-devel + sqlite-devel + + network/monitor/vnstat/pspec.xml + + + vnstat + vnStat is a console-based network traffic monitor for Linux and BSD + + gd + sqlite + + + / + + + System.Service + + + + + 2021-05-21 + 2.7 + First Release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + libtorrent-rasterbar + https://www.rasterbar.com/products/libtorrent/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + network.p2p + Full featured torrent client library + Gelişmiş bir torrent kitaplığı + Rasterbar's C++ library that aims to be a good alternative to all the other bittorrent implementations around. It is a library and not a full featured client, although it comes with a working example client. + Libtorrent Rasterbar C++ kitaplığı, diğer bittorrent kitaplıklarına karşı iyi bir alternatifdir. + https://github.com/arvidn/libtorrent/releases/download/v2.0.5/libtorrent-rasterbar-2.0.5.tar.gz + + cmake + ninja + libtool + zlib-devel + geoip-devel + boost-devel + openssl-devel + python3-devel + boost-python3 + python3-setuptools + + network/p2p/libtorrent-rasterbar/pspec.xml + + + libtorrent-rasterbar + + boost + geoip + libgcc + openssl + python3 + boost-python3 + + + /usr/lib + /usr/share/doc/libtorrent-rasterbar + + + + libtorrent-rasterbar-devel + Development files for libtorrent-rasterbar + libtorrent-rasterbar için geliştirme dosyaları + + libtorrent-rasterbar + + + /usr/include + /usr/lib/pkgconfig + /usr/share/cmake/Modules/FindLibtorrentRasterbar.cmake + /usr/share/licenses + /usr/share/doc/libtorrent/html + + + + + 2022-03-27 + 2.0.5 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-10-23 + 2.0.4 + Rebuild boost + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-06 + 2.0.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-12 + 1.2.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-12 + 1.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 1.2.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-02-16 + 1.1.13 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-02-16 + 1.1.12 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-11-13 + 1.1.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-03 + 1.1.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 1.1.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-20 + 1.1.6 + Release Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-28 + 1.1.5 + Release Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-17 + 1.0.9 + Release Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-14 + 1.0.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-12 + 1.0.9 + First release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + qbittorrent + https://www.qbittorrent.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:gui + network.p2p + An open-source software alternative to µTorrent. + µTorrent'e açık kaynaklı bir yazılım alternatifi. + An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar + Qt araç takımı ve libtorrent-rasterbar'a dayalı, C++ ile programlanmış gelişmiş bir BitTorrent istemcisi + qbittorrent + mirrors://sourceforge/qbittorrent/qbittorrent/qbittorrent-4.4.2/qbittorrent-4.4.2.tar.xz + + zlib-devel + boost-devel + geoip-devel + qt5-linguist + python3-devel + qt5-svg-devel + openssl-devel + qt5-base-devel + libtorrent-rasterbar-devel + + network/p2p/qbittorrent/pspec.xml + + + qbittorrent + + boost + zlib + libgcc + openssl + qt5-base + libnotify + libtorrent-rasterbar + + + /usr/bin + /usr/share + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/appdata + /usr/share/man + /usr/share/doc + + + + + 2022-03-27 + 4.4.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2021-07-06 + 4.3.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-12 + 4.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-12 + 4.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-26 + 4.1.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-16 + 4.1.5 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-13 + 4.1.4 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-03 + 4.1.2 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-05 + 4.1.0 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 4.3.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-20 + 4.3.4 + Release bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-28 + 4.3.0 + Release bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-17 + 3.3.7 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilnux.org + + + 2016-11-12 + 3.3.7 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 3.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-12 + 3.3.1 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + transmission + https://transmissionbt.com/ + + PisiLinux Community + admins@pisilinux.org + + MIT + GPL-2 + service + app:gui + app:console + network.p2p + A fast, easy, and free BitTorrent client. + Hızlı, basit ve özgür BitTorrent istemcisi + Transmission is a free, lightweight Bittorrent client. It features a simple, intuitive interface on top of an efficient backend. This package provides only daemon, web interface and command line client. If you want use Transmission with graphical interface, you should install transmission-gtk or transmission-qt. + Transmission özgür ve hafif BitTorrent istemcisidir. İki değişik kitaplıkla yazılmış basit ve kullanışlı arayüz istemcisi vardır. Qt ile yazılmış arayüz paketinin adı transmission-qt, GTK+ ile yazılmış olanı ise transmission-gtk'dir. Bu pakette sadece servis, komut satırı istemcisi ve Web arayüzü bulunmaktadır. + https://github.com/transmission/transmission-releases/raw/master/transmission-3.00.tar.xz + + intltool + curl-devel + gtk3-devel + qt5-linguist + openssl-devel + qt5-base-devel + xfsprogs-devel + libevent-devel + libnotify-devel + miniupnpc-devel + + network/p2p/transmission/pspec.xml + + + transmission-cli + Transmission's cli tools, web interface and daemon. + Transmission'un öntanımlı CLI, web ve sunucu bileşenleri + app:console + + zlib + curl + openssl + libevent + miniupnpc + + + /usr/bin + /etc + /usr/share + /usr/share/man + /usr/share/doc + + + + transmission-gtk + Transmission's GTK+ interface (default). + Transmission'un öntanımlı GTK+ arayüz istemcisi + app:gui + + transmission-cli + zlib + curl + gtk3 + glib2 + pango + openssl + libevent + miniupnpc + libnotify + gdk-pixbuf + + + /usr/bin/transmission-gtk + /usr/share/appdata/transmission-gtk.xml + /usr/share/applications/transmission-gtk.desktop + /usr/share/locale + /usr/share/man/man1/transmission-gtk.1 + + + + transmission-qt + Transmission's Qt interface. + Transmission'un Qt arayüz istemcisi + app:gui + + transmission-cli + zlib + curl + libgcc + openssl + libevent + qt5-base + miniupnpc + + + /usr/bin/transmission-qt + /usr/share/applications/transmission-qt.desktop + /usr/share/man/man1/transmission-qt.1 + /usr/share/doc/transmission/README-QT + + + + + 2021-10-14 + 3.00 + First build. + fury + uglyside@yandex.ru + + + + + + flashplugin + http://labs.adobe.com/technologies/flashplayer10 + + PisiLinux Community + admins@pisilinux.org + + Macromedia + library + network.plugin + Adobe Flash Player + Adobe Flash Oynatıcı + Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash. + Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama. + flash-player-properties + https://fpdownload.adobe.com/get/flashplayer/pdc/32.0.0.465/flash_player_npapi_linux.x86_64.tar.gz + + nss + gtk2 + libXt + libX11 + libXext + libXpm + mesa-devel + + network/plugin/flashplugin/pspec.xml + + + flashplugin + + noDelta + + + mesa + libgcc + atk + nss + gtk2 + nspr + cairo + glib2 + libXt + pango + libX11 + libXext + freetype + fontconfig + gdk-pixbuf + libXcursor + libXrender + + + /usr/share + /usr/lib + /usr/bin + + + + + 2020-12-25 + 32.0.0.465 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-12 + 32.0.0.453 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-03-24 + 32.0.0.344 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-10 + 32.0.0.303 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-11-30 + 32.0.0.293 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-29 + 32.0.0.270 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-03 + 32.0.0.238 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-26 + 32.0.0.223 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 32.0.0.207 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-08 + 32.0.0.171 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-23 + 32.0.0.156 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-30 + 32.0.0.101 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 30.0.0.154 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-16 + 29.0.0.140 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-09 + 28.0.0.161 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-28 + 28.0.0.126 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-08 + 27.0.0.187 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 27.0.0.183 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-27 + 26.0.0.151 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-22 + 25.0.0.148 + Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-20 + 24.0.0.186 + Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-14 + 11.2.202.621 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 11.2.202.569 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-15 + 11.2.202.569 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + freshplayerplugin + https://github.com/i-rinat/freshplayerplugin + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + app:gui + network.plugin + ppapi2npapi compatibility layer + PPAPI-host NPAPI-plugin adapter. + https://github.com/i-rinat/freshplayerplugin/archive/v0.3.11.tar.gz + + cmake + cairo-devel + glib2-devel + icu4c-devel + pango-devel + libX11-devel + openssl-devel + freetype-devel + libXcursor-devel + libXrender-devel + ragel + gtk2-devel + gtk3-devel + libva-devel + libv4l-devel + ffmpeg-devel + openssl-devel + libvdpau-devel + alsa-lib-devel + libevent-devel + libXrandr-devel + libXcursor-devel + pulseaudio-libs-devel + + network/plugin/freshplayerplugin/pspec.xml + + + freshplayerplugin + + mesa + cairo + glib2 + icu4c + pango + libX11 + libgcc + openssl + freetype + libXcursor + libXrender + libva + ffmpeg + libv4l + alsa-lib + libevent + libvdpau + libXrandr + pepperflash + pulseaudio-libs + + + /usr/lib + /usr/share/doc + /usr/share/freshplayerplugin/ + + + + + 2020-03-24 + 0.3.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-08-11 + 0.3.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-30 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-28 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-28 + 0.3.9 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-27 + 0.3.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-22 + 0.3.6 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-12-20 + 0.3.6 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-14 + 0.3.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-15 + 0.3.4 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + pepperflash + http://www.google.com + + Osman Erkan + osman.erkan@pisilinux.org + + custom:chrome + library + network.plugin + Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi. + Google Chrome's Pepper Flash plugin for Chromium. + Google Chrome's Pepper Flash plugin for Chromium (stable version) + Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm) + https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.465/flash_player_ppapi_linux.x86_64.tar.gz + network/plugin/pepperflash/pspec.xml + + + pepperflash + + libgcc + + + /etc/chromium-browser + /usr/lib/chromium-browser/ + /usr/lib/chromium-browser/PepperFlash + + + pepperflash-plugin.conf + + + + + 2020-12-25 + 32.0.0.465 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-24 + 32.0.0.344 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-30 + 32.0.0.293 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-29 + 32.0.0.270 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-03 + 32.0.0.238 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-26 + 32.0.0.223 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-20 + 32.0.0.207 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-08 + 32.0.0.171 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-23 + 32.0.0.156 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-30 + 32.0.0.101 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 30.0.0.154 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-18 + 29.0.0.140 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-09 + 28.0.0.161 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-28 + 28.0.0.126 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-08 + 27.0.0.187 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 27.0.0.183 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-27 + 26.0.0.151 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 23.0.0.207 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-12-13 + 23.0.0.207 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-30 + 22.0.0.192 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-30 + 22.0.0.192 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 20.0.0.306 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-15 + 20.0.0.306 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + telnet-bsd + ftp://ftp.suse.com/pub/people/kukuk/ipv6/ + + Kamil Atlı + suvari@pisilinux.org + + BSD + app:console + network.remoteshell + Telnet and telnetd + Telnet protokolünün OpenBSD işletim sisteminden alınmış hali. IPV6 desteği içerir. + telnet-bsd provides a command line telnet client which is used for remote login using the telnet protocol. + telnet-bsd, telnet protokolünü kullanarak uzaktan bağlantı sağlayan bir komut satırı telnet istemcisidir. + https://sourceforge.net/projects/pisilinux/files/source/telnet-bsd-1.2.tar.bz2 + + ncurses-devel + + network/remoteshell/telnet-bsd/pspec.xml + + + telnet-bsd + + ncurses + + + /usr/bin + /usr/sbin + /usr/share/man + /usr/share/doc + + + + + 2019-05-22 + 1.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + librsync + http://librsync.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + network.share + librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy + Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı + librsync implémente l'algorithme de la somme de contrôle tournante (rolling-checksum) pour la synchronisation rendue populaire par l'utilitaire rsync et utilisée par rproxy. Cet algorithme transfert les différences entre 2 fichiers sans nécessiter la présence des fichiers sur le même système. + librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system. + Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı. Bu algoritma iki dosya arasındaki farkları, iki dosyanın aynı sistemde olmasına ihtiyaç duymadan transfer eder. + librsync implementa el cómputo del rolling-checksum de la sincronización de archivos remotos, que fue popularizado por la herramienta rsync y se usa en rproxy. El algoritmo transfiere la diferencia de los 2 archivos sin la necesidad de tener ambos archivos en el mismo sistema. + https://github.com/librsync/librsync/archive/v2.3.1.tar.gz + + cmake + popt-devel + + network/share/librsync/pspec.xml + + + librsync + + popt + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/librsync + + + + librsync-devel + Development files for librsync + librsync için geliştirme dosyaları + + librsync + + + /usr/include + /usr/lib/librsync.so + /usr/share/man/man3 + + + + + 2020-12-24 + 2.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-09 + 2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 2.0.2 + Release Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-09 + 0.9.7 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.9.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-01 + 0.9.7 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + nextcloud-client + https://nextcloud.com/install + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2+ + GPLv2 + app:gui + network.share + The Nextcloud Client + Nextcloud istemcisi + Nextcloud-client enables you to connect to your private Nextcloud Server. With it you can create folders in your home directory, and keep the contents of those folders synced with your Nextcloud server. + Nextcloud-client, özel Nextcloud Sunucunuza bağlanmanızı sağlar. Bununla beraber ana dizininizde klasörler oluşturabilir ve bu klasörlerin içeriğini Nextcloud sunucunuzla senkronize halde tutabilirsiniz. + https://github.com/nextcloud/desktop/archive/v3.3.2/desktop-3.3.2.tar.gz + + check-devel + chrpath + cmake + desktop-file-utils + doxygen + libcloudproviders-devel + appstream-devel + appstream-glib-devel + neon-devel + openssl-devel + dbus-devel + python3-sphinx + qt5-keychain-devel + qt5-base-devel + qt5-xmlpatterns-devel + qt5-location-devel + qt5-quickcontrols2-devel + qt5-websockets-devel + qt5-svg-devel + qt5-declarative-devel + qt5-linguist + extra-cmake-modules + inkscape + kcoreaddons-devel + kio-devel + sqlite-devel + libgnome-keyring + + + xcb.patch + require-cmake-3.16.patch + + network/share/nextcloud-client/pspec.xml + + + nextcloud-client + + zlib + libgcc + sqlite + openssl + qt5-svg + qt5-base + qt5-keychain + qt5-websockets + + + /etc/Nextcloud + /usr/bin + /usr/lib/libnextcloudsync.so.0 + /usr/lib/libnextcloudsync.so.3.3.2 + /usr/lib/libnextcloud_csync.so* + /usr/share/appdata + /usr/share/applications + /usr/share/cloud-providers + /usr/share/dbus-1 + /usr/share/doc + /usr/share/icons + /usr/share/mime + /usr/share/nextcloud + + + nextcloud.appdata.xml + + + + nextcloud-client-nautilus + nextcloud-client's Nautilus file manager extension + Nextcloud istemcisinin Nautilus dosya yöneticisi uzantısı + nextcloud-client extension for the Nautilus file manager. + Nautilus dosya yöneticisi için Nextcloud istemcisi uzantısı. + + nextcloud-client + nautilus + nautilus-python + + + /usr/share/nautilus-python/extensions + + + + nextcloud-client-dolphin + nextcloud-client overlay icons for the Dolphin file manager + Dolphin dosya yöneticisi için Nextcloud istemcisi simgeleri + nextcloud-client extension for the Dolphin file manager. + Dolphin dosya yöneticisi için Nextcloud istemcisi uzantısı. + + nextcloud-client + dolphin + kio + kcoreaddons + + + /usr/lib/libnextclouddolphinpluginhelper.so + /usr/lib/qt5/plugins/nextclouddolphinactionplugin.so + /usr/lib/qt5/plugins/kf5/overlayicon/nextclouddolphinoverlayplugin.so + /usr/share/kservices5/nextclouddolphinactionplugin.desktop + + + + nextcloud-client-caja + nextcloud-client overlay icons for the Caja file manager + Caja dosya yöneticisi için Nextcloud istemcisi simgeleri + This package provides overlay icons to visualize the sync state in the Caja file manager. + Bu paket, Caja dosya yöneticisinde eşitleme durumunu görselleştirmek için simgeler sağlar. + + nextcloud-client + caja + python-caja + + + /usr/share/caja-python/extensions + + + + nextcloud-client-devel + Development files for nextcloud-client + nextcloud-client için geliştirme dosyaları + + nextcloud-client + + + /usr/include/nextcloudsync + /usr/lib/libnextcloudsync.so + /usr/lib/nextcloudsync_vfs_suffix.so + /usr/lib/nextcloudsync_vfs_xattr.so + + + + + 2021-09-01 + 3.3.2 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + nfs-utils + http://nfs.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + app:console + network.share + NFS client and server + NFS istemcisi ve sunucusu + Contains NFS (Network File System) client and server. It is possible to mount a network resource as a file system using the NFS protocol. + nfs-utils, NFS (Ağ dosya sistemi) istemcisi ve sunucusunu içerir. + mirrors://sourceforge/nfs/nfs-utils-2.6.1.tar.bz2 + + sqlite-devel + libcap-devel + libtirpc-devel + libevent-devel + e2fsprogs-devel + libgssglue-devel + mit-kerberos-devel + rpcsvc-proto-devel + tcp-wrappers-devel + device-mapper-devel + libutil-linux-devel + + network/share/nfs-utils/pspec.xml + + + nfs-utils + + libcap + sqlite + rpcbind + nfsidmap + keyutils + libevent + libtirpc + e2fsprogs + libgssglue + mit-kerberos + tcp-wrappers + device-mapper + libutil-linux + openldap-client + + + /etc/exports + /etc/gssapi_mech.conf + /etc/nfsmount.conf + /etc/conf.d/nfs + /usr/sbin + /sbin + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + System.Service + + + exports + nfs.confd + idmapd.conf + gssapi_mech.conf + + + + nfsidmap + Library to help mapping IDs, mainly for NFSv4 + Kimliklerin eşlenmesine yardımcı olacak kitaplık, özellikle NFSv4 için. + + openldap-client + + + /etc/idmapd.conf + /usr/lib/libnfsidmap* + /usr/share/doc/libnfsidmap + + + + + 2022-03-11 + 2.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + rsync + http://rsync.samba.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + app:console + network.share + File transfer program to keep local copies in sync with remote files + Dosya yedekleme ve eşleme uygulaması + rsync is a tool to keep local copies of remote files in sync (i.e. make sure local files are exact copies of remote files). + rsync, uzaktaki dosyaları senkronize tutan bir dosya transfer uygulamasıdır. + https://www.samba.org/ftp/rsync/src/rsync-3.2.3.tar.gz + + acl-devel + attr-devel + popt-devel + lz4-devel + zlib-devel + zstd-devel + openssl-devel + + network/share/rsync/pspec.xml + + + rsync + + acl + attr + lz4 + popt + zlib + zstd + openssl + + + /usr/bin + /usr/share/doc + /usr/share/man + /etc + + + System.Service + + + rsyncd.conf + rsyncd.conf.d + + + + + 2020-11-08 + 3.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-09 + 3.1.3 + Revuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-18 + 3.1.3 + Revuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-12 + 3.1.3 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-09 + 3.1.2 + Rebuild for new toolchain + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 3.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-03-24 + 3.1.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + smb4k + http://smb4k.berlios.de/ + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + app:gui + network.share + An SMB/CIFS Share Browser for KDE + KDE için bir Windows paylaşım tarayıcısı + smb4k est un navigateur graphique KDE de partages SMB/CIFS. + Smb4K is an advanced network neighborhood browser and Samba share mounting utility. + smb4k, KDE üzerinde Windows paylaşımlarını taramak ve içeriklerini kullanmak için kullanışlı bir grafik arayüzü sunar. + smb4k + https://sourceforge.net/projects/smb4k/files/3.0.6/smb4k-3.0.6.tar.xz + + kio-devel + kauth-devel + ki18n-devel + solid-devel + samba-devel + kcrash-devel + kparts-devel + kconfig-devel + kwallet-devel + kxmlgui-devel + qt5-base-devel + kdoctools-devel + kcompletion-devel + kcoreaddons-devel + kdbusaddons-devel + kiconthemes-devel + kjobwidgets-devel + extra-cmake-modules + kwindowsystem-devel + kconfigwidgets-devel + knotifications-devel + kwidgetsaddons-devel + qt5-declarative-devel + plasma-framework-devel + + network/share/smb4k/pspec.xml + + + smb4k + + kio + kauth + ki18n + solid + samba + kcrash + kparts + libgcc + kconfig + kwallet + kxmlgui + qt5-base + kdoctools + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + qt5-declarative + plasma-framework + extra-cmake-modules + + + /usr/bin + /usr/lib + /usr/share + /etc/dbus-1/system.d + /usr/share/doc + + + + + 2020-06-04 + 3.0.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-21 + 2.9.73 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 2.1.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-08 + 2.1.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + warpinator + https://github.com/linuxmint/warpinator + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + library + network.share + Share files across the LAN + Ağ üzerinden dosya paylaşın + LAN file sender, send and receive files across the network + LAN dosya gönderici, ağ üzerinden dosya gönderme ve alma. + https://github.com/linuxmint/warpinator/archive/refs/tags/1.2.9.tar.gz + + meson + grpc-devel + xapp-devel + gtk3-devel + polkit-devel + python3-devel + NetworkManager-devel + python3-pygobject3-devel + + network/share/warpinator/pspec.xml + + + warpinator + + gtk3 + grpc + xapp + polkit + python3 + python3-pynacl + NetworkManager + python3-protobuf + python3-zeroconf + python3-setuptools + python3-pygobject3 + python3-cryptography + python3-setproctitle + + + /usr/bin + /usr/libexec/warpinator + /usr/share/locale + /usr/lib/warpinator + /usr/share/warpinator/ + /usr/share/applications + /usr/share/polkit-1 + /usr/share/glib-2.0/schemas + /usr/share/icons + /etc/xdg/autostart/ + /usr/share/metainfo + /usr/share/doc + + + + + 2022-06-11 + 1.2.9 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + farstream + http://www.freedesktop.org/wiki/Software/Farstream + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv2 + library + network.voip + Farstream (formerly Farsight) - Audio/Video Communications Framework + Ses/Video İletişim Çatısı + Farstream (formerly Farsight) - Audio/Video Communications Framework + Farsight projesi, bilinen tüm ses/video konferans protokolleri ile uyum sağlayan bir çatı oluşturulması amacıyla yapılan bir çalışmadır. Bir taraftan, farklı akış protokolleri için eklentiler yazmayı mümkün kılan genel bir API sunarken, diğer taraftan da bu eklentileri kullanacak istemciler için bir API sunmaktadır. + https://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.9.tar.gz + + libnice-devel + valgrind + gobject-introspection-devel + gstreamer-devel + python3-devel + gst-plugins-base-devel + + network/voip/farstream/pspec.xml + + + farstream + + glib2 + libnice + python3 + gstreamer + gst-plugins-base + + + /usr/lib + /usr/lib/farstream-0.2 + /usr/lib/gstreamer-0.1 + /usr/lib/libfarstream-0.2* + /usr/share/doc + /usr/share/farstream + /usr/share/gir-1.0 + /usr/share + + + + farstream-devel + Development files for farstream + farstream için geliştirme dosyaları + + farstream + gstreamer-devel + gst-plugins-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-11 + 0.2.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 0.2.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-15 + 0.2.8 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 0.2.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + chromium-browser + https://www.chromium.org/Home + + Admin PisiLinux + admin@pisilinux.org + + GPLv2 + app:gui + network.web + A WebKit powered web browser + Webkit tabanlı ağ tarayıcı + Chromium-browser is an open-source web browser, powered by WebKit. + Chromium, açık kaynak kodlu Webkit tabanlı bir ağ tarayıcıdır. + chromium-browser + http://gsdview.appspot.com/chromium-browser-official/chromium-99.0.4844.58.tar.xz + + alsa-lib-devel + at-spi2-atk-devel + atk-devel + cairo-devel + cups-devel + curl-devel + dbus-devel + desktop-file-utils + faac-devel + flac-devel + gdk-pixbuf-devel + glib2-devel + glibc-devel + gperf + gsm-devel + gtk3-devel + harfbuzz-devel + hunspell-devel + icon-theme-hicolor + imlib2-devel + jack-audio-connection-kit-devel + lame-devel + libXScrnSaver-devel + libXcomposite-devel + libXcursor-devel + libXdamage-devel + libXext-devel + libXfixes-devel + libXi-devel + libXrandr-devel + libXrender-devel + libXtst-devel + libavc1394-devel + libdc1394-devel + libdrm-devel + libexif-devel + libffi-devel + libgnome-keyring + libjpeg-turbo-devel + libmtp-devel + libogg-devel + libopus-devel + libsecret-devel + libtheora-devel + libva-devel + libvdpau-devel + libvorbis-devel + libxcb-devel + libxslt-devel + llvm-clang-devel + lld-devel + llvm + compiler-rt + minizip-devel + mit-kerberos-devel + ninja + nodejs + nss-devel + opencore-amr-devel + pango-devel + pciutils-devel + pulseaudio-libs-devel + python-lxml + schroedinger-devel + snappy-devel + speech-dispatcher-devel + speex-devel + usbutils + valgrind + webp-devel + x264-devel + xdg-utils + xvid-devel + yasm-devel + python-devel + json-c-devel + openjpeg2-devel + re2-devel + ffmpeg-devel + freetype-devel + mesa-devel + libxkbcommon-devel + jre8-openjdk-headless + pipewire-devel + libevent-devel + + + webcodecs-stop-using-AudioOpusEncoder.patch + fix-build-break-with-system-libdrm.patch + sql-make-VirtualCursor-standard-layout-type.patch + use-oauth2-client-switches-as-default.patch + chromium-91-java-only-allowed-in-android-builds.patch + chromium-buildname.patch + wayland-egl.patch + patches/chromium-78-protobuf-RepeatedPtrField-export.patch + patches/chromium-98-compiler.patch + patches/chromium-99-AutofillAssistantModelExecutor-NoDestructor.patch + + network/web/chromium-browser/pspec.xml + + + chromium-browser + + alsa-lib + dbus + atk + cairo + cups + curl + flac + fontconfig + gdk-pixbuf + at-spi2-atk + at-spi2-core + gtk3 + libevent + libXcomposite + libXcursor + libXdamage + libXext + libXfixes + libXi + libXrandr + libXrender + libXScrnSaver + libXtst + libxcb + libxslt + libva + mit-kerberos + nss + pango + pepperflash + pulseaudio-libs + webp + nspr + expat + glib2 + libX11 + libgcc + harfbuzz + re2 + ffmpeg + libopus + snappy + freetype + libdrm + libjpeg-turbo + mesa + pipewire + + + /etc + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/icons + /usr/share/metainfo + /usr/share/pixmaps + /usr/share/applications + /usr/share/drirc.d/10-chromium-browser.conf + + + master_preferences + chromium-drirc-disable-10bpc-color-configs.conf + chromium-browser.desktop + + + + + 2022-03 + 99.0.4844.58 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2022-02-14 + 98.0.4758.91 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2022-01-11 + 97.0.4692.77 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2021-10-21 + 95.0.4638.54 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2021-08-16 + 92.0.4515.131 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2021-07-07 + 91.0.4472.147 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2021-03-18 + 89.0.4389.90 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2021-01-19 + 87.0.4280.142 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2020-04-29 + 81.0.4044.122 + Version Bump + Idris Kalp + idriskalp@gmail.com + + + 2020-02-28 + 80.0.3987.106 + Version Bump + Idris Kalp + idriskalp@gmail.com + + + 2020-01-12 + 79.0.3945.117 + Version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-09-25 + 78.0.3904.70 + Version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-09-24 + 77.0.3865.93 + Version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-08-16 + 76.0.3809.111 + Version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-07-22 + 75.0.3770.144 + Version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2018-09-11 + 69.0.3497.100 + Version Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-04-09 + 62.0.3202.97 + Version Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-11-24 + 62.0.3202.94 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-31 + 60.0.3112.78 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-11 + 58.0.3029.81 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-12-12 + 55.0.2883.75 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-09-23 + 53.0.2785.116 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-09-10 + 53.0.2785.101 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-09-06 + 53.0.2785.92 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-08-03 + 52.0.2743.116 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-22 + 52.0.2743.82 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-07-05 + 51.0.2704.106 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-30 + 51.0.2704.84 + Version Bump. + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 48.0.2564.97 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + + + + falkon + https://www.falkon.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv3 + app:web + network.web + Cross-platform QtWebKit browser + Cross-platform QtWebKit browser + falkon is a new and very fast QtWebEngine browser + falkon is a new and very fast QtWebEngine browser + https://github.com/KDE/falkon/archive/refs/tags/v22.04.0.tar.gz + + extra-cmake-modules + kwallet-devel + qt5-base-devel + qt5-declarative-devel + qt5-webchannel-devel + qt5-webengine-devel + qt5-x11extras-devel + qt5-sql-postgresql + qt5-svg-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-linguist + qt5-sql-sqlite + libgnome-keyring + python3-devel + openssl-devel + libxcb-devel + nss-devel + cmake + kio-devel + purpose-devel + karchive-devel + + + bookmarks_json.diff + + network/web/falkon/pspec.xml + + + falkon + + kio + kcrash + purpose + kcoreaddons + libxcb + libgnome-keyring + kwallet + qt5-base + qt5-declarative + qt5-webchannel + qt5-webengine + qt5-x11extras + qt5-sql-sqlite + + + /usr/bin + /usr/lib + /usr/include + /usr/share + /usr/share/locale + /usr/share/bash-completion + /usr/share/metainfo + /usr/share/pixmaps + /usr/share/icons + /usr/share/doc + + + qupzilla + + + + + 2021-02-02 + 22.04.0 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-02-02 + 3.1.0 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-04-12 + 3.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-01 + 3.1.0 + version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-01 + 3.0.1 + Fixed version number + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-11 + 3.1.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-08 + 3.0.0 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + firefox + https://www.mozilla.org/tr/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + NPL-1.1 + GPLv2 + app:gui + network.web + Firefox Web Browser + Firefox Web Browser + Firefox Web-Browser + Firefox Web Tarayıcı + Przeglądarka WWW Firefox + Firefox Navegador Web + It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. + Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. + Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. + Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. + Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. + Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. + firefox + https://ftp.mozilla.org/pub/firefox/releases/101.0/source/firefox-101.0.source.tar.xz + + mozconfig-inst + mozconfig-opt + configure + pisilinux/browserconfig.properties + + + rust + wget + llvm + nodejs + chrpath + cbindgen + nss-devel + lld-devel + gdb-devel + util-linux + nspr-devel + zlib-devel + gtk3-devel + gtk2-devel + yasm-devel + gconf-devel + libXt-devel + libSM-devel + autoconf213 + icu4c-devel + compiler-rt + libvpx-devel + libpng-devel + libffi-devel + gnutls-devel + python-devel + sqlite-devel + python3-devel + hunspell-devel + alsa-lib-devel + libevent-devel + xorg-app-devel + libnotify-devel + dbus-glib-devel + xkeyboard-config + xorg-server-xvfb + llvm-clang-devel + python3-setuptools + libxkbcommon-devel + libXcomposite-devel + libXScrnSaver-devel + libjpeg-turbo-devel + pulseaudio-libs-devel + gst-plugins-base-devel + startup-notification-devel + jack-audio-connection-kit-devel + + network/web/firefox/pspec.xml + + + firefox + + atk + nss + dbus + gtk3 + gtk2 + nspr + zlib + cairo + glib2 + libXt + pango + libX11 + libffi + libxcb + libgcc + pixman + sqlite + iconcan + libXext + icu4c + libvpx + alsa-lib + libevent + freetype + hunspell + dbus-glib + libXfixes + fontconfig + gdk-pixbuf + libXdamage + libXrender + libXcomposite + libjpeg-turbo + startup-notification + + + /etc/ + /usr/share/doc + /usr/bin + /usr/share/mime + /usr/libexec + /usr/lib/pkgconfig + /usr/share/pixmaps + /usr/lib/firefox + /usr/share/applications + + + System.Package + + + pisilinux/mozillafirefox.desktop + pisilinux/firefox-l10n.js + pisilinux/default-prefs.js + pisilinux/distribution.ini + pisilinux/pisilinux_bookmark-tr.html + pisilinux/pisilinux_bookmark-en.html + pisilinux/pisilinux_bookmark-nl.html + pisilinux/pisilinux_bookmark-de.html + + + + firefox-lang-az + Firefox üçün Türkçe dil faylı + Firefox üçün Türkçe dil faylı + locale:az + system.locale + lang-az + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org.xpi + + + + firefox-lang-bs + Engleskom jeziku paket za Firefox + Engleskom jeziku paket za Firefox + locale:bs + system.locale + lang-bs + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org.xpi + + + + firefox-lang-ca + Arxiu d'idioma català del Firefox + Arxiu d'idioma català del Firefox + locale:ca + system.locale + lang-ca + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org.xpi + + + + firefox-lang-da + Dansk sprogpakke til Firefox + Dansk sprogpakke til Firefox + locale:da + system.locale + lang-da + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org.xpi + + + + firefox-lang-de + Deutsch Sprachdatei für Firefox + Deutsch Sprachdatei für Firefox + locale:de + system.locale + lang-de + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org.xpi + + + + firefox-lang-el + Ελληνική γλώσσα pack για τον Firefox + Ελληνική γλώσσα pack για τον Firefox + locale:el + system.locale + lang-el + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org.xpi + + + + firefox-lang-en-US + English language pack for Firefox + English language pack for Firefox + locale:en-US + system.locale + lang-en-US + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org.xpi + + + + firefox-lang-en-GB + British English language pack for Firefox + British English language pack for Firefox + locale:en-GB + system.locale + lang-en-GB + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org.xpi + + + + firefox-lang-es-AR + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-AR + system.locale + lang-es-AR + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org.xpi + + + + firefox-lang-es-CL + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-CL + system.locale + lang-es-CL + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org.xpi + + + + firefox-lang-es-ES + Paquete de idioma español para Firefox + Paquete de idioma español para Firefox + locale:es-ES + system.locale + lang-es-ES + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org.xpi + + + + firefox-lang-fi + Suomen kielen pack for Firefox + Suomen kielen pack for Firefox + locale:fi + system.locale + lang-fi + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org.xpi + + + + firefox-lang-fr + Paquet de langue française pour Firefox + Paquet de langue française pour Firefox + locale:fr + system.locale + lang-fr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org.xpi + + + + firefox-lang-hr + Hrvatski jezični paket za Firefox + Hrvatski jezični paket za Firefox + locale:hr + system.locale + lang-hr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org.xpi + + + + firefox-lang-hu + Magyar nyelvű pack for Firefox + Magyar nyelvű pack for Firefox + locale:hu + system.locale + lang-hu + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org.xpi + + + + firefox-lang-it + Language Pack italiano per Firefox + Language Pack italiano per Firefox + locale:it + system.locale + lang-it + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org.xpi + + + + firefox-lang-lt + Lietuvių kalbos paketas Firefox + Lietuvių kalbos paketas Firefox + locale:lt + system.locale + lang-lt + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org.xpi + + + + firefox-lang-nl + Nederlands taalpakket voor Firefox + Nederlands taalpakket voor Firefox + locale:nl + system.locale + lang-nl + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org.xpi + + + + firefox-lang-pl + Polski pakiet językowy dla programu Firefox + Polski pakiet językowy dla programu Firefox + locale:pl + system.locale + lang-pl + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org.xpi + + + + firefox-lang-pt-BR + Pacote de idioma português para o Firefox + Pacote de idioma português para o Firefox + locale:pt-BR + system.locale + lang-pt-BR + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org.xpi + + + + firefox-lang-pt-PT + Pacote de idioma português para o Firefox + Pacote de idioma português para o Firefox + locale:pt-PT + system.locale + lang-pt-PT + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org.xpi + + + + firefox-lang-ro + Pachet de limba română pentru Firefox + Pachet de limba română pentru Firefox + locale:ro + system.locale + lang-ro + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org.xpi + + + + firefox-lang-ru + Русский языковый пакет для Firefox + Русский языковый пакет для Firefox + locale:ru + system.locale + lang-ru + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org.xpi + + + + firefox-lang-sr + Паковање српски језик за Фирефок + Паковање српски језик за Фирефок + locale:sr + system.locale + lang-sr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org.xpi + + + + firefox-lang-sv-SE + Svenska språkpaket för Firefox + Svenska språkpaket för Firefox + locale:sv-SE + system.locale + lang-sv-SE + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org.xpi + + + + firefox-lang-tr + Firefox için Türkçe dil dosyası + Firefox için Türkçe dil dosyası + locale:tr + system.locale + lang-tr + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org.xpi + + + + firefox-lang-uk + Український мовний пакет для Firefox + Український мовний пакет для Firefox + locale:uk + system.locale + lang-uk + + firefox + + + /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org.xpi + + + + + 2022-05-30 + 101.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-02 + 100.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-10 + 99.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 98.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-18 + 97.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-14 + 97.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2022-01-26 + 96.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-10 + 96.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-16 + 95.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-06 + 95.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-11 + 94.0.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-11-01 + 94.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-05 + 93.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-06 + 92.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-23 + 91.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 91.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-19 + 90.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-12 + 90.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-17 + 89.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-31 + 89.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-19 + 88.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-22 + 87.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 86.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-06 + 85.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-25 + 85.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-02 + 84.0.1 + Version bump and enable PGO and LTO + İdris Kalp + idriskalp@gmail.com + + + 2020-12-27 + 84.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-16 + 83.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-19 + 82.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-01 + 81.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-21 + 81.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-01 + 80.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-10 + 78.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-01 + 78.0.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 77.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-12 + 76.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-05 + 76.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 75.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-09 + 74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 73.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-09 + 72.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-02 + 71.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 70.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-21 + 70.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-03 + 69.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-19 + 69.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-08-15 + 68.0.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-26 + 68.0.1 + Version Bump and rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-05-24 + 67.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-15 + 66.0.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-28 + 66.0.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-13 + 65.0.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-28 + 65.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-11 + 64.0.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-11 + 64.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-17 + 63.0.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-30 + 63.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-25 + 62.0.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 61.0.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-20 + 60.0.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-08 + 60.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-06 + 59.0.3 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 58.0.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-04 + 58.0.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 57.0.4 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-08 + 57.0.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-19 + 57.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-12 + 56.0.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-30 + 55.0.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-29 + 53.0.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-22 + 52.0.1 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-05 + 50.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-16 + 47.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 44.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 44.0.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + lynx + https://invisible-mirror.net/lynx/lynx.html + + PisiLinux Community + admins@pisilinux.org + + GPL + app:console + network.web + Lynx is the text web browser. + This is the top level page for the Lynx software distribution site hosted by the Internet Software Consortium. + http://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.9rel.1.tar.bz2 + + ncurses-devel + openssl-devel + gettext-devel + + + lynx2-8-6-don-t-accept-command-line-args-to-telnet.patch + lynx2-8-6-fix-ugly-color.patch + lynx2-8-7-adapt-to-modern-file-localizations.patch + lynx2-8-7-tmp_dir.patch + + network/web/lynx/pspec.xml + + + lynx + + ncurses + openssl + + + /usr/bin + /etc + /usr/share + /usr/share/man + + + + + 2020-01-07 + 2.8.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-22 + 2.8.9 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-07-30 + 2.8.8 + Rebuild New T. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.8.8 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.8.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-29 + 2.8.8 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + otter-browser + http://otter-browser.org/ + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPL-3 + gui + network.web + Otter-Browser Controlled by the user, not vice versa + Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. + https://github.com/OtterBrowser/otter-browser/archive/v1.0.01.tar.gz + + hunspell-devel + qt5-multimedia-devel + qt5-svg-devel + qt5-webengine-devel + qt5-webkit-devel + qt5-xmlpatterns-devel + cmake + + network/web/otter-browser/pspec.xml + + + otter-browser + + hunspell + qt5-multimedia + qt5-svg + qt5-webengine + qt5-webkit + qt5-xmlpatterns + + + /usr/lib + /usr/share + /usr/share/man/man1 + /usr/bin + + + + + 2020-07-06 + 1.0.01 + First Release + Erkan IŞIK + erkanisik@pisilinux.org + + + + + + calligra + http://www.calligra-suite.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + LGPL + FDL1.2 + app:gui + office.calligra + Office and graphic art suite by KDE + KDE'den ofis ve grafik sanatı paketi + Calligra is a free, integrated office suite for KDE. The application suite consists of a word-processor, a spreadsheet application, a presentation creator and viewer application, an organizer and more. + Calligra, KDE için ücretsiz, entegre bir ofis paketidir. Uygulama paketi, bir kelime işlemci, bir elektronik tablo uygulaması, bir sunum oluşturucu ve görüntüleyici uygulaması, bir düzenleyici ve daha fazlasını içerir. + https://invent.kde.org/office/calligra/-/archive/master/calligra-master.tar.gz + + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + qt5-x11extras-devel + qt5-quickcontrols2-devel + qt5-sql-mysql + qt5-sql-odbc + qt5-sql-postgresql + qt5-sql-sqlite + qt5-webkit-devel + extra-cmake-modules + karchive-devel + kcodecs-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdbusaddons-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kdelibs4-support-devel + kio-devel + kross-devel + kparts-devel + sonnet-devel + kholidays-devel + ktexteditor-devel + ktextwidgets-devel + threadweaver-devel + kwallet-devel + kwidgetsaddons-devel + kwindowsystem-devel + kjobwidgets-devel + kxmlgui-devel + knotifyconfig-devel + knotifications-devel + kcmutils-devel + kdesignerplugin + kemoticons-devel + kitemmodels-devel + kinit-devel + kunitconversion-devel + kactivities-devel + khtml-devel + kcontacts-devel + akonadi-contacts-devel + akonadi-devel + kdiagram-devel + kreport-devel + kproperty-devel + qca2-qt5-devel + marble-devel + lcms2-devel + okular-devel + libwpg-devel + libvisio-devel + libwpd-devel + poppler-devel + poppler-qt5-devel + libspnav-devel + eigen3 + fontconfig-devel + freetype-devel + openjpeg-devel + gsl-devel + boost-devel + libetonyek-devel + libodfgen-devel + libvc-devel + libwps-devel + openexr-devel + pstoedit-devel + libX11-devel + libgit2-devel + zlib-devel + imath-devel + djvu-devel + cauchy-devel + libzip-devel + libspectre-devel + ebook-tools-devel + + office/calligra/calligra/pspec.xml + + + calligra + + fontconfig + freetype + gsl + imath + kactivities + karchive + kcmutils + kcodecs + kcompletion + kconfig + kconfigwidgets + kcoreaddons + kdbusaddons + kdelibs4-support + kdiagram + kguiaddons + khtml + ki18n + kiconthemes + kio + kitemviews + kjobwidgets + knotifications + knotifyconfig + kross + kservice + ktextwidgets + kwallet + kwidgetsaddons + kwindowsystem + kxmlgui + pstoedit + lcms2 + libetonyek + libgcc + libodfgen + librevenge + libspnav + libvisio + libwpg + okular + poppler-qt5 + poppler + qca2-qt5 + qt5-base + qt5-declarative + qt5-phonon + qt5-quickcontrols2 + qt5-svg + qt5-webkit + qt5-x11extras + sonnet + zlib + kcrash + libwpd + libwps + libgit2 + djvu + cauchy + libzip + libspectre + ebook-tools + + + /etc/xdg/braindump + /etc/xdg/calligra_stencils.knsrc + /etc/xdg/calligrasheetsrc + /etc/xdg/calligrastagerc + /etc/xdg/calligrawordsrc + /etc/xdg/karbonrc + /usr/share/calligrasheets/dtd + /usr/share/calligrasheets/functions + /usr/share/calligrasheets/icons/hicolor/*/actions + /usr/share/calligrasheets/icons/hicolor/scalable/actions + /usr/share/calligrasheets/icons/hicolor/scalable + /usr/share/calligrasheets/scripts/docker + /usr/share/calligrasheets/scripts/extensions + /usr/share/calligrasheets/scripts/functions + /usr/share/calligrasheets/scripts + /usr/share/calligrasheets/sheetstyles + /usr/share/calligrasheets/templates/Business + /usr/share/calligrasheets/templates/General + /usr/share/calligrasheets/templates/HomeFamily + /usr/share/calligrasheets/templates + /usr/share/calligrasheets/viewplugins + /usr/share/calligrasheets + /usr/share/calligrastage/animations + /usr/share/calligrastage/cursors + /usr/share/calligrastage/icons/hicolor/*/actions + /usr/share/calligrastage/icons/hicolor/scalable/actions + /usr/share/calligrastage/icons/hicolor/scalable + /usr/share/calligrastage/pics + /usr/share/calligrastage/styles + /usr/share/calligrastage/templates/Screen + /usr/share/calligrastage/templates/exportHTML/templates + /usr/share/calligrastage/templates/exportHTML + /usr/share/calligrastage/templates/odf + /usr/share/calligrastage/templates + /usr/share/calligrastage + /usr/share/calligrawords/icons/hicolor/*/actions + /usr/share/calligrawords/icons/hicolor/scalable/actions + /usr/share/calligrawords/icons/hicolor/scalable + /usr/share/calligrawords/styles + /usr/share/calligrawords/templates/Normal + /usr/share/calligrawords/templates + /usr/share/calligrawords + /usr/share/color/icc/calligra + /usr/share/color/icc + /usr/share/color + /usr/share/configkcfg + /usr/share/doc/HTML/*/calligra + /usr/share/doc/HTML/*/sheets + /usr/share/doc/HTML/*/stage + /usr/share/doc/calligra + /usr/share/doc + /usr/share/icons/hicolor/*/apps + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/lib/qt5/plugins/calligra/colorspaces + /usr/lib/qt5/plugins/calligra/devices + /usr/lib/qt5/plugins/calligra/dockers + /usr/lib/qt5/plugins/calligra/formatfilters + /usr/lib/qt5/plugins/calligra/parts + /usr/lib/qt5/plugins/calligra/presentationeventactions + /usr/lib/qt5/plugins/calligra/shapefiltereffects + /usr/lib/qt5/plugins/calligra/shapes + /usr/lib/qt5/plugins/calligra/textediting + /usr/lib/qt5/plugins/calligra/textinlineobjects + /usr/lib/qt5/plugins/calligra/tools + /usr/lib/qt5/plugins/calligra + /usr/lib/qt5/plugins/calligrasheets/extensions + /usr/lib/qt5/plugins/calligrasheets/functions + /usr/lib/qt5/plugins/calligrasheets + /usr/lib/qt5/plugins/calligrastage/pageeffects + /usr/lib/qt5/plugins/calligrastage/shapeanimations + /usr/lib/qt5/plugins/calligrastage/tools + /usr/lib/qt5/plugins/calligrastage + /usr/lib/qt5/plugins/karbon/extensions + /usr/lib/qt5/plugins/karbon + /usr/lib/qt5/plugins/okular/generators + /usr/lib/qt5/plugins/okular + /usr/lib/qt5/plugins + /usr/lib/qt5/qml/Calligra/Gemini/Dropbox + /usr/lib/qt5/qml/Calligra/Gemini/Git + /usr/lib/qt5/qml/Calligra/Gemini + /usr/lib/qt5/qml/Calligra + /usr/lib/qt5/qml/org/kde/calligra + /usr/lib/qt5/qml/org/kde + /usr/lib/qt5/qml/org + /usr/lib/qt5/qml + /usr/share/applications + /usr/share/calligra/autocorrect + /usr/share/calligra/cursors + /usr/share/calligra/icons/hicolor/*/actions + /usr/share/calligra/icons/hicolor/*/mimetypes + /usr/share/calligra/icons/hicolor/scalable + /usr/share/calligra/icons/hicolor/scalable/actions + /usr/share/calligra/palettes + /usr/share/calligra/pics + /usr/share/calligra/stencils/Assorted + /usr/share/calligra/stencils/BPMN + /usr/share/calligra/stencils/Basic_Flowchart + /usr/share/calligra/stencils/Building_Site + /usr/share/calligra/stencils/CMOS + /usr/share/calligra/stencils/Central_Data_Processing + /usr/share/calligra/stencils/ChemEng + /usr/share/calligra/stencils/Circuit2 + /usr/share/calligra/stencils/Circuit + /usr/share/calligra/stencils/Cisco + /usr/share/calligra/stencils/Civil + /usr/share/calligra/stencils/Contact + /usr/share/calligra/stencils/Cybernetics + /usr/share/calligra/stencils/Digital + /usr/share/calligra/stencils/Edpc + /usr/share/calligra/stencils/Electric2 + /usr/share/calligra/stencils/Electric + /usr/share/calligra/stencils/Electronic + /usr/share/calligra/stencils/Flags + /usr/share/calligra/stencils/Gane_and_Sarson + /usr/share/calligra/stencils/Jigsaw + /usr/share/calligra/stencils/LST + /usr/share/calligra/stencils/Lights + /usr/share/calligra/stencils/Logic + /usr/share/calligra/stencils/MSE + /usr/share/calligra/stencils/Map + /usr/share/calligra/stencils/Misc + /usr/share/calligra/stencils/Network + /usr/share/calligra/stencils/Optics + /usr/share/calligra/stencils/Pneumatic + /usr/share/calligra/stencils/RDP + /usr/share/calligra/stencils/Racks + /usr/share/calligra/stencils/Renewable_Energy + /usr/share/calligra/stencils/SDL + /usr/share/calligra/stencils/Scenegraph + /usr/share/calligra/stencils/Sybase + /usr/share/calligra/stencils/Value_Stream_Mapping + /usr/share/calligra/stencils + /usr/share/calligra/styles + /usr/share/calligra/thesaurus + /usr/share/calligra + /usr/share/calligra_shape_music/fonts + /usr/share/calligra_shape_music + /usr/share/calligragemini/qml/components + /usr/share/calligragemini/qml/panels/notespanelpages + /usr/share/calligragemini/qml/panels + /usr/share/calligragemini/qml/welcomepages/cloud/dropbox + /usr/share/calligragemini/qml/welcomepages/cloud/git + /usr/share/calligragemini/qml/welcomepages/cloud + /usr/share/calligragemini/qml/welcomepages + /usr/share/calligragemini/qml + /usr/share/calligragemini/themes/default/fonts + /usr/share/calligragemini/themes/default/icons + /usr/share/calligragemini/themes/default/images + /usr/share/calligragemini/themes/default + /usr/share/calligragemini/themes + /usr/share/calligragemini + /usr/share/icons/hicolor/scalable/apps + /usr/share/icons/hicolor/scalable + /usr/share/karbon/gradients + /usr/share/karbon/icons/hicolor/*/actions + /usr/share/karbon/palettes + /usr/share/karbon/plugins + /usr/share/karbon/templates/Basic + /usr/share/karbon/templates + /usr/share/karbon + /usr/share/kservices5/ServiceMenus/calligra + /usr/share/kservices5/ServiceMenus + /usr/share/kservices5 + /usr/share/kxmlgui5/calligrasheets + /usr/share/kxmlgui5/calligrastage + /usr/share/kxmlgui5/calligrawords + /usr/share/kxmlgui5/karbon + /usr/share/kxmlgui5 + /usr/share/locale/*/LC_MESSAGES + /usr/share/metainfo + /usr/share/mime + /usr/share/mime/packages + /usr/share/templates + /usr/share + + + + + 2021-11-30 + 3.2.1 + Fix build + Kamil Atlı + suvari@pisilinux.org + + + 2021-03-05 + 3.2.1 + Version Bump + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2018-09-10 + 3.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-21 + 3.1.0 + Release bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-23 + 3.0.1 + Release bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-04-05 + 3.0.0.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-07 + 3.0.0.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-06 + 3.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + calligra-plan + https://www.calligra-suite.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPL FDL1.2 + app:gui + office.calligra + A project management application intended for managing moderately large projects with multiple resources + A project management application intended for managing moderately large projects with multiple resources + Birden fazla kaynağa sahip ılımlı büyük projeleri yönetmek için tasarlanmış bir proje yönetimi uygulaması + Birden fazla kaynağa sahip ılımlı büyük projeleri yönetmek için tasarlanmış bir proje yönetimi uygulaması + https://download.kde.org/stable/calligra/3.3.0/calligraplan-3.3.0.tar.xz + + extra-cmake-modules + qca2-qt5-devel + kholidays-devel + qt5-base-devel + qt5-declarative-devel + qt5-svg-devel + qt5-x11extras-devel + kcmutils-devel + kcompletion-devel + kconfig-devel + kconfigwidgets-devel + kcoreaddons-devel + kdoctools-devel + kguiaddons-devel + ki18n-devel + kiconthemes-devel + kinit-devel + kio-devel + kitemviews-devel + kjobwidgets-devel + knotifyconfig-devel + kross-devel + ktextwidgets-devel + kwallet-devel + kwidgetsaddons-devel + kwindowsystem-devel + kxmlgui-devel + sonnet-devel + akonadi-contacts-devel + kdbusaddons-devel + akonadi-devel + kactivities-devel + knotifications-devel + karchive-devel + kproperty-devel + kreport-devel + kcodecs-devel + kdiagram-devel + kparts-devel + libX11-devel + zlib-devel + perl + + office/calligra/calligra-plan/pspec.xml + + + calligra-plan + + kio + ki18n + kparts + libgcc + kconfig + kwallet + kxmlgui + karchive + kdiagram + kservice + qt5-base + qca2-qt5 + kholidays + kitemviews + kactivities + kcompletion + kcoreaddons + kdbusaddons + kiconthemes + kjobwidgets + ktextwidgets + kwindowsystem + qt5-x11extras + kconfigwidgets + knotifications + kwidgetsaddons + + + /usr/bin + /etc/xdg + /usr/lib + /usr/share + /usr/share/locale + /usr/share/metainfo + /usr/share/doc + + + + + 2021-03-10 + 3.3.0 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-04-12 + 3.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-01 + 3.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-25 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-10 + 3.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-28 + 3.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-07 + 3.1.0 + Release bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-07-23 + 3.0.1 + Release bump. + Ali Algul + aligulle3801@gmail.com + + + 2017-04-05 + 3.0.0.1 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-07 + 3.0.0.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-06 + 3.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + cherrytree + https://www.giuspen.com/cherrytree/ + + Pisilinux Community + admins@pisilinux.org + + GPL-3 + app:gui + office + Cherrytree A hierarchical note taking application. + A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file. + https://github.com/giuspen/cherrytree/releases/download/0.99.44/cherrytree_0.99.44.tar.xz + + cmake + ninja + fmt-devel + curl-devel + spdlog-devel + gtkmm3-devel + glibmm-devel + gspell-devel + sqlite-devel + python3-devel + uchardet-devel + libxml++26-devel + gtksourceviewmm3-devel + + office/cherrytree/pspec.xml + + + cherrytree + + curl + gtk3 + atkmm + cairo + glib2 + pango + glibmm + gspell + gtkmm3 + libgcc + sqlite + cairomm + libxml2 + pangomm + uchardet + libsigc++ + libxml++26 + gtksourceviewmm3 + + + /usr/bin + /usr/share + /usr/share/cherrytree + /usr/share/locale + /usr/share/man + + + + + 2021-12-18 + 0.99.44 + First 2.2 Beta build. + fury + uglyside@yandex.ru + + + goldendict @@ -285702,58 +249427,59 @@ from a wide variety of machine architectures. - hunspell-dict-nl - http://www.opentaal.org/english.php + hunspell-dict-de + http://www.j3e.de/ispell/igerman98 PisiLinux Community admins@pisilinux.org - LGPLv2+ - locale:nl + GPLv2 + GPLv3 + locale:de data office.dictionary - Dutch hunspell dictionaries - Flemenkçe hunspell sözlükleri - hunspell-dict-nl includes Dutch hunspell dictionaries. - hunspell-dict-nl Flemenkçe hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-nl/OpenTaal-210G-LO.oxt/3c96686c2555e3ae23b5de06ba08631b/OpenTaal-210G-LO.oxt - office/dictionary/hunspell-dict-nl/pspec.xml + German hunspell dictionaries + Almanca hunspell sözlüğü + hunspell-dict-de includes German, Switzerland, etc. hunspell dictionaries. + hunspell-dict-de Almanca ve İsviçre Almancası için hunspell sözlüklerini içermektedir. + https://www.j3e.de/ispell/igerman98/dict/igerman98-20161207.tar.bz2 + office/dictionary/hunspell-dict-de/pspec.xml - hunspell-dict-nl + hunspell-dict-de - /usr/share + /usr/share/hunspell /usr/share/doc 2018-08-09 - 2.10g + 0.0_20161207 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org 2017-03-29 - 2.10g + 0.0_20161207 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org - 2016-06-09 - 2.10g + 2016-06-11 + 0.0_20131216 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-10-05 - 2.10g + 2014-01-26 + 0.0_20131216 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org @@ -285824,6 +249550,124 @@ from a wide variety of machine architectures. + + + hunspell-dict-es + https://pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + GPLv3+ + MPL-1.1 + locale:es + data + office.dictionary + Spanish hunspell dictionaries + İspanyolca hunspell sözlükleri + hunspell-dict-es includes Spanish (Spain, Mexico, etc.) hunspell dictionaries. + hunspell-dict-es İspanyolca (İspanya, Meksika vs.) hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-es/es_ANY.zip/a88e2244de48c0ff42f1b77c4a80c8a0/es_ANY.zip + office/dictionary/hunspell-dict-es/pspec.xml + + + hunspell-dict-es + + /usr/share + /usr/share/doc + + + + + 2018-08-09 + 0.0_20081215 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-29 + 0.0_20081215 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.0_20081215 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-17 + 0.0_20081215 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + hunspell-dict-fr + http://dico.savant.free.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + MPL-1.1 + locale:fr + data + office.dictionary + French hunspell dictionaries + Fransızca hunspell sözlükleri + hunspell-dict-fr includes French (France, Belgium, etc.) hunspell dictionaries. + hunspell-dict-fr Fransızca (Fransa, Belçika vs.) hunspell sözlüklerini içerir. + http://dico.savant.free.fr/_download/fr_FR_2-3-2.zip + office/dictionary/hunspell-dict-fr/pspec.xml + + + hunspell-dict-fr + + /usr/share/hunspell + /usr/share/doc + + + + + 2018-08-09 + 2.3.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-29 + 2.3.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-27 + 2.3.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + hunspell-dict-it @@ -285881,6 +249725,122 @@ from a wide variety of machine architectures. + + + hunspell-dict-nl + http://www.opentaal.org/english.php + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + locale:nl + data + office.dictionary + Dutch hunspell dictionaries + Flemenkçe hunspell sözlükleri + hunspell-dict-nl includes Dutch hunspell dictionaries. + hunspell-dict-nl Flemenkçe hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-nl/OpenTaal-210G-LO.oxt/3c96686c2555e3ae23b5de06ba08631b/OpenTaal-210G-LO.oxt + office/dictionary/hunspell-dict-nl/pspec.xml + + + hunspell-dict-nl + + /usr/share + /usr/share/doc + + + + + 2018-08-09 + 2.10g + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-29 + 2.10g + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.10g + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-05 + 2.10g + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + hunspell-dict-pl + http://www.kurnik.pl/dictionary/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + GPLv2+ + MPL-1.1 + locale:pl + data + office.dictionary + Polish hunspell dictionaries + Polonya dili için hunspell sözlükleri + hunspell-dict-pl includes Polish hunspell dictionaries. + hunspell-dict-pl Polonya dili için hunspell sözlükleri içerir. + https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-20160801.zip + office/dictionary/hunspell-dict-pl/pspec.xml + + + hunspell-dict-pl + + /usr/share/hunspell + /usr/share/doc + + + + + 2018-08-09 + 20160801 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-29 + 20160801 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 20100428 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-05 + 20100428 + First release + Alihanh Öztürk + alihan@pisilinux.org + + + hunspell-dict-pt @@ -285941,85 +249901,25 @@ from a wide variety of machine architectures. - hunspell-dict-de - http://www.j3e.de/ispell/igerman98 + hunspell-dict-ru + ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell PisiLinux Community admins@pisilinux.org - GPLv2 - GPLv3 - locale:de + BSD + locale:ru data office.dictionary - German hunspell dictionaries - Almanca hunspell sözlüğü - hunspell-dict-de includes German, Switzerland, etc. hunspell dictionaries. - hunspell-dict-de Almanca ve İsviçre Almancası için hunspell sözlüklerini içermektedir. - https://www.j3e.de/ispell/igerman98/dict/igerman98-20161207.tar.bz2 - office/dictionary/hunspell-dict-de/pspec.xml + Russian hunspell dictionaries + Rusça hunspell sözlükleri + hunspell-dict-ru includes Russian hunspell dictionaries. + hunspell-dict-ru Rusça hunspell sözlüklerini içerir. + http://pkgs.fedoraproject.org/repo/pkgs/hunspell-ru/rus-myspell-0.99f7.tar.gz/05a7c3a7bea2432410a35d93161b4c0a/rus-myspell-0.99f7.tar.gz + office/dictionary/hunspell-dict-ru/pspec.xml - hunspell-dict-de - - /usr/share/hunspell - /usr/share/doc - - - - - 2018-08-09 - 0.0_20161207 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-29 - 0.0_20161207 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-11 - 0.0_20131216 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-26 - 0.0_20131216 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - hunspell-dict-es - https://pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - GPLv3+ - MPL-1.1 - locale:es - data - office.dictionary - Spanish hunspell dictionaries - İspanyolca hunspell sözlükleri - hunspell-dict-es includes Spanish (Spain, Mexico, etc.) hunspell dictionaries. - hunspell-dict-es İspanyolca (İspanya, Meksika vs.) hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-es/es_ANY.zip/a88e2244de48c0ff42f1b77c4a80c8a0/es_ANY.zip - office/dictionary/hunspell-dict-es/pspec.xml - - - hunspell-dict-es + hunspell-dict-ru /usr/share /usr/share/doc @@ -286028,28 +249928,28 @@ from a wide variety of machine architectures. 2018-08-09 - 0.0_20081215 + 0.99f_7 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org 2017-03-29 - 0.0_20081215 + 0.99f_7 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org 2016-06-09 - 0.0_20081215 + 0.99f_7 Release Bump Pisi Linux Community admin@pisilinux.org 2014-02-17 - 0.0_20081215 + 0.99f_7 First release Kamil Atlı suvarice@gmail.com @@ -286113,107 +250013,6 @@ from a wide variety of machine architectures. - - - hunspell-dict-ru - ftp://ftp.vsu.ru/mirrors/scon155.phys.msu.su/pub/russian/ispell/myspell - - PisiLinux Community - admins@pisilinux.org - - BSD - locale:ru - data - office.dictionary - Russian hunspell dictionaries - Rusça hunspell sözlükleri - hunspell-dict-ru includes Russian hunspell dictionaries. - hunspell-dict-ru Rusça hunspell sözlüklerini içerir. - http://pkgs.fedoraproject.org/repo/pkgs/hunspell-ru/rus-myspell-0.99f7.tar.gz/05a7c3a7bea2432410a35d93161b4c0a/rus-myspell-0.99f7.tar.gz - office/dictionary/hunspell-dict-ru/pspec.xml - - - hunspell-dict-ru - - /usr/share - /usr/share/doc - - - - - 2018-08-09 - 0.99f_7 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-29 - 0.99f_7 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.99f_7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-17 - 0.99f_7 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - stardict-essential-turkish - http://www.pisilinux.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - office.dictionary - Stardict essential dictionaries for Turkish users - Türkçe konuşan insanlar için Stardict sözlükleri - Stardict essential dictionaries for Turkish users. - Türkçe konuşan insanlar için Stardict uygulamasının kullanabileceği seçilmiş sözlükler. - http://source.pisilinux.org/1.0/stardict-essential-turkish-0.2.tar.xz - office/dictionary/stardict-essential-turkish/pspec.xml - - - stardict-essential-turkish - - goldendict - - - /usr/share/stardict/dic - - - - - 2018-08-09 - 0.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-05-02 - 0.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - hunspell-dict-tr @@ -286282,119 +250081,513 @@ from a wide variety of machine architectures. - hunspell-dict-pl - http://www.kurnik.pl/dictionary/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - GPLv2+ - MPL-1.1 - locale:pl - data - office.dictionary - Polish hunspell dictionaries - Polonya dili için hunspell sözlükleri - hunspell-dict-pl includes Polish hunspell dictionaries. - hunspell-dict-pl Polonya dili için hunspell sözlükleri içerir. - https://sources.archlinux.org/other/community/hunspell-pl/sjp-myspell-pl-20160801.zip - office/dictionary/hunspell-dict-pl/pspec.xml - - - hunspell-dict-pl - - /usr/share/hunspell - /usr/share/doc - - - - - 2018-08-09 - 20160801 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-29 - 20160801 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 20100428 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-05 - 20100428 - First release - Alihanh Öztürk - alihan@pisilinux.org - - - - - - hunspell-dict-fr - http://dico.savant.free.fr/ + stardict-essential-turkish + http://www.pisilinux.org PisiLinux Community admins@pisilinux.org GPLv2 - LGPLv2 - MPL-1.1 - locale:fr data office.dictionary - French hunspell dictionaries - Fransızca hunspell sözlükleri - hunspell-dict-fr includes French (France, Belgium, etc.) hunspell dictionaries. - hunspell-dict-fr Fransızca (Fransa, Belçika vs.) hunspell sözlüklerini içerir. - http://dico.savant.free.fr/_download/fr_FR_2-3-2.zip - office/dictionary/hunspell-dict-fr/pspec.xml + Stardict essential dictionaries for Turkish users + Türkçe konuşan insanlar için Stardict sözlükleri + Stardict essential dictionaries for Turkish users. + Türkçe konuşan insanlar için Stardict uygulamasının kullanabileceği seçilmiş sözlükler. + http://source.pisilinux.org/1.0/stardict-essential-turkish-0.2.tar.xz + office/dictionary/stardict-essential-turkish/pspec.xml - hunspell-dict-fr + stardict-essential-turkish + + goldendict + - /usr/share/hunspell - /usr/share/doc + /usr/share/stardict/dic - + 2018-08-09 - 2.3.2 + 0.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-05-02 + 0.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + docbook-sgml4_5 + http://www.docbook.org/sgml/ + + PisiLinux Community + admins@pisilinux.org + + X11 + data + office.docbook + Docbook SGML DTD 4.5 + Docbook SGML DTD 4.5 + Contains Docbook SGML DTD version 4.5. + Docbook SGML DTD sürüm 4.5 belgelerini içerir. + http://www.docbook.org/sgml/4.5/docbook-4.5.zip + + catalog.patch + + office/docbook/docbook-sgml4_5/pspec.xml + + + docbook-sgml4_5 + + sgml-common + + + /usr/share/doc/docbook-sgml4_5 + /usr/share + + + System.Package + + + + + 2021-06-29 + 4.5 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-25 + 4.5 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org - 2017-03-29 - 2.3.2 + 2017-04-04 + 4.5 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org 2016-06-09 - 2.3.2 + 4.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-01-27 - 2.3.2 + 2014-05-18 + 4.5 First release - Alihan Öztürk - alihan@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + docbook2x + http://docbook2x.sourceforge.net + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + app:gui + office.docbook + docbook2X converts DocBook documents to man and Texinfo format. + docbook2X is a software package that converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format. + docbook2X is a software package that converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format. + http://downloads.sourceforge.net/project/docbook2x/docbook2x/0.8.8/docbook2X-0.8.8.tar.gz + + docbook-xml + libxml2-devel + libxslt-devel + perl-XML-SAX + + + docbook2X-0.8.8-error_on_missing_refentry.patch + docbook2X-0.8.8-filename_whitespace_handling.patch + docbook2X-0.8.8-preprocessor_declaration_syntax.patch + + office/docbook/docbook2x/pspec.xml + + + docbook2x + + docbook-xml + libxml2 + libxslt + perl-XML-SAX + + + /usr/bin + /usr/share/man + /usr/share/doc + /usr/share + + + + + 2021-06-29 + 0.8.8 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 0.8.8 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-12-12 + 0.8.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + itstool + http://itstool.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + office.docbook + XML to PO and back again + XML to PO and back again + http://files.itstool.org/itstool/itstool-2.0.6.tar.bz2 + office/docbook/itstool/pspec.xml + + + itstool + + /usr + + + + + 2020-02-07 + 2.0.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 2.0.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 2.0.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 2.0.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 2.0.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + openjade + http://openjade.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + office.docbook + An implementation of DSSSL + Bir DSSSL uyarlaması + OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents. + OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır. + http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz + + sgml-common + opensp-devel + libgcc + + + openjade-1.3.2-ldflags.patch + openjade-1.3.2-respect-ldflags.patch + openjade-1.3.2-msggen.pl.patch + + office/docbook/openjade/pspec.xml + + + openjade + + sgml-common + opensp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc/openjade + /usr/share/sgml + + + System.Package + + + openjade-1.3.2.dsssl-catalog + openjade-1.3.2.catalog + + + + + 2020-01-08 + 1.3.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-25 + 1.3.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.3.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 1.3.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + opensp + http://openjade.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + office.docbook + A SGML parsing and entity management toolkit + SGML ayrıştırma araç seti + OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project. + OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır. + mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz + + docbook-xml + libgcc + + + opensp-1.5-gcc34.patch + opensp-sigsegv.patch + + office/docbook/opensp/pspec.xml + + + opensp + + libgcc + + + /usr/bin + /usr/share/doc/opensp + /usr/share/man + /usr/lib + /usr/share/locale + /usr/share/sgml + + + + opensp-devel + Development files for opensp + opensp için geliştirme dosyaları + + opensp + + + /usr/include + + + + + 2020-01-08 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-25 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-18 + 1.5.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + yelp-xsl + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + data + office.docbook + Yelp XSLT Stylesheets + Yelp XSL biçim dosyaları + Package of yelp-xsl contains XSL stylesheets that are used by the yelp help browser. + yelp-xsl paketi, yelp yardım görüntüleyicisi tarafından kullanılan XSL biçim dosyalarını taşır. + mirrors://gnome/yelp-xsl/41/yelp-xsl-41.1.tar.xz + + libxml2-devel + itstool + + office/docbook/yelp-xsl/pspec.xml + + + yelp-xsl + + /usr/share/locale + /usr/share/doc + /usr/share/yelp-xsl + + + + yelp-xsl-devel + Development files for yelp-xsl + yelp-xsl paketi için geliştirme dosyaları + + yelp-xsl + + + /usr/share/pkgconfig + + + + + 2021-12-05 + 41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 41.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-14 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-24 + 40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 3.38.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 3.34.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org @@ -286484,553 +250677,219 @@ from a wide variety of machine architectures. - qtspell - https://github.com/manisandro/qtspell + homebank + http://homebank.free.fr - Stefan Gronewold + Stefan Gronewold (groni) groni@pisilinux.org - GPL3 - office.spellcheck - Spell checking for Qt text widgets - QtSpell adds spell-checking functionality to Qt's text widgets, using the enchant spell-checking library. - https://github.com/manisandro/qtspell/archive/0.8.5.tar.gz - - cmake - doxygen - enchant2-devel - pkgconfig - qt5-assistant-devel - qt5-base-devel - qt5-designer-devel - qt5-linguist - glib2-devel - - office/spellcheck/qtspell/pspec.xml - - - qtspell - Spell checking for Qt text widgets - - qt5-base - enchant2 - libgcc - - - /usr/lib - /usr/share/qt5/translations - /usr/include/QtSpell-qt5 - /usr/share/doc - - - - - 2019-04-24 - 0.8.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-16 - 0.8.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-09 - 0.8.2 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - hunspell - http://hunspell.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 GPLv2 - LGPLv2.1 - library - app:console - office.spellcheck - An improved spell checker - Gelişmiş imla denetleyici - hunspell spell checker is an improved replacement for myspell in Openoffice.org. It is also used in Firefox and Thunderbird as spell checker. - hunspell, OpenOffice.org'daki myspell yerine kullanılabilen gelişmiş bir imla denetleyicidir. Aynı zamanda, Firefox ve Thunderbird'de imla denetleyici olarak kullanılmaktadır. - https://github.com/hunspell/hunspell/archive/v1.7.0.tar.gz + app:gui + office + Free, easy, personal accounting for everyone + Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı + «HomeBank» is free software that will assist you to manage your personal accounting. + HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır.. + homebank + http://homebank.free.fr/public/homebank-5.2.tar.gz + cairo-devel + pango-devel + gdk-pixbuf-devel + pixman-devel + gtk3-devel + glib2-devel gettext-devel - ncurses-devel - readline-devel + pkgconfig + libofx-devel + intltool + libsoup-devel + at-spi2-core-devel - office/spellcheck/hunspell/pspec.xml + office/homebank/pspec.xml - hunspell - - ncurses - libgcc - readline - - - /usr/lib - /usr/bin - /usr/share/locale - /usr/share/man - /usr/share/doc - - - ispellaff2myspell - wordlist2hunspell - - - - hunspell-devel - Development files for hunspell - hunspell için geliştirme dosyaları - - hunspell - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/*.a - /usr/share/man/man3 - - - - - 2020-01-15 - 1.7.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2018-08-06 - 1.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-16 - 1.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 1.6.0 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-10 - 1.3.3 - First release - Vedat Demir - vedat@pisilinux.com - - - - - - aspell - http://aspell.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - office.spellcheck - A multi-language spellchecker - Bir yazım kontrol aracı - Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial. - Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell. - GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır. - mirrors://gnu/aspell/aspell-0.60.8.tar.gz - - ncurses-devel - - - fedora/aspell-0.60.7-fileconflict.patch - fedora/aspell-0.60.7-mp.patch - fedora/aspell-0.60.7-pspell_conf.patch - - office/spellcheck/aspell/pspec.xml - - - aspell - - libgcc - ncurses - - - /usr/bin - /usr/lib - /usr/share/aspell - /usr/share/doc - /usr/share/man - /usr/share/info - /usr/share/locale - - - - aspell-devel - Development files for aspell - aspell için geliştirme dosyaları - - aspell - - - /usr/include - /usr/share/info/aspell-dev.info - - - - - 2021-05-25 - 0.60.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-15 - 0.60.8 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 0.60.6.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-28 - 0.60.6.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.60.6.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.60.6.1 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - zemberek-office - http://code.google.com/p/zemberek/ - - PisiLinux Community - admins@pisilinux.org - - BSD - data - office.spellcheck - Zemberek integration package for LibreOffice office suite - LibreOffice Türkçe ofis yazılımı için Zemberek uyumu - zemberek-openoffice integrates Zemberek into LibreOffice. - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/zemberek/zemberek-ooo-1.0_rc4.oxt - office/spellcheck/zemberek-office/pspec.xml - - - zemberek-office - - jre8-openjdk - libreoffice - - - /usr/lib/libreoffice/share/extensions - - - - - 2019-09-29 - 1.0_rc4 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-05-29 - 1.0_rc4 - Rebuild - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2019-04-26 - 1.0_rc4 - Rebuild - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-03-23 - 1.0_rc4 - Fist release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - enchant - https://www.abisource.com/enchant/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - office.spellcheck - Spellchecker wrapping library - İmla denetimi kitaplığı - enchant is a library that wraps other spell checking backends. - enchant, diğer imla denetim kitaplıklarını arkauç olarak kullanan bir imla denetim kitaplığıdır. - http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz - - aspell-devel - hunspell-devel - glib2-devel - dbus-glib-devel - - office/spellcheck/enchant/pspec.xml - - - enchant + homebank + cairo + libofx + pango + gdk-pixbuf + gtk3 glib2 - hunspell + libsoup /usr/bin + /usr/share/applications + /usr/share/application-registry /usr/lib - /usr/share/man + /usr/share /usr/share/doc - /usr/share/enchant + /usr/share/locale + /usr/share/icons/hicolor - enchant-aspell - aspell backend for Enchant - Enchant için aspell arkaucu - - enchant - aspell - + homebank-data + Data Files for Homebank - /usr/lib/enchant/libenchant_aspell.so - - - - enchant-zemberek - zemberek backend for Enchant - Enchant için zemberek arkaucu - - enchant - zemberek-office - - - /usr/lib/enchant/libenchant_zemberek.so - - - - enchant-devel - Development files for enchant - enchant için geliştirme dosyaları - - enchant - glib2-devel - - - /usr/include - /usr/lib/pkgconfig + /usr/share/homebank/datas + /usr/share/mime-info - - 2020-01-15 - 1.6.0 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - 2019-01-26 - 1.6.0 - Rebuild. + 2018-09-10 + 5.2 + Version Bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-13 - 1.6.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2018-04-15 + 5.1.8 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2017-02-28 - 1.6.0 - Rebuild for new Toolchain. + 2017-01-21 + 5.1.2 + Version bump. Stefan Gronewold(groni) groni@pisilinux.org 2016-06-09 - 1.6.0 + 5.0.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-25 - 1.6.0 + 2016-01-03 + 5.0.5 First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Stefan Gronewold (groni) + groni@pisilinux.org - enchant2 - https://abiword.github.io/enchant/ + kexi + http://www.kexi-project.org/ - PisiLinux Community - admins@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - LGPLv2.1 - library - office.spellcheck - Spellchecker wrapping library - İmla denetimi kitaplığı - enchant is a library that wraps other spell checking backends. - enchant2, diğer imla denetim kitaplıklarını arkauç olarak kullanan bir imla denetim kitaplığıdır. - https://github.com/AbiWord/enchant/archive/v2.3.0.tar.gz + GPLv2+ + app:gui + office + A visual database applications creator. + Görsel bir veritabanı uygulaması yaratıcısı. + Kexi is an open source visual database applications creator,a long-awaited competitor for programs like MS Access or Filemaker. + Kexi açık kaynaklı bir görsel veritabanı uygulaması yaratıcısıdır. MS Access veya Filemaker gibi programlar için uzun süredir beklenen bir rakip. + http://download.kde.org/stable/kexi/src/kexi-3.1.0.tar.xz - dbus-glib-devel - hunspell-devel - aspell-devel - glib2-devel - gnupg - git + extra-cmake-modules + kxmlgui-devel + kwidgetsaddons-devel + ktextwidgets-devel + ktexteditor-devel + kio-devel + kitemviews-devel + kiconthemes-devel + ki18n-devel + kguiaddons-devel + kcoreaddons-devel + kconfigwidgets-devel + kconfig-devel + kcompletion-devel + kcodecs-devel + karchive-devel + qt5-base-devel + kdb-devel + kreport-devel + qt5-webkit-devel + breeze-icons + marble-devel + kproperty-devel + kcrash-devel + qt5-designer - office/spellcheck/enchant2/pspec.xml + + 0001-fix-build-with-qt-5-11.patch + + office/kexi/pspec.xml - enchant2 - Spellchecker wrapping library + kexi + A visual database applications creator. + kdb + kio glib2 - hunspell + ki18n + kcrash + libgcc + kcodecs + kconfig + kreport + kxmlgui + qt5-base + kproperty + kguiaddons + kitemviews + qt5-webkit + kcompletion + kcoreaddons + kiconthemes + ktexteditor + ktextwidgets + kconfigwidgets + kwidgetsaddons /usr/bin /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/enchant - - - - enchant2-aspell - aspell backend for Enchant - Enchant2 için aspell arkaucu - enchant2-aspell, enchant2 için aspell arkaucu sağlar. - - enchant2 - aspell - - - /usr/lib/enchant-2/enchant_aspell.so - - - - enchant2-zemberek - zemberek backend for Enchant - Enchant2 için zemberek arkaucu - enchant2-zemberek, enchant2 için zemberek arkaucu sağlar. - - enchant2 - zemberek-office - - - /usr/lib/enchant-2/enchant_zemberek.so - - - - enchant2-devel - Development files for enchant2 - enchant2 için geliştirme dosyaları - enchant2-devel, enchant2 için geliştirme dosyaları sağlar. - - enchant2 - glib2-devel - - - /usr/include - /usr/lib/pkgconfig + /usr/lib/qt5 + /usr/share + /usr/share/locale + /usr/share/metainfo + /usr/share/kexi + /usr/share/applications + + 2019-01-20 + 3.1.0 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + - 2021-06-30 - 2.3.0 - Version bump. - Mustafa Cinasal + 2018-09-10 + 3.1.0 + Version bump + Mustafa Cinasl muscnsl@gmail.com - 2020-01-18 - 2.2.7 - Version bump. - Blue Devil - bluedevil@sctzine.com + 2017-10-14 + 3.0.2 + Version bump + Mustafa Cinasl + muscnsl@gmail.com - 2019-04-06 - 2.2.3 - First release. - Mustafa Cinasal - muscnsl@gmail.com + 2017-01-07 + 3.0.0 + First release + Alihan Öztürk + alihan@pisilinux.org @@ -290788,140 +254647,291 @@ from a wide variety of machine architectures. - zim - https://zim-wiki.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - office - A Desktop Wiki. - Zim is a graphical text editor used to maintain a collection of wiki pages. Each page can contain links to other pages, simple formatting and images. Pages are stored in a folder structure, like in an outliner, and can have attachments. Creating a new page is as easy as linking to a nonexistent page. All data is stored in plain text files with wiki formatting. Various plugins provide additional functionality, like a task list manager, an equation editor, a tray icon, and support for version control. - https://zim-wiki.org/downloads/zim-0.74.3.tar.gz - - xdg-utils - gtk3-devel - python3-xdg - python3-devel - python3-pygobject3-devel - - office/zim/pspec.xml - - - zim - - gtk3 - python3 - xdg-utils - python3-xdg - python3-pygobject3 - gobject-introspection - - - /usr/bin - /usr/lib - /usr/share - /usr/share/zim - /usr/share/locale - /usr/share/man/man1 - - - - - 2021-12-14 - 0.74.3 - First build. - fury - uglyside@yandex.ru - - - - - - libofx - http://libofx.sourceforge.net + mindforger + https://github.com/dvorka/mindforger PisiLinux Community admins@pisilinux.org - GPLv2+ - app:console + GPLv2 library - office.misc - A library for supporting Open Financial Exchange (OFX) format - Açık Finansal Takas (OXF) dosya biçimi kitaplığı - libofx is a library designed to allow applications to very easily support OFX command responses, usually provided by financial institutions. - libofx, uygulamaların finansal kuruluşlar tarafından sağlanan OFX yapılarını desteklemesini sağlayan bir kitaplıktır. - https://sourceforge.net/projects/libofx/files/libofx/libofx-0.9.13.tar.gz + office + MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security. + MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security. + MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir. + MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir. + https://github.com/dvorka/mindforger/releases/download/1.48.0/mindforger_1.48.2.tgz - opensp-devel + ccache + zlib-devel + qt5-base-devel + qt5-webkit-devel + icon-theme-hicolor - - libofx-0.9.5-gcc47.patch - - office/misc/libofx/pspec.xml + office/mindforger/pspec.xml - libofx + mindforger - opensp + qt5-base + qt5-webkit + zlib libgcc /usr/bin /usr/lib + /usr/share + /usr/share/icons + /usr/share/applications + /usr/share/man /usr/share/doc - /usr/share/libofx - /usr/share/man/man1 - - - - libofx-devel - Development files for libofx - libofx için geliştirme dosyaları - - libofx - - - /usr/include - /usr/lib/pkgconfig - - - - libofx-docs - Documentation for libofx - libofx için belgelendirme - - /usr/share/doc/libofx/html + + 2019-02-25 + 1.48.2 + remove static discount libs. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-01-28 + 1.48.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + librevenge + http://dev-www.libreoffice.org/src/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.0 + library + office.misc + A base library for writing document import filters + librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations. + http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 + + boost-devel + cppunit-devel + zlib-devel + doxygen + libtool + + office/misc/librevenge/pspec.xml + + + librevenge + + zlib + libgcc + + + /usr/share + /usr/lib + + + + librevenge-devel + Development files for librevenge + librevenge için geliştirme dosyaları + + librevenge + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-21 + 0.0.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-10 + 0.0.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-20 + 0.0.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 0.0.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + - 2018-08-09 - 0.9.13 - Rebuild with new toolchain + 2018-03-22 + 0.0.4 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2017-04-04 - 0.9.10 - Rebuild with new toolchain + 2017-02-20 + 0.0.4 + Release Bump Pisi Linux Community admin@pisilinux.org - 2016-06-09 - 0.9.10 + 2016-06-11 + 0.0.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-02-06 - 0.9.10 + 2015-01-06 + 0.0.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + cauchy + https://bitbucket.org/cyrille/cauchy + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + app:gui + library + office.misc + A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab + Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık + A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab + Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık + https://sourceforge.net/projects/pisilinux/files/source/cauchy-0.9.0.tar.bz2 + + cmake + eigen3 + + office/misc/cauchy/pspec.xml + + + cauchy + + libgcc + + + /usr/lib/libCauchy.so* + /usr/share/doc + /usr/bin + /usr/lib/libm2mml.so* + /usr/lib/libCauchyXUnit.so* + + + + cauchy-devel + Development files for cauchy + cauchy için geliştirme başlıkları + + cauchy + + + /usr/include + + + + + 2021-11-30 + 0.9.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + chmlib + http://www.jedrea.com/chmlib/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + office.misc + A library for dealing with Microsoft ITSS/CHM format files + Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane + Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm. + Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files. + Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır. + Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm. + http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2 + office/misc/chmlib/pspec.xml + + + chmlib + + /usr/lib + /usr/bin + /usr/share/doc + + + + chmlib-devel + Development files for chmlib + chmlib için geliştirme dosyaları + + chmlib + + + /usr/include + + + + + 2018-08-07 + 0.40 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-10 + 0.40 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.40 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-20 + 0.40 First release Stefan Gronewold(groni) groni@pisilinux.org @@ -290930,172 +254940,122 @@ from a wide variety of machine architectures. - goffice - https://git.gnome.org/browse/goffice + coolreader-qt + https://github.com/buggins/coolreader - PisiLinux Community - admins@pisilinux.org + Pisi Linux Community + admin@pisilinux.org - GPLv3 - library + GPL-2 + app:gui office.misc - A GLib/GTK+ set of document-centric objects and charting library - A GLib/GTK+ set of document-centric objects and charting library - A GLib/GTK+ set of document-centric objects and charting library - A GLib/GTK+ set of document-centric objects and charting library - http://ftp.gnome.org/pub/gnome/sources/goffice/0.10/goffice-0.10.52.tar.xz + CoolReader 3 - cross platform open source e-book reader. + CoolReader 3 - cross platform open source e-book reader. + https://github.com/buggins/coolreader/archive/refs/tags/cr3.2.59.tar.gz - intltool - gtk-doc - atk-devel - gtk3-devel - python-six - cairo-devel - glib2-devel - pango-devel - libgsf-devel - librsvg-devel - libxml2-devel - libxslt-devel - gdk-pixbuf-devel - libspectre-devel - gobject-introspection-devel + cmake + zlib-devel + zstd-devel + libxcb-devel + libpng-devel + qt5-linguist + fribidi-devel + qt5-base-devel + freetype-devel + harfbuzz-devel + utf8proc-devel + fontconfig-devel + libunibreak-devel + libjpeg-turbo-devel - office/misc/goffice/pspec.xml + office/misc/coolreader-qt/pspec.xml - goffice + coolreader-qt - atk - gtk3 - cairo - glib2 - pango - libgsf - librsvg - libxml2 - libxslt + zlib + zstd + libgcc + libpng + fribidi + freetype harfbuzz - gdk-pixbuf - libspectre + utf8proc + qt5-base + fontconfig + libunibreak + libjpeg-turbo - /usr/lib + /usr/bin /usr/share - /usr/share/goffice - /usr/share/locale - /usr/share/doc - - - - goffice-devel - Development files for goffice - - goffice - gtk3-devel - cairo-devel - glib2-devel - pango-devel - libgsf-devel - librsvg-devel - libxml2-devel - libxslt-devel - libspectre-devel - - - /usr/include - /usr/lib/pkgconfig - - - - goffice-docs - Development files for goffice - - goffice - - - /usr/share/gtk-doc + /usr/share/cr3 - - 2022-04-19 - 0.10.52 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-21 - 0.10.51 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-23 - 0.10.50 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-27 - 0.10.49 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-12-01 - 0.10.44 - First release - PisiLinux Community - admins@pisilinux.org + 2021-12-21 + 3.2.59 + First build + fury + uglyside@yandex.ru - gsoap - http://www.cs.fsu.edu/~engelen/soap.html + djvu + http://djvu.sourceforge.net - Osman Erkan - osman.erkan@pisilinux.org + PisiLinux Community + admins@pisilinux.org GPLv2 + app:gui + library office.misc - Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++ - The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. - https://sourceforge.net/projects/gsoap2/files/gsoap_2.8.116.zip/download + DjVu viewers, encoders and utilities + DjVu görüntüleyicileri, sıkıştırıcı ve ekipmanları + DjVu is a web-centric format and software platform to distribute documents and images. + Belgeleri, kitapları bilinen formatlardan çok daha yüksek sıkıştırma oranlarında sıkıştıran DjVu formatı ekipmanları. + mirrors://sourceforge/djvu/djvulibre-3.5.27.tar.gz - zlib-devel - openssl-devel + libjpeg-turbo-devel + tiff-devel + xdg-utils + libXt-devel - office/misc/gsoap/pspec.xml + + no-pthread.diff + djvulibre-3.5.22-cdefs.patch + + office/misc/djvu/pspec.xml - gsoap + djvu - zlib - openssl - libgcc + shared-mime-info + libjpeg-turbo + tiff - /usr/lib - /usr/share/doc /usr/bin - /usr/share/gsoap + /usr/lib + /usr/share/icons + /usr/share/applications + /usr/share/djvu + /usr/share/mime + /opt/netscape + /usr/share/doc + /usr/share/man - gsoap-devel - Development files for gsoap - gsoap için geliştirme dosyaları + djvu-devel + Development files for djvu + djvu için geliştirme dosyaları - gsoap - zlib-devel - openssl-devel + djvu /usr/include @@ -291104,67 +255064,32 @@ from a wide variety of machine architectures. - 2021-07-22 - 2.8.116 - Version bump. + 2018-08-08 + 3.5.27 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2020-12-14 - 2.8.109 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-08 - 2.8.103 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.8.97 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-09 - 2.8.69 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 2.8.61 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 2.8.44 - Version Bump - Pisi Linux Community - admin@pisilinux.org + 2017-02-28 + 3.5.27 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org 2016-06-09 - 2.8.22 + 3.5.27 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-12 - 2.8.22 + 2015-11-02 + 3.5.27 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Stefan Gronewold(groni) + groni@pisilinux.org @@ -291308,382 +255233,172 @@ from a wide variety of machine architectures. - zekr - http://sourceforge.net/projects/zekr - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:gui - office.misc - Quran study software - Kur'an-ı Kerim eğitim uygulaması - Zekr is an open source Quran study software that is designed to ease access to the content of the Quran. It provides translations, recitation, search and some other features. - Zekr, Kur'an-ı Kerim'in içeriğine erişimi kolaylaştıran ve çeviri, ezberleme gibi çeşitli özellikler sunan bir çalışma uygulamasıdır. - zekr - http://sourceforge.net/projects/zekr/files/Zekr/zekr-1.1.0/zekr-1.1.0-linux_64.tar.gz - - use-webkitgtk.patch - - office/misc/zekr/pspec.xml - - - zekr - - jre8-openjdk - webkit-gtk2 - gsettings-desktop-schemas - - - /usr/share - /usr/share/doc - /usr/bin - /usr/share/java - - - zekr.png - zekr.desktop - - - - zekr-trans-de - Quran translation in German - Almanca Kur'an-ı Kerim çevirisi - - zekr - - - /usr/share/java/zekr/res/text/trans/de.* - - - translations/de.bubenheim.trans.zip - - - - zekr-trans-es - Quran translation in Spanish - İspanyolca Kur'an-ı Kerim çevirisi - - zekr - - - /usr/share/java/zekr/res/text/trans/es.* - - - translations/es.asad.trans.zip - - - - zekr-trans-fr - Quran translation in French - Fransızca Kur'an-ı Kerim çevirisi - - zekr - - - /usr/share/java/zekr/res/text/trans/fr.* - - - translations/fr.hamidullah.trans.zip - - - - zekr-trans-it - Quran translation in Italian - İtalyanca Kur'an-ı Kerim çevirisi - - zekr - - - /usr/share/java/zekr/res/text/trans/it.* - - - translations/it.piccardo.trans.zip - - - - zekr-trans-tr - Quran translation in Turkish - Türkçe Kur'an-ı Kerim çevirisi - - zekr - - - /usr/share/java/zekr/res/text/trans/tr.* - - - translations/tr.diyanet.trans.zip - translations/tr.yazir.trans.zip - - - - - 2021-03-10 - 1.1.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-12-03 - 1.1.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - scribus - http://www.scribus.net/ + dos2unix + http://www.xs4all.nl/~waterlan/dos2unix.html PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui + freedist + app:console office.misc - Desktop Publishing (DTP) and Layout program - Masaüstü yayıncılık uygulaması - Scribus is an opensource desktop publishing application with features like CMYK colorspace and PDF output. - Scribus, açık kaynak kodlu bir DTP (masaüstü yayıncılık) programıdır. Renk ayrımından PDF dönüşümlerine, PDF form elementleri yaratmadan Preflight Check gibi işlemlere kadar, profesyonel bir DTP paketinde bulabileceğiniz her fonksiyona sahiptir. - scribusicon - http://sourceforge.net/projects/scribus/files/scribus-devel/1.5.6.1/scribus-1.5.6.1.tar.xz - - cmake - cups-devel - desktop-file-utils - lcms2-devel - libmspub-devel - libart_lgpl-devel - libjpeg-turbo-devel - libpng-devel - tiff-devel - libxml2-devel - openssl-devel - python-devel - python3-devel - ghostscript-devel - gnutls-devel - poppler-devel - qt5-base-devel - qt5-webkit-devel - qt5-location-devel - qt5-linguist - zlib-devel - freetype-devel - gnutls-devel - cairo-devel - hunspell-devel - boost-devel - libwpg-devel - podofo-devel - libvisio-devel - libcdr-devel - poppler-qt5-devel - poppler-cpp-devel - GraphicsMagick-devel - libpagemaker-devel - harfbuzz-devel - - - scribus-1.5.3-fpic.patch - PisiLinux-correctly_link_to_libxml2.patch - poppler-21.3.0.patch - - office/misc/scribus/pspec.xml + Convert DOS and MAC text files to UNIX format + DOS ve MAC metin dosyalarını UNIX biçimine dönüştürme uygulaması + dos2unix can convert DOS and MAC files to UNIX format, processing character encoding and line ending characters. + dos2unix DOS ve MAC düzmetin dosyalarını karakter kodlamalarını ve satırsonu karakterlerini değiştirerek UNIX biçimine çevirir. + http://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.4.3.tar.gz + office/misc/dos2unix/pspec.xml - scribus - - icu4c - cups - tiff - zlib - cairo - lcms2 - libgcc - podofo - python - libxml2 - poppler - libmspub - freetype - hunspell - qt5-base - fontconfig - librevenge - qt5-webkit - libjpeg-turbo - qt5-declarative - libpagemaker - libcdr - GraphicsMagick - libvisio - libmspub - harfbuzz - + dos2unix /usr/bin - /usr/lib - /usr/share - - - - scribus-docs - Documentation files for scribus - scribus için belgelendirme dosyaları - - /usr/share/doc/scribus + /usr/share/man + /usr/share/doc - - 2021-03-12 - 1.5.6.1 - Version bump + + 2022-06-06 + 7.4.3 + Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-08-09 - 1.5.4 - Rebuild. - Mustafa Cinasal - admin@pisilinux.org - - - 2018-03-22 - 1.5.3 - Rebuild. - Mustafa Cinasal - admin@pisilinux.org - - 2018-02-03 - 1.5.3 - Rebuild. + 2018-08-08 + 7.4.0 + Rebuild New T. Mustafa Cinasal - admin@pisilinux.org + muscnsl@gmail.com - 2017-08-23 - 1.5.3 - Version bump - Mustafa Cinasal + 2018-02-11 + 7.4.0 + Version Bump + PisiLinux Community admin@pisilinux.org - 2017-04-17 - 1.5.2 + 2017-04-04 + 7.3 Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org - 2016-06-10 - 1.5.2 + 2016-06-09 + 7.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-18 - 1.5.2 + 2016-03-14 + 7.3 First release - Stefan Gronewold + Stefan Gronewold(groni) groni@pisilinux.org - enca - http://cihar.com/software/enca + doxygen + http://www.doxygen.org/ PisiLinux Community admins@pisilinux.org GPLv2 app:console - library office.misc - Charset analyzer - Karakter seti yorumlayıcı - enca is a character set analyzer that can detect and convert character set of text files. - enca, metin dosyalarının karakter setini tanımlama ve dönüştürme aracıdır. - http://dl.cihar.com/enca/enca-1.19.tar.xz + Documentation and analysis tool for C++, C, Java, IDL, PHP and C# + C, C++, Java, IDL, PHP ve C# için döküman ve analiz aracı + Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors) and to some extent PHP, C#, and D. + Doxygen C++, C, Java, Objective-C, Python, IDL (Corba ve Microsoft ile ilgili diğerleri ) ve PHP, C# ve D'yi de kapsayan diller için bir dokümantasyon sistemidir. + Doxygen es un sistema de documentación para C++, C, Java, Objective-C, Python, IDL (versiones Corba y Microsoft) y hasta cierto punto también PHP, C#, y D. + http://doxygen.nl/files/doxygen-1.8.20.src.tar.gz - recode-devel - gettext-devel - intltool - gtk-doc + git + cmake - office/misc/enca/pspec.xml + office/misc/doxygen/pspec.xml - enca + doxygen - recode + libgcc - /usr/bin - /usr/lib - /usr/libexec/enca - /usr/share/doc/enca - /usr/share/man - - - - enca-devel - Development files for enca - enca için geliştirme dosyaları - - enca - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc + /usr/share/doc + /usr/bin/doxygen + /usr/share/man/man1/doxygen.1 - - 2020-03-17 - 1.19 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2018-08-06 - 1.19 - Rebuild. + + 2020-12-17 + 1.8.20 + Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2020-04-23 + 1.8.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.8.17 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-09-18 + 1.8.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-29 + 1.8.14 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 1.8.14 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + - 2017-02-28 - 1.19 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2017-04-04 + 1.8.13 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org 2016-06-09 - 1.16 + 1.8.11 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-01 - 1.16 + 2016-03-24 + 1.8.11 First release - Stefan Gronewold - groni@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com @@ -291787,127 +255502,656 @@ from a wide variety of machine architectures. - qpdfview - https://launchpad.net/qpdfview + enca + http://cihar.com/software/enca - Stefan Gronewold (groni) - groni@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GNU GPL v2 + GPLv2 + app:console + library office.misc - qpdfview is a tabbed document viewer - It uses Poppler for PDF support, libspectre for PS support, DjVuLibre for DjVu support, CUPS for printing support and the Qt toolkit for its interface - https://launchpad.net/qpdfview/trunk/0.4.18/+download/qpdfview-0.4.18.tar.gz + Charset analyzer + Karakter seti yorumlayıcı + enca is a character set analyzer that can detect and convert character set of text files. + enca, metin dosyalarının karakter setini tanımlama ve dönüştürme aracıdır. + http://dl.cihar.com/enca/enca-1.19.tar.xz - djvu-devel - cups-devel - poppler-qt5-devel - qt5-base-devel - qt5-xmlpatterns-devel - libspectre-devel - zlib-devel - pkgconfig - qt5-svg-devel + recode-devel + gettext-devel + intltool + gtk-doc - office/misc/qpdfview/pspec.xml + office/misc/enca/pspec.xml - qpdfview - qpdfview is a tabbed document viewer. + enca - qt5-base - cups - djvu - libgcc - zlib - libspectre - poppler-qt5 + recode /usr/bin - /usr/share /usr/lib - /usr/share/doc + /usr/libexec/enca + /usr/share/doc/enca + /usr/share/man + + + + enca-devel + Development files for enca + enca için geliştirme dosyaları + + enca + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gtk-doc - 2019-11-20 - 0.4.18 - Version bump. + 2020-03-17 + 1.19 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-06 + 1.19 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2018-08-09 - 0.4.16 - Release Bump - Rebuild with new toolchain - admin@pisilinux.org - - 2017-03-30 - 0.4.16 - Release Bump - Rebuild with new toolchain - admin@pisilinux.org + 2017-02-28 + 1.19 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org 2016-06-09 - 0.4.14 + 1.16 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-04 - 0.4.14 + 2016-01-01 + 1.16 First release - Stefan Gronewold (groni) + Stefan Gronewold groni@pisilinux.org - librevenge - http://dev-www.libreoffice.org/src/ + evince + http://projects.gnome.org/evince/ + + Pisi Gnu/Linux Community + admin@pisilinux.org + + GPLv2 + app:gui + desktop.gnome.addons + A document viewer, built without GConf and GNOME keyring support + Hafif ve özgür bir PDF görüntüleyici + Evince is a document viewer for multiple document formats. The goal of evince is to replace the multiple document viewers that exist on the GNOME Desktop with a single simple application. + evince değişik tipte belgeleri görüntülemek için kullanılan bir araçtır. Evince'in amacı, GNOME Masaüstü ortamı için basit bir belge görüntüleyici olarak diğer belge görüntüleyicilerinin yerini almaktır. + https://download.gnome.org/sources/evince/42/evince-42.3.tar.xz + + meson + itstool + gtk-doc + atk-devel + gi-docgen + t1lib-devel + libgxps-devel + gtk3-devel + tiff-devel + cairo-devel + pango-devel + libSM-devel + libsecret-devel + libspectre-devel + djvu-devel + libICE-devel + gnome-desktop-devel + gdk-pixbuf-devel + poppler-glib-devel + intltool + libhandy-devel + libxml2-devel + python3-devel + gobject-introspection-devel + gspell-devel + nautilus-devel + gstreamer-devel + gst-plugins-base-devel + gsettings-desktop-schemas-devel + + office/misc/evince/pspec.xml + + + evince + + atk + zlib + glib2 + libgcc + djvu + gtk3 + tiff + cairo + t1lib + pango + libSM + libxml2 + libarchive + libICE + libgxps + libhandy + libsecret + gdk-pixbuf + libspectre + poppler-glib + gspell + nautilus + gstreamer + gnome-desktop + gst-plugins-base + + + /usr/bin + /usr/lib + /usr/lib/evince + /usr/share/applications + /usr/share/dbus-1 + /usr/share/evince + /usr/share/evince/icons + /usr/share/GConf + /usr/share/glib-2.0 + /usr/share/doc + /usr/share/help + /usr/share/icons + /usr/share/gir-1.0 + /usr/libexec/evinced + /usr/share/locale + /usr/share/man + /usr/share + + + + evince-devel + Development files for evince + evince için geliştirme dosyaları + + evince + glib2-devel + gtk3-devel + + + /usr/include + /usr/lib/pkgconfig + + + + evince-docs + Documentation files for evince + evince için belgelendirme dosyaları + + /usr/share/doc/libevdocument/ + /usr/share/doc/libevview/ + + + + + 2022-05-23 + 42.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-21 + 41.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-10 + 41.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 40.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-05 + 40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-23 + 3.38.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 3.26.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 3.26.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-04 + 3.20.1 + Rebuild with new toolchain + Pisi Gnu/Linux Community + admin@pisilinux.org + + + 2016-09-07 + 3.20.1 + First Release + Pisi Gnu/Linux Community + admin@pisilinux.org + + + + + + goffice + https://git.gnome.org/browse/goffice PisiLinux Community admins@pisilinux.org - MPL-1.0 + GPLv3 library office.misc - A base library for writing document import filters - librevenge is a base library for writing document import filters. It has interfaces for text documents, vector graphics, spreadsheets and presentations. - http://dev-www.libreoffice.org/src/librevenge-0.0.4.tar.bz2 + A GLib/GTK+ set of document-centric objects and charting library + A GLib/GTK+ set of document-centric objects and charting library + A GLib/GTK+ set of document-centric objects and charting library + A GLib/GTK+ set of document-centric objects and charting library + http://ftp.gnome.org/pub/gnome/sources/goffice/0.10/goffice-0.10.52.tar.xz - boost-devel - cppunit-devel - zlib-devel - doxygen - libtool + intltool + gtk-doc + atk-devel + gtk3-devel + python-six + cairo-devel + glib2-devel + pango-devel + libgsf-devel + librsvg-devel + libxml2-devel + libxslt-devel + gdk-pixbuf-devel + libspectre-devel + gobject-introspection-devel - office/misc/librevenge/pspec.xml + office/misc/goffice/pspec.xml - librevenge + goffice - zlib - libgcc + atk + gtk3 + cairo + glib2 + pango + libgsf + librsvg + libxml2 + libxslt + harfbuzz + gdk-pixbuf + libspectre - /usr/share /usr/lib + /usr/share + /usr/share/goffice + /usr/share/locale + /usr/share/doc - librevenge-devel - Development files for librevenge - librevenge için geliştirme dosyaları + goffice-devel + Development files for goffice - librevenge + goffice + gtk3-devel + cairo-devel + glib2-devel + pango-devel + libgsf-devel + librsvg-devel + libxml2-devel + libxslt-devel + libspectre-devel + + + /usr/include + /usr/lib/pkgconfig + + + + goffice-docs + Development files for goffice + + goffice + + + /usr/share/gtk-doc + + + + + 2022-04-19 + 0.10.52 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-21 + 0.10.51 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 0.10.50 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 0.10.49 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-01 + 0.10.44 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + graphite2 + https://scripts.sil.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:gui + office.misc + SILGraphite: rendering non-roman scripts + Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. + graphite2 + mirrors://sourceforge/silgraphite/graphite2-1.3.14.tgz + + cmake + freetype-devel + + office/misc/graphite2/pspec.xml + + + graphite2 + + /usr/bin + /usr/share/doc + /usr/share/graphite2 + /usr/lib/ + + + + graphite2-devel + graphite2 için geliştirme dosyaları + graphite2 için geliştirme dosyaları + + graphite2 + + + /usr/include + /usr/lib/pkgconfig/ + + + + + 2021-01-23 + 1.3.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.3.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-26 + 1.3.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 1.3.10 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.3.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-17 + 1.2.4 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + gsoap + http://www.cs.fsu.edu/~engelen/soap.html + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + office.misc + Offers an XML language binding to ease the development of SOAP/XML Web services in C and C/C++ + The gSOAP toolkit is an extensive suite of portable C and C++ software to develop XML Web services with powerful type-safe XML data bindings. + https://sourceforge.net/projects/gsoap2/files/gsoap_2.8.116.zip/download + + zlib-devel + openssl-devel + + office/misc/gsoap/pspec.xml + + + gsoap + + zlib + openssl + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/gsoap + + + + gsoap-devel + Development files for gsoap + gsoap için geliştirme dosyaları + + gsoap + zlib-devel + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-07-22 + 2.8.116 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-14 + 2.8.109 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-08 + 2.8.103 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.8.97 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 2.8.69 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 2.8.61 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-19 + 2.8.44 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.8.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-12 + 2.8.22 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + iso-codes + https://salsa.debian.org/iso-codes-team/iso-codes + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + office.misc + International country codes + Uluslararası ülke kodları + iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards. + iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar. + http://ftp.debian.org/debian/pool/main/i/iso-codes/iso-codes_4.10.0.orig.tar.xz + + python3-devel + + office/misc/iso-codes/pspec.xml + + + iso-codes + + /usr/share/locale + /usr/share/doc + /usr/share/xml + /usr/share/iso-codes + + + + iso-codes-devel + Development files for iso-codes + + iso-codes /usr/include @@ -291915,58 +256159,1013 @@ from a wide variety of machine architectures. + + 2022-06-03 + 4.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-21 + 4.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + 2021-06-01 + 4.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 4.4 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-01-15 + 3.79 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 3.77 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-11 + 3.77 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-19 + 3.74 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 3.53 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-21 + 3.53 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + libetonyek + http://www.freedesktop.org/wiki/Software/libetonyek/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.0 + app:console + office.misc + A library for import of Apple Keynote presentations + Apple keynote sunumları için bir kütüphane + Libetonyek is library providing ability to interpret and import Apple Keynote presentations into various applications. You can find it being used in libreoffice. + Libetonyek çeşitli uygulamalar içine Apple Keynote sunumları yorumlamak ve eklemek için bir kütüphane . Bunu LibreOffice içerisinde zaten kullanılıyor olabilirsiniz. + https://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.10.tar.xz + + doxygen + zlib-devel + libxml2-devel + boost-devel + cppunit-devel + librevenge-devel + glm + gperf + liblangtag-devel + mdds-devel + + office/misc/libetonyek/pspec.xml + + + libetonyek + + zlib + libgcc + libxml2 + liblangtag + librevenge + + + /usr/bin + /usr/lib + /usr/share + + + + libetonyek-devel + Development files for libetonyek + libetonyek için geliştirme dosyaları + + zlib-devel + libxml2-devel + liblangtag-devel + librevenge-devel + libetonyek + + + /usr/share/doc + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-05 + 0.1.10 + Ver bump. + Pisi Linux Community + admin@pisilinux.org + + + 2021-10-21 + 0.1.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-10 + 0.1.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-22 + 0.1.9 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 0.1.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 0.1.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 0.1.7 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-14 + 0.1.6 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + + + + libgxps + https://live.gnome.org/libgxps + + Pisi Gnu/Linux Community + admin@pisilinux.org + + GPLv2 + library + office.misc + XPS Documents library + libgxps işleme ve render XPS belgeleri için bir gobject tabanlı bir kütüphanedir. + libgxps is a GObject based library for handling and rendering XPS documents. + XPS dosyaları genellikle Windows ortamlarında "Microsoft XPS Document Writer" kullanılarak oluşturulur. Şimdi açık bir standart belge biçimi olarak standardize edilmiştir. + http://ftp.gnome.org/pub/gnome/sources/libgxps/0.3/libgxps-0.3.2.tar.xz + + cairo-devel + meson + gtk-doc + gtk3-devel + python-six + lcms2-devel + libsecret-devel + libarchive-devel + libjpeg-turbo-devel + tiff-devel + glib2-devel + gobject-introspection-devel + + office/misc/libgxps/pspec.xml + + + libgxps + + cairo + glib2 + lcms2 + libpng + freetype + libarchive + libjpeg-turbo + tiff + + + /usr/bin + /usr/lib + /usr/lib/girepository-1.0 + /usr/share/gir-1.0 + /usr/share/doc + + + + libgxps-devel + Development files for libgxps + libgxps için geliştirme dosyaları + + cairo-devel + glib2-devel + libarchive-devel + libgxps + + + /usr/include + /usr/lib/pkgconfig + + + + libgxps-doc + Documentation files for libgxps + libgxps için belgelendirme dosyaları + + /usr/share/gtk-doc/html + + + + + 2021-05-27 + 0.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-08 + 0.3.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-11 + 0.3.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-04 + 0.2.5 + Rebuild with new toolchain + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-09-28 + 0.2.2 + Release bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-07-26 + 0.2.2 + First Release + Pisi Gnu/Linux Community + admin@pisilinux.org + + + + + + libodfgen + http://sf.net/p/libwpd/libodfgen/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + office.misc + Library for generating documents + Döküman oluşturmak için bir kütüphane. + Library for generating documents in Open Document Format + ODF formatında, döküman oluşturmak için birkütüphane. + https://dev-www.libreoffice.org/src/libodfgen-0.1.8.tar.xz + + boost-devel + libwpd-devel + libwpg-devel + libetonyek-devel + librevenge-devel + libxml2-devel + zlib-devel + gperf + + office/misc/libodfgen/pspec.xml + + + libodfgen + + libgcc + librevenge + + + /usr/lib + + + + libodfgen-devel + Development files for libodfgen + + librevenge-devel + libetonyek-devel + libodfgen + + + /usr/share/doc + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-21 + 0.1.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-10 + 0.1.8 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-22 + 0.1.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-09 + 0.1.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 0.1.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-04 + 0.1.6 + release bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-01-01 + 0.1.6 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libofx + http://libofx.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + library + office.misc + A library for supporting Open Financial Exchange (OFX) format + Açık Finansal Takas (OXF) dosya biçimi kitaplığı + libofx is a library designed to allow applications to very easily support OFX command responses, usually provided by financial institutions. + libofx, uygulamaların finansal kuruluşlar tarafından sağlanan OFX yapılarını desteklemesini sağlayan bir kitaplıktır. + https://sourceforge.net/projects/libofx/files/libofx/libofx-0.9.13.tar.gz + + opensp-devel + + + libofx-0.9.5-gcc47.patch + + office/misc/libofx/pspec.xml + + + libofx + + opensp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/libofx + /usr/share/man/man1 + + + + libofx-devel + Development files for libofx + libofx için geliştirme dosyaları + + libofx + + + /usr/include + /usr/lib/pkgconfig + + + + libofx-docs + Documentation for libofx + libofx için belgelendirme + + /usr/share/doc/libofx/html + + + + + 2018-08-09 + 0.9.13 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-04 + 0.9.10 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.9.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-06 + 0.9.10 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libpagemaker + https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + MPL2 + library + office.misc + a library that parses the file format of Aldus/Adobe PageMaker documents + a library that parses the file format of Aldus/Adobe PageMaker documents + libpagemaker + http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.4.tar.gz + + boost-devel + doxygen + help2man + librevenge-devel + + office/misc/libpagemaker/pspec.xml + + + libpagemaker + + libgcc + librevenge + + + /usr/bin + /usr/share + /usr/lib/libpagemaker-* + /usr/share/doc + + + + libpagemaker-devel + + librevenge-devel + libpagemaker + + + /usr/include + /usr/lib/pkgconfig + + + + 2021-10-21 0.0.4 Rebuild. Pisi Linux Community admin@pisilinux.org - + 2021-03-10 0.0.4 Rebuild. Pisi Linux Community admin@pisilinux.org + + 2020-02-22 + 0.0.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + - 2020-02-20 + 2018-08-09 0.0.4 Rebuild. Pisi Linux Community admin@pisilinux.org - 2018-09-16 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - 2018-03-22 0.0.4 Rebuild. Pisi Linux Community admin@pisilinux.org - - 2017-02-20 + + 2018-02-11 0.0.4 - Release Bump + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-04 + 0.0.2 + Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org - 2016-06-11 - 0.0.4 + 2016-06-09 + 0.0.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-06 - 0.0.1 + 2016-01-24 + 0.0.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libvc + https://github.com/VcDevel/Vc + + Alihan Öztürk + alihan@pisilinux.org + + LGPLv3 + library + office.misc + A library to ease explicit vectorization of C++ code. + C + + ile yazılmış vektörizasyon kolaylaştırmak için bir kütüphane. + Vc is a free software library to ease explicit vectorization of C++ code. It has an intuitive API and provides portability between different compilers and compiler versions as well as portability between different vector instruction sets. + Vc, C + + ile yazılmış vektörizasyon kolaylaştırmak için ücretsiz bir yazılım kütüphanesi. Bu sezgisel bir API ve farklı derleyiciler ve derleyici sürümleri arasında taşınabilirliği yanı sıra farklı vektör komut setleri arasında taşınabilirlik sağlar. + https://github.com/VcDevel/Vc/releases/download/1.3.3/Vc-1.3.3.tar.gz + + cmake + + office/misc/libvc/pspec.xml + + + libvc + + /usr/lib/libVc.a + /usr/share/doc + + + + libvc-devel + Development files for libvc + libvc için geliştirme dosyaları + + libvc + + + /usr/include + /usr/lib/cmake + + + + + 2018-08-09 + 1.3.3 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 1.3.3 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 1.3.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-12-31 + 1.3.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libvisio + http://www.ohloh.net/p/libvisio + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + office.misc + A C++ library for parsing binary Microsoft Visio documents + A C++ library for parsing binary Microsoft Visio documents. + A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. + A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. + https://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.7.tar.xz + + icu4c-devel + librevenge-devel + zlib-devel + libxml2-devel + boost-devel + gperf + cppunit-devel + + office/misc/libvisio/pspec.xml + + + libvisio + + cppunit + icu4c + librevenge + libgcc + libxml2 + + + /usr/lib + /usr/bin + /usr/share/doc/libvisio + + + + libvisio-devel + + icu4c-devel + librevenge-devel + zlib-devel + libxml2-devel + libvisio + + + /usr/include/ + /usr/lib/pkgconfig + + + + + 2021-10-21 + 0.1.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-10 + 0.1.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-22 + 0.1.7 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-09 + 0.1.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 0.1.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-31 + 0.1.6 + Version Bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-16 + 0.1.5 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.1.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-03 + 0.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mdbtools + https://github.com/brianb/mdbtools + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + app:console + office.misc + MDB Tools is a suite of programs for accessing data stored in Microsoft Access databases + Microsoft Access veritabanı dosyalarında tutulan verilere erişmek için kullanılan araç ve kitaplıklar + mdbtools contains set of libraries and utilities for reading Microsoft Access database (MDB) files. + mdbtools Microsoft Access veritabanı dosyalarını (MDB) okumak için gereken araçları ve kütüphaneleri içermektedir. + https://github.com/brianb/mdbtools/archive/0.7.1.tar.gz + + unixODBC-devel + glib2-devel + readline-devel + + office/misc/mdbtools/pspec.xml + + + mdbtools + + unixODBC + glib2 + readline + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + mdbtools-gui + + + + mdbtools-devel + Development files for mdbtools + mdbtools için geliştirme dosyaları + + mdbtools + + + /usr/include + /usr/lib/pkgconfig + + + + + 2018-08-09 + 0.7.1 + Release Bump + Rebuild with new toolchain + admin@pisilinux.org + + + 2017-03-30 + 0.7.1 + Release Bump + Rebuild with new toolchain + admin@pisilinux.org + + + 2016-06-09 + 0.7.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-20 + 0.7.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mdds + http://sourceforge.net/projects/hunspell + + PisiLinux Community + admins@pisilinux.org + + MIT + app:gui + office.misc + Multi-dimensional data index algorithm + A collection of multi-dimensional data structure and indexing algorithm. + mdds + https://dev-www.libreoffice.org/src/mdds-2.0.1.tar.bz2 + + boost-devel + + office/misc/mdds/pspec.xml + + + mdds + + boost + + + /usr/share/doc + /usr/share/pkgconfig + + + + mdds-devel + mdds için geliştirme dosyaları + mdds için geliştirme dosyaları + + mdds + + + /usr/include + + + + + 2022-05-05 + 2.0.1 + Ver bump + İdris Kalp + idriskalp@gmail.com + + + 2021-10-21 + 1.7.0 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2021-03-10 + 1.7.0 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-02-21 + 1.6.0 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2019-02-12 + 1.4.3 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-08-09 + 1.3.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 1.3.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-11 + 1.3.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 1.2.2 + Version Bump Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-01-01 + 1.1.0 First release PisiLinux Community admins@pisilinux.org @@ -292131,462 +257330,105 @@ from a wide variety of machine architectures. - tellico - http://tellico-project.org + ocrad + https://www.gnu.org/software/ocrad/ - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - office.misc - A collection manager for KDE - KDE için koleksiyon yönetim uygulaması - Tellico is a KDE application for organizing your collections. It provides default templates for books, bibliographies, videos, music, video games, coins, stamps, trading cards, comic books, and wines. - Tellico, koleksiyonlarınızı düzenlemek için kullanabileceğiniz bir KDE uygulamasıdır. Öntanımlı olarak; kitaplar, biyografiler, videolar, müzikler, oyunlar gibi bir çok şemayı destekler. - tellico - http://tellico-project.org/files/tellico-3.3.tar.xz - - libkcddb - khtml-devel - exempi-devel - taglib-devel - libxslt-devel - libxml2-devel - libcdio-devel - libksane-devel - kdoctools-devel - knewstuff-devel - kitemmodels-devel - poppler-qt5-devel - extra-cmake-modules - kfilemetadata-devel - libkcompactdisc-devel - - office/misc/tellico/pspec.xml - - - tellico - - kio - khtml - ki18n - solid - exempi - kcrash - kparts - libgcc - sonnet - taglib - kcodecs - kconfig - kwallet - kxmlgui - libcdio - libxml2 - libxslt - karchive - kservice - libkcddb - libksane - qt5-base - knewstuff - kguiaddons - kcompletion - kcoreaddons - kiconthemes - kitemmodels - kjobwidgets - poppler-qt5 - ktextwidgets - kfilemetadata - kwindowsystem - kconfigwidgets - kwidgetsaddons - - - /usr/bin - /usr/share/applications - /etc/xdg - /usr/share/doc - /usr/share/kxmlgui5 - /usr/share/icons - /usr/share/tellico - /usr/share/locale - /usr/share/kconf_update - /usr/share/config.kcfg - /usr/share/metainfo - /usr/share/mime - - - - - 2020-04-25 - 3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-27 - 3.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-05 - 3.1.2 - First release. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - tesseract - https://github.com/tesseract-ocr/tesseract - - PisiLinux Community - admins@pisilinux.org - - APACHE - app:console - office.misc - Tesseract OCR Engine - Tesseract OCR Motoru - This package contains an OCR engine - libtesseract and a command line program - tesseract. Tesseract 4 adds a new neural net (LSTM) based OCR engine which is focused on line recognition, but also still supports the legacy Tesseract OCR engine of Tess - tesseract, en kararlı açık kaynaklı OCR (Optik Karakter Tanıma) motorlarından biridir. Uygulama girdi olarak aldığı çeşitli resim biçimlerini analiz ederek metin biçiminde çıktı üretir. - https://github.com/tesseract-ocr/tesseract/archive/4.1.1.tar.gz - - leptonica-devel - cairo-devel - icu4c-devel - pango-devel - tiff-devel - libgomp - libxslt-devel - asciidoc - - office/misc/tesseract/pspec.xml - - - tesseract - Tesseract OCR Engine - - leptonica - libgomp - tiff - - - /usr/lib/libtesseract.so.4.0.1 - /usr/lib/libtesseract.so.4 - /usr/lib/libtesseract.so - /usr/bin/tesseract - /usr/share/tessdata - /usr/share/doc - /usr/share - - - - tesseract-devel - Development files for tesseract - tesseract için geliştirme dosyaları - tesseract-devel, tesseract için geliştirme dosyaları içerir. - - tesseract - - - /usr/lib/pkgconfig/tesseract.pc - /usr/include/tesseract - - - - tesseract-tools - Tools for tesseract - tesseract için araçlar - tesseract-tools, tesseract için araçlar içerir. - - tesseract - fontconfig - leptonica - cairo - icu4c - pango - - - /usr/bin/set_unicharset_properties - /usr/bin/language-specific.sh - /usr/bin/unicharset_extractor - /usr/bin/tesstrain_utils.sh - /usr/bin/combine_lang_model - /usr/bin/classifier_tester - /usr/bin/merge_unicharsets - /usr/bin/combine_tessdata - /usr/bin/shapeclustering - /usr/bin/ambiguous_words - /usr/bin/dawg2wordlist - /usr/bin/wordlist2dawg - /usr/bin/tesstrain.sh - /usr/bin/lstmtraining - /usr/bin/cntraining - /usr/bin/mftraining - /usr/bin/text2image - /usr/bin/lstmeval - - - - - 2020-01-19 - 4.1.1 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-25 - 4.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libgxps - https://live.gnome.org/libgxps - - Pisi Gnu/Linux Community + Pisi Linux Admins admin@pisilinux.org - GPLv2 + GPLv3 library office.misc - XPS Documents library - libgxps işleme ve render XPS belgeleri için bir gobject tabanlı bir kütüphanedir. - libgxps is a GObject based library for handling and rendering XPS documents. - XPS dosyaları genellikle Windows ortamlarında "Microsoft XPS Document Writer" kullanılarak oluşturulur. Şimdi açık bir standart belge biçimi olarak standardize edilmiştir. - http://ftp.gnome.org/pub/gnome/sources/libgxps/0.3/libgxps-0.3.2.tar.xz - - cairo-devel - meson - gtk-doc - gtk3-devel - python-six - lcms2-devel - libsecret-devel - libarchive-devel - libjpeg-turbo-devel - tiff-devel - glib2-devel - gobject-introspection-devel - - office/misc/libgxps/pspec.xml + OCR (Optical Character Recognition) program based on a feature extraction method + OCR (Optical Character Recognition) program based on a feature extraction method + OCR (Optical Character Recognition) program based on a feature extraction method + OCR (Optical Character Recognition) program based on a feature extraction method + https://sourceforge.net/projects/pisilinux/files/source/ocrad-0.27.tar.gz + office/misc/ocrad/pspec.xml - libgxps + ocrad - cairo - glib2 - lcms2 - libpng - freetype - libarchive - libjpeg-turbo - tiff + libgcc /usr/bin /usr/lib - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 + /usr/include + /usr/share + /usr/share/man + /usr/share/info /usr/share/doc - - libgxps-devel - Development files for libgxps - libgxps için geliştirme dosyaları - - cairo-devel - glib2-devel - libarchive-devel - libgxps - - - /usr/include - /usr/lib/pkgconfig - - - - libgxps-doc - Documentation files for libgxps - libgxps için belgelendirme dosyaları - - /usr/share/gtk-doc/html - - - - 2021-05-27 - 0.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-08 - 0.3.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-11 - 0.3.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-04 - 0.2.5 - Rebuild with new toolchain - Burak Ertürk - burakerturk@pisilinux.org - - - 2016-09-28 - 0.2.2 - Release bump - Burak Ertürk - burakerturk@pisilinux.org - - 2016-07-26 - 0.2.2 - First Release - Pisi Gnu/Linux Community + 2021-04-26 + 0.27 + First release + Pisi Linux Admins admin@pisilinux.org - qpdf - http://qpdf.sourceforge.net + osmo + http://osmo-pim.sourceforge.net/ - Marcin Bojara - marcin@pisilinux.org + PisiLinux Community + admins@pisilinux.org - Artistic-2 - app:console + GPLv2 + app:gui office.misc - A Content-Preserving PDF Transformation System - A command-line program that does structural, content-preserving transformations on PDF files - mirrors://sourceforge/qpdf/qpdf-9.1.0.tar.gz + Osmo is a handy personal organizer, which includes calendar, tasks manager, address book and notes modules. + Hızlı bir kişisel bilgi yöneticisi + Osmo is a handy personal organizer, which includes calendar, tasks manager, address book and notes modules. It was designed to be a small, easy to use and good looking PIM tool to help to manage personal information. In its current state the organizer is quite convenient to use - for example, the user can perform nearly all operations using the keyboard. Also, a lot of parameters are configurable to meet the user's preferences. On the technical side, Osmo is GTK+ based tool which uses a plain XML database to store all personal data. + Osmo, kişisel randevularınızı, önemli günlerinizi ve kişilerin adreslerini düzenlemeye yarayan ufak ve hızlı çalışan bir programdır. + mirrors://sourceforge/osmo-pim/osmo-0.4.4.tar.gz - libjpeg-turbo-devel - libpcre-devel - libxslt-devel - zlib-devel + db-devel + gtk3-devel + libical-devel + libxml2-devel + libnotify-devel + webkit2gtk-devel + libarchive-devel + libgringotts-devel - office/misc/qpdf/pspec.xml + office/misc/osmo/pspec.xml - qpdf + osmo - zlib - libgcc - libpcre - libjpeg-turbo + gtk3 + glib2 + cairo + pango + libical + libxml2 + libnotify + gdk-pixbuf + libarchive + webkit2gtk + libgringotts - /usr/lib - /usr/share/man - /usr/share/doc /usr/bin - - - - qpdf-devel - qpdf için geliştirme dosyaları - - libjpeg-turbo-devel - libpcre-devel - zlib-devel - qpdf - - - /usr/include - /usr/lib/pkgconfig + /usr/share + /usr/share/locale + /usr/share/man/man1 + /usr/share/doc - - 2019-11-24 - 9.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-23 - 8.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-31 - 8.4.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-10-07 - 8.2.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-09 - 7.1.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 7.1.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-30 - 6.0.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 6.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-03-23 - 6.0.0 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2021-03-01 + 0.4.4 + First Beta build. + fury + uglyside@yandex.ru @@ -292709,480 +257551,6 @@ from a wide variety of machine architectures. - - - cauchy - https://bitbucket.org/cyrille/cauchy - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:gui - library - office.misc - A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab - Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık - A library for transforming Matlab/Octave files to C++ (with Eigen) and Matlab - Matlab/Octave dosyalarını C++ (Eigen ile) ve Matlab'a dönüştürmek için bir kitaplık - https://sourceforge.net/projects/pisilinux/files/source/cauchy-0.9.0.tar.bz2 - - cmake - eigen3 - - office/misc/cauchy/pspec.xml - - - cauchy - - libgcc - - - /usr/lib/libCauchy.so* - /usr/share/doc - /usr/bin - /usr/lib/libm2mml.so* - /usr/lib/libCauchyXUnit.so* - - - - cauchy-devel - Development files for cauchy - cauchy için geliştirme başlıkları - - cauchy - - - /usr/include - - - - - 2021-11-30 - 0.9.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - djvu - http://djvu.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - office.misc - DjVu viewers, encoders and utilities - DjVu görüntüleyicileri, sıkıştırıcı ve ekipmanları - DjVu is a web-centric format and software platform to distribute documents and images. - Belgeleri, kitapları bilinen formatlardan çok daha yüksek sıkıştırma oranlarında sıkıştıran DjVu formatı ekipmanları. - mirrors://sourceforge/djvu/djvulibre-3.5.27.tar.gz - - libjpeg-turbo-devel - tiff-devel - xdg-utils - libXt-devel - - - no-pthread.diff - djvulibre-3.5.22-cdefs.patch - - office/misc/djvu/pspec.xml - - - djvu - - shared-mime-info - libjpeg-turbo - tiff - - - /usr/bin - /usr/lib - /usr/share/icons - /usr/share/applications - /usr/share/djvu - /usr/share/mime - /opt/netscape - /usr/share/doc - /usr/share/man - - - - djvu-devel - Development files for djvu - djvu için geliştirme dosyaları - - djvu - - - /usr/include - /usr/lib/pkgconfig - - - - - 2018-08-08 - 3.5.27 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 3.5.27 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 3.5.27 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-02 - 3.5.27 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ocrad - https://www.gnu.org/software/ocrad/ - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - library - office.misc - OCR (Optical Character Recognition) program based on a feature extraction method - OCR (Optical Character Recognition) program based on a feature extraction method - OCR (Optical Character Recognition) program based on a feature extraction method - OCR (Optical Character Recognition) program based on a feature extraction method - https://sourceforge.net/projects/pisilinux/files/source/ocrad-0.27.tar.gz - office/misc/ocrad/pspec.xml - - - ocrad - - libgcc - - - /usr/bin - /usr/lib - /usr/include - /usr/share - /usr/share/man - /usr/share/info - /usr/share/doc - - - - - 2021-04-26 - 0.27 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libvc - https://github.com/VcDevel/Vc - - Alihan Öztürk - alihan@pisilinux.org - - LGPLv3 - library - office.misc - A library to ease explicit vectorization of C++ code. - C + + ile yazılmış vektörizasyon kolaylaştırmak için bir kütüphane. - Vc is a free software library to ease explicit vectorization of C++ code. It has an intuitive API and provides portability between different compilers and compiler versions as well as portability between different vector instruction sets. - Vc, C + + ile yazılmış vektörizasyon kolaylaştırmak için ücretsiz bir yazılım kütüphanesi. Bu sezgisel bir API ve farklı derleyiciler ve derleyici sürümleri arasında taşınabilirliği yanı sıra farklı vektör komut setleri arasında taşınabilirlik sağlar. - https://github.com/VcDevel/Vc/releases/download/1.3.3/Vc-1.3.3.tar.gz - - cmake - - office/misc/libvc/pspec.xml - - - libvc - - /usr/lib/libVc.a - /usr/share/doc - - - - libvc-devel - Development files for libvc - libvc için geliştirme dosyaları - - libvc - - - /usr/include - /usr/lib/cmake - - - - - 2018-08-09 - 1.3.3 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 1.3.3 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 1.3.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-31 - 1.3.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - t1utils - http://www.lcdf.org/type/#t1utils - - Blue Devil - bluedevil@sctzine.com - - GPLv2 - app:console - office.misc - Type 1 Font utilities - Tip 1 fontlar için araçlar - t1utils contains six tools (t1ascii, t1binary, t1disasm, t1asm, t1unmac and t1mac) for dealing with Type 1 fonts. - t1utils Tip 1 fontları dönüştürmek için 6 araç (t1ascii, t1binary, t1disasm, t1asm, t1unmac ve t1mac) içerir. - https://github.com/kohler/t1utils/archive/v1.41.tar.gz - - 3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch - - office/misc/t1utils/pspec.xml - - - t1utils - Type 1 Font utilities - - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2020-06-03 - 1.41 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - texi2html - http://savannah.nongnu.org/projects/texi2html/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - office.misc - Texinfo to HTML converter - Texinfo'dan HTML'ye dönüştürücü - texi2html is a Perl script which can generate HTML from Texinfo source files. - text2html Texinfo kaynak dosyalarından HTML çıktı üretebilen bir Perl betiğidir. - http://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.bz2 - office/misc/texi2html/pspec.xml - - - texi2html - - /usr/bin - /usr/share/info - /usr/share/doc/texi2html - /usr/share/man/man1 - /usr/share/texi2html - /usr/share/texinfo - /usr/share/locale - - - - - 2020-03-07 - 5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 5.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libodfgen - http://sf.net/p/libwpd/libodfgen/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - office.misc - Library for generating documents - Döküman oluşturmak için bir kütüphane. - Library for generating documents in Open Document Format - ODF formatında, döküman oluşturmak için birkütüphane. - https://dev-www.libreoffice.org/src/libodfgen-0.1.8.tar.xz - - boost-devel - libwpd-devel - libwpg-devel - libetonyek-devel - librevenge-devel - libxml2-devel - zlib-devel - gperf - - office/misc/libodfgen/pspec.xml - - - libodfgen - - libgcc - librevenge - - - /usr/lib - - - - libodfgen-devel - Development files for libodfgen - - librevenge-devel - libetonyek-devel - libodfgen - - - /usr/share/doc - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-21 - 0.1.8 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-10 - 0.1.8 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-22 - 0.1.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-09 - 0.1.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 0.1.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-04 - 0.1.6 - release bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-01-01 - 0.1.6 - First release - Kamil Atlı - suvarice@gmail.com - - - pstoedit @@ -293265,258 +257633,49 @@ from a wide variety of machine architectures. - txt2man - http://mvertes.free.fr/ + qpdf + http://qpdf.sourceforge.net - PisiLinux Community - admins@pisilinux.org + Marcin Bojara + marcin@pisilinux.org - GPLv2 + Artistic-2 app:console office.misc - A converter from flat ASCII text to man page format - Düz ASCII metinleri man sayfası formatına dönüştürücü - txt2man converts flat ASCII text to man page format. - txt2man düz ASCII metinleri man sayfası formatına dönüştürür. - https://github.com/mvertes/txt2man/archive/txt2man-1.6.0.tar.gz - office/misc/txt2man/pspec.xml + A Content-Preserving PDF Transformation System + A command-line program that does structural, content-preserving transformations on PDF files + mirrors://sourceforge/qpdf/qpdf-9.1.0.tar.gz + + libjpeg-turbo-devel + libpcre-devel + libxslt-devel + zlib-devel + + office/misc/qpdf/pspec.xml - txt2man + qpdf + + zlib + libgcc + libpcre + libjpeg-turbo + - /usr/bin + /usr/lib /usr/share/man /usr/share/doc + /usr/bin - - - 2020-02-11 - 1.5.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-09 - 1.5.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-30 - 1.5.6 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.5.6 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - tesseract-data - https://github.com/tesseract-ocr/tessdata - - PisiLinux Community - admins@pisilinux.org - - APACHE - app:console - office.misc - An OCR program data - An OCR programm - An OCR program data - An OCR programm - https://github.com/tesseract-ocr/tessdata/archive/4.0.0.tar.gz - office/misc/tesseract-data/pspec.xml - - tesseract-data-tr - Tesseract OCR program Turkish data - Tesseract OCR yazılımı Türkçe verisi - tesseract-data-tr, Tesseract OCR yazılımı Türkçe verisi içerir. + qpdf-devel + qpdf için geliştirme dosyaları - tesseract - - - /usr/share/tessdata/tur* - - - - tesseract-data-az - Tesseract OCR program Azerbaijani data - Tesseract OCR yazılımı Azerbaycan Türkçe verisi - tesseract-data-az, Tesseract OCR yazılımı Azerbacan Türkçesi verisi içerir. - - tesseract - - - /usr/share/tessdata/aze.* - - - - tesseract-data-az-cyrillic - Tesseract OCR program Azerbaijani cyrillic data - Tesseract OCR yazılımı Azerbaycan Türkçe(Kiril harfleriyle) verisi - tesseract-data-az-cyrillic, Tesseract OCR yazılımı Azerbacan Türkçesi(Kiril harfleriyle) verisi içerir. - - tesseract - - - /usr/share/tessdata/aze_cyrl.* - - - - tesseract-data-en - Tesseract OCR program English data - Tesseract OCR yazılımı İngilizce verisi - tesseract-data-en, Tesseract OCR yazılımı İngilizce verisi içerir. - - tesseract - - - /usr/share/tessdata/eng* - - - - tesseract-data-de - Tesseract OCR program German data - Tesseract OCR yazılımı Almanca verisi - tesseract-data-de, Tesseract OCR yazılımı Almanca verisi içerir. - - tesseract - - - /usr/share/tessdata/deu* - - - - tesseract-data-fr - Tesseract OCR program French data - Tesseract OCR yazılımı Fransızca verisi - tesseract-data-fr, Tesseract OCR yazılımı Fransızca verisi içerir. - - tesseract - - - /usr/share/tessdata/fra* - - - - tesseract-data-it - Tesseract OCR program Italian data - Tesseract OCR yazılımı İtalyanca verisi - tesseract-data-it, Tesseract OCR yazılımı Fransızca verisi içerir. - - tesseract - - - /usr/share/tessdata/ita* - - - - tesseract-data-jpn - Tesseract OCR program Japan data - Tesseract OCR yazılımı Japonca verisi - tesseract-data-jpn, Tesseract OCR yazılımı Japonca verisi içerir. - - tesseract - - - /usr/share/tessdata/jpn* - - - - tesseract-data-ru - Tesseract OCR program Russian data - Tesseract OCR yazılımı Rusça verisi - tesseract-data-ru, Tesseract OCR yazılımı Rusça verisi içerir. - - tesseract - - - /usr/share/tessdata/rus* - - - - tesseract-data-spa - Tesseract OCR program Spanish data - Tesseract OCR yazılımı İspanyolca verisi - tesseract-data-spa, Tesseract OCR yazılımı İspanyolca verisi içerir. - - tesseract - - - /usr/share/tessdata/spa* - - - - - 2020-01-19 - 4.0.0 - Rebuilt for the new toolchain. - Blue Devil - bluedevil@sctzine.com - - - 2019-01-26 - 4.0.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - iso-codes - https://salsa.debian.org/iso-codes-team/iso-codes - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - office.misc - International country codes - Uluslararası ülke kodları - iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards. - iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar. - http://ftp.debian.org/debian/pool/main/i/iso-codes/iso-codes_4.10.0.orig.tar.xz - - python3-devel - - office/misc/iso-codes/pspec.xml - - - iso-codes - - /usr/share/locale - /usr/share/doc - /usr/share/xml - /usr/share/iso-codes - - - - iso-codes-devel - Development files for iso-codes - - iso-codes + libjpeg-turbo-devel + libpcre-devel + zlib-devel + qpdf /usr/include @@ -293524,82 +257683,158 @@ from a wide variety of machine architectures. - - 2022-06-03 - 4.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2022-05-21 - 4.9.0 + 2019-11-24 + 9.1.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-06-01 - 4.6.0 + 2019-09-23 + 8.4.2 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-01-11 - 4.4 - Version Bump - Kamil Atlı - suvari@pisilinux.org + 2019-05-31 + 8.4.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2019-01-15 - 3.79 + 2018-10-07 + 8.2.1 Version Bump. - Mustafa Cinasal - muscnsl@gmail.com + Pisi Linux Community + admin@pisilinux.org - 2018-07-31 - 3.77 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2018-08-09 + 7.1.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org 2018-02-11 - 3.77 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 7.1.1 + Version Bump. + Pisi Linux Community + admin@pisilinux.org - 2017-02-19 - 3.74 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2017-03-30 + 6.0.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org 2016-06-09 - 3.53 + 6.0.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-21 - 3.53 + 2016-03-23 + 6.0.0 First release - Vedat Demir - vedat@pisilinux.org + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - doxygen - http://www.doxygen.org/ + qpdfview + https://launchpad.net/qpdfview + + Stefan Gronewold (groni) + groni@pisilinux.org + + GNU GPL v2 + office.misc + qpdfview is a tabbed document viewer + It uses Poppler for PDF support, libspectre for PS support, DjVuLibre for DjVu support, CUPS for printing support and the Qt toolkit for its interface + https://launchpad.net/qpdfview/trunk/0.4.18/+download/qpdfview-0.4.18.tar.gz + + djvu-devel + cups-devel + poppler-qt5-devel + qt5-base-devel + qt5-xmlpatterns-devel + libspectre-devel + zlib-devel + pkgconfig + qt5-svg-devel + + office/misc/qpdfview/pspec.xml + + + qpdfview + qpdfview is a tabbed document viewer. + + qt5-base + cups + djvu + libgcc + zlib + libspectre + poppler-qt5 + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + + 2019-11-20 + 0.4.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 0.4.16 + Release Bump + Rebuild with new toolchain + admin@pisilinux.org + + + 2017-03-30 + 0.4.16 + Release Bump + Rebuild with new toolchain + admin@pisilinux.org + + + 2016-06-09 + 0.4.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-04 + 0.4.14 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + recode + http://www.gnu.org/software/recode/ PisiLinux Community admins@pisilinux.org @@ -293607,92 +257842,246 @@ from a wide variety of machine architectures. GPLv2 app:console office.misc - Documentation and analysis tool for C++, C, Java, IDL, PHP and C# - C, C++, Java, IDL, PHP ve C# için döküman ve analiz aracı - Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors) and to some extent PHP, C#, and D. - Doxygen C++, C, Java, Objective-C, Python, IDL (Corba ve Microsoft ile ilgili diğerleri ) ve PHP, C# ve D'yi de kapsayan diller için bir dokümantasyon sistemidir. - Doxygen es un sistema de documentación para C++, C, Java, Objective-C, Python, IDL (versiones Corba y Microsoft) y hasta cierto punto también PHP, C#, y D. - http://doxygen.nl/files/doxygen-1.8.20.src.tar.gz + File character set converter + Karakter kümesi dönüşümü aracı + Recode can convert files to various character sets (e.g. utf8, iso-8859-1, koi8r..). + Recode dosyaların bir karakter kümesinden bir başkasına dönüştürülmesine imkân verir. Çok sayıda karakter kümesini destekler. + https://github.com/rrthomas/recode/releases/download/v3.7.6/recode-3.7.6.tar.gz - git - cmake + texinfo + python3-devel + gettext-devel - office/misc/doxygen/pspec.xml + office/misc/recode/pspec.xml - doxygen + recode + + /usr/lib + /usr/bin + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/locale + + + + recode-devel + Development files for recode + recode için geliştirme dosyaları - libgcc + recode - /usr/share/doc - /usr/bin/doxygen - /usr/share/man/man1/doxygen.1 + /usr/include - - 2020-12-17 - 1.8.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-23 - 1.8.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.8.17 - Version bump. - Idris Kalp - idriskalp@gmail.com - - 2019-09-18 - 1.8.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-22 + 3.7.6 + Version bump + Pisi Linux Community + admin@pisilinux.org - 2018-07-29 - 1.8.14 + 2018-08-06 + 3.7 Rebuild. Pisi Linux Community admin@pisilinux.org 2018-02-11 - 1.8.14 + 3.7 Version Bump. Pisi Linux Community admin@pisilinux.org - 2017-04-04 - 1.8.13 - Rebuild with new toolchain + 2017-03-02 + 3.6 + Rebuild for new toolchain. Pisi Linux Community admin@pisilinux.org 2016-06-09 - 1.8.11 + 3.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-24 - 1.8.11 + 2016-01-01 + 3.6 First release - Ertuğrul Erata - ertugrulerata@gmail.com + Stefan Gronewold + groni@pisilinux.org + + + + + + scribus + http://www.scribus.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + office.misc + Desktop Publishing (DTP) and Layout program + Masaüstü yayıncılık uygulaması + Scribus is an opensource desktop publishing application with features like CMYK colorspace and PDF output. + Scribus, açık kaynak kodlu bir DTP (masaüstü yayıncılık) programıdır. Renk ayrımından PDF dönüşümlerine, PDF form elementleri yaratmadan Preflight Check gibi işlemlere kadar, profesyonel bir DTP paketinde bulabileceğiniz her fonksiyona sahiptir. + scribusicon + http://sourceforge.net/projects/scribus/files/scribus-devel/1.5.6.1/scribus-1.5.6.1.tar.xz + + cmake + cups-devel + desktop-file-utils + lcms2-devel + libmspub-devel + libart_lgpl-devel + libjpeg-turbo-devel + libpng-devel + tiff-devel + libxml2-devel + openssl-devel + python-devel + python3-devel + ghostscript-devel + gnutls-devel + poppler-devel + qt5-base-devel + qt5-webkit-devel + qt5-location-devel + qt5-linguist + zlib-devel + freetype-devel + gnutls-devel + cairo-devel + hunspell-devel + boost-devel + libwpg-devel + podofo-devel + libvisio-devel + libcdr-devel + poppler-qt5-devel + poppler-cpp-devel + GraphicsMagick-devel + libpagemaker-devel + harfbuzz-devel + + + scribus-1.5.3-fpic.patch + PisiLinux-correctly_link_to_libxml2.patch + poppler-21.3.0.patch + + office/misc/scribus/pspec.xml + + + scribus + + icu4c + cups + tiff + zlib + cairo + lcms2 + libgcc + podofo + python + libxml2 + poppler + libmspub + freetype + hunspell + qt5-base + fontconfig + librevenge + qt5-webkit + libjpeg-turbo + qt5-declarative + libpagemaker + libcdr + GraphicsMagick + libvisio + libmspub + harfbuzz + + + /usr/bin + /usr/lib + /usr/share + + + + scribus-docs + Documentation files for scribus + scribus için belgelendirme dosyaları + + /usr/share/doc/scribus + + + + + 2021-03-12 + 1.5.6.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 1.5.4 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2018-03-22 + 1.5.3 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2018-02-03 + 1.5.3 + Rebuild. + Mustafa Cinasal + admin@pisilinux.org + + + 2017-08-23 + 1.5.3 + Version bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-04-17 + 1.5.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-18 + 1.5.2 + First release + Stefan Gronewold + groni@pisilinux.org @@ -293981,121 +258370,262 @@ from a wide variety of machine architectures. - libvisio - http://www.ohloh.net/p/libvisio + t1utils + http://www.lcdf.org/type/#t1utils + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + app:console + office.misc + Type 1 Font utilities + Tip 1 fontlar için araçlar + t1utils contains six tools (t1ascii, t1binary, t1disasm, t1asm, t1unmac and t1mac) for dealing with Type 1 fonts. + t1utils Tip 1 fontları dönüştürmek için 6 araç (t1ascii, t1binary, t1disasm, t1asm, t1unmac ve t1mac) içerir. + https://github.com/kohler/t1utils/archive/v1.41.tar.gz + + 3f1ddda424353f0f926dd28efa47b0ac61556ce8.patch + + office/misc/t1utils/pspec.xml + + + t1utils + Type 1 Font utilities + + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2020-06-03 + 1.41 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + tellico + http://tellico-project.org PisiLinux Community admins@pisilinux.org - GPLv2 - LGPLv2.1 - app:console + GPLv2+ + app:gui office.misc - A C++ library for parsing binary Microsoft Visio documents - A C++ library for parsing binary Microsoft Visio documents. - A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. - A C++ library for parsing binary Microsoft Visio documents (.vsd). Includes a converter to XHTML with embedded SVG files. - https://dev-www.libreoffice.org/src/libvisio/libvisio-0.1.7.tar.xz + A collection manager for KDE + KDE için koleksiyon yönetim uygulaması + Tellico is a KDE application for organizing your collections. It provides default templates for books, bibliographies, videos, music, video games, coins, stamps, trading cards, comic books, and wines. + Tellico, koleksiyonlarınızı düzenlemek için kullanabileceğiniz bir KDE uygulamasıdır. Öntanımlı olarak; kitaplar, biyografiler, videolar, müzikler, oyunlar gibi bir çok şemayı destekler. + tellico + http://tellico-project.org/files/tellico-3.3.tar.xz - icu4c-devel - librevenge-devel - zlib-devel + libkcddb + khtml-devel + exempi-devel + taglib-devel + libxslt-devel libxml2-devel - boost-devel - gperf - cppunit-devel + libcdio-devel + libksane-devel + kdoctools-devel + knewstuff-devel + kitemmodels-devel + poppler-qt5-devel + extra-cmake-modules + kfilemetadata-devel + libkcompactdisc-devel - office/misc/libvisio/pspec.xml + office/misc/tellico/pspec.xml - libvisio + tellico - cppunit - icu4c - librevenge + kio + khtml + ki18n + solid + exempi + kcrash + kparts libgcc + sonnet + taglib + kcodecs + kconfig + kwallet + kxmlgui + libcdio libxml2 + libxslt + karchive + kservice + libkcddb + libksane + qt5-base + knewstuff + kguiaddons + kcompletion + kcoreaddons + kiconthemes + kitemmodels + kjobwidgets + poppler-qt5 + ktextwidgets + kfilemetadata + kwindowsystem + kconfigwidgets + kwidgetsaddons - /usr/lib /usr/bin - /usr/share/doc/libvisio - - - - libvisio-devel - - icu4c-devel - librevenge-devel - zlib-devel - libxml2-devel - libvisio - - - /usr/include/ - /usr/lib/pkgconfig + /usr/share/applications + /etc/xdg + /usr/share/doc + /usr/share/kxmlgui5 + /usr/share/icons + /usr/share/tellico + /usr/share/locale + /usr/share/kconf_update + /usr/share/config.kcfg + /usr/share/metainfo + /usr/share/mime - - 2021-10-21 - 0.1.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-10 - 0.1.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-22 - 0.1.7 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-09 - 0.1.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 0.1.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-31 - 0.1.6 - Version Bump. - Kamil Atlı - suvari@pisilinux.org - - 2017-03-16 - 0.1.5 - Release Bump + 2020-04-25 + 3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-27 + 3.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-05 + 3.1.2 + First release. Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org + + + + + tesseract + https://github.com/tesseract-ocr/tesseract + + PisiLinux Community + admins@pisilinux.org + + APACHE + app:console + office.misc + Tesseract OCR Engine + Tesseract OCR Motoru + This package contains an OCR engine - libtesseract and a command line program - tesseract. Tesseract 4 adds a new neural net (LSTM) based OCR engine which is focused on line recognition, but also still supports the legacy Tesseract OCR engine of Tess + tesseract, en kararlı açık kaynaklı OCR (Optik Karakter Tanıma) motorlarından biridir. Uygulama girdi olarak aldığı çeşitli resim biçimlerini analiz ederek metin biçiminde çıktı üretir. + https://github.com/tesseract-ocr/tesseract/archive/4.1.1.tar.gz + + leptonica-devel + cairo-devel + icu4c-devel + pango-devel + tiff-devel + libgomp + libxslt-devel + asciidoc + + office/misc/tesseract/pspec.xml + + + tesseract + Tesseract OCR Engine + + leptonica + libgomp + tiff + + + /usr/lib/libtesseract.so.4.0.1 + /usr/lib/libtesseract.so.4 + /usr/lib/libtesseract.so + /usr/bin/tesseract + /usr/share/tessdata + /usr/share/doc + /usr/share + + + + tesseract-devel + Development files for tesseract + tesseract için geliştirme dosyaları + tesseract-devel, tesseract için geliştirme dosyaları içerir. + + tesseract + + + /usr/lib/pkgconfig/tesseract.pc + /usr/include/tesseract + + + + tesseract-tools + Tools for tesseract + tesseract için araçlar + tesseract-tools, tesseract için araçlar içerir. + + tesseract + fontconfig + leptonica + cairo + icu4c + pango + + + /usr/bin/set_unicharset_properties + /usr/bin/language-specific.sh + /usr/bin/unicharset_extractor + /usr/bin/tesstrain_utils.sh + /usr/bin/combine_lang_model + /usr/bin/classifier_tester + /usr/bin/merge_unicharsets + /usr/bin/combine_tessdata + /usr/bin/shapeclustering + /usr/bin/ambiguous_words + /usr/bin/dawg2wordlist + /usr/bin/wordlist2dawg + /usr/bin/tesstrain.sh + /usr/bin/lstmtraining + /usr/bin/cntraining + /usr/bin/mftraining + /usr/bin/text2image + /usr/bin/lstmeval + + + - 2016-06-09 - 0.1.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org + 2020-01-19 + 4.1.1 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2015-01-03 - 0.1.0 + 2019-01-25 + 4.0.0 First release PisiLinux Community admins@pisilinux.org @@ -294104,8 +258634,163 @@ from a wide variety of machine architectures. - recode - http://www.gnu.org/software/recode/ + tesseract-data + https://github.com/tesseract-ocr/tessdata + + PisiLinux Community + admins@pisilinux.org + + APACHE + app:console + office.misc + An OCR program data + An OCR programm + An OCR program data + An OCR programm + https://github.com/tesseract-ocr/tessdata/archive/4.0.0.tar.gz + office/misc/tesseract-data/pspec.xml + + + tesseract-data-tr + Tesseract OCR program Turkish data + Tesseract OCR yazılımı Türkçe verisi + tesseract-data-tr, Tesseract OCR yazılımı Türkçe verisi içerir. + + tesseract + + + /usr/share/tessdata/tur* + + + + tesseract-data-az + Tesseract OCR program Azerbaijani data + Tesseract OCR yazılımı Azerbaycan Türkçe verisi + tesseract-data-az, Tesseract OCR yazılımı Azerbacan Türkçesi verisi içerir. + + tesseract + + + /usr/share/tessdata/aze.* + + + + tesseract-data-az-cyrillic + Tesseract OCR program Azerbaijani cyrillic data + Tesseract OCR yazılımı Azerbaycan Türkçe(Kiril harfleriyle) verisi + tesseract-data-az-cyrillic, Tesseract OCR yazılımı Azerbacan Türkçesi(Kiril harfleriyle) verisi içerir. + + tesseract + + + /usr/share/tessdata/aze_cyrl.* + + + + tesseract-data-en + Tesseract OCR program English data + Tesseract OCR yazılımı İngilizce verisi + tesseract-data-en, Tesseract OCR yazılımı İngilizce verisi içerir. + + tesseract + + + /usr/share/tessdata/eng* + + + + tesseract-data-de + Tesseract OCR program German data + Tesseract OCR yazılımı Almanca verisi + tesseract-data-de, Tesseract OCR yazılımı Almanca verisi içerir. + + tesseract + + + /usr/share/tessdata/deu* + + + + tesseract-data-fr + Tesseract OCR program French data + Tesseract OCR yazılımı Fransızca verisi + tesseract-data-fr, Tesseract OCR yazılımı Fransızca verisi içerir. + + tesseract + + + /usr/share/tessdata/fra* + + + + tesseract-data-it + Tesseract OCR program Italian data + Tesseract OCR yazılımı İtalyanca verisi + tesseract-data-it, Tesseract OCR yazılımı Fransızca verisi içerir. + + tesseract + + + /usr/share/tessdata/ita* + + + + tesseract-data-jpn + Tesseract OCR program Japan data + Tesseract OCR yazılımı Japonca verisi + tesseract-data-jpn, Tesseract OCR yazılımı Japonca verisi içerir. + + tesseract + + + /usr/share/tessdata/jpn* + + + + tesseract-data-ru + Tesseract OCR program Russian data + Tesseract OCR yazılımı Rusça verisi + tesseract-data-ru, Tesseract OCR yazılımı Rusça verisi içerir. + + tesseract + + + /usr/share/tessdata/rus* + + + + tesseract-data-spa + Tesseract OCR program Spanish data + Tesseract OCR yazılımı İspanyolca verisi + tesseract-data-spa, Tesseract OCR yazılımı İspanyolca verisi içerir. + + tesseract + + + /usr/share/tessdata/spa* + + + + + 2020-01-19 + 4.0.0 + Rebuilt for the new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2019-01-26 + 4.0.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + texi2html + http://savannah.nongnu.org/projects/texi2html/ PisiLinux Community admins@pisilinux.org @@ -294113,82 +258798,124 @@ from a wide variety of machine architectures. GPLv2 app:console office.misc - File character set converter - Karakter kümesi dönüşümü aracı - Recode can convert files to various character sets (e.g. utf8, iso-8859-1, koi8r..). - Recode dosyaların bir karakter kümesinden bir başkasına dönüştürülmesine imkân verir. Çok sayıda karakter kümesini destekler. - https://github.com/rrthomas/recode/releases/download/v3.7.6/recode-3.7.6.tar.gz - - texinfo - python3-devel - gettext-devel - - office/misc/recode/pspec.xml + Texinfo to HTML converter + Texinfo'dan HTML'ye dönüştürücü + texi2html is a Perl script which can generate HTML from Texinfo source files. + text2html Texinfo kaynak dosyalarından HTML çıktı üretebilen bir Perl betiğidir. + http://download.savannah.gnu.org/releases/texi2html/texi2html-5.0.tar.bz2 + office/misc/texi2html/pspec.xml - recode + texi2html - /usr/lib /usr/bin - /usr/share/doc /usr/share/info - /usr/share/man + /usr/share/doc/texi2html + /usr/share/man/man1 + /usr/share/texi2html + /usr/share/texinfo /usr/share/locale - - recode-devel - Development files for recode - recode için geliştirme dosyaları - - recode - - - /usr/include - - - - 2020-01-22 - 3.7.6 - Version bump - Pisi Linux Community - admin@pisilinux.org - - 2018-08-06 - 3.7 - Rebuild. + 2020-03-07 + 5.0 + Release Bump Pisi Linux Community admin@pisilinux.org - 2018-02-11 - 3.7 - Version Bump. + 2018-08-07 + 5.0 + Release Bump Pisi Linux Community admin@pisilinux.org - 2017-03-02 - 3.6 - Rebuild for new toolchain. + 2017-02-18 + 5.0 + Release Bump Pisi Linux Community admin@pisilinux.org 2016-06-09 - 3.6 + 5.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-01 - 3.6 + 2014-05-20 + 5.0 First release - Stefan Gronewold - groni@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org + + + + + + txt2man + http://mvertes.free.fr/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + office.misc + A converter from flat ASCII text to man page format + Düz ASCII metinleri man sayfası formatına dönüştürücü + txt2man converts flat ASCII text to man page format. + txt2man düz ASCII metinleri man sayfası formatına dönüştürür. + https://github.com/mvertes/txt2man/archive/txt2man-1.6.0.tar.gz + office/misc/txt2man/pspec.xml + + + txt2man + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2020-02-11 + 1.5.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-09 + 1.5.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-30 + 1.5.6 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.5.6 + First release + Osman Erkan + osman.erkan@pisilinux.org @@ -294275,589 +259002,71 @@ from a wide variety of machine architectures. - libpagemaker - https://wiki.documentfoundation.org/DLP/Libraries/libpagemaker + zathura + https://pwmt.org/projects/zathura/ - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - MPL2 - library - office.misc - a library that parses the file format of Aldus/Adobe PageMaker documents - a library that parses the file format of Aldus/Adobe PageMaker documents - libpagemaker - http://dev-www.libreoffice.org/src/libpagemaker/libpagemaker-0.0.4.tar.gz - - boost-devel - doxygen - help2man - librevenge-devel - - office/misc/libpagemaker/pspec.xml - - - libpagemaker - - libgcc - librevenge - - - /usr/bin - /usr/share - /usr/lib/libpagemaker-* - /usr/share/doc - - - - libpagemaker-devel - - librevenge-devel - libpagemaker - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-21 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-10 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-22 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-09 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 0.0.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 0.0.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-04 - 0.0.2 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 0.0.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - dos2unix - http://www.xs4all.nl/~waterlan/dos2unix.html - - PisiLinux Community - admins@pisilinux.org - - freedist - app:console - office.misc - Convert DOS and MAC text files to UNIX format - DOS ve MAC metin dosyalarını UNIX biçimine dönüştürme uygulaması - dos2unix can convert DOS and MAC files to UNIX format, processing character encoding and line ending characters. - dos2unix DOS ve MAC düzmetin dosyalarını karakter kodlamalarını ve satırsonu karakterlerini değiştirerek UNIX biçimine çevirir. - http://waterlan.home.xs4all.nl/dos2unix/dos2unix-7.4.0.tar.gz - office/misc/dos2unix/pspec.xml - - - dos2unix - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2018-08-08 - 7.4.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-11 - 7.4.0 - Version Bump - PisiLinux Community - admin@pisilinux.org - - - 2017-04-04 - 7.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 7.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-14 - 7.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - graphite2 - https://scripts.sil.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:gui - office.misc - SILGraphite: rendering non-roman scripts - Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems. - graphite2 - mirrors://sourceforge/silgraphite/graphite2-1.3.14.tgz - - cmake - freetype-devel - - office/misc/graphite2/pspec.xml - - - graphite2 - - /usr/bin - /usr/share/doc - /usr/share/graphite2 - /usr/lib/ - - - - graphite2-devel - graphite2 için geliştirme dosyaları - graphite2 için geliştirme dosyaları - - graphite2 - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2021-01-23 - 1.3.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.3.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-26 - 1.3.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 1.3.10 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.3.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-17 - 1.2.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - osmo - http://osmo-pim.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - office.misc - Osmo is a handy personal organizer, which includes calendar, tasks manager, address book and notes modules. - Hızlı bir kişisel bilgi yöneticisi - Osmo is a handy personal organizer, which includes calendar, tasks manager, address book and notes modules. It was designed to be a small, easy to use and good looking PIM tool to help to manage personal information. In its current state the organizer is quite convenient to use - for example, the user can perform nearly all operations using the keyboard. Also, a lot of parameters are configurable to meet the user's preferences. On the technical side, Osmo is GTK+ based tool which uses a plain XML database to store all personal data. - Osmo, kişisel randevularınızı, önemli günlerinizi ve kişilerin adreslerini düzenlemeye yarayan ufak ve hızlı çalışan bir programdır. - mirrors://sourceforge/osmo-pim/osmo-0.4.4.tar.gz - - db-devel - gtk3-devel - libical-devel - libxml2-devel - libnotify-devel - webkit2gtk-devel - libarchive-devel - libgringotts-devel - - office/misc/osmo/pspec.xml - - - osmo - - gtk3 - glib2 - cairo - pango - libical - libxml2 - libnotify - gdk-pixbuf - libarchive - webkit2gtk - libgringotts - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man/man1 - /usr/share/doc - - - - - 2021-03-01 - 0.4.4 - First Beta build. fury uglyside@yandex.ru - - - - - - evince - http://projects.gnome.org/evince/ - - Pisi Gnu/Linux Community - admin@pisilinux.org - GPLv2 + ZLib app:gui - desktop.gnome.addons - A document viewer, built without GConf and GNOME keyring support - Hafif ve özgür bir PDF görüntüleyici - Evince is a document viewer for multiple document formats. The goal of evince is to replace the multiple document viewers that exist on the GNOME Desktop with a single simple application. - evince değişik tipte belgeleri görüntülemek için kullanılan bir araçtır. Evince'in amacı, GNOME Masaüstü ortamı için basit bir belge görüntüleyici olarak diğer belge görüntüleyicilerinin yerini almaktır. - https://download.gnome.org/sources/evince/42/evince-42.3.tar.xz + office.misc + A document viewer. + zathura is a highly customizable and functional document viewer. It provides a minimalistic and space saving interface as well as an easy usage that mainly focuses on keyboard interaction. + https://pwmt.org/projects/zathura/download/zathura-0.4.9.tar.xz + git + file meson - itstool - gtk-doc - atk-devel - gi-docgen - t1lib-devel - libgxps-devel + cmake gtk3-devel - tiff-devel + glib2-devel + sqlite-devel + python3-sphinx + libseccomp-devel + + office/misc/zathura/pspec.xml + + + zathura + + file + gtk3 + cairo + glib2 + pango + sqlite + libseccomp + zathura-djvu + zathura-pdf-poppler + + + /usr/bin/zathura + /usr/lib + /usr/share + /usr/share/locale + + + + zathura-devel + + zathura + gtk3-devel + glib2-devel cairo-devel pango-devel - libSM-devel - libsecret-devel - libspectre-devel - djvu-devel - libICE-devel - gnome-desktop-devel - gdk-pixbuf-devel - poppler-glib-devel - intltool - libhandy-devel - libxml2-devel - python3-devel - gobject-introspection-devel - gspell-devel - nautilus-devel - gstreamer-devel - gst-plugins-base-devel - gsettings-desktop-schemas-devel - - office/misc/evince/pspec.xml - - - evince - - atk - zlib - glib2 - libgcc - djvu - gtk3 - tiff - cairo - t1lib - pango - libSM - libxml2 - libarchive - libICE - libgxps - libhandy - libsecret - gdk-pixbuf - libspectre - poppler-glib - gspell - nautilus - gstreamer - gnome-desktop - gst-plugins-base - /usr/bin - /usr/lib - /usr/lib/evince - /usr/share/applications - /usr/share/dbus-1 - /usr/share/evince - /usr/share/evince/icons - /usr/share/GConf - /usr/share/glib-2.0 - /usr/share/doc - /usr/share/help - /usr/share/icons - /usr/share/gir-1.0 - /usr/libexec/evinced - /usr/share/locale - /usr/share/man - /usr/share - - - - evince-devel - Development files for evince - evince için geliştirme dosyaları - - evince - glib2-devel - gtk3-devel - - - /usr/include /usr/lib/pkgconfig - - - - evince-docs - Documentation files for evince - evince için belgelendirme dosyaları - - /usr/share/doc/libevdocument/ - /usr/share/doc/libevview/ - - - - - 2022-05-23 - 42.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-21 - 41.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-10 - 41.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-08 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-05 - 40.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-23 - 3.38.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-09 - 3.26.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 3.26.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-04 - 3.20.1 - Rebuild with new toolchain - Pisi Gnu/Linux Community - admin@pisilinux.org - - - 2016-09-07 - 3.20.1 - First Release - Pisi Gnu/Linux Community - admin@pisilinux.org - - - - - - coolreader-qt - https://github.com/buggins/coolreader - - Pisi Linux Community - admin@pisilinux.org - - GPL-2 - app:gui - office.misc - CoolReader 3 - cross platform open source e-book reader. - CoolReader 3 - cross platform open source e-book reader. - https://github.com/buggins/coolreader/archive/refs/tags/cr3.2.59.tar.gz - - cmake - zlib-devel - zstd-devel - libxcb-devel - libpng-devel - qt5-linguist - fribidi-devel - qt5-base-devel - freetype-devel - harfbuzz-devel - utf8proc-devel - fontconfig-devel - libunibreak-devel - libjpeg-turbo-devel - - office/misc/coolreader-qt/pspec.xml - - - coolreader-qt - - zlib - zstd - libgcc - libpng - fribidi - freetype - harfbuzz - utf8proc - qt5-base - fontconfig - libunibreak - libjpeg-turbo - - - /usr/bin - /usr/share - /usr/share/cr3 + /usr/include/girara + /usr/include/zathura - 2021-12-21 - 3.2.59 - First build + 2022-06-11 + 0.4.9 + First build. fury uglyside@yandex.ru @@ -294865,977 +259074,303 @@ from a wide variety of machine architectures. - mdbtools - https://github.com/brianb/mdbtools + zathura-comicbook + https://git.pwmt.org/pwmt/zathura-cb - PisiLinux Community - admins@pisilinux.org + fury + uglyside@yandex.ru - GPLv2 - LGPLv2 + ZLib library - app:console office.misc - MDB Tools is a suite of programs for accessing data stored in Microsoft Access databases - Microsoft Access veritabanı dosyalarında tutulan verilere erişmek için kullanılan araç ve kitaplıklar - mdbtools contains set of libraries and utilities for reading Microsoft Access database (MDB) files. - mdbtools Microsoft Access veritabanı dosyalarını (MDB) okumak için gereken araçları ve kütüphaneleri içermektedir. - https://github.com/brianb/mdbtools/archive/0.7.1.tar.gz + Comic book support for zathura. + The zathura-comicbook plugin adds comic book support to zathura. + https://git.pwmt.org/pwmt/zathura-cb/-/archive/0.1.10/zathura-cb-0.1.10.tar.bz2 - unixODBC-devel - glib2-devel - readline-devel + meson + zathura-devel + libarchive-devel - office/misc/mdbtools/pspec.xml + office/misc/zathura-comicbook/pspec.xml - mdbtools + zathura-comicbook - unixODBC - glib2 - readline + gtk3 + cairo + zathura + gdk-pixbuf + libarchive - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - mdbtools-gui - - - - mdbtools-devel - Development files for mdbtools - mdbtools için geliştirme dosyaları - - mdbtools - - - /usr/include - /usr/lib/pkgconfig - - - - - 2018-08-09 - 0.7.1 - Release Bump - Rebuild with new toolchain - admin@pisilinux.org - - - 2017-03-30 - 0.7.1 - Release Bump - Rebuild with new toolchain - admin@pisilinux.org - - - 2016-06-09 - 0.7.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-20 - 0.7.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - chmlib - http://www.jedrea.com/chmlib/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - office.misc - A library for dealing with Microsoft ITSS/CHM format files - Microsoft ITSS/CHM tipindeki dosyalar için gereken kütüphane - Chmlib est une librairie s'occupant des formats de fichiers Microsoft ITSS/CHM. Pour l'instant, il s'agit d'une librairie toute simple, mais suffisante pour gérer tout les fichiers .chm. - Chmlib is a library for dealing with Microsoft ITSS/CHM format files. Right now, it is a very simple library, but sufficient for dealing with all of the .chm files. - Chmlib, Microsoft ITSS/CHM tipindeki dosyalar için gereken bir kütüphanedir. Şimdilik çok basit bir kütüphanedir ancak tüm .chm dosyalarına erişmek konusunda başarılıdır. - Chmlib es una librería para manejar archivos del formato Microsoft ITSS/CHM. Actualmente es una librería muy simple, pero suficiente para manejar todo tipo de archivos .chm. - http://www.jedrea.com/chmlib/chmlib-0.40.tar.bz2 - office/misc/chmlib/pspec.xml - - - chmlib - - /usr/lib - /usr/bin - /usr/share/doc - - - - chmlib-devel - Development files for chmlib - chmlib için geliştirme dosyaları - - chmlib - - - /usr/include - - - - - 2018-08-07 - 0.40 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-10 - 0.40 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.40 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-20 - 0.40 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - mdds - http://sourceforge.net/projects/hunspell - - PisiLinux Community - admins@pisilinux.org - - MIT - app:gui - office.misc - Multi-dimensional data index algorithm - A collection of multi-dimensional data structure and indexing algorithm. - mdds - https://dev-www.libreoffice.org/src/mdds-2.0.1.tar.bz2 - - boost-devel - - office/misc/mdds/pspec.xml - - - mdds - - boost - - - /usr/share/doc - /usr/share/pkgconfig - - - - mdds-devel - mdds için geliştirme dosyaları - mdds için geliştirme dosyaları - - mdds - - - /usr/include - - - - - 2022-05-05 - 2.0.1 - Ver bump - İdris Kalp - idriskalp@gmail.com - - - 2021-10-21 - 1.7.0 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2021-03-10 - 1.7.0 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2020-02-21 - 1.6.0 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2019-02-12 - 1.4.3 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2018-08-09 - 1.3.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 1.3.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 1.3.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 1.2.2 - Version Bump Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-01-01 - 1.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libetonyek - http://www.freedesktop.org/wiki/Software/libetonyek/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.0 - app:console - office.misc - A library for import of Apple Keynote presentations - Apple keynote sunumları için bir kütüphane - Libetonyek is library providing ability to interpret and import Apple Keynote presentations into various applications. You can find it being used in libreoffice. - Libetonyek çeşitli uygulamalar içine Apple Keynote sunumları yorumlamak ve eklemek için bir kütüphane . Bunu LibreOffice içerisinde zaten kullanılıyor olabilirsiniz. - https://dev-www.libreoffice.org/src/libetonyek/libetonyek-0.1.10.tar.xz - - doxygen - zlib-devel - libxml2-devel - boost-devel - cppunit-devel - librevenge-devel - glm - gperf - liblangtag-devel - mdds-devel - - office/misc/libetonyek/pspec.xml - - - libetonyek - - zlib - libgcc - libxml2 - liblangtag - librevenge - - - /usr/bin - /usr/lib + /usr/lib/zathura /usr/share - - libetonyek-devel - Development files for libetonyek - libetonyek için geliştirme dosyaları - - zlib-devel - libxml2-devel - liblangtag-devel - librevenge-devel - libetonyek - - - /usr/share/doc - /usr/include - /usr/lib/pkgconfig - - - - 2022-05-05 + + 2022-06-11 0.1.10 - Ver bump. - Pisi Linux Community - admin@pisilinux.org - - - 2021-10-21 - 0.1.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2021-03-10 - 0.1.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-22 - 0.1.9 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 0.1.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 0.1.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 0.1.7 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-14 - 0.1.6 - Rebuild - Alihan Öztürk - alihan@pisilinux.org + First build. + fury + uglyside@yandex.ru - kexi - http://www.kexi-project.org/ + zathura-djvu + https://git.pwmt.org/pwmt/zathura-djvu - Alihan Öztürk - alihan@pisilinux.org + fury + uglyside@yandex.ru - GPLv2+ - app:gui - office - A visual database applications creator. - Görsel bir veritabanı uygulaması yaratıcısı. - Kexi is an open source visual database applications creator,a long-awaited competitor for programs like MS Access or Filemaker. - Kexi açık kaynaklı bir görsel veritabanı uygulaması yaratıcısıdır. MS Access veya Filemaker gibi programlar için uzun süredir beklenen bir rakip. - http://download.kde.org/stable/kexi/src/kexi-3.1.0.tar.xz + ZLib + library + office.misc + DjVu support for zathura. + pass + https://git.pwmt.org/pwmt/zathura-djvu/-/archive/0.2.9/zathura-djvu-0.2.9.tar.bz2 - extra-cmake-modules - kxmlgui-devel - kwidgetsaddons-devel - ktextwidgets-devel - ktexteditor-devel - kio-devel - kitemviews-devel - kiconthemes-devel - ki18n-devel - kguiaddons-devel - kcoreaddons-devel - kconfigwidgets-devel - kconfig-devel - kcompletion-devel - kcodecs-devel - karchive-devel - qt5-base-devel - kdb-devel - kreport-devel - qt5-webkit-devel - breeze-icons - marble-devel - kproperty-devel - kcrash-devel - qt5-designer + meson + djvu-devel + zathura-devel - - 0001-fix-build-with-qt-5-11.patch - - office/kexi/pspec.xml + office/misc/zathura-djvu/pspec.xml - kexi - A visual database applications creator. + zathura-djvu - kdb - kio - glib2 - ki18n - kcrash - libgcc - kcodecs - kconfig - kreport - kxmlgui - qt5-base - kproperty - kguiaddons - kitemviews - qt5-webkit - kcompletion - kcoreaddons - kiconthemes - ktexteditor - ktextwidgets - kconfigwidgets - kwidgetsaddons + djvu + cairo + zathura - /usr/bin - /usr/lib - /usr/lib/qt5 + /usr/lib/zathura /usr/share - /usr/share/locale - /usr/share/metainfo - /usr/share/kexi - /usr/share/applications - - 2019-01-20 - 3.1.0 - Rebuild. - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-09-10 - 3.1.0 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2017-10-14 - 3.0.2 - Version bump - Mustafa Cinasl - muscnsl@gmail.com - - 2017-01-07 - 3.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org + 2022-06-11 + 0.2.9 + First build. + fury + uglyside@yandex.ru - opensp - http://openjade.sourceforge.net + zathura-pdf-poppler + https://git.pwmt.org/pwmt/zathura-pdf-poppler - PisiLinux Community - admins@pisilinux.org + fury + uglyside@yandex.ru - as-is - app:console - office.docbook - A SGML parsing and entity management toolkit - SGML ayrıştırma araç seti - OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project. - OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır. - mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz + ZLib + library + office.misc + PDF support (poppler backend) for zathura. + The zathura-pdf-poppler plugin adds PDF support to zathura by using the poppler rendering library. + https://git.pwmt.org/pwmt/zathura-pdf-poppler/-/archive/0.3.0/zathura-pdf-poppler-0.3.0.tar.bz2 - docbook-xml - libgcc + meson + zathura-devel + poppler-glib-devel - - opensp-1.5-gcc34.patch - opensp-sigsegv.patch - - office/docbook/opensp/pspec.xml + office/misc/zathura-pdf-poppler/pspec.xml - opensp + zathura-pdf-poppler - libgcc + cairo + zathura + poppler-glib - /usr/bin - /usr/share/doc/opensp - /usr/share/man - /usr/lib - /usr/share/locale - /usr/share/sgml - - - - opensp-devel - Development files for opensp - opensp için geliştirme dosyaları - - opensp - - - /usr/include + /usr/lib/zathura + /usr/share - - 2020-01-08 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-25 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2014-05-18 - 1.5.2 - First release - Serdar Soytetir - kaptan@pisilinux.org + 2022-06-11 + 0.3.0 + First build. + fury + uglyside@yandex.ru - itstool - http://itstool.org/ + zathura-postscript + https://git.pwmt.org/pwmt/zathura-ps - PisiLinux Community - admins@pisilinux.org + fury + uglyside@yandex.ru - GPLv3 - office.docbook - XML to PO and back again - XML to PO and back again - http://files.itstool.org/itstool/itstool-2.0.6.tar.bz2 - office/docbook/itstool/pspec.xml + ZLib + library + office.misc + PostScript support for zathura. + pass + https://git.pwmt.org/pwmt/zathura-ps/-/archive/0.2.7/zathura-ps-0.2.7.tar.bz2 + + meson + zathura-devel + libspectre-devel + + office/misc/zathura-postscript/pspec.xml - itstool + zathura-postscript + + cairo + zathura + libspectre + - /usr + /usr/lib/zathura + /usr/share - - 2020-02-07 - 2.0.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-25 - 2.0.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-11 - 2.0.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 2.0.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2014-05-18 - 2.0.2 - First release - Serdar Soytetir - kaptan@pisilinux.org + 2022-06-11 + 0.2.7 + First build. + fury + uglyside@yandex.ru - yelp-xsl - http://www.gnome.org + zekr + http://sourceforge.net/projects/zekr - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org GPLv2 - LGPLv2.1 - data - office.docbook - Yelp XSLT Stylesheets - Yelp XSL biçim dosyaları - Package of yelp-xsl contains XSL stylesheets that are used by the yelp help browser. - yelp-xsl paketi, yelp yardım görüntüleyicisi tarafından kullanılan XSL biçim dosyalarını taşır. - mirrors://gnome/yelp-xsl/41/yelp-xsl-41.1.tar.xz - - libxml2-devel - itstool - - office/docbook/yelp-xsl/pspec.xml - - - yelp-xsl - - /usr/share/locale - /usr/share/doc - /usr/share/yelp-xsl - - - - yelp-xsl-devel - Development files for yelp-xsl - yelp-xsl paketi için geliştirme dosyaları - - yelp-xsl - - - /usr/share/pkgconfig - - - - - 2021-12-05 - 41.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 41.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 40.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-24 - 40.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-01 - 3.38.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-13 - 3.34.2 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - openjade - http://openjade.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - office.docbook - An implementation of DSSSL - Bir DSSSL uyarlaması - OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents. - OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır. - http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz - - sgml-common - opensp-devel - libgcc - + app:gui + office.misc + Quran study software + Kur'an-ı Kerim eğitim uygulaması + Zekr is an open source Quran study software that is designed to ease access to the content of the Quran. It provides translations, recitation, search and some other features. + Zekr, Kur'an-ı Kerim'in içeriğine erişimi kolaylaştıran ve çeviri, ezberleme gibi çeşitli özellikler sunan bir çalışma uygulamasıdır. + zekr + http://sourceforge.net/projects/zekr/files/Zekr/zekr-1.1.0/zekr-1.1.0-linux_64.tar.gz - openjade-1.3.2-ldflags.patch - openjade-1.3.2-respect-ldflags.patch - openjade-1.3.2-msggen.pl.patch + use-webkitgtk.patch - office/docbook/openjade/pspec.xml + office/misc/zekr/pspec.xml - openjade + zekr - sgml-common - opensp - libgcc + jre8-openjdk + webkit-gtk2 + gsettings-desktop-schemas + /usr/share + /usr/share/doc /usr/bin - /usr/lib - /usr/share/doc/openjade - /usr/share/sgml + /usr/share/java - - System.Package - - openjade-1.3.2.dsssl-catalog - openjade-1.3.2.catalog + zekr.png + zekr.desktop + + + + zekr-trans-de + Quran translation in German + Almanca Kur'an-ı Kerim çevirisi + + zekr + + + /usr/share/java/zekr/res/text/trans/de.* + + + translations/de.bubenheim.trans.zip + + + + zekr-trans-es + Quran translation in Spanish + İspanyolca Kur'an-ı Kerim çevirisi + + zekr + + + /usr/share/java/zekr/res/text/trans/es.* + + + translations/es.asad.trans.zip + + + + zekr-trans-fr + Quran translation in French + Fransızca Kur'an-ı Kerim çevirisi + + zekr + + + /usr/share/java/zekr/res/text/trans/fr.* + + + translations/fr.hamidullah.trans.zip + + + + zekr-trans-it + Quran translation in Italian + İtalyanca Kur'an-ı Kerim çevirisi + + zekr + + + /usr/share/java/zekr/res/text/trans/it.* + + + translations/it.piccardo.trans.zip + + + + zekr-trans-tr + Quran translation in Turkish + Türkçe Kur'an-ı Kerim çevirisi + + zekr + + + /usr/share/java/zekr/res/text/trans/tr.* + + + translations/tr.diyanet.trans.zip + translations/tr.yazir.trans.zip - - 2020-01-08 - 1.3.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-25 - 1.3.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.3.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - 2016-06-09 - 1.3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2021-03-10 + 1.1.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org - 2014-05-18 - 1.3.2 + 2018-12-03 + 1.1.0 First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - docbook-sgml4_5 - http://www.docbook.org/sgml/ - - PisiLinux Community - admins@pisilinux.org - - X11 - data - office.docbook - Docbook SGML DTD 4.5 - Docbook SGML DTD 4.5 - Contains Docbook SGML DTD version 4.5. - Docbook SGML DTD sürüm 4.5 belgelerini içerir. - http://www.docbook.org/sgml/4.5/docbook-4.5.zip - - catalog.patch - - office/docbook/docbook-sgml4_5/pspec.xml - - - docbook-sgml4_5 - - sgml-common - - - /usr/share/doc/docbook-sgml4_5 - /usr/share - - - System.Package - - - - - 2021-06-29 - 4.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-25 - 4.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-04 - 4.5 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-18 - 4.5 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - docbook2x - http://docbook2x.sourceforge.net - - Osman Erkan - osman.erkan@pisilinux.org - - MIT - app:gui - office.docbook - docbook2X converts DocBook documents to man and Texinfo format. - docbook2X is a software package that converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format. - docbook2X is a software package that converts DocBook documents into the traditional Unix man page format and the GNU Texinfo format. - http://downloads.sourceforge.net/project/docbook2x/docbook2x/0.8.8/docbook2X-0.8.8.tar.gz - - docbook-xml - libxml2-devel - libxslt-devel - perl-XML-SAX - - - docbook2X-0.8.8-error_on_missing_refentry.patch - docbook2X-0.8.8-filename_whitespace_handling.patch - docbook2X-0.8.8-preprocessor_declaration_syntax.patch - - office/docbook/docbook2x/pspec.xml - - - docbook2x - - docbook-xml - libxml2 - libxslt - perl-XML-SAX - - - /usr/bin - /usr/share/man - /usr/share/doc - /usr/share - - - - - 2021-06-29 - 0.8.8 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 0.8.8 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-12-12 - 0.8.8 - First release - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org @@ -296445,173 +259980,553 @@ from a wide variety of machine architectures. - homebank - http://homebank.free.fr + aspell + http://aspell.net/ - Stefan Gronewold (groni) - groni@pisilinux.org + PisiLinux Community + admins@pisilinux.org - GPLv2 - app:gui - office - Free, easy, personal accounting for everyone - Protein dizi analizi için profil SMM (Saklı Markov Modeli) yazılımı - «HomeBank» is free software that will assist you to manage your personal accounting. - HomeBank ("serbest konuşma" olarak ve "bedava bira" gibi) kişisel muhasebe yönetmek için yardımcı olacak ücretsiz bir yazılımdır.. - homebank - http://homebank.free.fr/public/homebank-5.2.tar.gz + LGPLv2 + app:console + office.spellcheck + A multi-language spellchecker + Bir yazım kontrol aracı + Ce programme rend possible de vérifier facilement les documents en UTF-8 sans avoir à utiliser un dictionnaire spécial. + Aspell is a spellchecker that has dictionaries for more than one language and is written as a replacement to ispell. + GNU Aspell birden fazla dil destekleyen bir yazım kontrol aracıdır. + mirrors://gnu/aspell/aspell-0.60.8.tar.gz - cairo-devel - pango-devel - gdk-pixbuf-devel - pixman-devel - gtk3-devel - glib2-devel - gettext-devel - pkgconfig - libofx-devel - intltool - libsoup-devel - at-spi2-core-devel + ncurses-devel - office/homebank/pspec.xml + + fedora/aspell-0.60.7-fileconflict.patch + fedora/aspell-0.60.7-mp.patch + fedora/aspell-0.60.7-pspell_conf.patch + + office/spellcheck/aspell/pspec.xml - homebank + aspell - cairo - libofx - pango - gdk-pixbuf - gtk3 - glib2 - libsoup + libgcc + ncurses /usr/bin - /usr/share/applications - /usr/share/application-registry /usr/lib - /usr/share + /usr/share/aspell /usr/share/doc + /usr/share/man + /usr/share/info /usr/share/locale - /usr/share/icons/hicolor - homebank-data - Data Files for Homebank + aspell-devel + Development files for aspell + aspell için geliştirme dosyaları + + aspell + - /usr/share/homebank/datas - /usr/share/mime-info + /usr/include + /usr/share/info/aspell-dev.info + + 2021-05-25 + 0.60.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + - 2018-09-10 - 5.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-15 + 0.60.8 + Version bump + Pisi Linux Community + admin@pisilinux.org - 2018-04-15 - 5.1.8 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2018-09-16 + 0.60.6.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org - 2017-01-21 - 5.1.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2017-02-28 + 0.60.6.1 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org 2016-06-09 - 5.0.5 + 0.60.6.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-03 - 5.0.5 + 2014-05-25 + 0.60.6.1 First release - Stefan Gronewold (groni) + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + enchant + https://www.abisource.com/enchant/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + office.spellcheck + Spellchecker wrapping library + İmla denetimi kitaplığı + enchant is a library that wraps other spell checking backends. + enchant, diğer imla denetim kitaplıklarını arkauç olarak kullanan bir imla denetim kitaplığıdır. + http://www.abisource.com/downloads/enchant/1.6.0/enchant-1.6.0.tar.gz + + aspell-devel + hunspell-devel + glib2-devel + dbus-glib-devel + + office/spellcheck/enchant/pspec.xml + + + enchant + + glib2 + hunspell + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/enchant + + + + enchant-aspell + aspell backend for Enchant + Enchant için aspell arkaucu + + enchant + aspell + + + /usr/lib/enchant/libenchant_aspell.so + + + + enchant-zemberek + zemberek backend for Enchant + Enchant için zemberek arkaucu + + enchant + zemberek-office + + + /usr/lib/enchant/libenchant_zemberek.so + + + + enchant-devel + Development files for enchant + enchant için geliştirme dosyaları + + enchant + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-15 + 1.6.0 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2019-01-26 + 1.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.6.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 1.6.0 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 1.6.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + enchant2 + https://abiword.github.io/enchant/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + office.spellcheck + Spellchecker wrapping library + İmla denetimi kitaplığı + enchant is a library that wraps other spell checking backends. + enchant2, diğer imla denetim kitaplıklarını arkauç olarak kullanan bir imla denetim kitaplığıdır. + https://github.com/AbiWord/enchant/archive/v2.3.0.tar.gz + + dbus-glib-devel + hunspell-devel + aspell-devel + glib2-devel + gnupg + git + + office/spellcheck/enchant2/pspec.xml + + + enchant2 + Spellchecker wrapping library + + glib2 + hunspell + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/enchant + + + + enchant2-aspell + aspell backend for Enchant + Enchant2 için aspell arkaucu + enchant2-aspell, enchant2 için aspell arkaucu sağlar. + + enchant2 + aspell + + + /usr/lib/enchant-2/enchant_aspell.so + + + + enchant2-zemberek + zemberek backend for Enchant + Enchant2 için zemberek arkaucu + enchant2-zemberek, enchant2 için zemberek arkaucu sağlar. + + enchant2 + zemberek-office + + + /usr/lib/enchant-2/enchant_zemberek.so + + + + enchant2-devel + Development files for enchant2 + enchant2 için geliştirme dosyaları + enchant2-devel, enchant2 için geliştirme dosyaları sağlar. + + enchant2 + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-06-30 + 2.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 2.2.7 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-04-06 + 2.2.3 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + hunspell + http://hunspell.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + GPLv2 + LGPLv2.1 + library + app:console + office.spellcheck + An improved spell checker + Gelişmiş imla denetleyici + hunspell spell checker is an improved replacement for myspell in Openoffice.org. It is also used in Firefox and Thunderbird as spell checker. + hunspell, OpenOffice.org'daki myspell yerine kullanılabilen gelişmiş bir imla denetleyicidir. Aynı zamanda, Firefox ve Thunderbird'de imla denetleyici olarak kullanılmaktadır. + https://github.com/hunspell/hunspell/archive/v1.7.0.tar.gz + + gettext-devel + ncurses-devel + readline-devel + + office/spellcheck/hunspell/pspec.xml + + + hunspell + + ncurses + libgcc + readline + + + /usr/lib + /usr/bin + /usr/share/locale + /usr/share/man + /usr/share/doc + + + ispellaff2myspell + wordlist2hunspell + + + + hunspell-devel + Development files for hunspell + hunspell için geliştirme dosyaları + + hunspell + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/*.a + /usr/share/man/man3 + + + + + 2020-01-15 + 1.7.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-06 + 1.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-16 + 1.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.6.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.3.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-10 + 1.3.3 + First release + Vedat Demir + vedat@pisilinux.com + + + + + + qtspell + https://github.com/manisandro/qtspell + + Stefan Gronewold + groni@pisilinux.org + + GPL3 + office.spellcheck + Spell checking for Qt text widgets + QtSpell adds spell-checking functionality to Qt's text widgets, using the enchant spell-checking library. + https://github.com/manisandro/qtspell/archive/0.8.5.tar.gz + + cmake + doxygen + enchant2-devel + pkgconfig + qt5-assistant-devel + qt5-base-devel + qt5-designer-devel + qt5-linguist + glib2-devel + + office/spellcheck/qtspell/pspec.xml + + + qtspell + Spell checking for Qt text widgets + + qt5-base + enchant2 + libgcc + + + /usr/lib + /usr/share/qt5/translations + /usr/include/QtSpell-qt5 + /usr/share/doc + + + + + 2019-04-24 + 0.8.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-16 + 0.8.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-09 + 0.8.2 + First Release + Stefan Gronewold groni@pisilinux.org - cherrytree - https://www.giuspen.com/cherrytree/ + zemberek-office + http://code.google.com/p/zemberek/ - Pisilinux Community + PisiLinux Community admins@pisilinux.org - GPL-3 - app:gui - office - Cherrytree A hierarchical note taking application. - A hierarchical note taking application, featuring rich text and syntax highlighting, storing data in a single xml or sqlite file. - https://github.com/giuspen/cherrytree/releases/download/0.99.44/cherrytree_0.99.44.tar.xz - - cmake - ninja - fmt-devel - curl-devel - spdlog-devel - gtkmm3-devel - glibmm-devel - gspell-devel - sqlite-devel - python3-devel - uchardet-devel - libxml++26-devel - gtksourceviewmm3-devel - - office/cherrytree/pspec.xml + BSD + data + office.spellcheck + Zemberek integration package for LibreOffice office suite + LibreOffice Türkçe ofis yazılımı için Zemberek uyumu + zemberek-openoffice integrates Zemberek into LibreOffice. + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/zemberek/zemberek-ooo-1.0_rc4.oxt + office/spellcheck/zemberek-office/pspec.xml - cherrytree + zemberek-office - curl - gtk3 - atkmm - cairo - glib2 - pango - glibmm - gspell - gtkmm3 - libgcc - sqlite - cairomm - libxml2 - pangomm - uchardet - libsigc++ - libxml++26 - gtksourceviewmm3 + jre8-openjdk + libreoffice - /usr/bin - /usr/share - /usr/share/cherrytree - /usr/share/locale - /usr/share/man + /usr/lib/libreoffice/share/extensions + + 2019-09-29 + 1.0_rc4 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-05-29 + 1.0_rc4 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2019-04-26 + 1.0_rc4 + Rebuild + Mustafa Cinasal + muscnsl@pisilinux.org + - 2021-12-18 - 0.99.44 - First 2.2 Beta build. - fury - uglyside@yandex.ru + 2018-03-23 + 1.0_rc4 + Fist release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org @@ -296737,1010 +260652,1025 @@ from a wide variety of machine architectures. - mindforger - https://github.com/dvorka/mindforger + zim + https://zim-wiki.org/ - PisiLinux Community - admins@pisilinux.org + fury + uglyside@yandex.ru - GPLv2 - library + GPL-2 + app:gui office - MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security. - MindForger is open, free, well performing Markdown IDE which respects your privacy and enables security. - MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir. - MindForger gizliliğinize saygı duyan ve güvenliği sağlayan açık, ücretsiz ve iyi performans gösteren Markdown IDE'dir. - https://github.com/dvorka/mindforger/releases/download/1.48.0/mindforger_1.48.2.tgz + A Desktop Wiki. + Zim is a graphical text editor used to maintain a collection of wiki pages. Each page can contain links to other pages, simple formatting and images. Pages are stored in a folder structure, like in an outliner, and can have attachments. Creating a new page is as easy as linking to a nonexistent page. All data is stored in plain text files with wiki formatting. Various plugins provide additional functionality, like a task list manager, an equation editor, a tray icon, and support for version control. + https://zim-wiki.org/downloads/zim-0.74.3.tar.gz - ccache - zlib-devel - qt5-base-devel - qt5-webkit-devel - icon-theme-hicolor + xdg-utils + gtk3-devel + python3-xdg + python3-devel + python3-pygobject3-devel - office/mindforger/pspec.xml + office/zim/pspec.xml - mindforger + zim - qt5-base - qt5-webkit - zlib - libgcc + gtk3 + python3 + xdg-utils + python3-xdg + python3-pygobject3 + gobject-introspection /usr/bin /usr/lib /usr/share - /usr/share/icons - /usr/share/applications - /usr/share/man - /usr/share/doc + /usr/share/zim + /usr/share/locale + /usr/share/man/man1 - - 2019-02-25 - 1.48.2 - remove static discount libs. - Ertuğrul Erata - ertugrulerata@gmail.com - - 2019-01-28 - 1.48.2 - First release - PisiLinux Community - admins@pisilinux.org + 2021-12-14 + 0.74.3 + First build. + fury + uglyside@yandex.ru - calligra-plan - https://www.calligra-suite.org/ + ant + http://ant.apache.org PisiLinux Community admins@pisilinux.org - LGPL FDL1.2 - app:gui - office.calligra - A project management application intended for managing moderately large projects with multiple resources - A project management application intended for managing moderately large projects with multiple resources - Birden fazla kaynağa sahip ılımlı büyük projeleri yönetmek için tasarlanmış bir proje yönetimi uygulaması - Birden fazla kaynağa sahip ılımlı büyük projeleri yönetmek için tasarlanmış bir proje yönetimi uygulaması - https://download.kde.org/stable/calligra/3.3.0/calligraplan-3.3.0.tar.xz + Apache-2.0 + app:console + programming.build + Java-based build tool + Java tabanlı inşa aracı + Apache Ant is a Java-based build tool. In theory, it is kind of like Make, but without Make's wrinkles. + Apache ant Java tabanlı bir inşa aracıdır. Teorik olarak make'e benzemektedir ancak make'in kırışıksız halidir + Apache Ant es una herramienta de compilación (build) basado en Java. Teróricamente se puede comparar con Make, pero sin las vueltas que tiene aquel. + http://archive.apache.org/dist/ant/source/apache-ant-1.10.9-src.tar.xz - extra-cmake-modules - qca2-qt5-devel - kholidays-devel - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - qt5-x11extras-devel - kcmutils-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kinit-devel - kio-devel - kitemviews-devel - kjobwidgets-devel - knotifyconfig-devel - kross-devel - ktextwidgets-devel - kwallet-devel - kwidgetsaddons-devel - kwindowsystem-devel - kxmlgui-devel - sonnet-devel - akonadi-contacts-devel - kdbusaddons-devel - akonadi-devel - kactivities-devel - knotifications-devel - karchive-devel - kproperty-devel - kreport-devel - kcodecs-devel - kdiagram-devel - kparts-devel - libX11-devel - zlib-devel - perl + jdk8-openjdk - office/calligra/calligra-plan/pspec.xml + programming/build/ant/pspec.xml - calligra-plan - - kio - ki18n - kparts - libgcc - kconfig - kwallet - kxmlgui - karchive - kdiagram - kservice - qt5-base - qca2-qt5 - kholidays - kitemviews - kactivities - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - ktextwidgets - kwindowsystem - qt5-x11extras - kconfigwidgets - knotifications - kwidgetsaddons - + ant + /etc + /usr/share/ /usr/bin - /etc/xdg - /usr/lib - /usr/share - /usr/share/locale - /usr/share/metainfo + + + ant.conf + ant.sh + ant.csh + + + + ant-docs + Documentation package for ant build system + /usr/share/doc - - 2021-03-10 - 3.3.0 - Version bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - 2020-04-12 - 3.2.2 + 2021-03-10 + 1.10.9 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + İdris Kalp + idriskalp@gmail.com - 2019-12-01 - 3.2.1 + 2020-06-04 + 1.9.15 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2019-11-25 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-19 + 1.9.14 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2018-09-10 - 3.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2019-09-22 + 1.9.14 + Rebuild jdk7-2.6.19. + Pisi Linux Community + admin@pisilinux.org - 2018-03-28 - 3.1.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2019-04-29 + 1.9.14 + Rebuild jdk7-2.6.14. + Pisi Linux Community + admin@pisilinux.org - 2018-02-07 - 3.1.0 - Release bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-08-16 + 1.9.9 + Rebuild jdk7-2.6.14. + Pisi Linux Community + admin@pisilinux.org - 2017-07-23 - 3.0.1 - Release bump. - Ali Algul - aligulle3801@gmail.com + 2018-01-16 + 1.9.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2017-04-05 - 3.0.0.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org + 2017-01-28 + 1.9.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2017-01-07 - 3.0.0.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-06 - 3.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - calligra - http://www.calligra-suite.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - LGPL - FDL1.2 - app:gui - office.calligra - Office and graphic art suite by KDE - KDE'den ofis ve grafik sanatı paketi - Calligra is a free, integrated office suite for KDE. The application suite consists of a word-processor, a spreadsheet application, a presentation creator and viewer application, an organizer and more. - Calligra, KDE için ücretsiz, entegre bir ofis paketidir. Uygulama paketi, bir kelime işlemci, bir elektronik tablo uygulaması, bir sunum oluşturucu ve görüntüleyici uygulaması, bir düzenleyici ve daha fazlasını içerir. - https://invent.kde.org/office/calligra/-/archive/master/calligra-master.tar.gz - - qt5-base-devel - qt5-declarative-devel - qt5-svg-devel - qt5-x11extras-devel - qt5-quickcontrols2-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-webkit-devel - extra-cmake-modules - karchive-devel - kcodecs-devel - kcompletion-devel - kconfig-devel - kconfigwidgets-devel - kcoreaddons-devel - kdbusaddons-devel - kdoctools-devel - kguiaddons-devel - ki18n-devel - kiconthemes-devel - kitemviews-devel - kdelibs4-support-devel - kio-devel - kross-devel - kparts-devel - sonnet-devel - kholidays-devel - ktexteditor-devel - ktextwidgets-devel - threadweaver-devel - kwallet-devel - kwidgetsaddons-devel - kwindowsystem-devel - kjobwidgets-devel - kxmlgui-devel - knotifyconfig-devel - knotifications-devel - kcmutils-devel - kdesignerplugin - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - kactivities-devel - khtml-devel - kcontacts-devel - akonadi-contacts-devel - akonadi-devel - kdiagram-devel - kreport-devel - kproperty-devel - qca2-qt5-devel - marble-devel - lcms2-devel - okular-devel - libwpg-devel - libvisio-devel - libwpd-devel - poppler-devel - poppler-qt5-devel - libspnav-devel - eigen3 - fontconfig-devel - freetype-devel - openjpeg-devel - gsl-devel - boost-devel - libetonyek-devel - libodfgen-devel - libvc-devel - libwps-devel - openexr-devel - pstoedit-devel - libX11-devel - libgit2-devel - zlib-devel - imath-devel - djvu-devel - cauchy-devel - libzip-devel - libspectre-devel - ebook-tools-devel - - office/calligra/calligra/pspec.xml - - - calligra - - fontconfig - freetype - gsl - imath - kactivities - karchive - kcmutils - kcodecs - kcompletion - kconfig - kconfigwidgets - kcoreaddons - kdbusaddons - kdelibs4-support - kdiagram - kguiaddons - khtml - ki18n - kiconthemes - kio - kitemviews - kjobwidgets - knotifications - knotifyconfig - kross - kservice - ktextwidgets - kwallet - kwidgetsaddons - kwindowsystem - kxmlgui - pstoedit - lcms2 - libetonyek - libgcc - libodfgen - librevenge - libspnav - libvisio - libwpg - okular - poppler-qt5 - poppler - qca2-qt5 - qt5-base - qt5-declarative - qt5-phonon - qt5-quickcontrols2 - qt5-svg - qt5-webkit - qt5-x11extras - sonnet - zlib - kcrash - libwpd - libwps - libgit2 - djvu - cauchy - libzip - libspectre - ebook-tools - - - /etc/xdg/braindump - /etc/xdg/calligra_stencils.knsrc - /etc/xdg/calligrasheetsrc - /etc/xdg/calligrastagerc - /etc/xdg/calligrawordsrc - /etc/xdg/karbonrc - /usr/share/calligrasheets/dtd - /usr/share/calligrasheets/functions - /usr/share/calligrasheets/icons/hicolor/*/actions - /usr/share/calligrasheets/icons/hicolor/scalable/actions - /usr/share/calligrasheets/icons/hicolor/scalable - /usr/share/calligrasheets/scripts/docker - /usr/share/calligrasheets/scripts/extensions - /usr/share/calligrasheets/scripts/functions - /usr/share/calligrasheets/scripts - /usr/share/calligrasheets/sheetstyles - /usr/share/calligrasheets/templates/Business - /usr/share/calligrasheets/templates/General - /usr/share/calligrasheets/templates/HomeFamily - /usr/share/calligrasheets/templates - /usr/share/calligrasheets/viewplugins - /usr/share/calligrasheets - /usr/share/calligrastage/animations - /usr/share/calligrastage/cursors - /usr/share/calligrastage/icons/hicolor/*/actions - /usr/share/calligrastage/icons/hicolor/scalable/actions - /usr/share/calligrastage/icons/hicolor/scalable - /usr/share/calligrastage/pics - /usr/share/calligrastage/styles - /usr/share/calligrastage/templates/Screen - /usr/share/calligrastage/templates/exportHTML/templates - /usr/share/calligrastage/templates/exportHTML - /usr/share/calligrastage/templates/odf - /usr/share/calligrastage/templates - /usr/share/calligrastage - /usr/share/calligrawords/icons/hicolor/*/actions - /usr/share/calligrawords/icons/hicolor/scalable/actions - /usr/share/calligrawords/icons/hicolor/scalable - /usr/share/calligrawords/styles - /usr/share/calligrawords/templates/Normal - /usr/share/calligrawords/templates - /usr/share/calligrawords - /usr/share/color/icc/calligra - /usr/share/color/icc - /usr/share/color - /usr/share/configkcfg - /usr/share/doc/HTML/*/calligra - /usr/share/doc/HTML/*/sheets - /usr/share/doc/HTML/*/stage - /usr/share/doc/calligra - /usr/share/doc - /usr/share/icons/hicolor/*/apps - /etc/xdg - /usr/bin - /usr/lib - /usr/lib/qt5 - /usr/lib/qt5/plugins/calligra/colorspaces - /usr/lib/qt5/plugins/calligra/devices - /usr/lib/qt5/plugins/calligra/dockers - /usr/lib/qt5/plugins/calligra/formatfilters - /usr/lib/qt5/plugins/calligra/parts - /usr/lib/qt5/plugins/calligra/presentationeventactions - /usr/lib/qt5/plugins/calligra/shapefiltereffects - /usr/lib/qt5/plugins/calligra/shapes - /usr/lib/qt5/plugins/calligra/textediting - /usr/lib/qt5/plugins/calligra/textinlineobjects - /usr/lib/qt5/plugins/calligra/tools - /usr/lib/qt5/plugins/calligra - /usr/lib/qt5/plugins/calligrasheets/extensions - /usr/lib/qt5/plugins/calligrasheets/functions - /usr/lib/qt5/plugins/calligrasheets - /usr/lib/qt5/plugins/calligrastage/pageeffects - /usr/lib/qt5/plugins/calligrastage/shapeanimations - /usr/lib/qt5/plugins/calligrastage/tools - /usr/lib/qt5/plugins/calligrastage - /usr/lib/qt5/plugins/karbon/extensions - /usr/lib/qt5/plugins/karbon - /usr/lib/qt5/plugins/okular/generators - /usr/lib/qt5/plugins/okular - /usr/lib/qt5/plugins - /usr/lib/qt5/qml/Calligra/Gemini/Dropbox - /usr/lib/qt5/qml/Calligra/Gemini/Git - /usr/lib/qt5/qml/Calligra/Gemini - /usr/lib/qt5/qml/Calligra - /usr/lib/qt5/qml/org/kde/calligra - /usr/lib/qt5/qml/org/kde - /usr/lib/qt5/qml/org - /usr/lib/qt5/qml - /usr/share/applications - /usr/share/calligra/autocorrect - /usr/share/calligra/cursors - /usr/share/calligra/icons/hicolor/*/actions - /usr/share/calligra/icons/hicolor/*/mimetypes - /usr/share/calligra/icons/hicolor/scalable - /usr/share/calligra/icons/hicolor/scalable/actions - /usr/share/calligra/palettes - /usr/share/calligra/pics - /usr/share/calligra/stencils/Assorted - /usr/share/calligra/stencils/BPMN - /usr/share/calligra/stencils/Basic_Flowchart - /usr/share/calligra/stencils/Building_Site - /usr/share/calligra/stencils/CMOS - /usr/share/calligra/stencils/Central_Data_Processing - /usr/share/calligra/stencils/ChemEng - /usr/share/calligra/stencils/Circuit2 - /usr/share/calligra/stencils/Circuit - /usr/share/calligra/stencils/Cisco - /usr/share/calligra/stencils/Civil - /usr/share/calligra/stencils/Contact - /usr/share/calligra/stencils/Cybernetics - /usr/share/calligra/stencils/Digital - /usr/share/calligra/stencils/Edpc - /usr/share/calligra/stencils/Electric2 - /usr/share/calligra/stencils/Electric - /usr/share/calligra/stencils/Electronic - /usr/share/calligra/stencils/Flags - /usr/share/calligra/stencils/Gane_and_Sarson - /usr/share/calligra/stencils/Jigsaw - /usr/share/calligra/stencils/LST - /usr/share/calligra/stencils/Lights - /usr/share/calligra/stencils/Logic - /usr/share/calligra/stencils/MSE - /usr/share/calligra/stencils/Map - /usr/share/calligra/stencils/Misc - /usr/share/calligra/stencils/Network - /usr/share/calligra/stencils/Optics - /usr/share/calligra/stencils/Pneumatic - /usr/share/calligra/stencils/RDP - /usr/share/calligra/stencils/Racks - /usr/share/calligra/stencils/Renewable_Energy - /usr/share/calligra/stencils/SDL - /usr/share/calligra/stencils/Scenegraph - /usr/share/calligra/stencils/Sybase - /usr/share/calligra/stencils/Value_Stream_Mapping - /usr/share/calligra/stencils - /usr/share/calligra/styles - /usr/share/calligra/thesaurus - /usr/share/calligra - /usr/share/calligra_shape_music/fonts - /usr/share/calligra_shape_music - /usr/share/calligragemini/qml/components - /usr/share/calligragemini/qml/panels/notespanelpages - /usr/share/calligragemini/qml/panels - /usr/share/calligragemini/qml/welcomepages/cloud/dropbox - /usr/share/calligragemini/qml/welcomepages/cloud/git - /usr/share/calligragemini/qml/welcomepages/cloud - /usr/share/calligragemini/qml/welcomepages - /usr/share/calligragemini/qml - /usr/share/calligragemini/themes/default/fonts - /usr/share/calligragemini/themes/default/icons - /usr/share/calligragemini/themes/default/images - /usr/share/calligragemini/themes/default - /usr/share/calligragemini/themes - /usr/share/calligragemini - /usr/share/icons/hicolor/scalable/apps - /usr/share/icons/hicolor/scalable - /usr/share/karbon/gradients - /usr/share/karbon/icons/hicolor/*/actions - /usr/share/karbon/palettes - /usr/share/karbon/plugins - /usr/share/karbon/templates/Basic - /usr/share/karbon/templates - /usr/share/karbon - /usr/share/kservices5/ServiceMenus/calligra - /usr/share/kservices5/ServiceMenus - /usr/share/kservices5 - /usr/share/kxmlgui5/calligrasheets - /usr/share/kxmlgui5/calligrastage - /usr/share/kxmlgui5/calligrawords - /usr/share/kxmlgui5/karbon - /usr/share/kxmlgui5 - /usr/share/locale/*/LC_MESSAGES - /usr/share/metainfo - /usr/share/mime - /usr/share/mime/packages - /usr/share/templates - /usr/share - - - - - 2021-11-30 - 3.2.1 - Fix build - Kamil Atlı - suvari@pisilinux.org - - - 2021-03-05 - 3.2.1 - Version Bump - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2018-09-10 - 3.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-21 - 3.1.0 - Release bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-23 - 3.0.1 - Release bump. - Ali Algul - aligulle3801@gmail.com - - - 2017-04-05 - 3.0.0.1 - Release bump. - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-07 - 3.0.0.1 - Version bump - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-06 - 3.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - medit - http://mooedit.sourceforge.net/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv2 - app:gui - editor - Multiplatform GTK text editor - Sekme özelliğine sahip bir metin düzenleyicisi - Medit is a text editor. Started originally as a simple built-in editor component in GGAP, it grew up to a real text editor. The intention now is to make it a useful programming and around-programming text editor. - Medit, sekme özelliğine sahip hızlı ve kullanışlı bir metin düzenleyicisidir. - medit - mirrors://sourceforge/mooedit/medit-1.2.92-devel.tar.bz2 - - python-gtk-devel - python-devel - intltool - gtk2-devel - atk-devel - cairo-devel - gettext-devel - pkgconfig - glib2-devel - libX11-devel - python3-devel - libxml2-devel - gtk2-devel - pango-devel - lua-devel - libSM-devel - libICE-devel - shared-mime-info - gdk-pixbuf-devel - - - desktop-tr.patch - fix_help_dir.patch - - editor/medit/pspec.xml - - - medit - - gtk2 - atk - glib2 - libX11 - libgcc - python - libxml2 - cairo - pango - libSM - libICE - gdk-pixbuf - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/medit - /usr/share/pixmaps - /usr/share/doc - /usr/share/man - - - - - 2020-02-09 - 1.2.92 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 1.2.92 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-15 - 1.2.92 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-05 - 1.2.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-15 - 1.2.0 + 2016-06-09 + 1.9.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-08 - 1.2.0 + 2016-01-25 + 1.9.6 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - libmspub - http://www.freedesktop.org/wiki/Software/libmspub + ccache + https://ccache.samba.org/ PisiLinux Community admins@pisilinux.org - GPLv2 - LGPLv2.1 - MPLv1.1 - app:gui - editor - Library parsing the Microsoft Publisher documents - Libmspub is library providing ability to interpret and import Microsoft Publisher content into various applications. You can find it being used in libreoffice. - http://dev-www.libreoffice.org/src/libmspub/libmspub-0.1.4.tar.bz2 + GPLv3+ + app:console + programming.build + Fast C/C++ compiler cache + Hızlı C/C++ derleme önbelleği + Cache veloz de compilador + Cache de Compilation rapide + ccache is a compiler cache. It speeds up recompilation of C/C++ code by caching previous compiles and detecting when the same compile is being done. + ccache bir derleme önbelleğidir. Önceki derlemeleri önbelleğinde saklayıp, aynı derlemelerde bu önbelleği kullanarak C/C++ kodlarının yeniden derlenmelerini hızlandırır. + https://github.com/ccache/ccache/releases/download/v3.7.7/ccache-3.7.7.tar.xz - boost-devel - doxygen - help2man - icu4c-devel - librevenge-devel zlib-devel - - buildfix.diff - - editor/libmspub/pspec.xml + programming/build/ccache/pspec.xml - libmspub + ccache zlib - icu4c - libgcc - librevenge - /usr/bin + /usr/bin + /usr/lib/ccache/bin /usr/share/doc - /usr/lib - - - - libmspub-devel - libmspub için geliştirme dosyaları - libmspub için geliştirme dosyaları - - zlib-devel - icu4c-devel - librevenge-devel - libmspub - - - /usr/include - /usr/lib/pkgconfig + /usr/share/man + + 2021-05-18 + 3.7.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-26 + 3.7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-06 + 3.7.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-09-12 + 3.4.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + gn + https://gn.googlesource.com/gn/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.build + Meta-build system that generates build files for Ninja + Meta-build system that generates build files for Ninja + Ninja için derleme dosyaları oluşturan meta-build sistemi + Ninja için derleme dosyaları oluşturan meta-build sistemi + https://sourceforge.net/projects/pisilinux/files/source/gn-2018.12.01.tar.gz + + git + ninja + + programming/build/gn/pspec.xml + + + gn + + libgcc + + + /usr/bin + /usr/share/doc + + + + + 2018-12-01 + 2018.12.01 + First release + PisiLinux Community + admins@pisilinux.org + + + 2018-09-21 + 0.1468 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + llvm + http://www.llvm.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + NCSA + programming.build + The Low Level Virtual Machine + Düşük Seviye Sanal Makine (LLVM) + The LLVM Project is a collection of modular and reusable compiler and toolchain technologies. Despite its name, LLVM has little to do with traditional virtual machines, though it does provide helpful libraries that can be used to build them. + LLVM projesi, modüler ve tekrar tekrar kullanılabilir derleyici teknolojileri koleksiyonudur. Adının aksine geleneksel sanal makinelerden çok farklıdır; ancak sanal makineleri oluşturmak için faydalı kitaplıklar içerir. + https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.3/llvm-project-14.0.3.src.tar.xz + + ninja + zlib-devel + libxml2-devel + ncurses-devel + ocaml + libffi-devel + groff + swig + libedit-devel + cmake + python3-devel + llvm + llvm-clang-devel + lld + llvm-polly + + programming/build/llvm/pspec.xml + + + llvm + app:console + library + + llvm-libs + zlib + libgcc + ncurses + llvm-polly + + + /usr/bin + /usr/bin/llvm-config + /usr/include/llvm* + /usr/lib/llvm + /usr/lib + /etc/ld.so.conf.d + /etc/llvm + /usr/share/doc + /usr/share/vim + /usr/share/llvm/cmake + /usr/share/man + + + 51-llvm.conf + + + + llvm-libs + library + + zlib + libffi + libedit + libgcc + ncurses + libxml2 + llvm-polly + + + /usr/lib/libLLVM*.so + /usr/lib/libLLVM*.so.14* + /usr/lib/LLVMgold.* + /usr/lib/libLTO.* + /usr/lib/libRemarks.so* + /usr/lib/bfd-plugins/LLVMgold.so + /usr/share/licenses/llvm-libs/LICENSE + + + + lldb + Next generation, high-performance debugger + + llvm-libs + llvm-clang + libgcc + libedit + libxml2 + ncurses + python3 + llvm-polly + + + /usr/bin/argdumper + /usr/bin/lldb* + /usr/bin/liblldb* + /usr/lib/liblldb.so* + /usr/lib/liblldb* + /usr/lib/python2.7/site-packages/readline.so + /usr/lib/python3.9/site-packages/lldb/* + /usr/lib/liblldbIntelFeatures.so* + /usr/lib/liblldbPluginExpressionParserClang.a + /usr/lib/liblldbPluginObjCLanguage.a + + + + lldb-devel + Development headers lldb + + lldb + + + /usr/include/lldb/* + + + + lld + Linker from the LLVM project + + llvm-libs + libgcc + llvm-polly + + + /usr/bin/ld.lld + /usr/bin/ld64.lld + /usr/bin/lld + /usr/bin/lld-link + /usr/bin/wasm-ld + /usr/lib/liblldMachO2.so* + /usr/lib/liblldCOFF.* + /usr/lib/liblldCommon.* + /usr/lib/liblldCore.* + /usr/lib/liblldDriver.* + /usr/lib/liblldELF.* + /usr/lib/liblldMachO.* + /usr/lib/liblldMinGW.* + /usr/lib/liblldReaderWriter.* + /usr/lib/liblldWasm.* + /usr/lib/liblldYAML.* + /usr/lib/liblldMachO2.* + /usr/share/doc/lld + + + + lld-devel + Development headers lld + + lld + libgcc + + + /usr/include/lld/* + /usr/lib/cmake/lld/* + + + + llvm-clang-analyzer + A source code analysis framework + C ve Objective-C için kod analiz altyapısı + The Clang Static Analyzer consists of both a source code analysis framework and a standalone tool that finds bugs in C and Objective-C programs. + app:console + + llvm-clang + + + /usr/lib/clang-analyzer + /usr/bin/scan-* + /usr/share/scan* + /usr/share/opt-viewer + /usr/libexec/ccc-* + /usr/libexec/c++-* + /usr/share/man/man1/scan-build.1 + + + + compiler-rt + Various runtime libraries used by Clang + + libgcc + + + /usr/lib/clang/14.0.3/lib/linux/*.so + + + + llvm-unwind + LLVM unwinding library + + /usr/lib/libllvm-unwind* + /usr/lib/llvm-libunwind + + + + llvm-clang + A C language family front-end for LLVM + LLVM için C dili ailesi ön ucu + The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. + + llvm-libs + libxml2 + libgcc + llvm-polly + + + /usr/bin/diagtool + /usr/bin/pp-trace + /usr/bin/modularize + /usr/bin/find-all-symbols + /usr/bin/git-clang* + /usr/bin/clang* + /usr/bin/c-index-test + /usr/bin/tblgen + /usr/lib/libclang* + /usr/lib/clang/ + /usr/lib/libfindAllSymbols.so* + /usr/share/man/man1/clang.1 + /usr/lib/cmake/clang/Clang* + /usr/share/clang + + + + llvm-clang-32bit + A C language family front-end for LLVM + The goal of the Clang project is to create a new C, C++, Objective C and Objective C++ front-end for the LLVM compiler. + + /usr/lib32/libclang* + /usr/lib32/clang/ + /usr/lib32/libfindAllSymbols.so* + /usr/lib32/cmake/clang/Clang* + + + + llvm-clang-devel + Development headers for llvm-clang + llvm-clang için başlık dosyaları + + llvm-clang + + + /usr/include/clang + /usr/lib/clang/14.0.3/include + /usr/include/clang-c + /usr/include/clang-tidy + + + + llvm-mlir + MLIR is intended to be a hybrid IR which can support multiple different requirements in a unified infrastructure + + llvm-libs + libgcc + ncurses + llvm-polly + + + /usr/bin/mlir* + /usr/lib/libMLIR* + /usr/lib/libmlir* + /usr/include/mlir* + /usr/lib/cmake/mlir + + + + llvm-polly + High-level loop and data-locality optimizer and optimization infrastructure for LLVM + + libgcc + + + /usr/lib/LLVMPolly.so + /usr/lib/libPolly*.so* + /usr/include/polly + /usr/lib/cmake/polly + + + + llvm-32bit + 32-bit shared libraries for llvm + emul32 + emul32 + + zlib-32bit + libffi-32bit + libxml2-32bit + ncurses-32bit + + + llvm + llvm-clang-32bit + libgcc + libxml2-32bit + ncurses-32bit + zlib-32bit + libffi-32bit + + + /usr/bin/llvm-config-32 + /usr/lib32 + + + + + 2022-04-29 + 14.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-24 + 13.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 13.0.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-07-10 + 12.0.1 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2021-07-07 + 12.0.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-06-03 + 12.0.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-05-15 + 11.1.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-11-12 + 11.0.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-09-23 + 10.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-04 + 10.0.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-24 + 10.0.0 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-05-23 + 7.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-18 + 6.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2021-10-21 - 0.1.4 + 2018-12-15 + 6.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-23 + 5.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-07-25 + 5.0.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-09-04 + 3.8.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-12 + 3.8.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.8.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 3.8.0 + Release bump + Serdar Soytetir + kaptan@pisilinux.org + + + 2016-04-06 + 3.8.0 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + luajit + http://luajit.org/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + app:gui + programming.build + Just-in-time compiler and drop-in replacement for Lua 5.1 + Lua için Just-in-Time derleyici + Just-in-time compiler and drop-in replacement for Lua 5.1 + LuaJIT, Lua için bir Just-in-Time derleyicidir. + http://luajit.org/download/LuaJIT-2.0.5.tar.gz + + gcc + + programming/build/luajit/pspec.xml + + + luajit + + libgcc + + + /usr/bin + /usr/share/doc + /usr/lib + /usr/lib/lua + /usr/share/luajit-2.0.2 + /usr/share/lua + /usr/share + /usr/share/man + + + + luajit-devel + Development files for luajit + luajit için geliştirme başlıkları + + luajit + + + /usr/include + /usr/lib/pkgconfig/luajit.pc + + + + + 2021-05-18 + 2.0.5 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2020-01-26 + 2.0.5 + rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-10-13 + 2.0.5 + First Release + Kamil Atlı + suvari@pisilinux.org + + + + + + gdb + http://www.gnu.org/software/gdb/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + programming.debug + GNU debugger + GNU hata ayıklayıcısı + Depurador GNU + GDB, the GNU Project debugger, allows you to see what is going on 'inside' another program while it executes -- or what another program was doing at the moment it crashed. + GDB, GNU Proje hata ayıklama aracı, çalışır durumdaki başka bir programın `içinde' olan biteni görmenizi, veya başka bir programın çöktüğü anda ne yapıyor olduğunu bilmenizi sağlar. + GDB, el depurador del proyecto GNU permite ver lo que está pasando 'en el interior de' otro programa mientras ejecuta -- o lo que estaba haciendo cuando quedó colgado. + https://ftp.gnu.org/gnu/gdb/gdb-11.1.tar.xz + + texinfo + xz-devel + mpfr-devel + expat-devel + python-devel + xxhash-devel + ncurses-devel + guile2.0-devel + readline-devel + source-highlight-devel + + + 0001-AArch64-Make-gdbserver-register-set-selection-dynami.patch + + programming/debug/gdb/pspec.xml + + + gdb + GNU debugger + + xz + mpfr + expat + libgcc + xxhash + python + ncurses + guile2.0 + readline + source-highlight + + + /usr/lib + /usr/share/man + /usr/share/gdb + /usr/bin + /usr/share/info + /usr/share/doc/gdb + + + + gdb-devel + Development files for gdb + gdb için geliştirme dosyaları + gdb-devel, provides development files for gdb. + + gdb + + + /usr/include + + + + + 2021-11-30 + 11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-15 + 10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 9.2 Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2021-03-10 - 0.1.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2020-09-07 + 9.2 + Major version bump. + Blue Devil + bluedevil@sctzine.com - 2020-02-09 - 0.1.4 - Rebuild. + 2020-01-07 + 8.3 + Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-08-29 - 0.1.4 - Version bump. + 2018-08-07 + 8.1 + Version Bump Mustafa Cinasal muscnsl@gmail.com 2018-01-31 - 0.1.3 - Version bump. + 8.0.1 + Version Bump Mustafa Cinasal muscnsl@gmail.com - 2017-03-16 - 0.1.2 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2017-01-29 + 7.12.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2016-06-10 - 0.1.2 + 2016-06-09 + 7.9.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-01-24 - 0.1.2 + 2015-07-30 + 7.9.1 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - liblangtag - https://bitbucket.org/tagoh/liblangtag/wiki/Home + codeblocks + http://www.codeblocks.org/ - Alihan Öztürk - alihan@pisilinux.org + Pisi Linux Community + admins@pisilinux.org - GPLv3.0 - MPLv2.0 - app:console - editor - An interface library to access tags for identifying languages - liblangtag is an interface library to access/deal with tags for identifying languages, which is described in RFC. - https://bitbucket.org/tagoh/liblangtag/downloads/liblangtag-0.6.3.tar.bz2 + GPLv3 + app:gui + programming.environment + A free C++ IDE built to meet the most demanding needs of its users + C++ için bütünleşik geliştirme araçlarını barındıran özgür yazılım + Code::Blocks is a free C++ IDE built to meet the most demanding needs of its users. It is designed to be very extensible and fully configurable. + Code::Blocks, yazılımcıların en çok ihtiyaç duydukları özellikleri sağlayan, tamamen kişiselleştirilebilen ve geliştirilebilen C++ editörüdür. + codeblocks + https://downloads.sourceforge.net/codeblocks/codeblocks_17.12.tar.xz - python3 - libxml2-devel + fontconfig-devel + hunspell-devel + boost-devel + gamin-devel + wxGTK-devel glib2-devel - gobject-introspection-devel + gtk3-devel + wxGTK3 - editor/liblangtag/pspec.xml + + codeblocks-17.12-scripting.patch + + programming/environment/codeblocks/pspec.xml - liblangtag + codeblocks + A free C++ IDE built to meet the most demanding needs of its users + wxGTK-common + fontconfig + hunspell + wxBase + wxGTK3 + wxGTK + gamin glib2 - libxml2 + gtk3 - /usr/share/liblangtag - /usr/share/gir-1.0 - /usr/share/doc - /usr/lib - /usr/share/gtk-doc - - - - liblangtag-devel - liblangtag için geliştirme dosyaları - liblangtag için geliştirme dosyaları - - liblangtag - - - /usr/include/liblangtag - /usr/lib/pkgconfig - - - - - 2020-02-08 - 0.6.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-28 - 0.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-09 - 0.6.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-11 - 0.6.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2011-02-07 - 0.6.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - discount - https://github.com/Orc/discount - - Stefan Gronewold (groni) - groni@pisilinux.org - - BSD - app:console - editor.discount - A Markdown implementation written in C - A Markdown implementation written in C - implementation of the Markdown markup language in C - implementation of the Markdown markup language in C - http://download.openpkg.org/components/cache/discount/discount-2.2.6.tar.bz2 - editor/discount/discount/pspec.xml - - - discount - + /usr/share/applications + /usr/share/codeblocks + /usr/share/appdata + /usr/share/pixmaps + /usr/share/icons + /usr/share/mime /usr/bin - /usr/lib - /usr/share/man /usr/share/doc + /usr/share/man + /usr/lib - discount-devel - Development files for discount + codeblocks-devel + Development files of codeblocks + codeblocks paketlerine ait geliştirme dosyaları + codeblocks-devel, codeblocks için geliştirme dosyalarını içerir. - discount + codeblocks /usr/include @@ -297748,8434 +261678,337 @@ from a wide variety of machine architectures. - - 2020-02-08 - 2.2.6 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 2.2.4 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-05-08 - 2.2.1 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com + 2020-02-24 + 17.12 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2016-11-06 - 2.2.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org + 2017-05-10 + 16.01 + First release. + Erdinç Gültekin + admins@pisilinux.org - geany-plugins - https://plugins.geany.org/ - - fury - uglyside@yandex.ru - - GPL - library - editor - Plugins for Geany - Plugins for Geany - https://plugins.geany.org/geany-plugins/geany-plugins-1.38.tar.bz2 - - intltool - cppcheck - vte-devel - vala-devel - ctpl-devel - check-devel - geany-devel - lua51-devel - gpgme-devel - python-devel - gnutls-devel - python3-devel - libsoup-devel - libgit2-devel - libpcre2-devel - enchant2-devel - gtkspell3-devel - webkit2gtk-devel - - editor/geany-plugins/pspec.xml - - - geany-plugins - - atk - vte - zlib - ctpl - gtk3 - cairo - pango - glib2 - geany - lua51 - gpgme - gnutls - libsoup - libxml2 - libgit2 - harfbuzz - libpcre2 - enchant2 - gtkspell3 - libassuan - gdk-pixbuf - webkit2gtk - libgpg-error - - - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-10-15 - 1.38 - Version bump. - fury - uglyside@yandex.ru - - - 2021-03-01 - 1.37 - Version bump. - fury - uglyside@yandex.ru - - - 2020-09-22 - 1.36 - Rebuild libgit2. - fury - uglyside@yandex.ru - - - 2020-09-22 - 1.36 - Rebuild. - fury - uglyside@yandex.ru - - - 2019-12-18 - 1.36 - Rebuild with gtk3. - fury - uglyside@yandex.ru - - - 2019-10-15 - 1.36 - Ver. bump - fury - uglyside@yandex.ru - - - 2019-07-05 - 1.35 - Ver. bump - fury - uglyside@yandex.ru - - - 2019-04-21 - 1.34 - build - fury - uglyside@yandex.ru - - - - - - vim - http://www.vim.org/ + eric6 + http://eric-ide.python-projects.org/index.html PisiLinux Community admins@pisilinux.org - custom - editor.vi - Vi IMproved, an advanced text editor - Vi Improved, gelişmiş metin editörü - Vi IMproved – klon edytora Vi - Vim, which stands for Vi IMproved, is an open-source, multiplatform text editor extended from vi. It was first released by Bram Moolenaar in 1991. Since then, numerous features have been added to Vim, many of which are helpful in editing program source code. - VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. Çok geniş bir kullanıcı kitlesi olan VIM metin düzenleyicisi yüksek oranda özelleştirilebilir bir yazılımdır. Ayrıca VIM için pek çok destekleyici betik (script) bulunmaktadır. - Edytor tekstu podobny do Vi. Ważne ulepszenia: możliwość pracy w wielu oknach, wielopoziomowa opcja ‚cofnij’, bloki, podświetlanie składni, folding i wiele innych. - https://github.com/vim/vim/archive/v8.2.2891.tar.gz - - gpm - ctags - acl-devel - ruby-devel - gtk2-devel - libSM-devel - libXt-devel - pango-devel - libICE-devel - python-devel - python3-devel - ncurses-devel - libcanberra-devel - - - pisilinux/grub_conf.patch - pisilinux/xorg_conf.patch - vim-7.3-interix-link.patch - - editor/vi/vim/pspec.xml - - - vim - Vi IMproved, an advanced text editor - app:console - - gpm - acl - perl - ruby - ctags - ncurses - - - /etc/vim - /bin - /usr/share/doc - /usr/share/man - /usr/share/vim - /usr/bin/ex - /usr/bin/xxd - /usr/bin/vi* - /usr/bin/rvi* - - - vimrc - pisilinux/actions.vim - pisilinux/pspec.vim - pisilinux/translations.vim - plugins/taglist.vim - plugins/kde-devel-vim.vim - plugins/newpythonfile.vim - plugins/redstring.vim - - - - gvim - Graphical User Interface for Vi IMproved, an advanced text editor - Vi Improved, gelişmiş metin editörü için grafik kullanıcı arayüzü - VIM, açık hali ile Vi Improved - Geliştirilmiş Vi, 1991 yılında Bram Moolenaar tarafından yazılmış ve özellikle programcılar ve sistem yöneticileri tarafından çok kullanılan bir metin editörüdür. GVim ise vim için bir grafik kullanıcı arayüzü sunar. - app:gui - gvim - gui - - acl - gpm - vim - perl - gtk2 - ruby - glib2 - libSM - libXt - pango - libICE - libX11 - ncurses - gdk-pixbuf - - - /usr/share/icons - /usr/share/pixmaps - /usr/bin/gvi* - /usr/bin/egvi* - /usr/bin/rgvi* - /usr/bin/ggvi* - /usr/bin/rggvi* - /usr/bin/gvimtutor - /usr/share/applications - - - gvimtutor - gvim.xpm - gvim.desktop - - - - - 2021-06-28 - 8.2.2891 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 8.2.0788 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-09 - 8.2.0236 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-29 - 8.1.1846 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-29 - 8.0.1451 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-29 - 8.0.1451 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-01 - 8.0.1451 - Version bump. - Ali Algül - aligulle3801@gmail.com - - - 2017-04-10 - 0.8.0.0559 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-10 - 0.8.0.0130 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 0.7.4.909 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-05 - 0.7.4.909 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - ghostwriter - https://github.com/wereturtle/ghostwriter - - Stefan Gronewold (groni) - groni@pisilinux.org - GPLv3 app:gui - editor - ghostwriter is a cross-platform, aesthetic, distraction-free Markdown editor. - ghostwriter is a cross-platform, aesthetic, distraction-free Markdown editor. - ghostwriter provides a relaxing, distraction-free writing environment, whether your masterpiece be that next blog post, your school paper, or your NaNoWriMo novel. - ghostwriter provides a relaxing, distraction-free writing environment, whether your masterpiece be that next blog post, your school paper, or your NaNoWriMo novel. - https://github.com/wereturtle/ghostwriter/archive/refs/tags/2.1.2.tar.gz + programming.environment.eric + Full featured Python IDE + Eric is a full featured Python and Ruby editor and IDE, written in python. + It is based on the cross platform Qt4 gui toolkit, integrating the highly flexible + Scintilla editor control. It is designed to be usable as everdays' quick and dirty + editor as well as being usable as a professional project management tool integrating + many advanced features Python offers the professional coder. + eric5 + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-cs-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-de-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-es-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-fr-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-it-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-ru-17.12.tar.gz + https://sourceforge.net/projects/eric-ide/files/eric6/stable/17.12/eric6-i18n-tr-17.12.tar.gz qt5-base-devel - qt5-multimedia-devel + qt5-sql-mysql + python3-devel + qt5-sql-sqlite + python3-qt5 + qscintilla2-devel + qscintilla2-python3 qt5-webkit-devel - qt5-webengine-devel qt5-svg-devel - qt5-linguist - hunspell-devel - desktop-file-utils - pkgconfig + python3-sip - editor/ghostwriter/pspec.xml + programming/environment/eric6/pspec.xml - ghostwriter + eric6 qt5-base + python3 + python3-qt5 + qscintilla2-python3 qt5-webkit - hunspell - libgcc + qt5-svg /usr/bin + /usr/lib/python3.6/site-packages + /usr/share/qt5/qsci/api + /usr/share/applications /usr/share/appdata - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/ghostwriter + /usr/share/doc /usr/share/pixmaps /usr/share/metainfo - /usr/share/man - /usr/share/doc - - 2022-04-03 - 2.1.2 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2018-02-21 - 1.5.0 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-09-11 - 1.4.2 - Version bump. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-07-20 - 1.3.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - krita - http://www.krita.org/ - - Kamil Atlı - suvari@pisilinux.org - - GPL-3.0-or-later - multimedia.graphics - Krita is a free digital painting application. - 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.8/krita-4.4.8.tar.xz - - eigen3 - kio-devel - pkgconfig - gsl-devel - zlib-devel - tiff-devel - libvc-devel - exiv2-devel - python3-sip - fftw3-devel - ki18n-devel - boost-devel - libXi-devel - ffmpeg-devel - libraw-devel - giflib-devel - libpng-devel - kcrash-devel - quazip-devel - python3-devel - openexr-devel - kconfig-devel - karchive-devel - kguiaddons-devel - kitemviews-devel - poppler-qt5-devel - kitemmodels-devel - python3-qt5-devel - python3-pyqt5-sip - kcoreaddons-devel - kcompletion-devel - extra-cmake-modules - libjpeg-turbo-devel - kwindowsystem-devel - kwidgetsaddons-devel - qt5-multimedia-devel - qt5-svg-devel - qt5-designer-devel - qt5-x11extras-devel - opencolorio-devel - - - krita-openexr3.patch - krita-opencolorio2.patch - - editor/krita/pspec.xml - - - krita - Krita is a free digital painting application. - - gsl - tiff - zlib - boost - fftw3 - ki18n - lcms2 - giflib - kcrash - libX11 - libpng - libraw - quazip - libgcc - python3 - kconfig - qt5-svg - karchive - qt5-base - exiv2-libs - kguiaddons - kitemviews - kcompletion - kcoreaddons - poppler-qt5 - openexr-libs - kwindowsystem - libjpeg-turbo - qt5-x11extras - kwidgetsaddons - qt5-multimedia - qt5-declarative - qt5-svg - qt5-designer - opencolorio - - - /etc - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/share/metainfo - /usr/bin/krita - /usr/share/locale - - - - - 2021-10-27 - 4.4.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-03-18 - 4.4.2 - Major version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-09-20 - 4.3.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-02-12 - 4.2.8.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 4.2.7.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-25 - 4.2.3 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - texstudio - https://www.texstudio.org/ - - Pisilinux Community - admin@pisilinux.org - - GPLv3 - app:gui - editor - TeXstudio is a fully featured LaTeX editor. - TeXstudio is an integrated writing environment for creating LaTeX documents. Our goal is to make writing LaTeX as easy and comfortable as possible. Therefore TeXstudio has numerous features like syntax-highlighting, integrated viewer, reference checking and various assistants. - https://github.com/texstudio-org/texstudio/archive/refs/tags/4.2.2.tar.gz - - zlib-devel - quazip-devel - qt5-svg-devel - hunspell-devel - qt5-base-devel - qt5-script-devel - qt5-phonon-devel - poppler-qt5-devel - poppler-cpp-devel - ghostscript-devel - qtermwidget5-devel - qt5-declarative-devel - - editor/texstudio/pspec.xml - - - texstudio - - zlib - libX11 - libgcc - quazip - qt5-svg - hunspell - qt5-base - qt5-script - poppler-qt5 - texlive-bin - texlive-core - qtermwidget5 - qt5-declarative - - - /usr/bin - /usr/share - /usr/share/texstudio - /usr/share/icons/hicolor - - - - - 2022-14-05 - 4.2.2 - First build. - fury - uglyside@yandex.ru - - - - - - bluefish - http://bluefish.openoffice.nl/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:gui - editor - A powerful editor for experienced web designers and programmers - Deneyimli web tasarımcıları ve programcıları için güçlü bir düzenleyici - Bluefish is a powerful editor for experienced web designers and programmers. Bluefish supports many programming and markup languages, but it focuses on editing dynamic and interactive websites. - Bluefish web sayfası tasarım ve hazırlanmasında kullanılan güçlü bir düzenleyicidir. - bluefish - http://www.bennewitz.com/bluefish/stable/source/bluefish-2.2.11.tar.bz2 - - python-devel - intltool - gtk3-devel - glib2-devel - enchant-devel - cairo-devel - libxml2-devel - shared-mime-info - gdk-pixbuf-devel - - editor/bluefish/pspec.xml - - - bluefish - - gtk3 - pango - enchant - cairo - gdk-pixbuf - glib2 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/bluefish - /usr/share/doc/bluefish - /usr/share/icons - /usr/share/locale - /usr/share/man - /usr/share/mime - /usr/share/pixmaps - /usr/share/appdata - /usr/share/xml/bluefish - - - System.Package - - - - - 2020-02-09 - 2.2.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-20 - 2.2.10 - Fix deps. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-29 - 2.2.10 + 2018-09-09 + 17.12 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2017-05-08 - 2.2.10 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - 2016-12-12 - 2.2.9 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2014-02-11 - 2.2.5 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2013-03-05 - 2.2.4 - Version bump - Ertan Güven - ertan@pisilinux.org - - - 2013-01-10 - 2.2.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - scite - https://sourceforge.net/projects/scintilla/ - - fury - uglyside@yandex.ru - - custom - app:gui - editor - SCIntilla based Text Editor. - Scintilla is a free source code editing component which includes useful features such as syntax styling, error indicators, folding, code completion and call tips. - mirrors://sourceforge/project/scintilla/SciTE/5.2.2/scite522.tgz - - lua-devel - gtk2-devel - glib2-devel - python3-devel - - editor/scite/pspec.xml - - - scite - - atk - gtk2 - cairo - glib2 - pango - libgcc - gdk-pixbuf - - - /usr/bin - /usr/lib/scite - /usr/share - - - - - 2022-04-14 - 5.2.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-18 - 5.1.6 - First build. - fury - uglyside@yandex.ru - - - - - - cutemarked - http://cloose.github.io/CuteMarkEd - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - app:gui - editor - Qt Markdown Editor - Qt Markdown Editor - A Qt-based, free and open source markdown editor with live HTML preview, math expressions, code syntax highlighting and syntax highlighting of markdown document. - A Qt-based, free and open source markdown editor with live HTML preview, math expressions, code syntax highlighting and syntax highlighting of markdown document. - https://github.com/cloose/CuteMarkEd/archive/v0.11.3.tar.gz - - qt5-base-devel - qt5-webkit-devel - hunspell-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - discount-devel - - - cutemarked-0.11.3-bgcolor.patch - cutemarked-0.11.3-qaction-include.patch - - editor/cutemarked/pspec.xml - - - cutemarked - - qt5-base - qt5-webkit - hunspell - libgcc - discount - - - /usr/bin - /usr/lib/qt5 - /usr/share - /usr/share/doc - - - - - 2020-02-09 - 0.11.3 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 0.11.3 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-08 - 0.11.3 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-07-18 - 0.11.3 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - geany - https://geany.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - editor - GTK+ based fast and lightweight IDE - GTK+ based fast and lightweight IDE - https://download.geany.org/geany-1.38.tar.bz2 - - libgcc - intltool - vte-devel - gtk3-devel - glib2-devel - python3-lxml - python3-devel - - editor/geany/pspec.xml - - - geany - - atk - vte - gtk3 - glib2 - cairo - pango - libgcc - python3 - gdk-pixbuf - geany-colorschemes - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man/man1 - /usr/share/doc - - - - geany-devel - geany için geliştirme dosyaları - geany için geliştirme dosyaları - - geany - gtk3-devel - glib2-devel - - - /usr/lib/pkgconfig - /usr/include/geany/* - - - - - 2021-10-15 - 1.38 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-06 - 1.37.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-06-24 - 1.36 - Disable binreloc. - fury - uglyside@yandex.ru - - - 2020-02-03 - 1.36 - Rebuild with gtk3. - fury - uglyside@yandex.ru - - - 2019-10-15 - 1.36 - Version bump - fury - uglyside@yandex.ru - - - 2019-04-30 - 1.35 - Version bump - fury - uglyside@yandex.ru - - - 2019-04-16 - 1.34.1 - First release - fury - uglyside@yandex.ru - - - - - - nano - https://www.nano-editor.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - editor - GNU GPL'd Pico clone with more functionality - Konsol ortamında kullanabileceğiniz bir metin düzenleyicidir. - Nano est un petit éditeur libre et convivial qui a pour but de remplacer Pico, l'éditeur par défaut inclus dans le paquet non-libre Pine. Plutôt que juste copier l'apparence et le ressenti de Pico, nan implémente également certaines fonctionnalité manquantes (ou désactivées par défaut), tel que "rechercher et remplacer" ou "allez à la ligne numéro". - Nano is a small, free and friendly editor which aims to replace Pico, the default editor included in the non-free Pine package. Rather than just copying Pico's look and feel, nano also implements some missing (or disabled by default) features in Pico, such as "search and replace" and "go to line number". - Nano özgür olmayan Pine paketinin içindeki metin düzenleme programı olan Pico'nun yerine geçme hedefini güden küçük, özgür ve kullanışlı bir metin düzenleme programıdır. Pico'nun görünüşünü ve işlevini kopyalamaktan çok, Nano aynı zamanda "ara ve değiştir" ve "satır numarasına git" gibi Pico'da olmayan (veya ön tanımlı olarak kapalı) bazı özellikleri sunar. - https://www.nano-editor.org/dist/v6/nano-6.0.tar.xz - - groff - ncurses-devel - gettext-devel - - editor/nano/pspec.xml - - - nano - - ncurses - file - - - /etc - /usr/share/locale - /usr/share/doc/nano - /usr/share/man - /usr/share/info - /usr/share/nano - /usr/bin - /bin - - - - - 2021-12-15 - 6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-08 - 4.9.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-09 - 4.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-27 - 4.5 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-03-27 - 2.9.8 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-29 - 2.9.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-05 - 2.9.3 + 2018-03-01 + 17.12 Version Bump - Ercan Ersoy - ercanersoy@ercanersoy.net - - - 2017-12-28 - 2.9.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 2.7.5 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 2.5.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-02 - 2.5.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - emacs-color-theme - http://www.emacswiki.org/cgi-bin/wiki?ColorTheme - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - Emacs-Lisp color theme package - Emacs-List renk paketi - Colortheme is an Emacs-Lisp package with more than 50 color themes for your use. - Colortheme 50'den fazla renk temasını biraraya getiren bir Emacs-Lisp paketidir. - http://download.savannah.nongnu.org/releases/color-theme/color-theme-6.6.0.tar.gz - editor/emacs/emacs-color-theme/pspec.xml - - - emacs-color-theme - - emacs - - - /usr/share/doc - /etc/emacs/site-lisp - /usr/share/emacs/site-lisp/color-theme - - - 80-color-theme.el - - - - - 2020-02-09 - 6.6.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 6.6.0 - Rebuild with new toolchain Mustafa Cinasal muscnsl@gmail.com - 2017-05-10 - 6.6.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 6.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-24 - 6.6.0 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - emacs-php-mode - http://php-mode.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - PHP mode for Emacs - Emacs için PHP kipi - php-mode is an add-on for Emacs to help work with PHP files more efficiently. - php-mode, kullanıcının PHP dosyalarıyla daha hızlı çalışabilmesi için bir eklentidir. - https://github.com/ejmr/php-mode/archive/v1.22.0.tar.gz - - emacs - - editor/emacs/emacs-php-mode/pspec.xml - - - emacs-php-mode - - emacs - - - /etc - /usr/share/emacs - - - 80-php-mode.el - - - - - 2020-02-09 - 1.22.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 1.22.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 1.18.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-10 - 1.18.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-10 - 1.17.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.17.0 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - pymacs - https://github.com/dgentry/Pymacs - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - editor.emacs - Interface between Emacs Lisp and Python - Emacs Lisp ve Python iletişimini sağlayan bir arayüz - Pymacs is a powerful tool which, once started from Emacs, allows two-way communication between Emacs Lisp and Python. - Pymacs, Emacs ile çalıştırıldığında, Emacs Lisp ve Python arasında çift yönlü iletişime olanak tanıyan güçlü bir araçtır. - https://github.com/pinard/Pymacs/archive/v0.25.tar.gz - editor/emacs/pymacs/pspec.xml - - - pymacs - - /usr/lib - /usr/share/doc - /usr/share/emacs - /etc/emacs/site-lisp - - - 80-pymacs.el - - - - - 2020-02-09 - 0.25 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 0.25 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-09 - 0.25 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-24 - 0.25 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - emacs-python - http://python-mode.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - editor.emacs - Emacs major mode for editing Python source code - Python kaynak kodlarını düzenlemek için emacs kipi - emacs-python makes a number of editing and debugging features available to Python programmers who use GNU Emacs or XEmacs. - Python programcıları için birçok kod düzenleme ve hata ayıklama özelliği sağlar. - https://launchpad.net/python-mode/trunk/6.2.3/+download/python-mode.el-6.2.3.tar.gz - editor/emacs/emacs-python/pspec.xml - - - emacs-python - - pymacs - emacs - - - /etc/emacs - /usr/share/emacs - - - 80-python.el - - - - - 2020-02-09 - 6.2.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-05 - 6.2.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-09 - 6.2.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 6.2.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-12-05 - 6.2.1 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - emacs - https://www.gnu.org/software/emacs - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:gui - app:console - editor.emacs - An extensible console-mode editor - Genişletilebilir bir metin düzenleyici - Emacs is the extensible, customizable, self-documenting real-time console-mode editor. It has many features to increase productivity when programming. - Emacs, gelişmiş, özelleştirilebilir ve esnek bir metin editörüdür. Özellikle program yazanlar tarafından çokça tercih edilen, fare kullanımına gerek bırakmadan çok hızlı çalışma imkânı sağlayan bir editördür. - emacs - ftp://ftp.gnu.org/gnu/emacs/emacs-26.3.tar.xz - - acl-devel - gtk2-devel - gtk3-devel - alsa-lib-devel - fontconfig-devel - giflib-devel - gpm - libjpeg-turbo-devel - libICE-devel - libSM-devel - libXft-devel - libxml2-devel - libXpm-devel - libXrender-devel - libpng-devel - librsvg-devel - tiff-devel - gnutls-devel - imagemagick-devel - lcms2-devel - - editor/emacs/emacs/pspec.xml - - - emacs - - acl - gpm - tiff - gtk2 - zlib - glib2 - libX11 - libpng - ncurses - freetype - libSM - libXft - libxml2 - libICE - giflib - libXpm - gnutls - librsvg - alsa-lib - gdk-pixbuf - fontconfig - libXrender - imagemagick - libjpeg-turbo - libXfixes - libxcb - dbus - gtk3 - cairo - pango - lcms2 - libXext - - - /etc - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/info - /usr/lib/systemd - /usr/share/emacs - /usr/share/icons - /var/games/emacs - /usr/share/pixmaps - /usr/share/appdata - /usr/share/metainfo - /usr/share/applications - /usr/libexec/emacs - /usr/include - - - System.PackageHandler - - - site-start.el - pisi-spec.rnc - 80-nxml-mode.el - emacs.desktop - - - - - 2020-02-09 - 26.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 26.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 26.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-10 - 25.2 + 2017-06-05 + 17.05 Version Bump Mustafa Cinasal muscnsl@gmail.com 2016-06-09 - 24.5 + 6.1.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-02 - 24.5 - First release - Ilker Manap - ilkermanap@gmail.com + 2016-04-10 + 6.1.4 + Version Bump + Stefan Gronewold(groni) + groni@pisilinux.org - emacs-mmm-mode - http://mmm-mode.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - editor.emacs - Multiple Major Mode module for Emacs - Emacs Çoklu Ana Kip eklentisi - MMM Mode is an emacs add-on package providing a minor mode that allows Multiple Major Modes to coexist in one buffer. - MMM (Multiple Major Mode), Emacs uygulamasının bir tamponda aynı anda birden fazla ana kip kullanılmasına imkân veren bir eklentidir. - mirrors://sourceforge/mmm-mode/mmm-mode-0.5.4.tar.gz - - emacs - gtk2-devel - - editor/emacs/emacs-mmm-mode/pspec.xml - - - emacs-mmm-mode - - emacs - - - /etc - /usr/share/doc - /usr/share/info - /usr/share/emacs - - - 80-mmm-mode.el - - - - - 2020-02-09 - 0.5.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 0.5.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-01 - 0.5.4 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-10 - 0.5.4 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.5.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-02 - 0.5.4 - First release - Ilker Manap - ilkermanap@gmail.com - - - - - - texlive-bin - https://www.tug.org/texlive/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data:doc - app:console - editor.tex - Tex Live binaries - TeX Live Dağıtımının Ana Parçası - texlive-bin est la part essentiel de TeXLive. - Texlive binaries that are an essential part of TeXLive component. - texlive-bin Tex Live dağıtımının ana parçasıdır. - ftp://tug.org/texlive/historic/2020/texlive-20200406-source.tar.xz - https://github.com/plk/biber/archive/v2.16.tar.gz - - gd-devel - clisp-devel - icu4c-devel - t1lib-devel - libXi-devel - libXt-devel - ffcall-devel - libpng-devel - libXaw-devel - libXmu-devel - libXpm-devel - poppler-devel - zziplib-devel - libpaper-devel - harfbuzz-devel - freetype-devel - graphite2-devel - fontconfig-devel - libsigsegv-devel - ghostscript-devel - - editor/tex/texlive-bin/pspec.xml - - - texlive-bin - Tex Live binaries - - gd - zlib - icu4c - libXt - libXi - t1lib - ffcall - libX11 - libgcc - libpng - libXaw - libXmu - libXpm - zziplib - harfbuzz - freetype - graphite2 - fontconfig - libsigsegv - ghostscript - - - /etc - /usr/share - /usr/lib - /usr/share/man - /usr/share/info - /usr/bin - /usr/share/tlpkg - /usr/share/texmf-dist - - - - texlive-bin-devel - Development files for texlive-bin - texlive-bin için geliştirme dosyaları - texlive-bin-devel, texlive-bin için geliştirme dosyalarını içerir. - - texlive-bin - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-02-06 - 20200406 - Rebuild - fury - uglyside@yandex.ru - - - 2020-06-01 - 20200406 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-03-21 - 20190410 - Version bump - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-03-21 - 2018.47465 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - texlive-core - https://www.tug.org/texlive - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data:doc - app:console - editor.tex - TeX Live core distribution. - TeX Live Dağıtımının Ana Parçası - texlive-core est la part essentiel de TeXLive. - texlive-core is the essential part of TeXLive. It corresponds to the "medium" scheme of TexLive. - texlive-core Tex Live dağıtımının ana parçasıdır. - https://mirrors.kernel.org/archlinux/other/texlive/texlive-core-2020.57066-src.zip - - texlive-bin - - editor/tex/texlive-core/pspec.xml - - - texlive-core - TeX Live core distribution. - - psutils - t1utils - ghostscript - texlive-bin - - - /etc/fonts - /etc/texmf - /usr/bin - /var/lib/texmf - /usr/share/tlpkg - /usr/share/libalpm - /usr/share/texmf-dist - - - System.Package - - - arch/texmf.cnf - arch/texmfcnf.lua - arch/09-texlive-fonts.conf - arch/texlive-core.maps - arch/texlive-core.fmts - - - - - 2020-01-02 - 2020.57066 - Version bump. - fury - uglyside@yandex.ru - - - 2020-05-29 - 2020.54593 - Major version bump - Blue Devil - bluedevil@sctzine.com - - - - - - poedit - https://poedit.net/ + cargo-c + https://github.com/lu-zero/cargo-c PisiLinux Community admins@pisilinux.org MIT - app:gui - editor - A cross-platform translation editor. - Platform bağımsız gettext po düzenleyicisi - This program is a simple translation editor for PO and XLIFF files. It also serves as a GUI frontend to more GNU gettext utilities and catalogs editor/source code parser. It helps with translating applications into another language. - Poedit, GNU Gettext arayüzü ve katalog düzenleyicisi / kaynak kod ayrıştırıcısıdır. Uygulamaları başka dillere çevirmede yardımcı olur. Detaylı bilgi için GNU Gettext dökümantasyonu ya da wxWidgets wxLocale sınıf referanslarına göz atın. - https://github.com/vslavik/poedit/releases/download/v3.0.1-oss/poedit-3.0.1.tar.gz + library + programming.language + A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries + A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries + A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries + A cargo subcommand to build and install C-ABI compatibile dynamic and static libraries + https://github.com/lu-zero/cargo-c/archive/refs/tags/v0.9.5-deploy.tar.gz - wxGTK3 - db-devel - gtk3-devel - glib2-devel - boost-devel - icu4c-devel - wxGTK-devel - wxGTK-common - gettext-devel - pugixml-devel - lucene++-devel - gtkspell3-devel + rust + curl-devel + zlib-devel + openssl-devel - editor/poedit/pspec.xml + programming/language/cargo-c/pspec.xml - poedit - - gtk3 - boost - glib2 - icu4c - wxGTK3 - libgcc - gettext - pugixml - lucene++ - gtkspell3 - wxGTK-common - + cargo-c /usr/bin - /usr/share - /usr/share/locale - /usr/share/man /usr/share/doc - - 2021-12-20 - 3.0.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-27 - 2.4.3 - Rebuild boost. - fury - uglyside@yandex.ru - - - 2021-04-29 - 2.4.3 - Version bump. - fury - uglyside@yandex.ru - - 2020-12-04 - 2.4.2 + 2021-11-02 + 0.9.5 First release - fury - uglyside@yandex.ru + PisiLinux Community + admins@pisilinux.org - rtmpdump - http://rtmpdump.mplayerhq.hu/ + expect + https://core.tcl-lang.org/expect/index - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - GPLv2 - LGPLv2 + BSD app:console library - multimedia.stream - Toolkit for RTMP streams - RTMP yayınları araç takımı - rtmpdump is a tool for dumping media content streamed over RTMP. All forms of RTMP are supported, including rtmp://, rtmpt://, rtmpe://, rtmpte://, and rtmps:// . - rtmpdump, RTMP üzerinden yayın yapan ortam içeriklerinin dökümünü yapmak için yazılmış bir araçtır. RTMP yayımının bütün biçimleri desteklenmektedir: rtmp://, rtmpt://, rtmpe://, rtmpte://, ve rtmps:// . - https://sourceforge.net/projects/pisilinux/files/source/rtmpdump-20190330.tar.xz + programming.language + Outil pour automatiser les applications interactives + A tool for automating interactive applications + İnteraktif uygulamaları otomatikleştirmek için kullanılan bir araç. + Expect is a tool for automating interactive applications such as telnet, ftp, passwd, fsck, rlogin, tip, etc. Expect really makes this stuff trivial. Expect is also useful for testing these same applications. + mirrors://sourceforge/expect/Expect/5.45.4/expect5.45.4.tar.gz - openssl-devel - zlib-devel + tcl-devel - rtmpdump-openssl-1.1-v2.patch - rtmpdump-swf_vertification_type_2.patch - rtmpdump-swf_vertification_type_2_part_2.patch + expect-5.44.1.15-ldflags.patch + expect-5.43.0-fixformatsecurity.patch + expect-fedora-5.32.2-random.patch + expect-fedora-5.43.0-log_file.patch - multimedia/stream/rtmpdump/pspec.xml + programming/language/expect/pspec.xml - rtmpdump + expect - openssl - zlib + tcl /usr/bin /usr/lib - /usr/share/doc/rtmpdump /usr/share/man - - - - rtmpdump-devel - Development files for rtmpdump - rtmpdump için geliştirme dosyaları - - rtmpdump - openssl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-01-18 - 20190330 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 20150115 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 20150115 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 20150115 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-29 - 20150115 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - live555 - http://www.live555.com - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.stream - Multimedia streaming library - Çokluortam yayın kitaplığı - Live555 est un ensemble de librairies C++ pour le streaming (diffusion numérique) multimédia utilisant les protocoles de standards ouverts (RTP/RTCP, RTSP, SIP). - Live555 is a set of C++ libraries for multimedia streaming, using open standard protocols (RTP/RTCP, RTSP, SIP) - Live555, açık standart protokolleri kullanan (RTP/RTCP, RTSP, SIP) çoklu ortam duraksız işlemleri (streaming) için C++ kütüphaneleridir. - http://live555.com/liveMedia/public/live.2020.01.11.tar.gz - - openssl-devel - - - shared-config.patch - - multimedia/stream/live555/pspec.xml - - - live555 - - openssl - - - /usr/lib /usr/share/doc - - live555-devel - Development files for live555 - live555 için geliştirme dosyaları - - live555 - - - /usr/include - - - - 2020-01-19 - 2020.01.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 2018.08.05 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-18 - 2018.02.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 2016.10.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2016.10.21 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2014.05.08 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2014-05-25 - 2014.05.08 + 2022-05-01 + 5.45.4 First release Kamil Atlı - suvarice@gmail.com + suvari@pisilinux.org - libmms - http://sourceforge.net/projects/libmms + go + https://golang.org - PisiLinux Community - admins@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - GPLv2 - library - multimedia.stream - A common library for accessing MMS media streaming protocol - MMS protokolüne erişim sağlayan bir kütüphane - libmms is a library for accessing Microsoft Media Server (MMS) media streaming protocol. - libmms, Microsoft Media Server(MMS) akış protokolünü kullanan ses kaynaklarına erişmek için kullanılan bir kütüphanedir. - mirrors://sourceforge/libmms/libmms-0.6.4.tar.gz - multimedia/stream/libmms/pspec.xml + BSD + app:console + programming.language + Compiler and tools for the Go programming language from Google + Go is an open source programming language that makes it easy to build simple, reliable, and efficient software. + https://github.com/golang/go/archive/go1.15.tar.gz + https://dl.google.com/go/go1.15.linux-amd64.tar.gz + programming/language/go/pspec.xml - libmms - - /usr/lib - /usr/share/doc - - - - libmms-devel - Development files for libmms - libmms için geliştirme dosyaları + golang + Compiler and tools for the Go programming language from Google - libmms - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-03 - 0.6.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.6.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-15 - 0.6.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.6.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-23 - 0.6.4 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - mpd - https://www.musicpd.org/ - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - app - multimedia.stream - Music Player Daemon. - Müzik Çalıcı Sunucusu (MPD) - Music Player Daemon (MPD) is a flexible, powerful, server-side application for playing music. Through plugins and libraries it can play a variety of sound files while being controlled by its network protocol. - MPD çoğu müzik dosyasını (MP3, Ogg Vorbis, FLAC, AAC, Mod vs.) çalar ve ağda yayınlar. - https://musicpd.org/download/mpd/0.23/mpd-0.23.7.tar.xz - - meson - cmake - fmt-devel - curl-devel - flac-devel - yajl-devel - lame-devel - zlib-devel - dbus-devel - boost-devel - expat-devel - samba-devel - icu4c-devel - avahi-devel - faad2-devel - libao-devel - shine-devel - libmms-devel - mpg123-devel - sqlite-devel - openal-devel - ffmpeg-devel - libgme-devel - libmad-devel - libogg-devel - libnfs-devel - libcdio-devel - libopus-devel - libsoxr-devel - libupnp-devel - twolame-devel - wavpack-devel - zziplib-devel - libpcre2-devel - alsa-lib-devel - libshout-devel - liburing-devel - pipewire-devel - libmpcdec-devel - libgcrypt-devel - audiofile-devel - libid3tag-devel - libmikmod-devel - libvorbis-devel - cyrus-sasl-devel - fluidsynth-devel - libmodplug-devel - libsndfile-devel - libopenmpt-devel - libmpdclient-devel - libsamplerate-devel - libchromaprint-devel - pulseaudio-libs-devel - libcdio-paranoia-devel - jack-audio-connection-kit-devel - python3-six - python3-Babel - python3-sphinx - python3-certifi - python3-requests - python3-imagesize - python3-snowballstemmer - python3-sphinx-alabaster-theme - python3-sphinxcontrib-websupport - - multimedia/stream/mpd/pspec.xml - - - mpd - - curl - flac - yajl - lame - zlib - dbus - boost - expat - samba - icu4c - avahi - faad2 - libao - shine - libmms - mpg123 - sqlite - openal - ffmpeg - libgme - libmad - libogg - libnfs - libcdio - libopus - libsoxr - libupnp - twolame - wavpack - zziplib - libpcre2 - alsa-lib - libshout - liburing - pipewire - libmpcdec - libgcrypt - audiofile - libid3tag - libmikmod - libvorbis - avahi-libs - fluidsynth - libmodplug - libsndfile - libopenmpt - libmpdclient - libsamplerate - libchromaprint - pulseaudio-libs - libcdio-paranoia - jack-audio-connection-kit + git /etc - /usr/bin - /usr/share/icons - /usr/share/man - /usr/share/doc + /usr/share/ + /usr/lib/ + /usr/bin/ - - 2022-05-14 - 0.23.7 - Version bump. - fury - uglyside@yandex.ru - - - 2022-04-16 - 0.23.6 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-02 - 0.23.5 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-23 - 0.23.4 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-23 - 0.23.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-17 - 0.23 - Version bump. - fury - uglyside@yandex.ru - - - 2021-09-07 - 0.22.11 - Version bump. - fury - uglyside@yandex.ru - - - 2021-07-11 - 0.22.9 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-29 - 0.22.8 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-20 - 0.22.7 - Version bump. - fury - uglyside@yandex.ru - - - 2021-03-12 - 0.22.6 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-22 - 0.22.4 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-13 - 0.22.3 - First Beta release. - fury - uglyside@yandex.ru - - - - - - icecast - http://www.icecast.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - multimedia.stream - ShoutCast compatible streaming media server - Shoutcast uyumlu muzik yayın sunucusu - Icecast is a streaming media server which currently supports Ogg Vorbis and MP3 audio streams. It can be used to create an Internet radio station or a privately running jukebox and many things in between. - Icecast, Ogg Vorbis ve Mp3 formatlarını destekleyerek ağ üzerinden muzik yayını yapmanızı sağlar. Icecast ile bir internet radyo istasyonu kurabilir ya da kendinize özel bir şarkı liste oluşturup paylaşabilirsiniz. - icecast - http://downloads.xiph.org/releases/icecast/icecast-2.4.4.tar.gz - - libxslt-devel - libogg-devel - libvorbis-devel - libkate-devel - speex-devel - libtheora-devel - curl-devel - libxml2-devel - openssl-devel - - - pthread_flag.patch - icecast.conf.patch - - multimedia/stream/icecast/pspec.xml - - - icecast - - libxslt - libogg - libvorbis - libkate - speex - libtheora - curl - libxml2 - openssl - - - /etc/icecast - /usr/bin - /usr/share/doc - /usr/share/icecast - /usr/share/man - /usr/share/pixmaps - /var - /run - /usr/lib/tmpfiles.d/icecast.conf - - - System.Package - System.Service - - - tmpfiles.conf - - - - - 2020-02-07 - 2.4.4 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-09-01 - 2.4.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-15 - 2.4.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.4.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 2.4.3 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - radiotray-ng - https://github.com/ebruck/radiotray-ng - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - multimedia.stream - Radiotray-NG: An Internet radio player for Linux. - It became clear as one of the early contributors to the RadioTray project that it was not getting the attention it required and was probably dead. A lot of the technologies it used had moved on to newer versions and the bugs started piling up. I did my best to help users, but a new start was required. - https://github.com/ebruck/radiotray-ng/archive/refs/tags/v0.2.8.tar.gz - - cmake - ccache - wxGTK3 - curl-devel - gtk3-devel - boost-devel - wxGTK-devel - lsb-release - wxGTK-common - glibmm-devel - libbsd-devel - python3-devel - ncurses-devel - jsoncpp-devel - libnotify-devel - gstreamer-devel - libxdg-basedir-devel - libappindicator-devel - - multimedia/stream/radiotray-ng/pspec.xml - - - radiotray-ng - - curl - gtk3 - boost - glib2 - glibmm - libbsd - libgcc - wxGTK3 - jsoncpp - gstreamer - libnotify - libsigc++ - python3-lxml - wxGTK-common - libxdg-basedir - libappindicator - - - /etc/xdg/autostart - /usr/bin - /usr/share - /usr/share/doc - - - - - 2021-09-12 - 0.2.8 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-28 - 0.2.7 - First Beta build. - fury - uglyside@yandex.ru - - - - - - darkice - http://www.darkice.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - multimedia.stream - Live audio streamer - Canlı müzik, ses yayınlama aracı - DarkIce as a live audio streamer. It records audio from an audio interface (e.g. sound card), encodes it and sends it to a streaming server. - Darkice bir canlı müzik, ses yayınlama uygulamasıdır. Bir ses arayüzünden (örneğin bir ses kartı) sesleri kaydeder, kodlar ve yayınlayacak sunucuya gönderir. - https://github.com/rafael2k/darkice/releases/download/v1.4/darkice-1.4.tar.gz - - lame-devel - faac-devel - libogg-devel - libopus-devel - twolame-devel - alsa-lib-devel - libvorbis-devel - libsamplerate-devel - pulseaudio-libs-devel - - multimedia/stream/darkice/pspec.xml - - - darkice - - lame - faac - libgcc - libogg - libopus - twolame - alsa-lib - libvorbis - libsamplerate - pulseaudio-libs - - - /etc - /usr/share/doc - /usr/share/man - /usr/bin - - - - - 2020-09-28 - 1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-03 - 1.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-15 - 1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 1.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - mlt - https://www.mltframework.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.tv - A multimedia framework, designed and developed for television broadcasting - Televizyon yayını için tasarlanmış bir çoklu ortam altyapısı - MLT is an open source multimedia framework, designed and developed for television broadcasting. - MLT televizyon yayını için tasarlanmış, açık kaynak kodlu bir çoklu ortam alyapısıdır. - https://github.com/mltframework/mlt/releases/download/v7.2.0/mlt-7.2.0.tar.gz - - cmake - alsa-lib-devel - swig - 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 - rubberband-devel - - multimedia/tv/mlt/pspec.xml - - - perl-mlt - Perl bindings for MLT - MLT için Perl bağlayıcıları - programming.language.perl - - libgcc - perl - mlt - - - /usr/lib/perl* - - - - python-mlt - Python bindings for MLT - MLT için Python bağlayıcıları - programming.language.python - - libgcc - python3 - mlt - - - /usr/lib/python* - - - - mlt - - sox - fftw3 - pango - glib2 - opencv - ffmpeg - libX11 - libgcc - libsdl - libsdl2 - libexif - libxml2 - qt5-svg - alsa-lib - qt5-base - libvorbis - sdl-image - fontconfig - gdk-pixbuf - rubberband - libsamplerate - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/mlt-7 - /usr/share/mlt/modules - /usr/share/mlt/modules/lumas/PAL - /usr/share/man - - - - mlt-devel - Development files for mlt - mlt için geliştirme dosyaları - - mlt - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2021-12-09 - 7.2.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 7.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-09-14 - 7.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2020-08-30 + 1.15 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2021-08-30 - 6.26.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2020-05-18 + 1.14.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com - 2021-06-17 - 6.26.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2020-03-27 + 1.14.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2020-05-11 - 6.20.0 + 2020-02-24 + 1.13.8 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Blue Devil + bluedevil@sctzine.com - 2020-02-03 - 6.18.0 + 2019-04-14 + 1.11.9 Version bump. - Kamil Atlı - suvariqpisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - 2019-09-17 - 6.16.0 - Version bump. + 2018-08-19 + 1.10.3 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2019-04-18 - 6.12.0 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2018-06-08 + 1.10.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2018-10-13 - 6.10.0 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2017-12-31 + 1.9.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2018-09-01 - 6.6.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-26 - 6.6.0 - Rebuild ffmpeg - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-13 - 6.4.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-25 - 6.2.0 + 2017-08-21 + 1.7.6 Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - - 2016-06-20 - 0.9.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-16 - 0.9.8 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - zvbi - http://zapping.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.tv - VBI Decoding Library for Zapping - Zapping uygulaması için VBI çözücü kütüphanesi - Zapping est un lecteur TV pour le bureau Gnome. Avec Zapping et une carte TV vous pouvez, voir la télévision, faire des copies d'écran et effectuer des enregistrements audio et vidéo. Zapping gère les sous-titres et le télétexte. - Zapping is a TV viewer for the Gnome desktop. With Zapping and a TV card you can watch TV, take screenshots, and record video and audio. Zapping supports Closed Caption and Teletext subtitles. - Zapping Gnome masaüstü için bir televizyon göstericisidir. Zapping ve bir TV kartı ile TV seyredebilir, ekran resmi çekebilir ve video ve audio kaydedebilirsiniz. Zapping Kapalı Çekim (Closed Capture) ve Teletex altyazılarını desteklemektedir. - Zapping es un visualizador de TV para el escritorio Gnome. Con Zapping y una tarjeta de TV puede mirar la tele, capturar pantallas, grabar video y audio. Zapping soporta subtitulos teletext y Closed Caption. - mirrors://sourceforge/zapping/zvbi-0.2.35.tar.bz2 - - libpng-devel - libX11-devel - doxygen - - - zvbi-0.2.31-linkage_fix.diff - zvbi-0.2.7-fix-build.patch - - multimedia/tv/zvbi/pspec.xml - - - zvbi - - /usr/bin - /usr/sbin - /usr/lib - /usr/share/doc/zvbi - /usr/share/man - /usr/share/locale - - - - zvbi-devel - Development files for zvbi - zvbi için geliştirme dosyaları - - zvbi - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/zvbi/html - - - - 2020-03-03 - 0.2.35 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 0.2.35 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 0.2.35 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.2.35 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-27 - 0.2.35 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - 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-12-09 - 6.26.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - xawtv - http://linuxtv.org/downloads/xawtv/ - - Erdinc Gultekin - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.tv - TV application - TV uygulaması - xawtv is a TV application that supports many interfaces (analog video streams), such as Xvideo, v4l2 and bktr etc. It can display TV streams and record them. - xawtv Xvideo, v4l2, bktr gibi birçok arayüzü destekleyen bir TV uygulamasıdır. xawtv ayrıca video kayıt yeteneği ve birkaç yararlı konsol aracına sahiptir. - xawtv - http://linuxtv.org/downloads/xawtv/xawtv-3.106.tar.bz2 - - alsa-lib-devel - aalib-devel - libquicktime-devel - openmotif-devel - libdv-devel - zvbi-devel - lirc-devel - libv4l-devel - xorg-font - libXxf86dga-devel - libdv - libXpm-devel - libXrender-devel - libXv-devel - mesa-devel - libXext-devel - libXrandr-devel - libXxf86vm-devel - libXmu-devel - libFS-devel - fontconfig-devel - libXt-devel - libXft-devel - libXaw-devel - zvbi-devel - libXinerama-devel - libSM-devel - libICE-devel - libexplain-devel - libjpeg-turbo-devel - gpm - zlib-devel - libX11-devel - libpng-devel - ncurses-devel - freetype-devel - - - v4l-conf_non-position-independent-executable_fix.patch - xawtv-3.95.patch - - multimedia/tv/xawtv/pspec.xml - - - xawtv - - gpm - zvbi - lirc - mesa - zlib - aalib - libSM - libdv - libXt - libXv - libX11 - libpng - libXmu - libXaw - libICE - libv4l - libXpm - libXft - ncurses - libXext - freetype - alsa-lib - xorg-font - libXrandr - libXrender - libXxf86vm - fontconfig - libexplain - libXxf86dga - libXinerama - libquicktime - libjpeg-turbo - - - /etc - /usr/bin - /usr/lib/xawtv - /usr/share/doc - /usr/share/man - /usr/share/xawtv - /usr/share/applications - /usr/share/pixmaps - - - xawtv.desktop - - - - - 2020-03-04 - 3.106 + 2017-03-20 + 1.7.5 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Ertuğrul Erata + ertugrulerata@gmail.com - 2018-09-01 - 3.105 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2016-08-06 + 1.6.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com - 2017-01-15 - 3.103 - Add Dependency. + 2016-06-09 + 1.6.2 + Release Bump Pisi Linux Community admin@pisilinux.org - 2016-06-09 - 3.103 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2016-05-07 + 1.6.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com 2016-01-09 - 3.103 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - hypnotix - https://github.com/linuxmint/hypnotix - - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - multimedia.tv - Hypnotix is an IPTV streaming application with support for live TV, movies and series. - Hypnotix, canlı TV, filmler ve dizileri destekleyen bir IPTV akış uygulamasıdır. - Hypnotix is an IPTV streaming application with support for live TV, movies and series. - Hypnotix, canlı TV, film ve dizi desteği olan bir IPTV akış uygulamasıdır. - https://github.com/linuxmint/hypnotix/archive/refs/tags/2.6.tar.gz - multimedia/tv/hypnotix/pspec.xml - - - hypnotix - - xapp - dconf - mpv-player - python3-cairo - python3-imdbpy - python3-requests - python3-youtube_dl - python3-setproctitle - - - /usr/bin - /usr/lib - /usr/share/applications - /usr/share/glib-2.0 - /usr/share/locale - /usr/share/icons - /usr/share/hypnotix - /usr/share/doc - - - - - 2022-05-22 - 2.6 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-06-25 - 1.9 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - faac - https://github.com/knik0/faac - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - MPEG-4 audio codecs - Özgür MPEG-4 ses codecleri - Free MPEG-4 audio codecs by AudioCoding.com. - https://ftp.osuosl.org/pub/blfs/conglomeration/faac/faac-1_30.tar.gz - - libmp4v2-devel - - multimedia/sound/faac/pspec.xml - - - faac - - libmp4v2 - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - faac-devel - Development files for faac. - faac için geliştirme dosyaları - - faac - - - /usr/include - - - - - 2021-12-20 - 1.30 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 1.29.9.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.29.9.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-12 - 1.28 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.28 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 1.28 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - opus-tools - https://opus-codec.org/ - - fury - uglyside@yandex.ru - - BSD - app:console - multimedia.sound - A set of tools to encode, inspect, and decode audio in the Opus format. - Opus dosya biçemini kodlamakö dekod etmek, incelemek vb için bir araç takımı. - This is opus-tools, a set of tools to encode, inspect, and decode audio in the Opus format. - opus-tools, Opus dosya biçemini kodlamak. dekod etmek, incelemek vbç için bir araç takımı sunar. - https://archive.mozilla.org/pub/opus/opus-tools-0.2.tar.gz - - libopusenc-devel - opusfile-devel - libopus-devel - openssl-devel - libogg-devel - flac-devel - - multimedia/sound/opus-tools/pspec.xml - - - opus-tools - A set of tools to encode, inspect, and decode audio in the Opus format. - - libopusenc - opusfile - openssl - libopus - libogg - flac - - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2020-06-28 - 0.2 - Rebuild. - fury - uglyside@yandex.ru - - - 2019-06-24 - 0.2 - First build. - fury - uglyside@yandex.ru - - - - - - celt - http://www.celt-codec.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - multimedia.sound - An audio codec for use in low-delay speech and audio communication - Düşük gecikmeli konuşma ve ses iletişimde kullanılmak üzere tasarlanan ses kodeği - CELT (Constrained Energy Lapped Transform) is an ultra-low delay audio codec designed for realtime transmission of high quality speech and audio. This is meant to close the gap between traditional speech codecs (such as Speex) and traditional audio codecs (such as Vorbis). - CELT (Constrained Energy Lapped Transform) yüksek kalitede konuşma ve ses görüşmesinin gerçek zamanlı iletiminde kullanılmak üzere tasarlanmış bir ses kodeğidir. - http://downloads.us.xiph.org/releases/celt/celt-0.11.3.tar.gz - - libogg-devel - - multimedia/sound/celt/pspec.xml - - - celt - app:console - library - - libogg - - - /usr/bin - /usr/lib - /usr/share/doc - - - - celt-devel - Development files for celt - celt için geliştirme dosyaları - library - - celt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-12 - 0.11.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 0.11.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.11.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.11.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-15 - 0.11.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libsamplerate - https://github.com/libsndfile/libsamplerate - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.sound - Secret Rabbit Code (alias libsamplerate) est un convertisseur audio de taux de Sample (Sample Rate Converter). - Secret Rabbit Code (aka libsamplerate) is a Sample Rate Converter for audio - libsamplerate ses dosyaları için basit bir örnekleme oranı dönüştürücü - Secret Rabbit Code is a sample rate converter for audio. It is capable of arbitrary and time varying conversions. It can downsample by a factor of 12 and upsample by the same factor. The ratio of input and output sample rates can be a real number. The conversion ratio can also vary with time for speeding up and slowing down effects. - libsamplerate (Seceret Rabbit Code) ses dosyaları için basit bir örnekleme oranı dönüştürücüsüdür. Zaman ya da tercih edilen başka bir yapıya bağlı olarak 12 kata kadar dönüşüm yapabilir. Örnekleme oranı değiştirebildiği gibi hızlandırma ve yavaşlatma filtreleri de uygulayabilir. - https://github.com/libsndfile/libsamplerate/releases/download/0.2.2/libsamplerate-0.2.2.tar.xz - - libsndfile-devel - - multimedia/sound/libsamplerate/pspec.xml - - - libsamplerate - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libsamplerate-devel - Development files for libsamplerate - libsamplerate için geliştirme dosyaları - libsamplerate için geliştirme dosyaları - - libsamplerate - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-01-18 - 0.2.2 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2020-01-12 - 0.1.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.1.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 0.1.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.1.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.1.8 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - yarock - https://seb-apps.github.io/yarock/ - - Stefan Gronewold - groni@pisilinux.org - - GPLv3 - multimedia.sound - Qt Modern Music Player with collection browse based on cover art. - Yarock is a music player in c++/Qt designed to provide a clean, simple and beautiful music collection based on album coverart. - https://launchpadlibrarian.net/416223454/Yarock_1.4.0_Sources.tar.gz - - cmake - qt5-sql-odbc - qt5-linguist - qt5-sql-mysql - qt5-sql-sqlite - qt5-base-devel - qt5-sql-postgresql - qt5-x11extras-devel - mpv-player-devel - qt5-phonon-devel - htmlcxx-devel - taglib-devel - - multimedia/sound/yarock/pspec.xml - - - yarock - - qt5-linguist - qt5-base - qt5-x11extras - mpv-player - qt5-phonon - htmlcxx - taglib - - - /usr/bin - /usr/lib/yarock - /usr/share/appdata - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/yarock/translations - /usr/share/doc/yarock - - - - - 2020-09-17 - 1.4.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 1.4.0 - Version bump - fury - uglyside@yandex.ru - - - 2018-09-01 - 1.1.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-23 - 1.1.6 - Rebuild with new toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-24 - 1.1.6 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - portaudio - http://www.portaudio.com - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.sound - Portable audio library - Ses kütüphanesi - Une API audio multi-plateforme libre. - PortAudio is a free, cross platform, open-source, audio I/O library. - Birden çok platformda kullanılabilinen açıkkodlu ses kütüphanesi - http://files.portaudio.com/archives/pa_stable_v190700_20210406.tgz - - alsa-lib-devel - jack-audio-connection-kit-devel - - multimedia/sound/portaudio/pspec.xml - - - portaudio - - libgcc - alsa-lib - jack-audio-connection-kit - - - /usr/lib - /usr/share/doc - - - - portaudio-devel - Development files for portaudio - portaudio için geliştirme dosyaları - - portaudio - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/portaudio/html - - - - - 2021-07-21 - 190700.20210406 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-03-22 - 190600.20161030 - Rebuild with cxx. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-12 - 190600.20161030 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 190600.20161030 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 190600.20161030 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 19.20140130 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-21 - 19.20140130 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sayonara - https://sayonara-player.com/ - - Pisi Linux Community - admins@pisilinux.org - - GPLv3 - app:gui - multimedia.sound - Sayonara is a small, clear and fast audio player for Linux written in C++, supported by the Qt framework. It uses Gstreamer as audio backend. - Although Sayonara is considered as a lightweight player, it holds a lot of features to organize even big music collections. - https://gitlab.com/luciocarreras/sayonara-player/-/archive/1.7.0-stable3/sayonara-player-1.7.0-stable3.tar.bz2 - - cmake - ccache - zlib-devel - glib2-devel - libmtp-devel - taglib-devel - qt5-linguist - qt5-sql-odbc - qt5-sql-mysql - qt5-svg-devel - qt5-base-devel - qt5-sql-sqlite - gstreamer-devel - libnotify-devel - gst-plugins-ugly - qt5-sql-postgresql - gst-plugins-bad-devel - gst-plugins-base-devel - - multimedia/sound/sayonara/pspec.xml - - - sayonara - - zlib - glib2 - libgcc - libmtp - taglib - qt5-svg - qt5-base - libnotify - gstreamer - gst-plugins-bad - gst-plugins-base - gst-plugins-good - gst-plugins-ugly - - - /usr/bin - /usr/lib/sayonara - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2021-10-17 - 1.7.0_3 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-09-17 - 1.6.0_beta6 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-03-08 - 1.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-01 - 1.4.1 - Version bump. - fury - uglyside@yandex.ru - - - 2019-05-01 - 20190428 - Version bump. - fury - uglyside@yandex.ru - - - 2019-04-14 - 20180905 - Version bump. - fury - uglyside@yandex.ru - - - 2017-04-24 - 20161030 - Rebuild with new toolchain - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-04 - 20161030 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.9.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.9.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-02 - 0.8.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - lash - http://savannah.nongnu.org/projects/lash - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - app:gui - multimedia.sound - LASH Audio Session Handler - LASH Ses Oturum Yöneticisi - LASH is a session management system for JACK and ALSA audio applications on GNU/Linux. It allows you to save and restore audio sessions consisting of multiple interconneced applications, restoring program state (i.e. loaded patches) and the connections between them. - LASH GNU/Linux'taki JACK ve ALSA ses uygulamaları için bir ses oturumu yönetim sistemidir. Bir çok birbirine bağlı uygulamanın ses oturumunu kaydedip, geri yüklemenize, program durumunu (örneğin yüklenmiş yamalar) ve aralarındaki bağlantıları geri yüklemenize olanak tanır. - lash - http://download.savannah.gnu.org/releases/lash/lash-0.6.0~rc2.tar.bz2 - - alsa-lib-devel - gtk2-devel - jack-audio-connection-kit-devel - dmapi-devel - texi2html - dbus-devel - libxml2-devel - python-devel - libutil-linux-devel - - - makefile.patch - docs-Makefile.patch - - multimedia/sound/lash/pspec.xml - - - lash - - gtk2 - dbus - glib2 - dmapi - libgcc - libxml2 - readline - alsa-lib - libutil-linux - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - - - lash-panel.desktop - - - - lash-devel - Development files for lash - lash için geliştirme dosyaları - - dbus-devel - lash - alsa-lib-devel - libxml2-devel - libutil-linux-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 0.6.0_rc2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 0.6.0_rc2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.6.0_rc2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.6.0_rc2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-01 - 0.6.0_rc2 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - ymuse - https://yktoo.com/en/software/ymuse/ - - fury - uglyside@yandex.ru - - Apache-2 - app:gui - multimedia.sound - Easy, functional, and snappy client for Music Player Daemon. - Ymuse is an easy, functional, and snappy GTK front-end (client) for Music Player Daemon written in Go. - https://github.com/yktoo/ymuse/archive/v0.17.tar.gz - - golang - gtk3-devel - glib2-devel - gobject-introspection-devel - - multimedia/sound/ymuse/pspec.xml - - - ymuse - - atk - gtk3 - cairo - glib2 - pango - freetype - gdk-pixbuf - fontconfig - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2021-10-13 - 0.17 - First build - fury - uglyside@yandex.ru - - - - - - libvorbis - https://xiph.org/vorbis/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - Librairie de formatage de fichier son Ogg Vorbis libre. - The Vorbis general audio compression codec - Vorbis genel ses sıkıştırma kodlaması - libvorbis is a fully open, non-proprietary, patent- and royalty-free, general-purpose compressed audio format for audio and music at fixed variable bitrates from 16 to 128 kbps/channel. - libvorbis tamamen açık, sahipsiz, genel amaçlı sıkıştırılmış ses biçimidir. - https://ftp.osuosl.org/pub/xiph/releases/vorbis/libvorbis-1.3.7.tar.xz - - libogg-devel - - multimedia/sound/libvorbis/pspec.xml - - - libvorbis - The Vorbis general audio compression codec - - libogg - - - /usr/lib - - - - libvorbis-devel - Development files for libvorbis - libvorbis için geliştirme dosyaları - libvorbis-devel, libvorbis için geliştirme dosyaları içerir. - - libvorbis - libogg-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - libvorbis-docs - Documentation files for libvorbis - libvorbis ile ilgili belgeler - libvorbis-docs, libvorbis ile ilgili belgelendirme dosyaları içerir. - - libvorbis - - - /usr/share/doc - - - - libvorbis-32bit - 32-bit shared libraries for libvorbis - libvorbis için 32-bit paylaşımlı kitaplıklar - libvorbis-32bit, libvorbis için 32-bit paylaşımlı kitaplıklar içerir. - emul32 - emul32 - - libogg-32bit - - - libvorbis - libogg-32bit - - - /usr/lib32 - - - - - 2021-12-04 - 1.3.7 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2020-01-06 - 1.3.6 - Rebuilt for the new toolchain. - Blue DeviL - bluedevil@sctzine.com - - - 2018-07-29 - 1.3.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.3.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.3.4 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.3.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - flite - http://www.speech.cs.cmu.edu/flite/index.html - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - library - multimedia.sound - Flite: a small run-time speech synthesis engine - Küçük ve hızlı bir konuşma sentezleyici - Flite (festival-lite) is a small, fast run-time speech synthesis engine developed at CMU and primarily designed for small embedded machines and/or large servers. Flite is designed as an alternative synthesis engine to Festival for voices built using the FestVox suite of voice building tools. - Flite (festival-lite), CMU tarafından geliştirilmiş küçük ve hızlı bir konuşma sentezleyicisidir. Flite, Festival'e alternatif sentezleyici olarak, öncelikle küçük gömülü sistemler ve/veya büyük sunucular için tasarlanmıştır. - http://festvox.org/flite/packed/flite-2.1/flite-2.1-release.tar.bz2 - - alsa-lib-devel - chrpath - - - flite-ldflags.patch - CVE-2014-0027_unsafe_temporary_file.patch - - multimedia/sound/flite/pspec.xml - - - flite - - alsa-lib - - - /usr/bin - /usr/share/doc - /usr/lib - - - - flite-devel - Development headers for flite - flite için geliştirme başlıkları - - flite - - - /usr/include - - - - - 2020-02-28 - 2.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-28 - 2.1 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-21 - 2.1 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-01-19 - 2.1 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2018-08-05 - 2.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 2.0.0 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-29 - 2.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-08-18 - 1.9.0 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-05-27 - 1.4 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2014-01-24 - 1.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.4 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - ncmpcpp - https://rybczak.net/ncmpcpp/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.sound - NCurses Music Player Client (Plus Plus). - Ncurses tabanlı MPD istemcisi - ncmpcpp – featureful ncurses based MPD client inspired by ncmpc. - Ncmpcpp; etiket düzenleyici, çalma listesi düzenleyici, şarkı sözü desteği vb. özellikleri olan bir MPD istemcisidir. - https://rybczak.net/ncmpcpp/stable/ncmpcpp-0.9.2.tar.bz2 - - ccache - curl-devel - fftw3-devel - icu4c-devel - boost-devel - taglib-devel - ncurses-devel - readline-devel - libmpdclient-devel - - multimedia/sound/ncmpcpp/pspec.xml - - - ncmpcpp - - mpd - curl - boost - fftw3 - icu4c - libgcc - taglib - ncurses - readline - libmpdclient - - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2021-11-04 - 0.9.2 - Version bump - fury - uglyside@yandex.ru - - - 2020-12-23 - 0.9.1 - Version bump - fury - uglyside@yandex.ru - - - 2020-12-20 - 0.9 - Version bump - fury - uglyside@yandex.ru - - - 2020-12-13 - 0.8.2 - 0.9 release coming soon. - fury - uglyside@yandex.ru - - - - - - cantata - https://github.com/CDrummond/cantata - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv3 - multimedia.sound - Qt4 / KDE4 Music Player Client - Cantata is a graphical client for MPD - cantata - https://github.com/CDrummond/cantata/releases/download/v2.4.2/cantata-2.4.2.tar.bz2 - - qt5-base-devel - qt5-svg-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - qt5-qdbusviewer - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-multimedia-devel - qt5-sql-postgresql - cmake - libcddb-devel - musicbrainz5-devel - cdparanoia-devel - libxml2-devel - solid-devel - udisks2-devel - zlib-devel - eudev-devel - speex-devel - libmtp-devel - mpg123-devel - taglib-devel - ffmpeg-devel - libqjson-devel - vlc-devel - perl-URI - libcdio-paranoia-devel - taglib-extras-devel - - multimedia/sound/cantata/pspec.xml - - - cantata - - qt5-base - qt5-svg - qt5-multimedia - zlib - libcddb - cdparanoia - musicbrainz5 - perl-URI - eudev - libgcc - vlc-libs - speex - libmtp - mpg123 - taglib - ffmpeg - libqjson - libcdio-paranoia - taglib-extras - - - /usr/bin - /etc/dbus-1 - /usr/share/doc/ - /usr/share/icons - /usr/share/pixmaps - /usr/share/cantata - /usr/share/dbus-1 - /usr/lib - /usr/share/locale - /usr/share/applications - - - - - 2020-10-01 - 2.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-08 - 2.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 2.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 2.2.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-02 - 2.0.1 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-12-07 - 2.0.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libcue - https://github.com/lipnitsk/libcue - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Cue sheet parser library - Cue sayfası ayrıştırma kitaplığı - libcue is intended for parsing a so-called cue sheet from a char string or a file pointer. - libcue, cue sayfalarındaki metinleri ayrıştırmak için kullanılan bir kitaplıktır. - https://github.com/lipnitsk/libcue/archive/v2.2.1.tar.gz - - cmake - - multimedia/sound/libcue/pspec.xml - - - libcue - - /usr/lib - /usr/share/doc - - - - libcue-devel - Development files for libcue - libcue için geliştirme dosyaları - - libcue - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 2.1.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-08 - 1.4.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - vorbis-tools - https://xiph.org/vorbis/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - multimedia.sound - Tools for using the Ogg Vorbis sound file format - Ogg Vorbis ses dosyaları için araçlar paketi. - This set of tools allow you to play and encode Ogg Vorbis files. - vorbis-tools Ogg Vorbis dosyaları oluşturabilmenize ve oynatabilmenize olanak tanır. - https://ftp.osuosl.org/pub/xiph/releases/vorbis/vorbis-tools-1.4.2.tar.gz - - curl-devel - flac-devel - libao-devel - speex-devel - libogg-devel - libkate-devel - opusfile-devel - libvorbis-devel - - multimedia/sound/vorbis-tools/pspec.xml - - - vorbis-tools - - libvorbis - libao - flac - speex - libogg - libkate - - - /usr/bin - /usr/share/doc - /usr/share/locale - /usr/share/man - - - - - 2021-12-04 - 1.4.2 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-03-08 - 1.4.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-01 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-28 - 1.4.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - qmmp - http://qmmp.ylsoftware.com - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - multimedia.sound - An audio-player, written with Qt5 library - Qt tabanlı müzik oynatıcı - Qmmp is an audio-player, written with Qt5 library. It's similar to Winamp or Xmms. Also supports Xmms and Winamp skins. qmmp-skins package in Contrib repository is recommended, too. - Qmmp Qt tabanlı bir müzik oynatıcısıdır. Xmms ve Winamp temalarını destekler. Ayrıca Contrib deposunda bulunan ve Pisi Linux'a özel temalar da içeren qmmp-skins paketini de kurmanız önerilir. - qmmp - http://qmmp.ylsoftware.com/files/qmmp-1.4.1.tar.bz2 - - qt5-multimedia-devel - qt5-base-devel - libX11-devel - qt5-x11extras-devel - qt5-linguist - qt5-sql-postgresql - qt5-sql-odbc - qt5-sql-mysql - qt5-sql-sqlite - libsamplerate-devel - wavpack-devel - flac-devel - faad2-devel - libmodplug-devel - libmms-devel - libcdio-devel - libvorbis-devel - libsndfile-devel - pulseaudio-libs-devel - alsa-lib-devel - mesa-devel - libmad-devel - taglib-devel - ffmpeg-devel - libmpcdec-devel - libcddb-devel - libogg-devel - libbs2b-devel - mpg123-devel - libarchive-devel - jack-audio-connection-kit-devel - cmake - - multimedia/sound/qmmp/pspec.xml - - - qmmp - - qt5-base - curl - libX11 - libgcc - qt5-x11extras - qt5-multimedia - libsamplerate - wavpack - flac - faad2 - libmodplug - libmms - libvorbis - libsndfile - pulseaudio-libs - alsa-lib - libmad - taglib - ffmpeg - libcddb - libcdio - libcdio-paranoia - jack-audio-connection-kit - libmpcdec - libogg - mpg123 - libbs2b - libarchive - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - qmmp-devel - qmmp development files - qmmp için geliştirme dosyaları - - qmmp - qt5-base-devel - - - /usr/lib/pkgconfig - /usr/include/ - - - - - 2020-09-19 - 1.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 1.3.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-08 - 1.3.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-12 - 1.2.4 - version bumb. - erkan IŞIK - erkanisik@pisilinux.org - - - 2018-09-01 - 1.2.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 1.2.1 - Version bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2017-04-24 - 1.1.8 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-20 - 1.0.10 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-09 - 1.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 1.0.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-11-19 - 1.0.1 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - audacity - https://www.audacityteam.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.sound - Multi-track audio editor and recorder - Özgür ses düzenleyici ve kaydedici - Grabador y editor de audio de código libre - With Audacity, you can cut, copy, splice or mix sounds together; change the speed or pitch of a recording and much more. Editing is very fast and provides unlimited undo/redo. There are digital effects and spectrum analysis tools. Supported file formats include Ogg Vorbis, MP3, WAV, AIFF, and AU.. - Audacity ses dosyalarını kaydetmek ve düzenlemek için özgür, açık kodlu bir yazılımdır. - Audacity es un editor de grabación y edición de sonido libre, de código abierto y multiplataforma. - https://github.com/audacity/audacity/archive/Audacity-2.4.1.tar.gz - - cmake - wxGTK3 - lv2-devel - flac-devel - gtk3-devel - lame-devel - expat-devel - glib2-devel - wxGTK-devel - wxBase-devel - ffmpeg-devel - libmad-devel - libogg-devel - taglib-devel - twolame-devel - alsa-lib-devel - libid3tag-devel - libvorbis-devel - libsndfile-devel - soundtouch-devel - gdk-pixbuf-devel - desktop-file-utils - libsamplerate-devel - vamp-plugin-sdk-devel - jack-audio-connection-kit-devel - - - audacity-2.4.1-fix-vertical-track-resizing.patch - - multimedia/sound/audacity/pspec.xml - - - audacity - Multi-track audio editor and recorder - - lv2 - flac - gtk3 - expat - glib2 - ffmpeg - libogg - libmad - libgcc - wxBase - wxGTK3 - twolame - alsa-lib - libid3tag - libvorbis - libsndfile - soundtouch - gdk-pixbuf - soundtouch - wxGTK-common - libsamplerate - vamp-plugin-sdk - jack-audio-connection-kit - lame - - - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/pixmaps - /usr/share/appdata - /usr/share/audacity - /usr/share/doc/audacity - /usr/share/locale - /usr/share/applications - - - - - 2020-05-21 - 2.4.1 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-05-21 - 2.4.1 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-05-21 - 2.4.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-30 - 2.3.3 - Version bump. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2019-03-13 - 2.3.1 - Version bump. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-04-28 - 2.2.2 - Rebuild ffmpeg. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-04-04 - 2.2.2 - First release for Pisi Linux 2.0. - Stefan Gronewold - groni@pisilinux.org - - - - - - openal - https://kcat.strangesoft.net/openal.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.sound - Open Audio Library is a vendor-neutral API for interactive spatialized audio - Açık ses kütüphanesi - OpenAL est une API audio 3D multi-plateforme utilisable pour les jeux et beaucoup d'autre types d'application audio. Les objets de base d'OpenAL sont le Listener (auditeur), a Source (source), et le Buffer (tampon). - OpenAL is a cross-platform 3D audio API appropriate for use with gaming applications and many other types of audio applications. The basic OpenAL objects are a Listener, a Source, and a Buffer. - OpenAL, oyun uygulamaları ve diğer birçok audio uygulama tipleriyle kullanılmaya tahsisli bir üç boyutlu audio API(Uygulama Programlama Arayüzü) çapraz platformudur. - https://github.com/kcat/openal-soft/archive/refs/tags/1.21.1.tar.gz - - cmake - zlib-devel - libsdl2-devel - alsa-lib-devel - pulseaudio-libs-devel - qt5-base-devel - jack-audio-connection-kit-devel - - multimedia/sound/openal/pspec.xml - - - openal - - libsdl2 - alsa-lib - qt5-base - - - /usr/bin - /usr/lib - /usr/share/doc/openal - /usr/share/openal - - - - openal-devel - Development files for openal - openal için geliştirme dosyaları - - openal - pulseaudio - - - /usr/include - /usr/lib/pkgconfig/openal.pc - /usr/lib32/pkgconfig/openal.pc - - - - openal-32bit - 32-bit shared libraries for openal - openal için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - zlib-32bit - libsdl2-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - openal - zlib-32bit - libsdl2-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - /usr/lib32 - - - - - 2021-09-24 - 1.21.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 1.20.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-04 - 1.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-23 - 1.18.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.18.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 1.17.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.15.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.15.1 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-25 - 1.15.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - liboggz - https://www.xiph.org/oggz/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - app::console - library - multimedia.sound - La librairie pour fichiers au format média Oggz. - A simple programming interface for reading and writing Ogg files and streams. - Oggz dosya biçimi kütüphanesi - liboggz is a C library for reading and writing Ogg files and streams. It offers various improvements over the reference libogg, including support for seeking, validation and timestamp interpretation. - liboggz, Oggz biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Oggz biçimli dosya oluşturmak için hem de Oggz dosyalarından paket ayıklamak için kullanılabilir. - http://downloads.xiph.org/releases/liboggz/liboggz-1.1.1.tar.gz - - libogg-devel - - multimedia/sound/liboggz/pspec.xml - - - liboggz - A simple programming interface for reading and writing Ogg files and streams. - - libogg - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - /usr/share - - - - liboggz-devel - Development files for libfishsound - liboggz için geliştirme dosyaları - liboggz-devel, liboggz için geliştirme dosyaları içerir - - liboggz - libogg-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-01-02 - 1.1.1 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - pulseaudio-qt - https://kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - library - multimedia.sound - Libpulse için Qt bağları - Libpulse için Qt bağları - Libpulse için Qt bağları - Libpulse için Qt bağları - https://download.kde.org/stable/pulseaudio-qt/pulseaudio-qt-1.3.tar.xz - - cmake - doxygen - glib2-devel - extra-cmake-modules - pulseaudio-libs-devel - qt5-sql-mysql - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - qt5-base-devel - qt5-assistant-devel - qt5-declarative-devel - - multimedia/sound/pulseaudio-qt/pspec.xml - - - pulseaudio-qt - - qt5-base - pulseaudio-libs - - - /usr/lib - /usr/share - /usr/share/doc - - - - pulseaudio-qt-devel - Development files for pulseaudio-qt - - pulseaudio-qt - - - /usr/include - /usr/lib/cmake - - - - - 2021-08-17 - 1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-31 - 1.2 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2020-02-03 - 1.2 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-12-01 - 1.1.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libogg - https://www.xiph.org/ogg/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.sound - La librairie pour fichiers au format média Ogg. - The Ogg media file format library - Ogg dosya biçimi kütüphanesi - libogg is a library for manipulating Ogg bitstream file formats. libogg supports both making Ogg bitstreams and getting packets from Ogg bitstreams. - libogg Ogg biçimli dosyalara erişmek için kullanılan bir kütüphanedir. Hem Ogg biçimli dosya oluşturmak için hem de Ogg dosyalarından paket ayıklamak için kullanılabilir. - https://ftp.osuosl.org/pub/xiph/releases/ogg/libogg-1.3.5.tar.xz - multimedia/sound/libogg/pspec.xml - - - libogg - The Ogg media file format library - - /usr/lib - /usr/share/doc - - - - libogg-devel - Development files for the ogg media file format library - libogg için geliştirme dosyaları - libogg-devel, libogg için geliştirme dosyaları içerir. - - libogg - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/aclocal - /usr/share/doc/libogg/*html - /usr/share/doc/libogg/*png - /usr/share/doc/libogg/ogg - - - - libogg-32bit - 32-bit shared libraries for libogg - libogg için 32-bit paylaşımlı kitaplıklar - libogg-32bit, libogg için 32-bit paylaşımlı kitaplıklar içerir. - emul32 - emul32 - - libogg - - - /usr/lib32 - - - - - 2021-12-04 - 1.3.5 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2020-01-06 - 1.3.4 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2018-07-29 - 1.3.3 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.3.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-02 - 1.3.2 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.3.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libsoxr - https://sourceforge.net/p/soxr/wiki/Home/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPL - library - multimedia.sound - The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio - The SoX Resampler library that aims to give fast and high quality results for any constant resampling ratio - https://sourceforge.net/projects/soxr/files/soxr-0.1.3-Source.tar.xz - - cmake - - multimedia/sound/libsoxr/pspec.xml - - - libsoxr - - libgcc - libgomp - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libsoxr-devel - Header files for libsoxr. - - libsoxr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 0.1.3 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - audacious - https://audacious-media-player.org - - PisiLinux Community - admins@pisilinux.org - - GPL-3 - app:gui - multimedia.sound - an advanced audio player - Açık kaynak kodlu bir müzikçalar - Audacious es un reproductor de audio disponible como software libre - Zaawansowany odtwarzacz muzyczny - Audacious is an open source audio player. A descendant of XMMS, Audacious plays your music how you want it, without stealing away your computer’s resources from other tasks. Drag and drop folders and individual song files, search for artists and albums in your entire music library, or create and edit your own custom playlists.Listen to CD’s or stream music from the Internet. Tweak the sound with the graphical equalizer or experiment with LADSPA effects. Enjoy the modern GTK-themed interface or change things up with Winamp classic skins. Use the plugins included with Audacious to fetch lyrics for your music, to set an alarm in the morning, and more. - Audacious ile dilerseniz bilgisayarınızdan ya da diğer kaynaklardan, sürükle-bırak yöntemiyle,müzik dosyalarınızı çalabilrsiniz. - Sanatçı ve albüm müzik kütüphanesi için arama yapabilir veya kendi özel çalma listelerinizi oluşturup ve düzenleyebilirsiniz. - CD ya da internet üzerinden canlı müzik dinleyeblir, GTK temalı arayüzlü bu uygulamayla , modern bir müzikçaların keyfini çıkarabilirsiniz. - Dilerseniz Winamp klasik arayüzleri ile görüntüsünü değiştirebilirsiniz. - Audacious ile birlikte eklentilerini ve daha fazlasını,örneğin sabahları bir alarm kurmak için kullanabilirsiniz. - Con Audacious puede escuchar música desde su ordenador o desde otras fuentes, si lo desea, puede arrastrar y soltar los archivos de música. Puede buscar por artista y álbum, disponer de biblioteca de música o crear sus propias listas de reproducción y editarlas. También puede cambiar la apariencia de la interfaz al modo de Winamp clásico. - Audacious to zaawansowany i bardzo wydajny odtwarzacz audio. Program obsługuje najpopularniejsze formaty dźwiękowe a w razie potrzeby listę formatów można poszerzyć dzięki licznym wtyczkom. - https://distfiles.audacious-media-player.org/audacious-4.1.tar.bz2 - - meson - cmake - gtk2-devel - glib2-devel - pango-devel - qt5-linguist - python3-devel - qt5-base-devel - gdk-pixbuf-devel - libarchive-devel - - multimedia/sound/audacious/pspec.xml - - - audacious - - gtk2 - glib2 - cairo - pango - libgcc - qt5-base - gdk-pixbuf - libarchive - - - /usr/share/doc - /usr/bin - /usr/share - /usr/lib - /usr/share/locale - - - - audacious-devel - - audacious - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-01-18 - 4.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-07 - 3.10 - Rebuild - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2018-12-06 - 3.10 - First release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - flac - http://flac.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - app:console - multimedia.sound - An encoder/decoder for the Free Lossless Audio Codec - Özgür Kayıpsız Ses Kodlaması için kodlayıcı/çözücü araçları - flac is the Free Lossless Audio Codec. The FLAC format supports streaming, seeking, and archival, and gives 25-75% compression on typical CD audio. This package contains tools and libraries to work with and support for files in FLAC format. - flac bir Özgür Kayıpsız Ses Kodlaması'dır. (Free Lossless Audio Codec) FLAC biçemi akan görüntü, arama ve arşivleme ve tipik bir Ses CD'sinde %25-75 sıkıştırmayı destekler. - https://ftp.osuosl.org/pub/xiph/releases/flac/flac-1.3.3.tar.xz - - libogg-devel - - multimedia/sound/flac/pspec.xml - - - flac - An encoder/decoder for the Free Lossless Audio Codec - - libogg - - - /usr/bin - /usr/lib - /usr/share/man - - - - flac-docs - Documentation files for flac - flac ile ilgili belgeler - flac-docs, flac ile ilgili belgelendirme dosyaları içerir. - - flac - - - /usr/share/doc - - - - flac-devel - Development files for flac - flac için geliştirme dosyaları - flac-devel, flac için geliştirme dosyaları içerir. - - libogg-devel - flac - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - - flac-32bit - 32-bit shared libraries for flac - flac için 32-bit paylaşımlı kitaplıklar - flac-32bit, flac için 32-bit paylaşımlı kitaplıklar içerir. - emul32 - emul32 - - libogg-32bit - - - libogg-32bit - libgcc - flac - - - /usr/lib32 - - - - - 2020-01-06 - 1.3.3 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2018-08-01 - 1.3.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.3.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.3.1 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-12-03 - 1.3.1 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - mocp - http://moc.daper.net/ - - fury - uglyside@yandex.ru - - GPL-2 - app:console - multimedia.sound - Music On Console Player. - MOC (music on console) is a console audio player for Linux/Unix designed to be powerful and easy to use. - https://codeload.github.com/jonsafari/mocp/zip/638e6b8bd14497c65c2af2ca9bf90d55d5d5f817 - - intltool - db-devel - popt-devel - curl-devel - flac-devel - icu4c-devel - faad2-devel - speex-devel - ffmpeg-devel - libmad-devel - taglib-devel - gettext-devel - wavpack-devel - ncurses-devel - alsa-lib-devel - libvorbis-devel - libid3tag-devel - libmpcdec-devel - libsndfile-devel - libmodplug-devel - libsamplerate-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - - - pulseaudio.patch - - multimedia/sound/mocp/pspec.xml - - - mocp - - db - curl - file - flac - popt - zlib - faad2 - speex - ffmpeg - libmad - libogg - taglib - ncurses - wavpack - alsa-lib - libid3tag - libmpcdec - libvorbis - libmodplug - libsndfile - libtool-ltdl - libsamplerate - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man/man1 - /usr/share/doc - - - - - 2021-10-13 - 2.6.0 - First build - fury - uglyside@yandex.ru - - - - - - normalize - http://normalize.nongnu.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - multimedia.sound - Bu karışık CD'ler ve mp3 koleksiyonları oluşturma gibi şeyler için yararlıdır - Bu karışık CD'ler ve mp3 koleksiyonları oluşturma gibi şeyler için yararlıdır - Normalize is a tool for adjusting the volume of audio files to a standard level. This is useful for things like creating mixed CD's and mp3 collections, where different recording levels on different albums can cause the volume to vary greatly from song to song - Bu karışık CD'ler ve mp3 koleksiyonları oluşturma gibi şeyler için yararlıdır - http://savannah.nongnu.org/download/normalize/normalize-0.7.7.tar.gz - - intltool - libmad-devel - vorbis-tools - lame-devel - flac-devel - mpg123-devel - audiofile-devel - bash-completion - - - mageia/compressed-wav-files.dpatch - mageia/fix-flac.dpatch - mageia/normalize-0.7.7-audiofile-pkgconfig.patch - mageia/normalize-0.7.7-automake-1.13.patch - mageia/normalize-0.7.7-m4.patch - mageia/normalize-0.7.7-mdv-fix-local-config.patch - - multimedia/sound/normalize/pspec.xml - - - normalize - - libmad - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2020-03-08 - 0.7.7 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2018-12-17 - 0.7.7 - First release k3b. - PisiLinux Community - admins@pisilinux.org - - - - - - libao - http://www.xiph.org/ao/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - La librairie de rendu (sortie) audio. - The audio output library - Ses çıktısı kütüphanesi - Libao is a cross platform audio output library. It currently supports ESD, OSS, Solaris, and IRIX. - http://downloads.xiph.org/releases/ao/libao-1.2.0.tar.gz - - alsa-lib-devel - pulseaudio-libs-devel - - multimedia/sound/libao/pspec.xml - - - libao - - alsa-lib - pulseaudio-libs - - - /usr/lib - /usr/share/doc - /usr/share/man - - - - libao-devel - Development files for libao - libao için geliştirme dosyaları - - libao - - - /usr/include/ao - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/libao/html - - - - - 2020-02-02 - 1.2.0 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-14 - 1.2.0 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-02-17 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-26 - 1.2.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - sox - http://sox.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - The swiss army knife of sound processing programs - Bir çok ses formatını birbirine dönüştürebilen, çalabilen ve kaydedebilen bir yazılım - SoX is a command line utility that can convert various audio formats to other formats. It can also apply various effects to these sound files during the conversion. SoX can also play and record audio files. - SoX çeşitli ses dosyası formatlarını birbirine çevirebilen bir konsol aracıdır. Sox ayrıca bu çevirme esnasında ses dosyalarına çeşitli efektler uygulayabilir. Bunların yanı sıra ses kaydı yapabilir ve ses dosyalarını oynatabilir. - mirrors://sourceforge/sox/sox-14.4.2.tar.bz2 - - pulseaudio-libs-devel - opencore-amr-devel - libsndfile-devel - ladspa-sdk-devel - libid3tag-devel - libvorbis-devel - alsa-lib-devel - wavpack-devel - libmad-devel - ffmpeg-devel - libogg-devel - libao-devel - lame-devel - gsm-devel - twolame-devel - libgomp - - - sox-dynamic.patch - - multimedia/sound/sox/pspec.xml - - - sox - - gsm - file - lame - libao - libmad - libogg - libgomp - twolame - wavpack - alsa-lib - libvorbis - libsndfile - libtool-ltdl - opencore-amr - pulseaudio-libs - - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/lib - - - - sox-devel - Development files for sox - sox için geliştirme dosyaları - - sox - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-02-03 - 14.4.2 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2018-09-01 - 14.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-27 - 14.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 14.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 14.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-17 - 14.4.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - pavucontrol - https://freedesktop.org/software/pulseaudio/pavucontrol/ - - fury - uglyside@yandex.ru - - GPLv2 - app:gui - multimedia.sound - PulseAudio Volume Control - PulseAudio Ses Denetimi - PulseAudio Volume Control (pavucontrol) is a simple GTK based volume control tool ("mixer") for the PulseAudio sound server. In contrast to classic mixer tools this one allows you to control both the volume of hardware devices and of each playback stream separately. - pavucontrol, PulseAudio ses sunucusu için basit bir ses denetimi uygulamasıdır. Diğer karıştırıcı araçlara ek olarak, bu uygulama hem donanımsal aygıtların hem de ses akışlarının ses seviyelerini ayarlamanıza izin verir. - https://freedesktop.org/software/pulseaudio/pavucontrol/pavucontrol-5.0.tar.xz - - intltool - gtkmm3-devel - libsigc++-devel - json-glib-devel - pulseaudio-libs-devel - libcanberra-gtk-devel - libcanberra-gtk3-devel - - multimedia/sound/pavucontrol/pspec.xml - - - pavucontrol - - gtk3 - glib2 - atkmm - gtkmm3 - glibmm - libgcc - libsigc++ - libcanberra - pulseaudio-libs - libcanberra-gtk3 - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-09-15 - 5.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-08-17 - 4.0 - First release - fury - uglyside@yandex.ru - - - - - - drumstick - http://drumstick.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:console - app:gui - multimedia.sound - Qt5/C++ wrapper for ALSA Sequencer - ALSA ardıştırıcısı için Qt5/C++ kitaplığı - Drumstick library is a C++ wrapper around the ALSA library sequencer interface, using Qt5 objects, idioms and style. - Drumstick, ALSA ardıştırıcı arayüzü için Qt5 nesnelerini, deyimlerini ve tarzını kullanan bir C++ ara kitaplığıdır. - drumstick - mirrors://sourceforge/drumstick/1.1.3/drumstick-1.1.3.tar.bz2 - - cmake - qt5-base-devel - qt5-svg-devel - alsa-lib-devel - fluidsynth-devel - libxslt - doxygen - docbook-xsl - shared-mime-info - pulseaudio-libs-devel - - multimedia/sound/drumstick/pspec.xml - - - drumstick - - drumstick-libs - libgcc - qt5-svg - qt5-base - alsa-lib - - - /usr/bin - /usr/share - /usr/share/mime - /usr/share/applications - /usr/share/icons - /usr/share/doc - /usr/share/man - - - - drumstick-libs - Libraries for Drumstick - Drumstick kitaplıkları - drumstick-libs provides libraries for Drumstick based applications. - drumstick-libs, Drumstick temelli uygulamalar için kitaplık dosyaları sunar. - library - - libgcc - alsa-lib - qt5-base - fluidsynth - pulseaudio-libs - - - /usr/lib/drumstick - /usr/lib/libdrum* - - - - drumstick-devel - Development files for Drumstick - Drumstick kitaplığı için geliştirme dosyaları - drumstick-devel provides development files for Drumstick libraries. - drumstick-devel, Drumstick kitaplığı için geliştirme dosyaları sunar. - data - - qt5-base-devel - alsa-lib-devel - drumstick-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-08 - 1.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 1.1.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-17 - 1.0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gogglesmm - https://gogglesmm.dev/ - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - multimedia.sound - Goggles Music Manager. - A fast and lightweight manager of a large music collections and audio player. - https://github.com/gogglesmm/gogglesmm/archive/refs/tags/1.2.2.tar.gz - - cmake - zlib-devel - dbus-devel - tiff-devel - flac-devel - webp-devel - expat-devel - faad2-devel - libXi-devel - libXv-devel - libSM-devel - taglib-devel - libICE-devel - libXmu-devel - libXpm-devel - libogg-devel - libX11-devel - libxcb-devel - libXft-devel - gnutls-devel - libpng-devel - libmad-devel - sqlite-devel - libXtst-devel - libXext-devel - libopus-devel - openssl-devel - libXres-devel - mesa-glu-devel - alsa-lib-devel - freetype-devel - libepoxy-devel - libvorbis-devel - libXrandr-devel - openjpeg2-devel - libXfixes-devel - libgcrypt-devel - fontconfig-devel - libXdamage-devel - libXcursor-devel - libXxf86vm-devel - libXrender-devel - libXinerama-devel - libmatroska-devel - libxkbcommon-devel - libjpeg-turbo-devel - pulseaudio-libs-devel - - multimedia/sound/gogglesmm/pspec.xml - - - gogglesmm - - dbus - flac - tiff - webp - zlib - expat - faad2 - libSM - libICE - libX11 - libXft - libgcc - libmad - libogg - libpng - sqlite - taglib - libXext - libopus - openssl - alsa-lib - freetype - libepoxy - mesa-glu - libXfixes - libXrandr - libvorbis - fontconfig - libXcursor - libXrender - libjpeg-turbo - pulseaudio-libs - - - /usr/bin - /usr/lib/gogglesmm - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-12-21 - 1.2.2 - First build. - fury - uglyside@yandex.ru - - - - - - codec2 - http://www.rowetel.com/?page_id=452 - - Mathias Freire - mathiasfreire45@gmail.com - - LGPL - library - multimedia.sound - Low bit rate open source speech codec - Codec 2 is an open source speech codec designed for communications quality speech between 700 and 3200 bit/s. The main application is low bandwidth HF/VHF digital radio. - https://hobbes1069.fedorapeople.org/freetel/codec2/codec2-0.8.1.tar.xz - - cmake - speex-devel - portaudio-devel - - multimedia/sound/codec2/pspec.xml - - - codec2 - - speex - portaudio - - - /usr/bin - /usr/lib - /usr/share/doc - - - - codec2-devel - Header files for codec2. - - codec2 - - - /usr/include - - - - - 2020-01-12 - 0.8.1 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - sound-theme-freedesktop - https://www.freedesktop.org/wiki/ - - PisiLinux Community - admins@pisilinux.org - - custom - library - multimedia.sound - Freedesktop sound theme - Freedesktop sound theme - Freedesktop ses teması - Freedesktop ses teması - http://people.freedesktop.org/~mccann/dist/sound-theme-freedesktop-0.8.tar.bz2 - - intltool - - multimedia/sound/sound-theme-freedesktop/pspec.xml - - - sound-theme-freedesktop - - /usr/share - /usr/share/sounds/freedesktop - /usr/share/doc - - - - - 2021-10-16 - 0.8 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - freealut - http://www.openal.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - Boîte à outils utilitaire d'OpenAL. - The OpenAL Utility Toolkit - Açık ses kütüphanesi Openal aletleri - Die OpenAL Werkzeugsammlung - freealut is a free implementation of OpenAL's ALUT standard. - http://github.com/vancegroup/freealut/archive/freealut_1_1_0.tar.gz - - openal-devel - - - shared-openal.patch - - multimedia/sound/freealut/pspec.xml - - - freealut - - openal - - - /usr/lib - /usr/share/doc/freealut - - - - freealut-devel - Development files for freealut - freealut için geliştirme dosyaları - - freealut - openal-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/freealut/html - - - - - 2020-03-08 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 1.1.0 - Rebuild for new toolchain. - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-07 - 1.1.0 - Rebuild for Pisi Linux 2.0 - Stefan Gronewold - groni@pisilinux.org - - - 2014-06-08 - 1.1.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2014-01-24 - 1.1.0 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.1.0 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - audiofile - http://www.68k.org/~michael/audiofile/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.sound - An elegant API for accessing audio files - Ses dosyalarına erişim için zarif bir UPA - audiofile provides a uniform and elegant API for accessing a variety of audio file formats, such as AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX, and NIST SPHERE. - audiofile; AIFF/AIFF-C, WAVE, NeXT/Sun .snd/.au, Berkeley/IRCAM/CARL Sound File, Audio Visual Research, Amiga IFF/8SVX ve NIST SPHERE gibi çeşitli ses dosyası biçimlerine erişim için düzenli ve gelişmiş bir uygulama programlama arayüzü sağlar. - http://audiofile.68k.org/audiofile-0.3.6.tar.gz - - alsa-lib-devel - flac-devel - - - 01_gcc6.patch - 03_CVE-2015-7747.patch - 04_clamp-index-values-to-fix-index-overflow-in-IMA.cpp.patch - 05_Always-check-the-number-of-coefficients.patch - 06_Check-for-multiplication-overflow-in-MSADPCM-decodeSam.patch - 07_Check-for-multiplication-overflow-in-sfconvert.patch - 08_Fix-signature-of-multiplyCheckOverflow.-It-returns-a-b.patch - 09_Actually-fail-when-error-occurs-in-parseFormat.patch - 10_Check-for-division-by-zero-in-BlockCodec-runPull.patch - - multimedia/sound/audiofile/pspec.xml - - - audiofile - - alsa-lib - flac - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - audiofile-devel - Development files for audiofile - audiofile için geliştirme dosyaları - - audiofile - - - /usr/bin/audiofile-config - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - audiofile-32bit - 32-bit shared libraries for audiofile - audiofile için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - alsa-lib-32bit - flac-32bit - - - alsa-lib-32bit - flac-32bit - audiofile - - - /usr/lib32 - - - - - 2020-01-17 - 0.3.6 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-16 - 0.3.6 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-05 - 0.3.6 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 0.3.6 - Version fix - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.3.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libilbc - https://github.com/TimothyGu/libilbc/ - - Mathias Freire - mathiasfreire45@gmail.com - - BSD - library - multimedia.sound - A friendly copy of the iLBC codec from the WebRTC project - This is a packaging friendly copy of the iLBC codec from the WebRTC project. It provides a base for distribution packages and can be used as drop-in replacement for the non-free code from RFC 3591. - https://github.com/TimothyGu/libilbc/releases/download/v2.0.2/libilbc-2.0.2.tar.bz2 - multimedia/sound/libilbc/pspec.xml - - - libilbc - - /usr/bin - /usr/lib - /usr/share/doc - - - - libilbc-devel - Header files for libilbc. - - libilbc - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-12 - 2.0.2 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - pogo - https://launchpad.net/pogo - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.sound - Probably the simplest and fastest audio player for Linux. - Pogo's elementary-inspired design uses the screen-space very efficiently. It is especially well-suited for people who organize their music by albums on the harddrive. The main interface components are a directory tree and a playlist that groups albums in an innovative way.Supported file formats include Ogg Vorbis, MP3, FLAC, Musepack, Wavpack, and MPEG-4 AAC. Pogo is a fork of Decibel Audio Player. - https://github.com/jendrikseipp/pogo/archive/v1.0.tar.gz - multimedia/sound/pogo/pspec.xml - - - pogo - - python - python-gtk - python-mutagen - python-imaging - gst-python - notify-python - gst-plugins-base - gst-plugins-good - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2020-03-08 - 1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 0.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-08-06 - 0.8.7 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-16 - 0.8.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-22 - 0.8.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - fluidsynth - http://www.fluidsynth.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.sound - A realtime software synthesizer - Gerçek zamanlı bir yazılım birleştirici - FluidSynth is a real-time software synthesizer based on the SoundFont 2 specifications. - FluidSynth, SoundFort 2 özelliklerine sahip gerçek zamanlı bir yazılım bireştiricidir. - https://github.com/FluidSynth/fluidsynth/archive/v2.1.1.tar.gz - - dbus-devel - readline-devel - libsdl2-devel - alsa-lib-devel - ladspa-sdk-devel - libsndfile-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - cmake - - multimedia/sound/fluidsynth/pspec.xml - - - fluidsynth - - dbus - glib2 - readline - alsa-lib - libsdl2 - ladspa-sdk - libsndfile - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - fluidsynth-devel - Development files for fluidsynth - fluidsynth için geliştirme dosyaları - - fluidsynth - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 2.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 1.1.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 1.1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-26 - 1.1.6 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - audex - https://github.com/KDE/audex - - Stefan Gronewold - groni@pisilinux.org - - GPLv3 - app:gui - multimedia.sound - Audex is an audio grabber tool for CD-ROM drives for the KDE desktop environment. - Audex creates profiles for LAME, Ogg Vorbis (oggenc), FLAC, MP4/M4A/AAC (faac) and RIFF WAVE. Please install your favorite encoder. For WAVE no external encoder is needed. Beyond you can define custom profile, which means, that Audex works together with commmand line encoders in general. - https://github.com/groni/Sources/raw/master/audex-master.zip - - cdparanoia-devel - glibc-devel - gettext-devel - extra-cmake-modules - kconfig-devel - kcompletion-devel - kcoreaddons-devel - ki18n-devel - kiconthemes-devel - kcmutils-devel - kio-devel - solid-devel - ktextwidgets-devel - kwidgetsaddons-devel - kxmlgui-devel - qt5-base-devel - qt5-x11extras-devel - qt5-script-devel - python - libkcddb - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - qt5-qdbusviewer - - multimedia/sound/audex/pspec.xml - - - audex - - kio - ki18n - solid - libgcc - kconfig - kxmlgui - kcmutils - kservice - libkcddb - qt5-base - cdparanoia - qt5-script - kcompletion - kcoreaddons - kiconthemes - ktextwidgets - qt5-x11extras - kconfigwidgets - kwidgetsaddons - lame - flac - faac - vorbis-tools - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2020-03-08 - 0.95 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.95 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-14 - 0.95 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libmikmod - http://mikmod.raphnet.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - A library to play a wide range of module formats - Bir çok modül formatını çalabilen bir kitaplık - libmikmod est une librairie son portable, qui était habituellement emballée avec le lecteur de module MikMod, mais qui est maintenant livrée de manière indépendante. Elle est capable de jouer des échantillons ainsi que des fichiers modules, utilisant aussi bien le pilote OSS, Alsa ou EsounD pour la sortie. Les formats de module gérés comprennent entre autres mod, s3m, xm, it, med, mtm et 669. - libmikmod is a portable sound library, which used to be packaged with the MikMod module player, but is now released independentely. It is capable of playing samples as well as module files, using the OSS driver for output, as well as Alsa and EsounD. Supported module format include mod, s3m, xm, it, med, mtm and 669, to name a few. - libmikmod, MikMod modül çalıcısı ile kullanmılması amacıyla paketlenmiş bir taşınabilir ses kitaplığıdır, fakat artık bağımsız olarak dağıtılmaktadır. Ses örneklerini ses çıkışı için OSS sürücünü kullanarak çalabildiği gibi, Alsa ve EsounD için de kullanmaktadır. Desteklenen modül kipleri mod, s3m, xm, it, med, mtm ve 669 gibi kiplerdir. - libmikmod es ina librería portable de sonido, que solía estar incluido con el MikMod module player, pero ahora fue lanzado independientemente. Es capaz de reproducir archivos de sonidos y de módulos, usando para la salida tanto un controlador OSS, como también Alsa y EsounD. Formatos de módulos soportados abarcan mod, s3m, xm, it, med, mtm and 669, para nombrar algunos. - http://sourceforge.net/projects/mikmod/files/libmikmod/3.3.11.1/libmikmod-3.3.11.1.tar.gz - - audiofile-devel - alsa-lib-devel - - multimedia/sound/libmikmod/pspec.xml - - - libmikmod - - pulseaudio-libs - - - /usr/lib - /usr/share/doc/libmikmod - /usr/share/info - /usr/share/man - - - - libmikmod-devel - Development files for libmikmod - libmikmod için geliştirme dosyaları - - libmikmod - - - /usr/bin/libmikmod-config - /usr/include - /usr/share/aclocal - - - - libmikmod-32bit - 32-bit shared libraries for libmikmod - libmikmod için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - audiofile-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - libmikmod - audiofile-32bit - alsa-lib-32bit - pulseaudio-libs-32bit - - - /usr/lib32 - - - - - 2020-03-07 - 3.3.11.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-29 - 3.3.11.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 3.3.10 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.3.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-19 - 3.3.7 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - shine - https://github.com/toots/shine - - Mathias Freire - mathiasfreire45@gmail.com - - GPL2 - library - multimedia.sound - Super fast fixed-point MP3 encoder - shine is a blazing fast mp3 encoding library implemented in fixed-point arithmetic. The library can thus be used to performe super fast mp3 encoding on architectures without a FPU, such as armel, etc - https://github.com/toots/shine/releases/download/3.1.1/shine-3.1.1.tar.gz - multimedia/sound/shine/pspec.xml - - - shine - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - shine-devel - Header files for shine. - - shine - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 3.1.1 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - espeak - http://espeak.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - app:console - multimedia.sound - Software speech synthesizer (text-to-speech) - Yazılımsal konuşma sentezleyici (text-to-speech) - espeak produces good quality English speech. It uses a different synthesis method from other open source TTS engines and sounds quite different. - espeak iyi kalitede İngilizce konuşma sentezler. Diğer açık kaynaklı TTS motorlarından farklı bir sentezleme yöntemi kullandığından üretilen sesler biraz farklıdır. - http://sourceforge.net/projects/espeak/files/espeak/espeak-1.48/espeak-1.48.04-source.zip/download - - compile-voices.sh - - - coreutils - portaudio-devel - pulseaudio-libs-devel - - - espeak-1.23-makefile_nostaticlibs.patch - espeak-1.48-gcc-6-fix.patch - - multimedia/sound/espeak/pspec.xml - - - espeak - - portaudio - - - /usr/bin - /usr/lib - /usr/share/espeak-data - /usr/share/man - /usr/share/doc - - - espeak.1 - - - - espeak-devel - Development headers for espeak - espeak için geliştirme başlıkları - - espeak - - - /usr/include - - - - - 2020-07-14 - 1.48.04 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.48.04 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-10 - 1.48.04 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-18 - 1.48.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.48.04 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-01 - 1.48.04 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - mpg123 - http://www.mpg123.de/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2 - app:console - multimedia.sound - Console MP3 player - Gerçek zamanlı bir mp3 oynatıcı - mpg123 is a fast and free console MP3 player. It does not require high system resources, it can even run in a 100MHz computer. - mpg123 düşük konfigürasyonlu sistemlerde de rahatlıkla çalışabilen hızlı bir mp3 oynatıcısıdır. - mirrors://sourceforge/mpg123/mpg123-1.29.3.tar.bz2 - - alsa-lib-devel - - multimedia/sound/mpg123/pspec.xml - - - mpg123 - - alsa-lib - libtool-ltdl - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - mpg123-devel - Development files for mpg123 - mpg123 için geliştirme dosyaları - - mpg123 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - mpg123-32bit - 32-bit shared libraries for mpg123 - mpg123 için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - alsa-lib-32bit - - - mpg123 - alsa-lib-32bit - - - /usr/lib32 - - - - - 2021-12-13 - 1.29.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-19 - 1.29.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 1.25.13 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 1.25.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 1.23.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.22.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-13 - 1.22.4 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - faad2 - https://github.com/knik0/faad2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.sound - Freeware Advanced Audio (AAC) Decoder including SBR decoding. - AAC yorumlayıcı - FAAD2 is a HE, LC, MAIN and LTP profile, MPEG2 and MPEG-4 AAC decoder. FAAD2 includes code for SBR (HE AAC) decoding. FAAD2 is licensed under the GPL. - FAAD2 bir HE, LC, MAIN ve LTP profil, MPEG2 ve MPEG4 AAC çözücüdür. - https://ftp.osuosl.org/pub/blfs/conglomeration/faad2/faad2-2_10_0.tar.gz - multimedia/sound/faad2/pspec.xml - - - faad2 - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - faad2-devel - Development files for faad2. - faad2 için geliştirme dosyaları - - faad2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-13 - 2.10 - Ver. bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-03-03 - 2.8.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 2.8.8 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 2.8.8 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-12 - 2.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 2.7 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - deadbeef - https://deadbeef.sourceforge.io/ - - PisiLinux Community - admins@pisilinux.org - - Zlib - GPLv2 - LGPLv2.1 - app:gui - multimedia.sound - Audio player for GNU/Linux systems with X11. - X11 ile GNU / Linux sistemleri için ses çalar - Lkki i przejrzysty odtwarzacz plików muzycznych - DeaDBeeF (as in 0xDEADBEEF) is a modular audio player for GNU/Linux, *BSD, OpenSolaris, macOS, and other UNIX-like systems. - DeaDBeeF (0xDEADBEEF gibi) X11 ile GNU / Linux sistemleri (şimdi olsa da FreeBSD, X olmaksızın düz konsolda çalışır ve OpenSolaris) için bir ses oynatıcısıdır. - DeaDBeeF Program pozwala odtwarzać najpopularniejsze formaty muzyki, a także płyty Audio-CD i strumienie audio emitowane za pośrednictwem Internetu. Jego ogromną zaletą jest prostota, dopracowanie oraz minimalne zapotrzebowanie na zasoby systemowe. - mirrors://sourceforge/project/deadbeef/travis/linux/1.8.8/deadbeef-1.8.8.tar.bz2 - - bison - intltool - atk-devel - lld-devel - gtk2-devel - gtk3-devel - flac-devel - curl-devel - yasm-devel - dbus-devel - zlib-devel - llvm-clang - glib2-devel - faad2-devel - cairo-devel - pango-devel - libcue-devel - ffmpeg-devel - libmad-devel - libzip-devel - imlib2-devel - mpg123-devel - libX11-devel - jansson-devel - wavpack-devel - libcddb-devel - libopus-devel - libcdio-devel - opusfile-devel - alsa-lib-devel - libmp4v2-devel - libsocket-devel - libvorbis-devel - libsndfile-devel - cdparanoia-devel - gdk-pixbuf-devel - llvm-clang-devel - libdispatch-devel - libsamplerate-devel - pulseaudio-libs-devel - - multimedia/sound/deadbeef/pspec.xml - - - deadbeef - - atk - gtk2 - gtk3 - curl - dbus - zlib - flac - glib2 - faad2 - cairo - pango - libogg - libgcc - mpg123 - libX11 - ffmpeg - libmad - libzip - imlib2 - wavpack - libcdio - libcddb - jansson - freetype - opusfile - alsa-lib - harfbuzz - libvorbis - fontconfig - cdparanoia - libsndfile - gdk-pixbuf - libdispatch - libsamplerate - pulseaudio-libs - - - /usr/bin - /usr/include - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2021-09-12 - 1.8.8 - Version bump. - fury - uglyside@yandex.ru - - - 2021-02-21 - 1.8.7 - Rebuild. - fury - uglyside@yandex.ru - - - 2021-02-12 - 1.8.7 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-22 - 1.8.6 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-10 - 1.8.5 - Version bump. - fury - uglyside@yandex.ru - - - 2020-06-29 - 1.8.4 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-20 - 1.8.3 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-08 - 1.8.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-28 - 1.8.2 - Version bump. - fury - uglyside@yandex.ru - - - 2019-06-26 - 1.8.1 - Version bump. - fury - uglyside@yandex.ru - - - 2019-04-14 - 1.8.0 - Version bump. - fury - uglyside@yandex.ru - - - 2018-09-01 - 0.7.20 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-28 - 0.7.20 - Rebuild ffmpeg. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-02-10 - 0.7.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.7.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.7.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-17 - 0.7.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-12-25 - 0.6.2 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - pulseaudio - https://www.freedesktop.org/wiki/Software/PulseAudio/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - GPLv2 - BSD - app:console - library - multimedia.sound - A networked sound server with an advanced plugin system - pulseaudio is a sound server for POSIX and Win32 systems. It allows you to do advanced operations on your sound data as it passes between your application and your hardware. - https://freedesktop.org/software/pulseaudio/releases/pulseaudio-15.0.tar.xz - - meson - bluez - doxygen - intltool - valgrind - orc-devel - sbc-devel - xcb-proto - dbus-devel - gtk3-devel - lirc-devel - fftw3-devel - eudev-devel - avahi-devel - speex-devel - libSM-devel - check-devel - json-c-devel - libcap-devel - libtdb-devel - libICE-devel - libsoxr-devel - libXtst-devel - xcb-util-devel - alsa-lib-devel - speexdsp-devel - bash-completion - bluez-libs-devel - libsndfile-devel - libasyncns-devel - desktop-file-utils - libatomic_ops-devel - jack-audio-connection-kit-devel - - multimedia/sound/pulseaudio/pspec.xml - - - pulseaudio-libs - Libraries for PulseAudio clients - - sbc - orc - dbus - lirc - glib2 - eudev - fftw3 - bluez - speex - libSM - json-c - libX11 - libtdb - libxcb - libICE - openssl - libXtst - libsoxr - speexdsp - alsa-lib - avahi-libs - libasyncns - libsndfile - libtool-ltdl - tcp-wrappers - jack-audio-connection-kit - - - /usr/bin/pa* - /etc/pulse/client.conf - /usr/lib/libpulse.so - /usr/lib/libpulse.so* - /usr/lib/libpulse-simple.so - /usr/lib/libpulse-simple.so* - /usr/lib/pulseaudio/libpulsecommon-* - /usr/lib/libpulse-mainloop-glib.so - /usr/lib/libpulse-mainloop-glib.so* - /usr/lib/pulseaudio/libpulsedsp.* - /usr/lib/pulse/modules - /usr/lib/udev/rules.d - /usr/lib/pulseaudio/libpulsecore*.so - - - - pulseaudio-libs-devel - Development files for pulseaudio-libs - - pulseaudio-libs - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/vala/vapi - /usr/lib/cmake/PulseAudio - - - - pulseaudio-docs - doxygen generated API documentation for PulseAudio - - /usr/share/doc/pulseaudio/html - - - - pulseaudio - - dbus - gconf - glib2 - libcap - libtool-ltdl - pulseaudio-libs - - - /usr/bin/pulseaudio - /usr/bin/qpaeq - /usr/bin/start-pulseaudio-kde - /usr/bin/esdcompat - /usr/bin/start-pulseaudio-x11 - /usr/lib/pm-utils/sleep.d - /usr/libexec - /usr/lib/pulse-5.0/modules - /etc - /usr/lib/tmpfiles.d/pulseaudio.conf - /lib/udev/rules.d - /usr/share/pulseaudio/alsa-mixer - /usr/share - /usr/share/icons - /var/lib/pulse - /run/pulse - - - System.Package - - - pulseaudio.conf - pisilinux/pulseaudio.sysconfig - - - - pulseaudio-libs-32bit - 32-bit shared libraries for pulseaudio-libs - emul32 - emul32 - - libtdb-32bit - xcb-util-32bit - libxcb-32bit - libX11-32bit - libgudev-32bit - speexdsp-32bit - openssl-32bit - orc-32bit - eudev-32bit - json-c-32bit - dbus-32bit - glib2-32bit - speex-32bit - libcap-32bit - libsndfile-32bit - libtool-ltdl-32bit - - - pulseaudio-libs - dbus-32bit - glib2-32bit - libsndfile-32bit - json-c-32bit - - - /usr/lib32 - - - - - 2021-08-03 - 15.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-17 - 14.2 - Rebuild for meson. - Kamil Atlı - suvari@pisilinux.org - - - 2021-02-04 - 14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-26 - 13.99 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 13.0 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2019-12-04 - 13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-02 - 12.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-27 - 10.0 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-09-13 - 9.0 - Relase Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-10 - 9.0 - Relase Bump-bluez4 disable - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-10 - 9.0 - Relase Bump-jack - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-10 - 9.0 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-09 - 8.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 8.0 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-24 - 8.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - a52dec - http://liba52.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - DVD ATSC A/52 streams decoder library - DVD'de kullanılan ATSC A/52 akımını çözen kütüphane - liba52 is a free library for decoding ATSC A/52 streams. The A/52 standard is used in a variety of applications, including digital television and DVD. It is also known as AC-3. - liba52 ATSC A/52 yayınlarının kodlarını çözen ücretsiz bir kütüphanedir. A/52 standart dijital televizyon ve DVD programlarını da içeren çeşitli uygulamalar tarafından kullanılmaktadır. - http://liba52.sourceforge.net/files/a52dec-0.7.4.tar.gz - - glibc-devel - djbfft-devel - - - a52dec-0.7.4-build.patch - use-djbfft.patch - constant.patch - - multimedia/sound/a52dec/pspec.xml - - - a52dec - - djbfft - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - a52dec-devel - Development files for a52dec - a52dec için geliştirme dosyaları - - a52dec - - - /usr/include - - - - - 2020-01-19 - 0.7.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.7.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-12 - 0.7.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.7.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.7.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libechonest - https://projects.kde.org/projects/playground/libs/libechonest - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - C++ wrapper for the Echo Nest API - Echo Nest servisinin programlama arayüzü için C++ bağlayıcıları - libechonest is a collection of C++/Qt classes designed to make a developer's life easy when trying to use the APIs provided by The Echo Nest. - libechonest Echo Nest servisi tarafından sağlanan programlama arayüzüne erişmek için tasarlanmış C++/Qt sınıflarını içermektedir. - http://files.lfranchi.com/libechonest-2.3.1.tar.bz2 - - qt5-base-devel - cmake - doxygen - - multimedia/sound/libechonest/pspec.xml - - - libechonest - - libgcc - qt5-base - - - /usr/lib - /usr/share/doc - - - - libechonest-devel - Development files for libechonest - libechonest için geliştirme dosyaları - - libechonest - qt5-base-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-08 - 2.3.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 2.3.1 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-04 - 2.3.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - wavpack - https://www.wavpack.com/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.sound - WavPack audio compression tools - WavPack ses sıkıştırma araçları. - WavPack is a completely open audio compression format providing lossless, high-quality lossy, and a unique hybrid compression mode. - WavPack, kayıpsız veya yüksek kaliteli kayıplı ve eşşsiz karışık sıkıştırma kipi sunan açık ses sıkıştırma biçimidir. - WavPack es un formato de compresión open audio con modos de compresión sin pérdida, de alta calidad con pérdida, y un modo híbrido. - https://www.wavpack.com/wavpack-5.4.0.tar.xz - multimedia/sound/wavpack/pspec.xml - - - wavpack - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - wavpack-devel - - wavpack - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-04 - 5.4.0 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 5.1.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 5.1.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 5.1.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.75.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 4.75.0 + 1.4.3 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -306184,2252 +262017,263 @@ from a wide variety of machine architectures. - portmidi - http://portmedia.sourceforge.net + eclipse-ecj + http://www.eclipse.org PisiLinux Community admins@pisilinux.org - GPLv2+ - library - app:console - multimedia.sound - Real-time MIDI I/O library - Gerçek zamanlı MIDI G/Ç kitaplığı - PortMedia is a set of simple clean APIs and cross-platform library implementations for music and other media. PortMidi sub-project provides a real-time MIDI input/output library. This package contains the PortMidi libraries. - portmidi, PortMedia projesinin gerçek zamanlı MIDI girdi/çıktı kitaplığıdır. - mirrors://sourceforge/portmedia/portmidi-src-217.zip - - build-pyportmidi - + EPL + app:web + programming.language.java + Eclipse java bytecode compiler + Eclipse java bytecode compiler + https://sourceforge.net/projects/pisilinux/files/source/ecjsrc-4.6.3.jar - python-devel + ant jdk8-openjdk - alsa-lib-devel - cmake - portmidi-cmake.patch + 01-ecj-include-props.patch + 02-buildxml-fix-manifest.patch - multimedia/sound/portmidi/pspec.xml + programming/language/java/eclipse-ecj/pspec.xml - portmidi + eclipse-ecj - alsa-lib + jdk7-openjdk + /usr/share/man /usr/bin - /usr/lib - /usr/share/doc - - - - python-portmidi - Python bindings for portmidi - portmidi için python bağlayıcısı - programming.language.python - - python - portmidi - - - /usr/lib/python* - - - - portmidi-devel - Development files for portmidi - portmidi için geliştirme dosyaları - - portmidi - - - /usr/include - /usr/share/man/man3 - - - - - 2020-03-08 - 217 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 217 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 217 - Rebuild. - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-21 - 217 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - espeak-ng - https://github.com/espeak-ng/espeak-ng - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - multimedia.sound - Multi-lingual software speech synthesizer - Multi-lingual software speech synthesizer - Multi-lingual software speech synthesizer - Multi-lingual software speech synthesizer - https://github.com/espeak-ng/espeak-ng/archive/1.50.tar.gz - - espeak-ng-fix-699.patch - - multimedia/sound/espeak-ng/pspec.xml - - - espeak-ng - - /usr/bin - /usr/lib - /usr/share - /usr/share/vim - /usr/share/doc - - - - espeak-ng-devel - Development files for espeak-ng - - espeak-ng - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-04-01 - 1.50 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - suil - http://drobilla.net/software/suil/ - - Osman Erkan - osman.erkan@pisilinux.org - - ISC - app:gui - multimedia.sound - Lightweight C library for loading and wrapping LV2 plugin UIs - Suil makes it possible to load a UI of any toolkit in a host using any other toolkit (assuming the toolkits are both supported by Suil). - http://download.drobilla.net/suil-0.10.6.tar.bz2 - - qt5-base-devel - gtk3-devel - gtk2-devel - lv2-devel - atk-devel - pango-devel - cairo-devel - libX11-devel - freetype-devel - gdk-pixbuf-devel - python-devel - python3-devel - cmake - fontconfig-devel - - multimedia/sound/suil/pspec.xml - - - suil - - qt5-base - gtk2 - atk - gtk3 - cairo - glib2 - pango - libX11 - libgcc - freetype - gdk-pixbuf - fontconfig - - - /usr/share/doc - /usr/lib/libsuil* - /usr/lib/suil-0/libsuil* - - - - suil-devel - Development files for suil - suil için geliştirme dosyaları - - suil - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-08 - 0.10.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.10.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-04 - 0.10.0 - First release. - Stefan Gronewold - groni@pisilinux.org - - - - - - speech-dispatcher - https://freebsoft.org/speechd - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - GPLv2 - service - app:console - library - multimedia.sound.speech-dispatcher - speech dispatcher: common interface to speech synthesis - Konuşma sentezi ortak arayüzü - Speech Dispatcher is a device independent layer for speech synthesis that provides a common easy to use interface for both client applications (programs that want to speak) and for software synthesizers (programs actually able to convert text to speech). - Speech Dispatcher, seslendirme yapılmak istenen veya konuşma sentezi yapan uygulamalar için ortak ve kolay kullanımlı bir arayüz sunan, cihaz-bağımsız bir katmandır. - https://github.com/brailcom/speechd/releases/download/0.11.0/speech-dispatcher-0.11.0.tar.gz - - glib2-devel - libsndfile-devel - dotconf-devel - espeak-devel - python3-devel - intltool - gettext-devel - texinfo - help2man - pkgconfig - libtool-ltdl - libao-devel - espeak-ng-devel - alsa-lib-devel - pulseaudio-libs-devel - - - 0001-Remove-pyxdg-dependency.patch - - multimedia/sound/speech-dispatcher/speech-dispatcher/pspec.xml - - - speech-dispatcher - - glib2 - libao - espeak - dotconf - alsa-lib - espeak-ng - libsndfile - libtool-ltdl - pulseaudio-libs - - - /usr/share - /usr/lib - /usr/share/doc - /usr/bin - /usr/libexec/speech-dispatcher-modules - /etc/speech-dispatcher - /var/log/speech-dispatcher - /usr/share/speech-dispatcher - - - - python3-speech-dispatcher - Python3 bindings for speech-dispatcher - - speech-dispatcher - python3 - - - /usr/lib/python3.* - - - python-speech-dispatcher - - - - speech-dispatcher-devel - Development headers for speech-dispatcher - speech-dispatcher için geliştirme başlıkları - - glib2-devel - espeak-ng-devel - speech-dispatcher - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2021-12-13 - 0.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 0.10.2 - Rebuild py3. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-21 - 0.10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-24 - 0.10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 0.9.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-15 - 0.9.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-25 - 0.9.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-21 - 0.8.6 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-19 - 0.8.6 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-12-30 - 0.8.6 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.8.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 0.8.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - decibel-audio-player - http://decibel.silent-blade.org/ - - Yoyo Fernández - admins@pisilinux.org - - GPLv3 - app:gui - multimedia.sound - Decibel Audio Player is a GTK+ open-source (GPL) audio player for GNU/Linux - Decibel Audio Player es un reproductor de audio escrito en GTK+ de código abierto (GPL) para GNU/Linux - Decibel Audio Player is a GTK+ open-source (GPL) audio player for GNU/Linux. It is very straightforward to use thanks to a clean and user-friendly interface. It is especially targeted at Gnome and follows the Gnome HIG. - Decibel Audio Player es un reproductor de audio escrito en GTK+ de código abierto (GPL) para GNU/Linux. Está especialmente dirigido a Gnome aunque puede usarse en KDE. - http://decibel.silent-blade.org/uploads/Main/decibel-audio-player-1.08.tar.gz - - prefix.patch - decibel-audio-player-pil.patch - - multimedia/sound/decibel-audio-player/pspec.xml - - - decibel-audio-player - - dbus-python - gst-python - python-gtk - python-imaging - python-mutagen - - - /usr/bin - /usr/share/man/man1 - /usr/share/decibel-audio-player - /usr/share/applications - /usr/share/pixmaps - /usr/share/locale/ - /usr/share/doc + /usr/share/java - decibel-audio-player - decibel-audio-player-remote + ecj - - 2020-03-08 - 1.08 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.08 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-25 - 1.08 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 1.08 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-12-07 - 1.08 - First Release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libcanberra - http://0pointer.de/lennart/projects/libcanberra/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - A library for generating event sounds on free desktops - Masaüstü üzerinde bildirim sesleri üretmek için kütüphane - libcanberra is an implementation of the XDG Sound Theme and Name Specifications, for generating event sounds on free desktops, such as GNOME. It comes with several backends (ALSA, PulseAudio, OSS, GStreamer, null) and is designed to be portable. - libcanberra, çeşitli arka uç (ALSA, PulseAudio, GStreamer, null) destekleri olan, XDG Ses Teması ve İsimlendirme standartlarına uygun, bildirim sesi çalma kütüphanesidir. - https://sourceforge.net/projects/pisilinux/files/source/libcanberra-0.30.tar.xz - - libogg-devel - pulseaudio-libs-devel - gstreamer-devel - libvorbis-devel - alsa-lib-devel - glib2-devel - gtk2-devel - gtk3-devel - at-spi2-core-devel - eudev-devel - atk-devel - cairo-devel - pango-devel - libogg-devel - libtdb-devel - libvorbis-devel - fontconfig-devel - gstreamer-devel - gtk-doc - - - fix-pthread.patch - fix-underlinking.patch - - multimedia/sound/libcanberra/pspec.xml - - - libcanberra - - libtdb - libtool-ltdl - glib2 - alsa-lib - libvorbis - pulseaudio-libs - gstreamer - - - /usr/lib - /usr/share/doc - /usr/share/gdm - /usr/share/gnome/ - - - - libcanberra-devel - Development files for libcanberra - libcanberra için geliştirme dosyaları - - libcanberra - - - /usr/include/canberra.h - /usr/share/vala - /usr/lib/pkgconfig - - - - libcanberra-gtk - GTK+ convenience API and utilities for libcanberra - GTK+ için libcanberra araçları ve programlama kitaplığı - - libcanberra - gtk2 - libX11 - - - /usr/lib/gtk-2* - /usr/lib/libcanberra-gtk.so* - - - - libcanberra-gtk-devel - Development files for libcanberra-gtk - - libcanberra - libcanberra-gtk - libcanberra-devel - gtk2-devel - - - /usr/lib/pkgconfig/libcanberra-gtk.pc - /usr/share/vala/vapi/libcanberra-gtk.vapi - - - - libcanberra-gtk3 - GTK+ convenience API and utilities for libcanberra - - gtk3 - glib2 - eudev - libX11 - libcanberra - - - /usr/lib/gtk-3* - /usr/lib/libcanberra-gtk3* - /usr/share/doc/libcanberra-gtk3 - /usr/bin/canberra-boot - /usr/bin/canberra-gtk-play - - - - libcanberra-gtk3-devel - Development files for libcanberra-gt3k - - libcanberra - libcanberra-devel - libcanberra-gtk3 - gtk3-devel - - - /usr/include/canberra-gtk.h - /usr/lib/pkgconfig/libcanberra-gtk3.pc - - - - - 2021-07-14 - 0.30 - Version bump to git clone - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-31 - 0.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 0.30 - Release Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.30 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-16 - 0.30 - Fix - Varol Maksutoğlu - waroi@pisilinux.org - - - 2016-05-08 - 0.30 - First release - Varol Maksutoğlu - waroi@pisilinux.org - - - - - - clementine - https://www.clementine-player.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - app:gui - multimedia.sound - Clementine, modern bir müzik çalar ve kütüphane düzenleyicisidir. - Clementine is a modern music player and library organizer - Een cross-platform muziekspeler op basis van Amarok 1.4 - Nowoczesny i prosty w obsłudze odtwarzacz muzyki - Reproductor de música basado en Amarok 1.4 - Clementine, Amarok 1.4 esas alınarak Qt5 ile yeniden yazılmış modern bir müzik oynatıcıdır. - Clementine is a modern music player and library organiser. Clementine is a port of Amarok 1.4, with some features rewritten to take advantage of Qt5. - Clementine is een moderne muziekspeler. Clementine is een port van Amarok 1.4, met een aantal functies herschreven om te profiteren van Qt5. - Clementine to port Amaroka 1.4 - popularnego odtwarzacza muzycznego dla systemu Linux. - Clementine es un moderno reproductor de música escrito en QT5 y basado en Amarok 1.4. - https://github.com/clementine-player/Clementine/releases/download/1.4.0rc1-772-g245f64a88/clementine-1.4.0rc1-772-g245f64a88.tar.xz - - cmake - ccache - gst-libav - glew-devel - dbus-devel - boost-devel - fftw3-devel - glibc-devel - libogg-devel - libmtp-devel - ffmpeg-devel - taglib-devel - qt5-linguist - qt5-sql-odbc - sqlite-devel - libcdio-devel - qt5-sql-mysql - libgpod-devel - qt5-svg-devel - libglvnd-devel - qt5-base-devel - libplist-devel - libqjson-devel - protobuf-devel - mesa-glu-devel - crypto++-devel - alsa-lib-devel - qt5-sql-sqlite - qca2-qt5-devel - libnotify-devel - qt5-qdbusviewer - liblastfm-devel - gstreamer-devel - qt5-webkit-devel - gst-plugins-ugly - gst-plugins-good - libusbmuxd-devel - libechonest-devel - libmygpo-qt-devel - google-sparsehash - libprojectM-devel - icon-theme-hicolor - desktop-file-utils - qt5-designer-devel - qt5-sql-postgresql - libkvkontakte-devel - qt5-x11extras-devel - qt5-assistant-devel - libchromaprint-devel - pulseaudio-libs-devel - gst-plugins-bad-devel - libimobiledevice-devel - gst-plugins-base-devel - libcdio-paranoia-devel - - multimedia/sound/clementine/pspec.xml - - - clementine - - glew - zlib - fftw3 - glib2 - libX11 - libgcc - libmtp - sqlite - taglib - libogg - libcdio - libgpod - protobuf - crypto++ - alsa-lib - qt5-base - libglvnd - libnotify - gstreamer - liblastfm - libprojectM - libmygpo-qt - qt5-x11extras - libchromaprint - pulseaudio-libs - gst-plugins-bad - gst-plugins-ugly - gst-plugins-good - gst-plugins-base - libprojectM-pulseaudio - - - /usr/bin - /usr/share - - - - - 2022-01-09 - 1.4.0_rc1.772 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-11-04 - 1.4.0_rc1.740 - Version bump - Kamil Atlı - suvari@pisilinux.org - - 2021-03-31 - 1.4.0_rc1 - Rebuild from git. - Mustafa Cinasal - muscnsl@gmail.com + 2021-03-10 + 4.6.3_201703010400 + Rebuild + İdris Kalp + idriskalp@gmail.com - 2020-03-08 - 1.3.1 - Rebuild. + 2020-06-04 + 4.6.3_201703010400 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2019-04-24 - 1.3.1 - Rebuild. + 2020-01-15 + 4.4.2_201502041700 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2018-05-11 - 1.3.1 - Rebuild + 2019-09-22 + 4.4.2_201502041700 + Rebuild jdk7-2.6.19 Mustafa Cinasal muscnsl@gmail.com - 2018-04-27 - 1.3.1 - Rebuild + 2019-04-29 + 4.4.2_201502041700 + Rebuild jdk7-2.6.17 Mustafa Cinasal muscnsl@gmail.com - 2018-03-22 - 1.3.1 - Rebuild. + 2018-08-16 + 4.4.2_201502041700 + Rebuild New T.jdk7-2.6.14 Mustafa Cinasal muscnsl@gmail.com - 2018-02-22 - 1.3.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-08 - 1.3.1 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org - - - 2017-01-07 - 1.3.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - timidity - http://timidity.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - multimedia.sound - Software synthesizer and MIDI converter - MIDI WAV dönüştürücüsü - Timidity is a software synthesizer, MIDI player and MIDI to other sound formats converter which can also emulate a midi port. - OSS ve ALSA ses çıkışı üretebilen MIDI'den WAV oluşturabilen ve midi aygıt emulasyonu yapabilen sunucu - mirrors://sourceforge/timidity/TiMidity++-2.14.0.tar.bz2 - - alsa-lib-devel - libao-devel - libXaw-devel - flac-devel - libvorbis-devel - speex-devel - libXext-devel - libogg-devel - jack-audio-connection-kit-devel - gtk2-devel - Xaw3d-devel - glib2-devel - libX11-devel - ncurses-devel - libpng-devel - - - timidity++-2.14.0-revert-for-required-ctl_speana_data-function.patch - - multimedia/sound/timidity/pspec.xml - - - timidity - - alsa-lib - libao - libXaw - flac - libvorbis - speex - libXext - libogg - jack-audio-connection-kit - gtk2 - timidity-shompatches - Xaw3d - glib2 - libX11 - libpng - ncurses - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/timidity - - - System.Service - - - timidity.conf.d - timidity.cfg - timidity-update - - - - - 2020-03-07 - 2.14.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 2.14.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 2.14.0 + 2017-05-15 + 4.4.2_201502041700 Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.14.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-21 - 2.14.0 - First release Kamil Atlı - suvarice@gmail.com - - - - - - libvisual - http://libvisual.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - Abstraction library for audio visualisation plugins - Ses canlandırma eklentileri için kütüphane - Libvisual est une librairie d'abstraction venant entre les applications et les plugins (greffons) de visualisation audio. - libvisual is an abstraction library that comes between applications and audio visualisation plugins. - libvisual, uygulamalar ve ses canlandırma eklentileri arasında yer alan bir soyutlama kütüphanesidir. - Libvisual es una librería de abstracción que actúa entre aplicaciones y plugins con funciones audiovisuales. - mirrors://sourceforge/libvisual/libvisual-0.4.0.tar.bz2 - - disable_altivec.patch - libvisual-0.4.0-inlinedefineconflict.patch - - multimedia/sound/libvisual/pspec.xml - - - libvisual - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libvisual-32bit - 32-bit shared libraries for libvisual - emul32 - emul32 - - libvisual - - - /usr/lib32 - - - - libvisual-devel - Development files for libvisual - libvisual için geliştirme dosyaları - - libvisual - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2020-01-11 - 0.4.0 - Rebuild - Kamil Atlıy - suvari@pisilinux.org - - - 2018-07-31 - 0.4.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 0.4.0 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 0.4.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libcdaudio - http://libcdaudio.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.sound - A library for controlling CD-ROM devices - CD-ROM aygıtlarını kontrol etmeye yarayan bir kitaplık - libcdaudio is a portable library for controlling audio CDs. It is also able to manage transfers of information with the CDDB (http://www.freedb.org/) and CDIndex systems. - libcdaudio ses CDlerini kontrol etmekte kullanılan taşınabilir bir kitaplıktır. - mirrors://sourceforge/libcdaudio/libcdaudio-0.99.12p2.tar.gz - - libcdaudio-0.99.10.config.patch - security-bug-8587.patch - - multimedia/sound/libcdaudio/pspec.xml - - - libcdaudio - - /usr/bin - /usr/lib - /usr/share/doc - - - - libcdaudio-devel - Development files for libcdaudio - libcdaudio için geliştirme dosyaları - - libcdaudio - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - - - - - 2020-03-08 - 0.99.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 0.99.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.99.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.99.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-26 - 0.99.12 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - speex - http://www.speex.org/ - - PisiLinux Community - admins@pisilinux.org - - xiph - app:console - multimedia.sound - Audio compression format designed for speech and its converter application - Konuşma için tasarlanmış bir ses sıkıştırma biçimi kütüphanesi ve araçları - speex is an Open Source/Free Software patent-free audio compression format designed for speech. The Speex Project aims to lower the barrier of entry for voice applications by providing a free alternative to expensive proprietary speech codecs. The package also contains a command-line tool to convert to/from Speex codec. - speex, konuşma için tasarlanmış özgür ve açık kaynaklı bir ses sıkıştırma biçimidir. Paket kütüphanenin yanında speex biçimine/biçiminden dönüştürme yapmak için gerekli araçları içerir. - http://downloads.us.xiph.org/releases/speex/speex-1.2.0.tar.gz - - libogg-devel - speexdsp-devel - - - speex-ac.patch - - multimedia/sound/speex/pspec.xml - - - speex - - libogg - speexdsp - - - /usr/bin - /usr/share/man - /usr/lib - /usr/share/doc - - - - speex-devel - Development files for speex - speex için geliştirme dosyaları - - speex - - - /usr/include - /usr/share/aclocal - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - speex-32bit - 32-bit shared libraries for speex - speex için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libogg-32bit - speexdsp-32bit - - - speex - libogg-32bit - - - /usr/lib32 - - - - - 2020-01-14 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 1.2.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2_rc1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.2_rc1 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.2_rc1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libsndfile - https://libsndfile.github.io/libsndfile/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:console - multimedia.sound - A C library for reading and writing files containing sampled sound - Örneklenmiş ses verileri içeren dosyalar yazmak ve okumak için C dili kütüphanesi. - Libsndfile est une librairie C pour lire et écrire des fichiers contenant des échantillons sonores (tels que les fichiers aux formats MS Windows WAV et Apple/SGI AIFF) à travers une seule interface de librairie standard. - Libsndfile is a C library for reading and writing files containing sampled sound (such as MS Windows WAV and the Apple/SGI AIFF format) through one standard library interface. - Libsndfile, standart bir kütüphane arayüzü vasıtası ile (MS Windows WAV ve Apple/SGI AIFF biçimi gibi)örneklenmiş ses içeren dosyalar yazmak ve okumak için bir C dili kütüphanesidir. - Libsndfile es una librería C de lectura y escritura para archivos de sonido (como MS Windows WAV y el formato Apple/SGI AIFF) con una interfaz estándar de libería. - https://github.com/libsndfile/libsndfile/releases/download/1.0.31/libsndfile-1.0.31.tar.bz2 - - flac-devel - libogg-devel - python3-devel - libopus-devel - alsa-lib-devel - libvorbis-devel - - multimedia/sound/libsndfile/pspec.xml - - - libsndfile - - flac - libogg - libopus - alsa-lib - libvorbis - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/octave - - - - libsndfile-devel - Development files for libsndfile - libsndfile için geliştirme dosyaları - - libsndfile - flac-devel - libogg-devel - libopus-devel - libvorbis-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libsndfile-32bit - 32-bit shared libraries for libsndfile - libsndfile için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - flac-32bit - alsa-lib-32bit - libogg-32bit - libopus-32bit - libvorbis-32bit - - - flac-32bit - alsa-lib-32bit - libogg-32bit - libopus-32bit - libvorbis-32bit - libsndfile - - - /usr/lib32 - - - - - 2021-12-04 - 1.0.31 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-12 - 1.0.28 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.0.28 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-06 - 1.0.27 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.0.25 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-25 - 1.0.25 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - lame - http://lame.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.sound - A free MP3 encoder/decoder - MP3 ses çözümleme kütüphanesi - LAME is an MPEG Audio Layer III (MP3) encoder licensed under the LGPL. - Lame, Kısıtlı Genel Kamu lisansı altında lisanslanmış MPEG III(MP3) kod çözücüsüdür. - mirrors://sourceforge/lame/lame-3.100.tar.gz - - ncurses-devel - - multimedia/sound/lame/pspec.xml - - - lame - - ncurses - - - /usr/bin - /usr/lib - /usr/share/man - - - - lame-docs - - /usr/share/doc - - - - lame-devel - Development files for lame - lame için geliştirme dosyaları - - lame - - - /usr/include - /usr/share/man/man3 - - - - - 2020-01-17 - 3.100 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 3.100 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 3.99.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.99.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 3.99.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - twolame - https://www.twolame.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.sound - An optimised MPEG Audio Layer 2 - Optimize edilmiş bir MPEG Ses katman 2 çözücüsü - TwoLAME is an optimised MPEG Audio Layer 2 encoder based on tooLAME by Mike Cheng, which in turn is based upon the ISO dist10 code and portions of LAME. - TwoLame Mike Cheng'in tooLAME'ni taban olarak alan LAME'in ISO dist10 kodları ve parçaları üzerinde optimize edilmiş bir MPEG Ses Katman 2 çözücüsüdür. - mirrors://sourceforge/twolame/twolame-0.4.0.tar.gz - - libsndfile-devel - - multimedia/sound/twolame/pspec.xml - - - twolame - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc/twolame - /usr/share/man - - - - twolame-devel - Development files for twolame - twolame için geliştirme dosyaları - - twolame - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/twolame/html - - - - - 2021-12-04 - 0.4.0 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 0.3.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 0.3.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.3.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.3.13 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - libreplaygain - https://www.musepack.net/ - - Pisilinux Community - admins@pisilinux.org - - LGPL - library - multimedia.sound - replaygain library. - musepack replaygain library. - https://files.musepack.net/source/libreplaygain_r475.tar.gz - multimedia/sound/libreplaygain/pspec.xml - - - libreplaygain - - /usr/lib - - - - libreplaygain-devel - Development files for libreplaygain - - libreplaygain - - - /usr/include - - - - - 2020-09-17 - 8 - First build. - Pisilinux Community - admins@pisilinux.org - - - - - - liblastfm - https://github.com/lastfm/liblastfm - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - library - multimedia.sound - A library for Last.fm integration - Last.fm entegrasyonu sağlayan bir kitaplık - liblastfm is a collection of libraries to help you integrate Last.fm services into your rich desktop software. It is officially supported software developed by Last.fm staff. - liblastfm, masaüstü uygulamalarına Last.fm servislerini entegre etmeyi sağlayan kitaplıklardan oluşur. Last.fm geliştiricileri tarafından hazırlanmıştır. - https://github.com/lastfm/liblastfm/archive/1.1.0.tar.gz - - cmake - qt5-base-devel - fftw3-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - libsamplerate-devel - - - liblastfm-qt5.11.patch - - multimedia/sound/liblastfm/pspec.xml - - - liblastfm - - libgcc - qt5-base - - - /usr/lib/liblastfm5.so* - /usr/share/doc - - - - liblastfm-devel - A collection of libraries to help you integrate Last.fm services - liblastfm için geliştirme dosyaları - - liblastfm - liblastfm_fingerprint - - - /usr/include - - - - liblastfm_fingerprint - A collection of libraries to help you integrate Last.fm services - Last.fm entegrasyonu kolaylaştıran kitaplık koleksiyonu - - liblastfm - qt5-base - libsamplerate - libgcc - fftw3 - - - /usr/lib/liblastfm_fingerprint* - - - - - 2021-12-13 - 1.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-08 - 1.0.9 - Rebuild - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2019-04-24 - 1.0.9 - Rebuild - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-09-19 - 1.0.9 - Rebuild with new toolchain - Alihan Öztürk - alihan@pisilinux.org - - - 2017-05-02 - 1.0.9 - Rebuild with new toolchain - Alihan Öztürk - alihan@pisilinux.org - - - 2016-04-27 - 1.0.9 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - timidity-shompatches - http://www.i.h.kyoto-u.ac.jp - - PisiLinux Community - admins@pisilinux.org - - as-is - data - multimedia.sound.timidity-shompatches - Sound patches for Timidity (Shom) - Timidity ses bilgisi dosyaları - Containts Matsumoto Shoji's patch collection for TiMidity (Roland SC-55 style) - Matsumoto Shoji'nin TiMidity (Roland SC-55 stili) ses bilgisi dosyaları - https://sourceforge.net/projects/pisilinux/files/source/shominst-0409.zip - multimedia/sound/timidity-shompatches/timidity-shompatches/pspec.xml - - - timidity-shompatches - - /usr/share/timidity - - - - - 2020-03-07 - 0.409 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-01 - 0.409 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.409 - Release Bump - Pisi Linux Community admin@pisilinux.org 2016-06-10 - 0.409 + 4.4.2_201502041700 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-04 - 0.409 + 2016-04-03 + 4.4.2_201502041700 First release - Kamil Atlı - suvarice@gmail.com + Osman Erkan + osman.erkan@pisilinux.org - ario - http://ario-player.sourceforge.net/ + fastjar + http://savannah.nongnu.org/projects/fastjar - Pisilinux Community + PisiLinux Community admins@pisilinux.org GPLv2 - app:gui - multimedia.sound - Ario is a GTK+ client for MPD. - ario - A GTK client for MPD (Music player daemon) inspired by Rhythmbox but much lighter and faster. - mirrors://sourceforge/ario-player/1.6/ario-1.6.tar.gz + app:web + programming.language.java + Sun java jar compatible archiver + Sun java jar compatible archiver + Sun java jar compatible archiver + Sun java jar compatible archiver. + http://download.savannah.gnu.org/releases/fastjar/fastjar-0.98.tar.gz - avahi - python3 - intltool - atk-devel - curl-devel - gtk3-devel - avahi-libs - cairo-devel - pango-devel - taglib-devel - gnutls-devel - libxml2-devel - libsoup-devel - gettext-devel - dbus-glib-devel - libunique-devel - libnotify-devel - libgcrypt-devel - avahi-glib-devel - fontconfig-devel - gdk-pixbuf-devel - libmpdclient-devel + zlib-devel - - fix_window_size_if_tags_are_too_long.patch - - multimedia/sound/ario/pspec.xml + programming/language/java/fastjar/pspec.xml - ario + fastjar - atk - gtk3 - curl - avahi - cairo - pango - taglib - gnutls - libxml2 - libsoup - dbus-glib - libnotify - libunique - avahi-libs - fontconfig - gdk-pixbuf - avahi-glib - libmpdclient + zlib + /usr/share/doc + /usr/share/man /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc/ario + /usr/share/info - - System.PackageHandler - + + 2020-06-04 + 0.98 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-16 + 0.98 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-16 + 0.98 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-11 + 0.98 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.98 + Release Bump + Pisi Linux Community + admin@pisilinux.org + - 2020-12-13 - 1.6 - First Beta build. - fury - uglyside@yandex.ru + 2014-06-05 + 0.98 + First release + PisiLinux Community + admins@pisilinux.org - knowthelist - https://github.com/knowthelist/knowthelist/wiki + icedtea-web-java7 + https://www.x.org/wiki/ - Stefan Gronewold(groni) - groni@pisilinux.org + PisiLinux Community + admins@pisilinux.org - LGPLv3 - app:gui - multimedia.sound - Knowthelist the awesome party music player - Knowthelist the awesome party music player - Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) - Quick search for tracks in collection, Two players with separate playlists Mixer with fader, 3 channel EQ and gain, Auto fader and auto gain, Trackanalyser search for song start/end and gain setting, Auto DJ function with multiple filters for random play, Monitor player for pre listen tracks (via 2nd sound card e.g. USB) - knowthelist - https://github.com/knowthelist/knowthelist/archive/v2.3.1.tar.gz + GPLv2 + library + programming.language.java + Java web browser plugin + Web tarayıcıları için Java eklentisi + Free Software web browser plugin running applets written in the Java programming language and an implementation of Java Web Start, originally based on the NetX project. + Java uygulamacıklarını (applet) çalıştıran, Java Web Start'ın özgür yazılım sürümü. + http://icedtea.wildebeest.org/download/source/icedtea-web-1.6.2.tar.gz - qt5-base-devel - qt5-xmlpatterns-devel - qt5-sql-mysql - qt5-sql-postgresql - qt5-sql-sqlite - qt5-linguist + firefox + jdk7-openjdk + rhino + libXtst-devel + npapi-sdk-devel + desktop-file-utils glib2-devel - alsa-lib-devel - taglib-devel - gstreamer-devel - gst-plugins-bad-devel - gst-plugins-base-devel - multimedia/sound/knowthelist/pspec.xml + programming/language/java/icedtea-web-java7/pspec.xml - knowthelist + icedtea-web-java7 - qt5-base - gstreamer - taglib - alsa-lib glib2 libgcc + desktop-file-utils + jre7-openjdk - /usr/bin + /usr/lib + /usr/lib/mozilla + /usr/lib/browser-plugins /usr/share - /usr/share/applications - /usr/share/icons /usr/share/doc + /usr/share/man + /usr/share/applications - 2020-03-08 - 2.3.0 + 2020-01-15 + 1.6.2 Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2019-04-27 - 2.3.0 - Version bump. + 2019-09-22 + 1.6.2 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2017-04-29 - 2.3.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com + 2019-04-30 + 1.6.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org - 2016-06-09 - 2.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2018-08-17 + 1.6.2 + Rebuild. + Serdar Soytetir + kaptan@pisilinux.org - 2015-11-11 - 2.3.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - gsound - https://gitlab.gnome.org/GNOME/gsound - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.sound - GSound is a small library for playing system sounds. - GSound is a small library for playing system sounds. It's designed to be used via GObject Introspection, and is a thin wrapper around the libcanberra C library. - https://download.gnome.org/sources/gsound/1.0/gsound-1.0.3.tar.xz - - meson - vala-devel - glib2-devel - intltool - libcanberra-devel - gobject-introspection-devel - - multimedia/sound/gsound/pspec.xml - - - gsound - - glib2 - libcanberra - - - /usr/lib/girepository-1.0 - /usr/lib/lib*.* - /usr/share/doc - /usr/bin - - - - gsound-devel - Development files for gsound - - gsound - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gir-1.0 - /usr/share/vala - - - - gsound-docs - - /usr/share/gtk-doc - - - - - 2021-08-19 - 1.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-28 - 1.0.2 - First release for Pisi Linux - Berk Çakar - berk2238@hotmail.com - - - - - - hydrogen - http://www.hydrogen-music.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.sound - Advanced drum machine for GNU/Linux - GNU/Linux için gelişmiş bir davul yazılımı - Hydrogen is an advanced drum machine for GNU/Linux. It's main goal is to bring professional yet simple and intuitive pattern-based drum programming. - https://github.com/hydrogen-music/hydrogen/releases/download/1.1.0/hydrogen-1.1.0.tar.gz - - cmake - flac-devel - lash-devel - zlib-devel - libtar-devel - qt5-linguist - liblrdf-devel - qt5-base-devel - portmidi-devel - alsa-lib-devel - audiofile-devel - portaudio-devel - ladspa-sdk-devel - libsndfile-devel - qt5-xmlpatterns-devel - jack-audio-connection-kit-devel - - multimedia/sound/hydrogen/pspec.xml - - - hydrogen - - zlib - libtar - libgcc - liblrdf - alsa-lib - qt5-base - libsndfile - qt5-xmlpatterns - jack-audio-connection-kit - - - /usr/bin - /usr/lib/libhydrogen-core-1.1.0.so - /usr/share/hydrogen/data - /usr/share/hydrogen - /usr/share/applications - /usr/share/icons - /usr/share/doc - /usr/share/man - /usr/share/appdata - - - - hydrogen-devel - hydrogen için geliştirme dosyaları - - hydrogen - - - /usr/include/hydrogen - - - - - 2021-12-01 - 1.1.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libmad - http://mad.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Librairie de "D"écompression "A"udio "M"peg ("M"peg "A"udio "D"ecoder") - "M"peg "A"udio "D"ecoder library - Yüksek kaliteli MPEG ses çözücü kütüphanesi - libmad is an audio decoder library for MPEG based content. - libmad MPEG tabanlı ses çözüm kitaplığıdır. - mirrors://sourceforge/mad/libmad-0.15.1b.tar.gz - - amd64-64bit.diff - libmad-0.15.1b-cflags-O2.patch - libmad-0.15.1b-cflags.patch - - multimedia/sound/libmad/pspec.xml - - - libmad - "M"peg "A"udio "D"ecoder library - - /usr/lib - /usr/share/doc - - - - libmad-devel - Development files for libmad - libmad için geliştirme dosyaları - libmad-devel, libmad için geliştirme dosyaları içerir. - - libmad - - - /usr/include - /usr/lib/pkgconfig - - - mad.pc - - - - - 2020-01-06 - 0.15.1b - Rebuilt. - Blue DeviL - bluedevil@sctzine.com - - - 2018-07-29 - 0.15.1b - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.15.1b - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.15.1b - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.15.1b + 2017-01-08 + 1.6.2 First release Serdar Soytetir kaptan@pisilinux.org @@ -308438,149 +262282,803 @@ from a wide variety of machine architectures. - speexdsp - https://www.speex.org/ + java-openjdk + https://openjdk.java.net/ - Alihan Öztürk - alihan@pisilinux.org + Safa Arıman + safa@ariman.gen.tr - BSD - library - multimedia.sound - DSP library derived from Speex. - DSP library derived from Speex - http://downloads.xiph.org/releases/speex/speexdsp-1.2.0.tar.gz + GPLv2 + app:gui + programming.language.java + OpenJDK Java development kit + OpenJDK Java 13 development kit + OpenJDK is a development environment for building applications, applets, and components using the Java programming language. + OpenJDK is a development environment for building applications, applets, and components using the Java programming language. + https://hg.openjdk.java.net/jdk-updates/jdk15u/archive/jdk-15.0.3+0.tar.gz - glibc-devel + cpio + zip + unzip + cups-devel + libX11-devel + libXrender-devel + libXtst-devel + libXt-devel + libXext-devel + libXrandr-devel + alsa-lib-devel + freetype-devel + libjpeg-turbo-devel + giflib-devel + libpng-devel + lcms2-devel + fontconfig-devel + jdk-openjdk - multimedia/sound/speexdsp/pspec.xml + programming/language/java/java-openjdk/pspec.xml - speexdsp - DSP library derived from Speex. + jre-openjdk-headless + OpenJDK Java headless runtime environment - glibc + lcms2 + freetype + libjpeg-turbo - /usr/lib/libspeexdsp* + /usr/lib/jvm/java-openjdk/bin/jaotc + /usr/lib/jvm/java-openjdk/bin/java + /usr/lib/jvm/java-openjdk/bin/jfr + /usr/lib/jvm/java-openjdk/bin/jjs + /usr/lib/jvm/java-openjdk/bin/jrunscript + /usr/lib/jvm/java-openjdk/bin/keytool + /usr/lib/jvm/java-openjdk/bin/pack200 + /usr/lib/jvm/java-openjdk/bin/rmid + /usr/lib/jvm/java-openjdk/bin/rmiregistry + /usr/lib/jvm/java-openjdk/bin/unpack200 + /usr/lib/jvm/java-openjdk/conf + /etc/java-openjdk + /usr/share/licenses/java-openjdk/java.base* + /usr/share/licenses/java-openjdk/java.compiler* + /usr/share/licenses/java-openjdk/java.datatransfer* + /usr/share/licenses/java-openjdk/java.desktop* + /usr/share/licenses/java-openjdk/java.instrument* + /usr/share/licenses/java-openjdk/java.logging* + /usr/share/licenses/java-openjdk/java.management* + /usr/share/licenses/java-openjdk/java.naming* + /usr/share/licenses/java-openjdk/java.net.http* + /usr/share/licenses/java-openjdk/java.prefs* + /usr/share/licenses/java-openjdk/java.rmi* + /usr/share/licenses/java-openjdk/java.scripting* + /usr/share/licenses/java-openjdk/java.se* + /usr/share/licenses/java-openjdk/java.security* + /usr/share/licenses/java-openjdk/java.smartcardio* + /usr/share/licenses/java-openjdk/java.sql* + /usr/share/licenses/java-openjdk/java.transaction.xa* + /usr/share/licenses/java-openjdk/java.xml* + /usr/share/licenses/java-openjdk/jdk.accessibility* + /usr/share/licenses/java-openjdk/jdk.aot* + /usr/share/licenses/java-openjdk/jdk.charsets* + /usr/share/licenses/java-openjdk/jdk.crypto* + /usr/share/licenses/java-openjdk/jdk.dynalink* + /usr/share/licenses/java-openjdk/jdk.httpserver* + /usr/share/licenses/java-openjdk/jdk.internal* + /usr/share/licenses/java-openjdk/jdk.jdwp.agent* + /usr/share/licenses/java-openjdk/jdk.jfr* + /usr/share/licenses/java-openjdk/jdk.jsobject* + /usr/share/licenses/java-openjdk/jdk.localedata* + /usr/share/licenses/java-openjdk/jdk.management* + /usr/share/licenses/java-openjdk/jdk.naming* + /usr/share/licenses/java-openjdk/jdk.net* + /usr/share/licenses/java-openjdk/jdk.pack* + /usr/share/licenses/java-openjdk/jdk.scripting.nashorn* + /usr/share/licenses/java-openjdk/jdk.sctp* + /usr/share/licenses/java-openjdk/jdk.security* + /usr/share/licenses/java-openjdk/jdk.unsupported* + /usr/share/licenses/java-openjdk/jdk.xml.dom* + /usr/share/licenses/java-openjdk/jdk.zipfs* + /usr/lib/jvm/java-openjdk/legal + /usr/share/licenses/jre-openjdk-headless + /usr/lib/jvm/java-openjdk/man + /usr/lib/jvm/java-openjdk/release + /usr/lib/jvm/java-openjdk/lib/modules + /usr/lib/jvm/java-openjdk/lib/security + /usr/lib/jvm/java-openjdk/lib/server + /usr/lib/jvm/java-openjdk/lib/tzdb.dat + /usr/lib/jvm/java-openjdk/lib/jvm.cfg + /usr/lib/jvm/java-openjdk/lib/jrt-fs.jar + /usr/lib/jvm/java-openjdk/lib/classlist + /usr/lib/jvm/java-openjdk/lib/jexec* + /usr/lib/jvm/java-openjdk/lib/jfr* + /usr/lib/jvm/java-openjdk/lib/jspawnhelper* + /usr/lib/jvm/java-openjdk/lib/libawt.* + /usr/lib/jvm/java-openjdk/lib/libawt_headless.* + /usr/lib/jvm/java-openjdk/lib/libdtcket* + /usr/lib/jvm/java-openjdk/lib/libextnet* + /usr/lib/jvm/java-openjdk/lib/libfontmanager* + /usr/lib/jvm/java-openjdk/lib/libinstrument* + /usr/lib/jvm/java-openjdk/lib/libj2gss* + /usr/lib/jvm/java-openjdk/lib/libj2pcsc* + /usr/lib/jvm/java-openjdk/lib/libj2pkcs11* + /usr/lib/jvm/java-openjdk/lib/libjaas* + /usr/lib/jvm/java-openjdk/lib/libjava* + /usr/lib/jvm/java-openjdk/lib/libjavajpeg* + /usr/lib/jvm/java-openjdk/lib/libjdwp* + /usr/lib/jvm/java-openjdk/lib/libjimage* + /usr/lib/jvm/java-openjdk/lib/libjli* + /usr/lib/jvm/java-openjdk/lib/libjsig* + /usr/lib/jvm/java-openjdk/lib/liblcms* + /usr/lib/jvm/java-openjdk/lib/libmanagement* + /usr/lib/jvm/java-openjdk/lib/libmlib_image* + /usr/lib/jvm/java-openjdk/lib/libnet* + /usr/lib/jvm/java-openjdk/lib/libnio* + /usr/lib/jvm/java-openjdk/lib/libprefs* + /usr/lib/jvm/java-openjdk/lib/librmi* + /usr/lib/jvm/java-openjdk/lib/libsctp* + /usr/lib/jvm/java-openjdk/lib/libsunec* + /usr/lib/jvm/java-openjdk/lib/libunpack* + /usr/lib/jvm/java-openjdk/lib/libverify* + /usr/lib/jvm/java-openjdk/lib/libzip* + /usr/lib/jvm/java-openjdk/lib/psfont* + /usr/share/man/man1/jaotc-openjdk15.1 + /usr/share/man/man1/java-openjdk15.1 + /usr/share/man/man1/jfr-openjdk15.1 + /usr/share/man/man1/jjs-openjdk15.1 + /usr/share/man/man1/jrunscript-openjdk15.1 + /usr/share/man/man1/keytool-openjdk15.1 + /usr/share/man/man1/pack200-openjdk15.1 + /usr/share/man/man1/rmid-openjdk15.1 + /usr/share/man/man1/rmiregistry-openjdk15.1 + /usr/share/man/man1/unpack200-openjdk15.1 + + + System.Package + + + freedesktop-java.desktop + freedesktop-jconsole.desktop + freedesktop-jshell.desktop + + + + jre-openjdk + OpenJDK Java full runtime environment + + jre-openjdk-headless + libXi + giflib + libX11 + libpng + libXext + libXtst + alsa-lib + libXrender + libjpeg-turbo + + + /usr/lib/jvm/java-openjdk/lib/libawt_xawt* + /usr/lib/jvm/java-openjdk/lib/libjawt* + /usr/lib/jvm/java-openjdk/lib/libjsound* + /usr/lib/jvm/java-openjdk/lib/libsplashscreen* + + + + jdk-openjdk + OpenJDK Java development kit + + jre-openjdk-headless + + + /usr/lib/jvm/java-openjdk/bin/jstatd + /usr/lib/jvm/java-openjdk/bin/jshell + /usr/lib/jvm/java-openjdk/bin/jarsigner + /usr/lib/jvm/java-openjdk/bin/javap + /usr/lib/jvm/java-openjdk/bin/jstack + /usr/lib/jvm/java-openjdk/bin/javadoc + /usr/lib/jvm/java-openjdk/bin/jdeprscan + /usr/lib/jvm/java-openjdk/bin/jmap + /usr/lib/jvm/java-openjdk/bin/jconsole + /usr/lib/jvm/java-openjdk/bin/jmod + /usr/lib/jvm/java-openjdk/bin/jcmd + /usr/lib/jvm/java-openjdk/bin/jar + /usr/lib/jvm/java-openjdk/bin/javac + /usr/lib/jvm/java-openjdk/bin/rmic + /usr/lib/jvm/java-openjdk/bin/jps + /usr/lib/jvm/java-openjdk/bin/jpackage + /usr/lib/jvm/java-openjdk/bin/serialver + /usr/lib/jvm/java-openjdk/bin/jstat + /usr/lib/jvm/java-openjdk/bin/jdb + /usr/lib/jvm/java-openjdk/bin/jinfo + /usr/lib/jvm/java-openjdk/bin/jhsdb + /usr/lib/jvm/java-openjdk/bin/jlink + /usr/lib/jvm/java-openjdk/bin/jimage + /usr/lib/jvm/java-openjdk/bin/jdeps + /usr/lib/jvm/java-openjdk/include + /usr/lib/jvm/java-openjdk/demo + /usr/lib/jvm/java-openjdk/jmods + /usr/lib/jvm/java-openjdk/lib/ct.sym + /usr/lib/jvm/java-openjdk/lib/libsaproc* + /usr/lib/jvm/java-openjdk/lib/libdt_socket* + /usr/lib/jvm/java-openjdk/lib/libattach* + /usr/share/man/man1/jstatd-openjdk15.1 + /usr/share/man/man1/jshell-openjdk15.1 + /usr/share/man/man1/jarsigner-openjdk15.1 + /usr/share/man/man1/javap-openjdk15.1 + /usr/share/man/man1/jstack-openjdk15.1 + /usr/share/man/man1/javadoc-openjdk15.1 + /usr/share/man/man1/jdeprscan-openjdk15.1 + /usr/share/man/man1/jmap-openjdk15.1 + /usr/share/man/man1/jconsole-openjdk15.1 + /usr/share/man/man1/jmod-openjdk15.1 + /usr/share/man/man1/jcmd-openjdk15.1 + /usr/share/man/man1/jar-openjdk15.1 + /usr/share/man/man1/javac-openjdk15.1 + /usr/share/man/man1/rmic-openjdk15.1 + /usr/share/man/man1/jps-openjdk15.1 + /usr/share/man/man1/serialver-openjdk15.1 + /usr/share/man/man1/jstat-openjdk15.1 + /usr/share/man/man1/jdb-openjdk15.1 + /usr/share/man/man1/jinfo-openjdk15.1 + /usr/share/man/man1/jhsdb-openjdk15.1 + /usr/share/man/man1/jlink-openjdk15.1 + /usr/share/man/man1/jimage-openjdk15.1 + /usr/share/man/man1/jdeps-openjdk15.1 + /usr/share/man/man1/jpackage-openjdk15.1 + /usr/share/icons + /usr/share/applications + /usr/share/licenses/java-openjdk + + + System.Package + + + + openjdk-src + OpenJDK Java sources + + /usr/lib/jvm/java-openjdk/lib/src.zip + + + + openjdk-doc + OpenJDK Java documentation + /usr/share/doc - - speexdsp-devel - Development files for speexdsp - - speexdsp - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - speexdsp-32bit - 32-bit shared libraries for speexdsp - emul32 - emul32 - - speexdsp - - - /usr/lib32/libspeexdsp* - - - - 2020-01-12 - 1.2.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.2_rc3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - 2017-02-17 - 1.2_rc3 - First release - Alihan Öztürk - alihan@pisilinux.org + 2021-03-10 + 15.0.3.0 + First release. + Safa Arıman + safa@ariman.gen.tr - libmygpo-qt - https://gpodder.github.io/docs/libmygpo-qt.html + java8-openjdk + http://icedtea.classpath.org PisiLinux Community admins@pisilinux.org - LGPLv2.1 - library - multimedia.sound - Qt Library that wraps the gpodder.net Web API - gpodder.net Web API'sine ara yazılım sunan bir Qt kitaplığı - libmygpo-qt is a Qt Library that wraps the gpodder.net Web API. - libmygpo-qt, gpodder.net Web API'sine ara yazılım sunan bir Qt kitaplığıdır. - https://github.com/gpodder/libmygpo-qt/archive/1.1.0.tar.gz + GPLv2 + app:gui + programming.language.java + Open Java Development Kit + OpenJDK (Open Java Development Kit) is a free and open source implementation of the Java Platform, Standard Edition (Java SE). + http://icedtea.wildebeest.org/download/source/icedtea-3.19.0.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/corba.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/hotspot.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/jaxp.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/jaxws.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/jdk.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/langtools.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/nashorn.tar.xz + http://icedtea.wildebeest.org/download/drops/icedtea8/3.19.0/openjdk.tar.xz - cmake - qt5-base-devel + wget + p7zip + fastjar + nss-devel + zlib-devel + attr-devel + xorg-proto + gtk2-devel + cups-devel + libffi-devel + libXt-devel + libSM-devel + lcms2-devel + jdk8-openjdk + libICE-devel + libpng-devel + giflib-devel + libxslt-devel + libXtst-devel + alsa-lib-devel + libXinerama-devel + libjpeg-turbo-devel + libXcomposite-devel + chrpath + jre8-openjdk-headless + zip + cpio + unzip + libXp-devel - - libmygpo-qt-1.1.0-qt-5.11b3.patch - - multimedia/sound/libmygpo-qt/pspec.xml + programming/language/java/java8-openjdk/pspec.xml - libmygpo-qt + jre8-openjdk-headless + Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - Minimal Java runtime - needed for executing non GUI Java programs + atk + cups + gtk2 + zlib + cairo + glib2 + lcms2 + libXi + pango + libX11 libgcc - qt5-base + libXext + libXtst + freetype + fontconfig + gdk-pixbuf + libXrender + libXcomposite + libjpeg-turbo - /usr/lib + /usr/bin/jfr + /usr/bin/hsdb + /usr/bin/clhsdb + /usr/bin/orbd + /usr/bin/rmid + /usr/bin/java + /usr/bin/jjs + /usr/bin/jdeps + /etc/env.d/25java_jre.csh + /etc/env.d/25java_jre + /etc/java-8-openjdk/ + /usr/bin/pack200 + /usr/bin/keytool + /usr/bin/tnameserv + /usr/bin/unpack200 + /usr/share/man/man1/rmid.1 + /usr/share/man/man1/orbd.1 + /usr/share/man/man1/java.1 + /usr/bin/servertool + /usr/bin/rmiregistry + /usr/share/doc/java8-openjdk/ + /usr/share/man/ja/man1/rmid.1 + /usr/share/man/ja/man1/java.1 + /usr/share/man/man1/pack200.1 + /usr/share/man/man1/keytool.1 + /usr/share/man/ja/man1/orbd.1 + /usr/share/man/man1/tnameserv.1 + /usr/share/man/man1/unpack200.1 + /usr/share/man/ja/man1/pack200.1 + /usr/share/man/man1/servertool.1 + /usr/share/man/ja/man1/keytool.1 + /usr/share/man/man1/rmiregistry.1 + /usr/share/man/ja/man1/tnameserv.1 + /usr/share/man/ja/man1/unpack200.1 + /usr/share/man/ja/man1/servertool.1 + /usr/share/doc/jre8-openjdk-headless + /usr/share/man/ja/man1/rmiregistry.1 + /usr/lib/jvm/java-8-openjdk/jre/lib + /usr/lib/jvm/java-8-openjdk/bin/jfr + /usr/lib/jvm/java-8-openjdk/bin/hsdb + /usr/lib/jvm/java-8-openjdk/bin/clhsdb + /usr/lib/jvm/java-8-openjdk/bin/jdeps + /usr/lib/jvm/java-8-openjdk/bin/jjs + /usr/lib/jvm/java-8-openjdk/jre/java + /usr/lib/jvm/java-8-openjdk/jre/orbd + /usr/lib/jvm/java-8-openjdk/jre/rmid + /usr/lib/jvm/java-8-openjdk/jre/bin/ + /usr/lib/jvm/java-8-openjdk/jre/keytool + /usr/lib/jvm/java-8-openjdk/jre/pack200 + /usr/lib/jvm/java-8-openjdk/jre/bin/orbd + /usr/lib/jvm/java-8-openjdk/jre/bin/java + /usr/lib/jvm/java-8-openjdk/jre/bin/rmid + /usr/lib/jvm/java-8-openjdk/jre/tnameserv + /usr/lib/jvm/java-8-openjdk/jre/unpack200 + /usr/lib/jvm/java-8-openjdk/jre/servertool + /usr/lib/jvm/java-8-openjdk/jre/policytool + /usr/lib/jvm/java-8-openjdk/jre/rmiregistry + /usr/lib/jvm/java-8-openjdk/jre/bin/keytool + /usr/lib/jvm/java-8-openjdk/jre/bin/pack200 + /usr/lib/jvm/java-8-openjdk/lib/*/jli/libjli.so + /usr/lib/jvm/java-8-openjdk/jre/bin/tnameserv + /usr/lib/jvm/java-8-openjdk/jre/bin/unpack200 + /usr/lib/jvm/java-8-openjdk/jre/bin/servertool + /usr/lib/jvm/java-8-openjdk/jre/bin/rmiregistry + /usr/lib/jvm/java-8-openjdk/lib/amd64/libjawt.so + /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/xawt/libmawt.so + /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/headless/libmawt.so + + + 25java_jre + 25java_jre.csh + + + + jre8-openjdk + Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - Full Java runtime environment - needed for executing Java GUI and Webstart programs + + zlib + giflib + libX11 + libpng + libXext + alsa-lib + libjpeg-turbo + jre8-openjdk-headless + + + /usr/share/doc/openjdk + /usr/bin/policytool + /usr/share/icons/hicolor/ + /usr/share/man/man1/policytool.1 + /usr/share/man/ja/man1/policytool.1 + /usr/share/applications/policytool-jdk8.desktop + /usr/lib/jvm/java-8-openjdk/jre/bin/policytool + /usr/lib/jvm/java-8-openjdk/jre/lib/*/libjsoundalsa.so + /usr/lib/jvm/java-8-openjdk/jre/lib/*/libpulse-java.so + /usr/lib/jvm/java-8-openjdk/jre/lib/*/libsplashscreen.so + /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/libjsoundalsa.so + /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/libpulse-java.so + /usr/lib/jvm/java-8-openjdk/jre/lib/amd64/libsplashscreen.so + + + sun-jre + + + sun-jre + + + + jdk8-openjdk + Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - SDK + + zlib + libX11 + libgcc + jre8-openjdk-headless + + + /etc/env.d/25java_jdk.csh + /etc/env.d/25java_jdk + /usr/share/man/man1/ + /usr/share/man/ja/man1/ + /usr/bin/jar + /usr/bin/xjc + /usr/bin/apt + /usr/bin/jdb + /usr/bin/jps + /usr/bin/jmap + /usr/bin/idlj + /usr/bin/jcmd + /usr/bin/jhat + /usr/bin/rmic + /usr/bin/javac + /usr/bin/javah + /usr/bin/javap + /usr/bin/jinfo + /usr/bin/wsgen + /usr/bin/jstat + /usr/bin/jstack + /usr/bin/jstatd + /usr/bin/javadoc + /usr/bin/extcheck + /usr/bin/jconsole + /usr/bin/wsimport + /usr/bin/jarsigner + /usr/bin/jsadebugd + /usr/bin/schemagen + /usr/bin/serialver + /usr/bin/jrunscript + /usr/bin/appletviewer + /usr/bin/native2ascii + /usr/share/applications/jconsole-jdk8.desktop + /usr/lib/jvm/java-8-openjdk/include + /usr/lib/jvm/java-8-openjdk/bin/apt + /usr/lib/jvm/java-8-openjdk/bin/jar + /usr/lib/jvm/java-8-openjdk/bin/jdb + /usr/lib/jvm/java-8-openjdk/bin/jps + /usr/lib/jvm/java-8-openjdk/bin/xjc + /usr/lib/jvm/java-8-openjdk/bin/rmic + /usr/lib/jvm/java-8-openjdk/bin/rmid + /usr/lib/jvm/java-8-openjdk/bin/idlj + /usr/lib/jvm/java-8-openjdk/bin/orbd + /usr/lib/jvm/java-8-openjdk/bin/java + /usr/lib/jvm/java-8-openjdk/bin/jhat + /usr/lib/jvm/java-8-openjdk/bin/jmap + /usr/lib/jvm/java-8-openjdk/bin/jcmd + /usr/lib/jvm/java-8-openjdk/bin/javac + /usr/lib/jvm/java-8-openjdk/bin/javah + /usr/lib/jvm/java-8-openjdk/bin/javap + /usr/lib/jvm/java-8-openjdk/bin/jinfo + /usr/lib/jvm/java-8-openjdk/bin/jstat + /usr/lib/jvm/java-8-openjdk/bin/wsgen + /usr/lib/jvm/java-8-openjdk/bin/jstatd + /usr/lib/jvm/java-8-openjdk/bin/jstack + /usr/lib/jvm/java-8-openjdk/bin/pack200 + /usr/lib/jvm/java-8-openjdk/bin/javadoc + /usr/lib/jvm/java-8-openjdk/bin/keytool + /usr/lib/jvm/java-8-openjdk/bin/wsimport + /usr/lib/jvm/java-8-openjdk/bin/extcheck + /usr/lib/jvm/java-8-openjdk/bin/jconsole + /usr/lib/jvm/java-8-openjdk/bin/tnameserv + /usr/lib/jvm/java-8-openjdk/bin/unpack200 + /usr/lib/jvm/java-8-openjdk/bin/schemagen + /usr/lib/jvm/java-8-openjdk/bin/serialver + /usr/lib/jvm/java-8-openjdk/bin/jarsigner + /usr/lib/jvm/java-8-openjdk/bin/jsadebugd + /usr/lib/jvm/java-8-openjdk/bin/jrunscript + /usr/lib/jvm/java-8-openjdk/bin/policytool + /usr/lib/jvm/java-8-openjdk/bin/servertool + /usr/lib/jvm/java-8-openjdk/bin/rmiregistry + /usr/lib/jvm/java-8-openjdk/bin/java-rmi.cgi + /usr/lib/jvm/java-8-openjdk/bin/native2ascii + /usr/lib/jvm/java-8-openjdk/bin/appletviewer + /usr/lib/jvm/java-8-openjdk/lib/jexec + /usr/lib/jvm/java-8-openjdk/lib/ct.sym + /usr/lib/jvm/java-8-openjdk/lib/dt.jar + /usr/lib/jvm/java-8-openjdk/lib/ir.idl + /usr/lib/jvm/java-8-openjdk/lib/orb.idl + /usr/lib/jvm/java-8-openjdk/lib/tools.jar + /usr/lib/jvm/java-8-openjdk/lib/sa-jdi.jar + /usr/lib/jvm/java-8-openjdk/lib/jconsole.jar + + + sun-jdk + + + sun-jdk + + + 25java_jdk.csh + 25java_jdk + + + + openjdk8-src + Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - sources + + jdk8-openjdk + + + /usr/lib/jvm/java-8-openjdk/src.zip + + + + openjdk8-doc + Free Java environment based on OpenJDK 8.0 with IcedTea8 replacing binary plugs - documentation + + jdk8-openjdk + + + /usr/share/doc/openjdk8-doc/ + + + + + 2021-11-27 + 8u_292.3.19.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-09 + 8u_282.3.18.0 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-12-18 + 8u_275.3.17.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-01 + 8u_252.3.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-26 + 8u_242.3.15.0 + Version Bump devir 3. + Pisi Linux Community + admin@pisilinux.org + + + 2019-09-20 + 8u_222.3.13.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-06-17 + 8u_212.3.12.0 + First release devir 3. + Pisi Linux Community + admin@pisilinux.org + + + + + + npapi-sdk + http://code.google.com/p/npapi-sdk/ + + Osman Erkan + osman.erkan@pisilinux.org + + MPLv1.1 + app:gui + programming.language.java + NPAPI-SDK is a bundle of Netscape Plugin Application Programming Interface headers by Mozilla. + NPAPI-SDK is a bundle of Netscape Plugin Application Programming Interface headers by Mozilla. This package provides a clear way to install those headers and depend on them. + https://ftp.osuosl.org/pub/blfs/conglomeration/npapi-sdk/npapi-sdk-0.27.2.tar.bz2 + programming/language/java/npapi-sdk/pspec.xml + + + npapi-sdk + /usr/share/doc - libmygpo-qt-devel - Development files for libmygpo-qt - libmygpo-qt için geliştirme dosyaları + npapi-sdk-devel + Development files for nnapi-sdk + npapi-sdk için geliştirme dosyaları - qt5-base-devel - libmygpo-qt + npapi-sdk - /usr/include /usr/lib/pkgconfig + /usr/include/npapi-sdk - 2018-08-07 - 1.1.0 + 2020-01-16 + 0.27.2 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2018-04-10 - 1.1.0 - Version bump. + 2018-08-16 + 0.27.2 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2017-01-04 - 1.0.9 + 2017-01-08 + 0.27.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + rhino + http://www.mozilla.org/rhino/ + + PisiLinux Community + admins@pisilinux.org + + GPL2 + programming.language.java + Open-source implementation of JavaScript written entirely in Java + Open-source implementation of JavaScript written entirely in Java + https://github.com/mozilla/rhino/archive/Rhino1_7_7_2_Release.tar.gz + http://archive.apache.org/dist/xmlbeans/binaries/xmlbeans-2.6.0.tgz + + rhino + rhino.1 + rhino-jsc + rhino-jsc.1 + rhino-debugger + rhino-debugger.1 + + + ant + jdk8-openjdk + + programming/language/java/rhino/pspec.xml + + + rhino + + jdk8-openjdk + + + /usr/share/man + /usr/bin + /usr/share/java/ + + + + + 201-03-10 + 1.7.7.2 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2020-06-04 + 1.7.7.2 + Rebuild ant. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 1.7.7.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-22 + 1.7.7.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-28 + 1.7.7.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-16 + 1.7.7.1 + Rebuild New T.jdk7-2.6.14 + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-11 + 1.7.7.1 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 1.7.7.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.7.7.1 First release Alihan Öztürk alihan@pisilinux.org @@ -308589,736 +263087,223 @@ from a wide variety of machine architectures. - libmodplug - http://modplug-xmms.sourceforge.net/ + clisp + http://clisp.cons.org/ PisiLinux Community admins@pisilinux.org GPLv2 - library - multimedia.sound - Librairie pour jouer les fichiers son de type MOD. - Library for playing MOD-like music files - MOD-like müzik dosyalarını çalmak için bir kütüphane - libmodplug is a library based on the mod rendering code from ModPlug, a popular windows mod player written by Olivier Lapicque. - http://sourceforge.net/projects/modplug-xmms/files/libmodplug/0.8.9.0/libmodplug-0.8.9.0.tar.gz - - libgcc - - - libmodplug-0.8.4-timidity-patches.patch - - multimedia/sound/libmodplug/pspec.xml - - - libmodplug - - libgcc - - - /usr/lib - /usr/share/doc - - - - libmodplug-devel - - libmodplug - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 0.8.9.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 0.8.9.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.8.8.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.8.8.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.8.8.5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - musepack - https://www.musepack.net/ - - Pisilinux Community - admins@pisilinux.org - - BSD - LGPL - library - multimedia.sound - Portable Musepack decoder library. - Musepack is an audio compression format with a strong emphasis on high quality. It's not lossless, but it is designed for transparency, so that you won't be able to hear differences between the original wave file and the much smaller MPC file. It is based on the MPEG-1 Layer-2 / MP2 algorithms, but has rapidly developed and vastly improved and is now at an advanced stage in which it contains heavily optimized and patentless code. - https://files.musepack.net/source/musepack_src_r475.tar.gz - - libcue-devel - libreplaygain-devel - - - arch/configure.patch - arch/Makefile.patch - arch/mpcchap.patch - arch/mpcdec.patch - arch/mpcdecmake.patch - - multimedia/sound/musepack/pspec.xml - - - musepack - - libcue - libmpcdec - libreplaygain - - - /usr/bin - /usr/share - - - - libmpcdec - - /usr/lib - - - - libmpcdec-devel - Development files for libmpcdec - - libmpcdec - - - /usr/include - - - - - 2020-09-17 - 8 - First build. - Pisilinux Community - admins@pisilinux.org - - - - - - libopenmpt - http://lib.openmpt.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - BSD - library - multimedia.sound - A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. - A cross-platform C++ and C library to decode tracked music files (modules) into a raw PCM audio stream. - https://lib.openmpt.org/files/libopenmpt/src/libopenmpt-0.4.11+release.autotools.tar.gz - - flac-devel - zlib-devel - libogg-devel - mpg123-devel - libvorbis-devel - portaudio-devel - libsndfile-devel - pulseaudio-libs-devel - - multimedia/sound/libopenmpt/pspec.xml - - - libopenmpt - - flac - zlib - libgcc - libogg - mpg123 - libvorbis - portaudio - libsndfile - pulseaudio-libs - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libopenmpt-devel - Header files for libopenmpt. - - libopenmpt - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 0.4.11 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - amarok - https://amarok.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.sound - Amarok audio player - Amarok Audio-speler - Amarok Audio-Player - KDE için müzik çalıcısı - Odtwarzacz muzyczny Amarok - Reproductor de música para KDE - Lecteur audio riche en fonctionnalité pour le système KDE. - Amarok is a feature-rich audio player for the KDE desktop. - Amarok is een feature-rijke audio-speler voor het KDE-bureaublad. - Amarok, pek çok yeni özelliklere sahip yeni nesil bir müzik çalıcısıdır - Amarok to bogaty w funkcje odtwarzacz audio dedykowany środowisku graficznemu KDE. - Amarok es un potente reproductor de música con una interfaz intuitiva - amarok - https://github.com/KDE/amarok/archive/refs/tags/v2.9.71.tar.gz - - extra-cmake-modules - qt5-base-devel - qt5-svg-devel - qt5-script-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-sqlite - qt5-declarative-devel - qt5-webengine-devel - qt5-webkit-devel - qt5-designer-devel - kcoreaddons-devel - re2-devel - solid-devel - kdelibs4-support-devel - kcodecs-devel - ki18n-devel - threadweaver-devel - plasma-framework-devel - kcmutils-devel - knewstuff-devel - ktexteditor-devel - kglobalaccel-devel - kio-devel - knotifyconfig-devel - karchive-devel - kdnssd-devel - kdesignerplugin - kdoctools-devel - kemoticons-devel - kitemmodels-devel - kinit-devel - kunitconversion-devel - taglib-devel - curl-devel - libmtp-devel - ffmpeg-devel - liblastfm-devel - qca2-qt5-devel - openssl-devel - libofa-devel - clamz - ifuse - loudmouth-devel - libgpod-devel - libmygpo-qt-devel - taglib-extras-devel - gdk-pixbuf-devel - gst-plugins-base-devel - gst-plugins-bad-devel - mariadb-lib - mariadb-client - mariadb-server - fftw3-devel - kirigami-devel - qt5-quickcontrols2-devel - kdeclarative-devel - python3-qt5-devel - qt5-phonon-devel - kwallet-devel - liblastfm_fingerprint - - multimedia/sound/amarok/pspec.xml - - - amarok - - kio - attica - kcrash - ki18n - fftw3 - glib2 - kdnssd - solid - libgpod - libmtp - kwallet - ffmpeg - kpackage - libgcc - libofa - taglib - kcodecs - kconfig - kxmlgui - qt5-svg - karchive - kcmutils - kservice - qt5-base - knewstuff - gdk-pixbuf - libmygpo-qt - kdeclarative - liblastfm - kguiaddons - kitemviews - qt5-phonon - qt5-script - qt5-webengine - qt5-declarative - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - ktexteditor - mariadb-lib - kglobalaccel - ktextwidgets - threadweaver - kwindowsystem - taglib-extras - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - - - /etc - /usr/bin - /usr/lib - /usr/share - /usr/share/amarok - /usr/share/appdata - /usr/share/applications/ - /usr/share/config.kcfg - /usr/share/dbus-1/interfaces - /usr/share/metainfo - /usr/share/doc - /usr/share/icons - /usr/share/kconf_update - /usr/share/knotifications5 - /usr/share/kservices5 - /usr/share/kservicetypes5 - /usr/share/solid - - - - - 2021-12-13 - 2.9.71 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-08 - 2.9.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2018-04-27 - 2.9.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2018-04-11 - 2.9.0 - First release - PisiLinux Community - admins@pisilinux.org - - - 2017-01-07 - 2.8.83 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libdca - https://www.videolan.org/developers/libdca.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.sound - Library for decoding DTS Coherent Acoustics streams - libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane - libdts est une librairie libre pour décoder les flux DTS Coherent Acoustics. - libdts is a free library for decoding DTS Coherent Acoustics streams. - libdts DTS tutarlı akustik streamlerini çözebilen ücretsiz bir kütüphane - libdts es una librería libre para decodificar flujos acústicos coherentes DTS. - http://download.videolan.org/pub/videolan/libdca/0.0.6/libdca-0.0.6.tar.bz2 - - libdca-0.0.5-cflags.patch - - multimedia/sound/libdca/pspec.xml - - - libdca - - /usr/lib - /usr/bin - /usr/share/man - /usr/share/doc - - - - libdca-devel - Development files for libdca - libdca için geliştirme dosyaları - - libdca - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 0.0.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 0.0.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 0.0.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.0.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.0.5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - soundtouch - http://www.surina.net/soundtouch - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library app:console - multimedia.sound - Audio Processing Library - Ses işleme kitaplığı - Librairie de traitement audio open-source (libre) pour changer le Tempo, le Pitch et la vitesse de lecture de flux audio ou de fichiers. - soundtouch is an open-source audio processing library for changing the Tempo, Pitch and Playback Rates of audio streams or file. - soundtouch ses dosyalarının temposunu, oynatma hızını ve frekansını değiştirmek için kullanılabilen açık kaynaklı bir ses işleme kütüphanesidir. - Librería código libre para procesamiento de sonido para manipular Tempo, Pitch y Tasas de reproducción de flujos o archivos de audio - https://gitlab.com/soundtouch/soundtouch/-/archive/2.1.2/soundtouch-2.1.2.tar.bz2 - multimedia/sound/soundtouch/pspec.xml + programming.language.lisp + Implémente de manière conforme à ANSI Common Lisp. + An ANSI Common Lisp Implementation + Bir ANSI Common Lisp Uygulaması + ANSI Common Lisp is a high-level, general-purpose programming language. + ANSI Common Lisp üst düzey, genel amaçlı programlama dili. + https://haible.de/bruno/gnu/clisp-2.49.92.tar.bz2 + + dbus-devel + gdbm-devel + libsigsegv-devel + ffcall-devel + libglade-devel + fcgi-devel + gtk2-devel + postgresql-lib + libSM-devel + libXaw-devel + libXft-devel + libXmu-devel + libXrender-devel + libXt-devel + libXpm-devel + libXext-devel + gdk-pixbuf-devel + + + clisp-2.49.92-after_glibc_cfree_bdb.patch + + programming/language/lisp/clisp/pspec.xml - soundtouch + clisp + + atk + gtk2 + dbus + gdbm + zlib + fcgi + cairo + glib2 + libSM + pango + ffcall + libICE + libX11 + libXau + libpcre + libxml2 + ncurses + libXpm + libXext + freetype + harfbuzz + readline + fontconfig + libglade + libsigsegv + gdk-pixbuf + postgresql-lib + /usr/bin /usr/lib + /usr/share/vim + /usr/share/emacs /usr/share/doc + /usr/share/locale + /usr/share/man - soundtouch-devel - Development files for soundtouch - soundtouch için geliştirme dosyaları + clisp-devel + Development files for clisp + clisp için geliştirme dosyaları - soundtouch + clisp - /usr/include - /usr/lib/pkgconfig /usr/share/aclocal - - 2020-10-09 - 2.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.1.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 2.0.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 2.0.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 1.9.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.8.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2014-07-05 - 1.8.0 + 2014-01-20 + 2.49.92 First release - Alihan Öztürk - alihan@pisilinux.org + Serdar Soytetir + kaptan@pisilinux.org - jack-audio-connection-kit - http://jackaudio.org + lua + http://www.lua.org PisiLinux Community admins@pisilinux.org - GPLv2 - app:console - service - multimedia.sound - A low-latency audio server - Düşük gecikmeli bir ses sunucu - JACK is a low-latency audio server written for POSIX conformant operating systems. It can connect a number of different applications to an audio device, as well as allowing them to share audio between themselves. - GNU/Linux gibi POSIX uyumlu işletim sistemleri için yazılmış, düşük gecikmeli bir ses sunucudur. Bir çok sayıdaki uygulamayı bir ses aygıtına bağlayıp aralarında ses alışverişi yapmaya olanak sağlamaktadır. - https://github.com/jackaudio/jack2/archive/v1.9.19.tar.gz + LGPLv2 + library + programming.language + A light-weight programming language + Hafif bir programlama dili + lua is a powerful light-weight programming language designed for extending applications. + lua, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. + Lua es un lenguaje de programación liviano y potente con todas las herramientas imaginables + http://www.lua.org/ftp/lua-5.3.6.tar.gz + + lua.pc + - python3 - dbus-devel - libsamplerate-devel - alsa-lib-devel - celt-devel - pkgconfig - eigen3 - libopus-devel - doxygen - libsndfile-devel readline-devel - multimedia/sound/jack-audio-connection-kit/pspec.xml + + liblua.so.patch + + programming/language/lua/pspec.xml - jack-audio-connection-kit + lua - db - alsa-lib - libsamplerate - libsndfile - dbus - expat readline - libgcc - celt - libopus - /etc/security - /usr/bin /usr/lib - /lib/udev/rules.d - /usr/share/jack-audio-connection-kit - /usr/share/dbus-1 + /usr/share/man /usr/share/doc + /usr/bin + /usr/share/pixmaps - 99-jack.conf - 40-hpet-permissions.rules - 99-audio.conf + lua.png - jack-audio-connection-kit-devel - Development files for jack-audio-connection-kit - jack-audio-connection-kit için geliştirme dosyaları + lua-devel + Development files for lua + lua için geliştirme dosyaları - jack-audio-connection-kit + lua /usr/include /usr/lib/pkgconfig - - jack-audio-connection-kit-docs - Help files and API documents for jack-audio-connection-kit - jack-audio-connection-kit için yardım dosyaları ve API belgeleri - - jack-audio-connection-kit - - - /usr/share/jack-audio-connection-kit/reference - /usr/share/man - - - - 2021-08-16 - 1.9.19 + + 2021-10-05 + 5.3.6 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2020-01-18 + 5.3.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-03 + 5.3.5 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-06-29 - 1.9.18 - Version bump. + 2018-08-06 + 5.3.4 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-01-12 - 1.9.14 + 2017-04-08 + 5.3.4 Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.9.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + Ertuğrul Erata + ertugrulerata@gmail.com - 2018-05-09 - 1.9.10 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2017-03-02 + 5.3.4 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2017-02-17 - 1.9.10 - Rebuild for new toolchain, patch. + 2016-06-14 + 5.3.3 + Version Bump Pisi Linux Community admin@pisilinux.org 2016-06-09 - 1.9.10 + 5.2.4 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-24 - 1.9.10 + 2015-06-03 + 5.2.4 First release Vedat Demir vedat@pisilinux.org @@ -309327,6135 +263312,95 @@ from a wide variety of machine architectures. - gsm - http://www.quut.com/gsm/ + lua51 + http://www.lua.org PisiLinux Community admins@pisilinux.org - OSI-Approved + LGPLv2 library - multimedia.sound - Lossy speech compression library and tool - Kayıplı ses sıkıştırması kitaplığı ve araçları - Gsm est une implémentation du brouillon final du standard GSM 06.10 pour un transcodage audio à plein régime. - Gsm is an implementation of the final draft GSM 06.10 standard for full-rate speech transcoding - GSM, tam oranlı konuşma kod çevrimi için GSM 06.10 standardı son taslak uyarlamasıdır - Gsm es una implementación del estándar GSM 06.10 final draft de codificación de voz full-rate - http://www.quut.com/gsm/gsm-1.0.18.tar.gz + programming.language + A light-weight programming language + Hafif bir programlama dili + lua51 is a powerful light-weight programming language designed for extending applications. + lua51, uygulamaları genişletmek için tasarlanmış hafif ve güçlü bir programlama dilidir. + Lua51 es un lenguaje de programación liviano y potente con todas las herramientas imaginables + http://www.lua.org/ftp/lua-5.1.5.tar.gz + + readline-devel + - gsm-1.0.10-dyn.patch - gsm-1.0-pl10-includes.patch - gsm-1.0.12-64bit.patch - gsm-shared.patch - pardusflags_1.0.18.patch + lua-5.1-cflags.diff + lua-arch.patch - multimedia/sound/gsm/pspec.xml + programming/language/lua51/pspec.xml - gsm + lua51 + + readline + - /usr/bin /usr/lib - /usr/share/man - /usr/share/doc - - - - gsm-devel - Development files for gsm - gsm için geliştirme dosyaları - - gsm - - - /usr/include - /usr/share/man/man3 - - - - gsm-32bit - 32-bit shared libraries for gsm - gsm için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - gsm - - - /usr/lib32 - - - - - 2019-10-27 - 1.0.18 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-31 - 1.0.13 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 1.0.13 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 1.0.13 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libfishsound - https://www.xiph.org/fishsound/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - multimedia.sound - La librairie pour fichiers au format média Oggz. - A simple programming interface that wraps Xiph.Org audio codecs - libfishsound Xiph.org kodekleri(FLAC, Speex ve Vorbis) kullanarak ses verisi enkode ve dekode edebilir. - libfishsound provides a simple programming interface for decoding and encoding audio data using the Xiph.org codecs (FLAC, Speex and Vorbis). - libfishsound Xiph.org kodekleri(FLAC, Speex ve Vorbis) kullanarak ses verisi enkode ve dekode etmek için kitaplık dosyaları sunar. - http://downloads.xiph.org/releases/libfishsound/libfishsound-1.0.0.tar.gz - - libvorbis-devel - speex-devel - flac-devel - - multimedia/sound/libfishsound/pspec.xml - - - libfishsound - A simple programming interface that wraps Xiph.Org audio codecs - - libvorbis - speex - flac - - - /usr/share/doc - /usr/lib - /usr/share - - - - libfishsound-devel - Development files for libfishsound - libfishsound için geliştirme dosyaları - libfishsound-devel, libfishsound için geliştirme dosyaları içerir - - libfishsound - libvorbis-devel - speex-devel - flac-devel - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-01-02 - 1.0.0 - First pisi release - Blue DeviL - bluedevil@sctzine.com - - - - - - libbs2b - http://bs2b.sourceforge.net/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv3 - library - multimedia.sound - Bauer stereophonic-to-binaural DSP library - The Bauer stereophonic-to-binaural DSP (bs2b) library and plugins is designed to improve headphone listening of stereo audio records. - mirrors://sourceforge/bs2b/libbs2b/3.1.0/libbs2b-3.1.0.tar.bz2 - - libsndfile-devel - - multimedia/sound/libbs2b/pspec.xml - - - libbs2b - - libsndfile - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libbs2b-devel - Header files for libbs2b. - - libbs2b - - - /usr/include - - - - - 2020-01-17 - 3.1.0 - First release. - Mathias Freire - mathiasfreire45@gmail.com - - - - - - imlib2 - https://sourceforge.net/projects/enlightenment/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.graphics - Second version of the general image loading and rendering library - Genel resim yükleme ve tarama kütüphanesi'nin ikinci versiyonu - Imlib 2 est le successeur de Imlib. Il ne s'agit pas là juste d'une version plus récente d'imlib 1, mais vraiment d'une librairie complètement différente. S'agissant effectivement d'une différente librairie - même si elles ont des fonctionnalités similaires, Imlib2 peut être installée aux côtés de Imlib1.x sans aucun problème. - Imlib 2 is the successor to Imlib. It is not just a newer version - it is a completely new library. Imlib2 can be installed alongside Imlib 1.x without any problems since they are effectively different libraries - but they Have very similar functionality. - Imlib 2, Imlib'in gelişmişidir. Sadece ileri bir sürümü değildir, tamamen yeni bir kütüphanedir. Imlib2 ve Imlib 1.x tamamen farklı oldukları için bir arada kurulu bulunabilirler. İkisi de aynı amaçla yapılmıştır. - Imlib 2 es el sucesor de Imlib. no es simplemente una versión actualizada - es una librería completamente nueva. Imlib2 puede instalarse junto con Imlib 1.x sin problemas, ya que efectivamente son librerías diferentes - sin embargo tienen una funcionalidad similar. - https://sourceforge.net/projects/enlightenment/files/imlib2-src/1.7.5/imlib2-1.7.5.tar.xz - - bzip2 - zlib-devel - webp-devel - giflib-devel - libid3tag-devel - libXext-devel - libjpeg-turbo-devel - tiff-devel - freetype-devel - - multimedia/graphics/imlib2/pspec.xml - - - imlib2 - - webp - giflib - libid3tag - libXext - libjpeg-turbo - tiff - zlib - bzip2 - libX11 - libpng - freetype - - - /usr/bin - /usr/lib - /usr/share/imlib2 - /usr/share/doc - - - - imlib2-devel - Development files for imlib2 - imlib2 için geliştirme dosyaları - - imlib2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-12-11 - 1.7.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 1.6.1 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2019-09-28 - 1.5.1 - Version Bump - fury - uglyside@yandex.ru - - - 2018-07-31 - 1.4.10 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 1.4.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.4.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.4.6 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - gimp - https://www.gimp.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - multimedia.graphics.gimp - GNU Image Manipulation Program - Bir resim işleme programı - 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.30.tar.bz2 - - bzip2 - xz-devel - gtk-doc - atk-devel - xdg-utils - tiff-devel - zlib-devel - lcms-devel - gegl-devel - glib-networking - babl-devel - dbus-devel - gtk2-devel - aalib-devel - pango-devel - cairo-devel - glib2-devel - libwmf-devel - jasper-devel - libX11-devel - libmng-devel - libpng-devel - libXpm-devel - libXmu-devel - libXext-devel - librsvg-devel - libexif-devel - libgudev-devel - alsa-lib-devel - freetype-devel - mypaint-brushes - dbus-glib-devel - libXfixes-devel - libXcursor-devel - fontconfig-devel - python-gtk-devel - gdk-pixbuf-devel - ghostscript-devel - poppler-glib-devel - libjpeg-turbo-devel - intltool - python-devel - libmypaint-devel - libgexiv2-devel - lcms2-devel - python-cairo-devel - python-six - gettext-devel - perl - harfbuzz-devel - dietlibc - iso-codes-devel - shared-mime-info - webp-devel - openexr-devel - - multimedia/graphics/gimp/gimp/pspec.xml - - - gimp-devel - Documents et entêtes de développement pour GIMP. - Development header and documents for GIMP - GIMP için geliştirme belgeleri ve başlık dosyaları - data - data:doc - - gtk2-devel - gegl-devel - cairo-devel - gdk-pixbuf-devel - gimp - - - /usr/include - /usr/share/gtk-doc - /usr/lib/pkgconfig - /usr/share/aclocal - - - - gimp - app:gui - - xz - dbus - webp - babl - gegl - gtk2 - tiff - zlib - eudev - aalib - bzip2 - pango - cairo - glib2 - lcms2 - libgcc - libwmf - libXpm - libmng - libpng - libXmu - jasper - libX11 - libXext - librsvg - libexif - harfbuzz - alsa-lib - freetype - libgudev - json-glib - dbus-glib - libXfixes - libgexiv2 - libXcursor - fontconfig - gdk-pixbuf - libmypaint - ghostscript - openexr-libs - poppler-glib - libjpeg-turbo - mypaint-brushes - - - /etc - /usr/lib - /usr/share/man + /usr/share/man/man1 /usr/share/doc /usr/bin - /usr/libexec - /usr/share/gimp - /usr/share/icons - /usr/share/appdata - /usr/share/metainfo - /usr/share/mime-info - /usr/share/applications - /usr/share/application-registry - /usr/share/locale/ky/LC_MESSAGES/gimp20.mo - /usr/share/locale/kab + /sbin/lsmod + /usr/share/pixmaps + /usr/share/lua5.1 + /luac5.1.1/luac.1 + /lua5.1.1/lua.1 - gimp-splash-pencils.png + lua.png + lua.pc - gimp-i18n-tr - Gimp translation files for Turkish - Türkçe için GIMP yerelleştirme dosyaları - locale:tr - multimedia.graphics.gimp.l10n + lua51-devel + Development files for lua51 + lua51 için geliştirme dosyaları - gimp + lua51 - /usr/share/locale/tr - - - - gimp-i18n-ast - Gimp translation files for Asturian - Asturya dili için GIMP yerelleştirme dosyaları - locale:ast - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ast - - - - gimp-i18n-my - Gimp translation files for Burmese - Burmese dili için GIMP yerelleştirme dosyaları - locale:my - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/my - - - - gimp-i18n-nds - Gimp translation files for Low Saxon - Aşağı Saxon dili için GIMP yerelleştirme dosyaları - locale:nds - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nds - - - - gimp-i18n-el - Gimp translation files for Greek - Yunanca için GIMP yerelleştirme dosyaları - locale:el - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/el - - - - gimp-i18n-gu - Gimp translation files for Gujarati - Gujarati dili için GIMP yerelleştirme dosyaları - locale:gu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gu - - - - gimp-i18n-be - Gimp translation files for Belarusian - Belarusça için GIMP yerelleştirme dosyaları - locale:be - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/be - - - - gimp-i18n-vi - Gimp translation files for Vietnamese - Viyetnamca için GIMP yerelleştirme dosyaları - locale:vi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/vi - - - - gimp-i18n-ca - Gimp translation files for Catalan - Katalanca için GIMP yerelleştirme dosyaları - locale:ca - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ca - - - - gimp-i18n-eo - Gimp translation files for Esperanto - Esperanto için GIMP yerelleştirme dosyaları - locale:eo - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/eo - - - - gimp-i18n-cs - Gimp translation files for Czech - Çekçe için GIMP yerelleştirme dosyaları - locale:cs - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/cs - - - - gimp-i18n-ca_valencia - Gimp translation files for Catalan (Valencia) - Valensiya Katalancası için GIMP yerelleştirme dosyaları - locale:ca@valencia - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ca@valencia - - - - gimp-i18n-ar - Gimp translation files for Arabic - Arapça için GIMP yerelleştirme dosyaları - locale:ar - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ar - - - - gimp-i18n-bs - Gimp translation files for Bahama - locale:ar - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/bs - - - - gimp-i18n-km - Gimp translation files for Khmer - Khmer dili için GIMP yerelleştirme dosyaları - locale:km - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/km - - - - gimp-i18n-ga - Gimp translation files for Irish Gaelic - Gaelik İrlandacası için GIMP yerelleştirme dosyaları - locale:ga - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ga - - - - gimp-i18n-fi - Gimp translation files for Finnish - Fince için GIMP yerelleştirme dosyaları - locale:fi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fi - - - - gimp-i18n-eu - Gimp translation files for Basque - Baskça için GIMP yerelleştirme dosyaları - locale:eu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/eu - - - - gimp-i18n-et - Gimp translation files for Estonian - Estonyaca için GIMP yerelleştirme dosyaları - locale:et - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/et - - - - gimp-i18n-xh - Gimp translation files for Xhosa - Xhosa dili için GIMP yerelleştirme dosyaları - locale:xh - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/xh - - - - gimp-i18n-gl - Gimp translation files for Galician - Galiçya dili için GIMP yerelleştirme dosyaları - locale:gl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gl - - - - gimp-i18n-id - Gimp translation files for Indonesian - Endonezyaca için GIMP yerelleştirme dosyaları - locale:id - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/id - - - - gimp-i18n-es - Gimp translation files for Spanish - İspanyolca için GIMP yerelleştirme dosyaları - locale:es - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/es - - - - gimp-i18n-ru - Gimp translation files for Russian - Rusça için GIMP yerelleştirme dosyaları - locale:ru - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ru - - - - gimp-i18n-rw - Gimp translation files for Kinyarwanda - Kinyarwanda dili için GIMP yerelleştirme dosyaları - locale:rw - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/rw - - - - gimp-i18n-nl - Gimp translation files for Dutch - Hollandaca için GIMP yerelleştirme dosyaları - locale:nl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nl - - - - gimp-i18n-nn - Gimp translation files for Norwegian Nynorsk - Norveç Nynorsk dili için GIMP yerelleştirme dosyaları - locale:nn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nn - - - - gimp-i18n-nb - Gimp translation files for Norwegian Bookmal - Norveç Bookmal dili için GIMP yerelleştirme dosyaları - locale:nb - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/nb - - - - gimp-i18n-ne - Gimp translation files for Nepali - Nepali dili için GIMP yerelleştirme dosyaları - locale:ne - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ne - - - - gimp-i18n-lt - Gimp translation files for Lithuanian - Litvanyaca için GIMP yerelleştirme dosyaları - locale:lt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/lt - - - - gimp-i18n-pa - Gimp translation files for Punjabi - Punjabi dili için GIMP yerelleştirme dosyaları - locale:pa - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pa - - - - gimp-i18n-ro - Gimp translation files for Romanian - Rumence için GIMP yerelleştirme dosyaları - locale:ro - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ro - - - - gimp-i18n-en_GB - Gimp translation files for British English - İngiliz İngilizcesi için GIMP yerelleştirme dosyaları - locale:en_GB - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/en_GB - - - - gimp-i18n-yi - Gimp translation files for Yi - Yi dili için GIMP yerelleştirme dosyaları - locale:yi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/yi - - - - gimp-i18n-en_CA - Gimp translation files for Catalan (en) - Katalanca için GIMP yerelleştirme dosyaları - locale:en_CA - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/en_CA - - - - gimp-i18n-fr - Gimp translation files for French - Fransızca için GIMP yerelleştirme dosyaları - locale:fr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fr - - - - gimp-i18n-bg - Gimp translation files for Bulgarian - Bulgarca için GIMP yerelleştirme dosyaları - locale:bg - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/bg - - - - gimp-i18n-ms - Gimp translation files for Malay - Malay dili için GIMP yerelleştirme dosyaları - locale:ms - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ms - - - - gimp-i18n-pt_BR - Gimp translation files for Brazilian Portuguese - Brezilya Portekizcesi için GIMP yerelleştirme dosyaları - locale:pt_BR - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pt_BR - - - - gimp-i18n-hr - Gimp translation files for Croatian (Hrvatski) - Hırvatça için GIMP yerelleştirme dosyaları - locale:hr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hr - - - - gimp-i18n-zh_TW - Gimp translation files for Chinese Traditional - Geleneksel Çince için GIMP yerelleştirme dosyaları - locale:zh_TW - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_TW - - - - gimp-i18n-ko - Gimp translation files for Korean - Korece için GIMP yerelleştirme dosyaları - locale:ko - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ko - - - - gimp-i18n-it - Gimp translation files for Italian - İtalyanca için GIMP yerelleştirme dosyaları - locale:it - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/it - - - - gimp-i18n-fa - Gimp translation files for Farsi (Persian) - Farsça için GIMP yerelleştirme dosyaları - locale:fa - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/fa - - - - gimp-i18n-dz - Gimp translation files for Dzongkha - Dzongkha dili için GIMP yerelleştirme dosyaları - locale:dz - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/dz - - - - gimp-i18n-sr_Latn - Gimp translation files for Serbian Latin - Latin sırpça için GIMP yerelleştirme dosyaları - locale:sr@Latn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sr@latin - - - - gimp-i18n-da - Gimp translation files for Danish - Danimarkaca için GIMP yerelleştirme dosyaları - locale:da - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/da - - - - gimp-i18n-ja - Gimp translation files for Japanese - Japonca için GIMP yerelleştirme dosyaları - locale:ja - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ja - - - - gimp-i18n-he - Gimp translation files for Hebrew - İbranice için GIMP yerelleştirme dosyaları - locale:he - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/he - - - - gimp-i18n-pt - Gimp translation files for Portuguese - Portekizce için GIMP yerelleştirme dosyaları - locale:pt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pt - - - - gimp-i18n-zh_CN - Gimp translation files for Chinese Simplified - Basitleştirilmiş Çince için GIMP yerelleştirme dosyaları - locale:zh_CN - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_CN - - - - gimp-i18n-sr - Gimp translation files for Serbian - Sırpça için GIMP yerelleştirme dosyaları - locale:sr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sr - - - - gimp-i18n-oc - Gimp translation files for Occitan - Occitan dili için GIMP yerelleştirme dosyaları - locale:oc - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/oc - - - - gimp-i18n-sv - Gimp translation files for Swedish - İsveççe için GIMP yerelleştirme dosyaları - locale:sv - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sv - - - - gimp-i18n-mk - Gimp translation files for Macedonian - Makedonyaca için GIMP yerelleştirme dosyaları - locale:mk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/mk - - - - gimp-i18n-sk - Gimp translation files for Slovak - Slovakça için GIMP yerelleştirme dosyaları - locale:sk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sk - - - - gimp-i18n-de - Gimp translation files for German - Almanca için GIMP yerelleştirme dosyaları - locale:de - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/de - - - - gimp-i18n-pl - Gimp translation files for Polish - Lehçe için GIMP yerelleştirme dosyaları - locale:pl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/pl - - - - gimp-i18n-uk - Gimp translation files for Ukrainian - Ukraynaca için GIMP yerelleştirme dosyaları - locale:uk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/uk - - - - gimp-i18n-sl - Gimp translation files for Slovenian - Slovence için GIMP yerelleştirme dosyaları - locale:sl - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/sl - - - - gimp-i18n-hu - Gimp translation files for Hungarian - Macarca için GIMP yerelleştirme dosyaları - locale:hu - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hu - - - - gimp-i18n-tt - Gimp translation files for Tatarish - Tatarca için GIMP yerelleştirme dosyaları - locale:tt - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/tt - - - - gimp-i18n-az - Gimp translation files for Azerbaijani - Azerice için GIMP yerelleştirme dosyaları - locale:az - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/az - - - - gimp-i18n-am - Gimp translation files for Amharic - Amharic dili için GIMP yerelleştirme dosyaları - locale:am - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/am - - - - gimp-i18n-is - Gimp translation files for Icelandic - İzlanda dili için GIMP yerelleştirme dosyaları - locale:is - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/is - - - - gimp-i18n-lv - Gimp translation files for Latvia - Latvia dili için GIMP yerelleştirme dosyaları - locale:lv - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/lv - - - - gimp-i18n-th - Gimp translation files for Thai - Thai dili için GIMP yerelleştirme dosyaları - locale:th - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/th - - - - gimp-i18n-ka - Gimp translation files for Georgian - Gürcüce için GIMP yerelleştirme dosyaları - locale:ka - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ka - - - - gimp-i18n-hi - Gimp translation files for Hindi - Hindi dili için GIMP yerelleştirme dosyaları - locale:hi - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/hi - - - - gimp-i18n-zh_HK - Gimp translation files for Chinese Hong Kong - Hong Kong Çincesi için GIMP yerelleştirme dosyaları - locale:zh_HK - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/zh_HK - - - - gimp-i18n-ml - Gimp translation files for Malayalam - Malayalam dili için GIMP yerelleştirme dosyaları - locale:ml - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ml - - - - gimp-i18n-ta - Gimp translation files for Tamil - Tamil dili için GIMP yerelleştirme dosyaları - locale:ta - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/ta - - - - gimp-i18n-kn - Gimp translation files for Kannada - Kannada dili için GIMP yerelleştirme dosyaları - locale:kn - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/kn - - - - gimp-i18n-si - Gimp translation files for Sinhala - Sinhala dili için GIMP yerelleştirme dosyaları - locale:si - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/si - - - - gimp-i18n-kk - Gimp translation files for Kazakh - Kazakça için GIMP yerelleştirme dosyaları - locale:kk - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/kk - - - - gimp-i18n-br - Gimp translation files for Breton - Breton dili için GIMP yerelleştirme dosyaları - locale:br - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/br - - - - gimp-i18n-te - Gimp translation files for Telugu - locale:te - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/te - - - - gimp-i18n-csb - Gimp translation files for Kashubian - locale:csb - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/csb - - - - gimp-i18n-gd - Gimp translation files for Scottish Gaelic - locale:gd - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/gd - - - - gimp-i18n-mr - Gimp translation files for Scottish Moritanya - locale:mr - multimedia.graphics.gimp.l10n - - gimp - - - /usr/share/locale/mr - - - - - 2022-05-14 - 2.10.30 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 2.10.28 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-06 - 2.10.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-05 - 2.10.22 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-09-20 - 2.10.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 2.10.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-29 - 2.10.12 - Version bump. - Mustafa Cinasal - admin@pisilinux.org - - - 2019-05-31 - 2.10.10 - Rebuild. - Mustafa Cinasal - admin@pisilinux.org - - - 2019-04-25 - 2.10.10 - Release Bump. - Mustafa Cinasal - admin@pisilinux.org - - - 2018-12-26 - 2.10.8 - Release Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-14 - 2.9.8 - Release Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-02-06 - 2.9.8 - Release Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-12-21 - 2.9.8 - Version Bump - Mustafa Cinasal - admin@pisilinux.org - - - 2017-03-08 - 2.8.20 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 2.8.20 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.8.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 2.8.16 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - colorize-gimp - https://www.gimp.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics.gimp.addon - Colorization plugin for GIMP - GIMP için renklendirme eklentisi - colorize-gimp is an implementation of colorization using optimization for GIMP. - colorize-gimp, GIMP ile siyah beyaz fotoğrafları renklendirmek için bir eklentidir. - gimp - https://sourceforge.net/projects/pisilinux/files/source/colorize-gimp-20070930.tar.gz - - gimp-devel - gtk2-devel - SuiteSparse-devel - - multimedia/graphics/gimp/addon/colorize-gimp/pspec.xml - - - colorize-gimp - - atk - babl - gegl - gimp - gtk2 - cairo - glib2 - pango - freetype - harfbuzz - json-glib - gdk-pixbuf - fontconfig - SuiteSparse - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - - - COPYING - - - - - 2021-02-05 - 2.6.0 - Rebuild for gimp - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-25 - 2.6.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 2.6.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.6.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-refocus-it-plugin - https://sourceforge.net/projects/refocus-it/ - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. - Iterative refocus GIMP plug-in can be used to refocus images acquired by a defocused camera, blurred by gaussian or motion blur or any combination of these. Adaptive or static area smoothing can be used to remove the so called \"ringing\" effect. - https://sourceforge.net/projects/refocus-it/files/refocus-it/2.0.0/refocus-it-2.0.0.tar.gz - - intltool - gimp-devel - gtk2-devel - - multimedia/graphics/gimp/addon/gimp-refocus-it-plugin/pspec.xml - - - gimp-refocus-it-plugin - - gimp - glib2 - gtk2 - - - /usr/bin - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc/gimp-refocus-it-plugin - /usr/share/help - /usr/share/locale - - - - - 2021-02-05 - 2.0.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-26 - 2.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 2.0.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - mypaint-brushes - https://github.com/Jehan/mypaint-brushes - - PisiLinux Community - admins@pisilinux.org - - custom - library - multimedia.graphics.gimp.addon - MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar - MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar - MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar - MyPaint tarafından kullanılan fırçalar ve libmypaint kullanan diğer yazılımlar - https://github.com/Jehan/mypaint-brushes/archive/v1.3.0.tar.gz - - libmypaint-devel - - multimedia/graphics/gimp/addon/mypaint-brushes/pspec.xml - - - mypaint-brushes - - /usr/lib - /usr/share - /usr/share/doc - - - - - 2021-02-05 - 1.3.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2020-02-12 - 1.3.0 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2018-12-25 - 1.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - gimp-resynthesizer - http://www.logarithmic.net/pfh/resynthesizer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - addon - multimedia.graphics.gimp.addon - Resynthesizer is a Gimp plug-in for texture synthesis - Resynthesizer is a Gimp plug-in for texture synthesis. Given a sample of a texture, it can create more of that texture. - http://www.logarithmic.net/pfh-files/resynthesizer/resynthesizer-0.16.tar.gz - - gimp-devel - - multimedia/graphics/gimp/addon/gimp-resynthesizer/pspec.xml - - - gimp-resynthesizer - - gimp - atk - babl - gegl - gtk2 - cairo - glib2 - pango - libgcc - freetype - harfbuzz - json-glib - fontconfig - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/gimp/2.0/scripts - /usr/share/doc - - - - - 2021-02-05 - 0.16 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-24 - 0.16 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 0.16 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.16 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 0.16 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-data-extras - https://www.gimp.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - data - multimedia.graphics.gimp.addon - Gimp extras - Gimp ekleri - Contains extra brushes, palettes, and gradients for extra GIMPy artistic enjoyment. - Daha eğlenceli bir çalışma için ek fırçalar, paketler ve gradyanlar içerir. - gimp - http://download.gimp.org/pub/gimp/extras/gimp-data-extras-2.0.4.tar.bz2 - - gimp-devel - - multimedia/graphics/gimp/addon/gimp-data-extras/pspec.xml - - - gimp-data-extras - - gimp - - - /usr/share/gimp - /usr/share/doc - - - - - 2021-02-04 - 2.0.4 - Rebuild for gimp - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-25 - 2.0.4 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 2.0.2 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.0.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-layer-effects - http://registry.gimp.org/node/186 - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - multimedia.graphics.gimp.addon - Layer effects for GIMP - GIMP için katman efektleri - Layer Effects is a GIMP plugin which contains a series of scripts that implement various layer effects. - Layer Effects, yaygın olarak kullanılan katman efektlerini içeren bir GIMP eklentisidir. - gimp - https://sourceforge.net/projects/pisilinux/files/source/layer-effects.tar.gz - multimedia/graphics/gimp/addon/gimp-layer-effects/pspec.xml - - - gimp-layer-effects - - gimp - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - - - COPYING - - - - - 2021-02-05 - 2.6.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-25 - 2.6.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 2.6.0 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.6.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-lqr-plugin - http://liquidrescale.wikidot.com/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Plugin for The GIMP providing Liquid Rescale. - Provides an implementation of the Seam Carving algorithm. The Seam Carving procedure aims at resizing pictures non uniformly while preserving their features, i.e. avoiding distortion of the important parts. The plugin supports manual feature selection, and can also be used to remove portions of the picture in a consistent way. - http://liquidrescale.wikidot.com/local--files/en:download-page-sources/gimp-lqr-plugin-0.7.2.tar.bz2 - - intltool - gimp-devel - liblqr-devel - - - gimp-lqr-plugin-0.7.2-gcc10.patch - - multimedia/graphics/gimp/addon/gimp-lqr-plugin/pspec.xml - - - gimp-lqr-plugin - - gdk-pixbuf - gimp - gtk2 - glib2 - liblqr - - - /usr/lib/gimp/2.0/plug-ins/* - /usr/share/doc/gimp-lqr-plugin/* - /usr/share/gimp-lqr-plugin/* - /usr/share/gimp/2.0/scripts/* - /usr/share/locale/* - - - - - 2021-02-05 - 0.7.2 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-24 - 0.7.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 0.7.2 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.7.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 0.7.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-save-for-web - http://registry.gimp.org/node/33 - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - GIMP Save for Web - GIMP Save for Web - GIMP Save for Web allows to find compromise between minimal file size and acceptable quality of image quickly. While adjusting various settings, you may explore how image quality and file size change. Options to reduce file size of an image include setting compression quality, number or colors, resizing, cropping, Exif information removal, etc. - GIMP Save for Web, kalite ve dosya boyutu değerlerini eniyilemeyi kolaylaştıran bir eklentidir. Çeşitli ayarları değiştirerek resimlerin ne kadar kaliteli veya büyük olacağını görebilirsiniz. Dosya boyutunu küçültecek ayarlar arasında sıkıştırma kalitesi, renk sayısı, yeniden boyutlandırma, kırpma ve Exif bilgeleri silme seçenekleri vb. vardır. - https://sourceforge.net/projects/pisilinux/files/source/gimp-save-for-web-0.29.3.tar.bz2 - - intltool - gimp-devel - gtk2-devel - gdk-pixbuf-devel - - multimedia/graphics/gimp/addon/gimp-save-for-web/pspec.xml - - - gimp-save-for-web - - gimp - glib2 - gtk2 - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/gimp-save-for-web - /usr/share/locale - /usr/share/doc - - - - - 2021-02-05 - 0.29.3 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-26 - 0.29.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 0.29.3 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.29.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 0.29.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-gmic-plugin - http://gmic.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - CeCILL-2 - app:console - library - multimedia.graphics.gimp.addon - Gimp plugin for the G'MIC image processing framework - G'MIC stands for GREYC's Magic Image Converter. G'MIC is focused on the design of possibly complex pipelines for converting, manipulating, filtering and visualizing generic 1d/2d/3d multi-spectral image datasets. - https://gmic.eu/files/source/gmic_3.0.0.tar.gz - - qt5-base-devel - ffmpeg-devel - fftw3-devel - gimp-devel - GraphicsMagick-devel - libjpeg-turbo-devel - lapack-devel - opencv-devel - openexr-devel - tiff-devel - curl-devel - - multimedia/graphics/gimp/addon/gimp-gmic-plugin/pspec.xml - - - gmic - - curl - tiff - zlib - fftw3 - libX11 - libgcc - libpng - libgomp - libjpeg-turbo - GraphicsMagick - - - /etc/bash_completion.d - /usr/bin - /usr/lib - /usr/share/doc/gmic - /usr/share/man - - - - gmic-devel - Development files for gmic - gmic için geliştirme dosyaları - - gmic - - - /usr/include - - - - gimp-gmic-plugin - Gimp plugin for the GMIC image procession framework. - GMIC görüntü işleme çerçevesi için Gimp eklentisi. - - atk - babl - gegl - curl - gtk2 - zlib - gimp - cairo - pango - libX11 - libgcc - libpng - libgomp - freetype - fftw3 - glib2 - fontconfig - gdk-pixbuf - qt5-base - - - /usr/lib/gimp - /usr/share/doc/gimp-gmic-plugin - - - - - 2021-12-09 - 3.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-02 - 2.9.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-05 - 2.6.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2019-05-06 - 2.6.1 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-29 - 2.4.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-26 - 1.7.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-27 - 1.7.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 1.7.9 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.6.5.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-10 - 1.6.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gimpfx-foundry - http://gimpfx-foundry.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - public-domain - data - multimedia.graphics.gimp.addon - A scripts collection for GIMP - GIMP için zengin bir betik paketi - FX-Foundry project is constantly updating custom scripts for each major GIMP release. - FX-Foundry GIMP için hazırlanmış çeşitli betikleri GIMP'in yeni sürümleri için güncelleyen bir projedir. - mirrors://sourceforge/gimpfx-foundry/gimpfx-foundry-scriptpack/gimpfx-foundry-2.6-1/gimpfx-foundry-2.6-1.tar.gz - multimedia/graphics/gimp/addon/gimpfx-foundry/pspec.xml - - - gimpfx-foundry - - gimp - - - /usr/share/gimp/2.0/scripts - /usr/share/doc - - - - - 2021-02-05 - 2.6.1 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-24 - 2.6.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 2.6.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.6.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 2.6.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-focusblur-plugin - http://registry.gimp.org/node/1444 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics.gimp.addon - Makes out of focus with luminosity and depth. - Focus Blur plug-in is blurring effect, a kind of called DoF. This software makes a out of focus with luminosity and depth, like a sight or lenses. It can be used with depth map, depth fakes and shine effect. Also it can work as simple and applicable blur. - https://sourceforge.net/projects/pisilinux/files/source/focusblur-3.2.6.tar.bz2 - - fftw3-devel - gimp-devel - intltool - - - focusblur-3.2.6-gcc10.patch - gimp-focusblur-plugin-fix-gettext.patch - gimp-focusblur-plugin-include-main-glib.patch - - multimedia/graphics/gimp/addon/gimp-focusblur-plugin/pspec.xml - - - gimp-focusblur-plugin - - fftw3 - gdk-pixbuf - gimp - gtk2 - glib2 - - - /usr/lib/gimp/2.0/plug-ins - /usr/share/doc - /usr/share/locale - - - - - 2021-02-04 - 3.2.6 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-26 - 3.2.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 3.2.6 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 3.2.6 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gimp-dds-plugin - https://www.gimp.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - multimedia.graphics.gimp.addon - DirectDraw Surface (DDS) format plugin for Gimp - This is a plugin for GIMP version 2.6.x. It allows you to load and save images in the Direct Draw Surface (DDS) format. - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/gimp-dds/gimp-dds-3.0.1.tar.bz2 - - gimp-devel - gtk2-devel - - multimedia/graphics/gimp/addon/gimp-dds-plugin/pspec.xml - - - gimp-dds-plugin - - atk - gimp - gtk2 - babl - gegl - cairo - glib2 - pango - libgomp - freetype - harfbuzz - json-glib - fontconfig - gdk-pixbuf - - - /usr/lib/gimp/2.0/plug-ins/dds - /usr/share/doc/gimp-dds-plugin - - - - - 2021-02-04 - 3.0.1 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-04-26 - 3.0.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-24 - 3.0.1 - Rebuild with new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-19 - 3.0.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - potrace - http://potrace.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app - multimedia.graphics - Transforming bitmaps into vector graphics. - Bitmap dosyalarını grafik vektör formatına dönüştürür. - Potrace is a tool for tracing a bitmap, which means, transforming a bitmap into a smooth, scalable image. - potrace komut tabanlı çalışan, bitmap resim dosyasından grafik vektör resimlerine dönüştüren bir uygulamadır - https://sourceforge.net/projects/potrace/files/1.16/potrace-1.16.tar.gz - - zlib-devel - - multimedia/graphics/potrace/pspec.xml - - - potrace - Transforming bitmaps into vector graphics. - - zlib - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/include - - - - - 2020-04-30 - 1.16 - Ver. bump - fury - uglyside@yandex.ru - - - 2014-06-18 - 1.11 - Rebuild for gcc - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-11-20 - 1.11 - Update - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2011-08-22 - 1.10 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - mjpegtools - http://mjpeg.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - Tools for MJPEG video - MJPEG video dosyaları için kullanılabilecek araçlar - mjpegtools is a complete suite of tools for you to capture, edit, process, filter and play your media as you wish. You can digitize your VHS collection, create DVDs, and do advanced video filtering on already-digitized videos. - Mjpegtools size görüntü yakalama, düzenleme, işleme ve filtreleme olanakları sunan ayrıca dosyalarınızı istediğiniz gibi oynatabileceğiniz tam bir araçlar paketidir. VHS kolleksiyonunuzu dijital ortama taşıyabilir, DVDler yaratabilirsiniz. Zaten dijital ortamda olan videolara ileri düzeyde video filtrelemesi yapabilirsiniz. - http://sourceforge.net/projects/mjpeg/files/mjpegtools/2.1.0/mjpegtools-2.1.0.tar.gz/download - - gtk2-devel - libdv-devel - libsdl-devel - libXxf86dga-devel - libjpeg-turbo-devel - libpng-devel - - multimedia/graphics/mjpegtools/pspec.xml - - - mjpegtools - - gtk2 - glib2 - libdv - libgcc - libsdl - libjpeg-turbo - libpng - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - mjpegtools-devel - Development files for mjpegtools - mjpegtools için geliştirme dosyaları - - mjpegtools - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-01-18 - 2.1.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 2.1.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 2.1.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - icoutils - http://www.nongnu.org/icoutils/ - - PisiLinux Community - admin@pisilinux.org - - GPLv3+ - app:gui - multimedia.graphics - Utility for extracting and converting Microsoft icon and cursor files - A set of programs for extracting and converting images in icon and cursor files (.ico, .cur) - http://download.savannah.gnu.org/releases/icoutils/icoutils-0.32.3.tar.bz2 - - libpng-devel - - multimedia/graphics/icoutils/pspec.xml - - - icoutils - - /usr/bin - /usr/share/doc - /usr/share/man - /usr/share/locale - - - - - 2020-03-06 - 0.32.3 - Rebuild. - PisiLinux Community - admin@pisilinux.org - - - 2018-09-01 - 0.32.3 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2018-03-21 - 0.32.3 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2017-02-05 - 0.31.1 - Version bump - PisiLinux Community - admin@pisilinux.org - - - 2016-06-02 - 0.31.0 - First release - PisiLinux Community - admin@pisilinux.org - - - - - - GraphicsMagick - http://www.graphicsmagick.org - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.graphics - GraphicsMagick Image Processing System - GraphicsMagick Resim İşleme Sistemi - GraphicsMagick is a comprehensive image processing package which is initially based on ImageMagick 5.5.2, but which has undergone significant re-work by the GraphicsMagick Group to significantly improve the quality and performance of the software. - GraphicsMagick, başlangıçta ImageMagick 5.5.2 sürümünü temel almış kapsamlı bir resim işleme paketidir. Yazılımın kalitesini ve performansını önemli derecede artırmak için bu pakette büyük bir değişiklik yapılmıştır. - https://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.37/GraphicsMagick-1.3.37.tar.xz - - tiff-devel - webp-devel - lcms2-devel - libSM-devel - libwmf-devel - libICE-devel - jasper-devel - jbigkit-devel - libXext-devel - libjpeg-turbo-devel - ghostscript-devel - zlib-devel - libxml2-devel - freetype-devel - xz-devel - zstd-devel - - - GraphicsMagick-1.3.16-multilib.patch - - multimedia/graphics/GraphicsMagick/pspec.xml - - - GraphicsMagick - app:console - - tiff - webp - zstd - zlib - bzip2 - libgcc - freetype - libX11 - libxml2 - libpng - lcms2 - libwmf - jasper - libXext - jbigkit - libgomp - ghostscript - libjpeg-turbo - libtool-ltdl - - - /etc - /usr/bin/gm - /usr/lib/GraphicsMagick-* - /usr/lib/lib* - /usr/share/GraphicsMagick-* - /usr/share/doc - /usr/share/man - - - - GraphicsMagick-devel - Development files for GraphicsMagick - - GraphicsMagick - - - /usr/bin/*-config - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/GraphicsMagick/www - /usr/share/man/man1/*-config.* - - - - PerlMagick - GraphicsMagick perl bindings - - GraphicsMagick - - - /usr/lib/perl5 - /usr/share/doc/PerlMagick - - - - - 2021-12-14 - 1.3.37 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 1.3.35 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-05 - 1.3.30 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-20 - 1.3.28 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-13 - 1.3.25 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-06 - 1.3.25 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.3.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-24 - 1.3.23 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - azpainterb - http://azsky2.html.xdomain.jp/soft/azpainterb.html - - fury - uglyside@yandex.ru - - GPLv3 - app:gui - multimedia.graphics - A simple full-color paint software. - Paint software for Linux which can be used for various purposes such as dot editing, illustration, retouching, etc. You can sense pen pressure with XInput2. - http://azsky2.html.xdomain.jp/arc/azpainterb-1.1.3.tar.xz - - libXi-devel - libX11-devel - libpng-devel - libXext-devel - freetype-devel - fontconfig-devel - libjpeg-turbo-devel - - multimedia/graphics/azpainterb/pspec.xml - - - azpainterb - - zlib - libXi - libpng - libX11 - libXext - freetype - fontconfig - libjpeg-turbo - - - /usr/bin - /usr/share - - - - - 2020-12-31 - 1.1.3 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-04-22 - 1.1.2 - Ver. bump - fury - uglyside@yandex.ru - - - 2019-04-30 - 1.1.1 - First build. - fury - uglyside@yandex.ru - - - - - - flameshot - https://flameshot.org/ - - Idris Kalp - idriskalp@gmail.com - - GPLv3 - app:gui - multimedia.graphics - Powerful yet simple to use screenshot software. - Powerful yet simple to use screenshot software. - Flameshot is a free and open-source, cross-platform tool to take screenshots with many built-in features to save you time. - Flameshot is a free and open-source, cross-platform tool to take screenshots with many built-in features to save you time. - https://github.com/flameshot-org/flameshot/archive/refs/tags/v11.0.0.tar.gz - - cmake - qt5-linguist - qt5-svg-devel - qt5-base-devel - kguiaddons-devel - - - flameshot-wayland-clipboard.patch - - multimedia/graphics/flameshot/pspec.xml - - - flameshot - - grim - libgcc - qt5-svg - qt5-base - kguiaddons - icon-theme-hicolor - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-02-21 - 11.0.0 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - libcaca - http://caca.zoy.org/ - - PisiLinux Community - admins@pisilinux.org - - WTFPL-2 - LGPLv2.1 - GPLv2 - library - multimedia.graphics - A library that creates colored ASCII-art graphics - Renkli ASCII-sanat grafikleri oluşturan bir kütüphane - libcaca est une librairie graphique qui génère du texte au lieu de pixels afin de pouvoir fonctionner sur de vieilles cartes graphique ou sur des terminaux texte. - libcaca is a graphics library that outputs text instead of pixels, so that it can work on older video cards or text terminals - libcaca piksel yerine metin üreten bir grafik kütüphanesidir, böylece eski video kart yada metin uçbirimleriyle çalışabilir. - libcaca es una librería gráfica que produce una salida de texto en vez de pixels, por lo tanto puede funcionar con tarjetas de video más antiguas y terminales de texto - https://fossies.org/linux/privat/libcaca-0.99.beta19.tar.gz - - imlib2-devel - slang-devel - ncurses-devel - libX11-devel - - multimedia/graphics/libcaca/pspec.xml - - - libcaca - - imlib2 - zlib - slang - ncurses - libX11 - - - /usr/bin - /usr/lib - /usr/share/libcaca - /usr/share/man - /usr/share/doc - - - - libcaca-devel - Development files for libcaca - libcaca için geliştirme dosyaları - - libcaca - - - /usr/bin/caca-config /usr/include /usr/lib/pkgconfig - 2020-01-19 - 0.99_beta19 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.99_beta19 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-23 - 0.99_beta19 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.99_beta19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.99_beta19 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - libdmtx - http://www.libdmtx.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.graphics - A Library for working with Data Matrix 2D bar-codes - Data Matrix 2D barkodlarıyla çalışmak için kitaplık - libdmtx is an open source software for reading and writing Data Matrix 2D bar-codes on Linux, Unix, OS X, Windows and mobile devices. - libdmtx, Linux, Unix, OS X, Windows ve mobil işletim sistemlerinde Data Matrix 2D barkodlarını okumak ve yazmak için kullanılan açık kaynaklı bir kitaplıktır. - https://github.com/dmtx/libdmtx/archive/v0.7.5.tar.gz - - fedora/libdmtx-0.7.5-c99.patch - fedora/libdmtx-0.7.5-math.patch - fedora/libdmtx-0.7.5-size_t.patch - - multimedia/graphics/libdmtx/pspec.xml - - - libdmtx - - /usr/lib - /usr/share/doc - - - - libdmtx-devel - Development files for libdmtx - libdmtx için geliştirme dosyaları - - libdmtx - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2020-03-06 - 0.7.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-11 - 0.7.4 + 2020-01-15 + 5.1.5 Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-03-02 - 0.7.4 - Rebuild - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-05-22 - 0.7.4 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2015-06-05 - 0.7.4 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - gpick - http://www.gpick.org/ - - fury - uglyside@yandex.ru - - BSD-3-Clause - app:gui - multimedia.graphics - Gpick is an advanced color picker and palette editing tool. - Gpick is an application that allows you to sample any color from anywhere on the desktop, and use it to create palettes (i.e. collections of colors) for use in graphic design applications. - https://github.com/thezbyg/gpick/archive/gpick-0.2.6.tar.gz - - cmake - ragel - lua-devel - gtk3-devel - expat-devel - boost-devel - - multimedia/graphics/gpick/pspec.xml - - - gpick - - lua - gtk3 - glib2 - expat - boost - cairo - pango - libgcc - gdk-pixbuf - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-11-04 - 0.2.6 - Release - fury - uglyside@yandex.ru - - - 2020-12-04 - 0.2.6_rc1 - First build - fury - uglyside@yandex.ru - - - - - - webp - https://www.webmproject.org/ - - PisiLinux Community - admins@pisilinux.org - - Copyright (c) 2010, Google Inc. All rights reserved. - application - multimedia.graphics - webp image format and format conversion png,jpeg,tiff - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - webp image format and format conversion png,jpeg,tiff - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - https://github.com/webmproject/libwebp/archive/v1.2.0.tar.gz - - mesa-devel - mesa-glu-devel - libpng-devel - tiff-devel - libsdl-devel - giflib-devel - freeglut-devel - libjpeg-turbo-devel - - multimedia/graphics/webp/pspec.xml - - - webp - webp resim formatı kütüphanesi ve png,jpeg,tiff resim formatlarına dönüştürme aracı - - tiff - mesa - giflib - libpng - freeglut - libjpeg-turbo - - - /usr/lib/libwebp* - /usr/bin - /usr/share/man - /usr/share/doc/webp - - - - webp-devel - webp için geliştirme dosyaları - - webp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-06-03 - 1.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 1.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 1.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-18 - 1.0.1 - Version bump. Pisi Linux Community admin@pisilinux.org - - 2018-07-28 - 1.0.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-21 - 0.6.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 0.6.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.4.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-06 - 0.4.3 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libwmf - http://wvware.sourceforge.net/libwmf.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - Library for reading and converting WMF files - WMF (Windows metafile) okuma ve dönüştürme kitaplığı - Librairie pour convertir les fichiers WMF. - A library for reading and converting Windows MetaFile vector graphics (WMF). - Microsoft Word gibi uygulamaların kullandığı WMF (Windows metafile) dosyalarını standart formatlara (PNG, JPEG, PS, EPS, SVG gibi) dönüştürebilmek ve gösterebilmek için gereken kütüphanedir. - mirrors://sourceforge/wvware/libwmf-0.2.8.4.tar.gz - - libjpeg-turbo-devel - harfbuzz-devel - freetype-devel - libX11-devel - libxml2-devel - gettext-devel - gdk-pixbuf-devel - - multimedia/graphics/libwmf/pspec.xml - - - libwmf - - zlib - libX11 - libpng - libxml2 - freetype - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/libwmf - - - - libwmf-devel - Development files for libwmf - libwmf için geliştirme dosyaları - - libwmf - - - /usr/bin/libwmf-config - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-12 - 0.2.8.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - 2018-08-06 - 0.2.8.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 0.2.8.4 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.2.8.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.2.8.4 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - graphviz - https://www.graphviz.org/ - - fury - uglyside@yandex.ru - - EPL - app - multimedia.graphics - Open source graph drawing software. - Açık kaynak bir grafik çizim programıdır - Graphviz is open source graph visualization software which has web and interactive graphical interfaces, and auxiliary tools and libraries. Graphviz has many useful features for diagrams, such as options for colors, fonts, tabular node layouts, line styles, and custom shapes. - Graphviz web ve etkileşimli grafik arayüzüne, yardımcı araç ve kütüphanelere sahip açık kaynak bir grafik canlandırma yazılımıdır. Graphviz renk, font, çizelge planı, çizgi stili ayarları ve özel şekiller gibi diyagramlara yönelik bir çok kullanışlı özelliğe sahiptir. - https://gitlab.com/graphviz/graphviz/-/archive/2.50.0/graphviz-2.50.0.tar.bz2 - - perl - swig - libtool - doxygen - gd-devel - tcl-devel - guile-devel - pango-devel - cairo-devel - libXt-devel - libX11-devel - libXaw-devel - libXmu-devel - python3-devel - librsvg-devel - freeglut-devel - mesa-glu-devel - ghostscript-devel - - multimedia/graphics/graphviz/pspec.xml - - - graphviz - - gd - zlib - perl - glib2 - guile - pango - cairo - expat - libXt - libX11 - libXaw - libXmu - libgcc - python3 - librsvg - ghostscript - libtool-ltdl - - - /usr/bin - /usr/lib - /usr/share/graphviz - /usr/share/man - - - - graphviz-docs - - /usr/share/graphviz/doc - - - - graphviz-demo - - graphviz - - - /usr/share/graphviz/demo - - - - graphviz-devel - graphviz için geliştirme dosyaları - - graphviz - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-01-18 - 2.50.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-06-10 - 2.47.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-24 - 2.46.1 - Version bump. - fury - uglyside@yandex.ru - - - 2017-01-18 - 2.40.1 - First release. - Ali Algul - aligulle3801@gmail.com - - - - - - inkscape - https://inkscape.org/ - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - LGPL-2.1 - app:gui - multimedia.graphics - SVG vector graphics application. - Vektörel çizim programı - Inkscape is an application to create, edit, and convert SVG vector graphics images that can also import from and export to bitmap image files. - SVG tabanlı, çok kapsamlı ve gelişmiş bir vektörel çizim programıdır. - https://media.inkscape.org/dl/resources/file/inkscape-1.1.2.tar.xz - - cmake - ragel - ccache - cython3 - potrace - gc-devel - intltool - gsl-devel - gdl-devel - libXt-devel - libXv-devel - libSM-devel - libXaw-devel - libXmu-devel - libXpm-devel - libXres-devel - libXtst-devel - ncurses-devel - xcb-util-devel - readline-devel - libxkbfile-devel - dbus-devel - gtk3-devel - popt-devel - lcms2-devel - boost-devel - aalib-devel - aspell-devel - gtkmm3-devel - libwpg-devel - libcdr-devel - libwpd-devel - liblqr-devel - libxslt-devel - libsoup-devel - python3-devel - boost-python3 - poppler-devel - poppler-utils - libyaml-devel - libvisio-devel - libspiro-devel - gtkspell3-devel - dbus-glib-devel - librevenge-devel - poppler-glib-devel - desktop-file-utils - libjpeg-turbo-devel - GraphicsMagick-devel - appstream-glib-devel - double-conversion-devel - python3-pygobject3-devel - - multimedia/graphics/inkscape/pspec.xml - - - inkscape - SVG vector graphics application. - - gc - gdl - gsl - dbus - gtk3 - zlib - atkmm - cairo - glib2 - lcms2 - pango - boost - aspell - glibmm - gtkmm3 - libX11 - libcdr - libgcc - libpng - libwpg - python3 - potrace - cairomm - libgomp - libsoup - libxml2 - libxslt - pangomm - poppler - readline - freetype - harfbuzz - lib2geom - libvisio - libspiro - dbus-glib - gtkspell3 - libsigc++ - fontconfig - gdk-pixbuf - librevenge - poppler-glib - python3-lxml - python3-numpy - python3-scour - boost-python3 - libjpeg-turbo - GraphicsMagick - python3-pygobject3 - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/metainfo - /usr/share/inkscape - /usr/lib/inkscape - /usr/share/locale - /usr/share/applications - /usr/share/bash-completion/completions/inkscape - - - - lib2geom - - gsl - glib2 - cairo - libgcc - double-conversion - - - /usr/lib - - - - lib2geom-devel - - lib2geom - - - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/include - - - - - 2022-05-01 - 1.1.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-12-20 - 1.1.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-06-05 - 1.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-03-20 - 1.0.2 - Version bump. - fury - uglyside@yandex.ru - - - 2020-09-11 - 1.0.1 - Ver bump, gtk3. - fury - uglyside@yandex.ru - - - 2020-04-16 - 0.92.5 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-10-05 - 0.92.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-06-26 - 0.92.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-01 - 0.92.3 - Release Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-23 - 0.92.3 - Release Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-05-16 - 0.92.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 0.91 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-29 - 0.91 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - lensfun - http://lensfun.berlios.de/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv3 - GPLv3 - CCPL-Attribution-ShareAlike-3.0 - library - multimedia.graphics - A programming library for rectifying and simulating photographic lens distortions - Mercek kaynaklı bozulmaları simüle etmek ve düzeltmek için bir kütüphane - lensfun provides an open source database of photographic lenses and their characteristics. The library provides also the necessary set of algorithms for correcting images based on detailed knowledge of lens properties and calibration data. - lensfun, kamera objektiflerinin karakteristiklerini içeren açık kaynaklı bir veritabanı ve bu karakteristikleri temel alarak mercek kaynaklı bozulmaları düzeltmek için yazılmış algoritmaları içeren bir kütüphanedir. - https://sourceforge.net/projects/lensfun/files/0.3.95/lensfun-0.3.95.tar.gz - - cmake - doxygen - libpng-devel - python3-devel - glib2-devel - - multimedia/graphics/lensfun/pspec.xml - - - lensfun - - libgcc - glib2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share - - - - lensfun-devel - Development files for lensfun - lensfun için geliştirme dosyaları - - lensfun - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-24 - 0.3.95 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-12 - 0.3.2 - Rebuild revert. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-12 - 0.3.95 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 0.3.2 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2018-09-01 - 0.3.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-05 - 0.3.2 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-13 - 0.3.2 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libraw - https://www.libraw.org/ - - Yücel KILIÇ - yucel.kilic@linux.org.tr - - LGPLv2.1 - CDDL - library - multimedia.graphics - Raw image decoder - LibRaw is a library for reading RAW files obtained from digital photo cameras (CRW/CR2, NEF, RAF, DNG, and others). - https://www.libraw.org/data/LibRaw-0.20.2.tar.gz - - libgomp - lcms2-devel - jasper-devel - libjpeg-turbo-devel - - multimedia/graphics/libraw/pspec.xml - - - libraw - - zlib - lcms2 - libgcc - jasper - libgomp - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libraw-devel - Development files for libraw - libraw için geliştirme dosyaları - - libraw - lcms2-devel - jasper-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-01-17 - 0.20.2 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-15 - 0.19.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-11 - 0.19.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.18.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-21 - 0.18.8 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 0.18.1 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.16.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-13 - 0.16.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - darktable - https://darktable.org/ - - Stefan Gronewold - groni@pisilinux.org - - GPL-3.0 - multimedia.graphics - darktable is an open source photography workflow application and RAW developer. - Açık kaynak fotoğraf iş akışı uygulaması ve ham(raw) geliştirme ortamı - darktable is an open source photography workflow application and RAW developer. A virtual lighttable and darkroom for photographers. - darktable, açık kaynak fotoğraf iş akışı uygulaması ve ham(raw) geliştirme ortamı sunan gelişmiş bir araçtır. - https://github.com/darktable-org/darktable/releases/download/release-3.4.1/darktable-3.4.1.tar.xz - - llvm - cmake - libgomp - intltool - llvm-libs - llvm-mlir - llvm-polly - gtk2-devel - gtk3-devel - mesa-devel - webp-devel - tiff-devel - cups-devel - curl-devel - zlib-devel - exiv2-devel - gconf-devel - glib2-devel - lcms2-devel - colord-devel - libX11-devel - libpng-devel - sqlite-devel - lensfun-devel - librsvg-devel - libsdl2-devel - libxml2-devel - pugixml-devel - libsoup-devel - openexr-devel - mesa-glu-devel - flickcurl-devel - iso-codes-devel - json-glib-devel - libXrandr-devel - libsecret-devel - openjpeg2-devel - colord-gtk-devel - libgnome-keyring - libgphoto2-devel - llvm-clang-devel - ghostscript-devel - desktop-file-utils - libjpeg-turbo-devel - GraphicsMagick-devel - - - darktable-openexr3.patch - - multimedia/graphics/darktable/pspec.xml - - - darktable - darktable is an open source photography workflow application and RAW developer. - - webp - cups - curl - gtk3 - zlib - mesa - tiff - gtk2 - cairo - glib2 - lcms2 - pango - colord - libX11 - libgcc - libpng - sqlite - libxml2 - pugixml - libsdl2 - lensfun - librsvg - libsoup - libgomp - mesa-glu - flickcurl - libXrandr - libsecret - openjpeg2 - json-glib - colord-gtk - exiv2-libs - gdk-pixbuf - libgphoto2 - ghostscript - openexr-libs - libjpeg-turbo - GraphicsMagick - libgnome-keyring - - - /etc - /usr/lib/ - /usr/share/man - /usr/bin - /usr/share/icons - /usr/share/appdata - /usr/share/darktable - /usr/lib/darktable - /usr/share/applications - /usr/share/doc/darktable - /usr/share/locale - - - - - 2021-02-24 - 3.4.1 - Version bump and rebuild. - Blue Devil - bluedevil@sctzine.com - - - 2021-01-19 - 3.4.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-09-20 - 3.2.1 - Minor version bump and translations added - Blue Devil - bluedevil@sctzine.com - - - 2020-03-28 - 3.0.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-03-05 - 3.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-05 - 2.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-13 - 2.4.4 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-01 - 2.2.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-14 - 2.2.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 2.2.5 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-15 - 2.2.4 + 5.1.5 Rebuild with new toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2016-11-13 - 2.0.7 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - hugin - http://hugin.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - library - multimedia.graphics - A panoramic photo stitcher - Panoramik görüntü birleştirici - hugin can be used to stitch multiple images together. The resulting image can span 360 degrees. Another common use is the creation of very high resolution pictures by combining multiple images. - hugin bir çok görüntüyü harmanlamak için kullanılabilecek bir araçtır. Bu sayede, 360 derecelik görüntüler oluşturulabilir. Bir diğer kullanım alanı ise birden fazla görüntüyü birleştirerek çok yüksek çözünürlüklü görüntüler üretmektir. - hugin - mirrors://sourceforge/hugin/hugin/hugin-2020.0/hugin-2020.0.0.tar.bz2 - - swig - cmake - glew-devel - tiff-devel - zlib-devel - vigra-devel - boost-devel - wxGTK-devel - lcms2-devel - exiv2-devel - fftw3-devel - flann-devel - libXmu-devel - libpng-devel - python-devel - lapack-devel - sqlite-devel - openexr-devel - lensfun-devel - freeglut-devel - libpano13-devel - libjpeg-turbo-devel - - - hugin-openexr3.patch - - multimedia/graphics/hugin/pspec.xml - - - hugin - - blas - glew - flann - mesa - tiff - boost - fftw3 - vigra - wxGTK - lapack - libgcc - python - lcms2 - libX11 - sqlite - enblend - libgomp - libglvnd - freeglut - mesa-glu - libpano13 - exiv2-libs - openexr-libs - wxGTK-common - perl-Image-ExifTool - - - /usr/lib/ - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/hugin - /usr/share/pixmaps - /usr/share/appdata - /usr/share/metainfo/ - /usr/share/applications - /usr/share/locale - - - hugin-libs - hugin-tools - - - - hugin-docs - Help documents for hugin - hugin için yardım belgeleri - - /usr/share/hugin/xrc/data/help* - - - - - 2021-10-27 - 2020.0.0 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2021-03-12 - 2020.0.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-09-20 - 2019.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 2019.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 2019.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2018.0.0 - Rebuild. Pisi Linux Community admin@pisilinux.org - - 2018-05-11 - 2018.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 2018.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-14 - 2018.0.0 - Ver.Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 2017.0.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - 2017-04-17 - 2016.2.0 - Version Bump + 2017-04-16 + 5.1.5 + Rebuild with new toolchain Pisi Linux Community admin@pisilinux.org 2016-06-09 - 2015.0.0 + 5.1.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-06 - 2015.0.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - aalib - http://aa-project.sourceforge.net/aalib/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - An ASCII-graphics Library - Bir ASCII-grafik Kitaplığı - Aalib est une librairie de graphiques ASCII générant des sorties en caractères ASCII. - Aalib is an ASCII-graphics library generating ASCII character outputs. - AAlib, bir ASCII sanatı grafik kütüphanesidir. Görsel bir ekran gibi çalışır, ancak oluşturulan çıktı platform bağımsız olarak ASCII karakterler ile gösterilir. - Aalib es una librería gráfica ASCII que genera salidas con caracteres ASCII. - mirrors://sourceforge/aa-project/aalib-1.4rc5.tar.gz - - gpm - ncurses-devel - - - m4.patch - - multimedia/graphics/aalib/pspec.xml - - - aalib - - gpm - ncurses - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - aalib-devel - Development files for aalib - aalib için geliştirme dosyaları - - aalib - - - /usr/share/aclocal - /usr/include - /usr/share/man/man3 - - - - - 2022-01-17 - 1.4_rc5 - Rebuild. - Pisilinux Community - admins@pisilinux.org - - - 2020-01-12 - 1.4_rc5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.4_rc5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.4_rc5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4_rc5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.4_rc5 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - netpbm - http://netpbm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.graphics - A set of utilities to convert to/from the netpbm (and related) formats - Netpbm vb. gibi formatlar arasında dönüşüm yapan araçlar serisi - Netpbm is a toolkit for manipulation of graphic images, including conversion of images between a variety of different formats. There are over 300 separate tools in the package including converters for about 100 graphics formats. - http://archlinux.c3sl.ufpr.br/other/netpbm/netpbm-10.61.02.tar.gz - - config.mk - - - jasper-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - zlib-devel - libX11-devel - libxml2-devel - - - netpbm-CAN-2005-2471.patch - netpbm-security-code.patch - netpbm-security-scripts.patch - library-link.patch - - multimedia/graphics/netpbm/pspec.xml - - - netpbm - - jasper - tiff - libpng - libjpeg-turbo - zlib - libX11 - libxml2 - - - /usr/bin - /usr/lib - /usr/share/netpbm - /usr/share/man - /usr/share/doc - - - - netpbm-devel - Development files for netpbm - netpbm için geliştirme dosyaları - - netpbm - - - /usr/include - /usr/share/man/man3 - - - - - 2020-03-06 - 10.61.02 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-01 - 10.61.02 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-18 - 10.61.02 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 10.61.02 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-21 - 10.61.02 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - jbigkit - http://www.cl.cam.ac.uk/~mgk25/jbigkit/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.graphics - A portable library of compression and decompression functions - Taşınabilir bir sıkıştırma kitaplığı - JBIG-KIT implements a highly effective data compression algorithm for bi-level high-resolution images such as fax pages or scanned documents. - jbigkit, faks sayfaları ve taranmış belgeler gibi yüksek çözünürlüklü görüntüler için, yüksek performanslı bir sıkıştırma kitaplığıdır. - https://www.cl.cam.ac.uk/~mgk25/jbigkit/download/jbigkit-2.1.tar.gz - - jbigkit-2.1-shared.diff - jbigkit-2.0-warnings.patch - - multimedia/graphics/jbigkit/pspec.xml - - - jbigkit - - /usr/share/doc - /usr/share/man - /usr/bin - /usr/lib - - - - jbigkit-devel - Development files for jbigkit - jbigkit için geliştirme dosyaları - - jbigkit - - - /usr/include - - - - - 2020-01-14 - 2.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-25 - 2.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 2.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-19 - 2.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - openjpeg - http://www.openjpeg.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.graphics - JPEG2000 decoding library - JPEG2000 çözme kütüphanesi - Biblioteka implementująca kodek formatu JPEG 2000 - openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). - http://downloads.sourceforge.net/project/openjpeg.mirror/1.5.2/openjpeg-1.5.2.tar.gz - - tiff-devel - doxygen - libpng-devel - - - openjpeg-20070717svn-mqc-optimize.patch - - multimedia/graphics/openjpeg/pspec.xml - - - openjpeg - - libpng - tiff - - - /usr/bin - /usr/share/pkgconfig/ - /usr/share/openjpeg-1.5 - /usr/share/man/man1 - /usr/lib - /usr/share/doc - - - - openjpeg-devel - Development files for openjpeg - openjpeg için geliştirme dosyaları - Pliki nagłówkowe do openjpeg - - openjpeg - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - /usr/share/man/man3 - - - - openjpeg-32bit - 32-bit shared libraries for openjpeg - emul32 - - tiff-32bit - libpng-32bit - - - openjpeg - - - /usr/lib32 - - - - - 2020-01-19 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2019-11-05 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.5.2 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.5.2 - Release bump - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2014-05-22 - 1.5.2 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - fbida - https://www.kraxel.org/blog/linux/fbida/ - - fury - uglyside@yandex.ru - - GPLv2 - app - multimedia.graphics - The fbida project contains a few applications for viewing and editing images, with the main focus being photos. - The fbida project contains a few applications for viewing and editing images, with the main focus being photos. - https://www.kraxel.org/releases/fbida/fbida-2.14.tar.gz - - gc-devel - util-linux - mesa-devel - lirc-devel - tiff-devel - webp-devel - cairo-devel - libdrm-devel - libpng-devel - giflib-devel - pixman-devel - libXpm-devel - libpcd-devel - sane-backends - libexif-devel - freetype-devel - libepoxy-devel - openmotif-devel - fontconfig-devel - imagemagick-devel - poppler-glib-devel - libjpeg-turbo-devel - - - gcc10_build_fix.patch - - multimedia/graphics/fbida/pspec.xml - - - fbida - - mesa - tiff - webp - cairo - libXt - giflib - libX11 - libXpm - libdrm - libpcd - libpng - pixman - libXext - libexif - freetype - libepoxy - openmotif - fontconfig - imagemagick - ghostscript - poppler-glib - libjpeg-turbo - - - /usr/bin - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2020-12-06 - 2.14 - First build - fury - uglyside@yandex.ru - - - - - - gegl02 - http://gegl.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - LGPLv3+ - library - app:console - multimedia.graphics - A graph based image processing framework - Graf tabanlı resim işleme altyapısı - gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. - gegl02, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. - http://ftp.gimp.org/pub/gegl/0.2/gegl-0.2.2.tar.bz2 - - libspiro-devel - json-glib-devel - openexr-devel - ffmpeg-devel - libsdl-devel - libv4l-devel - jasper-devel - cairo-devel - pango-devel - exiv2-devel - babl-devel - libjpeg-turbo-devel - gtk2-devel - lua-devel - asciidoc - intltool - ruby - zlib-devel - openexr-libs - librsvg-devel - lcms2-devel - gettext-devel - - - gegl-0.2.0-ffmpeg-4-0-compat.patch - gegl-0.2.0-ffmpeg-av_frame_alloc.patch - gegl-0.2.0-fix-without-exiv2.patch - gegl-0.2.0-libopenraw-0.1.patch - gegl-0.2.0-underlinking.patch - - multimedia/graphics/gegl02/pspec.xml - - - gegl02 - - glib2 - gdk-pixbuf - libspiro - jasper - libpng - libsdl - cairo - pango - babl - zlib - openexr-libs - librsvg - lcms2 - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale/ - - - - gegl02-devel - Development files for gegl02 - gegl02 için geliştirme dosyaları - - gegl02 - glib2-devel - babl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc/html - - - - - 2021-10-27 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-20 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-27 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-29 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 0.2.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.2.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 0.2.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 0.2.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 0.2.0 - fixed file conflict with gegl1.x - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2014-12-20 - 0.2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libgexiv2 - https://wiki.gnome.org/Projects/gexiv2 - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.graphics - GObject-based wrapper around the Exiv2 library - GObject-based wrapper around the Exiv2 library - GObject-based wrapper around the Exiv2 library - GObject-based wrapper around the Exiv2 library - https://download.gnome.org/sources/gexiv2/0.14/gexiv2-0.14.0.tar.xz - - meson - gtk-doc - python-six - glib2-devel - docbook-xsl - libxslt-devel - gobject-introspection-devel - exiv2-devel - vala-devel - python3-pygobject3-devel - - multimedia/graphics/libgexiv2/pspec.xml - - - libgexiv2 - - glib2 - libgcc - exiv2-libs - - - /usr/lib - /usr/share - /usr/share/gtk-doc/html - /usr/share/vala/vapi - - - - libgexiv2-devel - Development files for libgexiv2 - - libgexiv2 - exiv2-devel - glib2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-22 - 0.14.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-18 - 0.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 0.12.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-25 - 0.12.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-18 - 0.11.0 - Version bump. - fury - uglyside@yandex.ru - - - 2018-08-14 - 0.10.8 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-20 - 0.10.6 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - azpainter - http://azsky2.html.xdomain.jp/soft/azpainter.html - - fury - uglyside@yandex.ru - - GPLv3 - app:gui - multimedia.graphics - A full color painting software for illustration drawing. - Full color painting software for Linux for illustration drawing. This is not suitable for dot editing. Since the color is handled with 16 bit color (15 bit fixed point number) internally, the accuracy of color rises, but the memory is consumed correspondingly. - https://gitlab.com/azelpg/azpainter/-/archive/v3.0.5/azpainter-v3.0.5.tar.bz2 - - ninja - tiff-devel - webp-devel - libXi-devel - libX11-devel - libpng-devel - libXext-devel - freetype-devel - libXcursor-devel - fontconfig-devel - libjpeg-turbo-devel - - multimedia/graphics/azpainter/pspec.xml - - - azpainter - - zlib - tiff - webp - libXi - libpng - libX11 - libXext - freetype - libXcursor - fontconfig - libjpeg-turbo - - - /usr/bin - /usr/share - - - - - 2022-04-14 - 3.0.5 - Ver. bump. - fury - uglyside@yandex.ru - - - 2021-12-11 - 3.0.4 - Ver. bump. - fury - uglyside@yandex.ru - - - 2021-07-10 - 3.0.3 - Ver. bump. - fury - uglyside@yandex.ru - - - 2021-07-02 - 3.0.2 - Ver. bump. - fury - uglyside@yandex.ru - - - 2021-05-25 - 3.0.0 - Ver. bump. - fury - uglyside@yandex.ru - - - 2020-12-31 - 2.1.7 - Ver. bump. - fury - uglyside@yandex.ru - - - 2020-04-22 - 2.1.6 - Ver. bump. - fury - uglyside@yandex.ru - - - 2020-01-17 - 2.1.5 - First build. - fury - uglyside@yandex.ru - - - - - - geeqie - http://www.geeqie.org/ - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - multimedia.graphics - Geeqie is a lightweight image viewer for Linux, BSDs and compatibles. - Geeqie can be used as a simple, fast, database-free image viewer, but equally it can be used to manage large collections of images. - https://github.com/BestImageViewer/geeqie/releases/download/v1.7.2/geeqie-1.7.2.tar.xz - - doxygen - intltool - lua-devel - gtk2-devel - tiff-devel - webp-devel - lirc-devel - lcms2-devel - lua51-devel - exiv2-devel - libraw-devel - libheif-devel - gettext-devel - openjpeg2-devel - libarchive-devel - libjpeg-turbo-devel - ffmpegthumbnailer-devel - - - Open_archive_not_working.patch - - multimedia/graphics/geeqie/pspec.xml - - - geeqie - - lua - gtk2 - tiff - webp - lirc - exiv2 - fbida - cairo - glib2 - lcms2 - lua51 - pango - zenity - libgcc - libraw - gphoto2 - libheif - openjpeg2 - exiv2-libs - gdk-pixbuf - libarchive - libjpeg-turbo - ffmpegthumbnailer - perl-Image-ExifTool - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man/man1 - /usr/share/doc - - - - - 2022-02-04 - 1.7.2 - Version bump. - fury - uglyside@yandex.ru - - - 2022-01-18 - 1.7.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-06 - 1.6 - First build. - fury - uglyside@yandex.ru - - - - - - assimp - http://assimp.sourceforge.net/index.html - - Stefan Gronewold - groni@pisilinux.org - - BSD - multimedia.graphics - A JavaScript 3D rendering API for Qt Quick - APIs are provided for C and C++. There are various bindings to other languages (C#, Java, Python, Delphi, D). Assimp also runs on Android and iOS. - https://github.com/assimp/assimp/archive/v5.0.1.tar.gz - - ninja - boost-devel - cmake - glib2-devel - zlib-devel - pkgconfig - minizip-devel - git - - - assimp-3.3.1-install-pkgconfig.patch - - multimedia/graphics/assimp/pspec.xml - - - assimp - Portable Open Source library to import various well-known 3D model formats in an uniform manner - - libgcc - minizip - zlib - - - /usr/bin - /usr/lib - /usr/share/doc - - - - assimp-devel - Development files for assimp - - boost-devel - assimp - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-01-03 - 5.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-05 - 5.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-05 - 4.1.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 4.1.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-01-28 - 4.1.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-21 - 3.3.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - libmng - http://www.libmng.com/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Multiple Image Networkgraphics lib (animated png's) - Çoklu resim Networkgraphics (Animasyonlu png) - Libmng - La librairie de référence pour lire, afficher, écrire et examiner des Multiple-Image Network Graphics (graphiques orientés réseaux composés d'images multiples). MNG est l'extension d'animation pour le format d'image populaire PNG. - Libmng -The reference library for reading, displaying, writing and examining Multiple-Image Network Graphics. MNG is the animation extension to the popular PNG image-format. - Libmng, Çoklu Görüntü Ağ Grafiklerini (MNG) okuma, görüntüleme, yazma ve denemek için başvuru kütüphanesidir. MNG popüler PNG görüntü formatı için animasyon uzantısıdır. - Libmng -librería de referencia para lectura, visualización, escritura y análisis de gráficos tipo Multiple-Image Network. MNG es la extensión de animación al formato popular de imágenes PNG. - http://sourceforge.net/projects/libmng/files/libmng-devel/2.0.3/libmng-2.0.3.tar.xz - - zlib-devel - lcms2-devel - libjpeg-turbo-devel - - multimedia/graphics/libmng/pspec.xml - - - libmng - - zlib - libjpeg-turbo - lcms2 - - - /usr/lib - - - - libmng-devel - - libmng - - - /usr/share/doc - /usr/share/man - /usr/include/ - /usr/lib/pkgconfig - - - - libmng-32bit - 32-bit shared libraries for libmng - emul32 - emul32 - - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - - - zlib-32bit - lcms2-32bit - libjpeg-turbo-32bit - libmng - - - /usr/lib32 - - - - - 2020-01-19 - 2.0.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-29 - 2.0.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-09-20 - 2.0.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 2.0.2 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-05-04 - 2.0.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - tiff - https://libtiff.gitlab.io/libtiff/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - multimedia.graphics - Library for manipulation of TIFF (Tag Image File Format) images - TIFF (Tag Image File Format) türündeki resimleri işlemeye aracılık eden kütüphane - Ce logiciel fournit le support pour le format "Tag Image File Format" (TIFF), un format très employé pour stocker des informations d'image. - This software provides support for the Tag Image File Format (TIFF), a widely used format for storing image data. - Bu kütüphane TIFF (Tag Image File Format) resim biçimi desteği sağlar. Bu biçim resim bilgisi saklamak için pek çok yerde kullanılır. - Este software facilita soporte para el formato de imagen etiqueteado (TIFF), un formato para almacenamiento de imágenes de uso común. - Biblioteka do manipulacji plikami w formacie TIFF. - http://download.osgeo.org/libtiff/tiff-4.4.0.tar.xz - - xz-devel - zlib-devel - zstd-devel - libjpeg-turbo-devel - jbigkit-devel - - multimedia/graphics/tiff/pspec.xml - - - tiff - - xz - zlib - zstd - libjpeg-turbo - jbigkit - - - /usr/bin - /usr/lib - - - - tiff-devel - Developement files for tiff - tiff için geliştirme dosyaları - - tiff - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - tiff-docs - Documentation for tiff - tiff için belgelendirme dosyaları - - tiff - - - /usr/share/doc - /usr/share/man - - - - tiff-32bit - 32-bit shared libraries for tiff - tiff için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - xz-32bit - zlib-32bit - libjpeg-turbo-32bit - - - tiff - libjpeg-turbo-32bit - libgcc - xz-32bit - zlib-32bit - - - /usr/lib32 - - - - - 2022-05-28 - 4.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 4.2.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-15 - 4.1.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-10-26 - 4.0.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-09 - 4.0.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 4.0.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-21 - 4.0.8 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 4.0.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 4.0.3 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-19 - 4.0.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - babl - http://gegl.org/babl - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - multimedia.graphics - A dynamic, any to any, pixel format translation library - Dinamik piksel biçimi dönüştürme kütüphanesi - babl is a library that allows converting between different methods of storing pixels known as pixel formats that have with different bitdepths and other data representations, color models and component permutations. - babl, çeşitli piksel saklama yöntemleri arasında dönüşüme izin veren bir programlama kütüphanesidir. - https://download.gimp.org/pub/babl/0.1/babl-0.1.90.tar.xz - - meson - vala-devel - lcms2-devel - gobject-introspection-devel - - multimedia/graphics/babl/pspec.xml - - - babl - - lcms2 - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/vala - - - - babl-devel - Development files for babl - babl için geliştirme dosyaları - - babl - lcms2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-03-22 - 0.1.90 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-06 - 0.1.88 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-21 - 0.1.80 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 0.1.74 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-29 - 0.1.66 - Rebuild. - Mustafa Cinasal - admin@pisilinux.org - - - 2019-04-24 - 0.1.62 - Rebuild. - Mustafa Cinasal - admin@pisilinux.org - - - 2019-03-24 - 0.1.60 - Rebuild. - Mustafa Cinasal - admin@pisilinux.org - - - 2018-12-25 - 0.1.60 - Version Bump. - Mustafa Cinasal - admin@pisilinux.org - - - 2018-08-05 - 0.1.46 - Version Bump. - Mustafa Cinasal - admin@pisilinux.org - - - 2018-04-27 - 0.1.46 - Version Bump. - Mustafa Cinasal - admin@pisilinux.org - - - 2017-12-21 - 0.1.38 - Version Bump. - Mustafa Cinasal - admin@pisilinux.org - - - 2017-02-05 - 0.1.24 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.1.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-02-07 - 0.1.12 + 2015-05-09 + 5.1.5 First release Hakan Yıldız hknyldz93@gmail.com @@ -315464,108 +263409,205 @@ from a wide variety of machine architectures. - enblend - http://enblend.sourceforge.net/ + lua52 + http://www.lua.org PisiLinux Community admins@pisilinux.org - GPLv2 - app:console - multimedia.graphics - Image blending with multiresolution splines - Resim harmanlama aracı - enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see. - enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar. - mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.5.tar.gz + LGPLv2 + library + programming.language + A light-weight programming language + lua is a powerful light-weight programming language designed for extending applications. + http://www.lua.org/ftp/lua-5.2.4.tar.gz + + lua.pc + - cmake - gsl-devel - zlib-devel - tiff-devel - vigra-devel - boost-devel - lcms2-devel - libpng-devel - openexr-devel - imagemagick-devel - libjpeg-turbo-devel + readline-devel - gentoo_prepare.patch + liblua.so.patch - multimedia/graphics/enblend/pspec.xml + programming/language/lua52/pspec.xml - enblend + lua52 - gsl - tiff - boost - lcms2 - vigra - libgcc + readline - /usr/bin + /usr/lib /usr/share/man - /usr/share/doc - /usr/share/info + /usr/share/doc + /usr/bin + /usr/share/pixmaps + + + lua.png + lua.pc + + + + lua52-devel + Development files for lua52 + + lua52 + + + /usr/include + /usr/lib/pkgconfig - - 2020-10-29 - 4.1.5 + + 2020-01-22 + 5.2.4 Rebuild - Pisi Linux Community - admin@pisilinux.org + PisiLinux Community + admins@pisilinux.org + + + 2018-08-06 + 5.2.4 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2018-03-27 + 5.2.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + ocaml + https://ocaml.org/ + + Serdar Soytetir + kaptan@pisilinux.org + + OPL + app:console + programming.language.ocaml + Fast modern type-inferring functional programming language + Hızlı ve modern bir programlama dili + A fast modern type-inferring functional programming language descended from the ML (Meta Language) family. + OcaML, ML dilinin soyundan gelen fonksiyonel bir programlama dilidir + https://caml.inria.fr/distrib/ocaml-4.11/ocaml-4.11.1.tar.xz + + zlib-devel + ncurses-devel + libX11-devel + chrpath + + + fedora/0001-Don-t-add-rpaths-to-libraries.patch + fedora/0003-configure-Allow-user-defined-C-compiler-flags.patch + fedora/0003-configure-Remove-incorrect-assumption-about-cross-co.patch + fedora/0004-Remove-configure-from-.gitattributes.patch + fedora/0005-Fix-type-mismatches-between-definition-and-declarati.patch + + programming/language/ocaml/ocaml/pspec.xml + + + ocaml + + zlib + ncurses + libX11 + + + /usr/bin/ + /usr/lib/ + /usr/share/doc/ + /usr/share/man/ + + + + ocaml-compiler-libs + ocaml-derleyici kütüphaneleri + + ocaml + + + /usr/lib/ocaml/compiler-libs/*.mli + /usr/lib/ocaml/compiler-libs/*.cmi + /usr/lib/ocaml/compiler-libs/*.cmo + /usr/lib/ocaml/compiler-libs/*.cma + /usr/lib/ocaml/compiler-libs/*.a + /usr/lib/ocaml/compiler-libs/*.cmxa + /usr/lib/ocaml/compiler-libs/*.cmx + /usr/lib/ocaml/compiler-libs/*.o + /usr/lib/ocaml/compiler-libs/*.cmt + /usr/lib/ocaml/compiler-libs/*.cmti + + + + + 2020-11-07 + 4.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-23 + 4.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2020-03-05 - 4.1.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-05-13 + 4.09.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-10-05 - 4.1.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2019-11-25 + 4.09.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-09-01 - 4.1.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2019-11-25 + 4.08.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-03-22 - 4.1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2018-07-29 + 4.07.0 + Version bump, add fedora's patches. + Ertuğrul Erata + ertugrulerata@gmail.com - 2017-03-17 - 4.1.3 - Rebuild for new toolchain. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2017-03-08 + 4.04.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org 2016-06-09 - 4.1.3 + 4.02.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-12-27 - 4.1.3 + 2015-04-04 + 4.02.1 First release Yusuf Aydemir yusuf.aydemir@pisilinux.org @@ -315574,431 +263616,130 @@ from a wide variety of machine architectures. - giflib - https://sourceforge.net/projects/giflib/ + perl-Alien-Build + https://metacpan.org/release/Alien-Build - PisiLinux Community - admins@pisilinux.org + Blue Devil + bluedevil@sctzine.com - MIT + Artistic library - multimedia.graphics - Library to handle, display and manipulate GIF images - GIF türündeki resimleri görüntüleyip işlemeye aracılık eden kitaplık - libungif est une librairies de lecture et d'écriture d'images gif. La fonctionnalité de sauvegarde utilise un algorithme gif non compressé pour éviter le brevet Unisys LZW. giflib est un remplaçant de cette dernière compatible aussi bien au niveau de l'interface de programmation (API) qu'au niveau binaire (ABI) pour les pays où LZW n'est pas breveté. - The giflib package contains a shared library of functions for loading and saving GIF format image files. It is API and ABI compatible with libungif, the library which supported uncompressed GIFs while the Unisys LZW patent was in effect. - libungif, gif dosyalarını okumaya ve yazmaya yarayan bir kütüphanedir. Kaydetme algoritması Unisys LZW patentine takılmamak için sıkıştırma yapmamaktadır. Böylece LZW'nin patentli olmadığı ülkelerde kullanılmak için API ve ABI uyumlu bir alternatif sunar. - mirrors://sourceforge/giflib/giflib-5.2.1.tar.gz - - giflib-5.1.9-fix-missing-quantize-API-symbols.patch - giflib-5.1.9-make-flags.patch - - multimedia/graphics/giflib/pspec.xml + programming.language.perl + A perl module to build external dependencies for use in CPAN + CPAN'da kullanabilmek için harici bağımlılıklar derleyebilen perl modülü + perl-Alien-Build provides tools for building external (non-CPAN) dependencies for CPAN. It is mainly designed to be used at install time of a CPAN client, and work closely with Alien::Base which is used at runtime. + Alien::Build, CPAN'da kullanabilmek için harici bağımlılıklar derleyebilen perl modülüdür. + https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Build-2.33.tar.gz + + perl + perl-path-tiny + perl-File-chdir + perl-File-Which + perl-FFI-CheckLib + + programming/language/perl/perl-Alien-Build/pspec.xml - giflib + perl-Alien-Build + A perl module to build external dependencies for use in CPAN + + perl + perl-path-tiny + perl-File-chdir + perl-File-Which + - /usr/bin /usr/lib /usr/share/doc /usr/share/man - - giflib-devel - - giflib - - - /usr/include - /usr/share/doc/giflib/html - - - - giflib-32bit - 32-bit shared libraries for giflib - - giflib - - - /usr/lib32 - - - - - 2020-01-18 - 5.2.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-30 - 5.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-28 - 5.1.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 5.1.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.0.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 5.0.6 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 5.0.6 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libzimg - https://github.com/sekrit-twc/zimg - - Mathias Freire - mathiasfreire45@gmail.com - - WTFPL - library - multimedia.graphics - Scaling, colorspace conversion, and dithering library - The "z" library implements the commonly required image processing basics of scaling, colorspace conversion, and depth conversion. - https://github.com/sekrit-twc/zimg/archive/refs/tags/release-3.0.3.tar.gz - multimedia/graphics/libzimg/pspec.xml - - - libzimg - - /usr/lib - /usr/share/doc - - - - libzimg-devel - Header files for libzimg. - - libzimg - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-06 - 3.0.3 - Version bump. - fury - uglyside@yandex.ru - - - 2020-01-14 - 2.9.2 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - libopenraw - https://libopenraw.freedesktop.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv3+ - library - multimedia.graphics - A library for camera RAW files decoding. - RAW (Ham) fotoğraf dosyası işleme kütüphanesi - libopenraw is an ongoing project to provide a free software implementation for camera RAW files decoding. One of the main reason is that dcraw is not suited for easy integration into applications, and there is a need for an easy to use API to build free software digital image processing application. - libopenraw, fotoğraf makineleri tarafından sunulan ham görüntü dosyalarını (RAW) işlemek için kullanılabilecek bir kütüphanedir. - https://libopenraw.freedesktop.org/download/libopenraw-0.3.0.tar.xz - - rust - curl-devel - boost-devel - libxml2-devel - gdk-pixbuf-devel - libjpeg-turbo-devel - - multimedia/graphics/libopenraw/pspec.xml - - - libopenraw - - glib2 - libgcc - gdk-pixbuf - libjpeg-turbo - - - /usr/lib - /usr/share/doc - - - - libopenraw-devel - libopenraw için geliştirme dosyaları - - libopenraw - - - /usr/include - /usr/lib/pkgconfig - - - 2021-12-14 - 0.3.0 - Version bump. - fury - uglyside@yandex.ru + 2020-10-01 + 2.33 + Minor version bump + Blue Devil + bluedevil@sctzine.com - 2020-12-24 - 0.1.3 - Ver. bump. - fury - uglyside@yandex.ru + 2020-07-20 + 2.29 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2014-05-24 - 0.0.9 - Rebuild. - Alihan Öztürk - alihan@pisilinux.org + 2020-05-18 + 2.23 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2014-02-01 - 0.0.9 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org + 2020-04-22 + 2.21 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2012-08-29 - 0.0.9 + 2020-04-10 + 2.19 First release - Osman Erkan - osman.erkan@pisilinux.org + Blue Devil + bluedevil@sctzine.com - imagemagick6 - https://legacy.imagemagick.org/ - - Pisilinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - A collection of tools and libraries for many image file formats. - Resimleri işlemek ve göstermek için bir X uygulaması - Narzędzie do wyświetlania, konwersji i manipulacji grafikami - ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. - https://imagemagick.org/download/releases/ImageMagick-6.9.12-27.tar.xz - - intltool - zstd-devel - tiff-devel - webp-devel - cairo-devel - pango-devel - fftw3-devel - lcms2-devel - libpng-devel - libraw-devel - libwmf-devel - jbigkit-devel - libheif-devel - liblqr-devel - jasper-devel - libgxps-devel - librsvg-devel - openexr-devel - libXext-devel - openjpeg2-devel - fontconfig-devel - ghostscript-devel - libjpeg-turbo-devel - - multimedia/graphics/imagemagick6/pspec.xml - - - imagemagick6 - - tiff - webp - cairo - pango - fftw3 - lcms2 - liblqr - libpng - libraw - libwmf - jbigkit - libheif - libgxps - librsvg - libXext - libgomp - freetype - openjpeg2 - fontconfig - ghostscript - openexr-libs - libjpeg-turbo - - - /etc/ImageMagick-6/ - /usr/lib/libMagick* - /usr/share/ImageMagick-* - /usr/lib/ImageMagick-6* - /usr/share/doc/imagemagick6/LICENSE - /usr/share/doc/imagemagick6/README.txt - - - - imagemagick6-docs - HTML documentation for imagemagick6 - Imagemagick6 için API belgeleri - imagemagick6-docs, imagemagick6 için belgelendirme dosyalarını içerir. - data:doc - - /usr/share/doc/imagemagick6/html - - - - imagemagick6-devel - Development files for imagemagick6 - imagemagick6 için geliştirme dosyaları - Pliki nagłówkowe imagemagick6 - imagemagick6-devel, imagemagick6 için geliştirme dosyalarını içerir. - - imagemagick6 - - - /usr/include - /usr/lib/imagemagick6/pkgconfig - - - - - 2022-01-19 - 6.9.12.27 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-28 - 6.9.12.27 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 6.9.11.62 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-20 - 6.9.11.29 - ver6 rebuild. - fury - uglyside@yandex.ru - - - - - - libimagequant - https://pngquant.org/lib/ + perl-Alien-Libxml2 + https://metacpan.org/release/Alien-Libxml2 Blue Devil bluedevil@sctzine.com - BSD + Artistic library - multimedia.graphics - Palette quantization library that powers pngquant and other PNG optimizers - pngquant ve diger PNG en-iyilestiricilerini giclendiren, palet nicelendirme kitapligidir - Small, portable C library for high-quality conversion of RGBA images to 8-bit indexed-color (palette) images. - RGBA gorsellerin 8-bit indislenmis-renk gorsellerine donusumu icin kucuk moduler bi c kitapligidir.. - https://github.com/ImageOptim/libimagequant/archive/2.12.6.tar.gz + programming.language.perl + Installs the C libxml2 library on your system. + Diğer modüllerin libxml2 kullanabilmesi için Perl bağlayıcıları. + This module provides libxml2 for other modules to use. + perl-Alien-Libxml2, diğer modüllerın lıbxml2 modülünü kullanabilmesi için gerekli modülleri sağlar. + https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Alien-Libxml2-0.16.tar.gz - libgcc + perl-Alien-Build + libxml2-devel + perl - - libimagequant_solibperm.patch - - multimedia/graphics/libimagequant/pspec.xml + programming/language/perl/perl-Alien-Libxml2/pspec.xml - libimagequant + perl-Alien-Libxml2 + Installs the C libxml2 library on your system. - libgomp + perl-Alien-Build + libxml2 + perl /usr/lib /usr/share/doc - - - - libimagequant-devel - Development files for libimagequant - libimagequant için geliştirme dosyaları - libimagequant-devel, libimagequant için geliştirme dosyaları içerir. - - libimagequant - - - /usr/include - /usr/lib/pkgconfig + /usr/share/man + + 2020-04-22 + 0.16 + Minor version bump + Blue Devil + bluedevil@sctzine.com + - 2020-01-15 - 2.12.6 + 2020-04-10 + 0.15 First Pisi Release Blue Devil bluedevil@sctzine.com @@ -316007,1290 +263748,236 @@ from a wide variety of machine architectures. - openjpeg2 - https://github.com/uclouvain/openjpeg + perl-AnyEvent + https://metacpan.org/release/AnyEvent - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - BSD + unknown library - app:console - multimedia.graphics - JPEG2000 decoding library - JPEG2000 çözme kütüphanesi - Biblioteka implementująca kodek formatu JPEG 2000 - openjpeg is an open-source JPEG 2000 codec written in C. It has been developed in order to promote the use of JPEG 2000, the new still-image compression standard from the Joint Photographic Experts Group (JPEG). - https://github.com/uclouvain/openjpeg/archive/v2.4.0.tar.gz + programming.language.perl + AnyEvent - provide framework for multiple event loops + Çoklu olay döngüleri için çatı sağlayan bir Perl modülü + AnyEvent provides an identical interface to multiple event loops. This allows module authors to utilise an event loop without forcing module users to use the same event loop (as only a single event loop can coexist peacefully at any one time). + AnyEvent, çoklu olay döngülerine (multiple event loop) özdeş arayüz sağlamaktadır. Modülü kullananların aynı anda tek olay döngüsü çalışıyormuş gibi aynı olay döngüsünü kullanmalarına zorlamadan, bir olay döngüsü kullanılmasına olanak sağlayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/AnyEvent-7.17.tar.gz - cmake - doxygen - lcms2-devel - tiff-devel - zlib-devel - libpng-devel - - multimedia/graphics/openjpeg2/pspec.xml - - - openjpeg2 - - lcms2 - tiff - libpng - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man1 - /usr/share/man3 - /usr/share/doc - - - - openjpeg2-devel - Development files for openjpeg2 - openjpeg2 için geliştirme dosyaları - Pliki nagłówkowe do openjpeg2 - - openjpeg2 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/openjpeg-2.3 - /usr/lib32/openjpeg-2.3 - - - - openjpeg2-32bit - 32-bit shared libraries for openjpeg2 - emul32 - emul32 - - zlib-32bit - lcms2-32bit - tiff-32bit - libpng-32bit - - - lcms2-32bit - tiff-32bit - libpng-32bit - - - /usr/lib32 - /usr/bin/*_32 - - - - - 2021-06-03 - 2.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 2.3.1 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2019-11-05 - 2.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-23 - 2.3.0 - First release. - PisiLinux Community - admins@pisilinux.org - - - 2018-08-03 - 2.3.0 - First release. - PisiLinux Community - admins@pisilinux.org - - - 2018-03-30 - 2.3.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libart_lgpl - http://www.levien.com/libart - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.graphics - A LGPL version of libart - libart'ın bir LGPL sürümü - Libart est une librairie pour graphiques 2D à hautes performances. Elle est actuellement utilisé comme moteur de rendu anti-aliassé pour le Canvas Gnome. Libart fournit le support pour un modèle image très puissant, simplement le même que SVG et l'API (Interface de Programmation d'Application) Java 2D. - Libart is a library for high-performance 2D graphics. It is currently being used as the antialiased rendering engine for the Gnome Canvas. Libart supports a very powerful imaging model, basically the same as SVG and the Java 2D API. - Libart, yüksek performanslı iki boyutlu grafikler için bir kütüphanedir. Halihazırda Gnome Canvas için kenarların yumuşatıldığı dönüştürme aracı olarak kullanılmaktadır. Libart, temelde Java 2D API ve SVG benzeri, çok güçlü bir görüntüleme modelini destekler. -  Libart es una librería para gráficos 2D de alta performance. Actualmente está usado como antialiased rendering engine para Gnome Canvas. Libart soporta un modelo de imagen muy potente, básicamente el mismo como SVG y el API 2D de Java. - http://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/libart_lgpl-2.3.21.tar.bz2 - - noartconfig.patch - libart_lgpl-2.3.21-crosscompile.patch - libart_lgpl-2.3.21-no-test-build.patch - - multimedia/graphics/libart_lgpl/pspec.xml - - - libart_lgpl - - /usr/lib - /usr/share/doc - - - - libart_lgpl-devel - Development files for libart_lgpl - libart_lgpl için geliştirme dosyaları - - libart_lgpl - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 2.3.21 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-05 - 2.3.21 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 2.3.21 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.3.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 2.3.21 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - imagemagick - http://www.imagemagick.org/ - - PisiLinux Community - admins@pisilinux.org - - as-is - app:gui - multimedia.graphics - A collection of tools and libraries for many image file formats - Resimleri işlemek ve göstermek için bir X uygulaması - Narzędzie do wyświetlania, konwersji i manipulacji grafikami - ImageMagick is a software suite to create, edit, and compose bitmap images. It can read, convert and write images in a variety of formats (over 100) including DPX, EXR, GIF, JPEG, JPEG-2000, PDF, PhotoCD, PNG, Postscript, SVG, and TIFF. You can use ImageMagick to translate, flip, mirror, rotate, scale, shear and transform images, adjust image colors, apply various special effects, or draw text, lines, polygons, ellipses and Bézier curves. - https://www.imagemagick.org/download/releases/ImageMagick-7.0.10-62.tar.xz - - xz-devel - djvu-devel - webp-devel - tiff-devel - lcms2-devel - fftw3-devel - cairo-devel - pango-devel - libraw-devel - libpng-devel - jasper-devel - liblqr-devel - libwmf-devel - libheif-devel - libXext-devel - openexr-devel - librsvg-devel - libxml2-devel - openjpeg2-devel - fontconfig-devel - ghostscript-devel - libjpeg-turbo-devel - - multimedia/graphics/imagemagick/pspec.xml - - - imagemagick - A collection of tools and libraries for many image file formats - - xz perl - tiff - djvu - webp - zlib - bzip2 - cairo - pango - glib2 - fftw3 - lcms2 - libraw - libX11 - libgcc - liblqr - libpng - libwmf - librsvg - libheif - libXext - libxml2 - libgomp - freetype - openjpeg2 - fontconfig - ghostscript - libtool-ltdl - openexr-libs - libjpeg-turbo + perl-Event + + programming/language/perl/perl-AnyEvent/pspec.xml + + + perl-AnyEvent + + perl + perl-Event - /usr/bin - /etc/ImageMagick-7/ /usr/lib - /usr/share/ImageMagick-* /usr/share/man /usr/share/doc - - imagemagick-docs - HTML documentation for imagemagick - Imagemagick için API belgeleri - imagemagick-docs, imagemagick için belgelendirme dosyalarını içerir. - data:doc - - imagemagick - - - /usr/share/doc/imagemagick/html - - - - imagemagick-devel - Development files for imagemagick - imagemagick için geliştirme dosyaları - Pliki nagłówkowe imagemagick - imagemagick-devel, imagemagick için geliştirme dosyalarını içerir. - - imagemagick - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - /usr/bin/*-config - /usr/share/man/man1/*-config* - - - - 2022-01-17 - 7.0.10.62 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-22 - 7.0.10.62 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-20 - 7.0.10.29 - Minor version bump. + + 2020-01-02 + 7.17 + Version bump Blue Devil bluedevil@sctzine.com - - 2020-03-06 - 7.0.9.27 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2019-06-24 - 7.0.8.50 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2019-01-15 - 7.0.8.23 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-08-06 - 7.0.7.39 - Version Bump. - PisiLinux Community - admins@pisilinux.org - - - 2018-03-20 - 7.0.7.27 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2017-05-28 - 7.0.5.8 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2017-03-05 - 7.0.4.9 - Rebuild. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-02-15 - 7.0.4.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-06 - 7.0.3.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-10 - 6.9.4.8 - Version Bump + + 2019-06-21 + 7.15 + First release Kamil Atlı suvari@pisilinux.org - - 2016-03-22 - 6.9.3.7 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - lcms2 - http://www.littlecms.com + perl-AnyEvent-I3 + https://metacpan.org/release/AnyEvent-I3 - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - MIT - app:console + GPL library - multimedia.graphics - A color management library. - Little cms is a color management library. Implements fast transforms between ICC profiles. It is focused on speed, and is portable across several platforms. - https://sourceforge.net/projects/lcms/files/lcms/2.12/lcms2-2.12.tar.gz + programming.language.perl + This module connects to the i3 window manager using the UNIX socket based IPC interface it provides. + Bu modül, sağladığı UNIX soket tabanlı IPC arabirimini kullanarak i3 pencere yöneticisine bağlanır. + This module connects to the i3 window manager using the UNIX socket based IPC interface it provides (if enabled in the configuration file). You can then subscribe to events or send messages and receive their replies. + Bu modül, sağladığı UNIX soket tabanlı IPC arabirimini kullanarak (yapılandırma dosyasında etkinse) i3 pencere yöneticisine bağlanır. Daha sonra etkinliklere abone olabilir veya mesaj gönderebilir ve cevaplarını alabilirsiniz. + https://cpan.metacpan.org/authors/id/M/MS/MSTPLBG/AnyEvent-I3-0.17.tar.gz - libjpeg-turbo-devel - tiff-devel + perl + perl-Event + perl-JSON-XS + perl-AnyEvent - multimedia/graphics/lcms2/pspec.xml + programming/language/perl/perl-AnyEvent-I3/pspec.xml - lcms2 + perl-AnyEvent-I3 + This module connects to the i3 window manager using the UNIX socket based IPC interface it provides. - libjpeg-turbo - tiff + perl + perl-JSON-XS + perl-AnyEvent - /usr/bin /usr/lib - /usr/share/lcms/ /usr/share/man /usr/share/doc - - lcms2-devel - Development files for lcms2 - - lcms2 - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - lcms2-32bit - 32-bit shared libraries for lcms2 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - - - lcms2 - - - /usr/lib32 - - - - 2021-03-10 - 2.12 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 2.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-29 - 2.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-21 - 2.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 2.8 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-05-27 - 2.6 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2020-01-02 + 0.17 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com - 2016-05-01 - 2.6 - First release - Stefan Gronewold(groni) - groni@pisilinux.org + 2019-06-21 + 0.17 + First release. + Kamil Atlı + suvari@pisilinux.org - OpenSceneGraph - http://www.openscenegraph.org - - PisiLinux Community - admins@pisilinux.org - - OSGPLv0.0 - wxWinLL-3 - LGPLv2 - app:gui - library - multimedia.graphics - A C++ scene graph API on OpenGL for real time graphics - OpenGL üzerinde gerçek zamanlı grafikler oluşturmak için C++ manzara grafik API'si - The Open Scene Graph is a cross-platform C++/OpenGL library for the real-time visualization. Uses range from visual simulation, scientific modeling, virtual reality through to games. - Open Scene Graph, gerçek zamanlı görüntüleme için C++/OpenGL kiatplığıdır. Görsel simülasyon, bilimsel modelleme ve sanal gerçeklikten oyunlara kadar geniş bir alanda kullanılır. - https://github.com/openscenegraph/OpenSceneGraph/archive/OpenSceneGraph-3.6.5.zip - - xine-lib-devel - jasper-devel - librsvg-devel - curl-devel - giflib-devel - libvncserver-devel - cmake - - - 0003-Activate-osgviewerWX.patch - - multimedia/graphics/OpenSceneGraph/pspec.xml - - - OpenSceneGraph - - curl - zlib - libgcc - libX11 - libgcc - libpng - freetype - giflib - jasper - cairo - librsvg - xine-lib - libvncserver - libjpeg-turbo - mesa - - - /usr/bin - /usr/lib - /usr/share/doc - - - - OpenSceneGraph-devel - development files for OpenSceneGraph - OpenSceneGraph için geliştirme dosyaları - - OpenSceneGraph - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-06-22 - 3.6.5 - New Release - PisiLinux Community - admins@pisilinux.org - - - - - - libjpeg-turbo - http://www.libjpeg-turbo.org/ + perl-AppConfig + https://metacpan.org/pod/AppConfig PisiLinux Community admins@pisilinux.org GPLv3 - app:gui - multimedia.graphics - MMX, SSE, and SSE2 SIMD accelerated JPEG library - libjpeg-turbo is a derivative of libjpeg for x86 and x86-64 processors which -uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression and decompression. libjpeg-turbo is generally 2-4x as fast as the unmodified version of libjpeg v6b, all else being equal. - https://github.com/libjpeg-turbo/libjpeg-turbo/archive/2.1.2.tar.gz - - cmake - - multimedia/graphics/libjpeg-turbo/pspec.xml - - - libjpeg-turbo - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - jpeg - - - - libjpeg-turbo-devel - Development files for libjpeg-turbo - libjpeg-turbo için geliştirme dosyaları - - libjpeg-turbo - - - /usr/include/ - /usr/lib/pkgconfig - - - jpeg-devel - - - - libjpeg-turbo-32bit - 32-bit shared libraries for jpeg - emul32 - emul32 - - libjpeg-turbo - - - /usr/lib32 - - - jpeg-32bit - - - - - 2021-11-19 - 2.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 2.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-26 - 2.0.6 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2020-01-05 - 2.0.4 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2020-01-05 - 2.0.2 - Rebuild. - Idris Kalp - idriskalp@gmail.com - - - 2019-06-19 - 2.0.2 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-01-05 - 2.0.1 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-25 - 1.5.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-20 - 1.5.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-09-20 - 1.5.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.4.2 - Release bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-04-08 - 1.4.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - openimageio - https://sites.google.com/site/openimageio/home - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ library - multimedia.graphics - Library for reading and writing images - Görüntüleri okuma ve yazma için bir kütüphane - OpenImageIO is a library for reading and writing images, and a bunch of related classes, utilities, and applications. - https://github.com/OpenImageIO/oiio/archive/Release-2.2.18.0.tar.gz + programming.language.perl + Perl/CPAN AppConfig module - Read configuration files and parse command line arguments + Perl/CPAN AppConfig modülü + Perl/CPAN AppConfig module - Read configuration files and parse command line arguments + Perl/CPAN AppConfig modülü - Komut satırı argümanlarını ve ayar dosyalarını okuyabilen ve çözümleyebilen bir perl betiğidir. + https://www.cpan.org/authors/id/N/NE/NEILB/AppConfig-1.71.tar.gz - git - cmake - pybind11 - boost-devel - boost-python3 - openssl-devel - pugixml-devel - openexr-devel - imath-devel - glew-devel - python3-devel - txt2man - libpng-devel - tiff-devel - webp-devel - ffmpeg-devel - opencv-devel - freetype-devel - giflib-devel - zlib-devel - jasper-devel - libraw-devel - hdf5-devel - qt5-base-devel - intel-tbb-devel - openjpeg2-devel - opencolorio-devel - libjpeg-turbo-devel + perl - multimedia/graphics/openimageio/pspec.xml + programming/language/perl/perl-AppConfig/pspec.xml - openimageio + perl-AppConfig - tiff - webp - boost - opencv - pugixml - openssl - giflib - pybind11 - imath - openjpeg2 - openexr-libs - libjpeg-turbo - libraw - zlib - ffmpeg - libpng - python3 - freetype - libgcc - libglvnd - qt5-base + perl /usr/lib - /usr/bin - /usr/share - - - - openimageio-devel - Development files for openimageio - openimageio için geliştirme başlıkları - - openimageio - tiff-devel - webp-devel - boost-devel - opencv-devel - giflib-devel - pugixml-devel - imath-devel - openjpeg2-devel - openexr-devel - libjpeg-turbo-devel - libraw-devel - zlib-devel - ffmpeg-devel - libpng-devel - python3-devel - freetype-devel - - - /usr/include - - - - - 2022-01-18 - 2.2.18.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-20 - 2.2.18.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 2.2.18.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-30 - 2.2.15.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-12 - 2.2.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 2.2.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-18 - 2.0.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-05 - 1.8.17 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.8.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-11 - 1.8.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-26 - 1.8.9 - Rebuild ffmpeg - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-23 - 1.7.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-13 - 1.7.12 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-17 - 1.7.12 - Version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-20 - 1.6.14 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - 2016-06-15 - 1.5.20 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-08 - 1.5.20 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - geh - https://github.com/software-revive/geh-rv - - fury - uglyside@yandex.ru - - MIT - app:gui - multimedia.graphics - A simple command line image viewer. - Geh is a simple command line image viewer written in C/Gtk+ with various nice features. - https://github.com/software-revive/geh-rv/releases/download/0.4.0/geh-0.4.0.tar.gz - - libXt - libICE - gtk3-devel - gnome-common - - multimedia/graphics/geh/pspec.xml - - - geh - - gtk3 - pango - gdk-pixbuf - - - /usr/bin - /usr/share/doc - - - - - 2020-12-18 - 0.4.0 - First build. - fury - uglyside@yandex.ru - - - - - - gegl - http://gegl.org - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - LGPLv3+ - library - app:console - multimedia.graphics - A graph based image processing framework - Graf tabanlı resim işleme altyapısı - gegl (Generic Graphics Library) provides infrastructure to do demand based cached non destructive image editing on larger than RAM buffers. Through babl it provides support for a wide range of color models and pixel storage formats for input and output. - gegl, orijinal kopyaya zarar vermeden (non-destructive) isteğe bağlı (demand based) resim işleme altyapısı sunan bir kütüphanedir. - https://download.gimp.org/pub/gegl/0.4/gegl-0.4.36.tar.xz - - ruby - meson - asciidoc - intltool - enscript - rubygems - lua-devel - vala-devel - gtk2-devel - webp-devel - tiff-devel - cairo-devel - pango-devel - exiv2-devel - lcms2-devel - ffmpeg-devel - libsdl2-devel - libv4l-devel - jasper-devel - luajit-devel - libraw-devel - librsvg-devel - openexr-devel - lensfun-devel - libspiro-devel - json-glib-devel - libgexiv2-devel - poppler-glib-devel - libjpeg-turbo-devel - gobject-introspection-devel - babl-devel - - multimedia/graphics/gegl/pspec.xml - - - gegl - A graph based image processing framework - - tiff - webp - babl - glib2 - lcms2 - cairo - pango - ffmpeg - libraw - libgcc - jasper - libpng - libsdl2 - librsvg - libspiro - json-glib - libgexiv2 - gdk-pixbuf - openexr-libs - libjpeg-turbo - - /usr/share - /usr/lib + /usr/share/man /usr/share/doc - /usr/bin - /usr/share/locale/ - - - - gegl-devel - Development files for gegl - gegl için geliştirme dosyaları - gegl-devel, gegl için geliştirme dosyalarını içerir. - - babl-devel - glib2-devel - json-glib-devel - gegl - - - /usr/include - /usr/lib/pkgconfig - /usr/share/gtk-doc/html - - 2022-03-22 - 0.4.36 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-17 - 0.4.32 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-06 - 0.4.32 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-21 - 0.4.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-19 - 0.4.22 - Patch version bump. + + 2020-01-07 + 1.71 + Rebuild for new toolchain. Blue Devil bluedevil@sctzine.com - - 2020-02-12 - 0.4.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 0.4.16 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-27 - 0.4.16 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-29 - 0.4.16 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-25 - 0.4.14 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-25 - 0.4.12 - Rebuild Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.3.34 - Rebuild Bump - Mustafa Cinasal - muscnsl@gmail.com + + 2018-11-16 + 1.71 + First release + PisiLinux Community + admins@pisilinux.org + + + + + perl-Archive-Zip + https://metacpan.org/release/Archive-Zip + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + app:console + library + programming.language.perl + Perl interface to ZIP archive files + ZIP arşivlerine erişim için Perl modülü + The Archive::Zip module allows a Perl program to create, manipulate, read, and write Zip archive files. This module uses the Compress::Zlib library to read and write the compressed streams inside the files. + Bu modül, Perl programlarının Zip arşiv dosyalarını oluşturmasını, düzenlemesini ve okumasını sağlar. Dosyaların içindeki akımları okumak ve yazmak için Compress:Zlib kütüphanesini kullanır. + El módulo Archive::Zip permite a programas Perl la creación, manipulación, lectura y escritura de archivos comprimidos ZIP. Este módulo utiliza la librería Compress::Zlib para leer y escribir los flujos (streams) comprimidos dentro de los archivos. + https://cpan.metacpan.org/authors/id/P/PH/PHRED/Archive-Zip-1.68.tar.gz + + perl-Test-MockModule + perl + + programming/language/perl/perl-Archive-Zip/pspec.xml + + + perl-Archive-Zip + Perl interface to ZIP archive files + + perl + + + /usr/lib/perl5 + /usr/bin + /usr/share/doc + /usr/share/man + + + - 2018-04-27 - 0.3.34 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com + 2020-03-27 + 1.68 + Minor version bump + Blue Devil + bluedevil@sctzine.com - 2018-02-13 - 0.3.26 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-02 + 1.67 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2017-12-21 - 0.3.26 - update - Mustafa Cinasal + 2018-07-26 + 1.60 + Version Bump + Pisi Linux Community admin@pisilinux.org - 2017-03-05 - 0.3.14 - update + 2017-01-24 + 1.59 + Version Bump Pisi Linux Community admin@pisilinux.org - 2016-06-15 - 0.2.0 + 2016-06-09 + 1.49 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-12-20 - 0.2.0 + 2015-08-15 + 1.49 First release Osman Erkan osman.erkan@pisilinux.org @@ -317299,836 +263986,74 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - dia - https://live.gnome.org/Dia + perl-Authen-SASL + https://metacpan.org/pod/Authen::SASL - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - GPLv3 - app:gui - multimedia.graphics - Diagram editor - Diyagram editörü. - Dia is a GTK+ based diagram creation program for GNU/Linux, - Dia, GTK tabanlı diyagram çizme ve düzenleme programıdır. - dia - http://ftp.gnome.org/pub/gnome/sources/dia/0.97/dia-0.97.3.tar.xz - - intltool - qt5-base-devel - cairo-devel - python-devel - zlib-devel - freetype-devel - gdk-pixbuf-devel - gtk2-devel - glib2-devel - pango-devel - libxml2-devel - libpng-devel - libart_lgpl-devel - atk-devel - docbook-xsl - perl-XML-Parser - libxslt-devel - fontconfig-devel - - multimedia/graphics/dia/pspec.xml - - - dia - - python - zlib - freetype - cairo - gdk-pixbuf - gtk2 - pango - libxml2 - libpng - libart_lgpl - atk - libxslt - fontconfig - glib2 - - - /usr/bin - /usr/lib/dia - /usr/share/applications - /usr/share/icons - /usr/share/oaf - /usr/share/dia - /usr/share/mime-info - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - - 2020-03-05 - 0.97.3 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-08-05 - 0.97.3 - Rebuild with new toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2017-04-15 - 0.97.3 - Rebuild with new toolchain - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-07 - 0.97.3 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - jasper - http://www.ece.uvic.ca/~mdadams/jasper - - PisiLinux Community - admins@pisilinux.org - - MIT - app:console + Artistic library - multimedia.graphics - Software implementation of JPEG-2000 Part 1 - JasPer JPEG-2000 Part-1 codec standardı üzerinde konumlandırılmış bir yazılım - JasPer is a software-based implementation of the codec specified in the JPEG-2000 Part-1 standard (ISO/IEC 15444-1:2000). - https://github.com/jasper-software/jasper/releases/download/version-2.0.33/jasper-2.0.33.tar.gz + programming.language.perl + A Perl SASL interface + Perl için SASL modülü + SASL is a generic mechanism for authentication used by several network protocols. Authen::SASL provides an implementation framework that all protocols should be able to share. The framework allows different implementations of the connection class to be plugged in. + SASL, ağ protokolleri tarafından kullanılan genel bir kimlik doğrulama tekniğidir. Authen::SASL, bütün protokollerin paylaşabileceği bir yapı sağlar. Bu yapı, kullanılacak bağlantı sınıfının farklı şekillerde uygulamalarına izin verir. + SASL es un mecanismo genérico de autenticación usado en varios protocolos de red. Authen::SASL facilita un capa de implementación, que todos los protocolos deberían poder compartir. El framework permite adjuntar implementaciones diferentes de la clase de conexión. + http://search.cpan.org/CPAN/authors/id/G/GB/GBARR/Authen-SASL-2.16.tar.gz - cmake - libjpeg-turbo-devel + perl + perl-GSSAPI + perl-Digest-HMAC - - jasper-1.900.1-fix-filename-buffer-overflow.patch - fix-opengl-linking.patch - - multimedia/graphics/jasper/pspec.xml + programming/language/perl/perl-Authen-SASL/pspec.xml - jasper + perl-Authen-SASL + A Perl SASL interface - libjpeg-turbo + perl + perl-GSSAPI + perl-Digest-HMAC - /usr/bin /usr/lib + /usr/share/doc/perl-Authen-SASL /usr/share/man - - jasper-docs - - jasper - - - /usr/share/doc - - - - jasper-devel - Development files for jasper - jasper için geliştirme dosyaları - - jasper - - - /usr/include - /usr/lib/pkgconfig/jasper.pc - - - - jasper-32bit - 32-bit shared libraries for jasper - jasper için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libjpeg-turbo-32bit - - - jasper - libjpeg-turbo-32bit - - - /usr/lib32 - - - - 2022-05-14 - 2.0.33 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 2.0.14 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-02-06 - 2.0.14 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-27 - 2.0.14 + + 2020-01-02 + 2.16 Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-21 - 2.0.14 - Version Bump. - Pisi Linux Community - admin@pisilinux.org + Blue Devil + bluedevil@sctzine.com - 2017-02-06 - 2.0.10 - Version Bump + 2018-09-08 + 2.16 + Rebuild for new toolchain Pisi Linux Community admin@pisilinux.org - 2016-06-09 - 1.900.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-27 - 1.900.1 - Release bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-06-26 - 1.900.1 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - ffmpegthumbnailer - https://github.com/dirkvdb/ffmpegthumbnailer - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - multimedia.graphics - Lightweight video thumbnailer that can be used by file managers to create thumbnails for video files. - Dosya yöneticileri için hafif görüntü önizleyicisi - FFmpegthumbnailer is a lightweight video thumbnailer that can be used by file managers to create thumbnails for your video files. The thumbnailer uses ffmpeg to decode frames from the video files, so supported videoformats depend on the configuration flags of ffmpeg. - Ffmpeg Thumbnailer, görüntü dosyalarınız için dosya yöneticilerinizde önizlemeler oluşturmaya yarar. - https://github.com/dirkvdb/ffmpegthumbnailer/releases/download/2.2.2/ffmpegthumbnailer-2.2.2.tar.bz2 - - libjpeg-turbo-devel - ffmpeg-devel - libpng-devel - zlib-devel - cmake - - multimedia/graphics/ffmpegthumbnailer/pspec.xml - - - ffmpegthumbnailer - - libjpeg-turbo - ffmpeg - libgcc - libpng - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - ffmpegthumbnailer-devel - Development files for ffmpegthumbnailer - Ffmpegthumbnailer için geliştirme dosyaları - - ffmpegthumbnailer - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-06 - 2.2.2 - First Beta release. - fury - uglyside@yandex.ru - - - - - - libmypaint - https://github.com/mypaint/libmypaint - - PisiLinux Community - admins@pisilinux.org - - ISC - library - multimedia.graphics - a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support - a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support - a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support - a library for making brushstrokes which is used by MyPaint and other projects, with GEGL support - https://github.com/mypaint/libmypaint/releases/download/v1.5.0/libmypaint-1.5.0.tar.xz - - python3 - intltool - json-c-devel - gobject-introspection-devel - - multimedia/graphics/libmypaint/pspec.xml - - - libmypaint - - glib2 - json-c - - - /usr/lib - /usr/share - /usr/share/locale - - - - libmypaint-devel - Development files for libmypaint - - libmypaint - glib2-devel - json-c-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-11-07 - 1.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-12 - 1.5.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 1.3.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-20 - 1.3.0 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - optipng - http://optipng.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - zlib - app:console - multimedia.graphics - PNG Optimizer - PNG İyileştirici - OptiPNG is a PNG optimizer that recompresses image files to a smaller size, without losing any information. This program also converts external formats (BMP, GIF, PNM and TIFF) to optimized PNG, and performs PNG integrity checks and corrections. - OptiPNG, herhangi bir veri kaybı olmadan resim dosyalarını tekrar sıkıştıran bir PNG iyileştiricisidir. Bu program aynı zamanda, diğer biçimleri (BMP, GIF, PNM, TIFF) iyileştirilmiş PNG biçimine çevirebilir ve PNG bütünlük kontrolü ve düzeltmeleri yapabilir. - mirrors://sourceforge/optipng/optipng-0.7.7.tar.gz - - zlib-devel - libpng-devel - - multimedia/graphics/optipng/pspec.xml - - - optipng - - zlib - libpng - - - /usr/bin - /usr/share/doc - /usr/share/man - - - - - 2021-10-14 - 0.7.7 - First build - fury - uglyside@yandex.ru - - - - - - librecad - http://librecad.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.graphics - A 2D CAD drawing tool based QCad - Bilgisayar destekli tasarım programı - LibreCAD is an application for computer aided design (CAD) in two dimensions (2D). With LibreCAD you can create technical drawings such as plans for buildings, interiors, mechanical parts or schemas and diagrams - LibreCAD ile bina, iç mekan, mekanik parça gibi teknik çizimler oluşturabilirsiniz. - librecad - https://github.com/LibreCAD/LibreCAD/archive/2.1.3.tar.gz - - qt5-base-devel - qt5-svg-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - qt5-qdbusviewer - freetype-devel - icu4c-devel - librsvg-devel - muparser-devel - imagemagick-devel - libxml2-devel - boost-devel - - - 0001-fix-build-with-Qt-5.11.patch - 0002-fix-build-with-Qt-5.15.patch - librecad-2.1.3-gcc-9.patch - - multimedia/graphics/librecad/pspec.xml - - - librecad - - qt5-base - muparser - qt5-svg - qt5-assistant - libgcc - - - /usr/bin - /usr/include - /usr/share - /usr/share/man - /usr/share/doc - - - librecad.desktop - librecad.png - - - - - 2020-03-06 - 2.1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-01 - 2.1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 2.1.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-06-08 - 2.1.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 2.0.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-07 - 2.0.9 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - lcms - http://www.littlecms.com/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.graphics - Moteur de gestion de couleurs léger et optimisé pour la vitesse. - A lightweight, speed optimized color management engine - Hız geliştirmesi yapılmış, hafif bir renk yönetim motoru - LittleCMS intends to be a small-footprint, speed optimized color management engine in open source form. - mirrors://sourceforge/project/lcms/lcms/1.19/lcms-1.19.tar.gz - - swig - tiff-devel - libjpeg-turbo-devel - - - CVE-2009-0793.patch - lcms-1.19-cve_2013_4276-1.patch - - multimedia/graphics/lcms/pspec.xml - - - lcms - - tiff - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/lcms - /usr/share/doc - /usr/share/man - - - - lcms-devel - lcms için geliştirme dosyaları - - lcms - - - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/include - - - - lcms-32bit - 32-bit shared libraries for lcms - lcms için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - tiff-32bit - libjpeg-turbo-32bit - - - lcms - - - /usr/lib32 - - - - - 2020-02-12 - 1.19 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-14 - 1.19 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.19 - Rebuild + 2017-01-24 + 2.16 + Rebuild for new toolchain Pisi Linux Community admin@pisilinux.org 2016-06-09 - 1.19 + 2.16 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-19 - 1.19 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - feh - https://feh.finalrewind.org/ - - Mogyorósi Petra - squeakymouse@protonmail.com - - MIT - multimedia.graphics - feh – a fast and light image viewer - feh is an X11 image viewer aimed mostly at console users. Unlike most other viewers, it does not have a fancy GUI, but simply displays images. It is controlled via commandline arguments and configurable key/mouse actions. It is released under a variant of the MIT license. - https://feh.finalrewind.org/feh-3.3.tar.bz2 - - curl-devel - imlib2-devel - libX11-devel - libXinerama-devel - libexif-devel - libpng-devel - libXt-devel - - - nolocal.patch - - multimedia/graphics/feh/pspec.xml - - - feh - feh – a fast and light image viewer - - curl - imlib2 - libX11 - libXinerama - libexif - libpng - - - /usr/bin/* - /usr/share/applications/* - /usr/share/doc/* - /usr/share/feh/* - /usr/share/icons/* - /usr/share/man/* - - - - - 2020-03-05 - 3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-01 - 3.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-06-28 - 2.27 - Latest version - Mogyorósi Petra - squeakymouse@protonmail.com - - - - - - libpcd - https://www.kraxel.org/blog/linux/libpcd/ - - fury - uglyside@yandex.ru - - GPLv2 - library - multimedia.graphics - libpcd is a tiny library for decoding PhotoCD images. - libpcd is a tiny library for decoding PhotoCD images. It used to come bundled with xpcd, but I've decided to release it separately so other apps such as fbi and ida can use it too. - https://www.kraxel.org/releases/libpcd/libpcd_1.0.1.tar.gz - multimedia/graphics/libpcd/pspec.xml - - - libpcd - - /usr/lib - /usr/share - - - - libpcd-devel - - libpcd - - - /usr/include - - - - - 2020-12-06 - 1.0.1 - First build. - fury - uglyside@yandex.ru - - - - - - rawtherapee - http://rawtherapee.com/ - - Marcin Bojara - marcin@pisilinux.org - - GPLv3 - app:gui - multimedia.graphics - RawTherapee is a powerful, cross-platform raw photo processing program - Edytor zdjęć RAW - RawTherapee is designed for developing raw files from a broad range of digital cameras, as well as HDR DNG files and non-raw image formats (JPEG, TIFF and PNG). - Zaawansowany program do wywoływania zdjęć. - https://github.com/Beep6581/RawTherapee/releases/download/5.8/rawtherapee-5.8.tar.xz - - cmake - gtk3-devel - tiff-devel - zlib-devel - exiv2-devel - expat-devel - fftw3-devel - glib2-devel - atkmm-devel - lcms2-devel - glibmm-devel - gtkmm3-devel - libpng-devel - librsvg-devel - lensfun-devel - libsigc++-devel - libcanberra-devel - libiptcdata-devel - libjpeg-turbo-devel - libcanberra-gtk3-devel - - multimedia/graphics/rawtherapee/pspec.xml - - - rawtherapee - - tiff - zlib - gtk3 - glib2 - expat - fftw3 - lcms2 - atkmm - gtkmm3 - glibmm - libpng - libgcc - libgomp - cairomm - pangomm - librsvg - lensfun - libsigc++ - libcanberra - libiptcdata - libjpeg-turbo - libcanberra-gtk3 - - - /usr/bin - /usr/share/doc/rawtherapee - /usr/share - /usr/share/man - - - - - 2020-03-31 - 5.8 + 2016-03-14 + 2.16 First release Kamil Atlı suvari@pisilinux.org @@ -318137,55 +264062,84 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - ispc - https://ispc.github.io/ + perl-B-COW + https://metacpan.org/pod/B::COW + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + B::COW additional B helpers to check COW status. + B::COW provides some naive additional B helpers to check the COW status of one SvPV. + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/B-COW-0.004.tar.gz + + perl + + programming/language/perl/perl-B-COW/pspec.xml + + + perl-B-COW + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.004 + First build + fury + uglyside@yandex.ru + + + + + + perl-Bytes-Random-Secure + https://metacpan.org/release/Bytes-Random-Secure PisiLinux Community admins@pisilinux.org - BSD + PerlArtistic library - multimedia.misc - C-based SPMD programming language compiler - C-based SPMD programming language compiler - C tabanlı SPMD programlama dili derleyicisi - C tabanlı SPMD programlama dili derleyicisi - https://github.com/ispc/ispc/archive/refs/tags/v1.16.0.tar.gz + programming.language.perl + Perl extension to generate cryptographically-secure random bytes. + Perl extension to generate cryptographically-secure random bytes. + Perl extension to generate cryptographically-secure random bytes. + Perl extension to generate cryptographically-secure random bytes. + https://cpan.metacpan.org/authors/id/D/DA/DAVIDO/Bytes-Random-Secure-0.29.tar.gz - flex - llvm - cmake - doxygen - zlib-devel - llvm-mlir - llvm-polly - libxml2-devel - ncurses-devel - llvm-clang-devel - python3-devel + perl-Crypt-Random-Seed + perl-Math-Random-ISAAC + perl - - 0001-Link-against-libclang-cpp.so.patch - - multimedia/misc/ispc/pspec.xml + programming/language/perl/perl-Bytes-Random-Secure/pspec.xml - ispc + perl-Bytes-Random-Secure - libgcc - llvm-libs - llvm-clang + perl-Crypt-Random-Seed + perl-Math-Random-ISAAC + perl - /usr/bin + /usr/lib + /usr/share/man /usr/share/doc - 2021-06-30 - 1.16.0 - First release. + 2021-10-14 + 0.29 + First release PisiLinux Community admins@pisilinux.org @@ -318193,80 +264147,1554 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - liboil - https://liboil.freedesktop.org/wiki/ + perl-Cairo + https://metacpan.org/pod/Cairo - PisiLinux Community + Pisilinux Community admins@pisilinux.org - LGPLv2.1 + LGPL-2.1 library - multimedia.misc - Liboil is a library of simple functions that are optimized for various CPUs - Liboil, farklı işlemciler için optimize edilmiş temel fonksiyonlardan oluşan bir kütüphanedir - Liboil est une librairie de fonctions simples optimisées pour différents processeurs. Ces fonction sont en général des boucles implémentant des algorithmes simples, tel que convertir un tableau de N entiers en nombres à virgule flottante ou multiplier et additionner un tableau de N nombres. - Liboil is a library of simple functions that are optimized for various CPUs. These functions are generally loops implementing simple algorithms, such as converting an array of N integers to floating-point numbers or multiplying and summing an array of N numbers. - liboil çeşitli CPU 'lar için en iyilenmiş basit fonksiyon kütüphanesidir. Bu fonksiyonlar genellikle döngüler için gerçekleştirilen yalın algoritmalardır, örneğin ; N integer elemanı olan bir diziyi float elemanlı diziye dönüştürmek yada N elemanlı bir dizi ile toplama yada çarpma yapmak gibi. - Liboil es una librería con funciones simples, optimizados para múltiples CPUs. Estas funciones son generalmente bucles realizando simples algoritmos, como conversión de arrays de N enteros a números de punto flotante o multiplicación y suma de un array de N números. - http://liboil.freedesktop.org/download/liboil-0.3.17.tar.gz - - 02_amd64-cpuid.patch - 03_stride-segfaults.patch - - multimedia/misc/liboil/pspec.xml + programming.language.perl + Perl bindings to the cairo graphics library + Cairo provides Perl bindings for the vector graphics library cairo. It supports multiple output targets, including PNG, PDF and SVG. Cairo produces identical output on all those targets. + https://cpan.metacpan.org/authors/id/X/XA/XAOC/Cairo-1.109.tar.gz + + perl + cairo-devel + perl-Font-FreeType + perl-ExtUtils-Depends + perl-Test-Number-Delta + perl-ExtUtils-PkgConfig + perl-ExtUtils-MakeMaker + + programming/language/perl/perl-Cairo/pspec.xml - liboil + perl-Cairo + + perl + cairo + freetype + /usr/lib /usr/share/doc - - - - liboil-devel - Development files for liboil - liboil için geliştirme dosyaları - - liboil - - - /usr/bin - /usr/include - /usr/lib/pkgconfig + /usr/share/man + + 2021-12-21 + 1.109 + First build. + fury + uglyside@yandex.ru + + + + + + perl-Canary-Stability + https://metacpan.org/release/Canary-Stability + + Alihan Öztürk + alihan@pisilinux.org + + GPLv1 + library + programming.language.perl + CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules + Schmorp modülleri için perl uyumluluğunu deneteleyebilen Perl modülü + CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules + Bu modül, schmorp modülleri için perl uyumluluğunu deneteleyebilmektedir. + https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/Canary-Stability-2013.tar.gz + + perl + + programming/language/perl/perl-Canary-Stability/pspec.xml + + + perl-Canary-Stability + CPAN/Canary-Stability - canary to check perl compatability for schmorp's modules + + perl + + + /usr/lib + /usr/share + /usr/share/man + + + + + 2020-01-02 + 2013 + Version bump, translation added + Blue Devil + bluedevil@sctzine.com + - 2020-03-07 - 0.3.17 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2019-04-20 + 2012 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2018-09-01 - 0.3.17 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-26 + 2012 + Rebuild. + Pisi Linux Community + admin@pisilinux.org - 2017-03-02 - 0.3.17 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2017-01-24 + 2012 + Version Bump + Pisi Linux Community + admin@pisilinux.org 2016-06-09 - 0.3.17 + 2011 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-24 - 0.3.17 + 2016-03-27 + 2011 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-Capture-Tiny + https://metacpan.org/pod/Capture::Tiny + + Pisi Linux Admins + admins@pisilinux.org + + Apache-2.0 + library + programming.language.perl + Perl module to capture stdout and stderr from Perl, XS or external programs + Standart çıktı ve hata akışlarını yakalamaya yarayan Perl modülü + perl-Capture-Tiny is a Perl module to capture stdout and stderr from Perl, XS or external programs. + perl-Capture-Tiny, Perl, XS veya harici programların standart çıktı ve hata akışlarının yakalanmasını sağlayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Capture-Tiny-0.48.tar.gz + + perl + + programming/language/perl/perl-Capture-Tiny/pspec.xml + + + perl-Capture-Tiny + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 0.48 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.46 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.44 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.36 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.36 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-CGI + https://metacpan.org/release/CGI + + Alihan Öztürk + alihan@pisilinux.org + + Artistic + GPLv1 + library + programming.language.perl + Handle Common Gateway Interface requests and responses. + CGI istek ve yanıtlarını işleyebilmek için bir perl kütüphanesi + Handle Common Gateway Interface requests and responses. + perl-CGI, CGI istek ve yanıtlarını işleyebilmek için bir perl kütüphanesidir. + https://cpan.metacpan.org/authors/id/L/LE/LEEJO/CGI-4.50.tar.gz + + perl + perl-Test-Deep + perl-Test-Warn + perl-HTML-Parser + + programming/language/perl/perl-CGI/pspec.xml + + + perl-CGI + Handle Common Gateway Interface requests and responses. + + perl + perl-Test-Deep + perl-Test-Warn + perl-HTML-Parser + + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-07-20 + 4.50 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 4.49 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 4.47 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 4.46 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-29 + 4.45 + Version bump and translations added + Blue Devil + bluedevil@sctzine.com + + + 2020-01-02 + 4.44 + Version bump and translations added + Blue Devil + bluedevil@sctzine.com + + + 2019-04-20 + 4.40 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-26 + 4.38 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 4.35 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.28 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 4.28 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-Class-Method-Modifiers + https://metacpan.org/release/Class-Method-Modifiers + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Provides Moose-like method modifiers + Moose benzeri yordam düzenleyici. + Class::Method::Modifiers provides three modifiers: before, around, and after. before and after are run just before and after the method they modify, but can not really affect that original method. around is run in place of the original method, with a hook to easily call that original method. + perl-Class-Method-Modifiers, moose benzeri yordam düzenleyici perl modülü sunar. + https://cpan.metacpan.org/authors/id/E/ET/ETHER/Class-Method-Modifiers-2.13.tar.gz + + perl + perl-Test-Fatal + perl-Test-Needs + perl-Test-Requires + + programming/language/perl/perl-Class-Method-Modifiers/pspec.xml + + + perl-Class-Method-Modifiers + Provides Moose-like method modifiers + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 2.13 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Clone + https://metacpan.org/pod/Clone + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Clone - recursively copy Perl datatypes. + This module provides a clone() method which makes recursive copies of nested hash, array, scalar and reference types, including tied variables and objects. + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Clone-0.45.tar.gz + + perl + perl-B-COW + + programming/language/perl/perl-Clone/pspec.xml + + + perl-Clone + + perl + perl-B-COW + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.45 + First build + fury + uglyside@yandex.ru + + + + + + perl-common-sense + https://metacpan.org/release/common-sense + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Implements some sane defaults for Perl programs + Perl programları için kabul edilebilir öntanımlar içerir + This module implements some sane defaults for Perl programs, as defined by two typical (or not so typical - use your common sense) specimens of Perl coders: + perl-common-sense, perl programları için kabul edilebilir öntanımlar içeren bir perl kütüphanesidir. + https://cpan.metacpan.org/authors/id/M/ML/MLEHMANN/common-sense-3.75.tar.gz + + perl + + programming/language/perl/perl-common-sense/pspec.xml + + + perl-common-sense + Implements some sane defaults for Perl programs + + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-04-08 + 3.75 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-02 + 3.74 + Rebuilt and translation fix + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 3.74 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 3.74 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.74 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 3.74 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Crypt-OpenSSL-Guess + https://metacpan.org/pod/Crypt::OpenSSL::Guess + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Guess OpenSSL include path. + Crypt::OpenSSL::Guess provides helpers to guess OpenSSL include path on any platforms. + https://cpan.metacpan.org/authors/id/A/AK/AKIYM/Crypt-OpenSSL-Guess-0.15.tar.gz + + perl-ExtUtils-MakeMaker + + programming/language/perl/perl-Crypt-OpenSSL-Guess/pspec.xml + + + perl-Crypt-OpenSSL-Guess + + perl + perl-ExtUtils-MakeMaker + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2022-04-14 + 0.15 + Version bump + fury + uglyside@yandex.ru + + + 2021-12-20 + 0.14 + Version bump + fury + uglyside@yandex.ru + + + 2021-09-18 + 0.13 + First build + fury + uglyside@yandex.ru + + + + + + perl-Crypt-OpenSSL-Random + https://metacpan.org/pod/Crypt::OpenSSL::Random + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + OpenSSL/LibreSSL pseudo-random number generator access. + Crypt::OpenSSL::Random provides the ability to seed and query the OpenSSL and LibreSSL library's pseudo-random number generators. + https://cpan.metacpan.org/authors/id/R/RU/RURBAN/Crypt-OpenSSL-Random-0.15.tar.gz + + openssl-devel + perl-Crypt-OpenSSL-Guess + + programming/language/perl/perl-Crypt-OpenSSL-Random/pspec.xml + + + perl-Crypt-OpenSSL-Random + + openssl + perl-Crypt-OpenSSL-Guess + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.15 + First build + fury + uglyside@yandex.ru + + + + + + perl-Crypt-OpenSSL-RSA + https://metacpan.org/pod/Crypt::OpenSSL::RSA + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + RSA encoding and decoding, using the openSSL libraries. + Crypt::OpenSSL::RSA provides the ability to RSA encrypt strings which are somewhat shorter than the block size of a key. + https://cpan.metacpan.org/authors/id/T/TO/TODDR/Crypt-OpenSSL-RSA-0.32.tar.gz + + openssl-devel + perl-Crypt-OpenSSL-Guess + perl-Crypt-OpenSSL-Random + + programming/language/perl/perl-Crypt-OpenSSL-RSA/pspec.xml + + + perl-Crypt-OpenSSL-RSA + + openssl + perl-Crypt-OpenSSL-Guess + perl-Crypt-OpenSSL-Random + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.32 + First build + fury + uglyside@yandex.ru + + + + + + perl-Crypt-PasswdMD5 + https://metacpan.org/pod/Crypt::PasswdMD5 + + Selim Ok + admins@pisilinux.org + + Artistic + library + programming.language.perl + Crypt::PasswdMD5 module for perl + Perl için Crypt::PasswdMD5 modülü + Provides various crypt()-compatible interfaces to the MD5-based crypt() function. + MD5 tabanlı crypt() fonksiyonu için, crypt() uyumlu çeşitli arayüzler sağlar. + http://search.cpan.org/CPAN/authors/id/R/RS/RSAVAGE/Crypt-PasswdMD5-1.40.tgz + + perl + perl-Module-Build + + programming/language/perl/perl-Crypt-PasswdMD5/pspec.xml + + + perl-Crypt-PasswdMD5 + Crypt::PasswdMD5 module for perl + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-02 + 1.40 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.40 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.40 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.40 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 1.40 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Crypt-Random-Seed + https://metacpan.org/pod/Crypt::Random::Seed + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Simple method to get strong randomness. + Crypt::Random::Seed provides a simple interface to get the strongest source of randomness on the current platform, typically for use in seeding a CSPRNG such as Math::Random::ISAAC. + https://cpan.metacpan.org/authors/id/D/DA/DANAJ/Crypt-Random-Seed-0.03.tar.gz + + perl + + programming/language/perl/perl-Crypt-Random-Seed/pspec.xml + + + perl-Crypt-Random-Seed + + perl + perl-Crypt-Random-TESHA2 + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.03 + First build + fury + uglyside@yandex.ru + + + + + + perl-Crypt-Random-TESHA2 + https://metacpan.org/pod/Crypt::Random::TESHA2 + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Random numbers using timer/schedule entropy. + Crypt::Random::TESHA2 produces "userspace voodoo entropy" for people that do not have or don't want to use O/S supplied sources. + https://cpan.metacpan.org/authors/id/D/DA/DANAJ/Crypt-Random-TESHA2-0.01.tar.gz + + perl + + programming/language/perl/perl-Crypt-Random-TESHA2/pspec.xml + + + perl-Crypt-Random-TESHA2 + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.01 + First build + fury + uglyside@yandex.ru + + + + + + perl-Crypt-SSLeay + https://metacpan.org/pod/Crypt::SSLeay + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Crypt::SSLeay - OpenSSL support for LWP. + Crypt::SSLeay - OpenSSL support for LWP. + https://cpan.metacpan.org/authors/id/N/NA/NANIS/Crypt-SSLeay-0.73_06.tar.gz + + perl + openssl-devel + perl-Try-Tiny + perl-Path-Class + perl-LWP-Protocol-https + perl-Bytes-Random-Secure + + programming/language/perl/perl-Crypt-SSLeay/pspec.xml + + + perl-Crypt-SSLeay + + perl + openssl + perl-Try-Tiny + perl-Path-Class + perl-LWP-Protocol-https + perl-Bytes-Random-Secure + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-12-20 + 0.73_06 + Rebuild + fury + uglyside@yandex.ru + + + 2021-09-18 + 0.73_04 + First build + fury + uglyside@yandex.ru + + + + + + perl-Data-Dump + https://metacpan.org/pod/Data::Dump + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + Perl Module for pretty printing of data structures + Perl veri yapılarının hoş bir şekilde bastırılması + perl-Data-Dump is a perl module which provides a few functions that traverse their argument and produces a string as its result. + perl-Data-Dump argümanları takip edip sonucunu bir karakter dizisi olarak bastıran fonksiyonlar sağlayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/G/GA/GAAS/Data-Dump-1.23.tar.gz + + perl + + programming/language/perl/perl-Data-Dump/pspec.xml + + + perl-Data-Dump + Perl Module for pretty printing of data structures + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-07 + 1.23 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2014-09-10 + 1.22 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-28 + 1.22 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-01-01 + 1.22 + Rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-11-08 + 1.22 + Version bump + Richard de Bruin + richdb@pisilinux.org + + + 2012-09-06 + 1.21 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-data-munge + https://metacpan.org/release/Data-Munge/ + + Kamil Atlı + suvari@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Various utility functions + Çeşitli yardımcı fonksiyonlar + Various utility functions + Çeşitli yardımcı fonksiyonlar + https://cpan.metacpan.org/authors/id/M/MA/MAUKE/Data-Munge-0.097.tar.gz + + perl + perl-test2-suite + perl-Capture-Tiny + perl-Test-Warnings + + programming/language/perl/perl-data-munge/pspec.xml + + + perl-data-munge + + perl + perl-test2-suite + perl-Capture-Tiny + perl-Test-Warnings + + + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 0.097 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Data-OptList + https://metacpan.org/release/Data-OptList + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Perl module that parses and validates simple name/value option pairs + Basit isim/değer çiftlerini ayrıştıran ve doğrulayan bir Perl modülü + perl-Data-OptList is a Perl module that parses and validates simple name/value option pairs. + perl-Data-OptList basit isim/değer çiftlerini ayrıştıran ve doğrulayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Data-OptList-0.110.tar.gz + + perl + perl-Params-Util + perl-Sub-Install + + programming/language/perl/perl-Data-OptList/pspec.xml + + + perl-Data-OptList + Perl module that parses and validates simple name/value option pairs + + perl + perl-Params-Util + perl-Sub-Install + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-09-23 + 0.110 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-DBI + https://dbi.perl.org/ + + Blue Devil + bluedevil@sctzine.com + + GPL + app:console + library + programming.language.perl + Database independent interface for Perl + Perl için veritabanından bağımsız arayüz. + The DBI is the standard database interface module for Perl. It defines a set of methods, variables and conventions that provide a consistent database interface independent of the actual database being used. + DBI Perl için standart veritabanı arayüzüdür. Birçok yordam, değişken ve kural tanımlar. + https://cpan.metacpan.org/authors/id/T/TI/TIMB/DBI-1.643.tar.gz + + perl + + programming/language/perl/perl-DBI/pspec.xml + + + perl-DBI + Database independent interface for Perl + + perl + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-02-05 + 1.643 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-08 + 1.642 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2016-04-22 + 1.634 + First release, built with docker. + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + perl-Devel-CheckLib + https://metacpan.org/pod/Devel::CheckLib + + fury + uglyside@yandex.ru + + perl_5 + library + programming.language.perl + Devel::CheckLib - check that a library is available. + Devel::CheckLib is a perl module that checks whether a particular C library and its headers are available. + https://cpan.metacpan.org/authors/id/M/MA/MATTN/Devel-CheckLib-1.14.tar.gz + + perl + perl-Mock-Config + perl-Capture-Tiny + + programming/language/perl/perl-Devel-CheckLib/pspec.xml + + + perl-Devel-CheckLib + + perl + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2021-12-21 + 1.14 + First build. + fury + uglyside@yandex.ru + + + + + + perl-Devel-GlobalDestruction + https://metacpan.org/release/Devel-GlobalDestruction + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Devel::GlobalDestruction - Provides function returning the equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls. + Devel::GlobalDestruction eski perl betikleri için ${^GLOBAL_PHASE} eq 'DESTRUCT' dengi yordam döndürür. + perl-Devel-GlobalDestruction provides function returning the equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls. + perl-Devel-GlobalDestruction, eski perl betikleri için ${^GLOBAL_PHASE} eq 'DESTRUCT' dengi yordam sunar. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Devel-GlobalDestruction-0.14.tar.gz + + perl + perl-Sub-Exporter-Progressive + + programming/language/perl/perl-Devel-GlobalDestruction/pspec.xml + + + perl-Devel-GlobalDestruction + Devel::GlobalDestruction - Provides function returning the equivalent of ${^GLOBAL_PHASE} eq 'DESTRUCT' for older perls. + + perl + perl-Sub-Exporter-Progressive + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 0.14 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Devel-Symdump + https://metacpan.org/pod/Devel::Symdump + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Dump symbol names or the symbol table + Sembol isimlerinin veya sembol tablosunun dökümünü verir + perl-Devel-Symdump is a Perl module that dumps symbol names or the symbol table. + perl-Devel-Symdump sembol isimlerinin veya sembol tablosunun dökümünü veren bir Perl modülüdür. + http://www.cpan.org/authors/id/A/AN/ANDK/Devel-Symdump-2.18.tar.gz + + perl + + programming/language/perl/perl-Devel-Symdump/pspec.xml + + + perl-Devel-Symdump + Dump symbol names or the symbol table + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-02 + 2.18 + Rebuilt + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 2.18 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.17 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.15 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Digest-HMAC + https://metacpan.org/pod/Digest::HMAC + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Keyed-Hashing for Message Authentication + HMAC-MD5 şifrelemesi sağlayan bir Perl modülü + This Perl module provides HMAC-MD5 hashing. + Bu Perl modülü HMAC-MD5 şifrelemesi sağlar. + Este módulo Perl facilita hashing HMAC-MD5 + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-HMAC-1.03.tar.gz + + perl + perl-Digest-SHA1 + + programming/language/perl/perl-Digest-HMAC/pspec.xml + + + perl-Digest-HMAC + Keyed-Hashing for Message Authentication + + perl + perl-Digest-SHA1 + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-Digest-HMAC + + + + + 2020-01-02 + 1.03 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.03 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.03 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.03 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Digest-MD5 + https://metacpan.org/pod/Digest::MD5 + + PisiLinux Community + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl interface to the MD5 Algorithm + MD5 Algoritmasına perl arayüzü + Perl interface to the MD5 Algorithm + perl-Digest-MD5, MD5 Algoritmasına perl arayüzü sunar. + http://www.cpan.org/authors/id/G/GA/GAAS/Digest-MD5-2.55.tar.gz + + perl + + programming/language/perl/perl-Digest-MD5/pspec.xml + + + perl-Digest-MD5 + Perl interface to the MD5 Algorithm + + perl + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 2.55 + Rebuilt for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 2.55 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.55 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.53 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 2.53 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Digest-Nilsimsa + https://metacpan.org/pod/Digest::Nilsimsa + + fury + uglyside@yandex.ru + + LGPL-2 + library + programming.language.perl + Perl version of Nilsimsa code. + A nilsimsa signature is a statistic of n-gram occurance in a piece of text. It is a 256 bit value usually represented in hex. This module is a wrapper around nilsimsa implementation in C by cmeclax. + https://cpan.metacpan.org/authors/id/V/VI/VIPUL/Digest-Nilsimsa-0.06.tar.gz + + perl + + programming/language/perl/perl-Digest-Nilsimsa/pspec.xml + + + perl-Digest-Nilsimsa + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.06 + First build + fury + uglyside@yandex.ru + + + + + + perl-Encode-Locale + https://metacpan.org/release/Encode-Locale + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2+ + app:console + programming.language.perl + NAME::Encode::Locale - Determine the locale encoding + NAME::Encode::Locale - yerel kodlamayi tespit eder. + In many applications it's wise to let Perl use Unicode for the strings it processes. Most of the interfaces Perl has to the outside world are still byte based. Programs therefore need to decode byte strings that enter the program from the outside and encode them again on the way out. + Birçok uygulamada perl'ün söz katarları için unikod kullanmasını sağlamak akıllıca olur. Bu perl betiği unikod kullanmayı kolaylaştırır. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Encode-Locale-1.05.tar.gz + + perl + + programming/language/perl/perl-Encode-Locale/pspec.xml + + + perl-Encode-Locale + NAME::Encode::Locale - Determine the locale encoding + + perl + + + /usr/lib + /usr/share + + + + + 2020-01-07 + 1.05 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.05 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.05 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.05 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.05 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Error + https://metacpan.org/release/Error + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Error/exception handling in an OO-ish way + Hata/istisna yakalama ve işlemeye yarayan Nesne yönelimli mantıkla yazılmış bir perl modülü + The Error package provides two interfaces. Firstly Error provides a procedural interface to exception handling. Secondly Error is a base class for errors/exceptions that can either be thrown, for subsequent catch, or can simply be recorded. + perl-Error, Hata/istisna yakalama ve işleme işlerini gören, Nesne yönelimli mantıkla yazılmış bir perl modülüdür. + https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/Error-0.17029.tar.gz + + perl + perl-Module-Build + + programming/language/perl/perl-Error/pspec.xml + + + perl-Error + Error/exception handling in an OO-ish way + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-29 + 0.17029 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-07 + 0.17028 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.17024 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.17024 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.17024 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.17024 First release Alihan Öztürk alihan@pisilinux.org @@ -318275,80 +265703,7998 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - jansson - http://www.digip.org/jansson/ + perl-Event + https://metacpan.org/release/Event - Stefan Gronewold (groni) - groni@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - MIT + GPLv2 + Artistic library - multimedia.misc - Jansson is a C library for encoding, decoding and manipulating JSON data. - It features: Simple and intuitive API and data model, Comprehensive documentation, No dependencies on other libraries, Full Unicode support (UTF-8), Extensive test suite. - http://www.digip.org/jansson/releases/jansson-2.12.tar.bz2 - multimedia/misc/jansson/pspec.xml + programming.language.perl + Event loop processing module in Perl + Perl için olay döngüsü işleme modülü + The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute. + Event modülü çeşitli türde olayları izlemek için merkezi bir olanak sağlamakta ve bu olaylar meydana geldiğinde sisteme geri çağırım (callback) uyarmaktadır. + https://cpan.metacpan.org/authors/id/E/ET/ETJ/Event-1.27.tar.gz + + perl + + programming/language/perl/perl-Event/pspec.xml - jansson + perl-Event + Event loop processing module in Perl - glibc + perl /usr/lib - /usr/share - /usr/share/doc + /usr/share/man + /usr/share/doc/perl-Event + + + 2020-01-07 + 1.27 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2012-09-06 + 1.27 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-ExtUtils-Depends + https://metacpan.org/pod/ExtUtils::Depends + + Pisilinux Community + admins@pisilinux.org + + GPL-2 + library + programming.language.perl + A library for easily build XS extensions that depend on XS extensions + This module tries to make it easy to build Perl extensions that use functions and typemaps provided by other Perl extensions. + https://cpan.metacpan.org/authors/id/X/XA/XAOC/ExtUtils-Depends-0.8001.tar.gz + + perl + + programming/language/perl/perl-ExtUtils-Depends/pspec.xml + - jansson-devel + perl-ExtUtils-Depends - jansson + perl - /usr/lib/pkgconfig - /usr/include + /usr/lib/perl5 + /usr/share/doc + /usr/share/man/man3 + + + + + 2021-12-21 + 0.8001 + First build. + fury + uglyside@yandex.ru + + + + + + perl-ExtUtils-MakeMaker + https://metacpan.org/release/ExtUtils-MakeMaker + + Blue DeviL + bluedevil@sctzine.com + + Perl 5 + library + programming.language.perl + Perl extension for creating a module Makefile + Makefile modülü yaratabilen bir perl eklentisi + This utility is designed to write a Makefile for an extension module from a Makefile.PL. It is based on the Makefile.SH model provided by Andy Dougherty and the perl5-porters. + Bu araç bir Makefile.PL dosyasından bir eklenti modülüne Makefile yaratmak için tasarlanmıstır. + https://cpan.metacpan.org/authors/id/B/BI/BINGOS/ExtUtils-MakeMaker-7.46.tar.gz + + perl + + programming/language/perl/perl-ExtUtils-MakeMaker/pspec.xml + + + perl-ExtUtils-MakeMaker + Perl extension for creating a module Makefile + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/perl + + + + + 2020-07-20 + 7.46 + Version bump + Blue DeviL + bluedevil@sctzine.com + + + 2020-01-29 + 7.44 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2020-01-07 + 7.42 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-12 + 7.38 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + perl-ExtUtils-PkgConfig + https://metacpan.org/pod/ExtUtils::PkgConfig + + Pisilinux Community + admins@pisilinux.org + + LGPL-2.1 + library + programming.language.perl + A library which converts Perl XS code into C code + The pkg-config program retrieves information about installed libraries, usually for the purposes of compiling against and linking to them. + https://cpan.metacpan.org/authors/id/X/XA/XAOC/ExtUtils-PkgConfig-1.16.tar.gz + + perl + + programming/language/perl/perl-ExtUtils-PkgConfig/pspec.xml + + + perl-ExtUtils-PkgConfig + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2021-12-21 + 1.16 + First build. + fury + uglyside@yandex.ru + + + + + + perl-FFI-CheckLib + https://metacpan.org/release/FFI-CheckLib + + Blue Devil + bluedevil@sctzine.com + + Artistic + GPLv2 + library + programming.language.perl + Check that a library is available for FFI + FFI için bir kitaplığın mevcut olup olmadığını kontrol eden perl modülü. + perl-FFI-CheckLib, checks if a library is available for FFI + perl-FFI-CheckLib, FFI için bir kitaplığın mevcut olup olmadığını kontrol eden perl modülü sunar. + https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/FFI-CheckLib-0.27.tar.gz + + perl + perl-test-exit + perl-test2-suite + + programming/language/perl/perl-FFI-CheckLib/pspec.xml + + + perl-FFI-CheckLib + Check that a library is available for FFI + + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-05-18 + 0.27 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-04-10 + 0.26 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + perl-File-chdir + https://metacpan.org/pod/File::chdir + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl module for changing directories + Dizin değiştirmek için bir Perl modülü. + Perl's chdir() has the unfortunate problem of being very, very, very global. If any part of your program calls chdir() or if any library you use calls chdir(), it changes the current working directory for the whole program. + Dizin değiştirmek için bir Perl modülü. + http://search.cpan.org/CPAN/authors/id/D/DA/DAGOLDEN/File-chdir-0.1011.tar.gz + + perl + + programming/language/perl/perl-File-chdir/pspec.xml + + + perl-File-chdir + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-04-09 + 0.1011 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-File-Listing + https://metacpan.org/release/File-Listing + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + File::Listing - Dosya sistemi dizin listesini çözümler. + Bu modül "parse_dir()" adında dosya sistemi dizin listesini çözümleyebilen bir yordamı dışa aktarır. + https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Listing-6.07.tar.gz + + perl + perl-HTTP-Date + + programming/language/perl/perl-File-Listing/pspec.xml + + + perl-File-Listing + File::Listing - parse directory listing + + perl + perl-HTTP-Date + + + /usr/share + /usr/lib + /usr/share/doc + /usr/share/man - 2020-11-07 - 2.12 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-10-01 + 6.07 + Minor version bump + Blue Devil + bluedevil@sctzine.com - 2020-01-19 - 2.12 - Version Bump - İdris Kalp - aidriskalp@gmail.com + 2020-01-11 + 6.04 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com - 2018-08-13 - 2.11 - Version Bump + 2018-07-26 + 6.04 + Rebuild for new toolchain Pisi Linux Community admin@pisilinux.org - 2017-02-19 - 2.9 + 2017-01-24 + 6.04 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.04 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.04 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-File-Slurp + https://metacpan.org/release/File-Slurp + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + A Perl module that is efficient in reading/writing of Complete Files + Complete dosyalarını verimli bir şekilde yazma/okuma olanağı + Efficient Reading/Writing of Complete Files. It provides subroutines to read or write entire files with as simple call. + perl-File-Slurp Complete dosyalarını verimli bir şekilde yazma/okuma olanağı sunan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/File-Slurp-9999.32.tar.gz + + perl + + programming/language/perl/perl-File-Slurp/pspec.xml + + + perl-File-Slurp + A Perl module that is efficient in reading/writing of Complete Files + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-12-17 + 9999.32 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-20 + 9999.32 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 9999.30 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 9999.29 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 9999.19 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-12-14 + 9999.19 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-File-Slurper + https://metacpan.org/release/File-Slurper + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + A simple, sane and efficient module to slurp a file + Bir dosyayı indirmek için iyi ve verimli bir perl modülüdür. + perl-File-Slurper, provides a simple, sane and efficient module to slurp a file. + perl-File-Slurper Bir dosyayı indirmek için iyi ve verimli bir perl modülü sunar. + https://cpan.metacpan.org/authors/id/L/LE/LEONT/File-Slurper-0.012.tar.gz + + perl + perl-Test-Warnings + + programming/language/perl/perl-File-Slurper/pspec.xml + + + perl-File-Slurper + A simple, sane and efficient module to slurp a file + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-02-12 + 0.012 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-File-Which + https://metacpan.org/pod/File::Which + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + app:console + programming.language.perl + Portable Perl implementation of the "which" utility + Which komutunun Perl dilinde taşınabilir bir gerçekleştirimi + perl-File-Which is a Perl module that is portable implementation of the "which" utility. + perl-File-Which, which komutunun Perl dilinde taşınabilir bir gerçekleştirimi olan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/File-Which-1.23.tar.gz + + perl + perl-Test-Script + + programming/language/perl/perl-File-Which/pspec.xml + + + perl-File-Which + + perl + perl-Test-Script + + + /usr/bin + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 1.23 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Font-AFM + https://metacpan.org/pod/Font::AFM + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + A Perl module that is a interface to Adobe Font Metrics files + Adobe Font Metrics dosyaları için bir Perl arayüz modülü + perl-Font-AFM is interface to Adobe Font Metrics files. It allows you to obtain information about the font and the metrics of the various glyphs in the font. + Adobe Font Metrics dosyaları için bir Perl arayüz mödülü. Bu modül ile yazı tipi ve biçimi hakkında bilgilere ulaşabilirsiniz. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Font-AFM-1.20.tar.gz + + perl + + programming/language/perl/perl-Font-AFM/pspec.xml + + + perl-Font-AFM + A Perl module that is a interface to Adobe Font Metrics files + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-11 + 1.20 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.20 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.20 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.20 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Font-FreeType + https://metacpan.org/pod/Font::FreeType + + fury + uglyside@yandex.ru + + perl_5 + library + programming.language.perl + Font::FreeType - read font files and render glyphs from Perl using FreeType2. + This module allows Perl programs to conveniently read information from font files. All the font access is done through the FreeType2 library, which supports many formats. It can render images of characters with high-quality hinting and antialiasing, extract metrics information, and extract the outlines of characters in scalable formats like TrueType. + https://cpan.metacpan.org/authors/id/D/DM/DMOL/Font-FreeType-0.16.tar.gz + + perl + freetype-devel + perl-File-Which + perl-Test-Warnings + perl-Devel-CheckLib + perl-ExtUtils-MakeMaker + + programming/language/perl/perl-Font-FreeType/pspec.xml + + + perl-Font-FreeType + + perl + freetype + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2021-12-21 + 0.16 + First build. + fury + uglyside@yandex.ru + + + + + + perl-Font-TTF + https://metacpan.org/pod/Font::TTF + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + Perl module for TrueType Font hacking + TrueType yazıtipleri için Perl modülü + perl-Font-TTF is a Perl module that allows you to do almost anything to a TrueType/OpenType Font including modifying and inspecting nearly all tables. + perl-Font-TTF, çok sayıda dosya biçimini TrueType/OpenType yazıtipine dönüştürmenizi sağlayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/B/BH/BHALLISSY/Font-TTF-1.06.tar.gz + + perl + perl-IO-String + + programming/language/perl/perl-Font-TTF/pspec.xml + + + perl-Font-TTF + Perl module for TrueType Font hacking + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-11 + 1.06 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.05 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.05 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.05 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.05 + First release + Ayhan Yalçınsoy + ayhanyalcinoys@pisilinux.org + + + + + + perl-Glib + https://metacpan.org/pod/Glib + + Pisilinux Community + admins@pisilinux.org + + LGPL-2.1 + library + programming.language.perl + Perl wrappers for the GLib utility and Object libraries + This module provides perl access to Glib and GLib's GObject libraries. GLib is a portability and utility library; GObject provides a generic type system with inheritance and a powerful signal system. Together these libraries are used as the foundation for many of the libraries that make up the Gnome environment, and are used in many unrelated projects. + https://cpan.metacpan.org/authors/id/X/XA/XAOC/Glib-1.3293.tar.gz + + perl + perl-ExtUtils-Depends + perl-ExtUtils-PkgConfig + gobject-introspection-devel + + programming/language/perl/perl-Glib/pspec.xml + + + perl-Glib + + perl + glib2 + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2021-12-21 + 1.3293 + First build. + fury + uglyside@yandex.ru + + + + + + perl-Gtk2 + https://metacpan.org/pod/Gtk2 + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + programming.language.perl + Perl interface to the 2.x series of the Gimp Toolkit library. + This module allows you to write graphical user interfaces in a Perlish and object-oriented way, freeing you from the casting and memory management in C, yet remaining very close in spirit to original API. + https://cpan.metacpan.org/authors/id/X/XA/XAOC/Gtk2-1.24993.tar.gz + + gtk2-devel + perl-Pango + perl-ExtUtils-Depends + perl-ExtUtils-PkgConfig + + programming/language/perl/perl-Gtk2/pspec.xml + + + perl-Gtk2 + + gtk2 + perl-Pango + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-12-21 + 1.24993 + First build. + fury + uglyside@yandex.ru + + + + + + perl-HTML-Form + https://metacpan.org/release/HTML-Form + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTML::Form - Bir HTML Form elemanını temsil eden perl sınıfı + HTML::Form sınıfının nesneleri tek bir <form> ... </form> örneğini temsil edebilirler. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTML-Form-6.07.tar.gz + + perl-LWP-Mediatypes + perl-HTTP-Message + perl-HTML-Parser + perl-URI + perl + + programming/language/perl/perl-HTML-Form/pspec.xml + + + perl-HTML-Form + HTML::Form - Class that represents an HTML form element + + perl-LWP-Mediatypes + perl-HTTP-Message + perl-HTML-Parser + perl-URI + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + /usr/share + + + + + 2020-02-22 + 6.07 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 6.06 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 6.05 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.03 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.03 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 6.03 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTML-Format + https://metacpan.org/release/NIGELM/HTML-Format-2.12 + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + A Perl module that format HTML as plaintext, RTF and PostScript + HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. + perl-HTML-Format HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + http://search.cpan.org/CPAN/authors/id/N/NI/NIGELM/HTML-Format-2.12.tar.gz + + perl-Module-Build + perl-HTML-Tree + perl-Font-AFM + perl + + programming/language/perl/perl-HTML-Format/pspec.xml + + + perl-HTML-Format + A Perl module that format HTML as plaintext, RTF and PostScript + + perl-Module-Build + perl-HTML-Tree + perl-Font-AFM + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-14 + 2.12 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 2.12 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.12 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.12 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTML-Formatter + https://metacpan.org/release/HTML-Formatter + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + library + programming.language.perl + A Perl module that format HTML as plaintext, RTF and PostScript + HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + perl-HTML-Format is a Perl module that formats HTML as plaintext, RTF and PostScript. + perl-HTML-Formatter HTML dosyalarını basit metin, RTF ve PostScript formatlarına biçimlendiren bir Perl modülüdür + https://cpan.metacpan.org/authors/id/N/NI/NIGELM/HTML-Formatter-2.16.tar.gz + + perl-Module-Build + perl-File-Slurper + perl-HTML-Tree + perl-Font-AFM + perl + perl-Test-Warnings + + programming/language/perl/perl-HTML-Formatter/pspec.xml + + + perl-HTML-Formatter + A Perl module that format HTML as plaintext, RTF and PostScript + + perl-HTML-Tree + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-02-12 + 2.16 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-HTML-FormatText-WithLinks + https://metacpan.org/pod/HTML::FormatText::WithLinks + + Osman Erkan + osman.erkan@pisilinux.org + + PerlArtistic GPL + library + programming.language.perl + HTML to text conversion with links as footnotes. + Bağlantıları dipnot olarak alan HTML'den metine dönüşüm modülü + HTML::FormatText::WithLinks takes HTML and turns it into plain text but prints all the links in the HTML as footnotes. + HTML::FormatText::WithLinks HTML'i alıp düz metne çevirebilen ve bunu yaparken tüm bağlantıları da dipnot olarak verebilen perl modülüdür. + http://search.cpan.org/CPAN/authors/id/S/ST/STRUAN/HTML-FormatText-WithLinks-0.15.tar.gz + + perl + perl-URI + perl-Module-Build + perl-HTML-Formatter + perl-Test-Pod + perl-Test-Pod-Coverage + + programming/language/perl/perl-HTML-FormatText-WithLinks/pspec.xml + + + perl-HTML-FormatText-WithLinks + HTML to text conversion with links as footnotes. + + perl + perl-URI + perl-HTML-Format + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-02-12 + 0.15 + Fix deps + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 0.15 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.15 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.15 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.15 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTML-FormatText-WithLinks-AndTables + https://metacpan.org/pod/HTML::FormatText::WithLinks::AndTables + + Osman Erkan + osman.erkan@pisilinux.org + + PerlArtistic GPL + library + programming.language.perl + Converts HTML to Text with tables in tact. + HTML'i metne tablolar ile beraber çeviren perl modülü + This module was inspired by HTML::FormatText::WithLinks which has proven to be a useful `lynx -dump` work-alike. + Bu modül HTML'i metne içersindeki tablolar ile beraber dönüştürür. + http://www.cpan.org/authors/id/D/DA/DALEEVANS/HTML-FormatText-WithLinks-AndTables-0.07.tar.gz + + perl + perl-URI + perl-HTML-FormatText-WithLinks + + programming/language/perl/perl-HTML-FormatText-WithLinks-AndTables/pspec.xml + + + perl-HTML-FormatText-WithLinks-AndTables + Converts HTML to Text with tables in tact. + + perl + perl-URI + perl-HTML-FormatText-WithLinks + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-14 + 0.07 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.07 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.07 Version Bump Pisi Linux Community admin@pisilinux.org 2016-06-09 - 2.7 + 0.06 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-05-16 - 2.7 + 2016-03-27 + 0.06 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTML-Parser + https://metacpan.org/release/HTML-Parser + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + HTML Parser + HTML ayrıştırmak için kütüphane + The HTML-Parser distribution is a collection of modules that parse and extract information from HTML documents. + HTML-Parser yazılımı, HTML dökümanlarından bilgi ayrıştıran ve seçip çıkaran bir modüller kolleksiyonudur. + La distribución HTML-Parser es una colección de módulos que analizan la sintaxis y extraen información de documentos HTML. + https://cpan.metacpan.org/authors/id/C/CA/CAPOEIRAB/HTML-Parser-3.75.tar.gz + + perl + perl-URI + perl-Test-Pod + perl-HTML-Tagset + perl-HTTP-Message + + programming/language/perl/perl-HTML-Parser/pspec.xml + + + perl-HTML-Parser + HTML Parser + + perl + perl-URI + perl-HTML-Tagset + perl-HTTP-Message + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-HTML-Parser + + + + + 2020-08-30 + 3.75 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-08-30 + 3.73 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-02 + 3.72 + Rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 3.72 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 3.72 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.71 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 3.71 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-HTML-Scrubber + https://metacpan.org/pod/HTML::Scrubber + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl extension for scrubbing/sanitizing html + HTML dosyalarını düzenlemek için bir perl modülü + If you wanna scrub or sanitize html input in a reliable an flexible fashion, then this module is for you. I wasn't satisfied with HTML::Sanitizer because it is based on HTML::TreeBuilder, so I thought I'd write something similar that works directly with HTML::Parser. + perl-HTML-Scrubber, HTML dosyalarını düzenlemek için bir perl modülüdür. + https://cpan.metacpan.org/authors/id/N/NI/NIGELM/HTML-Scrubber-0.19.tar.gz + + perl-Module-Build + perl-HTML-Parser + perl + + programming/language/perl/perl-HTML-Scrubber/pspec.xml + + + perl-HTML-Scrubber + Perl extension for scrubbing/sanitizing html + + perl-HTML-Parser + perl + + + /usr/lib + /usr/share/man + + + + + 2020-01-14 + 0.19 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.15 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.15 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 0.11 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-HTML-Tagset + https://metacpan.org/pod/HTML::Tagset + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Data tables useful in parsing HTML + HTML ayrıştırmak için yararlı bilgi tabloları + HTML-Tagset contains several data tables useful in various kinds of HTML parsing operations. + HTML-Tagset HTML ayrıştırmak için yararlı birçok bilgi tablosunu barındırır. + HTML-Tagset contiene varios tablas de datos útiles para varias operaciones de parsear HTML. + http://search.cpan.org/CPAN/authors/id/P/PE/PETDANCE/HTML-Tagset-3.20.tar.gz + + perl + + programming/language/perl/perl-HTML-Tagset/pspec.xml + + + perl-HTML-Tagset + Data tables useful in parsing HTML + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-HTML-Tagset + + + + + 2020-01-02 + 3.20 + Rebuilt + Blue Devil + bluedevil@sctzine.com + + + 2018-09-08 + 3.20 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 3.20 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 3.20 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-HTML-Template + https://metacpan.org/pod/HTML::Template + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Perl module to use HTML-like templating language + HTML benzeri taslak oluşturup kullanmak için perl modülü + This module attempts to make using HTML templates simple and natural. + Bu modül sayesinde oluşturduğunuz HTML taslaklarını perl ile kullanabilirsiniz. + https://cpan.metacpan.org/authors/id/S/SA/SAMTREGAR/HTML-Template-2.97.tar.gz + + perl + perl-CGI + + programming/language/perl/perl-HTML-Template/pspec.xml + + + perl-HTML-Template + Perl module to use HTML-like templating language + + perl + perl-CGI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-14 + 2.97 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2019-04-20 + 2.95 + Rebuild perl-CGI + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-26 + 2.95 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.95 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.95 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 2.95 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTML-Template-Pro + https://metacpan.org/pod/HTML::Template::Pro + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + LGPLv2 + library + programming.language.perl + Perl/XS module to use HTML Templates from CGI scripts + CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modülü + A fast and lightweight C/Perl+XS HTML Template engine implementation. + perl-HTML-Template-Pro, CGI betiklerindeki HTML şablonlarını kullanabilen Perl/XS modüldür. + http://search.cpan.org/CPAN/authors/id/V/VI/VIY/HTML-Template-Pro-0.9510.tar.gz + + perl + perl-JSON + libpcre-devel + + programming/language/perl/perl-HTML-Template-Pro/pspec.xml + + + perl-HTML-Template-Pro + Perl/XS module to use HTML Templates from CGI scripts + + perl + libpcre + perl-JSON + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-01-14 + 0.9510 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.9510 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.9510 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.9510 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 0.9510 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-HTML-Tree + https://metacpan.org/pod/HTML::Tree + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + library + app:console + programming.language.perl + A Perl module that build and scan parse-trees of HTML + HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülü + Build and scan parse-trees of HTML. It allows to represent,create and extract information from HTML syntax trees. + HTML etiketlerin ayrıştırıcı ağaçlarını inşa etmeye yarayan bir Perl modülüdür. HTML ağaçlarındaki bilgileri oluşturmaya, çıkartmaya ve sunmaya yarar. + https://cpan.metacpan.org/authors/id/K/KE/KENTNL/HTML-Tree-5.07.tar.gz + + perl + perl-HTML-Parser + perl-Module-Build + perl-Test-Fatal + + programming/language/perl/perl-HTML-Tree/pspec.xml + + + perl-HTML-Tree + A Perl module that build and scan parse-trees of HTML + + perl + perl-libwww + perl-HTML-Parser + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-14 + 5.07 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 5.06 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 5.03 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 5.03 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTTP-Body + https://metacpan.org/pod/HTTP::Body + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP Body Parser + HTTP Gövde Çözümleyici + HTTP::Body parses chunks of HTTP POST data and supports application/octet-stream, application/x-www-form-urlencoded, and multipart/form-data. + HTTP::Body, HTTP POST verisini çözümler ve application/octet-stream, application/x-www-form-urlencoded, ile multipart/form-data verilerini destekler. + http://search.cpan.org/CPAN/authors/id/G/GE/GETTY/HTTP-Body-1.22.tar.gz + + perl + perl-Test-Pod + perl-Test-Deep + perl-HTTP-Message + perl-Test-Pod-Coverage + + programming/language/perl/perl-HTTP-Body/pspec.xml + + + perl-HTTP-Body + HTTP Body Parser + + perl + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-14 + 1.22 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.22 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.22 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.22 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-HTTP-Cookies + https://metacpan.org/pod/HTTP::Cookies + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP cookie jars + HTTP cerez veritabanı işlemleri + This class is for objects that represent a "cookie jar" -- that is, a database of all the HTTP cookies that a given LWP::UserAgent object knows about. + Bu modül "cookie jar - çerez kavanozu" olarak da adlandırılan içinde HTTP çerezlerinin bulunduğu bir veritabanı nesnesi sınıfı sağlar. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Cookies-6.08.tar.gz + + perl + perl-HTTP-Date + perl-HTTP-Message + + programming/language/perl/perl-HTTP-Cookies/pspec.xml + + + perl-HTTP-Cookies + HTTP cookie jars + + perl + perl-HTTP-Date + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-13 + 6.08 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.01 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.01 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.01 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-HTTP-Daemon + https://metacpan.org/release/HTTP-Daemon + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + A simple http server class + Basit bir HTTP sunucu sınıfı + Instances of the HTTP::Daemon class are HTTP/1.1 servers that listen on a socket for incoming requests. + HTTP::Daemon sınıfı örnekleri HTTP/1.1 sunucusu üzerinden gelen istekleri dinler. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Daemon-6.12.tar.gz + + perl + perl-Module-Build + + + HTTP-Daemon-6.04-EU-MM-is-not-deprecated.patch + + programming/language/perl/perl-HTTP-Daemon/pspec.xml + + + perl-HTTP-Daemon + A simple http server class + + perl + perl-HTTP-Date + perl-HTTP-Message + perl-LWP-Mediatypes + + + /usr/share + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-07-20 + 6.12 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 6.06 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.01 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.01 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.01 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-HTTP-Date + https://metacpan.org/pod/HTTP::Date + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP::Date - Provides date conversion routines + HTTP::Date tarih-zaman dönüşümleri sağlayan perl modülüdür + This module provides functions that deal the date formats used by the HTTP protocol (and then some more). Only the first two functions, time2str() and str2time(), are exported by default. + perl-HTTP-Date modülü, HTTP protokolü tarafından kullnaılan tarih biçemlerini tanımak ve dönüştürmek ile ilgilenen bir perl modülüdür. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Date-6.05.tar.gz + + perl + + programming/language/perl/perl-HTTP-Date/pspec.xml + + + perl-HTTP-Date + HTTP::Date - Provides date conversion routines + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-11 + 6.05 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.02 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.02 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 6.02 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Config-Tiny + https://metacpan.org/release/Config-Tiny + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + A module for reading and writing .ini style files with as little code as possible + Mümkün olan en küçük kod ile .ini şeklindeki dosyaları okumaya ve yazmaya yarayan bir modül + perl-Config-Tiny is a perl class to read and write .ini style configuration files with as little code as possible, reducing load time and memory overhead. + perl-Config-Tiny, mümkün olan en küçük kod ile .ini şeklindeki dosyaları okumaya ve yazmaya yarayan perl modülü sunar. + https://cpan.metacpan.org/authors/id/R/RS/RSAVAGE/Config-Tiny-2.24.tgz + + perl + + programming/language/perl/perl-Config-Tiny/pspec.xml + + + perl-Config-Tiny + A module for reading and writing .ini style files with as little code as possible + + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-04-22 + 2.24 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-04-09 + 2.23 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Digest-SHA1 + https://metacpan.org/pod/Digest::SHA1 + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + SHA1 message digest algorithm + NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlayan bir Perl modülü + The Digest::SHA1 module allows you to use the NIST SHA-1 message digest algorithm from within Perl programs. The algorithm takes as input a message of arbitrary length and produces as output a 160-bit "fingerprint" or "message digest" of the input. + Bu modül NIST SHA-1 mesaj özetleme algoritmasını Perl programlarında kullanabilmenizi sağlar. Farklı uzunluklardaki mesajları alan algoritma, çıktı olarak 160 bitlik parmakizi veya mesaj özeti üretir. + El módulo Digest::SHA1 permite usar el algoritmo NIST SHA-1 desde programas Perl. El algoritmo acepta como entrada un mensaje de longitud arbitraria y produce un "fingerprint" (huella digital) o "message digest" de 160-bit. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/Digest-SHA1-2.13.tar.gz + + perl + + programming/language/perl/perl-Digest-SHA1/pspec.xml + + + perl-Digest-SHA1 + + perl + + + /usr/lib + /usr/share/doc/perl-Digest-SHA1 + /usr/share/man + + + + + 2020-01-02 + 2.13 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 2.13 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.13 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 2.13 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-GSSAPI + https://metacpan.org/pod/GSSAPI + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl extension providing access to the GSSAPIv2 library + GSSAPI kitaplığına erişim sağlayan perl modülü + perl-GSSAPI module gives access to the routines of the GSSAPI library, as described in rfc2743 and rfc2744 and implemented by the Kerberos-1.2 distribution from MIT. + perl-GSSAPI, RFC 2744'de açıklandığı gibi GSSAPI C bağlayıcılarını kullanan bir perl eklentisidir. + http://search.cpan.org/CPAN/authors/id/A/AG/AGROLMS/GSSAPI-0.28.tar.gz + + perl + mit-kerberos + e2fsprogs-devel + + + disable_failing_test.patch + + programming/language/perl/perl-GSSAPI/pspec.xml + + + perl-GSSAPI + Perl extension providing access to the GSSAPIv2 library + + perl + mit-kerberos + e2fsprogs + + + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2020-01-11 + 0.28 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.28 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.28 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.28 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 0.28 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-HTTP-Message + https://metacpan.org/release/HTTP-Message + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + HTTP::Message - HTTP tarzı mesaj (ana sınıf) + HTTP::Message nesnesi bazı HTTP başlıkları ve içerik gövdesi içerir. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/HTTP-Message-6.26.tar.gz + + perl + perl-IO-HTML + perl-HTTP-Date + perl-LWP-Mediatypes + perl-URI + perl-Try-Tiny + perl-Encode-Locale + + programming/language/perl/perl-HTTP-Message/pspec.xml + + + perl-HTTP-Message + HTTP::Message - HTTP style message (base class) + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man/man3 + + + + + 2020-10-01 + 6.26 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-07-20 + 6.25 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 6.24 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 6.22 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 6.18 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.13 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.06 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.06 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-Mail-SPF + https://metacpan.org/pod/Mail::SPF + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Mail::SPF - An object-oriented implementation of Sender Policy Framework. + Mail::SPF is an object-oriented implementation of Sender Policy Framework (SPF). + https://cpan.metacpan.org/authors/id/J/JM/JMEHNLE/mail-spf/Mail-SPF-v2.9.0.tar.gz + + perl + perl-URI + perl-Error + perl-NetAddr-IP + perl-Module-Build + perl-Net-DNS-Resolver-Programmable + + programming/language/perl/perl-Mail-SPF/pspec.xml + + + perl-Mail-SPF + + perl + perl-URI + perl-Error + perl-Net-DNS + perl-NetAddr-IP + perl-Net-DNS-Resolver-Programmable + + + /usr/bin + /usr/sbin + /usr/lib/perl5 + /usr/share/man + + + + + 2021-10-14 + 2.9.0 + First build + fury + uglyside@yandex.ru + + + + + + perl-Pango + https://metacpan.org/pod/Pango + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + programming.language.perl + Layout and render international text. + Pango is a library for laying out and rendering text, with an emphasis on internationalization. + https://cpan.metacpan.org/authors/id/X/XA/XAOC/Pango-1.227.tar.gz + + perl-Glib + perl-Cairo + pango-devel + perl-ExtUtils-Depends + perl-ExtUtils-PkgConfig + + programming/language/perl/perl-Pango/pspec.xml + + + perl-Pango + + pango + perl-Glib + perl-Cairo + + + /usr/lib/perl5 + /usr/share/man/man3 + /usr/share/doc + + + + + 2021-12-21 + 1.227 + First release + fury + uglyside@yandex.ru + + + + + + perl-Test-Exception + https://metacpan.org/pod/Test::Exception + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Module for testing exception based codes + Perl için exception tabanlı kod denetleme modülü + This module provides a few convenience methods for testing exception based code. It is built with Test::Builder and plays happily with Test::More and friends. + perl-Test-Exception, perl için exception tabanlı kod denetleme modülü içerir. + http://search.cpan.org/CPAN/authors/id/E/EX/EXODIST/Test-Exception-0.43.tar.gz + + perl + perl-Sub-Uplevel + + programming/language/perl/perl-Test-Exception/pspec.xml + + + perl-Test-Exception + Module for testing exception based codes + + perl + perl-Sub-Uplevel + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-Test-Exception + + + + + 2020-01-12 + 0.43 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.43 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.43 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.43 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 0.43 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-HTTP-Negotiate + https://metacpan.org/pod/HTTP::Negotiate + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + A complete implementation of the HTTP content negotiation algorithm + HTTP içerik sorgulama algoritması uygulaması + This module provides a complete implementation of the HTTP content negotiation algorithm specified in draft-ietf-http-v11-spec-00.ps chapter 12. Content negotiation allows for the selection of a preferred content representation based upon attributes of the negotiable variants and the value of the various Accept* header fields in the request. + Bu modül tam bir HTTP içerik sorgulama algoritması uygulaması içermektedir + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/HTTP-Negotiate-6.01.tar.gz + + perl + perl-HTTP-Date + perl-HTTP-Message + + programming/language/perl/perl-HTTP-Negotiate/pspec.xml + + + perl-HTTP-Negotiate + A complete implementation of the HTTP content negotiation algorithm + + perl + perl-HTTP-Date + perl-HTTP-Message + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-13 + 6.01 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.01 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.01 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.01 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-HTTP-Server-Simple + https://metacpan.org/pod/HTTP::Server::Simple + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Lightweight HTTP Server + Basit bir HTTP Sunucusu + HTTP::Server::Simple is a very simple standalone HTTP daemon with no non-core module dependencies. It's ideal for building a standalone http-based UI to your existing tools. + HTTP::Server::Simple basit, perl çekirdek modülleri dışında bağımlılığı olmadan tek başına çalışabilen bir HTTP hizmetidir. Tek başına çalışan, HTTP temelli bir uygulama yazmak istiyorsanız idealdir. + http://search.cpan.org/CPAN/authors/id/B/BP/BPS/HTTP-Server-Simple-0.52.tar.gz + + perl + perl-URI + + programming/language/perl/perl-HTTP-Server-Simple/pspec.xml + + + perl-HTTP-Server-Simple + Lightweight HTTP Server + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-14 + 0.52 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.52 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.51 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.51 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.51 + First release + Alihan Öztürk + alhan@pisilinux.org + + + + + + perl-Image-ExifTool + https://exiftool.org/index.html + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + A command-line application for reading, writing and editing meta information in image, audio and video files + Görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz bir komut satırı uygulaması + ExifTool is a platform-independent Perl library plus a command-line application for reading, writing and editing meta information in image, audio and video files. + ExifTool; görüntü, ses ve video dosyalarındaki meta bilgileri okuma, yazma ve düzenleme işlemleri için kullanabileceğiniz platformdan bağımsız bir Perl kütüphanesi ve komut satırı uygulamasıdır. + https://cpan.metacpan.org/authors/id/E/EX/EXIFTOOL/Image-ExifTool-12.00.tar.gz + + perl + + programming/language/perl/perl-Image-ExifTool/pspec.xml + + + perl-Image-ExifTool + A command-line application for reading, writing and editing meta information in image, audio and video files + + perl + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/doc/perl-Image-ExifTool/Changes + + + + perl-Image-ExifTool-docs + Documentation of perl-Image-ExifTool + perl-Image-ExifTool için belgelendirme dosyaları + perl-Image-ExifTool-docs, perl-Image-ExifTool için belgelendirme dosyaları içerir + + perl-Image-ExifTool + + + /usr/share/doc + + + + + 2020-07-20 + 12.00 + Major version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 11.91 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 11.86 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 11.84 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 11.01 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 10.40 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 10.00 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-27 + 10.00 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + perl-Import-Into + https://metacpan.org/release/Import-Into + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Import::Into - Import packages into other packages. + Paketleri diğer paketlere içe aktaran perl modülü + Import::Into provides global methods to import packages into other packages. + perl-Import-Into, paketleri diğer paketlere içe aktaran perl modülü sunar. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Import-Into-1.002005.tar.gz + + perl + perl-Module-Runtime + + programming/language/perl/perl-Import-Into/pspec.xml + + + perl-Import-Into + Import::Into - Import packages into other packages. + + perl + perl-Module-Runtime + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 1.002005 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-importer + https://metacpan.org/release/Importer + + Kamil Atlı + suvari@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Alternative but compatible interface to modules that export symbols. + Sembol üreten modüllere bir alternatif. + Alternative but compatible interface to modules that export symbols. + perl-importer, sembol üreten modüllere alternatif bir perl modülü sunar. + https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Importer-0.026.tar.gz + + perl + + programming/language/perl/perl-importer/pspec.xml + + + perl-importer + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-08-30 + 0.026 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-04-09 + 0.025 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-IO-HTML + https://metacpan.org/release/IO-HTML + + Blue Devil + bluedevil@sctzine.com + + Artistic + GPLv2 + library + programming.language.perl + IO::HTML Opens an HTML file with automatic charset detection + IO::HTML bir HTML dosyasını otomatik karakter seti tespiti ile açar. + IO::HTML provides an easy way to open a file containing HTML while automatically determining its encoding. + perl-IO-HTML, HTML içeren dosyayı açarken otomatik karakter seti sunarak açmayı kolaylaştıran bir yol sunar. + https://cpan.metacpan.org/authors/id/C/CJ/CJM/IO-HTML-1.004.tar.gz + + perl + + programming/language/perl/perl-IO-HTML/pspec.xml + + + perl-IO-HTML + IO::HTML Opens an HTML file with automatic charset detection + + perl + + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-10-01 + 1.004 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 1.001 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + perl-IO-Socket-INET6 + https://metacpan.org/pod/IO::Socket::INET6 + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Object interface for AF_INET|AF_INET6 domain sockets + AF_INET|AF_INET6 domain soketleri için nesne arayüzü + IO::Socket::INET6 provides an object interface to creating and using sockets in either AF_INET or AF_INET6 domains. It is built upon the IO::Socket interface and inherits all the methods defined by IO::Socket. + IO::Socket::INET6, AF_INET ya da AF_INET6 domainleri kullanılarak soket kullanma veya yaratmaya yarayan nesne arayüzü sağlar. + IO::Socket::INET6 facilita una interfaz a objetos para la creación y uso de sockets en dominios AF_INET o AF_INET6. Está construido sobre la interfaz IO::Socket y hereda todos los métodos definidos en IO::Socket. + http://search.cpan.org/CPAN/authors/id/S/SH/SHLOMIF/IO-Socket-INET6-2.72.tar.gz + + perl-Socket6 + perl-Test-Pod + perl-Module-Build + perl-Test-Pod-Coverage + perl-IO-Socket-SSL + perl + + programming/language/perl/perl-IO-Socket-INET6/pspec.xml + + + perl-IO-Socket-INET6 + + perl-Socket6 + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2016-04-24 + 2.72 + Docker built. + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2014-09-10 + 2.72 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-05-24 + 2.72 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-12-07 + 2.69 + Rebuild for perl + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-09-07 + 2.69 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-IO-Socket-IP + https://metacpan.org/release/IO-Socket-IP + + Blue Devil + bluedevil@sctzine.com + + Artistic + library + programming.language.perl + Family-neutral IP socket supporting both IPv4 and IPv6 + Hem IPv4 hem de IPv6 soketlerini destekleyen perl modülü + This module provides a protocol-independent way to use IPv4 and IPv6 sockets, as a drop-in replacement for IO::Socket::INET. Most constructor arguments and methods are provided in a backward-compatible way. + IO::Socket::IP, Bu modül hem IPv4 hem de IPv6 soketlerini protokolden bağımsız kullanmayı destekler. + https://cpan.metacpan.org/authors/id/P/PE/PEVANS/IO-Socket-IP-0.41.tar.gz + + perl + perl-Module-Build + + programming/language/perl/perl-IO-Socket-IP/pspec.xml + + + perl-IO-Socket-IP + Family-neutral IP socket supporting both IPv4 and IPv6 + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2020-10-01 + 0.41 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-08 + 0.39 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-IO-Socket-SSL + https://metacpan.org/release/IO-Socket-SSL + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Nearly transparent SSL encapsulation for IO::Socket::INET + IO::Socket::INET için neredeyse saydam SSL kapsülleme desteği + IO::Socket::SSL is a class implementing an object oriented interface to SSL sockets. The class is a descendent of IO::Socket::INET. + IO::Socket::SSL, SSL soketlerine nesne yönelimli arayüz sağlayan bir sınıftır. IO::Socket::INET'in gelişmişidir. + IO::Socket::SSL es una clase que implementa una inerfaz a sockets SSL, orientado a objetos. La clase es descendiente de IO::Socket::INET. + https://cpan.metacpan.org/authors/id/S/SU/SULLR/IO-Socket-SSL-2.068.tar.gz + + perl-Net-SSLeay + perl + + programming/language/perl/perl-IO-Socket-SSL/pspec.xml + + + perl-IO-Socket-SSL + Nearly transparent SSL encapsulation for IO::Socket::INET + + perl-Net-SSLeay + perl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-IO-Socket-SSL + + + + + 2020-04-08 + 2.068 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 2.067 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 2.066 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 2.052 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-19 + 2.047 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.043 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.024 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 2.024 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-IO-String + https://metacpan.org/pod/IO::String + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + IO::File interface for in-core strings in Perl + Perl için çekirdek içi metinler için bir G/Ç Dosya arayüzü + perl-IO-String is an IO::File interface for in-core strings in Perl. + perl-IO-String, Perl dili için çekirdek içi metinlere yönelik bir G/Ç Dosya arayüzüdür. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/IO-String-1.08.tar.gz + + perl + + programming/language/perl/perl-IO-String/pspec.xml + + + perl-IO-String + IO::File interface for in-core strings in Perl + + perl + + + /usr/lib + /usr/share/man + + + + + 2020-01-11 + 1.08 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.08 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.08 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.08 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 1.08 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-IPC-Run3 + https://metacpan.org/pod/IPC::Run3 + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + BSD + library + programming.language.perl + Perl module to run a subprocess with input/ouput redirection + Girdi/Çıktı yönlendirmeli bir alt süreç çalıştıran Perl Modülü + perl-IPC-Run3 is a Perl module that runs a subprocess with input/ouput redirection. + perl-IPC-Run3, Girdi/Çıktı yönlendirmeli bir alt süreç çalıştıran bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/R/RJ/RJBS/IPC-Run3-0.048.tar.gz + + perl + perl-Test-Pod + perl-Test-Pod-Coverage + + programming/language/perl/perl-IPC-Run3/pspec.xml + + + perl-IPC-Run3 + + perl + + + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 0.048 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-JSON + https://metacpan.org/pod/JSON + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + JSON (JavaScript Object Notation) encoder/decoder + JSON (JavaScript Nesne Gösterimi) kodlayıcı/çözücü + This module converts between JSON (JavaScript Object Notation) and Perl data structure into each other. For JSON, see http://www.crockford.com/JSON/. + Bu modül JSON ve perl veri yapılarını birbirleri içerisinde dönüştürebilir. JSON için bakınız: http://www.crockford.com/JSON/. + https://cpan.metacpan.org/authors/id/I/IS/ISHIGAKI/JSON-4.02.tar.gz + + perl + perl-JSON-XS + perl-Test-Pod + + programming/language/perl/perl-JSON/pspec.xml + + + perl-JSON + JSON (JavaScript Object Notation) encoder/decoder + + perl + perl-JSON-XS + perl-Test-Pod + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-01-13 + 4.02 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 2.90 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 2.90 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.90 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.90 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-JSON-XS + https://metacpan.org/release/JSON-XS + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + JSON serialising/deserialising, done correctly and fast + Doğru ve hızlı, JSON serileştirme/geri elde etme kitaplığı + This module converts Perl data structures to JSON and vice versa. Its primary goal is to be correct and its secondary goal is to be *fast*. To reach the latter goal it was written in C. + Bu modül Perl veri yapılarını JSON'a çevirir, tam tersini de yapabilir. Birincil amacı doğru çalışmak, ikincil amacı ise hızlı olmaktır. İkinciyi sağlamak için C dilinde yazılmıştır. + http://www.cpan.org/authors/id/M/ML/MLEHMANN/JSON-XS-4.02.tar.gz + + perl + perl-common-sense + perl-Canary-Stability + perl-Types-Serialiser + + programming/language/perl/perl-JSON-XS/pspec.xml + + + perl-JSON-XS + JSON serialising/deserialising, done correctly and fast + + perl + perl-common-sense + perl-Canary-Stability + perl-Types-Serialiser + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 4.02 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2019-06-22 + 4.02 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-07-26 + 3.03 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 3.03 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 3.02 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-libwww + https://metacpan.org/release/libwww-perl + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Application programming interface to the World-Wide Web + Perl için dünya çapında ağ programlama arayüzü + libwww-perl collection is a set of Perl modules which provides a simple and consistent application programming interface to the World-Wide Web. + libwww-perl, perl ile dünya çapında ağ (www) programlama yapabilmek için çesitli perl arayüzleri sunar. + La colección libwww-perl es un conjunto de módulos Perl que facilitan una interfaz de programación de aplicación, simple y consistente para la Web. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/libwww-perl-6.49.tar.gz + + perl + perl-NET-HTTP + perl-HTTP-Daemon + perl-HTML-Parser + perl-HTTP-Cookies + perl-File-Listing + perl-Encode-Locale + perl-HTTP-Negotiate + perl-WWW-Robotrules + perl-Test-Needs + perl-Test-Fatal + perl-Test-RequiresInternet + + programming/language/perl/perl-libwww/pspec.xml + + + perl-libwww + Application programming interface to the World-Wide Web + + perl + perl-NET-HTTP + perl-Try-Tiny + perl-Data-Dump + perl-HTTP-Daemon + perl-HTML-Parser + perl-HTTP-Cookies + perl-File-Listing + perl-Encode-Locale + perl-HTTP-Negotiate + perl-WWW-Robotrules + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2020-10-01 + 6.49 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-07-20 + 6.47 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 6.44 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 6.43 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.15 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.15 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 6.15 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-LWP-Mediatypes + https://metacpan.org/pod/LWP::MediaTypes + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + LWP::Mediatypes can guess media type for a file or a URL + Dosya veya URL'in ortam türünü öngörmeye yarayan perl modülü. + This module provides functions for handling media (also known as MIME) types and encodings. + Bu modül ortam türleri ve kodlaması hakkında yordamlar sağlar. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/LWP-MediaTypes-6.04.tar.gz + + perl-Test-Fatal + perl + + programming/language/perl/perl-LWP-Mediatypes/pspec.xml + + + perl-LWP-Mediatypes + LWP::MediaTypes can guess media type for a file or a URL + + perl + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2020-01-11 + 6.04 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.02 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.02 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-09-10 + 6.02 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-LWP-Protocol-https + https://metacpan.org/release/LWP-Protocol-https + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + LWP::Protocol::https - Provide https support for LWP::UserAgent + LWP::Protocol::https - LWP::UserAgent için https desteği + The LWP::Protocol::https module provides support for using https schemed URLs with LWP. This module is a plug-in to the LWP protocol handling, so you don't use it directly. Once the module is installed LWP is able to access sites using HTTP over SSL/TLS. + The LWP::Protocol::https LWP::UserAgent için https desteği sunar. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/LWP-Protocol-https-6.09.tar.gz + + perl + perl-NET-HTTP + perl-Mozilla-CA + perl-IO-Socket-SSL + + programming/language/perl/perl-LWP-Protocol-https/pspec.xml + + + perl-LWP-Protocol-https + LWP::Protocol::https - Provide https support for LWP::UserAgent + + perl + perl-libwww + perl-Try-Tiny + ca-certificates + perl-Mozilla-CA + perl-IO-Socket-SSL + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-07-20 + 6.09 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 6.07 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.07 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.06 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.06 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 6.06 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Mail-AuthenticationResults + https://metacpan.org/pod/Mail::AuthenticationResults + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Object Oriented Authentication-Results Headers. + This parser copes with most styles of Authentication-Results header seen in the wild, but is not yet fully RFC7601 compliant. + https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-AuthenticationResults-2.20210915.tar.gz + + perl + perl-JSON + perl-Clone + perl-Test-Exception + + programming/language/perl/perl-Mail-AuthenticationResults/pspec.xml + + + perl-Mail-AuthenticationResults + + perl-JSON + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 2.20210915 + First build + fury + uglyside@yandex.ru + + + + + + perl-Mail-DKIM + https://metacpan.org/pod/Mail::DKIM + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Signs/verifies Internet mail with DKIM/DomainKey signatures. + This module implements the various components of the DKIM and DomainKeys message-signing and verifying standards for Internet mail. + https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Mail-DKIM-1.20220408.tar.gz + + perl + perl-Clone + perl-Net-DNS + perl-mailtools + perl-YAML-LibYAML + perl-Crypt-OpenSSL-RSA + perl-Test-RequiresInternet + perl-Net-DNS-Resolver-Mock + perl-Mail-AuthenticationResults + + programming/language/perl/perl-Mail-DKIM/pspec.xml + + + perl-Mail-DKIM + + perl-Net-DNS + perl-mailtools + perl-Crypt-OpenSSL-RSA + perl-Mail-AuthenticationResults + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2022-04-14 + 1.20220408 + Version bump. + fury + uglyside@yandex.ru + + + 2021-09-18 + 1.20200907 + First build + fury + uglyside@yandex.ru + + + + + + perl-mailtools + https://metacpan.org/pod/MailTools + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + MailTools - bundle of ancient email modules. + MailTools is a bundle: an ancient form of combining packages into one distribution. + https://cpan.metacpan.org/authors/id/M/MA/MARKOV/MailTools-2.21.tar.gz + + perl-timedate + + programming/language/perl/perl-mailtools/pspec.xml + + + perl-mailtools + + perl-timedate + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 2.21 + First build + fury + uglyside@yandex.ru + + + + + + perl-Math-Random-ISAAC + https://metacpan.org/pod/Math::Random::ISAAC + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Perl interface to the ISAAC PRNG algorithm. + Perl interface to the ISAAC PRNG algorithm. + https://cpan.metacpan.org/authors/id/J/JA/JAWNSY/Math-Random-ISAAC-1.004.tar.gz + + perl + perl-Test-NoWarnings + + programming/language/perl/perl-Math-Random-ISAAC/pspec.xml + + + perl-Math-Random-ISAAC + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 1.004 + First build + fury + uglyside@yandex.ru + + + + + + perl-Mock-Config + https://metacpan.org/pod/Mock::Config + + fury + uglyside@yandex.ru + + Artistic_2 + library + programming.language.perl + Mock::Config - temporarily set Config or XSConfig values. + Mock::Config - temporarily set Config or XSConfig values. + https://cpan.metacpan.org/authors/id/R/RU/RURBAN/Mock-Config-0.03.tar.gz + + perl + + programming/language/perl/perl-Mock-Config/pspec.xml + + + perl-Mock-Config + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2021-12-21 + 0.03 + First release + fury + uglyside@yandex.ru + + + + + + perl-Module-Build + https://metacpan.org/pod/Module::Build + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Build and install Perl modules. + Per modüllerini inşa eder ve sisteme yükler + perl-Module-Build Module::Build is a system for building, testing, and installing Perl modules. + perl-Module-Find, Module::Build Perl modüllerini yapan, test eden ve yükleyen bir sistemdir. + https://cpan.metacpan.org/authors/id/L/LE/LEONT/Module-Build-0.4229.tar.gz + + perl + + programming/language/perl/perl-Module-Build/pspec.xml + + + perl-Module-Build + + perl + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 0.4229 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-09-02 + 0.4220 + Remove unneded dependency + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-26 + 0.4220 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.4220 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.4216 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.4216 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-module-pluggable + https://metacpan.org/pod/Module::Pluggable + + Kamil Atlı + suvari@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + automatically give your module the ability to have plugins + Modülünüze otomatik olarak eklenti kullanma yeteneği verin + automatically give your module the ability to have plugins + https://cpan.metacpan.org/authors/id/S/SI/SIMONW/Module-Pluggable-5.2.tar.gz + + perl + + programming/language/perl/perl-module-pluggable/pspec.xml + + + perl-module-pluggable + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-04-09 + 5.2 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Module-Runtime + https://metacpan.org/release/Module-Runtime + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Module::Runtime - runtime module handling + Çalışma zamanında modülleri idare eden perl modülü + The functions exported by this module deal with runtime handling of Perl modules, which are normally handled at compile time. This module avoids using any other modules, so that it can be used in low-level infrastructure. + perl-Module-Runtime, çalışma zamanında modülleri idare eden perl modülü sunar. + https://cpan.metacpan.org/authors/id/Z/ZE/ZEFRAM/Module-Runtime-0.016.tar.gz + + perl + perl-Module-Build + perl-Test-Pod + perl-Test-Pod-Coverage + + programming/language/perl/perl-Module-Runtime/pspec.xml + + + perl-Module-Runtime + Module::Runtime - runtime module handling + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 0.016 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Moo + https://metacpan.org/release/Moo + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Moo - Minimalist Object Orientation (with Moose compatibility) + Moo - Minimalist Nesne Yönelim Sistemi. + perl-Moo is an extremely light-weight Object Orientation system. It allows one to concisely define objects and roles with a convenient syntax that avoids the details of Perl's object system. Moo contains a subset of Moose and is optimised for rapid startup. + perl-Moo, minimalist nesne yönelim sistemi olan bir perl modülü sunar. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Moo-2.004000.tar.gz + + perl + perl-Role-Tiny + perl-Sub-Quote + perl-Module-Runtime + perl-Class-Method-Modifiers + perl-Test-Fatal + + programming/language/perl/perl-Moo/pspec.xml + + + perl-Moo + Moo - Minimalist Object Orientation (with Moose compatibility) + + perl + perl-Role-Tiny + perl-Sub-Quote + perl-Import-Into + perl-Module-Runtime + perl-Class-Method-Modifiers + perl-Devel-GlobalDestruction + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 2.004000 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Mozilla-CA + https://metacpan.org/release/Mozilla-CA + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Mozilla::CA - Mozilla's CA cert bundle in PEM format + Mozilla::CA - PEM biçeminde Mozilla CA sertifikaları + Mozilla::CA provides a copy of Mozilla's bundle of Certificate Authority certificates in a form that can be consumed by modules and libraries based on OpenSSL. + Mozilla::CA, OpenSSL,e bağlı kitaplik ve modüller tarafından kullanılabilecek olan Mozilla Certificate Authority sertifikalarını toplu şekilde sunar. + https://cpan.metacpan.org/authors/id/A/AB/ABH/Mozilla-CA-20200520.tar.gz + + perl + + programming/language/perl/perl-Mozilla-CA/pspec.xml + + + perl-Mozilla-CA + Mozilla::CA - Mozilla's CA cert bundle in PEM format + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-05-24 + 20200520 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 20180117 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-09-08 + 20180117 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 20160104 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 20160104 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 20160104 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Net-DNS + https://metacpan.org/release/Net-DNS + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl interface to the DNS resolver + Net::DNS, bir DNS (Domain Name System -Alan Adı Sistemi) çözücüsü olarak işleyen bir Perl modülleri kolleksiyonudur. + Net::DNS is a collection of Perl modules that act as a Domain Name System (DNS) resolver. It allows the programmer to perform DNS queries that are beyond the capabilities of gethostbyname and gethostbyaddr. + Net::DNS, bir DNS (Domain Name System -Alan Adı Sistemi) çözücüsü olarak işleyen bir Perl modülleri kolleksiyonudur. Programcıya isim ile bağlantı sağlama (gethostbyname) ve adres ile bağlantı sağlamanın (gethostbyaddr) ötesinde olan DNS sorgularının çalışması için izin verir. + Net::DNS es una collección de módulos Perl con funciones de un servidor de nombres de dominio (DNS). Permite al programador realizar consultas DNS más allá de las facilidades de gethostbyname y gethostbyaddr. + https://cpan.metacpan.org/authors/id/N/NL/NLNETLABS/Net-DNS-1.27.tar.gz + + perl + perl-Test-Pod + perl-Digest-HMAC + perl-Net-LibIDN2 + + programming/language/perl/perl-Net-DNS/pspec.xml + + + perl-Net-DNS + Perl interface to the DNS resolver + + perl + perl-Net-LibIDN2 + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2020-10-01 + 1.27 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-07-20 + 1.26 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-06-02 + 1.24 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Net-DNS-Resolver-Mock + https://metacpan.org/release/Net-DNS-Resolver-Mock + + PisiLinux Community + admins@pisilinux.org + + PerlArtistic + library + programming.language.perl + Mock a DNS Resolver object for testing + Mock a DNS Resolver object for testing + Mock a DNS Resolver object for testing + Mock a DNS Resolver object for testing + https://cpan.metacpan.org/authors/id/M/MB/MBRADSHAW/Net-DNS-Resolver-Mock-1.20200215.tar.gz + + perl + perl-Net-DNS + perl-Test-Exception + + programming/language/perl/perl-Net-DNS-Resolver-Mock/pspec.xml + + + perl-Net-DNS-Resolver-Mock + + perl + perl-Net-DNS + perl-Test-Exception + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2021-10-14 + 1.20200215 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Net-DNS-Resolver-Programmable + https://metacpan.org/pod/Net::DNS::Resolver::Programmable + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + programmable DNS resolver class for offline emulation of DNS. + Net::DNS::Resolver::Programmable is a Net::DNS::Resolver descendant class that allows a virtual DNS to be emulated instead of querying the real DNS. + https://cpan.metacpan.org/authors/id/B/BI/BIGPRESH/Net-DNS-Resolver-Programmable-0.009.tar.gz + + perl + perl-Net-DNS + perl-Module-Build + + programming/language/perl/perl-Net-DNS-Resolver-Programmable/pspec.xml + + + perl-Net-DNS-Resolver-Programmable + + perl + perl-Net-DNS + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.009 + First build + fury + uglyside@yandex.ru + + + + + + perl-NET-HTTP + https://metacpan.org/pod/Net::HTTP + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Low-level HTTP connection (client) + Düşük-seviye HTTP bağlantı istemcisi + The Net::HTTP class is a low-level HTTP client. An instance of the Net::HTTP class represents a connection to an HTTP server. The HTTP protocol is described in RFC 2616. The Net::HTTP class supports HTTP/1.0 and HTTP/1.1. + Net::HTTP düşük-seviye HTTP bağlantı istemcisi sınıfı sunar. + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/Net-HTTP-6.19.tar.gz + + perl + perl-URI + + programming/language/perl/perl-NET-HTTP/pspec.xml + + + perl-NET-HTTP + Low-level HTTP connection (client) + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-13 + 6.19 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.09 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.09 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.09 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 6.09 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-Net-LibIDN2 + https://metacpan.org/release/Net-LibIDN2 + + Blue Devil + bluedevil@sctzine.com + + Artistic + library + programming.language.perl + Net::LibIDN2 - Perl bindings for GNU Libidn2 + GNU Libidn2 için perl bağlayıcıları. + Provides bindings for GNU Libidn2, a C library for handling internationalized domain names based on IDNA 2008, Punycode and TR46. + perl-Net-LibIDN2, GNU Libidn2 için perl bağlayıcıları sunar. + https://cpan.metacpan.org/authors/id/T/TH/THOR/Net-LibIDN2-1.01.tar.gz + + perl + libidn2-devel + perl-Module-Build + + programming/language/perl/perl-Net-LibIDN2/pspec.xml + + + perl-Net-LibIDN2 + Net::LibIDN2 - Perl bindings for GNU Libidn2 + + perl + libidn2 + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/perl + + + + + 2020-02-22 + 1.01 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Net-Pcap + https://metacpan.org/release/Net-Pcap + + Blue Devil + bluedevil@sctzine.com + + GPL + app:console + library + programming.language.perl + Interface to pcap(3) LBL packet capture library + pcap(3) LBL paket yakalama kitaplığı arayüzü + The Net::Pcap module is a Perl binding to the LBL pcap(3) packet capture library. + Net::Pcap modülü, pcap(3) LBL paket yakalama kitaplığı için bir Perl arayüzüdür. + https://cpan.metacpan.org/authors/id/S/SA/SAPER/Net-Pcap-0.18.tar.gz + + perl + libpcap-devel + + + Net-Pcap-0.18-Adapt-a-test-to-libpcap-1.8.0.patch + Net-Pcap-0.18-Fix-build-with-libpcap-1.9.0.patch + + programming/language/perl/perl-Net-Pcap/pspec.xml + + + perl-Net-Pcap + Interface to pcap(3) LBL packet capture library + + perl + libpcap + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-08 + 0.18 + Version bump + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Net-RawIP + https://metacpan.org/pod/Net::RawIP + + Blue Devil + bluedevil@sctzine.com + + Artistic + library + programming.language.perl + Perl extension to manipulate raw IP packets with interface to libpcap + Raw IP adreslerini libpcap ile değiştirmeye yarayan perl eklentisi. + Net::RawIP, a perl module can to manipulate raw IP packets, with an optional feature for manipulating Ethernet headers. + Net::RawIP, ham IP paketlerini ve ethernet başlıklarını değiştirebilen bir perl modülüdür. + http://search.cpan.org/CPAN/authors/id/S/SA/SAPER/Net-RawIP-0.25.tar.gz + + perl + libpcap-devel + + programming/language/perl/perl-Net-RawIP/pspec.xml + + + perl-Net-RawIP + Perl extension to manipulate raw IP packets with interface to libpcap + + perl + libpcap + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-08 + 0.25 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Net-SMTP-SSL + https://metacpan.org/pod/Net::SMTP::SSL + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + SSL Support for Net::SMTP + Net::SMTP için SSL desteği + perl-NET-SMTP-SSL implements the same API as Net::SMTP but uses IO::Socket::SSL for its network operations. + perl-Net-SMTP-SSL, SMTP protokolüne SSL desteği katarak güvenli e-posta gönderimi sağlar. + http://www.cpan.org/authors/id/R/RJ/RJBS/Net-SMTP-SSL-1.04.tar.gz + + perl + perl-IO-Socket-SSL + + programming/language/perl/perl-Net-SMTP-SSL/pspec.xml + + + perl-Net-SMTP-SSL + SSL Support for Net::SMTP + + perl + perl-IO-Socket-SSL + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-01-13 + 1.04 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-09-08 + 1.04 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.04 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.03 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Net-SSLeay + https://metacpan.org/pod/Net::SSLeay + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Net::SSLeay - Perl extension for using OpenSSL + OpenSSL erişimi için Perl modülü + Net::SMPP is an implementation of Short Message Peer to Peer protocol over TCP. This protocol is frequently used in the telecoms and mobile operator world to pass short messages between systems that implement the short message service (SMS). + Net::SMPP, TCP üzerinden kısa mesaj gönderimi gerçeklemesidir. Bu iletişim kuralı genelde telekom alanında kısa mesaj servisini (SMS) gerçekleştirmek için kullanılır. + Net::SMPP es una implementación del protocolo TCP de mensajes cortos sobre Peer to Peer. Este protocolo está frecuentemente usado por operadoras de telecom y móviles para pasar mensajes cortos entre sistemas que implementan el servicio de mensajes cortos (SMS). + https://cpan.metacpan.org/authors/id/C/CH/CHRISN/Net-SSLeay-1.88.tar.gz + + perl + openssl-devel + perl-Test-Exception + + programming/language/perl/perl-Net-SSLeay/pspec.xml + + + perl-Net-SSLeay + Net::SSLeay - Perl extension for using OpenSSL + + perl + zlib + openssl + + + /usr/lib + /usr/share/man + /usr/share/doc/perl-Net-SSLeay + + + + + 2020-01-13 + 1.88 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.85 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.80 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.72 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.72 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-NetAddr-IP + https://metacpan.org/pod/NetAddr::IP + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Manages IPv4 and IPv6 addresses and subnets. + This module provides an object-oriented abstraction on top of IP addresses or IP subnets that allows for easy manipulations. + https://cpan.metacpan.org/authors/id/M/MI/MIKER/NetAddr-IP-4.079.tar.gz + + perl + + programming/language/perl/perl-NetAddr-IP/pspec.xml + + + perl-NetAddr-IP + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 4.079 + First build + fury + uglyside@yandex.ru + + + + + + perl-NetPacket + https://metacpan.org/release/NetPacket + + Blue Devil + bluedevil@sctzine.com + + GPL + app:console + library + programming.language.perl + assemble/disassemble network packets at the protocol level + Protokol seviyesinde ağ paketlerini assemble/disassemble etmeye yarayan bir araç. + "NetPacket" provides a base class for a cluster of modules related to decoding and encoding of network protocols. Each "NetPacket" descendent module knows how to encode and decode packets for the network protocol it implements. Consult the documentation for the module in question for protocol-specific implementation. + NetPacket" ağ protokollerini encode/decode etmeye yarayan bir çok temel sınıf sağlayan bir perl kitaplığıdır. + https://cpan.metacpan.org/authors/id/Y/YA/YANICK/NetPacket-1.7.2.tar.gz + + perl + + programming/language/perl/perl-NetPacket/pspec.xml + + + perl-NetPacket + assemble/disassemble network packets at the protocol level + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-08 + 1.7.2 + Version bump + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Params-Util + https://metacpan.org/release/Params-Util + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Simple, compact and correct param-checking functions + Basit, az yer kaplayan ve doğru parametre kontrol fonksiyonları + perl-Params-Util is a Perl module that has simple, compact and correct param-checking functions. + perl-Params-Util basit, az yer kaplayan ve doğru parametre kontrol fonksiyonları içeren bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/A/AD/ADAMK/Params-Util-1.07.tar.gz + + perl + + programming/language/perl/perl-Params-Util/pspec.xml + + + perl-Params-Util + Simple, compact and correct param-checking functions + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-09-23 + 1.07 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-parse-yapp + https://search.cpan.org/dist/Parse-Yapp + + Pisi Linux Admins + admin@pisilinux.org + + PerlArtistic + library + programming.language.perl + Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules + Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules + Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules + Perl/CPAN Module Parse::Yapp : Generates OO LALR parser modules + https://cpan.metacpan.org/authors/id/W/WB/WBRASWELL/Parse-Yapp-1.06.tar.gz + programming/language/perl/perl-parse-yapp/pspec.xml + + + perl-parse-yapp + + /usr/bin + /usr/lib/perl5 + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2020-12-18 + 1.21 + First release. + Pisi Linux Admins + admin@pisilinux.org + + + + + + perl-Path-Class + https://metacpan.org/pod/Path::Class + + fury + uglyside@yandex.ru + + GPL-1 + library + programming.language.perl + Cross-platform path specification manipulation for Perl. + Cross-platform path specification manipulation for Perl. + https://cpan.metacpan.org/authors/id/K/KW/KWILLIAMS/Path-Class-0.37.tar.gz + + perl + perl-Module-Build + + programming/language/perl/perl-Path-Class/pspec.xml + + + perl-Path-Class + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.37 + First build + fury + uglyside@yandex.ru + + + + + + perl-path-tiny + https://metacpan.org/release/Path-Tiny + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + programming.language.perl + File path utility + Dosya yolu aracı + This module provides a small, fast utility for working with file paths. + Bu modül dosya yolları ile çalışabilmek için hızlı ve küçük bir araç takımı sunar. + https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Path-Tiny-0.114.tar.gz + + perl + + programming/language/perl/perl-path-tiny/pspec.xml + + + perl-path-tiny + File path utility + + perl + + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-05-18 + 0.114 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 0.112 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-29 + 0.110 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 0.108 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-11-15 + 0.108 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Pod-Coverage + https://metacpan.org/pod/Pod::Coverage + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + app:console + programming.language.perl + Checks if the documentation of a module is comprehensive + Bir modülün belgelendirmesinin kapsamını kontrol eder + perl-Pod-Coverage checks if the documentation of a module is comprehensive. + perl-Pod-Coverage bir modülün belgelendirmesinin kapsamını kontrol eden bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/R/RC/RCLAMP/Pod-Coverage-0.23.tar.gz + + perl + perl-Test-Pod + perl-Devel-Symdump + + programming/language/perl/perl-Pod-Coverage/pspec.xml + + + perl-Pod-Coverage + Checks if the documentation of a module is comprehensive + + perl + perl-Test-Pod + perl-Devel-Symdump + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-02 + 0.23 + Rebuilt + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 0.23 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.23 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.23 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.23 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Probe-Perl + https://metacpan.org/pod/Probe::Perl + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Information about the currently running perl + Çalışan Perl hakkında bilgi verir + perl-Probe-Perl is a Perl module for getting information about the currently running perl. + perl-Probe-Perl çalışan Perl hakkında bilgi veren bir Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/K/KW/KWILLIAMS/Probe-Perl-0.03.tar.gz + + perl + + programming/language/perl/perl-Probe-Perl/pspec.xml + + + perl-Probe-Perl + + perl + + + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 0.03 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-return-multilevel + https://metacpan.org/release/Data-Munge/ + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Various utility functions + Various utility functions + https://cpan.metacpan.org/authors/id/M/MA/MAUKE/Return-MultiLevel-0.05.tar.gz + + perl + perl-data-munge + perl-Test-Fatal + + programming/language/perl/perl-return-multilevel/pspec.xml + + + perl-return-multilevel + + perl + perl-data-munge + perl-Test-Fatal + + + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 0.05 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Role-Tiny + https://metacpan.org/release/Role-Tiny + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Role::Tiny - Roles: a nouvelle cuisine portion size slice of Moose + Minimal rol kompozisyon aracı + Role::Tiny is a minimalist role composition tool. + perl-Role-Tiny, minimal rol kompozisyon aracı olan perl modülü sunar. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Role-Tiny-2.001004.tar.gz + + perl + perl-Test-Fatal + + programming/language/perl/perl-Role-Tiny/pspec.xml + + + perl-Role-Tiny + Role::Tiny - Roles: a nouvelle cuisine portion size slice of Moose + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 2.001004 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-scope-guard + https://metacpan.org/pod/Scope::Guard + + Kamil Atlı + suvari@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Lexically-scoped resource management + Sözcüksel olarak kapsamlı kaynak yönetimi + Lexically-scoped resource management + https://cpan.metacpan.org/authors/id/C/CH/CHOCOLATE/Scope-Guard-0.21.tar.gz + + perl + + programming/language/perl/perl-scope-guard/pspec.xml + + + perl-scope-guard + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-04-09 + 0.21 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Socket6 + https://search.cpan.org/dist/Socket6 + + PisiLinux Community + admins@pisilinux.org + + PerlArtistic + library + programming.language.perl + A getaddrinfo/getnameinfo support module + A getaddrinfo/getnameinfo support module + A getaddrinfo/getnameinfo support module + A getaddrinfo/getnameinfo support module + https://cpan.metacpan.org/authors/id/U/UM/UMEMOTO/Socket6-0.29.tar.gz + + perl + + programming/language/perl/perl-Socket6/pspec.xml + + + perl-Socket6 + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2021-10-14 + 0.29 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-Sort-Versions + https://metacpan.org/release/Sort-Versions + + Blue Devil + bluedevil@sctzine.com + + Artistic + library + programming.language.perl + Sort::Versions - a perl 5 module for sorting of revision-like numbers. + Revizyon-benzeri sürüm numaralarını sıralayabilen perl modülüdür. + Sort::Versions allows easy sorting of mixed non-numeric and numeric strings, like the 'version numbers' that many shared library systems and revision control packages use.l. + Bu modül revizyon-benzeri sürüm numaralarını sıralayabilen perl modülüdür. + https://cpan.metacpan.org/authors/id/N/NE/NEILB/Sort-Versions-1.62.tar.gz + + perl + + programming/language/perl/perl-Sort-Versions/pspec.xml + + + perl-Sort-Versions + Sort::Versions - a perl 5 module for sorting of revision-like numbers. + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-04-10 + 1.62 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-String-ShellQuote + https://metacpan.org/pod/String::ShellQuote + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Quote strings for passing through the shell + Kabuk veya kabuk benzeri bir nesneden geçecek dizgeleri tırnak içine alma yordamları + This module contains some functions which are useful for quoting strings which are going to pass through the shell or a shell-like object. + Bu modül kabuk veya kabuk benzeri bir nesneden geçecek dizgeleri tırnak içine almak için fonksiyonlar içerir. + El módulo contiene algunas funciones útiles para encerrar cadenas de texto entre comillas, para pasarlo a una shell o a un objeto similar. + http://search.cpan.org/CPAN/authors/id/R/RO/ROSCH/String-ShellQuote-1.04.tar.gz + + perl + + programming/language/perl/perl-String-ShellQuote/pspec.xml + + + perl-String-ShellQuote + Quote strings for passing through the shell + + perl + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/perl-String-ShellQuote + + + + + 2020-01-13 + 1.04 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.04 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.04 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.04 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.04 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Sub-Exporter + https://metacpan.org/release/Sub-Exporter + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + A sophisticated exporter written in Perl for custom-built routines + Özelleştirilmiş karmaşık inşa yordamları için Perl dilinde yazılmış bir dışa aktarıcı + perl-Sub-Exporter is a Perl module that is a sophisticated exporter for custom-built routines. + perl-Sub-Exporter özelleştirilmiş karmaşık inşa yordamları için dışa aktarıcı bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Exporter-0.987.tar.gz + + perl + perl-Params-Util + perl-Sub-Install + perl-Data-OptList + + programming/language/perl/perl-Sub-Exporter/pspec.xml + + + perl-Sub-Exporter + A sophisticated exporter written in Perl for custom-built routines + + perl + perl-Params-Util + perl-Sub-Install + perl-Data-OptList + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-09-23 + 0.987 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Sub-Exporter-Progressive + https://metacpan.org/release/Sub-Exporter-Progressive + + Blue Devil + bluedevil@sctzine.com + + Artistic + GPLv2 + library + programming.language.perl + perl-Sub-Exporter-Progressive is a Sub::Exporter wrapper + Sub-Exporter için sarmalayıcı perl modülü + perl-Sub-Exporter-Progressive is a Sub::Exporter wrapper that will let your users just use Exporter if all they are doing is picking exports, but use Sub::Exporter if your users try to use Sub::Exporter's more advanced features, like renaming exports, if they try to use them. + perl-Sub-Exporter-Progressive, Sub-Exporter için sarmalayıcı perl modülü içerir. + https://cpan.metacpan.org/authors/id/F/FR/FREW/Sub-Exporter-Progressive-0.001013.tar.gz + + perl + + programming/language/perl/perl-Sub-Exporter-Progressive/pspec.xml + + + perl-Sub-Exporter-Progressive + perl-Sub-Exporter-Progressive is a Sub::Exporter wrapper + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-09-23 + 0.001013 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Sub-Identify + https://metacpan.org/pod/Sub::Identify + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Perl module to retrieve names of code references + Kod referanslarının adlarını almak için Perl modülü + perl-Sub-Identify is a Perl module allowing you to retrieve the real name of code references through the introspection mechanism. + perl-Sub-Identify, introspection mekanizmasıyla kod referanslarının adlarını almaya yarayan bir Perl modülüdür. + http://www.cpan.org/authors/id/R/RG/RGARCIA/Sub-Identify-0.14.tar.gz + + perl + perl-Test-Pod + + programming/language/perl/perl-Sub-Identify/pspec.xml + + + perl-Sub-Identify + Perl module to retrieve names of code references + + perl + perl-Test-Pod + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 0.14 + Rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.14 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.12 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-sub-info + https://metacpan.org/pod/Sub::Info + + Kamil Atlı + suvari@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Tool for inspecting subroutines. + Altyordamları denetleme aracı. + Tool for inspecting subroutines. + https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Sub-Info-0.002.tar.gz + + perl + perl-importer + + programming/language/perl/perl-sub-info/pspec.xml + + + perl-sub-info + + perl + perl-importer + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-04-09 + 0.002 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Sub-Install + https://metacpan.org/release/Sub-Install + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Sub::Install - install subroutines into packages easily + Paketlere altyordamları kolayca yüklemeye yarayan bir Perl Modülü + perl-Sub-Install is a Perl module that installs subroutines into packages easily. + perl-Sub-Install, paketlere altyordamları kolayca yükleyen bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Sub-Install-0.928.tar.gz + + perl + + programming/language/perl/perl-Sub-Install/pspec.xml + + + perl-Sub-Install + Sub::Install - install subroutines into packages easily + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-09-23 + 0.928 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Sub-Quote + https://metacpan.org/release/Sub-Quote + + Blue Devil + bluedevil@sctzine.com + + Perlv5 + library + programming.language.perl + Sub::Quote - Efficient generation of subroutines via string eval + string eval ile verimli alt-rutin üretimi. + perl-Sub-Quote provides performant ways to generate subroutines from strings. + perl-Sub-Quote, string eval ile verimli alt-rutin üretimi yapan bir perl modülü sunar. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Sub-Quote-2.006006.tar.gz + + perl + perl-Test-Fatal + + programming/language/perl/perl-Sub-Quote/pspec.xml + + + perl-Sub-Quote + Sub::Quote - Efficient generation of subroutines via string eval + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-09-23 + 2.006006 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Sub-Uplevel + https://metacpan.org/pod/Sub::Uplevel + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Module to apparently run a function in a higher stack frame + Bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmak için perl modülü + Like Tcl's uplevel() function, but not quite so dangerous. The idea is just to fool caller(). All the really naughty bits of Tcl's uplevel() are avoided. + perl-Sub-Uplevel modülü, bir fonksiyonu daha yüksek bir yığın çerçevesinde çalıştırmaktadır. + http://www.cpan.org/authors/id/D/DA/DAGOLDEN/Sub-Uplevel-0.2800.tar.gz + + perl + + programming/language/perl/perl-Sub-Uplevel/pspec.xml + + + perl-Sub-Uplevel + Module to apparently run a function in a higher stack frame + + perl + + + /usr/lib + /usr/share/doc/perl-Sub-Uplevel + /usr/share/man + + + + + 2020-01-02 + 0.2800 + Rebuilt + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.2800 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.2600 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 0.25 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Super + https://metacpan.org/pod/SUPER + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Control superclass method dispatch. + Üst sınıf yönteminin gönderilmesini denetle. + Control superclass method dispatch. + perl-Super, ust sınıf yönteminin gönderilmesini denetler. + https://cpan.metacpan.org/authors/id/C/CH/CHROMATIC/SUPER-1.20190531.tar.gz + + perl + perl-Sub-Identify + perl-Module-Build + + programming/language/perl/perl-Super/pspec.xml + + + perl-Super + Control superclass method dispatch. + + perl + perl-Sub-Identify + perl-Module-Build + + + /usr/lib + /usr/share + /usr/share/doc + + + + + 2020-01-02 + 20190531 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 20141117 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 20141117 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-template-toolkit + https://metacpan.org/release/Template-Toolkit + + PisiLinux Community + admins@pisilinux.org + + PerlArtistic + library + programming.language.perl + Perl template processing system + Perl taslak işleme sistemi + The Template Toolkit is a collection of Perl modules which implement a fast, flexible, powerful and extensible template processing system. + perl-template-toolkit, hızlı, esnek, genişletilebilir ve güçlü taslak işleme sistemi sunan perl modülleri kolleksiyonudur. + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/Template-Toolkit-3.009.tar.gz + + perl + perl-AppConfig + + programming/language/perl/perl-template-toolkit/pspec.xml + + + perl-template-toolkit + Perl template processing system + + perl + perl-AppConfig + + + /usr/share + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + + + + + 2020-07-20 + 3.009 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-04-08 + 3.008 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-29 + 3.007 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 3.003 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-11-16 + 2.28 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-term-table + https://metacpan.org/pod/Term::Table + + Kamil Atlı + suvari@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Format a header and rows into a table + Üstbilgi ve satırları tabloya biçimlendirme + Format a header and rows into a table + https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Term-Table-0.015.tar.gz + + perl + perl-importer + + programming/language/perl/perl-term-table/pspec.xml + + + perl-term-table + + perl + perl-importer + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-04-09 + 0.015 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Test-Deep + https://metacpan.org/release/Test-Deep + + Pisi Linux Admins + admin@pisilinux.org + + as-is + library + programming.language.perl + A Perl module that gives you lots of flexibility when testing deep structures + Derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülü + perl-Test-Deep is a Perl module that gives you lots of flexibility when testing deep structures. + perl-Test-Deep derin yapıları test ederken çok fazla esneklik sağlayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Deep-1.130.tar.gz + + perl + + programming/language/perl/perl-Test-Deep/pspec.xml + + + perl-Test-Deep + A Perl module that gives you lots of flexibility when testing deep structures + + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-03-05 + 1.130 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-02 + 1.128 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.127 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.126 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.120 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.120 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-test-exit + https://metacpan.org/release/Test-Exit + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Test whether code exits without terminating testing. + Testi sonlandırmadan kodun çıkıp çıkmadığını test edin. + Test whether code exits without terminating testing. + Testi sonlandırmadan kodun çıkıp çıkmadığını test edin. + https://cpan.metacpan.org/authors/id/A/AR/ARODLAND/Test-Exit-0.11.tar.gz + + perl + perl-return-multilevel + + programming/language/perl/perl-test-exit/pspec.xml + + + perl-test-exit + + perl + perl-return-multilevel + + + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 0.097 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Test-Fatal + https://metacpan.org/release/Test-Fatal + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Perl module to test code with exceptions + İstisna içeren kodları test etmek için Perl modülü + perl-Test-Fatal provides incredible simple helpers for testing Perl code with exceptions. + perl-Test-Fatal, istisna (exception) içeren kodları test etmek için çok basit bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/R/RJ/RJBS/Test-Fatal-0.016.tar.gz + + perl + perl-Try-Tiny + + programming/language/perl/perl-Test-Fatal/pspec.xml + + + perl-Test-Fatal + Perl module to test code with exceptions + + perl + perl-Try-Tiny + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-11 + 0.016 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 0.014 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.14 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.14 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.14 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-MockModule + https://metacpan.org/release/Test-MockModule + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Override subroutines in a module for unit testing. + Birim test için bir modüldeki altprogramları geçersiz kılın. + Test-MockModule lets you temporarily redefine subroutines in other packages for the purposes of unit testing. + perl-Test-MockModule birim test amaçları için diğer paketlerdeki altprogramları geçici olarak yeniden tanımlamanıza izin verir. + https://cpan.metacpan.org/authors/id/G/GF/GFRANKS/Test-MockModule-v0.175.0.tar.gz + + perl + perl-Super + perl-Module-Build + perl-Test-Warnings + perl-Test-Pod-Coverage + + programming/language/perl/perl-Test-MockModule/pspec.xml + + + perl-Test-MockModule + Override subroutines in a module for unit testing. + + perl + perl-Super + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2020-10-01 + 0.175.0 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-07-20 + 0.173.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 0.172.0 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-02 + 0.171.0 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.11 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-Test-Needs + https://metacpan.org/pod/Test::Needs + + Blue Devil + bluedevil@sctzine.com + + Perl 5 + library + programming.language.perl + Test::Needs - Skip tests when modules not available + Bu perl modülü, olmayan perl modülü için hata vermez. + Skip test scripts if modules are not available. The requested modules will be loaded, and optionally have their versions checked. If the module is missing, the test script will be skipped. Modules that are found but fail to compile will exit with an error rather than skip. + perl-Test-Needs, olmayan perl modülü için hata vermeyen bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-Needs-0.002006.tar.gz + + perl + + programming/language/perl/perl-Test-Needs/pspec.xml + + + perl-Test-Needs + Test::Needs - Skip tests when modules not available + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-12-17 + 0.002006 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-07 + 0.002006 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Test-NoWarnings + https://metacpan.org/pod/Test::NoWarnings + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + programming.language.perl + Make sure you didn't emit any warnings while testing. + Make sure you didn't emit any warnings while testing. + https://cpan.metacpan.org/authors/id/H/HA/HAARG/Test-NoWarnings-1.06.tar.gz + + perl + + programming/language/perl/perl-Test-NoWarnings/pspec.xml + + + perl-Test-NoWarnings + + perl-test-simple + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 1.06 + First build + fury + uglyside@yandex.ru + + + + + + perl-Test-Number-Delta + https://metacpan.org/pod/Test::Number::Delta + + Pisilinux Community + admins@pisilinux.org + + Apache_2 + library + programming.language.perl + Compare the difference between numbers against a given tolerance. + At some point or another, most programmers find they need to compare floating-point numbers for equality. The typical idiom is to test if the absolute value of the difference of the numbers is within a desired tolerance, usually called epsilon. + https://cpan.metacpan.org/authors/id/D/DA/DAGOLDEN/Test-Number-Delta-1.06.tar.gz + + perl + + programming/language/perl/perl-Test-Number-Delta/pspec.xml + + + perl-Test-Number-Delta + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2021-12-21 + 1.06 + First build. + fury + uglyside@yandex.ru + + + + + + perl-Test-Pod + https://metacpan.org/pod/Test::Pod + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + A perl module to check for errors in POD files + Pod dosyalarında hata olup olmadığını kontrol eden bir Perl Modülü + Check POD files for errors or warnings in a test file, using Pod::Simple. + Test::Pod, Pod::Simple modülünü kullanarak POD dosyalarında hata ya da uyarı olup olmadığını kontrol etmeye yarayan bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Pod-1.52.tar.gz + + perl + + programming/language/perl/perl-Test-Pod/pspec.xml + + + perl-Test-Pod + A perl module to check for errors in POD files + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-02 + 1.52 + Rebuild + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 1.52 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.51 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.51 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.51 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Test-Pod-Coverage + https://metacpan.org/pod/Test::Pod::Coverage + + Pisi Linux Admins + admin@pisilinux.org + + as-is + library + programming.language.perl + Check for pod coverage in your distribution + Dağıtımınızın POD kapsamını kontrol eder + perl-Test-Pod-Coverage checks for pod coverage in your distribution. + perl-Test-Pod-Coverage dağıtımınızın POD kapsamını kontrol eden Perl modülüdür. + http://search.cpan.org/CPAN/authors/id/N/NE/NEILB/Test-Pod-Coverage-1.10.tar.gz + + perl + perl-Pod-Coverage + + programming/language/perl/perl-Test-Pod-Coverage/pspec.xml + + + perl-Test-Pod-Coverage + Check for pod coverage in your distribution + + perl + perl-Pod-Coverage + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-02 + 1.10 + Rebuild + Blue Devil + bluedevil@sctzine.com + + + 2018-09-08 + 1.10 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.10 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.10 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-Requires + https://metacpan.org/release/Test-Requires + + Blue Devil + bluedevil@sctzine.com + + Artistic-2 + GPLv1 + library + programming.language.perl + Checks to see if the module can be loaded. + Bir modülün yüklenip yüklenemeyeceğini denetlemek için Perl modülü + perl-Test-Requires is a Perl module to check if the module can be loaded. + perl-Test-Requires, bir modülün yüklenip yüklenemeyeceğini denetlemek için gerekli bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/T/TO/TOKUHIROM/Test-Requires-0.11.tar.gz + + perl + + programming/language/perl/perl-Test-Requires/pspec.xml + + + perl-Test-Requires + Checks to see if the module can be loaded. + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-09-23 + 0.11 + First Pisi Release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Test-RequiresInternet + https://metacpan.org/pod/Test::RequiresInternet + + Blue Devil + bluedevil@sctzine.com + + Perl 5 + library + programming.language.perl + Test::RequiresInternet - Easily test network connectivity + Test::RequiresInternet - Kolay bir şekilde ağ baglantı durumunu denetler. + This module is intended to easily test network connectivity before functional tests begin to non-local Internet resources. It does not require any modules beyond those supplied in core Perl. + perl-Test-RequiresInternet, herhangi fazladan modül gerektirmeden internet bağlantısını denetleyebilen bir perl modülüdür. + https://cpan.metacpan.org/authors/id/M/MA/MALLEN/Test-RequiresInternet-0.05.tar.gz + + perl + + programming/language/perl/perl-Test-RequiresInternet/pspec.xml + + + perl-Test-RequiresInternet + Test::RequiresInternet - Easily test network connectivity + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-14 + 0.05 + First Pisi Release. + Blue Devil + bluedevil@sctzine.com + + + + + + perl-Test-Script + https://metacpan.org/pod/Test::Script + + Pisi Linux Admins + admin@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Basic cross-platform tests for Perl scripts + Perl için temel çoklu platform test araçlarını içeren modül + perl-Test-Script is a Perl module that has basic cross-platform tests for scripts. + perl-Test-Script temel çoklu platform test araçlarını içeren bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/P/PL/PLICEASE/Test-Script-1.26.tar.gz + + perl + perl-IPC-Run3 + perl-Probe-Perl + perl-test2-suite + perl-Capture-Tiny + + programming/language/perl/perl-Test-Script/pspec.xml + + + perl-Test-Script + + perl + perl-IPC-Run3 + perl-Probe-Perl + perl-test2-suite + perl-Capture-Tiny + + + /usr/lib + /usr/share/man + + + + + 2020-04-09 + 1.26 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-test-simple + https://metacpan.org/release/Test-Simple + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + Basic utilities for writing tests. + Test yazmak için temel araçlar. + This is an extremely simple, extremely basic module for writing tests suitable for CPAN modules and other pursuits. If you wish to do more complicated testing, use the Test::More module (a drop-in replacement for this one). + perl-test-simple, CPAN'a uygun testler yazabilmek için çok uygun ve basit perl modülleri sunar. + https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test-Simple-1.302181.tar.gz + + perl + + programming/language/perl/perl-test-simple/pspec.xml + + + perl-test-simple + Basic utilities for writing tests. + + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-12-17 + 1.302181 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-08-30 + 1.302177 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 1.302175 + Minor version bump, fix translation + Blue Devil + bluedevil@sctzine.com + + + 2020-04-09 + 1.302174 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Test-Warn + https://metacpan.org/pod/Test::Warn + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.perl + Perl extension to test methods for warnings + Test uyarıları için Perl eklentisi + perl-Test-Warn module provides a few convenience methods for testing warning based code. + perl-Test-Warn modülü, uyarı temelli kodları test etmeye yarayan birkaç kolaylık metodu sağlamaktadır. + https://cpan.metacpan.org/authors/id/B/BI/BIGJ/Test-Warn-0.36.tar.gz + + perl + perl-Test-Pod + perl-Sub-Uplevel + + programming/language/perl/perl-Test-Warn/pspec.xml + + + perl-Test-Warn + Perl extension to test methods for warnings + + perl + perl-Sub-Uplevel + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 0.36 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.30 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.30 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.30 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Test-Warnings + https://metacpan.org/release/Test-Warnings + + Blue Devil + bluedevil@sctzine.com + + Perl 5 + library + programming.language.perl + Perl module to test for warnings and the lack of them + Bu perl modülü, perl için uyarılar üretir. + perl-Test-Warnings is a Perl module to test for warnings and the lack of them. + perl-Test-Warnings, perl için uyarılar üreten bir Perl modülüdür. + https://cpan.metacpan.org/authors/id/E/ET/ETHER/Test-Warnings-0.030.tar.gz + + perl + + programming/language/perl/perl-Test-Warnings/pspec.xml + + + perl-Test-Warnings + Perl module to test for warnings and the lack of them + + perl + + + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-03-27 + 0.030 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-03 + 0.028 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + perl-test2-suite + https://metacpan.org/release/Test2-Suite + + Kamil Atlı + suvari@pisilinux.org + + Artistic + library + programming.language.perl + Distribution with a rich set of tools built upon the Test2 framework. + Test2 çerçevesi üzerine inşa edilmiş zengin araçlarla dağıtım. + Rich set of tools, plugins, bundles, etc built upon the Test2 testing library. If you are interested in writing tests, this is the distribution for you. + Test2 test kitaplığı üzerine kurulmuş araçlar ve eklentiler sunan bir perl araç takımıdır. + https://cpan.metacpan.org/authors/id/E/EX/EXODIST/Test2-Suite-0.000135.tar.gz + + perl + perl-sub-info + perl-importer + perl-term-table + perl-test-simple + perl-scope-guard + perl-module-pluggable + + programming/language/perl/perl-test2-suite/pspec.xml + + + perl-test2-suite + Distribution with a rich set of tools built upon the Test2 framework. + + perl + perl-sub-info + perl-importer + perl-term-table + perl-test-simple + perl-scope-guard + perl-module-pluggable + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-07-20 + 0.000135 + Minor version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-04-09 + 0.000129 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-Text-ParseWords + https://metacpan.org/pod/Text::ParseWords + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + library + app:console + programming.language.perl + Text::ParseWords - parse text into an array of tokens or array of arrays + Text::ParseWords - verilen metni çözümleyerek bir dizi oluşturur. + The nested_quotewords() and quotewords() functions accept a delimiter (which can be a regular expression) and a list of lines and then breaks those lines up into a list of words ignoring delimiters that appear inside quotes. + perl-Text-ParseWords, verilen metni çözümleyerek bir dizi oluşturabilen bir perl modülüdür. + http://search.cpan.org/CPAN/authors/id/C/CH/CHORNY/Text-ParseWords-3.30.tar.gz + + perl + + programming/language/perl/perl-Text-ParseWords/pspec.xml + + + perl-Text-ParseWords + Text::ParseWords - parse text into an array of tokens or array of arrays + + perl + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-13 + 3.30 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 3.30 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 3.30 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.30 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-26 + 3.30 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + perl-timedate + https://metacpan.org/dist/TimeDate + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + time and date parsing and formatting perl library. + This is the perl5 TimeDate distribution. + https://cpan.metacpan.org/authors/id/A/AT/ATOOMIC/TimeDate-2.33.tar.gz + + perl + + programming/language/perl/perl-timedate/pspec.xml + + + perl-timedate + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 2.33 + First build + fury + uglyside@yandex.ru + + + + + + perl-Try-Tiny + https://metacpan.org/pod/Try::Tiny + + Pisi Linux Admins + admins@pisilinux.org + + Artistic-2 + GPLv1 + library + programming.language.perl + Perl module to implement minimal try/catch + Perl için basit bir try/catch gerçeklemesi + perl-Try-Tiny is a Perl module which implements a minimal try/catch with proper localization of $@. + perl-Try-Tiny, Perl için $@ yerelleştirmesi sağlayan basit bir try/catch gerçeklemesidir. + http://www.cpan.org/authors/id/E/ET/ETHER/Try-Tiny-0.30.tar.gz + + perl + perl-Capture-Tiny + + programming/language/perl/perl-Try-Tiny/pspec.xml + + + perl-Try-Tiny + Perl module to implement minimal try/catch + + perl + perl-Capture-Tiny + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-01-07 + 0.30 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 0.30 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.28 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.24 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 0.24 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-Types-Serialiser + https://metacpan.org/pod/Types::Serialiser + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + app:console + programming.language.perl + This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. + JSON ve CBOR gibi genel serileştirme biçemleri tarafından kullanılan bazı yeni veriyapıları sunar. + This module provides some extra datatypes that are used by common serialisation formats such as JSON or CBOR. The idea is to have a repository of simple/small constants and containers that can be shared by different implementations so they become interoperable between each other. + perl-Types-Serialiser, JSON ve CBOR gibi genel serileştirme biçemleri tarafından kullanılan bazı yeni veriyapıları sunar.. + http://search.cpan.org/CPAN/authors/id/M/ML/MLEHMANN/Types-Serialiser-1.0.tar.gz + + perl + perl-common-sense + + programming/language/perl/perl-Types-Serialiser/pspec.xml + + + perl-Types-Serialiser + + perl + perl-common-sense + + + /usr/bin + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-01-02 + 1.0 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.0 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.0 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + perl-URI + https://metacpan.org/release/URI + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl module for Uniform Resource Identifiers (absolute and relative) + Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri) icin perl arayüzü + A Uniform Resource Identifier is a compact string of characters that identifies an abstract or physical resource. A Uniform Resource Identifier can be further classified as either a Uniform Resource Locator (URL) or a Uniform Resource Name (URN). + Bir URI (Uniform Resource Identifiers- Tektip Kaynak Belirleyicileri), soyut veya fiziki bir kaynağı belirleyen bir tekparça karakter dizgesidir. Bir URI, bir URL (Uniform Resource Locator – Tektip Kaynak Bulucu) veya bir URN (Uniform Resource Name – Tektip Kaynak Adı)’den daha ötede sınıflandırılabilir. + Un identificador de recurso uniformado (URI) es una cadena de caracteres compacta que identifica un recurso físico o abstracto. Se puede clasificar los URI en Uniform Resource Locator (URL) o Uniform Resource Name (URN). + https://cpan.metacpan.org/authors/id/O/OA/OALDERS/URI-5.05.tar.gz + + perl + perl-Test-Needs + + programming/language/perl/perl-URI/pspec.xml + + + perl-URI + Perl module for Uniform Resource Identifiers (absolute and relative) + + perl + + + /usr/lib + /usr/share/perl + /usr/share/doc + /usr/share/man + + + + + 2020-12-13 + 5.05 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-07 + 1.76 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.71 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.71 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.71 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-14 + 1.71 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + perl-WWW-Robotrules + https://metacpan.org/pod/WWW::RobotRules + + Osman Erkan + osman.erkan@pisilinux.org + + Artistic + GPLv2 + app:console + programming.language.perl + database of robots.txt-derived permissions + robots.txt-turevi izinler veritabanı + This module parses /robots.txt files as specified in "A Standard for Robot Exclusion", at <http://www.robotstxt.org/wc/norobots.html> Webmasters can use the /robots.txt file to forbid conforming robots from accessing parts of their web site. + Bu modÜl robots.txt dosyasının ayarlarını çözümleyebilen perl yordamları sunar. + http://search.cpan.org/CPAN/authors/id/G/GA/GAAS/WWW-RobotRules-6.02.tar.gz + + perl + perl-URI + + programming/language/perl/perl-WWW-Robotrules/pspec.xml + + + perl-WWW-Robotrules + database of robots.txt-derived permissions + + perl + perl-URI + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2020-01-13 + 6.02 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 6.02 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 6.02 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 6.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 6.02 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + perl-XML-LibXML + https://metacpan.org/release/XML-LibXML + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl Binding for libxml2 + libxml2 için Perl bağlayıcıları + This module implements much of the DOM Level 2 API as an interface to the Gnome libxml2 library. This makes it a fast and highly capable validating XML parser library, as well as a high performance DOM. + perl-XML-LibXML, libxml2 için Perl bağlayıcıları içerir. + https://cpan.metacpan.org/authors/id/S/SH/SHLOMIF/XML-LibXML-2.0206.tar.gz + + perl + perl-XML-SAX + libxml2-devel + perl-Alien-Build + perl-Alien-Libxml2 + Perl-XML-SAX-BASE + perl-XML-NamespaceSupport + + programming/language/perl/perl-XML-LibXML/pspec.xml + + + perl-XML-LibXML + Perl Binding for libxml2 + + perl + perl-XML-SAX + perl-XML-NamespaceSupport + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + + 2020-12-17 + 2.0206 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 2.0205 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-10 + 2.0204 + Fix dependencies and rpath analysis + Blue Devil + bluedevil@sctzine.com + + + 2020-04-09 + 2.0204 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + perl-XML-NamespaceSupport + https://metacpan.org/pod/XML::NamespaceSupport + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + A Perl module that offers a simple to process namespaced XML names + XML adlarını işleyebilen bir perl modülü + This module offers a simple way to process namespaced XML names (unames) from within any application that may need them. + Gerek duyan uygulamalar tarafından kullanılabilen ve XML adlarını işleyebilen bir perl modülüdür. + Módulo Perl para procesamiento sencillo de nombres de espacio de nombres XML (unames) desde cualquier programa + http://www.cpan.org/authors/id/P/PE/PERIGRIN/XML-NamespaceSupport-1.12_9.tar.gz + + perl + + programming/language/perl/perl-XML-NamespaceSupport/pspec.xml + + + perl-XML-NamespaceSupport + A Perl module that offers a simple to process namespaced XML names + + perl + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2020-01-13 + 1.12 + Rebuild for new toolchain. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.12 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2017-12-12 + 1.12 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-XML-SAX + https://metacpan.org/pod/XML::SAX + + Pisi Linux Admins + admins@pisilinux.org + + Artistic + library + programming.language.perl + Perl module for using and building Perl SAX2 XML parsers, filters, and drivers + Perl SAX2 XML ayıklacı, süzgeç ve sürücülerini kullanmak ve inşa etmek için gerekli Perl modülü + This module consists of several framework classes for using and building Perl SAX2 XML parsers, filters, and drivers. + perl-XML-SAX, SAX2 XML ayıklacı, süzgeç ve sürücülerini kullanmak ve inşa etmek için gerekli Perl modülüdür. + El módulo consiste de varias clases de framework para usar y construir (build) parsers, filtros y controladores SAX2 XML + https://cpan.metacpan.org/authors/id/G/GR/GRANTM/XML-SAX-1.02.tar.gz + + perl + libxml2-devel + perl-XML-SAX-Base + perl-XML-NamespaceSupport + + programming/language/perl/perl-XML-SAX/pspec.xml + + + perl-XML-SAX + Perl module for using and building Perl SAX2 XML parsers, filters, and drivers + + perl + libxml2 + perl-XML-SAX-Base + perl-XML-NamespaceSupport + + + /usr/lib + /usr/share/doc + /usr/share/man + + + System.Package + + + + + 2020-01-13 + 1.02 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.00 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-12-12 + 0.99 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-XML-SAX-Base + https://metacpan.org/pod/XML::SAX::Base + + PisiLinux Community + admins@pisilinux.org + + Artistic + app:console + programming.language.perl + Base class SAX Drivers and Filters + SAX sürücü ve süzgeçleri içeren perl modülü. + This module has a very simple task - to be a base class for PerlSAX drivers and filters. It's default behaviour is to pass the input directly to the output unchanged. It can be useful to use this module as a base class so you don't have to, for example, implement the characters() callback. + perl-XML-SAX-BASE, SAX sürücü ve süzgeçleri içeren perl modülüdür. + https://cpan.metacpan.org/authors/id/G/GR/GRANTM/XML-SAX-Base-1.09.tar.gz + + perl + + programming/language/perl/perl-XML-SAX-Base/pspec.xml + + + perl-XML-SAX-Base + Base class SAX Drivers and Filters + + perl + + + /usr/lib/perl5/vendor_perl + /usr/share/doc + + + + + 2020-04-09 + 1.09 + Remove man. + Kamil Atlı + suvari@pisilinux.org + + + 2020-01-13 + 1.09 + Rebuild + Blue Devil + bluedevil@sctzine.com + + + 2018-07-26 + 1.09 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-12-12 + 1.09 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + perl-XML-Simple + https://metacpan.org/pod/XML::Simple + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.perl + XML::Simple Perl module + XML::Simple Perl kütüphanesi + XML::Simple is an easy API to read/write XML. This package provides XML::Simple's Perl module. + XML::Simple, XML okumak ve yazmak için kolay bir API'dir. Bu paket de, XML::Simple'in Perl kütüphanesini içermektedir. + http://search.cpan.org/CPAN/authors/id/G/GR/GRANTM/XML-Simple-2.25.tar.gz + + perl + perl-XML-Parser + perl-XML-SAX + + programming/language/perl/perl-XML-Simple/pspec.xml + + + perl-XML-Simple + + perl + perl-XML-Parser + perl-XML-SAX + + + /usr/lib + /usr/share/man + + + + + 2020-02-13 + 2.25 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + perl-YAML-LibYAML + https://metacpan.org/pod/YAML::LibYAML + + fury + uglyside@yandex.ru + + PerlArtistic + library + programming.language.perl + Perl Binding to libyaml. + Perl YAML Serialization using XS and libyaml. + https://cpan.metacpan.org/authors/id/T/TI/TINITA/YAML-LibYAML-0.83.tar.gz + + perl + + programming/language/perl/perl-YAML-LibYAML/pspec.xml + + + perl-YAML-LibYAML + + perl + + + /usr/lib/perl5 + /usr/share/man/man3 + + + + + 2021-09-18 + 0.83 + First build + fury + uglyside@yandex.ru + + + + + + python-certifi + https://certifi.io/ + + Blue DeviL + bluedevil@sctzine.com + + MPL-2.0 + library + programming.language.python + Python package for providing Mozilla's CA Bundle + Certifi, Mozillanın sertifikalarını sağlayan python kitaplığıdır. + Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. + Certifi, TLS sahiplerinin SSL sertifikalarını doğrulanmasını sağlayan, kök sertifikalarının toplandığı bir kitaplıktır. + https://pypi.org/packages/source/c/certifi/certifi-2020.6.20.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-certifi/pspec.xml + + + python-certifi + Python package for providing Mozilla's CA Bundle + + /usr/lib + /usr/share/doc + + + + + 2020-07-21 + 2020.6.20 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 2020.4.5.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-28 + 2019.11.28 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-07 + 2019.9.11 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python-h11 + https://pypi.org/project/h11/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 + Sadece python ile hazırlanmış, HTTP/1.1 için kendi-giriş-çıkış-uygulamanı-getir uygulaması. + This is a little HTTP/1.1 library written from scratch in Python, heavily inspired by hyper-h2. + python-h11, hyper-h2'den esınlenen bu kitaplık sıfırdan yazılmış bir HTTP/1.1 kitaplığıdır. + https://files.pythonhosted.org/packages/34/5a/abaa557d20b210117d8c3e6b0b817ce9b329b2e81f87612e60102a924323/h11-0.9.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-h11/pspec.xml + + + python-h11 + A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 + + /usr/lib + /usr/share/man + /usr/share/doc/python-h11 + + + + + 2020-01-15 + 0.9.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-pbr + https://pypi.org/project/pbr/ + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + Python Build Reasonableness + Python İnşa Uygunluğu + PBR is a library that injects some useful and sensible default behaviors into your setuptools run. + python-pbr, python setuptools ile olan kurulumunuza bazı işlevsel davranışlar ekleyen bir python3 kitaplığıdır. + https://pypi.org/packages/source/p/pbr/pbr-5.4.5.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-pbr/pspec.xml + + + python-pbr + Python Build Reasonableness + + python-setuptools + + + /usr/bin/pbr-py2 + /usr/share/doc + /usr/lib + /usr/share + + + + + 2020-04-08 + 5.4.5 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 5.4.4 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + cython + https://cython.org/ + + Blue DeviL + bluedevil@sctzine.com + + Apache-2.0 + app:console + library + programming.language.python + C extensions for the Python + Python için C eklentileri + Cython is a language that makes writing C extensions for the Python language as easy as Python itself. + Cython, Python için C eklentileri yazmayı kolaylaştıran bir dildir. + https://github.com/cython/cython/archive/0.29.21.tar.gz + + python-devel + python-setuptools + + programming/language/python/cython/pspec.xml + + + cython + C extensions for the Python + + python + python-setuptools + + + /usr/share/doc/cython + /usr/lib/python2* + /usr/bin/cygdb-py2 + /usr/bin/cython-py2 + /usr/bin/cythonize-py2 + + + + + 2020-07-21 + 0.29.21 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 0.29.19 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-14 + 0.29.17 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 0.29.16 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 0.29.15 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-31 + 0.29.14 + Rebuilt + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-07 + 0.29.14 + Split packages + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-11 + 0.29.14 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-22 + 0.24 + First release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + gst-python + https://gstreamer.freedesktop.org/modules/gst-python.html + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + GStreamer Python bindings + GStreamer Python bağlayıcıları + gst-python is a Python frontend to GStreamer. + gst-python GStreamer için Python arabirimidir. + https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.16.2.tar.xz + + python-pygobject3-devel + glib2-devel + gstreamer-devel + python-devel + gst-plugins-base-devel + + programming/language/python/gst-python/pspec.xml + + + gst-python + + glib2 + python + gstreamer + gst-plugins-base + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2022-05-11 + 1.16.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 1.16.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-19 + 1.16.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.16.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 1.16.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.12.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-25 + 1.10.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.10.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.10.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-21 + 0.10.22 First release Stefan Gronewold (groni) groni@pisilinux.org @@ -318357,128 +273703,1048 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - libaribb24 - https://github.com/nkoriyama/aribb24 + notify-python + http://galago-project.org/ PisiLinux Community admins@pisilinux.org - LGPLv3 - library - multimedia.misc - Library for ARIB STD-B24, decoding JIS 8 bit characters and parsing MPEG-TS stream - Library for ARIB STD-B24, decoding JIS 8 bit characters and parsing MPEG-TS stream - https://github.com/nkoriyama/aribb24/archive/v1.0.3.tar.gz + GPLv2 + app:console + programming.language.python + Python bindings for libnotify + libnotify'ın Python bağlayıcıları + Galago est un framework (cadre de développement) de présence bureautique, conçu pour transmettre des informations de présences entre programmes. Pour faire simple, il recense les présents et agrège les informations concernant leur état depuis un logiciel de messagerie instantannée (tel que gaim) ou de programmes similaires et permet à d'autre logiciels (tels que Evolution) d'avoir accès à cette information. + notify-python are Python bindings for the Galago project's notification library libnotify. +  Galago programlar arası duruş/görünüm bilgisini iletecek şekilde dizayn edilmiş bir masaüstü görüntü çerçevesidir. Daha basitçe açıklamak gerekirse, bir anlık ileti programından (gaim gibi) veya benzeri başka programlardan kimlerin çevrimiçi, boş/uzakta olduğu bilgisini alıp diğer programların (örn. Evolution) bu bilgiyi kullanmasını sağlar. + Galego es un entorno de presencia de escritorio, diseñado para transmitir informaciones entre programas. En términos sencillos: Puede tomar información sobre quien está en linea, y el estado ausente/inactivo de un programa de mensajería instantánea, como pidgin o similar, y pasar la información a otros programas (ejemplo Evolution) para hacer uso de ello. + http://galago-project.org/files/releases/source/notify-python/notify-python-0.1.1.tar.gz - libpng-devel + libnotify-devel + python-devel + python-gtk-devel + gtk2-devel - multimedia/misc/libaribb24/pspec.xml + + link-with-python.patch + notify-python-0.1.1-fix-GTK-symbols.patch + libnotify0.7.patch + + programming/language/python/notify-python/pspec.xml - libaribb24 + notify-python + Python bindings for libnotify - libgcc - libpng + atk + gtk2 + cairo + glib2 + pango + python + freetype + libnotify + fontconfig + gdk-pixbuf /usr/lib - /usr/share/doc - - - - libaribb24-devel - Development files for libaribb24 - - libaribb24 - - - /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + /usr/share/pygtk/2.0/defs + + 2020-01-17 + 0.1.1 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 0.1.1 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 0.1.1 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + - 2020-01-18 - 1.0.3 + 2016-01-09 + 0.1.1 First release - İdris Kalp - idriskalp@gmail.com + Alihan Öztürk + alihan@pisilinux.org - pybind11 - https://pybind11.readthedocs.org/ + pip + https://pypi.python.org/pypi/pip - Pisi Linux Admins - admin@pisilinux.org + Yusuf Aydemir + Yusuf.aydemir@istanbul.com - BSD - app - multimedia.misc - Seamless operability between C++11 and Python - Seamless operability between C++11 and Python - Seamless operability between C++11 and Python - Seamless operability between C++11 and Python - https://github.com/pybind/pybind11/archive/v2.6.2.tar.gz + MIT + programming.language.python + The PyPA recommended tool for installing Python packages + Python paketleri yükleme aracı + The PyPA recommended tool for installing Python packages + pip, pypa tarafından önerilen python modülleri yükleme aracıdır. + https://github.com/pypa/pip/archive/20.1.tar.gz - cmake - boost-devel - python3-devel - python3-setuptools - python3-pytest + python-devel + python-setuptools - multimedia/misc/pybind11/pspec.xml + programming/language/python/pip/pspec.xml - pybind11 + pip + The PyPA recommended tool for installing Python packages + + python-setuptools + - /usr/include - /usr/share + /usr/lib + /usr/share/doc + /usr/bin - - 2021-03-10 - 2.6.2 - First release - Pisi Linux Admins + + 2020-05-16 + 20.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-23 + 20.0.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 19.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 18.0 + Version Bump. + Pisi Linux Community admin@pisilinux.org + + 2017-03-19 + 9.0.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-24 + 9.0.1 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-08-22 + 8.1.2 + Release Bump + Ali Şafak + aliemresafak@gmail.com + + + 2016-06-06 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-30 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-28 + 8.1.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + - libdiscid - http://musicbrainz.org/doc/libdiscid + pygame + http://www.pygame.org/ PisiLinux Community admins@pisilinux.org LGPLv2.1 library - multimedia.misc - A C library for creating MusicBrainz DiscIDs from audio CDs - Ses CD'lerinden MusicBrainz DiscID oluşturmak için C kütüphanesi - libdiscid reads a CD's table of contents (TOC) and generates an identifier which can be used to lookup the CD at MusicBrainz. Additionally, it provides a submission URL for adding the DiscID to the database. - libdiscid, CD içeriğini okuyarak; MusicBrainz veritabanı üzerinden tanımlama yapar. Ayrıca bu veritabanına DiscID eklemek için başvuru URI'si sağlar. - http://ftp.musicbrainz.org/pub/musicbrainz/libdiscid/libdiscid-0.6.2.tar.gz - multimedia/misc/libdiscid/pspec.xml + programming.language.python + Python game library + Python oyun kütüphanesi + Liens (bindings) Python pour dsl et autres librairies facilitant la création de jeux. + Python bindings to sdl and other libs that facilitate game production. + Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri içerir. + Acceso con Python a sdl y otras librerías que facilitan produccion de juegos + https://github.com/pygame/pygame/archive/1.9.6.tar.gz + + libjpeg-turbo-devel + python-setuptools + sdl-image-devel + sdl-mixer-devel + portmidi-devel + freetype-devel + sdl-ttf-devel + libpng-devel + libsdl-devel + python-devel + + programming/language/python/pygame/pspec.xml - libdiscid + pygame + Python game library + + libjpeg-turbo + sdl-image + sdl-mixer + freetype + portmidi + sdl-ttf + python + libpng + libsdl + + + /usr/lib + + + + pygame-devel + Development files for python game library + pygame için geliştirme dosyaları + pygame-devel, pygame için geliştirme dosyalarını içerir. + + pygame + sdl-image-devel + sdl-mixer-devel + sdl-ttf-devel + + + /usr/include + /usr/share/doc/pygame/examples/* + + + + pygame-doc + Documentation files for python game library + + pygame + + + /usr/share/doc/pygame/README.rst + + + + + 2020-01-20 + 1.9.6 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 1.9.4 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-09 + 1.9.3 + Rebuild and version bump + Stefan Gronewold + groni@pisilinux.org + + + 2013-11-03 + 1.9.1 + Rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2011-05-06 + 1.9.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pyparted + https://github.com/dcantrell/pyparted + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + programming.language.python + Python bindings for parted + Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. + pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. + pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. + pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. + https://github.com/dcantrell/pyparted/archive/v3.11.4.tar.gz + + parted-devel + python-decorator + python-devel + + + gcc10-pedmodule.patch + + programming/language/python/pyparted/pspec.xml + + + pyparted + Python bindings for parted + + python-decorator + parted + + + /usr/lib/python2* + /usr/share/doc/pyparted + + + + + 2022-06-05 + 3.11.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 3.11.4 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-10-17 + 3.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 3.11.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-26 + 3.11.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-21 + 3.10.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 3.10.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.10.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-10 + 3.10.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + pyqtermwidget5 + https://github.com/Rmys/pyqtermwidget5 + + Harun Gültekin + hrngultekin@gmail.com + + GPLv2 + library + programming.language.python + Python binding of terminal widget for Qt + PyQt5 tabanlı uygulamalar için basit bir terminal modulü + A simple terminal widget for using with PyQt based applications + https://github.com/Rmys/pyqtermwidget5/archive/v0.1.2.tar.gz + + python-sip + python-devel + qtermwidget5-devel + qt5-base-devel + python-qt5-devel + + + py2config.patch + qtermwidget5-1.0.0.patch + + programming/language/python/pyqtermwidget5/pspec.xml + + + pyqtermwidget5 + Python binding of terminal widget for Qt + + libgcc + qt5-base + qtermwidget5 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-11-14 + 0.1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-19 + 0.1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 0.1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 0.1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-09 + 0.1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-07 + 0.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-09 + 0.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-16 + 0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-25 + 0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-10 + 0.1 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-21 + 0.1 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-28 + 0.1 + Rebuild + Harun Gültekin + hrngultekin@gmail.com + + + 2014-06-19 + 0.1 + First release + Harun Gültekin + hrngultekin@gmail.com + + + + + + python-anytree + https://github.com/c0fec0de/anytree + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python + Powerful and Lightweight Python Tree Data Structure + AnyTree için Python bağlayıcıları. + Simple, lightweight and extensible Tree data structure. + python-anytree, python için güçlü ve hafif ağaç veri yapıları sunan bir python kitaplığıdır. + https://github.com/c0fec0de/anytree/archive/2.8.0.tar.gz + + python-setuptools + python-devel + python-six + + programming/language/python/python-anytree/pspec.xml + + + python-anytree + Powerful and Lightweight Python Tree Data Structure + + python-six + + + /usr/lib/python2* + /usr/share/doc/python-anytree + + + + + 2020-01-23 + 2.8.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-argparse + https://pypi.python.org/pypi/argparse + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python + Python command-line parsing library + Python için komut satırı çözümleme kitaplığı + The argparse module makes it easy to write user friendly command line interfaces. + python-argparse, Python için komut satırı çözümleme kitaplığı sunar. + https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-argparse/pspec.xml + + + python-argparse + Python command-line parsing library + + /usr/lib/python2* + /usr/share/doc/python-argparse + + + + + 2019-12-30 + 1.4.0 + Rebuilt,translate and clean. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 1.4.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-01 + 1.4.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-attrs + https://www.attrs.org/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Python Classes Without Boilerplate + Şablonsuz python sınıfları. + attrs is the Python package that will bring back the joy of writing classes by relieving you from the drudgery of implementing object protocols (aka dunder methods). + python-attrs, şablonsuz python sınıfları içerir. bu sayede daha hızlı ve karmaşık olmayan kod yazmanızı sağlar. + https://github.com/python-attrs/attrs/archive/20.2.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-attrs/pspec.xml + + + python-attrs + Python Classes Without Boilerplate + + /usr/lib/python2* + /usr/share/doc/python-attrs + + + + + 3020-09-23 + 20.2.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-15 + 19.3.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-backports + http://bitbucket.org/brandon/backports + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Namespace for backported Python features. + Geriye dönüklüğü olan python modülleri için alan adı. + python-backports provides namespace for backported Python features. + python-backport, geriye dönüklüğü olan python modülleri için alan adı sağlar. + https://bitbucket.org/brandon/backports/get/tip.tar.gz + + __init__.py + + + python-setuptools + python-devel + + programming/language/python/python-backports/pspec.xml + + + python-backports + Namespace for backported Python features + + /usr/share/doc/python-backports + /usr/lib/python2* + + + + + 2020-02-17 + 1.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-backports-ssl-match-hostname + https://pypi.python.org/pypi/backports.ssl_match_hostname + + Alihan Öztürk + alihan@pisilinux.org + + PSF-2.2 + app + programming.language.python + The ssl.match_hostname() function from Python 3.4 + Python3.4 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamı + The ssl.match_hostname() function from Python 3.4 + python-backports-ssl-match-hostname, Python3.4 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamını sağlar. + https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-backports-ssl-match-hostname/pspec.xml + + + python-backports-ssl-match-hostname + The ssl.match_hostname() function from Python 3.4 + + /usr/lib/python* + /usr/share/doc + + + + + 2020-01-20 + 3.7.0.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 3.5.0.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 3.5.0.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-15 + 3.4.0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-bcrypt + https://github.com/pyca/bcrypt + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + Modern(-ish) password hashing for your software and your servers + Yazılımlarınız ve sunucularınız için bir parola hashi üreten python modülüdür. + python-bcrypt is a good password hashing for your software and your servers + python-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 + + python-setuptools + python-devel + + programming/language/python/python-bcrypt/pspec.xml + + + python-bcrypt + Modern(-ish) password hashing for your software and your servers + + python-cffi + + + /usr/lib/python2* + /usr/share/doc/python-bcrypt + + + + + 2019-12-13 + 3.1.7 + Rebuilt and split packages + Blue Devil + bluedevil@sctzine.com + + + 2019-11-07 + 3.1.7 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-beaker + https://github.com/bbangert/beaker + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + A Session and Caching library with WSGI Middleware + Oturum ve önbellekleme kitaplığı + python-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. + python-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. + https://github.com/bbangert/beaker/archive/1.11.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-beaker/pspec.xml + + + python-beaker + A Session and Caching library with WSGI Middleware + + /usr/lib/ + /usr/share/doc + + + + + 2020-01-17 + 1.11.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 1.10.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-26 + 1.9.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.8.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-11-04 + 1.6.4 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python-blinker + https://github.com/jek/blinker + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + A fast Python in-process signal/event dispatching system. + Python için hızlı bir proses-içi sinyal/olay dağıtım dizimi + Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals". + python-blinker, istekli/ilgili partilerin olay veya sinyallere kaydolmasına izin veren hızlı bir dağıtım dizimi sağlar. + https://github.com/jek/blinker/archive/rel-1.4.tar.gz + + python-setuptools + python-devel + python-nose + + programming/language/python/python-blinker/pspec.xml + + + python-blinker + A fast Python in-process signal/event dispatching system. + + /usr/share/doc/python-blinker + /usr/lib/python2* + + + + + 2020-02-12 + 1.4 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-cairo + http://cairographics.org/pycairo + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + wrapper (version enrobée) Python de la librairie de graphisme vectoriel cairo. + Python wrapper for cairo graphics library + Cairo vektörel grafik kitaplığı için Python bağlayıcıları + Pycairo is set of Python bindings for the cairo graphics library. + python-cairo, Cairo vektörel grafik kitaplığı için Python bağlayıcıları sunar. + https://github.com/pygobject/pycairo/releases/download/v1.18.2/pycairo-1.18.2.tar.gz + + python-devel + cairo-devel + + programming/language/python/python-cairo/pspec.xml + + + python-cairo + Python wrapper for cairo graphics library + + cairo + /usr/lib /usr/share/doc - libdiscid-devel - Development files for libdiscid - libdiscid için geliştirme dosyaları + python-cairo-devel + Development files for python-cairo + python-cairo için geliştirme dosyaları + python-cairo-devel, python-cairo için geliştirme dosyalarını içerir. - libdiscid + python-cairo + cairo-devel /usr/include @@ -318486,8 +274752,6013 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression + + 2020-01-17 + 1.18.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-07-31 + 1.17.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-25 + 1.16.2 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.10.0 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-01 + 1.10.0 + First release + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + + + + python-cffi + https://cffi.readthedocs.io/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Foreign Function Interface for Python calling C code + Python için C kodu cağıran dış fonksiyon arayüzü + Foreign Function Interface for Python calling C code + Python için C kodu cağıran dış fonksiyon arayüzü kitaplığıdır. + https://bitbucket.org/cffi/cffi/get/v1.14.0.tar.gz + + python-setuptools + python-devel + libffi-devel + + programming/language/python/python-cffi/pspec.xml + + + python-cffi + Foreign Function Interface for Python calling C code + + python-enum34 + python-six + + + /usr/lib + /usr/share/doc/python-cffi + + + + + 2020-02-08 + 1.14.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 1.13.2 + Rebuilt, clean and fix flags + Blue Devil + bluedevil@sctzine.com + + + 2019-12-11 + 1.13.2 + Rebuilt and split packages + Blue Devil + bluedevil@sctzine.com + + + 2019-11-07 + 1.13.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-chardet + https://github.com/chardet/chardet + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + programming.language.python + Chardet: The Universal Character Encoding Detector + Chardet: Evrensel Karakter Kodlaması Bulucusu(The Universal Character Encoding Detector) + Character encoding auto-detection in Python. As smart as your browser. Open source. + python-chardet, python ile karakter kodlaması yapabilmeyi sağlayan ve karakter kodlamasını otomatik bulabilmeyi sağlayan bir python bağlayıcısıdır. + https://github.com/chardet/chardet/archive/3.0.4.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-chardet/pspec.xml + + + python-chardet + Chardet: The Universal Character Encoding Detector + + /usr/bin/chardetect-py2 + /usr/lib/python2* + /usr/share/doc/python-chardet + + + + + 2020-12-09 + 3.0.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-24 + 3.0.4 + Rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 3.0.4 + First release. + PisiLinux Community + admins@pisilinux.org + + + 2018-05-22 + 3.0.4 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + python-click + https://palletsprojects.com/p/click/ + + Blue Devil + bluedevil@sctzine.com + + BSD-3 + library + programming.language.python3 + Python composable command line interface toolkit + Python için komut satırı yaratma arayüzü + Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. + Click, python için en az komut gerektirecek sekilde tasarlanmış komut satırı arayüzü yaratma paketidir. Açılımı "Command Line Interface Creation Kit - Komut Satırı Arayüzü Yaratma Araç Takımı" olan Click bazı varsayılanlarla beraber gelsede yüksek seviyede ayarlanabilir bir yapıya sahiptir. + https://github.com/pallets/click/archive/7.1.2.tar.gz + + python + python-setuptools + + programming/language/python/python-click/pspec.xml + + + python-click + Python composable command line interface toolkit + + /usr/lib/python2* + /usr/share/doc/python-click + + + + + 2020-05-24 + 7.1.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 7.1.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-15 + 7.0 + Moved from contrib and rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-06 + 7.0 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-colorama + https://pypi.python.org/pypi/colorama + + Alihan Öztürk + alihan@pisilinux.org + + BSD + library + programming.language.python + Cross-platform colored terminal text. + Uçbirim metinlerini renklendirebilen python modülüdür. + Python API for cross-platform colored terminal text. + python-colorama, uçbirim metinlerini renklendirebilen python modülüdür. + https://github.com/tartley/colorama/archive/0.4.3.tar.gz + + python-devel + + programming/language/python/python-colorama/pspec.xml + + + python-colorama + Cross-platform colored terminal text. + + /usr/lib/python2* + /usr/share/doc/python-colorama + + + + + 2019-12-24 + 0.4.3 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-29 + 0.3.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-26 + 0.3.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.3.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.3.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-configparser + https://github.com/jaraco/configparser/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Backport of configparser from Python 3. + Python3'ten geriye dönüklüğü sağlamak için configparser modülü. + The ancient ConfigParser module available in the standard library 2.x has seen a major update in Python 3.2. This is a backport of those changes so that they can be used directly in Python 2.6 - 3.5. + python-configparser, python3'te gelen configparser modülünün geriye dönüklüğünü sağlar. + https://github.com/jaraco/configparser/archive/v5.0.0.tar.gz + + python-setuptools-scm + python-setuptools + python-devel + + programming/language/python/python-configparser/pspec.xml + + + python-configparser + Backport of configparser from Python 3 + + /usr/share/doc/python-configparser + /usr/lib/python2* + + + + + 2020-03-27 + 5.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-17 + 4.0.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-contextlib2 + https://github.com/jazzband/contextlib2 + + Blue Devil + bluedevil@sctzine.com + + PSF + library + programming.language.python + contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. + contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. + contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. It also serves as a real world proving ground for possible future enhancements to the standard library version. + python-contextlib2, contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. + https://github.com/jazzband/contextlib2/archive/v0.6.0.post1.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-contextlib2/pspec.xml + + + python-contextlib2 + contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. + + /usr/share/doc/python-contextlib2 + /usr/lib/python2* + + + + + 2020-02-17 + 0.6.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-cryptography + https://cryptography.io/ + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + Cryptographic recipes for Python + Python için kriptografik tarifler + A package designed to expose cryptographic recipes and primitives to Python developers + python-cryptography, Python geliştiricileri icin kriptografik tarifler ve ilkeler sunan bir pakettir. + https://github.com/pyca/cryptography/archive/3.1.tar.gz + + python-cffi + python-devel + openssl-devel + python-pycparser + python-setuptools + + programming/language/python/python-cryptography/pspec.xml + + + python-cryptography + Cryptographic recipes for Python + + python + python-cffi + + + /usr/lib/python2* + /usr/share/doc/python-cryptography/LICENSE + /usr/share/doc/python-cryptography/README.rst + + + + + 2020-08-30 + 3.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 2.9.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 2.9.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-08 + 2.9 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-06 + 2.8 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-cups + http://cyberelk.net/tim/software/pycups + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Python interface to the CUPS API + CUPS programlama arayüzü için Python desteği + python-cups contains python bindings to wrap the CUPS API. + python-cups, CUPS programlama arayüzü için Python bağlayıcıları içeren bir pakettir. + https://files.pythonhosted.org/packages/00/ce/836a0deb8b24bcd5f850f8fb97f99fb4abd7374e078b9e6df5a0838f8eb5/pycups-1.9.74.tar.bz2 + + cups-devel + python-devel + + programming/language/python/python-cups/pspec.xml + + + python-cups + + cups + + + /usr/lib + /usr/share/doc + + + + + 2019-10-19 + 1.9.74 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.9.73 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.9.73 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.9.72 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-21 + 1.9.72 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + python-dateutil + https://github.com/dateutil/dateutil + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python + python-dateutil provides powerful extensions to datetime + Python datetime için güçlü genişletmeler içeren python modülü + The dateutil module provides powerful extensions to the standard datetime module, available in Python. + python-dateutil, Python 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 + + python-setuptools-scm + python-setuptools + python-devel + + programming/language/python/python-dateutil/pspec.xml + + + python-dateutil + python-dateutil provides powerful extensions to datetime + + python-six + + + /usr/lib/python2* + /usr/share/doc/python-dateutil + + + + + 2019-12-24 + 2.8.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python-decorator + http://www.phyast.pitt.edu/~micheles/python/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + Python module to simplify the usage of decorators + Dekoratör kullanımını kolaylaştıran python modulü + python-decorator simplifies the usage of decorators for the average programmer. + python-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. + https://github.com/micheles/decorator/archive/4.4.2.tar.gz + + python-setuptools + python-nose + + programming/language/python/python-decorator/pspec.xml + + + python-decorator + Python module to simplify the usage of decorators + + /usr/share/doc/python-decorator + /usr/lib/python2* + + + + + 2020-03-04 + 4.4.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-27 + 4.4.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 4.3.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-26 + 4.2.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 4.0.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 4.0.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-04 + 4.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python-docker + https://github.com/docker/docker-py + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + A Python library for the Docker Engine API. + Docker motoru apileri için python kitaplığı. + A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. + python-docker, docker motoru apileri için python kitaplığı sunar. + https://github.com/docker/docker-py/archive/4.1.0.tar.gz + + python-websocket-client + python-setuptools + python-requests + python-devel + python-six + + programming/language/python/python-docker/pspec.xml + + + python-docker + A Python library for the Docker Engine API. + + python-backports-ssl-match-hostname + python-websocket-client + python-requests + python-six + + + /usr/lib/python2* + /usr/share/doc/python-docker + + + + + 2020-01-15 + 4.10 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python-docker-py + https://github.com/dotcloud/docker-py + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python + Python client for Docker. + A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. + https://github.com/docker/docker-py/archive/2.0.2.tar.gz + + python-devel + python-setuptools + python-websocket-client + python-six + python-requests + pip + + programming/language/python/python-docker-py/pspec.xml + + + python-docker-py + Python client for Docker. + + python + python-websocket-client + python-six + python-requests + + + /usr/lib + /usr/share/doc + + + + + 2018-08-29 + 2.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 2.0.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.8.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-ecdsa + https://github.com/warner/python-ecdsa + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python + ECDSA implementation for Python + Python için ECDSA Kriptografi Uygulaması + This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm), implemented purely in Python, released under the MIT license. With this library, you can quickly create keypairs (signing key and verifying key), sign messages, and verify the signatures. The keys and signatures are very short, making them easy to handle and incorporate into other protocols. + Python için kolay kullanımlı, MIT lisanslı ECDSA kriptografi (Elliptic Curve Digital Signature Algorithm) modülü. Bu kitaplık ile hızlıca anahtar oluşturabilir (giriş ahahtarı ve doğrulama anahtarı), iletileri imzalayabilir ve imzalarınızı doğrulayabilirsiniz. Anahtar ile imzalar çok kısadır ve diğer protokollere bütünlleştirmek oldukça kolaydır. + https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.15.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-ecdsa/pspec.xml + + + python-ecdsa + ECDSA module for python + + python-six + + + /usr/share/doc/python-ecdsa + /usr/lib/python2* + + + + + 2020-01-23 + 0.15 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-21 + 0.14.1 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-01 + 0.13 + First Pisi Release, built with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + python-editor + https://github.com/fmoo/python-editor + + Blue Devil + bluedevil@sctzine.com + + Apache2.0 + library + programming.language.python + Programmatically open an editor, capture the result. + Sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı. + python-editor is a library that provides the editor module for programmatically interfacing with your system's $EDITOR. + python-editor sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı sağlar. + https://github.com/fmoo/python-editor/archive/1.0.4.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-editor/pspec.xml + + + python-editor + Programmatically open an editor, capture the result. + + /usr/lib/python2* + /usr/share/doc/python-editor + + + + + 2020-02-18 + 1.0.4 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-enchant + https://github.com/pyenchant/pyenchant + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + programming.language.python + Python bindings for the Enchant spellchecking system + Enchant yazım denetleyicisi için hızlı bir Python modulü + python-enchant is an efficient Python module for Enchant spellchecker. + python-enchant, Enchant yazım denetleyicisi için hızlı bir Python modulüdür. + https://pypi.python.org/packages/9e/54/04d88a59efa33fefb88133ceb638cdf754319030c28aadc5a379d82140ed/pyenchant-2.0.0.tar.gz + + python-setuptools + enchant2-devel + python-devel + + + enchant-2.patch + + programming/language/python/python-enchant/pspec.xml + + + python-enchant + Python bindings for the Enchant spellchecking system + + enchant2 + + + /usr/lib/python2* + /usr/share/doc/python-enchant + + + + + 2020-01-18 + 2.0.0 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 2.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 2.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.6.8 + Rebuild for new toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-24 + 1.6.8 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + python-enum34 + https://bitbucket.org/stoneleaf/enum34/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + programming.language.python + An enumeration is a set of symbolic names (members) bound to unique, constant values. Within an enumeration, the members can be compared by identity, and the enumeration itself can be iterated over. + python-enum34, python3.4'ten python2.4ye kadar ger'ye dönüklüğü sağlar. + python-enum34 is the new Python stdlib enum module available in Python 3.4 backported for previous versions of Python from 2.4 to 3.3. tested on 2.6, 2.7, and 3.3+ + Bir numaralandırma, benzersiz, sabit değerlere bağlı bir dizi sembolik isimdir (üyeler). Bir numaralandırmada, üyeler kimlikle karşılaştırılabilir ve numaralandırma kendisi üzerinde yinelenebilir. + https://bitbucket.org/stoneleaf/enum34/get/1.1.10.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-enum34/pspec.xml + + + python-enum34 + The enum module from Python3.4 backported from 3.3 - 2.4 + + /usr/share/doc + /usr/lib + + + + + 2020-03-11 + 1.1.10 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 1.1.9 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-23 + 1.1.8 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 1.1.6 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-10-18 + 1.1.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python-gtk + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + GTK+ bindings for Python + Python için GTK+ bağlayıcıları + Bindings (liens) GTK+2 pour Python. + python-gtk lets you to easily create programs with a graphical user interface using the Python programming language and GTK+ library. + python-gtk, Python programlama diliyle GTK+ kitaplığını kullanarak, basit grafiksel kullanıcı arayüzü oluşturmanızı sağlar. + mirrors://gnome/pygtk/2.24/pygtk-2.24.0.tar.bz2 + + cairo-devel + pango-devel + gtk2-devel + glib2-devel + python-devel + libglade-devel + python-pygobject-devel + python-numpy + python-cairo-devel + + + 0001-Fix-leaks-of-Pango-objects.patch + pygtk-Drop-the-PangoFont-find_shaper-virtual-method.patch + python27.patch + + programming/language/python/python-gtk/pspec.xml + + + python-gtk + + atk + gtk2 + cairo + glib2 + pango + libglade + gdk-pixbuf + + + /usr/lib + /usr/share/doc + + + + python-gtk-demo + Demo applications for python-gtk + python-gtk için demo uygulamalar + app:gui + + python-gtk + + + /usr/bin/pygtk-demo + /usr/lib/pygtk/2.0/pygtk-demo.py + /usr/lib/pygtk/2.0/demos + + + + python-gtk-docs + Reference documents for python-gtk + python-gtk için referans belgeleri + data:doc + + python-gtk + + + /usr/share/gtk-doc + + + + python-gtk-devel + Development files for python-gtk + python-gtk için geliştirme dosyaları + + python-gtk + python-pygobject-devel + gtk2-devel + libglade-devel + + + /usr/bin/pygtk-codegen-2.0 + /usr/include + /usr/lib/pkgconfig + /usr/share/pygtk + + + + + 2021-08-10 + 2.24.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-04 + 2.24.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 2.24.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-25 + 2.24.0 + Rebuild for brokens + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 2.24.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 2.24.0 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.24.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-04 + 2.24.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-h2 + https://github.com/python-hyper/hyper-h2 + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + HTTP/2 State-Machine based protocol implementation + HTTP/2 Durum-Makinesi temelli protokol uygulanaması + This repository contains a pure-Python implementation of a HTTP/2 protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can speak HTTP/2 regardless of your programming paradigm. + python-h2, bu repo sadece python ile yazılmış HTTP/2 protokol yığını içerir. Programlama paradigmanız ne olursa olsun HTTP/2 konuştuğunuz sürece istediğiniz progrma gömebileceğiniz şekilde yazılmıştır. + https://github.com/python-hyper/hyper-h2/archive/v4.0.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-h2/pspec.xml + + + python-h2 + HTTP/2 State-Machine based protocol implementation + + python-hpack + python-enum34 + python-hyperframe + + + /usr/lib + /usr/share/man + /usr/share/doc/python-h2 + + + + + 2020-09-23 + 4.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-23 + 3.2.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 3.1.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-hpack + https://github.com/python-hyper/hpack + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + HTTP/2 Header Encoding for Python. + Python için HTTP/2 başlık kodlaması. + This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2. + python-hpack, HTTP/2yi kullanan uygulamalar için HTTP/2 başlık kodlaması sunar. + https://github.com/python-hyper/hpack/archive/v4.0.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-hpack/pspec.xml + + + python-hpack + HTTP/2 Header Encoding for Python. + + /usr/lib + /usr/share/man + /usr/share/doc/python-hpack + + + + + 2020-09-23 + 4.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 3.0.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-hyperframe + https://github.com/python-hyper/hyperframe + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Pure-Python HTTP/2 framing + Pure-Python HTTP/2 çatısı. + This library contains the HTTP/2 framing code used in the hyper project. It provides a pure-Python codebase that is capable of decoding a binary stream into HTTP/2 frames. + python-hyperframe, bu kitaplık "hyper" projelerinde kullanılmak üzere "HTTP/2" çerçeveleri içerir. İkilik bir akışı HTTP/2 çerçevelerine çözebilen python kod tabanı sunar. + https://github.com/python-hyper/hyperframe/archive/v6.0.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-hyperframe/pspec.xml + + + python-hyperframe + Pure-Python HTTP/2 framing + + /usr/lib + /usr/share/man + /usr/share/doc/python-hyperframe + + + + + 2020-09-23 + 6.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 5.2.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-idna + https://github.com/kjd/idna + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + Internationalized Domain Names in Applications (IDNA) + IDNA protokolünü desktekleyen python kitaplığıdır. + Support for the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891. This library also provides support for Unicode Technical Standard 46, Unicode IDNA Compatibility Processing. + RFC 5891 belgelendirmesinde belirtilen IDNA(Internationalised Domain Names in Applications - Uygulamalardaki Uluslararasılaşmış Alan Adları) protokolünü destekleyen python kitaplığıdır. Bu kitaplık ayrıca Unikod(Unicode) teknik standardı 46'yı da kapsar. + https://github.com/kjd/idna/archive/v2.9.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-idna/pspec.xml + + + python-idna + Internationalized Domain Names in Applications (IDNA) + + /usr/lib/python2* + /usr/share/doc/python-idna + + + + + 2020-12-09 + 2.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-18 + 2.9 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-24 + 2.8 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-29 + 2.7 + First release + PisiLinux Community + admins@pisilinux.org + + + 2018-05-22 + 2.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python-imaging + http://www.pythonware.com/products/pil/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + Python Imaging Library (PIL) + Python Görüntü İşleme Kitaplığı + The Python Imaging Library (PIL) adds image processing capabilities to your Python interpreter. This library supports many file formats, and provides powerful image processing and graphics capabilities. + python-imaging, python2 görüntü işleme kitaplığı dosyalarını sunar. + La librería Python Imaging Library (PIL) facilita el procesamiento de imágenes desde Python. Esta librería soporta muchos formatos de archivos y provee potentes facilidades de procesamiento de gráficos. + http://effbot.org/media/downloads/Imaging-1.1.7.tar.gz + + sane-backends-devel + libjpeg-turbo-devel + freetype-devel + python-devel + lcms-devel + zlib-devel + + + local_only_initial_value.patch + gentoo-imaging-sane.patch + anka-imaging-tiffendian.patch + gentoo-imaging-giftrans.patch + + programming/language/python/python-imaging/pspec.xml + + + python-imaging + Python Imaging Library (PIL) + + libjpeg-turbo + sane-backends + xdg-utils + freetype + tcltk + lcms + tcl + + + /usr/bin + /usr/lib + /usr/include + /usr/share/doc + + + + + 2020-01-20 + 1.1.7 + Clean and rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 1.1.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.1.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.1.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-08 + 1.1.7 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + python-importlib_metadata + https://gitlab.com/python-devs/importlib_metadata + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + importlib_metadata is a library to access the metadata for a Python package. + Python paketlerinin metaverisine erişmek için python kitaplığı + importlib_metadata is a library to access the metadata for a Python package. + python-importlib_metadata, Python paketlerinin metaverisine erişmek için python kitaplığı sağlar. + https://gitlab.com/python-devs/importlib_metadata/-/archive/v2.0.0/importlib_metadata-v2.0.0.tar.gz + + python-devel + python-setuptools + python-setuptools-scm + + programming/language/python/python-importlib_metadata/pspec.xml + + + python-importlib_metadata + Python development support library (note: maintenance only) + + python-zipp + python-pathlib2 + python-contextlib2 + python-configparser + + + /usr/lib/python2* + /usr/share/doc/python-importlib_metadata + + + + + 2020-09-23 + 2.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 1.6.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.5.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-17 + 1.5.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-importlib_resources + https://gitlab.com/python-devs/importlib_resources + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + Design and implementation for a planned importlib.resources + Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı. + The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics. + python-importlib_resources, Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı sunar. Ana amacı pkg_resources madülünün yerini almaktır. + https://gitlab.com/python-devs/importlib_resources/-/archive/v1.5.0/importlib_resources-v1.5.0.tar.gz + + python-toml + python-devel + python-setuptools + python-setuptools-scm + + programming/language/python/python-importlib_resources/pspec.xml + + + python-importlib_resources + Design and implementation for a planned importlib.resources + + python-pathlib2 + python-contextlib2 + python-singledispatch + python-importlib_metadata + + + /usr/lib/python2* + /usr/share/doc/python-importlib_resources + + + + + 2020-05-18 + 1.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-18 + 1.3.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-ipaddress + https://github.com/phihag/ipaddress + + Blue DeviL + bluedevil@sctzine.com + + PSFL + library + programming.language.python + Python 3.3+'s ipaddress for older Python versions + Python için ipaddress modülü + python-ipaddress ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. This module is a backport for python 2.7 and python versions up to 3.2. + python-ipaddress modülü Python3.3 ile gelen ipaddress modülünün python 2.7 ve python 3.2'ye kadar olan sürümlerinde de çalışmasını sağlar. + https://github.com/phihag/ipaddress/archive/v1.0.23.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-ipaddress/pspec.xml + + + python-ipaddress + ipaddress module for python + + /usr/lib + /usr/share/doc + + + + + 2019-11-25 + 1.0.23 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python-itsdangerous + https://palletsprojects.com/p/itsdangerous/ + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python + Safely pass trusted data to untrusted environments and back. + Güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiir. + python3-itsdangerous provides safely pass trusted data to untrusted environments and back. + python-itsdangerous,güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiren python kitaplığı sunar. + https://github.com/pallets/itsdangerous/archive/1.1.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-itsdangerous/pspec.xml + + + python-itsdangerous + Safely pass trusted data to untrusted environments and back. + + /usr/lib/python2* + /usr/share/doc/python-itsdangerous + + + + + 2020-02-15 + 1.1.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-lxml + https://lxml.de/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + library + programming.language.python + lxml is the most feature-rich and easy-to-use library + Zengin içerikli ve kolay kullanımlı bir kütüphane. + lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. + Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. + https://github.com/lxml/lxml/archive/lxml-4.5.1.tar.gz + + cython + python-devel + libxslt-devel + libxml2-devel + + programming/language/python/python-lxml/pspec.xml + + + python-lxml + lxml is the most feature-rich and easy-to-use library + + python + libxml2 + libxslt + + + /usr/lib/python2* + + + + python-lxml-docs + API documentation of python-lxml + python-lxml paketine ait API belgeleri + python-lxml-docs, python-lxml paketine ait API belgeleri içerir. + + python-lxml + + + /usr/share/doc + + + + + 2020-05-24 + 4.5.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 4.5.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 4.4.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-07 + 4.1.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 4.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 3.7.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.3.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-05 + 3.3.5 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + python-mako + http://www.makotemplates.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + programming.language.python + A python templating language + Python şablonlama dili + python-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. + python-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. + https://files.pythonhosted.org/packages/42/64/fc7c506d14d8b6ed363e7798ffec2dfe4ba21e14dda4cfab99f4430cba3a/Mako-1.1.2.tar.gz + + python-MarkupSafe + python-setuptools + python-beaker + python-devel + + programming/language/python/python-mako/pspec.xml + + + python-mako + A python templating language + + python-MarkupSafe + python-beaker + + + /usr/bin + /usr/share/doc + /usr/lib + + + + python-mako-docs + Documentation files for python-mako + python-mako için belgelendirme dosyaları + python-mako-docs, python-mako için belgelendirme dosyalarını içerir. + + python-mako + + + /usr/share/doc/*/html + /usr/share/doc/*/build + /usr/share/doc/*/examples + + + + + 2020-03-04 + 1.1.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 1.1.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 1.0.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 1.0.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.0.6 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-09-22 + 0.9.1 + Release Bump + Oğuzhan BÖLÜKBAŞ + oguzhan.bolukbas18@gmail.com + + + 2014-04-16 + 0.9.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + python-mutagen + https://github.com/quodlibet/mutagen + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + An audio tag editing library + Müzik dosyalarının etiketlerini düzenlemek için bir python kitaplığı + Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, MP4, Monkey’s Audio, MP3, Musepack, Ogg Opus, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG, and AIFF audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level. + python-mutagen, müzik dosyalarının etiketlerini düzenlemeye yarayan python ile yazılmış bir kütüphanedir. + https://github.com/quodlibet/mutagen/archive/release-1.43.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-mutagen/pspec.xml + + + python-mutagen + An audio tag editing library + + /usr/bin/mid3cp-py2 + /usr/bin/mid3v2-py2 + /usr/bin/moggsplit-py2 + /usr/bin/mid3iconv-py2 + /usr/bin/mutagen-pony-py2 + /usr/bin/mutagen-inspect-py2 + /usr/lib/python2* + /usr/share/man/man1/mid3cp-py2.1 + /usr/share/man/man1/mid3iconv-py2.1 + /usr/share/man/man1/mid3v2-py2.1 + /usr/share/man/man1/moggsplit-py2.1 + /usr/share/man/man1/mutagen-inspect-py2.1 + /usr/share/man/man1/mutagen-pony-py2.1 + /usr/share/doc/python-mutagen + + + + + 2019-12-24 + 1.43.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 1.41.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 1.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.36.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-18 + 1.32 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + python-nose + https://nose.readthedocs.io/en/latest/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + programming.language.python + A unittest extension offering automatic test suite discovery and easy test authoring + Python için unittest genişlemesi + python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. + python-nose alternatif test tanıtma ve keşif kitaplığı. + https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz + + python-devel + + programming/language/python/python-nose/pspec.xml + + + python-nose + A unittest extension offering automatic test suite discovery and easy test authoring + + python + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2019-12-29 + 1.3.7 + Rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-05 + 1.3.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.3.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-04 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python-numpy + https://numpy.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + The fundamental package needed for scientific computing with Python + Python ile bilimsel hesaplama için ihtiyaç duyulan temel paket + Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities. + Numpy, N-boyutlu güçlü bir dizi, gelişmiş fonksiyonlar, C/C++ ve Fortran kodunu entegre etmek için araçlar, doğrusal cebir ve rastgele sayı özelliği içerir. + Numpy contiene un potente objeto de array N-dimensional, funciones sofisticadas (broadcasting), herramientas para la integración de código C/C++ y Fortran, y facilidades útiles de algebra lineal, transformación Fourier, y número aleatorios. + https://github.com/numpy/numpy/archive/v1.16.6.tar.gz + + python-setuptools + lapack-devel + python-devel + cblas-devel + libgfortran + cython + cblas + libquadmath + + programming/language/python/python-numpy/pspec.xml + + + python-numpy + The fundamental package needed for scientific computing with Python + + lapack + cblas + blas + libquadmath + + + /usr/bin/f2py-py2 + /usr/bin/f2py2 + /usr/bin/f2py2.7 + /usr/share/doc + /usr/share/man + /usr/lib + + + + python-numpy-docs + Documentation files for python-numpy + python-numpy için belgelendirme dosyaları + python-numpy-docs, python-numpy için belgelendirme dosyalarını içerir. + + python-numpy + + + /usr/share/doc/python-numpy/doc + + + + + 2020-11-07 + 1.16.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-01 + 1.16.6 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-14 + 1.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 1.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-17 + 1.12.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.8.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-29 + 1.8.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + python-packaging + https://github.com/pypa/packaging + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + Core utilities for Python packages + Python paketleri için çekirdek araçları. + Core utilities for Python packages + python-packaging projesi python paketleri yapmayı kolaylaştıran, sürümleme, belirteçler işaretçiler gereklilikler(bağımlılık), etiketler ve araçları içerir. + https://github.com/pypa/packaging/archive/20.4.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-packaging/pspec.xml + + + python-packaging + Core utilities for Python packages + + python + + + /usr/lib/python2* + /usr/share/doc/python-packaging + + + + + 2020-05-24 + 20.4 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 20.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-29 + 20.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 20.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 19.2 + First Release + Blue Devil + bluedevil@sctzine.com + + + + + + python-path-py + https://pypi.org/project/path.py/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + A module wrapper for os.path. + python-path-py (aka path pie) implements path objects as first-class entities, allowing common operations on files to be invoked on those path objects directly.. + https://pypi.org/packages/source/p/path.py/path.py-11.5.2.tar.gz + + python-devel + python-setuptools + python-setuptools-scm + + programming/language/python/python-path-py/pspec.xml + + + python-path-py + A module wrapper for os.path. + + python + + + /usr/lib/python2* + /usr/share/doc/python-path-py + + + + + 2020-05-24 + 11.5.2 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python-pathlib2 + https://github.com/mcmtroffaes/pathlib2 + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Fork of pathlib aiming to support the full stdlib Python API. + Python API standart kitaplığındaki pathlib çatalı. + Backport of pathlib aiming to support the full stdlib Python API. As of January 1 2020, this repository will no longer receive any further updates, as Python 2 is no longer supported. + python-pathlib2, Python API standart kitaplığındaki pathlib çatalıdır ve geriye dönüklüğü sağlar. + https://github.com/mcmtroffaes/pathlib2/archive/2.3.5.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-pathlib2/pspec.xml + + + python-pathlib2 + Fork of pathlib aiming to support the full stdlib Python API. + + python-scandir + + + /usr/share/doc/python-pathlib2 + /usr/lib/python2* + + + + + 2020-02-18 + 2.3.5 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-pillow + https://python-pillow.org/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python + The friendly PIL fork (Python Imaging Library) + Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. As of 2019, Pillow development is supported by Tidelift. + https://github.com/python-pillow/Pillow/archive/6.2.2.tar.gz + + libjpeg-turbo-devel + libimagequant-devel + python-setuptools + openjpeg2-devel + freetype-devel + python-devel + lcms2-devel + tiff-devel + webp-devel + zlib-devel + + programming/language/python/python-pillow/pspec.xml + + + python-pillow + The friendly PIL fork (Python Imaging Library) + + libjpeg-turbo + libimagequant + openjpeg2 + freetype + lcms2 + tiff + webp + zlib + + + /usr/bin + /usr/share/doc + /usr/lib + + + + python-pillow-devel + Development files for python-pillow + python-pillow için geliştirme dosyaları + python-pillow-devel, python-pillow için geliştirme dosyalarını içerir. + + python-pillow + libjpeg-turbo-devel + python-devel + zlib-devel + + + /usr/include + + + + + 2020-01-20 + 6.2.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 5.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-03 + 4.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 4.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-18 + 3.1.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + python-pluggy + https://github.com/pytest-dev/pluggy + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + A minimalist production ready plugin system + Minimalist bir hazır üretim eklenti sistemi. + pluggy is the crystallized core of plugin management and hook calling for pytest. It enables 500+ plugins to extend and customize pytest’s default behaviour. + python-pluggy, minimalist bir hazır üretim eklenti sistemi içerir. + https://github.com/pytest-dev/pluggy/archive/0.13.1.tar.gz + + python-setuptools-scm + python-setuptools + python-devel + + programming/language/python/python-pluggy/pspec.xml + + + python-pluggy + A minimalist production ready plugin system + + python-importlib_metadata + + + /usr/lib/python2* + /usr/share/doc/python-pluggy + + + + + 2020-02-18 + 0.13.1 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-pyaspects + https://github.com/ionelmc/python-aspectlib + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Aspect-Oriented development for Python + Aspect-Oriented Development modules for Python. + https://github.com/baris/pyaspects/archive/0.4.4.tar.gz + programming/language/python/python-pyaspects/pspec.xml + + + python-pyaspects + Aspect-Oriented development for Python + + /usr/lib/python2* + /usr/share/doc/python-pyaspects + + + + + 2020-01-20 + 0.4.4 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 0.4.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.4.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.4.4 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.4.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-12-07 + 0.4.4 + First release + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + + + + python-pyatspi + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2+ + library + programming.language.python + Python bindings for at-spi2-core + at-spi2-core altyapısı için Python bağlayıcısı + python-pyatspi provides a python client library for the AT-SPI D-Bus accessibility infrastructure. + python-pyatspi AT-SPI D-Bus erişilebilirlik altyapısı için python istemci kitaplığıdır. + http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.36/pyatspi-2.36.0.tar.xz + + python-pygobject3-devel + at-spi2-core-devel + + programming/language/python/python-pyatspi/pspec.xml + + + python-pyatspi + Python bindings for at-spi2-core + + python-pygobject3 + at-spi2-core + + + /usr/share/doc/python-pyatspi + /usr/lib/python* + + + + + 2020-03-27 + 2.36.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 2.34.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 2.26.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + 2018-05-06 + 2.26.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python-pyblock + http://git.fedoraproject.org/git/pyblock.git + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python + Python modules for dealing with block devices + Blok aygıtları ile ilgili python modülleri içerir. + The pyblock contains Python modules for dealing with block devices. + Pyblock blok aygıtları ile ilgili python modülleri içerir. + http://pkgs.fedoraproject.org/repo/pkgs/python-pyblock/pyblock-0.53.tar.bz2/f6d33a8362dee358517d0a9e2ebdd044/pyblock-0.53.tar.bz2 + + device-mapper-devel + python-devel + dmraid-devel + + + fix-underlinking.patch + build.patch + + programming/language/python/python-pyblock/pspec.xml + + + python-pyblock + Python modules for dealing with block devices + + device-mapper + dmraid + python + + + /usr/lib + /usr/share/doc + + + + + 2020-01-20 + 0.53 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 0.53 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.53 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.53 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.53 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-23 + 0.53 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python-pycparser + https://github.com/eliben/pycparser + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python + Complete C99 parser in pure Python + Python ile yazilmis C99 cozumleyicisi + pycparser is a parser for the C language, written in pure Python. It is a module designed to be easily integrated into applications that need to parse C source code. + pycparser, C kaynak kodunu çözümlemesi gereken uygulamalara kolaylıkla bütünleşebilen bir python modülüdür. + https://github.com/eliben/pycparser/archive/release_v2.20.tar.gz + + python-setuptools + python + + programming/language/python/python-pycparser/pspec.xml + + + python-pycparser + Complete C99 parser in pure Python + + /usr/share/doc/python-pycparser + /usr/lib/python2* + + + + + 2020-03-04 + 2.20 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-07 + 2.19 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-pygobject + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Bindings (liens) glib pour Python. + Glib bindings for Python + glib için python bağlayıcıları + pygobject is GLib's GObject library bindings for Python. + pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. + http://ftp.gnome.org/pub/GNOME/sources/pygobject/2.28/pygobject-2.28.7.tar.xz + + glib2-devel + python-devel + python-cairo-devel + + + pygobject-2.16.1-fixdetection.patch + + programming/language/python/python-pygobject/pspec.xml + + + python-pygobject + + python-cairo + libffi + glib2 + + + /usr/lib + /usr/share/doc + + + + python-pygobject-devel + pygobject development files + pygobject geliştirme dosyaları + pygobject-devel, pygobject için geliştirme dosyalarını içerir. + + python-pygobject + libffi-devel + glib2-devel + + + /usr/bin/pygobject-codegen-2.0 + /usr/share/pygobject + /usr/lib/pkgconfig + /usr/include + + + + python-pygobject-docs + API documents for pygobject + pygobject için API dökümanları + pygobject-docs, pygobject için belgelendirme dosyalarını içerir. + data:doc + + /usr/share/gtk-doc + + + + + 2020-01-20 + 2.28.7 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-14 + 2.28.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 2.28.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-06 + 2.28.6 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 2.28.6 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.28.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-04 + 2.28.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python-pygobject3 + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Bindings (liens) GLib/GObject/GIO/GTK+ pour Python. + Python Bindings for GLib/GObject/GIO/GTK+ + GLib/GObject/GIO/GTK+ için python bağlayıcıları + pygobject is GLib's GObject library bindings for Python3. + pygobject, Python için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. + http://ftp.acc.umu.se/pub/GNOME/sources/pygobject/3.36/pygobject-3.36.1.tar.xz + + meson + glib2-devel + libffi-devel + python-devel + python-cairo-devel + gobject-introspection-devel + + programming/language/python/python-pygobject3/pspec.xml + + + python-pygobject3 + Python Bindings for GLib/GObject/GIO/GTK+ + + glib2 + cairo + libffi + python-cairo + gobject-introspection + + + /usr/share/doc + /usr/share/pygobject + /usr/lib/python2.7 + /usr/lib/libpyglib-gi-2.0-python2.7.so* + + + + python-pygobject3-devel + Development files for python3-pygobject3 + python-pygobject3 için geliştirme dosyaları + python-pygobject3-devel, python-pygobject3 için geliştirme dosyalarını içerir. + + glib2-devel + libffi-devel + gobject-introspection-devel + python-pygobject3 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-18 + 3.36.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 3.36.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-19 + 3.34.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-09-14 + 3.32.2 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-13 + 3.27.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-25 + 3.27.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 3.22.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 3.22.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.18.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 3.18.2 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-08 + 3.18.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-pynacl + https://github.com/pyca/pynacl/ + + Blue DeviL + bluedevil@sctzine.com + + Apache + library + programming.language.python + Python binding to the Networking and Cryptography (NaCl) library + Python için NaCl modülü + python-pynacl PyNaCl is a Python binding to libsodium, which is a fork of the Networking and Cryptography library. These libraries have a stated goal of improving usability, security and speed. + PyNaCl, ağ ve kriptografi kitaplığınından geliştirilen libsodium kitaplığının python modülüdür. + https://github.com/pyca/pynacl/archive/1.3.0.tar.gz + + python-cffi + python-devel + python-pycparser + python-setuptools + + programming/language/python/python-pynacl/pspec.xml + + + python-pynacl + PyNaCl module for python + + python + python-cffi + + + /usr/lib + /usr/share/doc + + + + + 2019-11-25 + 1.3.0 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python-PyYAML + https://pyyaml.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python + The next generation YAML parser and emitter for Python + Python için yeni nesil YAML ayrıştırıcısı + python-pyyaml is the next generation YAML parser and emitter for Python. + python-pyyaml python için yeni nesil YAML ayrıştırıcısıdır. + https://github.com/yaml/pyyaml/archive/5.3.1.tar.gz + + _yaml.c + + + libyaml-devel + python-devel + + programming/language/python/python-PyYAML/pspec.xml + + + python-PyYAML + The next generation YAML parser and emitter for Python + + libyaml + + + /usr/share/doc/python-PyYAML + /usr/lib/python2* + + + + + 2020-04-07 + 5.3.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-22 + 5.3 + Clean and rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 5.3 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2019-01-02 + 5.2 + Version bump and rebuilt w/ gcc9. + Blue Devil + bluedevil@sctzine.com + + + 2019-10-03 + 5.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-29 + 3.13 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 3.12 + Rebuild for new toolchain + Kamil Atlı + suvari@pisilinux.org + + + 2017-01-16 + 3.12 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 3.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-27 + 3.11 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-pyzmq + https://github.com/zeromq/pyzmq/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + programming.language.python + PyZMQ: Python bindings for zeromq + PyZMQ: ZeroMQ için Python bağlayıcıları + This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation. + python-pyzmq, ZeroMQ için Python bağlayıcıları içerir. + https://github.com/zeromq/pyzmq/archive/v19.0.1.tar.gz + + cython + python-devel + zeromq-devel + python-setuptools + + programming/language/python/python-pyzmq/pspec.xml + + + python-pyzmq + PyZMQ: Python bindings for zeromq + + python + zeromq + + + /usr/lib/python2* + /usr/share/doc/python-pyzmq + + + + + 2020-05-18 + 19.0.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 19.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-31 + 18.1.1 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python-qt5 + https://www.riverbankcomputing.com/software/pyqt/intro + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python + A set of Python bindings for the Qt 5.x Toolkit + Qt5.x araçları için python bağlayıcıları + Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. + Qt5, C++ kütüphaneleri dizisi ve geliştirme araçları olup grafik kullanıcı arabirimleri için, ağ bağlantısı, iş parçacığı, Unicode, düzenli ifadeler, SQL veritabanları, SVG, OpenGL, XML ve kullanıcıve uygulama ayarları gibi platform bağımsız uygulamalara ayrılır. PyQt, Python modülü seti olarak bu sınıftan 440 kadar uygulamayı çalıştırır. + https://files.pythonhosted.org/packages/3b/27/fd81188a35f37be9b3b4c2db1654d9439d1418823916fe702ac3658c9c41/PyQt5-5.15.6.tar.gz + + dbus-devel + dbus-python + python-devel + python-enum34 + dbus-python-common + python-sip + qt5-svg-devel + qt5-base-devel + python-pyqt5-sip + qt5-script-devel + qt5-webkit-devel + qt5-sensors-devel + qt5-designer-devel + qt5-location-devel + qt5-x11extras-devel + qt5-webengine-devel + qt5-websockets-devel + qt5-multimedia-devel + qt5-serialport-devel + qt5-webchannel-devel + qt5-declarative-devel + qt5-networkauth-devel + qt5-xmlpatterns-devel + qt5-connectivity-devel + qt5-quickcontrols2-devel + + + restore-sip4-support.patch + + programming/language/python/python-qt5/pspec.xml + + + python-qt5 + A set of Python 2.x bindings for the Qt 5.x Toolkit + + libgcc + dbus + python + python-enum34 + python-sip + qt5-webengine + qt5-svg + qt5-base + qt5-sensors + qt5-webkit + qt5-location + qt5-designer + qt5-x11extras + qt5-multimedia + qt5-serialport + qt5-webchannel + qt5-websockets + qt5-declarative + qt5-xmlpatterns + qt5-connectivity + python-pyqt5-sip + qt5-networkauth + + + /usr/bin/py2uic5 + /usr/lib/python2.7/site-packages + /usr/lib/qt5/plugins/PyQt5/libpy2qt5qmlplugin.so + /usr/lib/qt5/plugins/designer/libpy2qt5.so + /usr/share/qt5/qsci/api/python/Py2Qt5.api + /usr/bin/py2rcc5 + /usr/bin/py2lupdate5 + + + + python-qt5-devel + Development files for python-qt5 + + libgcc + qt5-base + python-qt5 + + + /usr/share/sip/Py2Qt5 + + + + + 2022-04-18 + 5.15.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-06 + 5.15.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-21 + 5.15.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-19 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-29 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-04 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-13 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-06 + 5.13.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.11.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-02 + 5.11.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-14 + 5.11.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-11 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 5.10.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-01 + 5.9.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-02 + 5.9.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-03 + 5.7.1 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-08 + 5.7.1 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-07 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-25 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 5.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python-reportlab + http://www.reportlab.com/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python + PDF generator library + PDF üretim kitaplığı + ReportLab is an PDF generation library with extensive features. + python-reportlab gelişmiş özellikleri olan bir PDF üretim kitaplığıdır ve PDF dosyaları oluşturmada kullanılır. + https://files.pythonhosted.org/packages/2a/02/078c875d81f231fc11ecda3158a2e2cfccc390a534c316e2524db007e245/reportlab-3.5.67.tar.gz + + mercurial + python-pillow + freetype-devel + python-devel + + programming/language/python/python-reportlab/pspec.xml + + + python-reportlab + + python + freetype + + + /usr/lib + + + + python-reportlab-docs + + python-reportlab + + + /usr/share/doc + + + + + 2021-04-26 + 3.5.67 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python-rfc3986 + https://pypi.org/project/rfc3986/ + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python + Validating URI References per RFC 3986. + Her RFC 3986 için URI referanslarını değerlendirir. + A Python implementation of RFC 3986 including validation and authority parsing. + python-rfc3986, değerlendirme ve yetkilendirme çözümleyicisi de içeren python3 uygulamasıdır. + https://github.com/python-hyper/rfc3986/archive/1.4.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-rfc3986/pspec.xml + + + python-rfc3986 + Validating URI References per RFC 3986. + + /usr/share/doc/python-rfc3986 + /usr/share/man + /usr/lib + + + + + 2020-04-08 + 1.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 1.3.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-scandir + https://github.com/benhoyt/scandir + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python + Better directory iterator and faster os.walk(), now in the Python 3.5 stdlib. + Standart kitaplıkta bulunan os.walk() yordamından daha iyi ve hızlı dizin döndürücüsü. + scandir() is a directory iteration function like os.listdir(), except that instead of returning a list of bare filenames, it yields DirEntry objects that include file type and stat information along with the name. + python-scandir, standart kitaplıkta bulunan os.walk() yordamından daha iyi ve hızlı dizin döndürücüsü sağlar. + https://github.com/benhoyt/scandir/archive/v1.10.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-scandir/pspec.xml + + + python-scandir + Better directory iterator and faster os.walk(), now in the Python 3.5 stdlib. + + /usr/share/doc/python-scandir + /usr/lib/python2* + + + + + 2020-02-18 + 1.10.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-setuptools-scm + https://github.com/pypa/setuptools_scm + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python + Python setuptools-scm module + Python setuptools-scm modülü + Tsetuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file. + setuptools-scm python paket versiyonlarını SCM metadataları kullanarak yönetmenizi sağlayan python modülüdür. + https://github.com/pypa/setuptools_scm/archive/v3.5.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-setuptools-scm/pspec.xml + + + python-setuptools-scm + Python setuptools-scm module + + python-setuptools + + + /usr/lib/python2* + /usr/share/doc/python-setuptools-scm + + + + + 2020-02-18 + 3.5.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 3.4.3 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-28 + 3.3.3 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python-singledispatch + https://pypi.org/project/singledispatch/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + This library is a backport of functools.singledispatch to Python 2.6 - 3.3. + functools.singledispatch yordamının python 3.4'ten geriye dönüklüğünü sağlayan kitaplık. + This library is a backport of this functionality to Python 2.6 - 3.3. PEP 443 proposed to expose a mechanism in the functools standard library module in Python 3.4 that provides a simple form of generic programming known as single-dispatch generic functions. + python-singledispatch, functools.singledispatch yordamının python 3.4'ten geriye dönüklüğünü sağlayan kitaplığı sağlar. + https://bitbucket.org/ambv/singledispatch/get/3.4.0.3.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-singledispatch/pspec.xml + + + python-singledispatch + This library is a backport of functools.singledispatch to Python 2.6 - 3.3. + + /usr/share/doc/python-singledispatch + /usr/lib/python2* + + + + + 2020-03-18 + 3.4.0.3 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-smbc + http://cyberelk.net/tim/software/pysmbc + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python + Python interface to the libsmbclient library + libsmbclient kitaplığı için Python arayüzü + python-smbc is a Python binding for the libsmbclient library. + python-smbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır. + https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.22.tar.gz + + samba-devel + python-devel + python-setuptools + + programming/language/python/python-smbc/pspec.xml + + + python-smbc + Python interface to the libsmbclient library + + samba + python + + + /usr/lib/python2* + /usr/share/doc/python-smbc + + + + + 2020-05-24 + 1.0.22 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 1.0.21 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 1.0.20 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.0.19 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 1.0.18 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-15 + 1.0.15.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 1.0.13 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 1.0.13 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-snowballstemmer + https://snowballstem.org/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python + Snowball stemming library collection for Python + Snowball, python için sözcük kökeni bulma kitaplığıdır. + Snowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. + Snowball, sıklıkla kullanılan bilgi çekme yapılırken kullanılan sözcük kökü bulma işlemi için yaratılmış küçük bir sözcük işleme kitaplığıdır. + https://pypi.python.org/packages/source/s/snowballstemmer/snowballstemmer-2.0.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-snowballstemmer/pspec.xml + + + python-snowballstemmer + Snowball stemming library collection for Python + + /usr/share/doc/python-snowballstemmer + /usr/lib/python2* + + + + + 2019-12-06 + 2.0.0 + Rebuilt + Blue Devil + bluedevil@sctzine.com + + + 2019-12-06 + 2.0.0 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-sphinxcontrib-websupport + https://www.sphinx-doc.org/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python + Sphinx API for Web Apps + python-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. + sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application. + python-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. python3-sphinxcontrib-websupport, ağ uygulamalarınız için Sphinx ile bütünleşebilen python apisi sunar. + https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.2.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-sphinxcontrib-websupport/pspec.xml + + + python-sphinxcontrib-websupport + sphinxcontrib-websupport module for python + + python-Jinja2 + python-docutils + python-setuptools + + + /usr/lib/python2* + /usr/share/doc/python-sphinxcontrib-websupport + + + + + 2020-05-18 + 1.2.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.2.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-24 + 1.2.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-13 + 1.1.2 + Rebuilt and clean + Blue Devil + bluedevil@sctzine.com + + + 2019-11-13 + 1.1.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python-toml + https://github.com/uiri/toml + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + Python lib for parsing TOML + TOML çözümleyen python kitaplığı. + A Python library for parsing and creating TOML. + python-toml, TOML çözümleyen python kitaplığı sunar. + https://github.com/uiri/toml/archive/0.10.1.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-toml/pspec.xml + + + python-toml + Python lib for parsing TOML + + python + + + /usr/lib/python2* + /usr/share/doc/python-toml + + + + + 2020-05-18 + 0.10.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-tqdm + https://github.com/tqdm/tqdm + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + A Fast, Extensible Progress Bar for Python and CLI. + Python ile komut satırı için hızlı ve genişletilebilir ilerleme çubugu kitaplığı + python-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done! + python-tqdm, python ile komut satırı için hızlı ve genişletilebilir ilerleme çubuğu kitaplığı sunar. Bu modül ile döngülerinize akıllı ilerleme çubuğu ekleyebilirsiniz. + https://github.com/tqdm/tqdm/archive/v4.46.0.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-tqdm/pspec.xml + + + python-tqdm + A Fast, Extensible Progress Bar for Python and CLI. + + python-setuptools + + + /usr/lib/python2* + /usr/bin/tqdm-py2 + /usr/share/doc/python-tqdm + + + + + 2020-05-18 + 4.46.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-08 + 4.45.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 4.44.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 4.43.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-05 + 4.42.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-27 + 4.42.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 4.41.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-25 + 4.41.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python-typing + https://pypi.org/project/typing/ + + Blue Devil + bluedevil@sctzine.com + + PSF + library + programming.language.python + Backport of the standard library typing module + Geriye dönük Python 2.7 typing bağlayıcıları + This is a backport of the standard library typing module to Python versions older than 3.5. Typing defines a standard notation for Python function and variable type annotations. The notation can be used for documenting code in a concise, standard format, and it has been designed to also be used by static and runtime type checkers, static analyzers, IDEs and other tools. + Python 3.5'dan önceki sürümler için geriye dönüklük destegi saglayan pyton2 bağlayıcısıdır. + https://pypi.io/packages/source/t/typing/typing-3.7.4.1.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-typing/pspec.xml + + + python-typing + Backport of the standard library typing module + + /usr/share/doc/python-typing + /usr/lib + + + + + 2019-11-13 + 3.7.4.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python-udev + https://pypi.org/project/pyudev/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python + Python bindings for libudev library + libudev için Python bağlayıcısı + These bindings enable using of udev library in Python programs. + Bu bağlayıcı, Python programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. + https://github.com/pyudev/pyudev/archive/v0.22.tar.gz + + python-setuptools + eudev-devel + + programming/language/python/python-udev/pspec.xml + + + python-udev + Python bindings for libudev library + + /usr/lib + /usr/share/doc + + + + + 2020-01-29 + 0.22 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 0.21.0 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 0.21.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-05 + 0.21.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.21.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.16.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-02 + 0.16.1 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + python-Unidecode + http://pypi.python.org/pypi/Unidecode/ + + PisiLinux Community + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.python + US-ASCII transliterations of Unicode text + Unicode karakterlerinin US-ASCII harf çevirileri + python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module. + python-Unidecode, Unicode karakterlerinin US-ASCII harf çevirilerini sağlar. Text::Unidecode Perl modülünün Python diliyle yazılmış halidir. + https://files.pythonhosted.org/packages/b1/d6/7e2a98e98c43cf11406de6097e2656d31559f788e9210326ce6544bd7d40/Unidecode-1.1.1.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-Unidecode/pspec.xml + + + python-Unidecode + US-ASCII transliterations of Unicode text + + /usr/bin/unidecode-py2 + /usr/lib/python2* + /usr/share/doc/python-Unidecode + + + + + 2020-01-18 + 1.1.1 + Version bump. + GMK + metehankaraguzel@gmail.com + + + 2018-08-29 + 1.0.22 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-26 + 1.0.22 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.04.20 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.04.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-09 + 0.04.18 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-urllib3 + https://github.com/shazow/urllib3 + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python + urllib3 is a powerful, sanity-friendly HTTP client for Python. + urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. + urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries. + urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. urllib3 Python standart kütüphanesinde bulunmayan kritik özellikleri içerir. + https://github.com/urllib3/urllib3/archive/1.25.9.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-urllib3/pspec.xml + + + python-urllib3 + urllib3 is a powerful, sanity-friendly HTTP client for Python. + + /usr/lib/python2* + /usr/share/doc/python-urllib3 + + + + + 2020-12-09 + 1.25.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-24 + 1.25.9 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 1.25.8 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-24 + 1.25.7 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 1.23 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-22 + 1.22 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python-websocket-client + https://github.com/websocket-client/websocket-client + + Alihan Öztürk + alihan@pisilinux.org + + BSD + app:console + programming.language.python + WebSocket client library for Python + Python icin ag soketleri kitapligi + websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. + python-websocket-client, WebSocket icin dusuk seviye apiler sunar. Tum apiler senkron yordamlardir. + https://github.com/websocket-client/websocket-client/archive/v0.57.0.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-websocket-client/pspec.xml + + + python-websocket-client + WebSocket client library for Python + + python-six + python + + + /usr/bin/wsdump-py2.py + /usr/lib/python2* + /usr/share/doc/python-websocket-client + + + + + 2019-12-26 + 0.57.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 0.48.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 0.47.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 0.40.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.37.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.37.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python-werkzeug + https://palletsprojects.com/p/werkzeug/ + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python + The comprehensive WSGI web application library. + WSGI ağ uygulamaları kitaplığı. + Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries. + python-werkzeug, WSGI ağ uygulamaları kitaplığı içerir. + https://github.com/pallets/werkzeug/archive/1.0.1.tar.gz + + python-setuptools + python-devel + + programming/language/python/python-werkzeug/pspec.xml + + + python-werkzeug + The comprehensive WSGI web application library + + /usr/share/doc/python-werkzeug + /usr/lib/python2* + + + + + 2020-04-07 + 1.0.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-15 + 1.0.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-wheel + https://github.com/pypa/wheel + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + The official binary distribution format for Python. + This library is the reference implementation of the Python wheel packaging standard, as defined in PEP 427. + https://github.com/pypa/wheel/archive/0.35.1.tar.gz + + python-devel + python-setuptools + + programming/language/python/python-wheel/pspec.xml + + + python-wheel + The official binary distribution format for Python. + + python-setuptools + + + /usr/lib/python2* + /usr/bin/wheel-py2 + /usr/share/doc/python-wheel + + + + + 2020-08-30 + 0.35.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python-zipp + https://github.com/jaraco/zipp + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python + A pathlib-compatible Zipfile object wrapper. + pathlib-uyumlu ZipDosyası sarmalayıcı python modülü + A pathlib-compatible Zipfile object wrapper. A backport of the Path object. + python-zipp, pathlib-uyumlu ZipDosyası sarmalayıcı python modülü, path nesnesinin geriye dönüklüğünü sağlar. + https://github.com/jaraco/zipp/archive/v3.0.0.tar.gz + + python-setuptools-scm + python-setuptools + python-devel + + programming/language/python/python-zipp/pspec.xml + + + python-zipp + A pathlib-compatible Zipfile object wrapper. + + /usr/share/doc/python-zipp + /usr/lib/python2* + + + + + 2020-02-18 + 3.0.0 + Ver. bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-17 + 2.2.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + sip + https://www.riverbankcomputing.com/software/sip/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:console + programming.language.python + SIP is a tool for generating bindings for C++ classes so that they can be used by Python + SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python. It takes any C or C++ libraries and converts them into Python extension modules. + https://www.riverbankcomputing.com/static/Downloads/sip/4.19.25/sip-4.19.25.tar.gz + + python-devel + + programming/language/python/sip/pspec.xml + + + python-sip + Python 2.x SIP bindings for C and C++ libraries + + libgcc + python + + + /usr/bin + /usr/lib + /usr/include + + + + python-pyqt5-sip + Python 2.x pyqt5 SIP bindings for C and C++ libraries + + libgcc + + + /usr/lib/python2.7/site-packages/PyQt5* + + + + + 2021-10-21 + 4.19.25 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-19 + 4.19.24 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-10 + 4.19.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 4.19.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 4.19.21 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-29 + 4.19.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-13 + 4.19.19 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-13 + 4.19.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 4.19.14 + Rebuild pyqt5 sip. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-14 + 4.19.12 + Rebuild pyqt5 sip. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 4.19.12 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-18 + 4.19.6 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-18 + 4.19 + Release Bump + Stefan Gronewold + groni@pisilinux.org + + + 2017-02-25 + 4.19 + Release Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-09 + 4.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-20 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 4.16.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + telepathy-python + http://telepathy.freedesktop.org/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.language.python + Python libraries for Telepathy + Telepathy için Python kitaplıkları + telepathy-python is the Python libraries for use in Telepathy client and connection managers. + telepathy-pyhon Telepathy istemcileri ve bağlantı yöneticilerinde kullanılmak üzere tasarlanmış Python kitaplığıdır. + http://telepathy.freedesktop.org/releases/telepathy-python/telepathy-python-0.15.19.tar.gz + + libxslt-devel + + + telepathy-python-0.15.19-mkdir_p.patch + dont-compile-py.patch + python-telepathy-no_double_errors-py.patch + + programming/language/python/telepathy-python/pspec.xml + + + telepathy-python + + /usr/lib + /usr/share/doc + + + + + 2018-08-30 + 0.15.19 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.15.19 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.15.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 0.15.19 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + wxPython + http://www.wxpython.org/ + + PisiLinux Community + admin@pisilinux.org + + wxWinLL-3 + library + programming.language.python + Python bindings for wxGTK + wxGTK için Python bağlayıcıları. + wxPython is a GUI toolkit for the Python programming language. It allows Python programmers to create programs with a robust, highly functional graphical user interface, simply and easily. It is implemented as a Python extension module (native code) that wraps the popular wxWindows cross platform GUI library, which is written in C++. + mirrors://sourceforge/wxpython/wxPython-src-3.0.2.0.tar.bz2 + + wxGTK3 + wxGTK-devel + mesa-devel + mesa-glu-devel + libjpeg-turbo-devel + tiff-devel + pango-devel + gdk-pixbuf + gst-plugins-base-devel + gstreamer-devel + gtk3-devel + libSM-devel + libXinerama-devel + libXxf86vm-devel + python-devel + + programming/language/python/wxPython/pspec.xml + + + wxPython + + bzip2 + python + wxGTK3 + wxGTK-common + + + /usr/bin + /usr/lib + /usr/share/doc + + + + wxPython-devel + Development files for wxPython + wxPython için geliştirme dosyaları + + wxPython + + + /usr/include + + + + + 2020-01-31 + 3.0.2.0 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2018-08-30 + 3.0.2.0 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2018-02-03 + 3.0.2.0 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2017-01-25 + 3.0.2.0 + Rebuild for new toolchain + Pisi Linux Admins + admin@pisilinux.org + + + 2016-07-02 + 3.0.2.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + cython3 + https://cython.org/ + + Blue DeviL + bluedevil@sctzine.com + + Apache-2.0 + app:console + library + programming.language.python3 + C extensions for the Python3 + Python3 için C eklentileri + Cython is a language that makes writing C extensions for the Python language as easy as Python itself. + Cython3, Python3 için C eklentileri yazmayı kolaylaştıran bir dildir. + https://github.com/cython/cython/archive/0.29.24.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/cython3/pspec.xml + + + cython3 + C extensions for the Python3 + + python3 + python3-setuptools + + + /usr/bin + /usr/lib/python3* + /usr/share/doc/cython3 + + + + + 2021-10-22 + 0.29.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 0.29.23 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 0.29.21 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 0.29.21 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 0.29.19 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-14 + 0.29.17 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 0.29.16 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 0.29.15 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-10 + 0.29.14 + Rebuilt w/ py3.8. + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-10 + 0.29.14 + Rebuilt. + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-11 + 0.29.14 + rebuilt and split packages + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-11 + 0.29.14 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-22 + 0.24 + First release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + dbus-python3 + https://dbus.freedesktop.org/doc/dbus-python/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + AFL-2.1 + library + programming.language.python3 + D-Bus Python bindings + D-Bus için Python bağlayıcıları + dbus-python provides a Python module which wraps the D-Bus programming API. + dbus-python, D-Bus için Python bağlayıcılarını içerir. + https://dbus.freedesktop.org/releases/dbus-python/dbus-python-1.2.18.tar.gz + + dbus-glib-devel + libpcre-devel + python3-devel + glib2-devel + dbus-devel + + programming/language/python3/dbus-python3/pspec.xml + + + dbus-python3 + D-Bus Python3 bindings + programming.language.python3 + + dbus-glib + python3 + glib2 + dbus + + + /usr/lib/python3* + + + + + 2021-10-22 + 1.2.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-05 + 1.2.16 + Rebuild dbus. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 1.2.16 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-12 + 1.2.14 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 1.2.4 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-05-01 + 1.2.4 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.2.4 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 1.2.0 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + gi-docgen + https://gitlab.gnome.org/GNOME/gi-docgen + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + programming.language.python3 + Documentation generator for GObject-based libraries + Documentation generator for GObject-based libraries + GObject tabanlı kitaplıklar için belge oluşturucu + GObject tabanlı kitaplıklar için belge oluşturucu + https://gitlab.gnome.org/GNOME/gi-docgen/-/archive/2022.1/gi-docgen-2022.1.tar.gz + + python3-devel + python3-toml + python3-Jinja2 + python3-markdown + python3-Pygments + python3-MarkupSafe + python3-typogrify + python3-setuptools + + programming/language/python3/gi-docgen/pspec.xml + + + gi-docgen + + python3 + python3-toml + python3-Jinja2 + python3-markdown + python3-Pygments + python3-MarkupSafe + python3-typogrify + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2022-05-31 + 2022.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-02 + 2021.8 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 2021.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-21 + 2021.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-26 + 2021.6 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + gonullu + https://github.com/PisiLinuxNew/gonullu + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + app:console + programming.language.python3 + Volunteer application is developed to compile the packages for Pisi distributions + Gonullu uygulamasi, pisi linux dağıtımının paketlerini derlemek üzere hazırlanmıştır. + Application build the packages waiting at queue of build system as PISI packages using docker images and again, sent them to build system. + Uygulama docker imajlarını kullanarak, derleme sisteminin kuyruğundan bekleyen paketleri pisi paketi haline getirir ve derleme sistemine gönderir. + https://github.com/PisiLinuxNew/gonullu/archive/v1.2.2.tar.gz + + python3-devel + python3-setuptools + + + python-docker.patch + + programming/language/python3/gonullu/pspec.xml + + + gonullu + + docker + python3 + python3-argparse + python3-backports-ssl-match-hostname + python3-colorama + python3 + python3-docker + python3-psutil + python3-PyYAML + python3-requests + python3-sip + python3-six + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 1.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 1.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-19 + 1.2.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-03 + 1.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-28 + 1.2.0 + Version bump nasm. + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-16 + 1.1.9 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-01-31 + 1.1.7 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-12-31 + 1.1.6 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-12-08 + 1.1.6 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-08 + 1.1.6 + Added runtime dependency + Erdem Ersoy + erdemersoy@live.com + + + 2017-05-27 + 1.1.6 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-27 + 1.1.4 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-15 + 1.1.3 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-14 + 1.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gst-python3 + https://gstreamer.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python3 + GStreamer Python3 bindings + GStreamer Python bağlayıcıları + gst-python3 is a Python frontend to GStreamer. + gst-python3 GStreamer için Python arabirimidir. + https://gstreamer.freedesktop.org/src/gst-python/gst-python-1.20.2.tar.xz + + meson + glib2-devel + python3-pygobject3-devel + gstreamer-devel + python3-devel + gst-plugins-base-devel + + programming/language/python3/gst-python3/pspec.xml + + + gst-python3 + + glib2 + python3 + gstreamer + gst-plugins-base + + + /usr/lib + /usr/share/doc + /usr/share + + + + + 2022-05-11 + 1.20.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-14 + 1.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 1.18.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-18 + 1.18.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-14 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-22 + 1.16.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-24 + 1.14.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 1.12.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-24 + 1.10.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.10.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-21 + 0.10.22 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + pip3 + https://pypi.python.org/pypi/pip + + Pisi Linux Community + admin@pisilinux.org + + MIT + programming.language.python3 + The PyPA recommended tool for installing Python packages + Python3 paketleri yükleme aracı + The PyPA recommended tool for installing Python packages + pip3, pypa tarafından önerilen python3 modülleri yükleme aracıdır. + https://github.com/pypa/pip/archive/22.1.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/pip3/pspec.xml + + + pip3 + The PyPA recommended tool for installing Python packages + + python3 + python3-setuptools + + + /usr/bin/pip + /usr/bin/pip3* + /usr/lib/python3* + /usr/share/doc + + + + + 2022-06-03 + 22.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-20 + 21.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 21.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 20.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-29 + 20.0.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 19.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-09 + 19.0.3 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-29 + 18.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-01 + 9.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-18 + 8.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 8.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-30 + 8.1.2 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-28 + 8.1.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + py3game + http://www.pygame.org/ + + Blue Devil + bluedevil@sctzine.com + + LGPLv2.1 + library + programming.language.python3 + Python3 game library + Python3 oyun kütüphanesi + Liens (bindings) Python pour dsl et autres librairies facilitant la création de jeux. + Python bindings to sdl and other libs that facilitate game production. + Özellikle oyun programlamada kullanılan sdl ve benzeri kütüphaneler için python eklentileri içerir. + Acceso con Python a sdl y otras librerías que facilitan produccion de juegos + https://github.com/pygame/pygame/archive/2.0.1.tar.gz + + libjpeg-turbo-devel + python3-setuptools + sdl2-image-devel + sdl2-mixer-devel + portmidi-devel + freetype-devel + sdl2-ttf-devel + libpng-devel + libsdl2-devel + python3-devel + libX11-devel + + programming/language/python3/py3game/pspec.xml + + + py3game + Python3 game library + + libjpeg-turbo + sdl2-image + sdl2-mixer + freetype + portmidi + sdl2-ttf + python3 + libpng + libsdl2 + libX11 + + + /usr/lib + + + + py3game-devel + Development files for python3 game library + py3game için geliştirme dosyaları + py3game-devel, py3game için geliştirme dosyalarını içerir. + + py3game + sdl2-image-devel + sdl2-mixer-devel + sdl2-ttf-devel + + + /usr/include + /usr/share/doc/py3game/examples/* + + + + py3game-doc + Documentation files for python3 game library + + py3game + + + /usr/share/doc/py3game/README.rst + + + + + 2021-10-22 + 2.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-20 + 1.9.6 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + py3parted + https://github.com/dcantrell/pyparted + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + library + programming.language.python3 + Python3 bindings for parted + Disk bölümleme tablolarını yönetmek için kullanılan parted kütüphanesine erişim sağlayan Python modülü. + pyparted est un module python permettant d'utiliser le paquet GNU Parted depuis python. À l'aide de ce module, les programmeurs peuvent depuis python détruire, re-dimensionner, vérifier et copier des partitions et les systèmes de fichier présents dessus. + pyparted is the python module which enables to use GNU Parted package from python. Using python with this module, programmers can create, destroy, resize, check and copy partitions, and the file systems on them. + pyparted, GNU Parted uygulamasının python programlama diliyle kullanılabilmesi için gerekli olan kütüphanedir. Bu modülü kullanan programcılar, python ile yeni disk bölümleri ya da dosya sistemleri oluşturabilir, bunları silebilir, yeniden boyutlandırabilir, kontrol edebilir ve kopyalayabilir. + https://github.com/dcantrell/pyparted/archive/v3.12.0.tar.gz + + parted-devel + python3-decorator + python3-devel + python3-setuptools + + programming/language/python3/py3parted/pspec.xml + + + py3parted + Python3 bindings for parted + + python3-decorator + python3 + parted + + + /usr/lib + /usr/share/doc + + + + + 2022-06-06 + 3.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 3.11.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-11 + 3.11.6 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 3.11.4 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 3.11.3 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-04-26 + 3.11.2 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 3.11.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-15 + 3.10.7 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 3.10.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.10.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-10 + 3.10.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python-configobj + https://github.com/DiffSK/configobj + + Kamil Atlı + suvari@pisilinux.org + + BSD + library + programming.language.python3 + Simple config file reader and writer + Simple config file reader and writer + https://github.com/DiffSK/configobj/archive/refs/heads/master.zip + + python3-devel + python3-setuptools + + programming/language/python3/python-configobj/pspec.xml + + + python-configobj + + python3 + python3-six + + + /usr/lib/python3.9/site-packages + /usr/share/doc/python-configobj + + + + + 2022-01-09 + 5.0.6 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python-discid + https://python-discid.readthedocs.org/ + + Kamil Atlı + suvari@pisilinux.org + + LGPL3 + library + programming.language.python3 + Python binding of MusicBrainz libdiscid + MusicBrainz libdiscid'in Python bağlanması + The main purpose is the calculation of an identifier for audio discs (Disc ID) to use for the MusicBrainz database. Additionally the disc MCN and track ISRCs can be extracted. + Temel amaç, MusicBrainz veritabanı için kullanılacak ses diskleri (Disk Kimliği) için bir tanımlayıcının hesaplanmasıdır. Ek olarak, disk MCN ve iz ISRC'leri çıkarılabilir. + https://github.com/JonnyJD/python-discid/archive/v1.2.0.tar.gz + + libdiscid-devel + python3-devel + + programming/language/python3/python-discid/pspec.xml + + + python-discid + Python Classes Without Boilerplate + + python3 + + + /usr/lib/python3* + /usr/share/doc/python-discid + + + + + 2021-10-24 + 1.2.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + 2020-05-11 + 1.2.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python-docopt + https://github.com/docopt/docopt + + Kamil Atlı + suvari@pisilinux.org + + MIT + app:gui + programming.language.python3 + Pythonic argument parser, that will make you smile + docopt güzel komut satırı arayüzleri oluşturur + docopt crée de belles interfaces de ligne de commande + docopt creates beautiful command-line interfaces + docopt güzel komut satırı arayüzleri oluşturur + https://github.com/docopt/docopt/archive/refs/tags/0.6.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python-docopt/pspec.xml + + + python-docopt + + python3 + + + /usr/bin + /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 First release Kamil Atlı @@ -318497,4648 +280768,40 @@ uses SIMD instructions (MMX, SSE2, etc.) to accelerate baseline JPEG compression - regionset - http://linvdr.org/projects/ + python-jsonpatch + https://github.com/stefankoegl/python-json-patch - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv2 - app:console - multimedia.misc - regionset - adjusts and shows the region code of DVD drives - regionset allows you to check and set the region code of DVD drives. - http://linvdr.org/download/regionset/regionset-0.2.tar.gz - multimedia/misc/regionset/pspec.xml - - - regionset - - /usr/bin - /usr/share/doc - - - - - 2020-03-07 - 0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 0.2 - Release bump Kamil Atlı suvari@pisilinux.org - - - 2016-11-24 - 0.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libsdl - http://www.libsdl.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Simple Direct Media Layer (Couche Média Simple et Directe). - Simple Direct Media Layer - Basit bir direk ortam erişim katmanı - Einfachee direkte Medien-Schicht - libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. - libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. - http://www.libsdl.org/release/SDL-1.2.15.tar.gz - - DirectFB-devel - alsa-lib-devel - aalib-devel - libX11-devel - libusb-compat-devel - libXtst-devel - libICE-devel - libXrandr-devel - libglvnd-devel - mesa-glu-devel - - - sdl-1.2.14-disable-mmx.patch - sdl_x11sym.patch - SDL-1.2.14-dont-propagate-lpthread.patch - SDL-1.2.14-noproc.patch - SDL-1.2.13-rh484362.patch - libsdl-1.2.15-sdl-config.patch - libsdl-1.2.15-resizing.patch - libsdl-1.2.15-joystick.patch - - multimedia/misc/libsdl/pspec.xml - - - libsdl-docs - libsdl reference documents - libsdl başvuru belgeleri - - libsdl - - - /usr/share/man - /usr/share/doc - - - - libsdl - - DirectFB - aalib - - - /usr/lib - - - - libsdl-devel - Development files for libsdl - libsdl için geliştirme dosyaları - - libsdl - DirectFB-devel - alsa-lib-devel - aalib-devel - libX11-devel - libusb-compat-devel - libXtst-devel - libICE-devel - libXrandr-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/lib/libSDLmain.a - /usr/share/aclocal - - - - libsdl-32bit - 32-bit shared libraries for libsdl - libsdl için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl - - - /usr/lib32 - - - - - 2020-01-11 - 1.2.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-01 - 1.2.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-12 - 1.2.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 1.2.15 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 1.2.15 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2016-03-27 - 1.2.15 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libopus - https://opus-codec.org/ - - PisiLinux Community - admins@pisilinux.org BSD library - multimedia.misc - Opus is a totally open, royalty-free, highly versatile audio codec - Açık kaynak, telif ücretsiz, çok yönlü ses codec bileşenidir - Opus is unmatched for interactive speech and music transmission over the Internet, but is also intended for storage and streaming applications. It is standardized by the Internet Engineering Task Force (IETF) as RFC 6716 which incorporated technology from Skype's SILK codec and Xiph.Org's CELT codec. - Opus Internet üzerinde etkileşimli ses ve müzik iletimi için eşsiz olan, ama aynı zamanda saklama ve akış uygulamaları için tasarlanmıştır. -Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 olarak Internet Engineering Task Force (IETF) tarafından standartlaştırılmıştır. - https://archive.mozilla.org/pub/opus/opus-1.3.1.tar.gz + programming.language.python3 + An implementation of the JSON Patch format + An implementation of the JSON Patch format + https://github.com/stefankoegl/python-json-patch/archive/refs/tags/v1.32.tar.gz - doxygen - - multimedia/misc/libopus/pspec.xml - - - libopus - - /usr/lib - /usr/share - - - - libopus-devel - Development files for libopus - Libopus için geliştirme dosyaları - - libopus - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libopus-docs - document files for libopus - - libopus - - - /usr/share/doc - - - - libopus-32bit - 32-bit shared libraries for libopus - emul32 - emul32 - - libopus - - - /usr/lib32 - - - - - 2020-01-11 - 1.3.1 - Rebuild - Kamil Atlı - uglyside@yandex.ru - - - 2019-06-24 - 1.3.1 - Version bump. - fury - uglyside@yandex.ru - - - 2018-08-16 - 1.2.1 - Rebuild 32bit. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.2.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.1.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-22 - 1.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - sdl2-ttf - http://www.libsdl.org/projects/SDL_ttf/ - - Mathias Freire - mathiasfreire45@gmail.com - - LGPLv2.1 - library - multimedia.misc - TrueType font support for SDL2 - SDL2 TTF kitaplığı - SDL2_ttf est une librairie de rendu de fontes TrueType utilisée avec la librairie SDL2 et quasiment aussi portable qu'elle. - SDL2_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. - SDL2_ttf, SDL2 ile birlikte kullanılan ve neredeyse onun kadar taşınabilir olan bir TrueType yazı tipi işleme kitaplığıdır. - SDL2_ttf es una librería para render de fuentes TrueType utilizada en conjunto con la librerñia SDL2, y está casi igual de portable. - http://www.libsdl.org/projects/SDL_ttf/release/SDL2_ttf-2.0.15.tar.gz - - libsdl2-devel - freetype-devel - - multimedia/misc/sdl2-ttf/pspec.xml - - - sdl2-ttf - - libsdl2 - harfbuzz - freetype - - - /usr/lib - /usr/share/doc - - - - sdl2-ttf-devel - Development files for sdl2-ttf - sdl2-ttf için geliştirme dosyaları - - libsdl2-devel - sdl2-ttf - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl2-ttf-32bit - 32-bit shared libraries for sdl2-ttf - sdl2-ttf için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl2-32bit - freetype-32bit - - - libpng-32bit - libsdl2-32bit - harfbuzz-32bit - freetype-32bit - sdl2-ttf - - - /usr/lib32/ - - - - - 2020-03-07 - 2.0.15 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.0.14 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 2.0.14 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.14 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - mediainfo - http://mediaarea.net/en/MediaInfo - - Pisi Linux Community - admins@pisilinux.org - - LGPLv3 - app:gui - multimedia.misc - MediaInfo supplies technical and tag information about mediafiles - MediaInfo supplies technical and tag information about a video or audio file. It is free software (free of charge and free access to source code: GPL or LGPL licence) - https://mediaarea.net/download/source/mediainfo/19.09/mediainfo_19.09.tar.bz2 - - libtool - autoconf - automake - libzen-devel - libzen-devel - libmediainfo-devel - wxGTK-devel - - multimedia/misc/mediainfo/pspec.xml - - - mediainfo - - wxGTK - libgcc - libzen - libmediainfo - - - /usr/bin/ - /usr/share - /usr/share/doc/ - - - mediainfo.desktop - - - - - 2020-03-07 - 19.09 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.7.94 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 0.7.94 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-12-02 - 0.7.90 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-20 - 0.7.65 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libexif - http://libexif.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie pour analyser, éditer et sauvegarder des données EXIF. - Library for parsing, editing, and saving EXIF data - EXIF verilerini işlemek, değiştirmek ve kaydetmek için bir kütüphane - Most digital cameras produce EXIF files, which are JPEG files with extra tags that contain information about the image. The EXIF library allows you to parse an EXIF file and read the data from those tags. - mirrors://sourceforge/libexif/libexif-0.6.21.tar.bz2 - - doxygen - - - libexif-0.6.13-pkgconfig.patch - - multimedia/misc/libexif/pspec.xml - - - libexif - - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libexif-devel - Development files for libexif - libexif için geliştirme dosyaları - - libexif - - - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/libexif/libexif-api.html - - - - - 2020-01-19 - 0.6.21 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-08-14 - 0.6.21 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 0.6.21 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.6.21 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.6.21 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - openxr - https://www.khronos.org/openxr/ - - Pisi Linux Admins - admin@pisilinux.org - - APACHE - library - multimedia.misc - An open standard for virtual reality and augmented reality platforms and devices - An open standard for virtual reality and augmented reality platforms and devices - An open standard for virtual reality and augmented reality platforms and devices - An open standard for virtual reality and augmented reality platforms and devices - https://github.com/KhronosGroup/OpenXR-SDK-Source/archive/release-1.0.20.tar.gz - - cmake - mesa-devel - wayland-client - wayland-devel python3-devel - libX11-devel - vulkan-devel - libglvnd-devel - vulkan-headers - jsoncpp-devel - libXrandr-devel - libXxf86vm-devel - - multimedia/misc/openxr/pspec.xml - - - openxr - - libgcc - libX11 - vulkan - libglvnd - jsoncpp - libXxf86vm - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/openxr - /usr/share/doc - - - - openxr-devel - Development files for openxr - - openxr - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-11-20 - 1.0.20 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-29 - 1.0.19 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-07 - 1.0.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-20 - 1.0.13 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - openvr - https://github.com/ValveSoftware/openvr - - Kamil Atlı - suvari@pisilinux.org - - MIT - app - multimedia.misc - API and runtime that allows access to VR hardware from multiple vendors - Birden çok satıcıdan VR donanımına erişim sağlayan API ve çalışma zamanı - OpenVR is an API and runtime that allows access to VR hardware from multiple vendors without requiring that applications have specific knowledge of the hardware they are targeting. This repository is an SDK that contains the API and samples. The runtime is under SteamVR in Tools on Steam. - OpenVR, uygulamaların hedefledikleri donanım hakkında özel bilgiye sahip olmalarını gerektirmeden birden fazla satıcıdan VR donanımına erişime izin veren bir API ve çalışma zamanıdır. Bu depo, API ve örnekleri içeren bir SDK'dır. Çalışma zamanı, Steam'deki Araçlar'da SteamVR altındadır. - https://github.com/ValveSoftware/openvr/archive/refs/tags/v1.16.8.tar.gz - - cmake - jsoncpp-devel - libglvnd-devel - rapidjson-devel - - - 0001-Fixed-includes-and-asserts-in-v1.6.18-release.patch - fix-missing-stdarg-h.patch - install-library.patch - - multimedia/misc/openvr/pspec.xml - - - openvr - - libgcc - jsoncpp - libglvnd - rapidjson - - - /usr/lib/libopenvr_api.so* - /usr/share/doc - - - - openvr-devel - Development files for openvr - openvr için geliştirme dosyaları - - openvr - - - /usr/include - /usr/lib/cmake - /usr/share/pkgconfig - - - - - 2022-05-01 - 1.16.8 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - orc - https://gstreamer.freedesktop.org/modules/orc.html - - PisiLinux Community - admins@pisilinux.org - - BSD - BSD-2 - app:console - multimedia.misc - The Oil Runtime Compiler - Optimized Inner Loop Runtime Compiler - https://gstreamer.freedesktop.org/src/orc/orc-0.4.31.tar.xz - - valgrind - meson - - multimedia/misc/orc/pspec.xml - - - orc - - /usr/bin/ - /usr/lib/ - /usr/share/ - - - - orc-32bit - 32-bit shared libraries for orc - emul32 - emul32 - - orc - - - /usr/lib32 - - - - orc-devel - orc için geliştirme dosyaları - orc için geliştirme dosyaları - - orc - - - /usr/include/ - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2020-01-11 - 0.4.31 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 0.4.28 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-24 - 0.4.26 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2016-06-12 - 0.4.25 - Version bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2016-05-27 - 0.4.19 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 0.4.19 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libbinio - https://github.com/adplug/libbinio - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Binary I/O stream class library - İkili I/O yayın sınıfı kitaplığı - libbinio is a binary I/O stream class library. - libbinio ikili I/O yayın sınıfı kitaplığıdır. - https://github.com/adplug/libbinio/releases/download/libbinio-1.5/libbinio-1.5.tar.bz2 - - gcc44.patch - string-conversion.patch - - multimedia/misc/libbinio/pspec.xml - - - libbinio - - libgcc - - - /usr/lib - /usr/share/doc - /usr/share/info - - - - libbinio-devel - Headers I/O stream class library - libbinio için geliştirme başlıkları - libbinio is a binary I/O stream class library. - libbinio için geliştirme başlıklarını içerir. - - libbinio - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-01-18 - 1.5 - Version bump - fury - uglyside@yandex.ru - - - 2020-03-06 - 1.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-06 - 1.4 - First release - Ali Cengiz KLurt - alicengizkurt@gmail.com - - - - - - libmediainfo - http://mediaarea.net/en/MediaInfo - - Pisi Linux Community - admins@pisilinux.org - - LGPLv3 - library - multimedia.misc - shared library for mediainfo - shared library for mediainfo - shared library for mediainfo - shared library for mediainfo - https://mediaarea.net/download/source/libmediainfo/19.09/libmediainfo_19.09.tar.bz2 - - autoconf - automake - libtool - zlib-devel - libzen-devel - curl-devel - libmms-devel - - multimedia/misc/libmediainfo/pspec.xml - - - libmediainfo - - curl - zlib - glib2 - libgcc - libzen - libmms - - - /usr/share/doc/ - /usr/lib/ - - - - libmediainfo-devel - - curl-devel - libzen-devel - libmediainfo - - - /usr/lib/pkgconfig - /usr/include/MediaInfo - /usr/include/MediaInfoDLL - - - - - 2020-03-06 - 19.09 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.7.94 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 0.7.94 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-11-24 - 0.7.90 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-12-20 - 0.7.65 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libass - https://github.com/libass/libass - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - Subtitle rendering library - Altyazı çizim kitaplığı - libass is a portable subtitle rendering library for the ASS/SSA. - libass ASS/SSA altyazı çizim kitaplığıdır. - https://github.com/libass/libass/releases/download/0.14.0/libass-0.14.0.tar.xz - - fontconfig-devel - freetype-devel - fribidi-devel - - multimedia/misc/libass/pspec.xml - - - libass - - fontconfig - freetype - fribidi - harfbuzz - - - /usr/lib - /usr/share/doc/libass - - - - libass-devel - Development files for libass - libass için geliştirme dosyaları - - libass - fontconfig-devel - freetype-devel - fribidi-devel - harfbuzz-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-17 - 0.14.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.14.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 0.13.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.13.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-06 - 0.13.1 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - sdl-ttf - http://www.libsdl.org/projects/SDL_ttf/ - - Mathias Freire - mathiasfreire45@gmail.com - - LGPLv2.1 - library - multimedia.misc - TrueType font support for SDL2 - SDL_ttf is a TrueType font rendering library that is used with the SDL library, and almost as portable. - http://www.libsdl.org/projects/SDL_ttf/release/SDL_ttf-2.0.11.tar.gz - - libsdl-devel - freetype-devel - libtool - libICE-devel - - multimedia/misc/sdl-ttf/pspec.xml - - - sdl-ttf - - libsdl - harfbuzz - freetype - - - /usr/lib - /usr/share/doc - - - - sdl-ttf-devel - Development files for sdl-ttf - - libsdl-devel - sdl-ttf - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl-ttf-32bit - 32-bit shared libraries for sdl-ttf - emul32 - emul32 - - libsdl-32bit - freetype-32bit - - - libpng-32bit - libsdl-32bit - harfbuzz-32bit - freetype-32bit - sdl-ttf - - - /usr/lib32/ - - - - - 2020-03-07 - 2.0.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 2.0.11 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 2.0.11 - Rebuild for new toolchain. - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-11-24 - 2.0.14 - Rebuild for Pisi Linux 2.0 - Stefan Gronewold (groni) - groni@pisilinux.org - - - 2016-06-09 - 2.0.14 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.14 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - gphoto2 - http://www.gphoto.org/ - - fury - uglyside@yandex.ru - - GPLv2 - app:console - multimedia.misc - Digital camera software. - gPhoto2 is a free, redistributable, ready to use set of digital camera software applications for Unix-like systems, written by a whole team of dedicated volunteers around the world. It supports more than 2500 cameras. - mirrors://sourceforge/project/gphoto/gphoto/2.5.28/gphoto2-2.5.28.tar.xz - - cdk-devel - popt-devel - aalib-devel - readline-devel - libgphoto2-devel - libjpeg-turbo-devel - - multimedia/misc/gphoto2/pspec.xml - - - gphoto2 - - cdk - popt - aalib - libexif - ncurses - readline - libgphoto2 - libjpeg-turbo - - - /usr/bin - /usr/share/locale - /usr/share/man/man1 - /usr/share/doc - - - - - 2022-01-17 - 2.5.28 - Version bump. - fury - uglyside@yandex.ru - - - 2021-01-19 - 2.5.26 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-06 - 2.5.23 - First build. - fury - uglyside@yandex.ru - - - - - - libshout - http://www.icecast.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - multimedia.misc - A library for communicating with and sending data to an icecast server - Icecast sunucusuyla veri alış verişini sağlayan bir kütüphane - Libshout is a library for communicating with and sending data to an icecast server. It handles the socket connection, the timing of the data, and prevents bad data from getting to the icecast server. - Libshout, Icecast sunucusuyla iletişimi ve veri alış verişini sağlar. Verilerin zamanlamasını ve gerekli soket bağlantılarını kontrol ederek, sunucu üzerinde hatalı veri transferini önler. - https://ftp.osuosl.org/pub/xiph/releases/libshout/libshout-2.4.3.tar.gz - - libvorbis-devel - libogg-devel - libtheora-devel - speex-devel - - - pthread_flag.patch - - multimedia/misc/libshout/pspec.xml - - - libshout - - libvorbis - libogg - libtheora - speex - - - /usr/lib - /usr/share/doc - - - - libshout-devel - Development files for libshout - libshout için geliştirme dosyaları - - libshout - libtheora-devel - libvorbis-devel - libogg-devel - speex-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/*.c - - - - - 2020-01-19 - 2.4.3 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 2.4.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.4.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 2.3.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - t1lib - ftp://metalab.unc.edu/pub/Linux/libs/graphics/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A Type 1 Font Rasterizer Library for UNIX/X11 - UNIX/X11 sistemler için Tip-1 yazıtipi işleme kütüphanesi - t1lib est une librairie écrite en langage C permettant à un programmeur de générer des bitmaps de fontes Adobe (TM) Type 1 assez facilement. Ces bitmaps sont retournés sous la forme d'une structure de données de type GLYPH. Ce type spécial GLYPH est également utilisé dans le système de fenêtrage X11 pour décrire les bitmaps caractères. Il contien les données bitmap en plus de quelques informations métriques. t1lib est toutefois totalement indépendante du système X11 ou tout autre interface graphique. - t1lib is a library written in the C programming language allowing a programmer to generate bitmaps from Adobe (TM) Type 1 fonts quite easily. These bitmaps are returned in a data structure with type GLYPH. This special GLYPH-type is also used in the X11 window system to describe character bitmaps. It contains the bitmap data as well as some metric information. But t1lib is in itself entirely independent of the X11-system or any other graphical user interface. - T1lib, programcıya Adobe Type1 yazıtiplerinden kolay bir şekilde bitmap dosyalar üretmeye izin veren C programlama dilinde yazılan bir kütüphanedir. Bu bitmapler GLYPH tipi ile bir veri yapısı içinde dönüştürülürler. Bu özel GLYPH tipi, karakter bitmapleri tasvir etmek için X11 pencere sisteminde de kullanılırlar. Bitmap veri içerdikleri gibi bazı metrik bilgileri de içerirler. - t1lib es una librería programada en C que permite al programador generar fácilmente bitmaps de fuentes Adobe (TM) Type 1. Estos bitmaps están representados por una estructura de datos del tipo GLYPH. Este tipo especial GLYPH también está usado en el sistema de ventanas X11 para describir mapas de bits de caracteres. Contiene los datos del bitmap y además algunas informaciones métricas. Sin embargo t1lib mismo está completamente independiente del sistema X11 y de otros interfaces gráficos de usuario. - https://www.ibiblio.org/pub/Linux/libs/graphics/t1lib-5.1.2.tar.gz - - libXmu-devel - libICE-devel - libXt-devel - libXpm-devel - libXext-devel - libSM-devel - libXaw-devel - - - parallel.patch - t1lib-5.1.2-format-security.patch - t1lib-5.1.2-CVE-2010-2642_2011-0433_2011-5244.patch - t1lib-5.1.2-cve-2011-0764.patch - t1lib-5.1.2-CVE-2011-1552_1553_1554.patch - - multimedia/misc/t1lib/pspec.xml - - - t1lib - - libXmu - libICE - libXt - libXpm - libXext - libSM - libXaw - - - /usr/bin - /etc/t1lib - /usr/share/doc/t1lib - /usr/lib - - - - t1lib-devel - Development files for t1lib - t1lib için geliştirme dosyaları - - t1lib - - - /usr/include - - - - - 2020-03-20 - 5.1.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - sdl-image - http://www.libsdl.org/projects/SDL_image/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie SDL de chargement de fichier d'image. - SDL image file loading library - SDL resim yükleme kitaplığı - SDL_image is an image file loader for SDL. - SDL_image, SDL için resim yükleme kitaplığıdır. - http://www.libsdl.org/projects/SDL_image/release/SDL_image-1.2.12.tar.gz - - tiff-devel - libsdl-devel - libpng-devel - libjpeg-turbo-devel - - - gif-overflow.patch - - multimedia/misc/sdl-image/pspec.xml - - - sdl-image - - libsdl - tiff - zlib - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib/ - /usr/share/doc - - - - sdl-image-devel - Development files for sdl-image - sdl-image için geliştirme dosyaları - - sdl-image - libsdl-devel - tiff-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl-image-32bit - 32-bit shared libraries for sdl-image - sdl-image için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl-32bit - libpng-32bit - libjpeg-turbo-32bit - tiff-32bit - - - sdl-image - libsdl-32bit - libpng-32bit - libjpeg-turbo-32bit - tiff-32bit - zlib-32bit - - - /usr/lib32/ - - - - - 2020-10-15 - 1.2.12 - Rebuild for new toolchain. - Kamil Atlı - admin@pisilinux.org - - - 2018-08-07 - 1.2.12 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-01 - 1.2.12 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-31 - 1.2.12 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - sdl2-image - http://www.libsdl.org/projects/SDL_image/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie SDL2 de chargement de fichier d'image. - SDL image file loading library - SDL2 resim yükleme kitaplığı - SDL_image is an image file loader for SDL. - SDL2_image, SDL2 için resim yükleme kitaplığıdır. - https://www.libsdl.org/projects/SDL_image/release/SDL2_image-2.0.5.tar.gz - - zlib-devel - libsdl2-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - - multimedia/misc/sdl2-image/pspec.xml - - - sdl2-image - - libsdl2 - tiff - zlib - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib/ - /usr/share/doc - - - - sdl2-image-devel - Development files for sdl2-image - sdl2-image için geliştirme dosyaları - - sdl2-image - libsdl2-devel - tiff-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 2.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-10 - 2.0.1 - First Release. - Stefan Gronewold - groni@pisilinux.org - - - - - - sdl-net - http://www.libsdl.org/projects/SDL_net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie réseau de SDL. - SDL network library - SDL ağ kütüphanesi - sdl-mixer is a SDL library for network access. - sdl-net, SDL için ağ erişim kitaplığıdır. - http://www.libsdl.org/projects/SDL_net/release/SDL_net-1.2.8.tar.gz - - libsdl-devel - - multimedia/misc/sdl-net/pspec.xml - - - sdl-net - - libsdl - - - /usr/lib - /usr/share/doc - - - - sdl-net-devel - Development files for sdl-net - sdl-net için geliştirme dosyaları - - sdl-net - libsdl-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 1.2.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.2.8 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 1.2.8 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - frei0r-plugins - https://frei0r.dyne.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A plugin API for video sources and filters - Video kaynakları ve süzgeçleri için bir eklenti programlama arayüzü - frei0r-plugins is a minimalistic plugin API for video sources and filters. The behaviour of the effects can be controlled from the host by simple parameters. The intent is to solve the recurring reimplementation or adaptation issue of standard effects. - frei0r-plugins video kaynakları ve süzgeçleri için basit bir eklenti programlama arayüzüdür. Efektlerin davranışları basit parametrelerle denetlenebilmektedir. - https://files.dyne.org/frei0r/releases/frei0r-plugins-1.7.0.tar.gz - - libgcc - cairo-devel - cmake - - multimedia/misc/frei0r-plugins/pspec.xml - - - frei0r-plugins - - libgcc - cairo - - - /usr/lib - /usr/share/doc - - - - frei0r-plugins-devel - Development files for frei0r-plugins - frei0r-plugins için geliştirme dosyaları - - frei0r-plugins - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 1.7.0 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.6.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.4 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.4 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - indicator-sound-switcher - https://yktoo.com/en/software/sound-switcher-indicator/ - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - multimedia.misc - Sound input/output selector indicator for Linux. - It shows an icon in the indicator area or the system tray (whatever is available in your desktop environment). The icon's menu allows you to switch the current sound input and output (i.e. source ports and sink ports in PulseAudio's terms, respectively) with just two clicks. - https://github.com/yktoo/indicator-sound-switcher/archive/refs/tags/v2.3.8.tar.gz - python3-setuptools - multimedia/misc/indicator-sound-switcher/pspec.xml + programming/language/python3/python-jsonpatch/pspec.xml - indicator-sound-switcher + python-jsonpatch - gtk3 python3 - keybinder - python3-pygobject3 - ayatana-libappindicator - - - /etc/xdg - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - - - - - 2022-05-28 - 2.3.8 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-04 - 2.3.6 - First build. - fury - uglyside@yandex.ru - - - - - - libdvdread - http://www.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - Provides a simple foundation for reading DVD-Video images - DVD videolarını okumak için basit bir kütüphane - Un lecteur DVD pour les environnements Solaris, Linux et BSD publié sous la licence publique GNU (GPL). Il gère les signets, les sauts dans le temps, les sorties audio sur plusieurs canaux, sortie SPDIF, le zoom et le crop (vision exclusive d'une zone) vidéo. Il gère également les menus DVD et la navigation, permet de lire depuis les DVD montés ou non montés, depuis un disque dur. Il peut lire les DVDs cryptés et non cryptés grâce à libdvdread/libdvdcss. - A DVD player for the Solaris, Linux and BSD environments released under the GNU Public License (GPL). It is includes bookmarks, time skipping, multichannel audio, SPDIF output, crop and zoom video. It supports DVD menus and navigation, reads from mounted, unmounted DVDs and hard drive and reads encrypted and unencrypted DVDs using libdvdread/libdvdcss. - GNU Public License (GPL) altındaki Solaris, Linux ve BSD ortamları için bir DVD oynatıcısıdır. Yerimi, zaman atlatma, çoklukanal ses çıktı, SPDIF çıktı, video kırpma ve büyütme özellikleri içerir. DVD menüleri ve dolaşma özelliğini destekler, bağlanmış (mount) ve bağlanmamış sabit diskleri okur ve libdvdread / libdvdcss kullanan şifreli ve şifresiz DVDleri oynatabilir. - DVD player para Solaris, Linux y BSD liberado bajo la licencia GNU Public License (GPL). incluye marcadores (bookmarks), time skipping, multichannel audio, salida SPDIF, video crop y zoom. soporta menús DVD y navegación, lee de DVDs y discos rígidos montados y no-montados y lee DVDs encriptados y no-encriptados usando libdvdread/libdvdcss. - http://download.videolan.org/pub/videolan/libdvdread/6.1.1/libdvdread-6.1.1.tar.bz2 - - libdvdcss-devel - git - - multimedia/misc/libdvdread/pspec.xml - - - libdvdread - - libdvdcss - glibc - - - /usr/lib - /usr/share/doc/libdvdread - - - - libdvdread-devel - Development files for libdvdread - libdvdread için geliştirme dosyaları - - libdvdread - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-10-14 - 6.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 6.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 6.0.0 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 5.0.3 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-05 - 5.0.3 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libbluray - http://www.videolan.org/developers/libbluray.html - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.misc - Library to access Blu-Ray disks for video playback - Blu-Ray disklere ulaşmak için kitaplık - Libbluray package is aiming to provide a full portable free open source bluray library, which can be plugged into popular media players to allow full bluray navigation and playback on Linux. It will eventually be compatible with all current titles, and will be easily portable and embeddable in standard players such as mplayer and vlc. - Libbluray kitaplığı, Linux üzerinde bluray oynatmak için tam destek sağlayan, popüler çokluortam oynatıcılarına taşınabilir bir bağımsız açık kaynak bluray kitaplığı olma amacıyla ortaya çıkmıştır. Zaman içerisinde bütün güncel başlıklar ile uyumlu olması, kolay taşınabilmesi ve mplayer, vlc gibi standart oynatıcılara gömülebilir olması amaçlanmaktadır. - ftp://ftp.videolan.org/pub/videolan/libbluray/1.1.2/libbluray-1.1.2.tar.bz2 - - libtool - doxygen - pkgconfig - libxml2-devel - freetype-devel - fontconfig-devel - - multimedia/misc/libbluray/pspec.xml - - - libbluray - - libxml2 - freetype - fontconfig + python3-six /usr/bin - /usr/lib - - - - libbluray-devel - Development files for libbluray - Libbluray için geliştirme dosyaları - - libbluray - libxml2-devel - freetype-devel - fontconfig-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libbluray-docs - document files for libbluray - - libbluray - - - /usr/share/doc/ - - - - - 2021-03-10 - 1.1.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-18 - 1.1.2 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.0.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.9.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 0.9.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.9.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-04 - 0.9.2 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - fribidi - http://fribidi.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - library - multimedia.misc - A free implementation of the unicode bidirectional algorithm - Çift yönlü unikod algoritmanın özgür bir uyarlaması - GNU FriBidi est l'implémentation libre de l'algorithme bidirectionnel Unicode. - GNU FriBidi is the Free Implementation of the Unicode Bidirectional Algorithm. - GNU FriBidi, Çift Yönlü Unicode Algoritması'nın özgür uygulamasıdır. - GNU FriBidi es la implementación libre del algoritmo Unicode Bidirectional. - https://github.com/fribidi/fribidi/releases/download/v1.0.8/fribidi-1.0.8.tar.bz2 - multimedia/misc/fribidi/pspec.xml - - - fribidi - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - fribidi-devel - Development files for fribidi - fribidi için geliştirme dosyaları - - fribidi - - - /usr/include - /usr/share/man/man3 - /usr/lib/pkgconfig - - - - fribidi-32bit - 32-bit shared libraries for fribidi - emul32 - emul32 - - fribidi - - - /usr/lib32 - - - - - 2020-01-18 - 1.0.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-15 - 1.0.5 - Rebuild 32bit. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-17 - 1.0.5 - Version Bump - Aydin Atmaca - aydinatmaca@gmail.com - - - 2018-08-03 - 1.0.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.19.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.19.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-23 - 0.19.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libiptcdata - http://libiptcdata.sourceforge.net/ - - Erdinç Gültekin - admins@pisilinux.org - - LGPL - library - multimedia.misc - A library for manipulating the International Press Telecommunications Council (IPTC) - Uluslararası Basın Telekomünikasyon Konseyi meta verilerini işlemek için bir kütüphane - libiptcdata is a library for manipulating the International Press Telecommunications Council (IPTC) metadata stored within multimedia files such as images. - libiptcdata, görüntüler gibi çeşitli veri dosyalarında bulunan Uluslararası Basın Telekomünikasyon Konseyi (IPTC) meta verilerini okumak ve yazmak için bağımsız bir C kütüphanesidir. - mirrors://sourceforge/libiptcdata/1.0.4/libiptcdata-1.0.4.tar.gz - - glibc-devel - - multimedia/misc/libiptcdata/pspec.xml - - - libiptcdata - - /usr/bin - /usr/lib/ - /usr/share/locale - /usr/share/doc - /usr/share/gtk-doc - - - - libiptcdata-devel - libiptcdata için geliştirme dosyaları - - libiptcdata - - - /usr/include - /usr/lib/pkgconfig + /usr/lib/python3.9/site-packages + /usr/share/doc/python-jsonpatch - 2020-03-31 - 1.0.4 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - klavaro - http://klavaro.sourceforge.net/en/index.html - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:gui - multimedia.misc - Free touch typing tutor program - Klavye eğitimi programı - Klavaro is just another free touch typing tutor program. Klavaro intends to be keyboard and language independent, saving memory and time (and money). - Klavaro, özgür bir klavye eğitimi programıdır. Bir çok dilde klavye ve arayüz desteği sağlar. - klavaro - https://sourceforge.net/projects/klavaro/files/klavaro-3.13.tar.bz2/download - - intltool - atk-devel - curl-devel - gtk3-devel - cairo-devel - glib2-devel - pango-devel - harfbuzz-devel - gdk-pixbuf-devel - gtkdatabox-devel - - multimedia/misc/klavaro/pspec.xml - - - klavaro - - atk - curl - gtk3 - cairo - glib2 - pango - harfbuzz - intltool - gtkdatabox - gdk-pixbuf - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - /usr/lib - - - klavaro.desktop - - - - - 2021-10-16 - 3.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-07 - 3.11 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - compface - http://www.xemacs.org/Download/optLibs.html - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.misc - X-Face library - X-Face kütüphanesi - Utilitaires et librairie pour convertir de/vers le format X-Face. - Utilities and library to convert to/from X-Face format. - X-Face formatını okuma ve yazmaya yarayan bir kütüphane - Utilitarios y librerías para convertir desde/al formato X-Face - http://ftp.xemacs.org/pub/xemacs/aux/compface-1.5.2.tar.gz - - xbmp.patch - shared.patch - cve-2009-2286.patch - - multimedia/misc/compface/pspec.xml - - - compface - - /usr/bin - /usr/lib - /usr/share/doc/compface - /usr/share/man - - - - compface-devel - Development files for compface - compface için geliştirme dosyaları - - compface - - - /usr/include - /usr/share/man/man3 - - - - - 2020-01-15 - 1.5.2 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-01 - 1.5.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-28 - 1.5.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2014-01-21 - 1.5.2 - Rebuild - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2010-10-12 - 1.5.2 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - opusfile - https://opus-codec.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.misc - Library for opening, seeking, and decoding .opus files - Library for opening, seeking, and decoding .opus files - Library for opening, seeking, and decoding .opus files - Library for opening, seeking, and decoding .opus files - https://ftp.osuosl.org/pub/xiph/releases/opus/opusfile-0.12.tar.gz - - libogg-devel - libopus-devel - openssl-devel - - multimedia/misc/opusfile/pspec.xml - - - opusfile - - libogg - libopus - openssl - - - /usr/lib - /usr/share - /usr/share/doc - - - - opusfile-32bit - 32-bit shared libraries for opusfile - emul32 - emul32 - - libogg-32bit - libopus-32bit - openssl-32bit - - - libogg-32bit - libopus-32bit - openssl-32bit - - - /usr/lib32 - - - - opusfile-devel - Development files for opusfile - - opusfile - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - - 2020-06-27 - 0.12 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2020-03-07 - 0.11 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - opencolorio - http://opencolorio.org/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - multimedia.misc - Enables color transforms and image display across graphics apps - 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 - - cmake - pybind11 - yaml-cpp - glew-devel - lcms2-devel - boost-devel - openxr-devel - pystring-devel - freeglut-devel - tinyxml-devel - python3-devel - imath-devel - - multimedia/misc/opencolorio/pspec.xml - - - opencolorio - - glew - expat - libgcc - imath - lcms2 - freeglut - libglvnd - mesa-glu - pystring - - - /usr/bin - /usr/lib - /usr/share/ocio - /usr/share/doc - - - OpenColorIO1 - - - - opencolorio-devel - Development files for opencolorio - - opencolorio - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-10-25 - 2.1.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-30 - 2.0.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - cmark - https://github.com/jgm/cmark - - PisiLinux Community - admins@pisilinux.org - - BSD2 - library - multimedia.misc - CommonMark parsing and rendering library and program in C - CommonMark parsing and rendering library and program in C - CommonMark parsing and rendering library and program in C - CommonMark parsing and rendering library and program in C - https://github.com/commonmark/cmark/archive/0.30.2.tar.gz - - cmake - python3-devel - - multimedia/misc/cmark/pspec.xml - - - cmark - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - cmark-devel - Development files for cmark - - cmark - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-10-05 - 0.30.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-23 - 0.30.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-08 - 0.29.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - svt-av1 - https://gitlab.com/AOMediaCodec/SVT-AV1 - - PisiLinux Community - admins@pisilinux.org - - custom - library - multimedia.misc - Scalable Video Technology AV1 encoder and decoder - Scalable Video Technology AV1 encoder and decoder - Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü - Ölçeklenebilir Video Teknolojisi AV1 kodlayıcı ve kod çözücü - https://gitlab.com/AOMediaCodec/SVT-AV1/-/archive/v0.8.7/SVT-AV1-v0.8.7.tar.bz2 - - nasm - cmake - - multimedia/misc/svt-av1/pspec.xml - - - svt-av1 - - /usr/bin - /usr/lib - /usr/share/doc - - - - svt-av1-devel - Development files for svt-av1 - - svt-av1 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-02 - 0.8.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - openexr - http://www.openexr.com - - PisiLinux Community - admins@pisilinux.org - - as-is - app:console - library - multimedia.misc - A high dynamic-range (HDR) image file format library - OpenEXR est un formation de fichier d'image à haut rang dynamique (HDR - High Dynamic Range) utilisable pour les applications d'imagerie sur ordinateur. OpenEXR inclus notamment : Un rang dynamique plus grand que les formats d'image existants de 8 et 10 bit; le support pour pixel de 16 bit à virgule flottante, 32 bit à virgule flottante et d'entiers à 32 bit; de nombreux algorithmes de compression d'image sans perte, le fait d'être extensible. - 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/v3.1.3.tar.gz - - cmake - imath-devel - zlib-devel - - multimedia/misc/openexr/pspec.xml - - - openexr - - imath - libgcc - openexr-libs - - - /usr/bin - - - - openexr-libs - OpenEXR runtime libraries - OpenEXR çalışma zamanı kitaplıkları - - imath - zlib - libgcc - - - /usr/lib/lib* - /usr/share/doc - - - - openexr-docs - OpenEXR example files - OpenEXR örnek dosyalar - - /usr/share/doc/OpenEXR/examples - - - - openexr-devel - Development files for openexr - OpenEXR için geliştirme dosyaları - - openexr - mesa-glu-devel - imath-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2021-11-20 - 3.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-26 - 3.1.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-20 - 2.5.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.2.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-06 - 2.2.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-14 - 2.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 2.2.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-28 - 2.2.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libkate - http://code.google.com/p/libkate - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - multimedia.misc - A text codec for embedding in Ogg - Ogg için karaoke ve metin kitaplığı - Kate is a codec for karaoke and text encapsulation for Ogg. - Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir. - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/libkate/libkate-0.4.1.tar.gz - - libogg-devel - libpng-devel - doxygen - - multimedia/misc/libkate/pspec.xml - - - libkate - - libogg - libpng - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libkate-devel - Development files for libkate - libkate için geliştirme dosyaları - - libkate - libogg-devel - libpng-devel - - - /usr/include - /usr/lib/pkgconfig - - - - libkate-docs - API documentation for libkate - libkate paketine ait API belgeleri - - libkate - - - /usr/share/doc/libkate/html - /usr/share/doc/libkate/examples - - - - - 2020-02-07 - 0.4.1 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-08-07 - 0.4.1 - Rebuild Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-04 - 0.4.1 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.4.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.4.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - OpenColorIO1 - http://opencolorio.org/ - - Pisi Linux Admins - admin@pisilinux.org - - BSD - app - multimedia.misc - Enables color transforms and image display across graphics apps - Enables color transforms and image display across graphics apps - Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir - Grafik uygulamalarında renk dönüşümlerini ve görüntü ekranını etkinleştirir - https://github.com/AcademySoftwareFoundation/OpenColorIO/archive/refs/tags/v1.1.1.tar.gz - - cmake - yaml-cpp - lcms2-devel - boost-devel - tinyxml-devel - python3-devel - openimageio-devel - - - 8d48ee8da42de2d878db7b42586db8b3c67f83e1.patch - - multimedia/misc/OpenColorIO1/pspec.xml - - - OpenColorIO1 - - lcms2 - libgcc - tinyxml - - - /usr/bin - /usr/lib - /usr/share/ocio - /usr/share/doc - - - opencolorio - - - - OpenColorIO1-devel - Development files for OpenColorIO1 - - OpenColorIO1 - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-10-23 - 1.1.1 - Rebuild boost - Pisi Linux Admins - admin@pisilinux.org - - - 2021-05-11 - 1.1.1 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - sdl2-mixer - http://www.libsdl.org/projects/SDL_mixer/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - SDL2 mixer library - SDL2_mixer is a SDL2 library for loading sound files. - http://www.libsdl.org/projects/SDL_mixer/release/SDL2_mixer-2.0.4.tar.gz - - flac-devel - mpg123-devel - libopus-devel - opusfile-devel - libsdl2-devel - libvorbis-devel - fluidsynth-devel - libmodplug-devel - - multimedia/misc/sdl2-mixer/pspec.xml - - - sdl2-mixer - - flac - mpg123 - libopus - libsdl2 - opusfile - libvorbis - fluidsynth - libmodplug - - - /usr/lib - /usr/share/doc - - - - sdl2-mixer-devel - Development files for sdl2-mixer - - sdl2-mixer - libsdl2-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl2-mixer-32bit - 32-bit shared libraries for sdl2-mixer - emul32 - emul32 - - flac-32bit - mpg123-32bit - libopus-32bit - libsdl2-32bit - opusfile-32bit - libvorbis-32bit - - - sdl2-mixer - flac-32bit - mpg123-32bit - libopus-32bit - libsdl2-32bit - opusfile-32bit - libvorbis-32bit - - - /usr/lib32/ - - - - - 2020-03-07 - 2.0.4 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - libtg_owt - https://github.com/desktop-app/tg_owt - - Pisi Linux Admins - admin@pisilinux.org - - BSD - library - multimedia.misc - WebRTC library - static linked - WebRTC library - static linked - WebRTC library - static linked - WebRTC library - static linked - https://github.com/desktop-app/tg_owt/archive/63a934db1ed212ebf8aaaa20f0010dd7b0d7b396.tar.gz - - git - ninja - cmake - pulseaudio - yasm-devel - unzip - libX11-devel - mesa-devel - libvpx-devel - libepoxy-devel - pipewire-devel - libXtst-devel - libopus-devel - openssl-devel - libXrandr-devel - libXcomposite-devel - libva-devel - libjpeg-turbo-devel - ffmpeg-devel - protobuf-devel - pulseaudio-libs-devel - alsa-lib-devel - python3-setuptools - libXdamage-devel - abseil-cpp-devel - - multimedia/misc/libtg_owt/pspec.xml - - - libtg_owt - - ffmpeg - libgcc - libopus - openssl - libvpx - protobuf - libjpeg-turbo - abseil-cpp - - - /usr/lib - /usr/share - /usr/share/doc - - - - libtg_owt-devel - Development files for libtg_owt - - libtg_owt - yasm-devel - unzip - libopus-devel - openssl-devel - libXrandr-devel - libXcomposite-devel - libva-devel - libjpeg-turbo-devel - ffmpeg-devel - protobuf-devel - pulseaudio-libs-devel - alsa-lib-devel - libvpx-devel - - - /usr/include - /usr/lib/cmake - - - - - 2022-04-17 - 20220414 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-24 - 20220314 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2022-01-09 - 20211222 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-14 - 20211212 - Version bump. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-12-05 - 20211112 - Version bump. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-10-20 - 20210915 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-01-26 - 20210915 - Version bump. - Pisi Linux Admins - admin@pisilinux.org - - - 2021-01-26 - 20210124 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libid3tag - http://mad.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - La librairie id3tag MAD. - The MAD id3tag library - MAD id3tag kütüphanesi - Die MAD id3tag Bibliothek - libid3tag is a library for reading and (eventually) writing ID3 tags, both ID3v1 and the various versions of ID3v2. - mirrors://sourceforge/mad/libid3tag-0.15.1b.tar.gz - - zlib-devel - gperf - - - libid3tag-0.15.1b-fix_overflow.patch - libid3tag-0.15.1b-unknown-encoding.patch - libid3tag-0.15.1b-utf16.patchlibid3tag-0.15.1b-utf16.patch - libid3tag-gperf.patch - - multimedia/misc/libid3tag/pspec.xml - - - libid3tag - - zlib - - - /usr/lib - /usr/share/doc - - - - libid3tag-devel - - libid3tag - - - /usr/include - /usr/lib/pkgconfig - - - id3tag.pc - - - - - 2020-01-19 - 0.15.1b - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2019-03-13 - 0.15.1b - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.15.1b - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 0.15.1b - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.15.1b - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.15.1b - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - taglib - https://taglib.org/ - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPL-2 - library - multimedia.misc - A library for reading and editing audio meta data. - Ses dosyalarının etiket bilgilerini okuma ve düzenleme kütüphanesi - TagLib est une librairie pour lire et éditer les méta-données de nombreux formats audio populaires. - TagLib is a library for reading and editing the meta data of several popular audio formats. - TagLib ses dosyalarının etiket bilgilerini okumak ve işlemek için kullanılan bir kütüphanedir. - https://taglib.org/releases/taglib-1.12.tar.gz - - cmake - zlib-devel - boost-devel - - multimedia/misc/taglib/pspec.xml - - - taglib - - zlib - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - taglib-devel - Development files for taglib - taglib için geliştirme dosyaları - - taglib - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-23 - 1.12 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-09-15 - 1.11.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-19 - 1.11.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.11.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 1.11.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-27 - 1.11.1 - Rebuild for kfilemetadata. - Stefan Gronewold - groni@pisilinux.org - - - 2017-02-16 - 1.11.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.9.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.9.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - exempi - https://libopenraw.freedesktop.org/exempi/ - - PisiLinux Community - admins@pisilinux.org - - BSD-3 - library - multimedia.misc - An implementation of XMP, based on Adobe SDK - Adobe SDK'sını temel alan bir XMP implementasyonu. - exempi is a port of Adobe XMP SDK to work on UNIX and to be built with GNU automake. It includes XMPCore and XMPFiles, and exempi, a C-based API. - exempi, Adobe XMP SDK'sının UNIX'te çalışması ve GNU automake ile derlenmesi için yapılmış bir portudur. XMPCore, XMPFiles ve exempi isimli C temelli bir API içerir. - http://libopenraw.freedesktop.org/download/exempi-2.5.1.tar.bz2 - - zlib-devel - expat-devel - - multimedia/misc/exempi/pspec.xml - - - exempi - - zlib - expat - libgcc - - - /usr/lib - /usr/bin - /usr/share/doc/exempi - /usr/share/man - - - - exempi-devel - Development files for exempi - exempi için geliştirme dosyaları - - exempi - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-02-29 - 2.5.1 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libpano13 - http://sourceforge.net/projects/panotools - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.misc - Library for manipulating panoramic images - Panoramik görüntü kitaplığı - libpano13 is a library which provides very high quality manipulation, correction and stitching of panoramic photographs. - libpano13 panoramik görüntüleri yüksek kalitede düzeltip birleştirebilen bir kitaplıktır. - mirrors://sourceforge/panotools/libpano13-2.9.19.tar.gz - - zlib-devel - tiff-devel - libpng-devel - libjpeg-turbo-devel - - multimedia/misc/libpano13/pspec.xml - - - libpano13 - - tiff - libpng - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man/man1 - - - - libpano13-devel - Development files for libpano13 - libpano13 için geliştirme dosyaları - - libpano13 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-05 - 2.9.19 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.9.19 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-08 - 2.9.19 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 2.9.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-11-10 - 2.9.19 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - OpenCOLLADA - https://collada.org/mediawiki/index.php/OpenCOLLADA - - Pisi Linux Admins - admin@pisilinux.org - - MIT - app - multimedia.misc - Collada 3D import and export libraries - Collada 3D import and export libraries - Collada 3B kütüphaneleri içe ve dışa aktarma - Collada 3B kütüphaneleri içe ve dışa aktarma - https://github.com/KhronosGroup/OpenCOLLADA/archive/refs/tags/v1.6.68.tar.gz - - cmake - libpcre-devel - libxml2-devel - - - fedora/OpenCOLLADA-pcre.patch - - multimedia/misc/OpenCOLLADA/pspec.xml - - - OpenCOLLADA - - libgcc - libpcre - libxml2 - - - /etc - /usr/lib - /usr/share/doc - - - opencollada.conf - - - - OpenCOLLADA-devel - Development files for OpenCOLLADA - - OpenCOLLADA - libpcre-devel - - - /usr/include - /usr/lib/cmake - - - - - 2021-05-11 - 1.6.68 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - rav1e - https://github.com/xiph/rav1e - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.misc - The fastest and safest AV1 encoder - The fastest and safest AV1 encoder - En hızlı ve en güvenli AV1 kodlayıcı - En hızlı ve en güvenli AV1 kodlayıcı - https://github.com/xiph/rav1e/archive/refs/tags/v0.5.0.tar.gz - - rust - nasm - cargo-c - - multimedia/misc/rav1e/pspec.xml - - - rav1e - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - rav1e-devel - Development files for rav1e - - rav1e - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-02 - 0.5.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - sdl-mixer - http://www.libsdl.org/projects/SDL_mixer/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie du mixer SDL. - SDL mixer library - SDL ses yükleme kitaplığı - SDL_mixer is a SDL library for loading sound files. - SDL_mixer, SDL için bir ses yükleme kitaplığıdır. - http://www.libsdl.org/projects/SDL_mixer/release/SDL_mixer-1.2.12.tar.gz - - libsdl-devel - libmikmod-devel - libvorbis-devel - libogg-devel - smpeg-devel - timidity - - - ldflags.patch - - multimedia/misc/sdl-mixer/pspec.xml - - - sdl-mixer - - libsdl - libmikmod - libvorbis - libogg - smpeg - timidity - - - /usr/lib - /usr/share/doc - - - - sdl-mixer-devel - Development files for sdl-mixer - sdl-mixer için geliştirme dosyaları - - sdl-mixer - libsdl-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - sdl-mixer-32bit - 32-bit shared libraries for sdl-mixer - sdl-mixer için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - libsdl-32bit - libmikmod-32bit - libvorbis-32bit - libogg-32bit - smpeg-32bit - - - sdl-mixer - libsdl-32bit - libmikmod-32bit - libvorbis-32bit - libogg-32bit - smpeg-32bit - - - /usr/lib32/ - - - - - 2020-03-07 - 1.2.12 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-29 - 1.2.12 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 1.2.12 - Rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-09 - 1.2.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-21 - 1.2.12 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - libcdr - http://www.freedesktop.org/wiki/Software/libcdr - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - GPLv2 - MPLv1.1 - library - multimedia.misc - Library parsing the Corel cdr documents - Libcdr is library providing ability to interpret and import Corel Draw drawings into various applications. - https://dev-www.libreoffice.org/src/libcdr/libcdr-0.1.7.tar.xz - - doxygen - zlib-devel - lcms2-devel - icu4c-devel - libwpd-devel - boost-devel - librevenge-devel - cppunit-devel - - multimedia/misc/libcdr/pspec.xml - - - libcdr - - lcms2 - icu4c - zlib - libgcc - librevenge - cppunit - - - /usr/lib - /usr/bin - /usr/share/doc/libcdr - - - - libcdr-devel - Development files for libcdr - libcdr için geliştirme dosyaları - - icu4c-devel - zlib-devel - lcms2-devel - librevenge-devel - libcdr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-05-05 - 0.1.7 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2021-03-10 - 0.1.6 - rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2020-02-22 - 0.1.6 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2018-09-01 - 0.1.4 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 0.1.4 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-02-15 - 0.1.3 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.1.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-02 - 0.1.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - liblqr - http://liblqr.wikidot.com - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - LGPLv3 - library - multimedia.misc - An easy to use C/C++ seam carving library - Görüntü boyutlandırma kütüphanesi - liblqr is a free, open source implementation of a seam carving algorithm which aims at resizing pictures non uniformly while preserving their features. - liblqr, yeniden boyutlandırılacak resimlerin özelliklerini koruyan liquid rescale algoritmasının bir gerçeklemesidir. - http://liblqr.wdfiles.com/local--files/en:download-page/liblqr-1-0.4.2.tar.bz2 - - glib2-devel - - multimedia/misc/liblqr/pspec.xml - - - liblqr - - glib2 - - - /usr/lib - /usr/share/doc - - - - liblqr-devel - Development files for liblqr - liblqr için geliştirme dosyaları - - liblqr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-06 - 0.4.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-06 - 0.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 0.4.2 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.4.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-24 - 0.4.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libdvdcss - http://www.videolan.org/libdvdcss/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - A portable abstraction library for DVD decryption - DVD çözmek için soyutlanmış taşınabilir bir kütüphane - libdvdcss est une librairie simple et portable d'abstraction conçue pour accéder auxDVDs comme des périphériques par blocs sans avoir à se soucier du décodage. On peut construire un lecteur DVD à partir de l'API de libdvdcss en 4 ou 5 appels. - libdvdcss is a simple and library portable abstraction library designed for accessing DVDs like a block device without having to bother about the decryption. A DVD player can be built around the libdvdcss API using no more than 4 or 5 library calls. - Libdvdcss, şifre çözme konusunda zahmete girmeden bir blok aygıt gibi DVD'lere erişim için düzenlenmiş basit ve soyutlanmış taşınabilir bir kütüphanedir. Bir DVD çalıcısı libdvdcss API etrafında 4 veya 5'ten fazla olmaksızın kütüphane çağrısı kullanarak kurulabilir. - libdvdcss es una liraría simple y portable de abstracción para acceder a DVDs como a dispositivos de bloques, sin preocuparse de decriptación. Se puede construir un reproductor DVD alrededor el API libdvdcss con no más de 4 o 5 llamadas de librería. - http://download.videolan.org/pub/videolan/libdvdcss/1.4.2/libdvdcss-1.4.2.tar.bz2 - multimedia/misc/libdvdcss/pspec.xml - - - libdvdcss - - /usr/lib - /usr/share/doc - - - - libdvdcss-devel - Development files for libdvdcss - libdvdcss için geliştirme dosyaları - - libdvdcss - - - /usr/include/dvdcss - /usr/lib/pkgconfig - - - - - 2020-01-19 - 1.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 1.4.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 1.4.0 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-05 - 1.4.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libebml - http://www.matroska.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie de format binaire extensible (un peu comme XML). - Extensible binary format library (kinda like XML) - Genişletilebilir ikilik biçimlendirme kütüphanesi - Extensible Binary Meta Language access library A library for reading and writing files with the Extensible Binary Meta Language, a binary pendant to XML. - https://dl.matroska.org/downloads/libebml/libebml-1.4.2.tar.xz - - cmake - - multimedia/misc/libebml/pspec.xml - - - libebml - - libgcc - - - /usr/lib - /usr/share/doc - - - - libebml-devel - Development files for libebml - libebml için geliştirme dosyaları - - libebml - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - /usr/share/man/man3 - - - - - 2021-06-29 - 1.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 1.3.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 1.3.9 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 1.3.4 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-03 - 1.3.4 - Release bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.3.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 1.3.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - tagparser - https://github.com/Martchus/tagparser - - fury - uglyside@yandex.ru - - GPL-2 - library - 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/v11.1.0.tar.gz - - cmake - doxygen - zlib-devel - openssl-devel - cppunit-devel - iso-codes-devel - cpp-utilities-devel - - multimedia/misc/tagparser/pspec.xml - - - tagparser - - zlib - libgcc - cpp-utilities - - - /usr/lib - /usr/share - /usr/share/doc - - - - tagparser-devel - - tagparser - cpp-utilities-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/tagparser - - - - - 2022-04-14 - 11.1.0 - Version bump. - fury - uglyside@yandex.ru - - - 2022-02-05 - 10.4.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-04 - 10.3.1 - Version bump. - fury - uglyside@yandex.ru - - - 2021-10-13 - 10.2.0 - First build - fury - uglyside@yandex.ru - - - - - - exiv2 - http://www.exiv2.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.misc - Another library for parsing, editing, and saving EXIF data - EXIF verilerini ayrıştırmak, düzenlemek ve kaydetmek için bir diğer kitaplık - Exiv2 est une librairie C++ ainsi qu'un utilitaire en ligne de commande pour accéder aux méta-données d'images. Exiv2 est disponible en tant que logiciel libre ou avec une licence commerciale et est utilisée par un nombre croissant de projets. - exiv2 is a C++ library and a command line utility to access image metadata. Exiv2 is available as free software and with a commercial license, and is used in a growing number of projects. - Exiv2 resimlerin başlık bilgilerine ulaşmak için kullanılan bir C++ kütüphanesi ve komut satırı uygulamasıdır. Exiv2, hem özgür yazılım hem de ticari yazılım lisansıyla kullanılabilir. - Exiv2 es una librería C++ y una herramienta de línea de comandopara acceder metadatos de imágenes. Exiv2 está disponible como software libre y con licencia comercial, y se utiliza cada vez en más proyectos. - http://www.exiv2.org/builds/exiv2-0.27.4-Source.tar.gz - - cmake - curl-devel - zlib-devel - expat-devel - - - f01805f6.patch - - multimedia/misc/exiv2/pspec.xml - - - exiv2 - - exiv2-libs - libgcc - - - /usr/bin - /usr/share/locale - /usr/share/doc - /usr/share/man - - - - exiv2-libs - - zlib - curl - expat - libgcc - - - /usr/lib - - - - exiv2-devel - Development files for exiv2 - exiv2 için geliştirme dosyaları - - exiv2-libs - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-10-24 - 0.27.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 0.27.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-25 - 0.27.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-05 - 0.27.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 0.26 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-06 - 0.26 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-25 - 0.25 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-02 - 0.25 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libspnav - http://spacenav.sourceforge.net - - Osman Erkan - osman.erkan@pisilinux.org - - BSD - library - multimedia.misc - Open source alternative to 3DConnextion drivers - The spacenav project provides a free compatible alternative, to the proprietary 3Dconnexion device driver and SDK, for their 6dof space navigation input devices. It provides both a replacement free user-space driver, and a replacement SDK library. - http://downloads.sourceforge.net/spacenav/libspnav-0.2.3.tar.gz - - libX11-devel - - - Makefile.patch - - multimedia/misc/libspnav/pspec.xml - - - libspnav - - libX11 - - - /usr/lib/ - /usr/share/doc - - - - libspnav-devel - Development files for libspnav - libspnav için geliştirme dosyaları - - libspnav - - - /usr/include - /usr/lib/libspnav.so - - - - - 2020-02-11 - 0.2.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.2.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-08 - 0.2.3 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.2.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-09-16 - 0.2.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libavif - https://github.com/AOMediaCodec/libavif - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.misc - Library for encoding and decoding avif files - Library for encoding and decoding avif files - Library for encoding and decoding avif files - Library for encoding and decoding avif files - https://github.com/AOMediaCodec/libavif/archive/refs/tags/v0.9.3.tar.gz - - cmake - nasm - aom-devel - zlib-devel - rav1e-devel - dav1d-devel - glib2-devel - libpng-devel - svt-av1-devel - gdk-pixbuf-devel - libjpeg-turbo-devel - - multimedia/misc/libavif/pspec.xml - - - libavif - - aom - rav1e - dav1d - glib2 - libpng - svt-av1 - gdk-pixbuf - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share/doc - - - - libavif-devel - Development files for libavif - - libavif - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-11-01 - 0.9.3 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - FreeImage - http://freeimage.sourceforge.net - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - An Open Source library project - FreeImage is an Open Source library project for developers who would like to support popular graphics image formats like PNG, BMP, JPEG, TIFF and others as needed by today's multimedia applications. - FreeImage es un proyecto de librería código abierto para desarrolladores que quisieran soportar formatos populares de imágenes como PNG, BMP, JPEG, TIFF y otros, usados en aplicaciones multimedia actuales - https://sourceforge.net/projects/freeimage/files/Source%20Distribution/3.18.0/FreeImage3180.zip - - dos2unix - tiff-devel - webp-devel - mesa-devel - libmng-devel - libraw-devel - openexr-devel - mesa-glu-devel - openjpeg2-devel - libjpeg-turbo-devel - - - freeimage-libraw-0.20.patch - - multimedia/misc/FreeImage/pspec.xml - - - FreeImage - - tiff - webp - mesa - libgcc - libmng - libraw - dos2unix - mesa-glu - openjpeg2 - openexr-libs - libjpeg-turbo - - - /usr/lib - /usr/share/doc - - - - FreeImage-devel - Development files for FreeImage - FreeImage için geliştirme dosyaları - - FreeImage - - - /usr/include - - - - - 2021-10-29 - 3.18.0 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2021-05-25 - 3.18.0 + 1.32 First release Kamil Atlı suvari@pisilinux.org @@ -323147,4811 +280810,100 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libheif - https://github.com/strukturag/libheif + python-jsonschema + https://pypi.python.org/pypi/jsonschema - Pisi Linux Admins - admin@pisilinux.org - - GPLv3 - app - multimedia.misc - HEIF file format decoder and encoder - HEIF file format decoder and encoder - HEIF file format decoder and encoder - HEIF file format decoder and encoder - https://github.com/strukturag/libheif/archive/v1.12.0.tar.gz - - aom-devel - x265-devel - dav1d-devel - glib2-devel - libpng-devel - gdk-pixbuf-devel - libjpeg-turbo-devel - - multimedia/misc/libheif/pspec.xml - - - libheif - - aom - x265 - dav1d - glib2 - libgcc - libpng - gdk-pixbuf - libjpeg-turbo - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/mime - /usr/share/doc - - - - libheif-devel - Development files for libheif - - aom-devel - x265-devel - dav1d-devel - libheif - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-02 - 1.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-10 - 1.11.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - ezanvakti - https://github.com/fbostanci/ezanvakti - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - multimedia - multimedia.misc - Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. - Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. - Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. - Ezanvakti T.C. Diyanet İşleri Başkanlığı sitesinden bulunduğunuz ülke ve şehir için aylık bazda ezan vakitleri çizelgesini alarak vakti geldiğinde ezan okuyan ve bildirim veren bir uygulamadır. - https://github.com/fbostanci/ezanvakti/archive/v7.1.tar.gz - - libnotify-devel - ffmpeg-devel - wget - curl-devel - bash-completion - - multimedia/misc/ezanvakti/pspec.xml - - - ezanvakti - - libnotify - ffmpeg - mplayer - wget - bash-completion - yad - iputils - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - ezanvakti.desktop - ezanvakti.png - - - - - 2020-04-27 - 7.1 - version bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-04-07 - 6.3.4 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ffnvcodec - https://git.videolan.org/?p=ffmpeg/nv-codec-headers.git - - PisiLinux Community - admins@pisilinux.org - - MIT - library - multimedia.misc - FFmpeg version of headers required to interface with Nvidias codec APIs - FFmpeg version of headers required to interface with Nvidias codec APIs - https://sourceforge.net/projects/pisilinux/files/source/ffnvcodec-9.1.23.1.tar.xz - multimedia/misc/ffnvcodec/pspec.xml - - - ffnvcodec - - /usr/include - /usr/lib/pkgconfig - /usr/share - - - - - 2020-01-14 - 9.1.23.1 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - taglib-extras - http://amarok.kde.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - multimedia.misc - Taglib extras library from Amarok team - Amarok takımından taglib ekstraları kütüphanesi - Taglib-extras delivers support for reading and editing the meta-data of audio formats not supported by taglib, including: asf, mp4v2, rmff, wav. - Taglib-extras taglib tarafından desteklenmeyen ses formatlarının (asf, mp4v2, rmff, wav vs.) meta verilerini okumak ve düzenlemek için gerekli desteği verir. - http://download.kde.org/stable/taglib-extras/1.0.1/src/taglib-extras-1.0.1.tar.gz - - pkgconfig - cmake - taglib-devel - - - taglib-1.10.patch - - multimedia/misc/taglib-extras/pspec.xml - - - taglib-extras - - taglib - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - taglib-extras-devel - Development files for taglib-extras - taglib-extras için geliştirme dosyaları - - taglib-extras - - - /usr/include/taglib-extras - /usr/lib/pkgconfig - - - - - 2020-03-07 - 1.0.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-19 - 1.0.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-16 - 1.0.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.0.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libgme - https://bitbucket.org/mpyne/game-music-emu - - Stefan Gronewold - groni@pisilinux.org - - LGPL - multimedia.misc - Video game music file emulation/playback library - Video game music file emulation/playback library - https://bitbucket.org/mpyne/game-music-emu/downloads/game-music-emu-0.6.3.tar.xz - - cmake - libgcc - zlib-devel - - multimedia/misc/libgme/pspec.xml - - - libgme - Video game music file emulation/playback library - - zlib - libgcc - - - /usr/lib - /usr/share/doc - - - - libgme-devel - Development file for libgme - - libgme - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 0.6.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.6.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-30 - 0.6.1 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - DirectFB - http://www.directfb.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Thin library on top of the Linux framebuffer devices - Linux framebuffer aygıtlarının üstünde çalışan hafif bir kütüphane - DirectFB is a thin library that provides hardware graphics acceleration, input device handling and abstraction, integrated windowing system with support for translucent windows and multiple display layers. - DirectFB donanımsal grafik hızlandırması, giriş aygıtları işleme ve soyutlama sağlayan yarısaydam pencereler ve çoklu görüntü katmanlarını destekleyen pencere sistemi ile bütünleşik bir kütüphanedir. - http://sources.buildroot.net/DirectFB-1.7.7.tar.gz - - libgcc - giflib-devel - libX11-devel - zlib-devel - tiff-devel - jasper-devel - freetype-devel - libpng-devel - libXext-devel - libglvnd-devel - mesa-devel - webp-devel - mesa-glu-devel - libdrm-devel - libjpeg-turbo-devel - libmng-devel - lcms2-devel - libvdpau-devel - libmad-devel - libvorbis-devel - - multimedia/misc/DirectFB/pspec.xml - - - DirectFB-docs - - DirectFB - - - /usr/share/doc - - - - DirectFB - - zlib - libgcc - libpng - freetype - libX11 - libXext - libglvnd - mesa - libdrm - libjpeg-turbo - libvdpau - webp - tiff - jasper - libkms - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share - - - - DirectFB-devel - Development files for DirectFB - DirectFB için geliştirme dosyaları - - DirectFB - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-08 - 1.7.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-29 - 1.7.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 1.7.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 1.7.7 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.7.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-26 - 1.7.7 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - sdl2-net - http://www.libsdl.org/projects/SDL_net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Librairie réseau de SDL. - SDL network library 2.0 series - SDL ağ kütüphanesi 2.0 serisi - sdl-mixer is a SDL library for network access. - sdl-net, SDL için ağ erişim kitaplığıdır. - http://www.libsdl.org/projects/SDL_net/release/SDL2_net-2.0.1.tar.gz - - libsdl2-devel - - multimedia/misc/sdl2-net/pspec.xml - - - sdl2-net - - libsdl2 - - - /usr/lib - /usr/share/doc - - - - sdl2-net-devel - Development files for sdl-net - sdl2-net için geliştirme dosyaları - - sdl2-net - libsdl2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 2.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-09 - 2.0.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.1 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - libopusenc - https://opus-codec.org/ - - fury - uglyside@yandex.ru + Kamil Atlı + suvari@pisilinux.org BSD library - multimedia.misc - Library for encoding .opus audio files and live streams. - Opus biçemindeki ses ve canlı yayınları kodlayabilmek için kitaplık. - The libopusenc libraries provide a high-level API for encoding .opus files. libopusenc depends only on libopus. - libopusenc, Opus biçemindeki ses ve canlı yayınları kodlayabilmek için kitaplık sunar. - https://archive.mozilla.org/pub/opus/libopusenc-0.2.1.tar.gz + programming.language.python3 + An implementation of JSON Schema validation for Python + An implementation of JSON Schema validation for Python + http://repository.timesys.com/buildsources/p/python-jsonschema/python-jsonschema-3.2.0/jsonschema-3.2.0.tar.gz - libopus-devel - libopus-32bit - doxygen - - multimedia/misc/libopusenc/pspec.xml - - - libopusenc - Library for encoding .opus audio files and live streams. - - libopus - - - /usr/lib - /usr/share - - - - libopusenc-devel - Development files for libopusenc - libopusenc için geliştirme dosyaları - libopusenc-devel, libopusenc için geliştirme dosyalarını içerir. - - libopusenc - - - /usr/lib32/pkgconfig - /usr/lib/pkgconfig - /usr/include - - - - libopusenc-docs - document files for libopusenc - libopusenc için belgelendirme dosyaları - libopusenc-docs, libopusenc için belgelendirme dosyalarını içerir. - - libopusenc - - - /usr/share/doc/ - - - - libopusenc-32bit - 32-bit shared libraries for libopusenc - libopusenc için 32-bit paylaşımlı kitaplıklar - libopusenc-32bit, libopusenc için 32-bit paylaşımlı kitaplıklar sunar. - emul32 - emul32 - - libopusenc - - - /usr/lib32 - - - - - 2019-06-24 - 0.2.1 - First build. - fury - uglyside@yandex.ru - - - - - - libdvdnav - http://www.mplayerhq.hu/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.misc - libdvdnav is a library for developers of multimedia applications - libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane - libdvdnav est une librairie pour les développeur d'applications multimédia. Elle permet l'utilisation de fonctionnalités sophistiquées de navigation DVD tels que les menus DVD, la lecture multi-angle et même des jeux interactifs DVD. - libdvdnav is a library for developers of multimedia applications. It allows easy use of sophisticated DVD navigation features such as DVD menus, multiangle playback and even interactive DVD games. - libdvdnav çokluortam uyguamaları geliştiricileri için bir kütüphane. libdvdnav ile karmaşık DVD dolaşmalarını Örn: DVD menüleri, değişik açılı gösterimleri ve hatta etkileşimli DVD oyunlarını kullanabilirsiniz - libdvdnav es una librería para desarrollo de aplicaciones multimedia. Permite uso fácil de navegación avanzada en DVDs como en menús de DVDs, reproducción multi-ángulo, e incluso DVDs con juegos interactivos. - http://download.videolan.org/pub/videolan/libdvdnav/6.1.0/libdvdnav-6.1.0.tar.bz2 - - libdvdread-devel - - multimedia/misc/libdvdnav/pspec.xml - - - libdvdnav - - libdvdread - - - /usr/lib - /usr/share/doc/libdvdnav - - - - libdvdnav-devel - Development files for libdvdnav - libdvdnav için geliştirme dosyaları - - libdvdnav - libdvdread-devel - - - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2020-10-05 - 6.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 6.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-01 - 6.0.0 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 5.0.3 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 5.0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-01-31 - 5.0.3 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - libsdl2 - http://www.libsdl.org/ - - Mustafa Cinasal - muscnsl@gmail.com - - LGPLv2.1 - library - multimedia.misc - Simple Direct Media Layer (Couche Média Simple et Directe). - Simple Direct Media Layer 2.0 series - Basit bir direk ortam erişim katmanı 2.0 serisi - Einfachee direkte Medien-Schicht - libsdl is a cross-platform multimedia library designed to provide low level access to audio, keyboard, mouse, joystick, 3D hardware via OpenGL, and 2D video framebuffer. - libsdl; ses, klavye, fare, oyun çubuğu, OpenGL ile 3B donanımsal hızlandırma, 2B görüntü belleğine direkt erişim sağlayan birden çok platform destekleyen bir çokluortam kitaplığıdır. - https://www.libsdl.org/release/SDL2-2.0.16.tar.gz - - DirectFB-devel - alsa-lib-devel - audiofile-devel - dbus-devel - ibus-devel - libXi-devel - vulkan-devel - libX11-devel - libXext-devel - libXinerama-devel - libXrandr-devel - libXrender-devel - libXt-devel - libXv-devel - libglvnd-devel - mesa-glu-devel - libXScrnSaver-devel - libxkbcommon-devel - egl-wayland-devel - wayland-protocols-devel - pulseaudio-libs-devel - - - 25cd749.patch - fedora/0001-audio-Support-pulse-as-an-alias-for-pulseaudio.patch - fedora/0001-video-wayland-use-EGL_EXT_present_opaque-when-availa.patch - fedora/0001-wayland-Add-support-for-high-DPI-cursors.patch - fedora/0001-wayland-Expose-xdg_toplevel-to-SysWM.patch - fedora/0001-wayland-For-text-ignore-key-events-when-Ctrl-is-held.patch - fedora/0001-wayland-Reuse-KeySymToUcs4-to-replicate-X11-keymap-b.patch - fedora/0002-wayland-Woops-forgot-to-assign-cursor-theme-size.patch - - multimedia/misc/libsdl2/pspec.xml - - - libsdl2 - libsdl2 reference documents - - DirectFB - alsa-lib - audiofile - libX11 - libXScrnSaver - libXext - libXinerama - libXrandr - libXrender - libXt - libglvnd - pulseaudio-libs - - - /usr/share/doc - /usr/lib/libSDL2.so - /usr/lib/libSDL2.a - /usr/lib/libSDL2main.a - /usr/lib/libSDL2-2.0.so.0* - /usr/lib/libSDL2_test.a - - - - libsdl2-devel - Development files for libsdl2 - libsdl2 için geliştirme dosyaları - - libsdl2 - - - /usr/bin - /usr/include/SDL2 - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/lib/cmake/SDL2 - - - - libsdl2-32bit - 32-bit shared libraries for libsdl2 - libsdl2 için 32-bit paylaşımlı kitaplıklar - emul32 - - libXt-32bit - libX11-32bit - libXext-32bit - libglvnd-32bit - alsa-lib-32bit - audiofile-32bit - libXrandr-32bit - libXrender-32bit - libXinerama-32bit - libXScrnSaver-32bit - pulseaudio-libs-32bit - - - libXt-32bit - libX11-32bit - libXext-32bit - alsa-lib-32bit - libglvnd-32bit - audiofile-32bit - libXrandr-32bit - libXrender-32bit - libXinerama-32bit - libXScrnSaver-32bit - pulseaudio-libs-32bit - libsdl2 - - - /usr/lib32 - - - - - 2021-10-24 - 2.0.16 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-11 - 2.0.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-08 - 2.0.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-10 - 2.0.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-17 - 2.0.10 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2018-08-05 - 2.0.7 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-12 - 2.0.5 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 2.0.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-11 - 2.0.4 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - musicbrainz5 - http://www.musicbrainz.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.misc - Client library to access metadata of mp3/vorbis/CD media - Mp3/Ogg Vorbis/Audio-Cd gibi ses dosyalarınızın etiketlerine erişiminizi sağlayan istemci kütüphanesidir. - MusicBrainz est un projet tentant de créer une encyclopédie de musique au contenu ouvert. C'est une base de données en ligne contenant des informations concernant les musiques enregistrées. La librairie client MusicBrainz capture les informations concernant les artistes, le nom de l'album, les titres des chansons, leur longueur et beaucoup d'autres données encore. - MusicBrainz is a project that aims to create an open content music encyclopedia. It is an online database of information about recorded music. MusicBrainz client library captures information about artists, the album title, track titles,the length of each track and many more. - MusicBrainz açık içerikli müzik ansiklopedisi oluşturmayı amaçlayan bir projedir. Kayıtlı albüm ve müzik parçaları hakkında çevrim içi veri tabanı sağlar. MusicBrainz kütüphanesi sanatçı, albüm, çalınan parça ve daha birçok konuda veri toplar. - MusicBrainz es un proyecto con la finalidad de crear una enciclopedia de contenido abierto sobre música. Es una base de datos de información en línea sobre grabaciones de música. La libreía de cliente MusicBrainz captura información de artista, título de album, título de las músicas, longitudes de cada música, y mucho más. - ftp://ftp.parrot.org/.1/blfs/svn/l/libmusicbrainz-5.1.0.tar.gz - - neon-devel - libxml2-devel - cmake - - multimedia/misc/musicbrainz5/pspec.xml - - - musicbrainz5 - - libgcc - libxml2 - neon - - - /usr/lib - /usr/share/doc - - - - musicbrainz5-devel - Development files for musicbrainz5 - musicbrainz5 için geliştirme dosyaları - - musicbrainz5 - neon-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-07 - 5.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 5.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-09 - 5.1.0 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 5.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-20 - 5.1.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - lv2 - http://lv2plug.in/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - MIT - library - multimedia.misc - LV2 is a simple but extensible successor of LADSPA - LV2 is a portable plugin standard for audio systems, similar in scope to ​LADSPA, VST, AU, and others. It defines a C API for code and a format for data files which collectively describe a plugin. - http://lv2plug.in/spec/lv2-1.16.0.tar.bz2 - - gtk2-devel - libsndfile-devel - glib2-devel - cairo-devel - pango-devel - freetype-devel - fontconfig-devel - gdk-pixbuf-devel - python-devel python3-devel - cmake - atk-devel + python3-setuptools-scm - - lv2-1.16.0-fix_lv2_validate.patch - - multimedia/misc/lv2/pspec.xml + programming/language/python3/python-jsonschema/pspec.xml - lv2 + python-jsonschema - gtk2 - glib2 - cairo - pango - harfbuzz - freetype - fontconfig - gdk-pixbuf - libsndfile - atk + python3 + python3-idna + python3-setuptools + python3-pyrsistent + python3-importlib_metadata + python3-attrs - /usr/lib - /usr/share/doc - /usr/share /usr/bin - - - - lv2-devel - Development files for lv2 - lv2 için geliştirme dosyaları - - lv2 - - - /usr/include - /usr/lib/pkgconfig + /usr/lib/python3.9/site-packages + /usr/share/doc/python-jsonschema - - 2020-01-30 - 1.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 1.14.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-04-04 - 1.14.0 + 2022-01-09 + 3.2.0 First release - Stefan Gronewold - groni@pisilinux.org - - - - - - libzen - http://sourceforge.net/projects/zenlib/ - - Pisi Linux Community - admins@pisilinux.org - - ZLIB - as-is - app:console - multimedia.misc - Small C++ derivate class to have a simpler life. - shared library for libmediainfo and mediainfo - https://mediaarea.net/download/source/libzen/0.4.37/libzen_0.4.37.tar.bz2 - multimedia/misc/libzen/pspec.xml - - - libzen - - libgcc - - - /usr/lib - /usr/share/doc - - - - libzen-devel - - libzen - - - /usr/bin/libzen-config - /usr/lib/pkgconfig - /usr/lib/libzen.so - /usr/include/ZenLib - - - - - 2020-03-07 - 0.4.37 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.4.37 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-08 - 0.4.35 - Version bump Kamil Atlı suvari@pisilinux.org - - 2016-11-24 - 0.4.31 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - gd - https://libgd.github.io/ + python-keyutils + https://github.com/sassoftware/python-keyutils - PisiLinux Community - admins@pisilinux.org - - as-is - BSD - library - app:console - multimedia.misc - Une librairie rapide pour créer des graphiques en images. - A fast library for creating graphic images - Hızlı bir şekilde resim oluşturmak için bir kütüphane - The gd graphics library allows your code to quickly draw images complete with lines, arcs, text, multiple colors, cut and paste from other images, and flood fills, and to write out the result as a PNG or JPEG file. This is particularly useful in Web applications, where PNG and JPEG are two of the formats accepted for inline images by most browsers. Note that gd is not a paint program. - GD çizge kitaplığı, hızlıca çizgiler, yaylar, metinler ve çeşitli renkler ile resimler yaratmanızı sağlarken, diğer resimler üzerinde kopyala-yapıştır yapmanıza olanak tanır ve sonuçlarınızı PNG veya JPEG olarak kaydetmenizi sağlar. - https://github.com/libgd/libgd/releases/download/gd-2.3.3/libgd-2.3.3.tar.gz - - bdc281eadb1d58d5c0c7bbc1125ee4674256df08.patch - - - tiff-devel - webp-devel - zlib-devel - libavif-devel - libheif-devel - libpng-devel - libvpx-devel - freetype-devel - fontconfig-devel - libjpeg-turbo-devel - - multimedia/misc/gd/pspec.xml - - - gd - A fast library for creating graphic images - - webp - tiff - zlib - libavif - libheif - libpng - libvpx - freetype - fontconfig - libjpeg-turbo - - - /usr/lib - /usr/bin - /usr/share/doc/gd - - - - gd-devel - Development files for gd - gd için geliştirme dosyaları - gd-devel, gd için geliştirme dosyalarını içerir. - - gd - webp-devel - tiff-devel - zlib-devel - libheif-devel - libavif-devel - libpng-devel - freetype-devel - fontconfig-devel - libjpeg-turbo-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/bin/gdlib-config - - - - gd-docs - Documentation files for gd - gd için geliştirme belgeleri - gd-docs, gd için belgelendirme dosyalarını içerir. - - /usr/share/doc/gd/html - - - - - 2021-11-01 - 2.3.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 2.3.2 - Version bump. - Berk Çakar - berk2238@hotmail.com - - - 2020-05-20 - 2.3.0 - Minor version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-19 - 2.2.5 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 2.2.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 2.2.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-12 - 2.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-08-02 - 2.1.1 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - mbedtls - https://github.com/ARMmbed/mbedtls - - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org Apache library - multimedia.misc - Cryptographic library for embedded systems - Cryptographic library for embedded systems - Gömülü sistemler için kriptografik kitaplık - Gömülü sistemler için kriptografik kitaplık - https://github.com/ARMmbed/mbedtls/archive/refs/tags/v2.27.0.tar.gz - - cmake - python3 - - multimedia/misc/mbedtls/pspec.xml - - - mbedtls - - /usr/bin - /usr/lib - /usr/share/doc - - - - mbedtls-devel - Development files for mbedtls - - mbedtls - - - /usr/include - /usr/lib/cmake - - - - - 2021-11-09 - 2.27.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vasviewer - http://azsky2.html.xdomain.jp/soft/vasviewer.html - - fury - uglyside@yandex.ru - - MIT - app:gui - multimedia.videoplayer - VapourSynth viewer. - Load the script file and display the frame image. Also you can save the frame image as PNG. - https://gitlab.com/azelpg/vasviewer/-/archive/v1.0.1/vasviewer-v1.0.1.tar.bz2 - - libX11-devel - libpng-devel - libXext-devel - libXcursor-devel - fontconfig-devel - vapoursynth-devel - - multimedia/videoplayer/vasviewer/pspec.xml - - - vasviewer - - zlib - libX11 - libpng - libXext - freetype - fontconfig - libXcursor - vapoursynth - - - /usr/bin - /usr/share - /usr/share/vasviewer - - - - - 2021-12-11 - 1.0.1 - First build - fury - uglyside@yandex.ru - - - - - - mpv-player - https://mpv.io/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - multimedia.videoplayer - mpv is based on mplayer2 - mpv has Wayland support, Improved OpenGL output, Support for libavfilter (for video->video and audio->audio). This allows using most of FFmpeg's filters, which improve greatly on the old MPlayer filters in features, performance, and correctness.is a movie player that can run on many platforms. Improved OpenGL output. More correct color reproduction (color matrix generation), including support for BT.2020 (Ultra HD) and linear XYZ (Digital Cinema) inputs. - https://github.com/mpv-player/mpv/archive/v0.34.1.tar.gz + programming.language.python3 + A set of python bindings for keyutils + Keyutils için bir dizi python bağlayıcısı + Un ensemble de liaisons python pour keyutils + A set of python bindings for keyutils + Keyutils için bir dizi python bağlayıcısı + https://github.com/sassoftware/python-keyutils/archive/refs/tags/0.6.tar.gz + pip3 + keyutils python3-devel - libzimg-devel - mesa-devel - ffmpeg-devel - wayland-devel - libarchive-devel - gnutls-devel - libglvnd-devel - pkgconfig - perl - samba-devel - libX11-devel - zlib-devel - libass-devel - lua52-devel - libsdl2-devel - yasm - libjpeg-turbo-devel - rubberband-devel - libvdpau-devel - mesa-glu-devel - libbluray-devel - libdvdread-devel - libdvdnav-devel - enca-devel - libcdio-devel - lcms2-devel - libXinerama-devel - libxkbcommon-devel - libXScrnSaver-devel - libXv-devel - libffado-devel - libva-devel - libdrm-devel - libv4l-devel - libXext-devel - libcaca-devel - alsa-lib-devel - libvdpau-devel - libXrandr-devel - wayland-devel - wayland-cursor - wayland-protocols-devel - pulseaudio-libs-devel - libcdio-paranoia-devel - jack-audio-connection-kit-devel - libvdpau-devel - libavc1394-devel - libarchive-devel - python3-youtube_dl - - - 05_add-keywords.patch - - multimedia/videoplayer/mpv-player/pspec.xml - - - mpv-player - - libzimg - mesa - wayland - libarchive - lua52 - enca - libglvnd - zlib - lcms2 - libXv - libva - samba - ffmpeg - libX11 - libass - libdrm - libv4l - libXext - libcaca - libcdio - alsa-lib - libvdpau - libXrandr - rubberband - libbluray - libdvdnav - libdvdread - libXinerama - libxkbcommon - libXScrnSaver - libjpeg-turbo - wayland-client - wayland-cursor - pulseaudio-libs - libcdio-paranoia - python3-setuptools - python3-youtube_dl - jack-audio-connection-kit - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/applications - /usr/share/icons - /usr/share - /usr/share/zsh - /usr/share/mpv - - - - mpv-player-devel - - mpv-player - - - /usr/lib/pkgconfig - /usr/include - - - - - 2022-01-04 - 0.34.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-02 - 0.34.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-29 - 0.33.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-29 - 0.33.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-05 - 0.32.0 - rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-15 - 0.32.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-22 - 0.31.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-10-28 - 0.30.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-14 - 0.29.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-12 - 0.29.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-28 - 0.29.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-03 - 0.29.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 0.29.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-05 - 0.28.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 0.27.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 0.27.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-16 - 0.24.0 - Release bump. - Stefan Gronewold - groni@pisilinux.org - - - 2017-01-11 - 0.23.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-15 - 0.17.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.16.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-28 - 0.16.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-03-27 - 0.14 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - obs-studio - https://obsproject.com/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPLv2 - app:gui - multimedia.videoplayer - OBS-Studio is a rewrite of what was formerly known as Open Broadcaster Software - OBS-Studio is a rewrite of what was formerly known as Open Broadcaster - Software - OBS-Studio software was originally designed for recording and streaming live video content, efficiently - OBS-Studio software was originally designed for recording and streaming live - video content, efficiently - obs-studio - https://github.com/obsproject/obs-studio/archive/27.1.3.tar.gz - - curl-devel - dbus-devel - x264-devel - zlib-devel - eudev-devel - luajit-devel - glib2-devel - ffmpeg-devel - libX11-devel - libv4l-devel - libxcb-devel - jansson-devel - mbedtls-devel - python3-devel - alsa-lib-devel - libv4l-devel - vlc-devel - vlc-libs - pkgconfig - freetype-devel - libglvnd-devel - pipewire-devel - qt5-svg-devel - rnnoise-devel - qt5-base-devel - libfdk-aac-devel - libXfixes-devel - speexdsp-devel - fontconfig-devel - libXcomposite-devel - qt5-x11extras-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - cmake - wayland-devel - wayland-client - wayland-cursor - wayland-server - - multimedia/videoplayer/obs-studio/pspec.xml - - - obs-studio - - curl - dbus - x264 - zlib - eudev - luajit - glib2 - ffmpeg - libX11 - libgcc - libv4l - libxcb - speexdsp - jansson - mbedtls - python3 - alsa-lib - freetype - libglvnd - pipewire - qt5-svg - rnnoise - wayland - qt5-base - libXfixes - fontconfig - vlc-libs - ffmpeg - libfdk-aac - libXcomposite - qt5-x11extras - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/doc - - - obs-studio.desktop - obs-logo.png - - - - obs-studio-devel - Development files for obs-studio - - obs-studio - libX11-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-11-09 - 27.1.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-19 - 26.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 24.0.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-04 - 24.0.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-12 - 23.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-14 - 23.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-28 - 21.0.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 21.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-03 - 17.0.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-11 - 17.0.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-07-21 - 0.15.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-07-13 - 0.15.1 - First release - Stefan Gronewold (groni) - groni@pisilinux.org - - - - - - mplayer - http://www.mplayerhq.hu/design7/news.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - app:console - multimedia.videoplayer - Media Player for Linux - Linux için ses ve görüntü oynatıcı - MPlayer is a movie player that can run on many platforms. It plays most MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA files, supported by many native codecs. - MPEG/VOB, AVI, Ogg/OGM, VIVO, ASF/WMA/WMV, QT/MOV/MP4, RealMedia, Matroska, NUT, NuppelVideo, FLI, YUV4MPEG, FILM, RoQ, PVA dosyalarını çalabilen ve farklı platformaların kütüphanelerini de kullanarak ses ve görüntü dosyaları oynatmaya yarayan uygulama. - mplayer - https://sourceforge.net/projects/pisilinux/files/source/mplayer-38313.tar.gz - https://ffmpeg.org/releases/ffmpeg-4.4.1.tar.xz - https://mplayerhq.hu/MPlayer/skins/Clearlooks-multilingual-2.0.7.tar.bz2 - - gsm-devel - aom-devel - glib2-devel - atk-devel - lzo-devel - gtk2-devel - faac-devel - lirc-devel - xvid-devel - lame-devel - libglvnd-devel - x264-devel - enca-devel - aalib-devel - samba-devel - cairo-devel - pango-devel - libva-devel - speex-devel - faad2-devel - libdv-devel - libXv-devel - libmad-devel - libbs2b-devel - giflib-devel - libdca-devel - libogg-devel - a52dec-devel - mpg123-devel - openal-devel - libvpx-devel - libass-devel - libmng-devel - libsdl-devel - fribidi-devel - twolame-devel - libXvMC-devel - live555-devel - libcaca-devel - libXext-devel - libopus-devel - libvdpau-devel - rtmpdump-devel - libmpeg2-devel - alsa-lib-devel - openjpeg-devel - DirectFB-devel - libtheora-devel - libmpcdec-devel - libbluray-devel - libvorbis-devel - libdvdnav-devel - openjpeg2-devel - fontconfig-devel - libXrender-devel - ladspa-sdk-devel - libdvdread-devel - libXxf86vm-devel - libXinerama-devel - libXxf86dga-devel - libmatroska-devel - schroedinger-devel - opencore-amr-devel - libXScrnSaver-devel - libjpeg-turbo-devel - pulseaudio-libs-devel - libcdio-paranoia-devel - jack-audio-connection-kit-devel - lzo-devel - zlib-devel - bzip2 - cdparanoia-devel - yasm-devel - gnutls-devel - libX11-devel - libmng-devel - libpng-devel - libcdio-devel - ncurses-devel - freetype-devel - libdvdcss-devel - - - tr-locale-fix.patch - - multimedia/videoplayer/mplayer/pspec.xml - - - mplayer - app:console - mplayer - - gsm - aom - glib2 - gtk2 - xvid - lirc - enca - faac - lame - x264 - mesa - faad2 - samba - libdv - speex - aalib - libXv - libmad - libass - libdca - openal - giflib - mpg123 - libsdl - libvpx - a52dec - libogg - libopus - libXvMC - libcaca - libglvnd - libbs2b - twolame - libXext - DirectFB - openjpeg - alsa-lib - libvdpau - rtmpdump - libmpeg2 - libbluray - libdvdnav - libtheora - libvorbis - fribidi - openjpeg2 - fontconfig - libXxf86vm - libdvdread - gdk-pixbuf - libXxf86dga - libXinerama - opencore-amr - schroedinger - libjpeg-turbo - libXScrnSaver - pulseaudio-libs - libcdio-paranoia - jack-audio-connection-kit - lzo - zlib - bzip2 - gnutls - libX11 - libmng - libpng - libcdio - ncurses - freetype - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/mplayer - /usr/share/pixmaps - - - mplayer.png - extensions - test-webcam - midentify - bash_completion - - - - mplayer-gui - MPlayer gui - MPlayer arayüzü - mplayer-gui is the default graphical frontend of MPlayer. - mplayer-gui, MPlayer öntanımlı grafik arayüzünü içerir. - app:gui - mplayer - - mplayer - - - /usr/bin/gmplayer - /usr/share/applications - /usr/share/mplayer/skins - /usr/share/icons - - - mplayer.desktop - - - - - 2022-04-19 - 1.4_38313 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-30 - 1.4_38313 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 1.4_38313 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-31 - 1.4_38184 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-18 - 1.4_38184 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2019-10-25 - 1.4_38152 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2019-04-27 - 1.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-13 - 1.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-28 - 1.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 1.3.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-15 - 1.3.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - qmplay2 - http://zaps166.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPL - app:gui - multimedia.videoplayer - QMPlay2 is a video and audio player which can play most formats and codecs - It can play all formats supported by FFmpeg, libmodplug (including J2B and SFX). It also supports Audio CD, raw files, Rayman 2 music and chiptunes. It contains YouTube and Prostopleer browser. - https://github.com/zaps166/QMPlay2/releases/download/20.12.16/QMPlay2-src-20.12.16.tar.xz - - qt5-base-devel - qt5-qdbusviewer - qt5-x11extras-devel - qt5-assistant-devel - qt5-designer-devel - qt5-svg-devel - qt5-linguist - qt5-declarative-devel - pkgconfig - cmake - ffmpeg-devel - libva-devel - libgme-devel - libvdpau-devel - taglib-devel - portaudio-devel - openal-devel - libcdio-devel - libcddb-devel - libass-devel - libX11-devel - gst-libav - pulseaudio-libs-devel - libXv-devel - mesa-devel - mesa-glu-devel - alsa-lib-devel - libva-devel - - multimedia/videoplayer/qmplay2/pspec.xml - - - qmplay2 - - qt5-base - qt5-x11extras - alsa-lib - mesa - libXv - libva - libgme - ffmpeg - libX11 - libcdio - libass - libgcc - taglib - libcddb - libvdpau - pulseaudio-libs - - - /usr/bin - /usr/share - /usr/share/qmplay2 - /usr/share/icons - /usr/share/applications - /usr/lib - /usr/share/doc - - - QMPlay2.png - QMPlay2.desktop - QMPlay2_enqueue.desktop - - - - qmplay2-devel - Development files for qmplay2 - - qmplay2 - - - /usr/include - /usr/lib/pkgconfig - /usr/lib/cmake - - - - - 2021-02-13 - 20.12.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 19.12.19 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-10 - 18.12.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-27 - 17.12.31 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 17.12.31 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-08 - 17.02.12 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-11 - 16.12.23 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-19 - 16.06.01 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-05-12 - 16.05.06 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - simplescreenrecorder - https://www.maartenbaert.be/simplescreenrecorder/ - - ali algul - aligulle3801@gmail.com - - LGPLv3 - app - multimedia.videoplayer - creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use - creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use - creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use - creen recorder that is actually quite complex, but 'simple' in the sense that it's easy to use - https://codeload.github.com/MaartenBaert/ssr/tar.gz/0.4.3 - - libv4l-devel - jack-audio-connection-kit-devel - cmake - libX11-devel - mesa-glu-devel - ffmpeg-devel - alsa-lib-devel - pulseaudio-libs-devel - qt5-base-devel - qt5-x11extras-devel - qt5-linguist - libXinerama-devel - libXi-devel - - multimedia/videoplayer/simplescreenrecorder/pspec.xml - - - simplescreenrecorder - - ffmpeg - libXi - libX11 - libgcc - libv4l - libXext - alsa-lib - mesa-glu - qt5-base - qt5-x11extras - libXfixes - libXinerama - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/man - /usr/share/mateinfo - /usr/share/doc - - - - - 2021-02-11 - 0.4.3 - First release - ali algul - aligulle3801@gmail.com - - - - - - kaffeine - http://www.kde.org/applications/multimedia/kaffeine/ - - PisiLinux Community - admins@pisilinux.org - - GPLv1 - app:gui - multimedia.videoplayer - Kaffeine Media Player for KDE5 - KDE4 için Kaffeine Ortam Oynatıcı - Awesome media player and vcr for KDE5. - KDE4 için harika bir video oynatıcı - https://download.kde.org/stable/kaffeine/kaffeine-2.0.18.tar.xz - - qt5-base-devel - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-mysql - qt5-assistant-devel - qt5-designer-devel - libXScrnSaver-devel - ki18n-devel - kwidgetsaddons-devel - kxmlgui-devel - kio-devel - solid-devel - knotifications-devel - kidletime-devel - kdbusaddons-devel - libX11-devel - libXext-devel - gettext-devel - qt5-x11extras-devel - libv4l-devel - vlc-devel - kconfig-devel - kcoreaddons-devel - kconfigwidgets-devel - pkgconfig - extra-cmake-modules - kdoctools-devel - - multimedia/videoplayer/kaffeine/pspec.xml - - - kaffeine - - qt5-sql-sqlite - qt5-sql-odbc - qt5-sql-postgresql - qt5-sql-mysql - qt5-base - libXScrnSaver - ki18n - kwidgetsaddons - kxmlgui - kio - solid - knotifications - kidletime - kdbusaddons - libX11 - qt5-x11extras - vlc-libs - libgcc - libv4l - kconfig - kcoreaddons - kconfigwidgets - kwindowsystem - - - /usr/share - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/icons - - - - - 2020-03-08 - 2.0.18 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-11 - 2.0.18 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-04 - 2.0.15 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 2.0.13 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-09 - 2.0.13 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-11 - 2.0.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 2.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-04 - 2.0.1 - First Release. - Stefan Gronewold - groni@pisilinux.org - - - - - - smtube - http://smplayer.sourceforge.net/en/info - - Pisi Linux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.videoplayer - Play and download Youtube videos - Youtube video indirme yöneticisi - SMTube allows to search, play and download Youtube videos. - SMTube, youtube videolarını oynatmak indirmek ve videolar içerisinde arama yapmak için bir uygulamadır. - https://sourceforge.net/projects/smtube/files/SMTube/21.7.0/smtube-21.7.0.tar.bz2 - - qt5-base-devel - qt5-script-devel - qt5-location-devel - qt5-webkit-devel - qt5-linguist - - multimedia/videoplayer/smtube/pspec.xml - - - smtube - - qt5-base - qt5-script - qt5-webkit - qt5-location - libgcc - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2021-08-31 - 21.7.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-28 - 20.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-04 - 20.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-29 - 19.6.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 17.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-26 - 17.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-10 - 17.1.0 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-02-03 - 17.1.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2017-01-11 - 16.7.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 15.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-06 - 15.11 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - smplayer - https://www.smplayer.info/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.videoplayer - A complete front-end for MPlayer - Gelişmiş bir mplayer önyüzü - SMPlayer es un frontend de Mplayer - smplayer is Qt application which intends to be a complete front-end for MPlayer, from basic features like playing videos, DVDs, and VCDs to more advanced features like support for MPlayer filters and more. - smplayer Qt ile yazılmış, gelişmiş bir mplayer önyüzüdür. Basit özelliklerinin yanı sıra, TV, DVD, VCD oynatma, mplayer filtrelerini kullanabilme gibi yetenekleri de bulunmaktadır. - SMPlayer es un reproductor multimedia gratuito y para Windows y Linux con códecs incorporados, que puede reproducir prácticamente cualquier formato de vídeo y audio. No necesita ningún códec externo. Simplemente instala SMPlayer y podrás reproducir cualquier formato sin la molestia de tener que buscar e instalar paquetes de códecs. - smplayer - https://sourceforge.net/projects/smplayer/files/SMPlayer/22.2.0/smplayer-22.2.0.tar.bz2 - https://downloads.sourceforge.net/smplayer/smplayer-themes-20.11.0.tar.bz2 - https://downloads.sourceforge.net/smplayer/smplayer-skins-20.11.0.tar.bz2 - - zlib-devel - qt5-linguist - qt5-base-devel - qt5-script-devel - libxkbcommon-devel - - multimedia/videoplayer/smplayer/pspec.xml - - - smplayer - - qt5-base - qt5-script - libX11 - zlib - libgcc - mpv-player - - - /usr/bin - /usr/share/smplayer - /usr/share/applications - /usr/share/icons - /usr/share/kde4 - /usr/share/man - /usr/share/doc/smplayer - /usr/share/metainfo/smplayer.appdata.xml - - - - - 2022-04-12 - 22.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-07 - 21.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 21.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-17 - 21.1.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-08 - 20.6.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-15 - 20.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-03 - 19.10.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-29 - 19.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-28 - 19.5.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-03 - 19.5.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-30 - 19.1.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-26 - 18.10.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-03 - 18.10.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-03 - 18.9.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-15 - 18.6.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-27 - 18.5.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-30 - 18.4.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-26 - 18.3.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-02 - 18.2.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-10 - 18.2.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 18.1.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-09 - 17.11.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-03 - 17.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-11 - 15.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 15.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 15.11 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - vlc - http://www.videolan.org/vlc - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:gui - multimedia.videoplayer - VLC media player - VLC çoklu ortam oynatıcısı - Odtwarzacz plików multimedialnych i serwer strumieni - VLC reproductor multimedia - VLC is a famous video player and streamer. - Media oynatıcısı ve yayın dinleyici - VLC jest odtwarzaczem multimediów projektu VideoLAN. Odtwarza pliki MPEG, MPEG2, MPEG4, DivX, MOV, WMV, QuickTime, WebM, FLAC, MP3, Ogg/Vorbis, płyty DVD, VCD, podkasty oraz strumienie multimedialne z różnych źródeł w sieci. - VLC es un poderoso reproductor de medios para todo tipo de formatos multimedia - vlc - http://mirrors.netix.net/vlc/vlc/3.0.17.3/vlc-3.0.17.3.tar.xz - - srt-devel - qt5-svg-devel - wayland-client - libcdio-devel - eudev-devel - lua-devel - libgcrypt-devel - xcb-proto - zlib-devel - gtk2-devel - gtk3-devel - zvbi-devel - faac-devel - flac-devel - lirc-devel - mesa-devel - x265-devel - x264-devel - dbus-devel - avahi-devel - samba-devel - aalib-devel - faad2-devel - speex-devel - libva-devel - libXt-devel - libXv-devel - cairo-devel - util-macros - libxcb-devel - libarchive-devel - libXau-devel - libtar-devel - libvpx-devel - ffmpeg-devel - libass-devel - libXpm-devel - gnutls-devel - libv4l-devel - libdca-devel - libmtp-devel - libmad-devel - libogg-devel - libsdl-devel - libsdl2-devel - taglib-devel - a52dec-devel - libebml-devel - libxml2-devel - libcddb-devel - libcaca-devel - libXext-devel - librsvg-devel - libcdio-devel - fribidi-devel - libupnp-devel - libkate-devel - freerdp-devel - twolame-devel - minizip-devel - live555-devel - libopus-devel - freetype-devel - libXdmcp-devel - kernel-headers - xcb-util-devel - libmpeg2-devel - alsa-lib-devel - libshout-devel - libdvbpsi-devel - libtheora-devel - libbluray-devel - libgcrypt-devel - libnotify-devel - libssh2-devel - openssl-devel - libvorbis-devel - libdc1394-devel - ncurses-devel - libid3tag-devel - sdl-image-devel - libmpcdec-devel - libdvdcss-devel - libdvdnav-devel - vcdimager-devel - libraw1394-devel - fluidsynth-devel - libdvdread-devel - fontconfig-devel - libavc1394-devel - libmodplug-devel - libXxf86vm-devel - gdk-pixbuf-devel - libmatroska-devel - libXinerama-devel - schroedinger-devel - crystalhd-firmware - libgpg-error-devel - libvncserver-devel - libsamplerate-devel - libjpeg-turbo-devel - qt5-base-devel - qt5-x11extras-devel - libchromaprint-devel - gstreamer-devel - pulseaudio-libs-devel - xcb-util-keysyms-devel - gst-plugins-base-devel - zvbi-devel - wayland-protocols-devel - - - vlc-2.2.8-freerdp-2.patch - - multimedia/videoplayer/vlc/pspec.xml - - - vlc - - lua - dbus - qt5-base - qt5-svg - wayland-client - qt5-x11extras - ncurses - libtar - libXpm - fribidi - libXi - libXext - minizip - zlib - libX11 - libgcc - freetype - vlc-libs - libXinerama - dejavu-fonts - - - /usr/bin - /usr/lib/vlc/plugins/gui - /usr/share/vlc - /usr/share/applications - /usr/share/icons - /usr/share/kde4/apps/solid/actions - /usr/share/metainfo - /usr/share/solid - /usr/share/doc - /usr/share/man - /usr/share/locale - - - System.Package - - - - vlc-lua - Lua scripting for VLC - - lua - vlc-libs - - - /usr/lib/vlc/lua - /usr/lib/vlc/plugins/lua/liblua_plugin.so - - - - vlc-libs - Codec and plugin library files for VLC - vlc için codec ve eklenti kitaplık dosyaları - - lua - libX11 - x264 - libgcc - freetype - dbus - zlib - gtk3 - lirc - flac - zvbi - x265 - libglvnd - libva - faad2 - samba - speex - aalib - cairo - glib2 - eudev - libpng - libxcb - harfbuzz - libidn - libmad - libass - gnutls - libdca - libsdl - ffmpeg - a52dec - libmtp - taglib - libogg - libvpx - libxml2 - libssh2 - libcddb - freerdp - libopus - libcaca - twolame - libebml - libcdio - librsvg - live555 - minizip - fribidi - libkate - libupnp - libshout - libarchive - avahi-libs - alsa-lib - libvdpau - libmpeg2 - libdvbpsi - libdc1394 - sdl-image - vcdimager - libbluray - libnotify - libdvdnav - libmpcdec - libtheora - libvorbis - libgcrypt - fontconfig - libraw1394 - fluidsynth - libmodplug - libdvdread - gdk-pixbuf - libavc1394 - libmatroska - schroedinger - wayland-client - libvncserver - libgpg-error - libsamplerate - libjpeg-turbo - gstreamer - libchromaprint - pulseaudio-libs - xcb-util-keysyms - crystalhd-firmware - gst-plugins-base - - - /usr/lib/libvlc* - /usr/lib/vlc - - - - vlc-devel - Development files for vlc - vlc için geliştirme dosyaları - Pliki nagłówkowe vlc - - vlc-libs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-24 - 3.0.17.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-30 - 3.0.16 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-30 - 3.0.16 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-04 - 3.0.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-13 - 3.0.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-17 - 3.0.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-19 - 3.0.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-17 - 3.0.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-29 - 3.0.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-03 - 3.0.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-14 - 3.0.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-15 - 3.0.8 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-04-12 - 3.0.6 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-22 - 3.0.6 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-28 - 3.0.5 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-16 - 3.0.3 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-19 - 3.0.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-28 - 3.0.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-03 - 3.0.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 3.0.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 2.2.8 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-21 - 2.2.8 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-05 - 2.2.4 - Rebuild - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-12-24 - 2.2.4 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-20 - 2.2.4 - Version Bump - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-09 - 2.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 2.2.0 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - vokoscreenNG - https://github.com/vkohaupt/vokoscreenNG - - Pisilinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.videoplayer - New desktop recording program. - VokscreenNG is a user friendly Open Source screencaster for Linux and Windows. The new name is now vokoscreenNG and has been rewritten from scratch. - https://github.com/vkohaupt/vokoscreenNG/archive/refs/tags/3.2.0.tar.gz - - libX11-devel - qt5-linguist - qt5-base-devel - gstreamer-devel - wayland-devel - wayland-client - pulseaudio-libs-devel - qt5-x11extras-devel - qt5-multimedia-devel - - - 0001-Add-better-integration-for-Linux.patch - - multimedia/videoplayer/vokoscreenNG/pspec.xml - - - vokoscreenNG - - glib2 - libX11 - libgcc - qt5-base - gstreamer - gst-libav - pulseaudio - wayland-client - pulseaudio-libs - qt5-x11extras - qt5-multimedia - gstreamer-vaapi - gst-plugins-bad - gst-plugins-base - gst-plugins-good - gst-plugins-ugly - libva-intel-driver - - - /usr/bin/vokoscreenNG - /usr/share/applications/vokoscreenNG.desktop - /usr/share/pixmaps/vokoscreenNG.png - /usr/share/metainfo/vokoscreenNG.appdata.xml - /usr/share/icons/hicolor/256x256/apps/vokoscreenNG.png - /usr/share/doc - - - - - 2022-05-28 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-31 - 3.0.9 - rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2021-05-31 - 3.0.9 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-05-11 - 3.0.8 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-13 - 3.0.6 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-04-11 - 3.0.3 - Ver. bump - fury - uglyside@yandex.ru - - - 2020-02-01 - 3.0.1 - Rewrited. - fury - uglyside@yandex.ru - - - - - - libv4l - http://freecode.com/projects/libv4l - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - LGPLv2.1 - library - multimedia.videoplayer - V4L wrapper for V4L2 - V4L kitaplığı - Warstwa abstrakcji dla urządzeń video4linux2 - A library to access V4L2 API with V4L1 alike calls. - V4L2 arabirimini V4L1 tarzı çağrılarla erişim sağlayan kitaplık. - libv4l to zestaw bibliotek dodający niewielką warstwę abstrakcji dla urządzeń video4linux2. Celem tej warstwy jest ułatwienie autorom aplikacji obsługi szerokiej gamy urządzeń bez pisania osobnego kodu dla różnych urządzeń tej samej klasy. - https://linuxtv.org/downloads/v4l-utils/v4l-utils-1.20.0.tar.bz2 - - qt5-base-devel - libjpeg-turbo-devel - glibc-devel - libglvnd-devel - mesa-glu-devel - alsa-lib-devel - libgcc - doxygen - eudev-devel - elfutils-devel - - multimedia/videoplayer/libv4l/pspec.xml - - - libv4l - - libjpeg-turbo - eudev - libX11 - libglvnd - mesa-glu - - - /lib/udev/rules.d - /lib/udev/rc_keymaps - /usr/lib/lib* - /usr/lib/v4l* - /usr/share/doc - - - - v4l-utils - Utilities for libv4l - Zbiór narzędzi do urządzeń Video4Linux - - elfutils - libgcc - alsa-lib - qt5-base - libv4l - - - /etc - /usr/bin - /usr/sbin - /usr/lib - /usr/share/man - /usr/share/applications - /usr/share/icons - /usr/share/locale - - - - libv4l-devel - Development files for libv4l - libv4l için geliştirme dosyaları - Pliki nagłówkowe bibliotek libv4l - - eudev-devel - libv4l - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - - libv4l-32bit - 32-bit shared libraries for libv4l - libv4l için 32-bit paylaşımlı kitaplıklar - 32-bitowe biblioteki libv4l - emul32 - emul32 - - libjpeg-turbo-32bit - libX11-32bit - libglvnd-32bit - mesa-glu-32bit - alsa-lib-32bit - eudev-32bit - - - eudev-32bit - libjpeg-turbo-32bit - libv4l - - - /usr/lib32/lib* - /usr/lib32/v4l* - - - - - 2021-02-20 - 1.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 1.18.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-10-16 - 1.14.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 1.14.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 1.12.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.10.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-28 - 1.10.0 - update - Serdar Soytetir - kaptan@pisilinux.org - - - 2015-05-25 - 1.0.1 - Rebuild - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.0.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - flacon - https://flacon.github.io/ - - Pisilinux Community - admins@pisilinux.org - - LGPLv2.1 - app:gui - multimedia.converter - Flacon is a open source audio file encoder. - An Audio File Encoder. Extracts audio tracks from an audio CD image to separate tracks - You can split a single large audio file containing the entire album into the separate audio tracks. - Bir Ses Dosyası Kodlayıcısı. Ses parçalarını bir ses CD görüntüsünden ayrı parçalara ayıklar. - https://github.com/flacon/flacon/archive/refs/tags/v8.3.0.tar.gz - - cmake - taglib-devel - qt5-linguist - qt5-base-devel - uchardet-devel - - multimedia/converter/flacon/pspec.xml - - - flacon - - libgcc - taglib - qt5-base - uchardet - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/metainfo - /usr/share/doc - - - - - 2022-04-16 - 8.3.0 - Version bump. - fury - uglyside@yandex.ru - - - 2022-01-17 - 8.2.0 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2021-04-26 - 5.5.1 - First release. - PisiLinux Community - admins@pisilinux.org - - - - - - ccd2iso - https://sourceforge.net/projects/ccd2iso/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.converter - CloneCD image files to ISO converter - CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir uygulama - ccd2iso converts CloneCD image files to ISO image files. - CloneCD imaj dosyalarını ISO dosyalarına dönüştüren bir komut satırı uygulaması. - mirrors://sourceforge/ccd2iso/ccd2iso-0.3.tar.gz - multimedia/converter/ccd2iso/pspec.xml - - - ccd2iso - - /usr/bin - /usr/share/doc/ccd2iso - - - - - 2020-03-08 - 0.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-05 - 0.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 0.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-18 - 0.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - unoconv - http://dag.wieers.com/home-made/unoconv - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.converter - A document converter - Bir belge dönüştürücü - unoconv converts between any document format that OpenOffice / OpenOffice understands. - unoconv, her belge biçimini OpenOffice ve OpenOffice'in anlayacağı biçime dönüştüren bir terminal uygulamasıdır. - https://github.com/dagwieers/unoconv/archive/0.8.2.tar.gz - - xmlto - asciidoc - python3-devel + python3-wheel python3-setuptools - multimedia/converter/unoconv/pspec.xml + programming/language/python3/python-keyutils/pspec.xml - unoconv + python-keyutils - xmlto - asciidoc - - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2020-03-08 - 0.8.2 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-11-04 - 0.8.2 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-05 - 0.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 0.7 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-23 - 0.7 - First release - Stefan Gronewold - groni@pisilinux.org - - - - - - soundkonverter - https://www.opendesktop.org/p/1126634/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:gui - multimedia.converter - SoundKonverter is a frontend to various audio converters. - Audio conversion, replay Gain calculation, CD ripping. It is extendable by plugins and supports many backends: soundKonverter supports reading and writing tags for many formats, so the tags are preserved when converting files. - soundkonverter - https://sourceforge.net/projects/pisilinux/files/source/soundkonverter-3.0.1.tar.gz - - cmake - libkcddb - kio-devel - kinit-devel - ki18n-devel - solid-devel - taglib-devel - ffmpeg-devel - kconfig-devel - kxmlgui-devel - qt5-base-devel - kdesignerplugin - libvorbis-devel - kdoctools-devel - kemoticons-devel - qt5-phonon-devel - cdparanoia-devel - kitemmodels-devel - extra-cmake-modules - kconfigwidgets-devel - kwidgetsaddons-devel - kunitconversion-devel - kdelibs4-support-devel - - multimedia/converter/soundkonverter/pspec.xml - - - soundkonverter - - kio - ki18n - solid - libgcc - taglib - kconfig - kxmlgui - kservice - libkcddb - qt5-base - cdparanoia - qt5-phonon - kcompletion - kcoreaddons - ktextwidgets - kconfigwidgets - knotifications - kwidgetsaddons - kdelibs4-support - sox - faac - flac - lame - faad2 - speex - ffmpeg - mplayer - libopus - twolame - wavpack - libvorbis - timidity - fluidsynth - vorbis-tools - - - /usr/bin - /usr/lib - /usr/share - - - - - 2020-03-08 - 3.0.1 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2018-12-03 - 3.0.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - avidemux - http://www.avidemux.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - app:console - multimedia.converter - Simple video editing/encoding tool - Basit bir video düzenleme/kodlama aracı - Avidemux is a video editor designed for simple cutting, filtering and encoding tasks. It supports many file types, including AVI, DVD compatible MPEG files, MP4 and ASF using a variety of codecs. Tasks can be automated using projects, job queue and powerful scripting capabilities. - Avidemux basit kesme, filtreleme ve kodlama işlemleri için tasarlanmış bir video editörüdür. AVI, DVD uyumlu MPEG, MP4 ve ASF de dahil olmak üzere birçok dosya tipi destekliyor. Projeler, iş kuyruğu ve güçlü betik yetenekleri ile birçok işlem otomatikleştirilebiliyor. - avidemux - mirrors://sourceforge/avidemux/avidemux_2.8.0.tar.gz - - qt5-base-devel - qt5-assistant-devel - qt5-designer-devel - qt5-linguist - qt5-qdbusviewer - qt5-multimedia-devel - bash - make - automake - aom-devel - extra-cmake-modules - freetype-devel - lame-devel - xvid-devel - gtk3-devel - mesa-devel - faac-devel - cairo-devel - libva-devel - libXv-devel - ffmpeg-devel - faad2-devel - libvpx-devel - libdca-devel - libsdl-devel - desktop-file-utils - libX11-devel - gettext-devel - yasm-devel - xvid-devel - sqlite-devel - libopus-devel - libxslt-devel - libsamplerate-devel - intltool - lame-devel - libass-devel - x264-devel - x265-devel - libvdpau-devel - yasm-devel - mesa-glu-devel - xvba-video - twolame-devel - libXext-devel - fribidi-devel - alsa-lib-devel - libvorbis-devel - fontconfig-devel - opencore-amr-devel - libfdk-aac-devel - pulseaudio-libs-devel - jack-audio-connection-kit-devel - - - log.diff - qt-5.15.diff - - multimedia/converter/avidemux/pspec.xml - - - avidemux-common - Common files for avidemux - - qt5-base - aom - lame - xvid - faac - ffmpeg - faad2 - libva - libvpx - libdca - desktop-file-utils - x264 - x265 - libvdpau - yasm - mesa-glu - xvba-video - mesa - libglvnd - zlib - libXv - libX11 - sqlite - libopus - freetype - twolame - fribidi - alsa-lib - libvorbis - fontconfig - opencore-amr - libfdk-aac - pulseaudio-libs - jack-audio-connection-kit - - - /usr/bin - /usr/share/locale - /usr/share/doc/avidemux - /usr/share/ - /usr/lib - - - - avidemux-devel - Avidemux için geliştirme dosyaları - - avidemux-cli - avidemux-qt - - - /usr/include/avidemux - - - - avidemux-cli - - avidemux-common - libgcc - - - /usr/bin/avidemux3_cli - /usr/share/man - /usr/lib/libADM_UI_Cli6.so - /usr/lib/libADM_render6_cli.so - /usr/lib/ADM_plugins6/videoFilters/libADM_vf_*Cli.so - /usr/lib/ADM_plugins6/videoFilters/libADM_vf_swscaleResize_cli.so - - - - avidemux-qt - Simple video editing/encoding tool (QT GUI) - - avidemux-common - qt5-base - x264 - x265 - libX11 - libglvnd - libXv - libXext - mesa-glu - - - /usr/bin/avidemux3_qt5 - /usr/share/avidemux6/qt5/i18n - /usr/share/applications/avidemux3-qt.desktop - /usr/lib/libADM_UIQT56.so - /usr/lib/libADM_render6_QT5.so - /usr/lib/ADM_plugins6/videoFilters/libADM_vf_gl*.so - /usr/lib/ADM_plugins6/videoFilters/libADM_vf_*Gl*.so - /usr/lib/ADM_plugins6/videoFilters/qt5/libADM_vf_*QT5.so - /usr/lib/ADM_plugins6/videoEncoders/qt5/libADM_ve_x264_QT5.so - /usr/lib/ADM_plugins6/videoEncoders/qt5/libADM_ve_x265_QT5.so - /usr/lib/ADM_plugins6/scriptEngines/libADM_script_qt.so - /usr/lib/ADM_plugins6/videoFilters/qt5/libADM_vf_swscaleResize_QT5.so - - - avidemux3-qt.desktop - - - - avidemux-help - Avidemux için yardım dosyaları - - avidemux-common - - - /usr/share/avidemux6/help - - - - - 2022-05-25 - 2.8.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-06 - 2.7.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-15 - 2.7.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-08 - 2.7.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-14 - 2.7.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-13 - 2.7.2 - Version Bump. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-09-04 - 2.7.1 - Version Bump. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-05-20 - 2.7.0 - Rebuild ffmpeg. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-04-02 - 2.7.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - mkvtoolnix - http://www.bunkus.org/videotools/mkvtoolnix/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - app:gui - multimedia.converter - A set of tools to create, alter and inspect Matroska files - Matroska dosyalarını yaratmak, değiştirmek ve incelemek için araçlar - MKVToolnix is a set of tools (mkvmerge, mkvinfo and mkvextract) With these tools one can get information about (mkvinfo) Matroska files, extract tracks/data from (mkvextract) Matroska files and create (mkvmerge) Matroska files from other media files. - mkvtoolnix Matroska (MKV) dosyaları ile kullanılmak için bilgi edinme aracı (mkvinfo), veri/iz çıkarmak aracı (mkvextract) ve MKV oluşturma aracı (mkvmerge) içeren araç setidir. - mmg - https://gitlab.com/mbunkus/mkvtoolnix/-/archive/release-61.0.0/mkvtoolnix-release-61.0.0.tar.gz - - file - fmt-devel - gmp-devel - rubygems - flac-devel - zlib-devel - ruby-devel - cmark-devel - boost-devel - docbook-xsl - libpcre2-devel - libogg-devel - libdvdread-devel - qt5-linguist - libxslt-devel - pugixml-devel - libebml-devel - qt5-base-devel - libvorbis-devel - libmatroska-devel - imagemagick-devel - qt5-multimedia-devel - pulseaudio-libs-devel - - multimedia/converter/mkvtoolnix/pspec.xml - - - mkvtoolnix - A set of tools to create, alter and inspect Matroska files - - file - gmp - flac - zlib - cmark - boost - libgcc - libogg - libebml - pugixml - libpcre2 - qt5-base - libvorbis - libdvdread - libmatroska - qt5-multimedia - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/mime - /usr/share/icons - /usr/share/pixmaps - /usr/share/mkvtoolnix - /usr/share/applications - /usr/share/metainfo - /usr/share/locale - - - - - 2021-10-05 - 61.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-29 - 58.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 46.0.0 - Major version bump - Blue Devil - bluedevil@sctzine.com - - - 2020-03-08 - 43.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-06 - 19.0.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-24 - 19.0.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-17 - 19.0.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-17 - 9.7.1 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-04 - 9.5.0 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-08-11 - 9.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 8.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-08 - 8.5.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - uchardet - https://www.freedesktop.org/wiki/Software/uchardet - - PisiLinux Community - admins@pisilinux.org - - MPL - library - multimedia.converter - Encoding detector library ported from Mozilla - Encoding detector library ported from Mozilla - Encoding detector library ported from Mozilla - Encoding detector library ported from Mozilla - https://www.freedesktop.org/software/uchardet/releases/uchardet-0.0.7.tar.xz - - cmake - - multimedia/converter/uchardet/pspec.xml - - - uchardet - - libgcc - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - uchardet-devel - Development files for uchardet - - uchardet - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-04-26 - 0.0.7 - Version bump. - PisiLinux Community - admins@pisilinux.org - - - 2020-01-01 - 0.0.6 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - handbrake - https://handbrake.fr/ - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - app:gui - multimedia.converter - The open source video transcoder. - Çoklu görev destekli video kodlama/düzenleme aracı - HandBrake is a tool for converting video from nearly any format to a selection of modern, widely supported codecs. The program is also used to convert DVDs so they can be viewed on iPods, iPhones and most media players. - Handbrake,Video dosyalarını portatif medya oynatıcıları için düzenleyebilmenin yanısıra çözünürlülük değişimi desteğide sunan özgür video kodlama ve düzenleme aracıdır. - HandBrake - https://github.com/HandBrake/HandBrake/releases/download/1.5.1/HandBrake-1.5.1-source.tar.bz2 - - nasm - meson - cmake - bzip2 - libgcc python3 - intltool - gtk3-devel - lame-devel - x264-devel - x265-devel - zlib-devel - speex-devel - libva-devel - libvpx-devel - libogg-devel - libass-devel - fribidi-devel - libxml2-devel - libopus-devel - numactl-devel - librsvg-devel - jansson-devel - libgudev-devel - gstreamer-devel - libbluray-devel - libnotify-devel - libvorbis-devel - libtheora-devel - fontconfig-devel - gst-plugins-good - at-spi2-core-devel - libsamplerate-devel - libjpeg-turbo-devel - gst-plugins-base-devel - - multimedia/converter/handbrake/pspec.xml - - - handbrake - - xz - gtk3 - lame - x264 - zlib - bzip2 - glib2 - cairo - pango - libva - speex - libass - libogg - libvpx - libgcc - libxml2 - jansson - fribidi - libopus - numactl - freetype - libgudev - gstreamer - libbluray - libnotify - gst-libav - libvorbis - libtheora - gdk-pixbuf - libsamplerate - libjpeg-turbo - gst-plugins-base + keyutils + python3-wheel - /usr/bin - /usr/share/locale - /usr/share - /usr/share/doc + /usr/lib/python3* + /usr/share/doc/python-keyutils - 2022-04-24 - 1.5.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2021-10-27 + 0.6 + Rebuild + Kamil Atlı + suvari@pisilinux.org - 2021-10-19 - 1.4.2 - First build - fury - uglyside@yandex.ru - - - - - - flowblade - https://github.com/jliljebl/flowblade - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app - multimedia.converter - Multitrack non-linear video editor - Multitrack non-linear video editor - Çok kanallı doğrusal olmayan video düzenleyici - Çok kanallı doğrusal olmayan video düzenleyici - https://github.com/jliljebl/flowblade/archive/refs/tags/v2.8.0.3.tar.gz - - python3-devel - desktop-file-utils - python3-setuptools - appstream-glib-devel - - - fedora/flowblade_sys_path.patch - - multimedia/converter/flowblade/pspec.xml - - - flowblade - - mlt6 - gmic - gtk3 - ffmpeg - python3 - librsvg - python-mlt6 - dbus-python3 - frei0r-plugins - python3-numpy - python3-pillow - python3-pygobject3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/metainfo - /usr/share/doc - - - - - 2021-10-28 - 2.8.0.3 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-10-25 - 2.8.0.3 - Rebuild. - PisiLinux Community - admins@pisilinux.org - - - 2021-08-30 - 2.8.0.3 + 2021-09-25 + 0.6 First release - PisiLinux Community - admins@pisilinux.org - - - - - - ffmulticonverter - https://github.com/Ilias95/FF-Multi-Converter - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - app:gui - multimedia.converter - A multi converter. - Bir çoklu dönüştürücü - FF Multi Converter is a simple graphical application that enables you to convert audio, video, image and document files between all popular formats, using and combining other programs. It uses ffmpeg for audio/video files, unoconv for document files (which uses the OpenOffice's UNO bindings) and PIL library for image file conversions. - FF Multi Converter; ses, video, resim ve belge dosya biçimlerini farklı biçimlere dönüştürmek için kullanılabilecek diğer uygulamalara önyüzlük yapan basit bir araçtır. Ses ve video dosyaları için ffmpeg, belge dosyaları için unoconv ve resim dosyaları için PIL kütüphanesi kullanılmaktadır. - ffmulticonverter - mirrors://sourceforge/ffmulticonv/ffmulticonverter-1.8.0.tar.gz - - ffmpeg-devel - gettext-devel - python3-devel - python3-qt5-devel - - - QProgressBar_value_replaced_to_int.patch - - multimedia/converter/ffmulticonverter/pspec.xml - - - ffmulticonverter - - ffmpeg - unoconv - python3-qt5 - imagemagick - - - /usr/bin - /usr/lib - /usr/share/pixmaps - /usr/share/applications - /usr/share/ffmulticonverter - /usr/share/man - /usr/share/doc - - - - - 2021-12-28 - 1.8.0 - Rebuild python. - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-08 - 1.8.0 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-12-03 - 1.8.0 - First release. Kamil Atlı suvari@pisilinux.org @@ -327959,667 +280911,221 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - vcdimager - https://www.gnu.org/software/vcdimager/ + python-netifaces + https://alastairs-place.net/netifaces/ - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - multimedia.converter - VCD and SVCD image file maker and converter - VCD ve SVDC görüntü dosyası oluşturucu ve çevirici - VCDImager is a full-featured mastering suite for authoring, disassembling and analyzing Video CD's and Super Video CD's. The core functionality consists of directly making Video CD BIN/CUE-style CD images from mpeg files. - VCDImager Video CD ve Super Video CD'leri yaratmaya, parçalarına ayırmaya ve analiz etmeye yarayan kapsamlı bir CD görüntüsü yazma uygulamasıdır. En temel özelliği .mpeg dosyalarından direk BIN/CUE uzantılı CD görüntüleri yaratabilmesidir. - http://ftp.gnu.org/gnu/vcdimager/vcdimager-2.0.1.tar.gz - - libcdio-devel - popt-devel - libxml2-devel - - multimedia/converter/vcdimager/pspec.xml - - - vcdimager - - libcdio - popt - libxml2 - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/info - /usr/share/man - - - - vcdimager-devel - Development files for vcdimager - vcdimager için geliştirme dosyaları - - vcdimager - libcdio-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-08 - 2.0.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-05 - 2.0.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.7.24 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 0.7.24 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.7.24 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 0.7.24 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - soundconverter - https://soundconverter.org/ - - fury - uglyside@yandex.ru - - GPLv3 - app:gui - multimedia.converter - GNOME sound converter application. - A simple sound converter application for the GNOME environment. It reads anything the GStreamer library can read, and writes WAV, FLAC, MP3, and Ogg Vorbis files. - https://launchpad.net/soundconverter/trunk/4.0.2/+download/soundconverter-4.0.2.tar.gz - - intltool - gtk3-devel - python3-devel - gstreamer-devel - desktop-file-utils - python3-setuptools - python3-distutils-extra - python3-pygobject3-devel - - - Prevent_crash_when_duration_is_not_known_or_zero.patch - - multimedia/converter/soundconverter/pspec.xml - - - soundconverter - - gtk3 - python3 - gst-libav - gst-plugins-bad - gst-plugins-base - gst-plugins-ugly - gst-plugins-good - python3-setuptools - python3-pygobject3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-10-28 - 4.0.2 - Version bump. - fury - uglyside@yandex.ru - - - 2021-05-18 - 4.0.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-12-04 - 4.0.0 - First build - fury - uglyside@yandex.ru - - - - - - leptonica - http://www.leptonica.org/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:console - multimedia.plugin - Leptonica Library - Leptonica açık kaynaklı görsel işleme ve analiz kitaplığıdır. - An open source C library for efficient image processing and image analysis operations. - Daha verimli görüntü işleme ve görsel çözümleme operasyonları için açık kaynaklı bir C kitaplığıdır. - https://github.com/DanBloomberg/leptonica/archive/1.79.0.tar.gz - - libjpeg-turbo-devel - giflib-devel - libpng-devel - tiff-devel - webp-devel - zlib-devel - - multimedia/plugin/leptonica/pspec.xml - - - leptonica - Software that is broadly useful for image processing and image analysis applications - - libjpeg-turbo - giflib - libpng - webp - tiff - zlib - - - /usr/lib - /usr/share/doc - /usr/bin - - - - leptonica-devel - Development file for leptonica - leptonica için geliştirme dosyaları - leptonica-devel, leptonica için geliştirme dosyaları içerir. - - leptonica - - - /usr/lib/pkgconfig - /usr/include/leptonica - - - - - 2020-01-18 - 1.79.0 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-01-04 - 1.74.4 - Version Bump. - Ali Cengiz Kurt(alick) - alicengizkurt@gmail.com - - - 2017-01-18 - 1.74.1 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - ladspa-sdk - http://www.ladspa.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.plugin - The Linux Audio Developer's Simple Plugin API - Ses geliştiricisinin temel eklenti kütüphanesi - La Linux Audio Developer's Simple Plugin API (LADSPA - L'API de plugin (greffon) simple pour développeurs linux audio) tente de donner aux programmeurs la possibilité d'écrire en C/C++ des processeurs audio simples sous forme de plugin' et les lier dynamiquement à différentes applications hôte. - The Linux Audio Developer's Simple Plugin API (LADSPA) attempts to give programmers the ability to write simple `plugin' audio processors in C/C++ and link them dynamically against a range of host applications - ladspa, Linux üzerinde ses uygulamaları geliştiren programcıların temel ses işleme eklentileri geliştirmelerini ve bu eklentileri bir seri ses uygulaması ile birlikte kullanabilmelerini sağlar. - El Linux Audio Developer's Simple Plugin API (LADSPA) intenta facilitar a programadores la tarea de escribir procesadores simples de audio en C/C++ y enlazarlos dinámicamente con una gama de aplicaciones host. - http://www.ladspa.org/download/ladspa_sdk_1.15.tgz - - ladspa-sdk-1.12-gcc4.patch - fix-memleak-in-plugin-scanning.patch - - multimedia/plugin/ladspa-sdk/pspec.xml - - - ladspa-sdk - - /usr/bin - /usr/lib - /etc - /usr/share/doc/ladspa-sdk - - - 60ladspa - - - - ladspa-sdk-devel - Development files for ladspa-sdk - ladspa-sdk için geliştirme dosyaları - - ladspa-sdk - - - /usr/include - /usr/share/doc/ladspa-sdk/html - - - - - 2020-01-18 - 1.15 - Version bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-07 - 1.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-15 - 1.13 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.13 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 1.13 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - libmpdclient - https://www.musicpd.org/libs/libmpdclient/ - - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org BSD library - multimedia.plugin - C library to implement a MPD client - MPD için istemci geliştirme kitaplığı - Biblioteka kliencka MPD - A stable, documented, asynchronous API library for interfacing MPD in the C, C++ and Objective C languages. - libmpdclient, MPD etkileşimi için C, C++ ve Object C dillerinde kullanılabilen istikrarlı, belgelendirilmiş, asenkron bir kitaplıktır. - Biblioteka do tworzenia klientów demona MPD (Music Player Daemon). - https://musicpd.org/download/libmpdclient/2/libmpdclient-2.20.tar.xz + programming.language.python3 + Portable module to access network interface information in Python + Portable module to access network interface information in Python + https://files.pythonhosted.org/packages/a6/91/86a6eac449ddfae239e93ffc1918cf33fd9bab35c04d1e963b311e347a73/netifaces-0.11.0.tar.gz - meson + python3-devel + python3-setuptools - multimedia/plugin/libmpdclient/pspec.xml + programming/language/python3/python-netifaces/pspec.xml - libmpdclient + python-netifaces - vala - glib2 + python3 - /usr/lib - /usr/share - /usr/share/doc - - - - libmpdclient-devel - libmpdclient için geliştirme dosyaları - Pliki naglowkowe do libmpdclient - - libmpdclient - - - /usr/lib/pkgconfig - /usr/include - /usr/share/vala + /usr/lib/python3.9/site-packages + /usr/share/doc/python-netifaces - - 2021-11-23 - 2.20 - Version bump. - fury - uglyside@yandex.ru - - 2020-12-13 - 2.19 - First Beta release. - fury - uglyside@yandex.ru - - - - - - libchromaprint - https://acoustid.org/chromaprint - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - multimedia.plugin - Chromaprint is the core component of the Acoustid project. - Chromaprint is the core component of the Acoustid project. It's a client-side library that implements a custom algorithm for extracting fingerprints from any audio source. - https://github.com/acoustid/chromaprint/releases/download/v1.5.0/chromaprint-1.5.0.tar.gz - - boost-devel - fftw3-devel - ffmpeg-devel - cmake - - multimedia/plugin/libchromaprint/pspec.xml - - - libchromaprint - - ffmpeg - libgcc - - - /usr/share - /usr/lib - - - - libchromaprint-devel - libchromaprint için geliştirme dosyaları - - libchromaprint - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-30 - 1.5.0 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2020-03-07 - 1.4.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-14 - 1.4.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-14 - 1.4.3 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-04-27 - 1.4.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 1.4.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-03 - 1.4.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-11-17 - 1.3.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-18 - 1.2 + 2022-01-09 + 0.11.0 First release - Osman Erkan - osman.erkan@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - audacious-plugins - https://audacious-media-player.org/ + python-oauthlib + https://python-oauthlib.io + + Kamil Atlı + suvari@pisilinux.org + + BSD + library + programming.language.python3 + A generic, spec-compliant, thorough implementation of the OAuth request-signing logic + A generic, spec-compliant, thorough implementation of the OAuth request-signing logic. + https://files.pythonhosted.org/packages/9e/84/001a3f8d9680f3b26d5e7711e13d5ff92e4b511766a72ac6b4a4e5f06796/oauthlib-3.1.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python-oauthlib/pspec.xml + + + python-oauthlib + + python3 + python3-cryptography + + + /usr/lib/python3.9/site-packages + /usr/share/doc/python-oauthlib + + + + + 2022-01-09 + 3.1.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python-py3c + https://github.com/encukou/py3c + + Kamil Atlı + suvari@pisilinux.org + + MIT + library + programming.language.python3 + py3c helps you port C extensions to Python 3 + It provides a detailed guide, and a set of macros to make porting easy and reduce boilerplate. + https://github.com/encukou/py3c/archive/v1.3.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python-py3c/pspec.xml + + + python-py3c + + python3 + + + /usr/lib/python3* + /usr/share/doc + + + + python-py3c-devel + Development files for python-py3c + + python-py3c + + + /usr/include + /usr/share/pkgconfig/py3c.pc + + + + + 2021-10-22 + 1.3.1 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2021-03-11 + 1.3.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python-setproctitle + https://github.com/dvarrazzo/py-setproctitle + + Kamil Atlı + suvari@pisilinux.org + + BSD + library + programming.language.python3 + Allows a python process to change its process title + Allows a python process to change its process title + https://files.pythonhosted.org/packages/source/s/setproctitle/setproctitle-1.2.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python-setproctitle/pspec.xml + + + python-setproctitle + + python3 + + + /usr/share/doc/python-setproctitle + /usr/lib/python3.9/site-packages + + + + + 2022-01-09 + 1.2.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python3-aiml + https://github.com/ArtificialIntelligenceToolkit/aiml PisiLinux Community admins@pisilinux.org - GPL-2 - data - multimedia.plugin - plugins for audacious - Audacious eklentileri - Zestaw pluginów do Audacious - plugins for audacious - Audacious için eklentiler - Zestaw pluginów do Audacious - https://distfiles.audacious-media-player.org/audacious-plugins-4.1.tar.bz2 + MIT + library + programming.language.python3 + aiml implements an interpreter for AIML + aiml implements an interpreter for AIML + aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. + aiml implements an interpreter for AIML, the Artificial Intelligence Markup Language developed by Dr. Richard Wallace of the A.L.I.C.E. Foundation. It can be used to implement a conversational AI program. + https://github.com/paulovn/python-aiml/archive/0.9.3.tar.gz - meson - cmake - flac-devel - mesa-devel - lame-devel - neon-devel - curl-devel - gtk2-devel - faac-devel - lirc-devel - faad2-devel - cairo-devel - pango-devel - qt5-linguist - libogg-devel - libcue-devel - ffmpeg-devel - libmms-devel - mpg123-devel - libmtp-devel - libxml2-devel - libsdl2-devel - libbs2b-devel - libsoxr-devel - libcddb-devel - wavpack-devel - libbinio-devel - qt5-base-devel - alsa-lib-devel - libnotify-devel - libvorbis-devel - fluidsynth-devel - libsndfile-devel - gdk-pixbuf-devel - libXrender-devel - libmodplug-devel - qt5-x11extras-devel - libXcomposite-devel - libsamplerate-devel - qt5-multimedia-devel - pulseaudio-libs-devel - libcdio-paranoia-devel - jack-audio-connection-kit-devel - libcdio-devel - audacious-devel + python3-devel + python3-setuptools - multimedia/plugin/audacious-plugins/pspec.xml + programming/language/python3/python3-aiml/pspec.xml - audacious-plugins + python3-aiml + aiml implements an interpreter for AIML - neon - gtk2 - faac - curl - flac - zlib - lame - lirc - mesa - glib2 - faad2 - cairo - pango - libcue - ffmpeg - libmms - mpg123 - libmtp - libX11 - libogg - libgcc - libsoxr - libbs2b - wavpack - libxml2 - libcddb - libsdl2 - qt5-base - libglvnd - libbinio - alsa-lib - audacious - libvorbis - libnotify - fluidsynth - gdk-pixbuf - libXrender - libmodplug - libsndfile - qt5-x11extras - libsamplerate - libXcomposite - qt5-multimedia - pulseaudio-libs - libcdio-paranoia - jack-audio-connection-kit - libcdio + python3 - /usr/lib/audacious - /usr/share/audacious - /usr/share/locale - /usr/share/doc + /usr/bin* + /usr/lib/python3* + /usr/share/doc/python3-aiml - - 2022-01-18 - 4.1 - Version bump - fury - uglyside@yandex.ru - - - 2020-03-07 - 3.10.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2018-12-06 - 3.10 + 2022-01-23 + 0.9.3 First release Ali Cengiz Kurt alicengizkurt@gmail.com @@ -328628,78 +281134,578 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - vo-amrwbenc - http://sourceforge.net/projects/opencore-amr/ + python3-aiofiles + https://github.com/Tinche/aiofiles + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + File support for asyncio. + 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://files.pythonhosted.org/packages/06/f0/af90f3fb4066b0707b6a5af3ffd5fd9b3809bbb52f0153a3c7550e594de3/aiofiles-0.7.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-aiofiles/pspec.xml + + + python3-aiofiles + File support for asyncio. + + python3 + + + /usr/share/doc/python3-aiofiles + /usr/share/man + /usr/lib + + + + + 2021-10-28 + 0.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 0.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 0.4.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-alembic + https://bitbucket.org/zzzeek/alembic + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A database migration tool for SQLAlchemy. + 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.7.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-alembic/pspec.xml + + + python3-alembic + A database migration tool for SQLAlchemy. + + python3-setuptools + python3-sqlalchemy + python3-dateutil + python3-editor + python3-mako + python3 + + + /usr/share/doc/python3-alembic + /usr/bin/alembic + /usr/lib/python3* + + + + + 2021-10-28 + 1.7.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-27 + 1.4.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 1.4.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 1.4.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-anytree + https://github.com/c0fec0de/anytree PisiLinux Community admins@pisilinux.org - Apache-2.0 - app:cli - multimedia.video - VisualOn AMR-WB encoder library - VisualOn AMR-WB encoder library - http://sourceforge.net/projects/opencore-amr/files/vo-amrwbenc/vo-amrwbenc-0.1.3.tar.gz - multimedia/video/vo-amrwbenc/pspec.xml + BSD + library + programming.language.python3 + Powerful and Lightweight Python Tree Data Structure + AnyTree için Python bağlayıcıları. + Simple, lightweight and extensible Tree data structure. + python3-anytree, anytree için Python bağlayıcılarını içerir. + https://github.com/c0fec0de/anytree/archive/2.8.0.tar.gz + + python3-setuptools + python3-devel + python3-six + + programming/language/python3/python3-anytree/pspec.xml - vo-amrwbenc + python3-anytree + Powerful and Lightweight Python Tree Data Structure - libvo-amrwbenc + python3-six + python3 - /usr/bin/amrwb-enc + /usr/lib/python3* + /usr/share/doc/python3-anytree + + + 2021-10-22 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 2.8.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-23 + 2.8.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 2.7.3 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + python3-appdirs + https://github.com/ActiveState/appdirs + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". + Platforma özel dizin belirleyebilen küçük bir python3 kitaplığı. + What directory should your app use for storing user data? This small Python module is for determining appropriate platform-specific dirs, e.g. a "user data dir". + python3-appdirs, yazdığınız uygulama kullanıcı verisini nerede saklamalı sorusuna yanıt vermeye çalışan küçük bir python3 kitaplığıdır. + https://pypi.org/packages/source/a/appdirs/appdirs-1.4.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-appdirs/pspec.xml + - libvo-amrwbenc - - /usr/lib - /usr/share/doc - - - - libvo-amrwbenc-devel + python3-appdirs + A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". - libvo-amrwbenc + python3 - /usr/include - /usr/lib/pkgconfig/vo-amrwbenc.pc + /usr/share/doc/python3-appdirs + /usr/lib/python3* + + + + + 2021-10-28 + 1.4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 1.4.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-24 + 1.4.3 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-astroid + https://github.com/PyCQA/astroid + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Useful miscellaneous modules used by Logilab projects. + Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller. + python3-astrid provides a common base representation of python source code. It is currently the library powering pylint’s capabilities. + python3-astroid, Logilab projeleri tarafından kullanılan kullanışlı çeşitli modüller içerir. Pylınt yeteneklerini artırır. + https://github.com/PyCQA/astroid/archive/refs/tags/v2.8.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-astroid/pspec.xml + + + python3-astroid + Useful miscellaneous modules used by Logilab projects. + + python3 + python3-six + python3-wrapt + python3-setuptools + python3-lazy-object-proxy + + + /usr/share/doc/ + /usr/lib/python3* + + + python3-logilab-astng + + + python3-logilab-astng + + + + + 2021-10-13 + 2.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 2.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 2.4.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-atomicwrites + https://github.com/untitaker/python-atomicwrites + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Powerful Python library for atomic file writes. + Atomik dosya yazma için çok güçlü python kitaplığı. + python3-atomicwrites provides powerful Python library for atomic file writes. + python3-atomicwrites, atomik dosya yazma için çok güçlü python kitaplığı sunar. + https://github.com/untitaker/python-atomicwrites/archive/1.4.0.tar.gz + + python3-setuptools + python3-devel + python3-pytest + python3-iniconfig + + programming/language/python3/python3-atomicwrites/pspec.xml + + + python3-atomicwrites + Powerful Python library for atomic file writes. + + python3 + + + /usr/share/doc/python3-atomicwrites + /usr/lib/python3* + + + + + 2021-10-28 + 1.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 1.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 1.3.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-attrs + https://www.attrs.org/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python Classes Without Boilerplate + Şablonsuz python sınıfları. + attrs is the Python package that will bring back the joy of writing classes by relieving you from the drudgery of implementing object protocols (aka dunder methods). + python3-attrs, şablonsuz python sınıfları içerir. bu sayede daha hızlı ve karmaşık olmayan kod yazmanızı sağlar. + https://files.pythonhosted.org/packages/ed/d6/3ebca4ca65157c12bd08a63e20ac0bdc21ac7f3694040711f9fd073c0ffb/attrs-21.2.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-attrs/pspec.xml + + + python3-attrs + Python Classes Without Boilerplate + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-attrs + + + + + 2021-10-22 + 21.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 21.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 3020-09-23 + 20.2.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-13 + 19.3.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-Babel + https://babel.pocoo.org + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + A collection of tools for internationalizing Python applications + Python uygulamalarını uluslararasılaştırmak için bir takım koleksiyonu + Babel is composed of two major parts: 1) tools to build and work with gettext message catalogs , 2) a Python interface to the CLDR (Common Locale Data Repository), providing access to various locale display names, localized number and date formatting, etc. + Babel temelde iki parçadan oluşur: 1) gettext mesaj kataloglarıyla çalışmak ve onları derlemek için araçlar 2) CLDR(Common Locale Data Repository), Genel Yerel Veri Deposuna, çeşitli yerel gösterim isimlerine ulaşımı sağlamak, yerelleştirilmiş numara ve tarih biçimlerini desteklemek gibi özellikler sağlayan bir python arayüzü. + https://github.com/python-babel/babel/archive/v2.9.1.tar.gz + https://www.unicode.org/Public/cldr/37/core.zip + + python3-setuptools + python3-devel + python3-pytz + + programming/language/python3/python3-Babel/pspec.xml + + + python3-Babel + A collection of tools for internationalizing Python applications + + python3-pytz + python3 + + + /usr/share/doc/python3-Babel + /usr/lib/python3* + /usr/bin + + + + + 2021-10-22 + 2.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-23 + 2.8.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 2.7.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-01-28 + 2.6.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python3-backports-ssl-match-hostname + https://pypi.python.org/pypi/backports.ssl_match_hostname + + Alihan Öztürk + alihan@pisilinux.org + + PSF-2.2 + library + programming.language.python3 + The ssl.match_hostname() function from Python 3.7 + Python3.7 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamı + The ssl.match_hostname() function from Python 3.7 + python3-backports-ssl-match-hostname, Python3.7 den geriye dönüklüğü sağlamak için ssl.match_hostname() yordamını sağlar. + https://files.pythonhosted.org/packages/ff/2b/8265224812912bc5b7a607c44bf7b027554e1b9775e9ee0de8032e3de4b2/backports.ssl_match_hostname-3.7.0.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-backports-ssl-match-hostname/pspec.xml + + + python3-backports-ssl-match-hostname + The ssl.match_hostname() function from Python 3.7 + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-backports-ssl-match-hostname - 2020-01-18 - 1.3 - Rebuild + 2021-10-22 + 3.7.0.1 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2018-08-02 - 1.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2019-12-30 + 3.7.0.1 + Built w/ py3.8 and version bump. + Blue Devil + bluedevil@sctzine.com - 2017-02-11 - 1.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2018-08-19 + 3.5.0.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2017-02-01 + 3.5.0.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2014-05-27 - 1.3 + 2016-06-15 + 3.4.0.2 First release Alihan Öztürk alihan@pisilinux.org @@ -328708,675 +281714,541 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gstreamer - https://gstreamer.freedesktop.org/ + python3-backports.functools_lru_cache + https://github.com/jaraco/backports.functools_lru_cache + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Backport of functools.lru_cache from Python 3.3 + 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.4.tar.gz + + pip3 + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-backports.functools_lru_cache/pspec.xml + + + python3-backports.functools_lru_cache + Backport of functools.lru_cache from Python 3.3 + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-backports.functools_lru_cache + + + + + 2021-10-28 + 1.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-24 + 1.6.1 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-bcrypt + https://github.com/pyca/bcrypt + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Modern(-ish) password hashing for your software and your servers + 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.2.0.tar.gz + + python3-setuptools + python3-devel + pip3 + + programming/language/python3/python3-bcrypt/pspec.xml + + + python3-bcrypt + Modern(-ish) password hashing for your software and your servers + + python3-cffi + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-bcrypt + + + + + 2021-10-28 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-13 + 3.1.7 + Rebuilt and split packages + Blue Devil + bluedevil@sctzine.com + + + 2019-11-07 + 3.1.7 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-beaker + https://github.com/bbangert/beaker PisiLinux Community admins@pisilinux.org - LGPLv2.1 + BSD library - app:console - multimedia.video - GStreamer streaming media framework runtime - GStreamer ses yayın altyapısı - 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.20.2.tar.xz + programming.language.python3 + A Session and Caching library with WSGI Middleware + Oturum ve önbellekleme kitaplığı + python3-beaker is a web session and general caching library that includes WSGI middleware for use in web applications. + python3-beaker, web programları için oturum ve genel önbellekleme fonksiyonlarını içeren bir kitaplıktır. + https://github.com/bbangert/beaker/archive/1.11.0.tar.gz - meson - gobject-introspection-devel - libunwind-devel - bash-completion python3-devel - libxml2-devel - elfutils-devel - libcap-devel - glib2-devel - gsl-devel - gmp-devel - valgrind - zlib-devel - xz-devel + python3-setuptools - multimedia/video/gstreamer/pspec.xml + programming/language/python3/python3-beaker/pspec.xml - gstreamer - - glib2 - libcap - elfutils - libunwind - + python3-beaker - /usr/bin - /usr/lib/libgstbase* - /usr/lib/libgstcheck* - /usr/lib/libgstcontroller* - /usr/lib/libgstnet* - /usr/lib/libgstreamer* - /usr/lib/gstreamer-1.0 - /usr/lib/girepository-1.0 - /usr/libexec - /usr/share/gir-1.0 - /usr/share/bash-completion + /usr/lib/ /usr/share/doc - /usr/share/locale - /usr/share/gstreamer-1.0/gdb - /usr/share/gdb/auto-load/usr/lib/libgstreamer-1.0.so.0.2002.0-gdb.py - /usr/share/man - - gstreamer-next - - - - gstreamer-32bit - 32-bit shared libraries for gstreamer - gstreamer için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - glib2-32bit - libcap-32bit - elfutils-32bit - libunwind-32bit - - - glib2-32bit - elfutils-32bit - libunwind-32bit - gstreamer - - - /usr/lib32/libgstbase* - /usr/lib32/libgstcheck* - /usr/lib32/libgstcontroller* - /usr/lib32/libgstnet* - /usr/lib32/libgstreamer* - /usr/lib32/gstreamer-1.0 - /usr/share/gdb/auto-load/usr/lib32/libgstreamer-1.0.so.0.2002.0-gdb.py - - - gstreamer-next-32bit - - - - gstreamer-devel - Development files for gstreamer - gstreamer için geliştirme dosyaları - - gstreamer - libunwind-devel - elfutils-devel - glib2-devel - zlib-devel - xz-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - /usr/share/aclocal - - - gstreamer-next-devel - - - 2022-05-11 - 1.20.2 + + 2021-10-22 + 1.11.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2020-01-08 + 1.11.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-04-08 + 1.10.1 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-28 + 1.10.0 + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + python3-beautifulsoup4 + https://www.crummy.com/software/BeautifulSoup/index.html + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + HTML/XML parser for quick-turnaround applications like screen-scraping + 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.10.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-beautifulsoup4/pspec.xml + + + python3-beautifulsoup4 + HTML/XML parser for quick-turnaround applications like screen-scraping + + python3 + python3-soupsieve + + + /usr/lib/python3* + /usr/share/doc/python3-beautifulsoup4 + + + + + 2021-10-28 + 4.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-19 + 4.9.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-08 + 4.9.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 4.8.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-24 + 4.8.1 + Rebuilt, split packages and fix dependency + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-21 + 4.8.1 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-05 + 4.4.1 + Version bump. + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2013-11-05 + 4.3.2 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2013-09-04 + 4.3.1 + First release + Fatih Turgel + hitaf@pisilinux.org + + + + + + python3-blinker + https://github.com/jek/blinker + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A fast Python in-process signal/event dispatching system. + Python için hızlı bir proses-içi sinyal/olay dağıtım dizimi + Blinker provides a fast dispatching system that allows any number of interested parties to subscribe to events, or "signals". + python3-blinker, istekli/ilgili partilerin olay veya sinyallere kaydolmasına izin veren hızlı bir dağıtım dizimi sağlar. + https://github.com/jek/blinker/archive/rel-1.4.tar.gz + + python3-setuptools + python3-devel + python3-nose + + programming/language/python3/python3-blinker/pspec.xml + + + python3-blinker + A fast Python in-process signal/event dispatching system. + + python3 + + + /usr/share/doc/python3-blinker + /usr/lib/python3* + + + + + 2021-10-25 + 1.4 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2020-02-12 + 1.4 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-breathe + https://github.com/michaeljones/breathe + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + ReStructuredText and Sphinx bridge to Doxygen. + Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü. + python3-breathe is an extension to reStructuredText and Sphinx to be able to read and render the Doxygen xml output. + python3-breathe, Doxygene, ReStructuredText ve Sphinx köprüsü sağlayan python modülü sunar. + https://github.com/michaeljones/breathe/archive/v4.31.0.tar.gz + + python3-devel + python3-sphinx + python3-setuptools + + programming/language/python3/python3-breathe/pspec.xml + + + python3-breathe + ReStructuredText and Sphinx bridge to Doxygen. + + python3 + python3-sphinx + python3-setuptools + + + /usr/share/doc/ + /usr/lib/python3* + /usr/bin/breathe-apidoc + + + + + 2021-10-26 + 4.31.0 Version bump Mustafa Cinasal muscnsl@gmail.com - - 2022-04-13 + + 2020-09-24 + 4.22.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-bs4 + https://www.crummy.com/software/BeautifulSoup/index.html + + PisiLinux Community + admins@pisilinux.org + + custom:unknown + library + programming.language.python3 + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. g + The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. + The official name of PyPI’s Beautiful Soup Python package is beautifulsoup4. This package ensures that if you type pip install bs4 by mistake you will end up with Beautiful Soup. + https://files.pythonhosted.org/packages/source/b/bs4/bs4-0.0.1.tar.gz + + python3-devel + python3-setuptools + python3-beautifulsoup4 + + programming/language/python3/python3-bs4/pspec.xml + + + python3-bs4 + This is a dummy package managed by the developer of Beautiful Soup to prevent name squatting. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-bs4 + + + + + 2022-01-23 + 0.0.1 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-cairo + http://cairographics.org/pycairo + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python3 + wrapper (version enrobée) Python3 de la librairie de graphisme vectoriel cairo. + Python3 wrapper for cairo graphics library + Cairo vektörel grafik kitaplığı için Python3 bağlayıcıları + Pycairo is set of Python3 bindings for the cairo graphics library. + python3-cairo, Cairo vektörel grafik kitaplığı için Python bağlayıcıları sunar. + https://github.com/pygobject/pycairo/archive/v1.20.1.tar.gz + + python3-devel + cairo-devel + + programming/language/python3/python3-cairo/pspec.xml + + + python3-cairo + Python3 wrapper for cairo graphics library + + python3 + cairo + + + /usr/lib + /usr/share/doc + + + + python3-cairo-devel + Development files for python3-cairo + python3-cairo için geliştirme dosyaları + python3-cairo-devel, python3-cairo için geliştirme dosyalarını içerir. + + python3-cairo + cairo-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/pkgconfig + + + + + 2021-10-22 1.20.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - 2020-01-11 - 1.16.2 - Version bump - Kamil Atlı - suvari@pisilinux.org + 2020-02-18 + 1.19.1 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2019-10-05 - 1.16.1 + 2020-01-29 + 1.19.0 Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Blue Devil + bluedevil@sctzine.com - 2019-04-24 - 1.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com + 2020-01-07 + 1.18.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2018-12-16 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2018-07-31 + 1.17.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2018-09-28 - 1.12.4 - Version Bump. + 2018-02-25 + 1.16.2 + Version Bump Pisi Linux Community admin@pisilinux.org - 2017-02-17 - 0.10.36 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.10.36 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 0.10.36 - Release bump - Hakan Yıldız - hknyldz93@gmail.com - - - 2015-06-26 - 0.10.36 - First release - Hakan Yıldız - hknyldz93@gmail.com - - - - - - vamp-plugin-sdk - https://www.vamp-plugins.org/ - - Mustafa Cinasal - muscnsl@gmail.com - - BSD - library - multimedia.video - Vamp ses analizi eklenti sistemi - Vamp ses analizi eklenti sistemi - Vamp ses analizi eklenti sistemi - Vamp ses analizi eklenti sistemi - https://github.com/c4dm/vamp-plugin-sdk/archive/vamp-plugin-sdk-v2.8.tar.gz - - libsndfile-devel - - multimedia/video/vamp-plugin-sdk/pspec.xml - - - vamp-plugin-sdk - - libgcc - libsndfile - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - vamp-plugin-sdk-devel - - vamp-plugin-sdk - - - /usr/lib/pkgconfig - /usr/include - - - - - 2020-01-17 - 2.8 - Version bump - Idris Kalp - idriskalp@gmail.com - - - 2018-08-05 - 2.7.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-27 - 2.7.1 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - ffmpeg - http://ffmpeg.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - GPLv3 - LGPLv2 - LGPLv3 - app:console - multimedia.video - A command-line tool to record, convert and stream audio and video - FFmpeg ses ve görüntü dosyalarını kaydedebilen, dönüştürebilen ve açabilen yazılımdır - FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu - FFmpeg is a complete solution to record, convert and stream audio and video. - FFmpeg ses ve görüntü dosyalarını kaydedebilen,dönüştürebilen ve açabilen komple bir çözüm. libavcodec ve birçok popüler ses/görüntü codeclerini içerir. - FFmpeg to kompletne rozwiązanie nagrywania, konwersji i transmisji strumieni dźwięku i obrazu. Jest to działające z linii poleceń narzędzie do konwersji obrazu z jednego formatu do innego. Obsługuje także przechwytywanie i kodowanie w czasie rzeczywistym z karty telewizyjnej. - https://ffmpeg.org/releases/ffmpeg-4.4.2.tar.xz - - srt-devel - freetype-devel - fontconfig-devel - lame-devel - cairo-devel - xz-devel - x264-devel - x265-devel - xavs-devel - xavs2-devel - ffnvcodec - libbs2b-devel - libavc1394-devel - libraw1394-devel - svt-av1-devel - libdrm-devel - libmfx-devel - rav1e-devel - dav1d-devel - davs2-devel - aom-devel - libva-devel - libsdl2-devel - libvpx-devel - libass-devel - libopus-devel - libilbc-devel - codec2-devel - libfdk-aac-devel - libgme-devel - lensfun-devel - libiec61883-devel - kvazaar-devel - libopenmpt-devel - librsvg-devel - rubberband-devel - shine-devel - flite-devel - libsoxr-devel - snappy-devel - vid.stab-devel - libxcb-devel - libzimg-devel - openal-devel - alsa-lib-devel - libvdpau-devel - libtheora-devel - libvorbis-devel - celt-devel - gsm-devel - libbluray-devel - opencore-amr-devel - libmodplug-devel - pulseaudio-libs-devel - openjpeg2-devel - frei0r-plugins-devel - rtmpdump-devel - speex-devel - yasm-devel - libv4l-devel - pkgconfig - libvo-amrwbenc-devel - xvid-devel - libdc1394-devel - libcdio-paranoia-devel - libXv-devel - wavpack-devel - webp-devel - ladspa-sdk-devel - libaribb24-devel - jack-audio-connection-kit-devel - twolame-devel - fribidi-devel - libxml2-devel - opencl-icd-devel - openssl-devel - libomxil-bellagio-devel - zeromq-devel - - - fix-vmaf-model-path.patch - - multimedia/video/ffmpeg/pspec.xml - - - ffmpeg - - srt - gsm - celt - lame - x264 - x265 - xvid - zlib - bzip2 - speex - libva - libXv - libX11 - libsdl2 - libv4l - libvpx - libxcb - libass - libopus - libXext - alsa-lib - freetype - libvdpau - openjpeg2 - xz - cairo - glib2 - xavs - xavs2 - libbs2b - libavc1394 - libraw1394 - svt-av1 - libdrm - libmfx - rav1e - dav1d - davs2 - aom - libva - libsdl2 - libvpx - libass - libopus - libilbc - codec2 - libfdk-aac - libgme - lensfun - libiec61883 - kvazaar - libopenmpt - librsvg - rubberband - shine - flite - libsoxr - snappy - vid.stab - libxcb - libzimg - openal - rtmpdump - libbluray - libdc1394 - libtheora - libvorbis - fontconfig - libmodplug - libvo-aacenc - opencore-amr - libvo-amrwbenc - pulseaudio-libs - libcdio-paranoia - wavpack - webp - ladspa-sdk - libaribb24 - jack-audio-connection-kit - twolame - fribidi - libxml2 - opencl-icd - openssl - libomxil-bellagio - zeromq - - - /etc - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/ffmpeg - - - - ffmpeg-devel - Development files for ffmpeg - ffmpeg için geliştirme dosyaları - Pliki nagłówkowe ffmpeg - - ffmpeg - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-19 - 4.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-30 - 4.4.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-12 - 4.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-04 - 4.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-28 - 4.2.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-08 - 4.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-16 - 4.2.2 - Rebuild. - Mustafa Cinasal - muscnslp@gmail.com - - - 2020-01-22 - 4.2.2 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-10-14 - 4.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 4.1.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-22 - 4.1.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-28 - 4.0.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-19 - 4.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-05 - 4.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 3.4.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 3.3.6 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-13 - 3.3.6 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-04 - 3.3.6 + 2018-01-31 + 1.15.4 Version Bump Mustafa Cinasal muscnsl@gmail.com - - 2017-02-17 - 3.2.4 - Version bump. - Alihan Öztürk - alihan@pisilinux.org - - 2016-06-13 - 3.0.2 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2017-02-16 + 1.10.0 + Release Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org 2016-06-09 - 2.8.6 + 1.10.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-02-16 - 2.8.6 + 2016-05-08 + 1.10.0 First release Alihan Öztürk alihan@pisilinux.org @@ -329385,134 +282257,1034 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - vmaf - https://github.com/netflix/vmaf/ + python3-certifi + https://certifi.io/ - Idris KALP - idriskalp@gmail.com + Blue DeviL + bluedevil@sctzine.com - Apache + MPL-2.0 library - multimedia.video - Perceptual video quality assessment algorithm based on multi-method fusion - VMAF is a perceptual video quality assessment algorithm developed by Netflix. VMAF Development Kit (VDK) is a software package that contains the VMAF algorithm implementation, as well as a set of tools that allows a user to train and test a custom VMAF model. - https://github.com/Netflix/vmaf/archive/v1.3.15.tar.gz - multimedia/video/vmaf/pspec.xml + programming.language.python3 + Python3 package for providing Mozilla's CA Bundle + Certifi, Mozillanın sertifikalarını sağlayan python3 kitaplığıdır. + Certifi is a carefully curated collection of Root Certificates for validating the trustworthiness of SSL certificates while verifying the identity of TLS hosts. + Certifi, TLS sahiplerinin SSL sertifikalarını doğrulanmasını sağlayan, kök sertifikalarının toplandığı bir kitaplıktır. + https://pypi.org/packages/source/c/certifi/certifi-2021.5.30.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-certifi/pspec.xml - vmaf + python3-certifi + certifi module for python3 - libgcc + python3 - /usr/bin - /usr/share/doc - /usr/share - - - - vmaf-devel - - /usr/lib - /usr/include - /usr/lib/pkgconfig + /usr/lib/python3* + /usr/share/doc/python3-certifi + + 2021-10-22 + 2021.5.30 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 2020.6.20 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 2020.4.5.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-11 + 2019.11.28 + Rebuilt. + Blue DeviL + bluedevil@sctzine.com + - 2019-10-27 - 1.3.15 - First Release - Idris KALP - idriskalp@gmail.com + 2019-12-07 + 2019.9.11 + First release + Blue DeviL + bluedevil@sctzine.com - libmatroska - http://www.matroska.org/ + python3-cffi + https://cffi.readthedocs.io/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Foreign Function Interface for Python calling C code + Python3 için C kodu çağıran dış fonksiyon arayüzü. + Foreign Function Interface for Python calling C code + python3-cffi, python3 için C kodu çağıran dış fonksiyon arayüzü sunar. + https://foss.heptapod.net/pypy/cffi/-/archive/v1.14.6/cffi-v1.14.6.tar.gz + + python3-setuptools + python3-devel + libffi-devel + + programming/language/python3/python3-cffi/pspec.xml + + + python3-cffi + Foreign Function Interface for Python calling C code + + python3-six + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-cffi + + + + + 2021-10-22 + 1.14.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-08 + 1.14.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-11 + 1.13.2 + Rebuilt and split packages + Blue Devil + bluedevil@sctzine.com + + + 2019-11-07 + 1.13.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-chardet + https://github.com/chardet/chardet + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app + programming.language.python3 + Chardet: The Universal Character Encoding Detector + Chardet: Evrensel Karakter Kodlaması Bulucusu(The Universal Character Encoding Detector) + Character encoding auto-detection in Python. As smart as your browser. Open source. + python3-chardet, python3 ile karakter kodlaması yapabilmeyi sağlayan ve karakter kodlamasını otomatik bulabilmeyi saglayan bir python3 bağlayıcısıdır. + https://github.com/chardet/chardet/archive/4.0.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-chardet/pspec.xml + + + python3-chardet + Chardet: The Universal Character Encoding Detector + + python3 + + + /usr/bin/chardetect + /usr/lib/python3* + /usr/share/doc/python3-chardet + + + + + 2021-10-22 + 4.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-24 + 3.0.4 + Rebuilt w/ py3.8. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-29 + 3.0.4 + First release. + PisiLinux Community + admins@pisilinux.org + + + 2018-05-22 + 3.0.4 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + python3-charset-normalizer + https://pypi.org/project/charset-normalizer/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.language.python3 + Like Chardet. Package for encoding language detection. Charset detection + Like Chardet. Package for encoding language detection. Charset detection + Like Chardet. Package for encoding language detection. Charset detection + Like Chardet. Package for encoding language detection. Charset detection + https://files.pythonhosted.org/packages/e7/4e/2af0238001648ded297fb54ceb425ca26faa15b341b4fac5371d3938666e/charset-normalizer-2.0.4.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-charset-normalizer/pspec.xml + + + python3-charset-normalizer + + python3 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-10-14 + 2.0.4 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2021-10-22 + 2.0.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-colorama + https://pypi.python.org/pypi/colorama + + Alihan Öztürk + alihan@pisilinux.org + + BSD + library + programming.language.python3 + Cross-platform colored terminal text. + Uçbirim metinlerini renklendirebilen python3 modülüdür. + Python API for cross-platform colored terminal text. + python-colorama, uçbirim metinlerini renklendirebilen python3 modülüdür. + https://github.com/tartley/colorama/archive/0.4.4.tar.gz + + python3-devel + + programming/language/python3/python3-colorama/pspec.xml + + + python3-colorama + Cross-platform colored terminal text. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-colorama + + + + + 2021-10-22 + 0.4.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-24 + 0.4.3 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-29 + 0.3.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-26 + 0.3.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 0.3.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.3.7 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-commonmark + https://pypi.org/project/commonmark/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + programming.language.python3 + Python parser for the CommonMark Markdown spec + Python parser for the CommonMark Markdown spec + CommonMark Markdown spesifikasyonu için Python ayrıştırıcısı + CommonMark Markdown spesifikasyonu için Python ayrıştırıcısı + https://files.pythonhosted.org/packages/60/48/a60f593447e8f0894ebb7f6e6c1f25dafc5e89c5879fdc9360ae93ff83f0/commonmark-0.9.1.tar.gz + + python3-devel + python3-future + python3-sphinx + python3-setuptools + + programming/language/python3/python3-commonmark/pspec.xml + + + python3-commonmark + + python3 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-25 + 0.9.1 + Rebuild + Pisi Linux Admins + admin@pisilinux.org + + + 2021-05-16 + 0.9.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-configobj + https://github.com/DiffSK/configobj + + fury + uglyside@yandex.ru + + BSD + library + programming.language.python3 + An ini file round tripper. + Ayar(ini) dosyalarını okuyup yazabilen python modülü + ConfigObj is a simple but powerful config file reader and writer. + python3-configobj, basit ama güçlü bir ayar dosyaları okuyup yazabilen bir python modülüdür. + https://files.pythonhosted.org/packages/source/c/configobj/configobj-5.0.6.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-configobj/pspec.xml + + + python3-configobj + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2021-11-04 + 5.0.6 + First build. + fury + uglyside@yandex.ru + + + + + + python3-contextlib2 + https://github.com/jazzband/contextlib2 + + Blue Devil + bluedevil@sctzine.com + + PSF + library + programming.language.python3 + contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. + contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. + contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. It also serves as a real world proving ground for possible future enhancements to the standard library version. + python-contextlib2, standart python kitaplığının contexlib modülünün geriye dönüklüğünü sağlar. + https://github.com/jazzband/contextlib2/archive/v0.6.0.post1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-contextlib2/pspec.xml + + + python3-contextlib2 + contextlib2 is a backport of the standard library's contextlib module to earlier Python versions. + + python3 + + + /usr/share/doc/python3-contextlib2 + /usr/lib/python3* + + + + + 2021-10-28 + 0.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 0.6.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-cppy + https://github.com/nucleic/cppy + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + A collection of C++ headers which make it easier to write Python C extension modules. + Python3 için C genişleme modülleri yazmayı kolaylaştıran C++ başlıkları. + A small C++ header library which makes it easier to write Python extension modules. The primary feature is a PyObject smart pointer which automatically handles reference counting and provides convenience methods for performing common object operations. + python3-cppy, python3 için C genişleme modülleri yazmayı kolaylaştıran C++ başlıkları sunar. + https://github.com/nucleic/cppy/archive/1.1.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-cppy/pspec.xml + + + python3-cppy + A collection of C++ headers which make it easier to write Python C extension modules. + + python3 + + + /usr/share/doc/python3-cppy + /usr/lib/python3* + + + + + 2021-10-28 + 1.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-29 + 1.1.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-cryptography + https://cryptography.io/ + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Cryptographic recipes for Python3 + Python için kriptografik tarifler. + A package designed to expose cryptographic recipes and primitives to Python developers + 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 + python3-sphinx + python3-sphinx_rtd_theme + + programming/language/python3/python3-cryptography/pspec.xml + + + python3-cryptography + Cryptographic recipes for Python3 + + python3 + python3-cffi + + + /usr/lib/python3* + /usr/share/doc/python3-cryptography/LICENSE + /usr/share/doc/python3-cryptography/README.rst + + + + python3-cryptography-docs + Documentation files for python3-cryptography + python3-cryptography için belgelendirme dosyaları + python3-cryptography-docs, python3-cryptography için belgelendirme dosyaları içerir. + + python3-cryptography + + + /usr/share/doc/python3-cryptography/html + + + + + 2021-10-28 + 3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 3.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-16 + 2.9.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 2.9.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 2.9 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-06 + 2.8 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-cups + http://cyberelk.net/tim/software/pycups PisiLinux Community admins@pisilinux.org GPLv2 library - multimedia.video - Format de conteneur multimédia extensible basé sur EBML. - Extensible multimedia container format based on EBML - EBML üzerine konumlandırılmış genişletilebilir çokluortam taşıyıcısı - Matroska is an extensible open standard Audio/Video container. It aims to become THE standard of multimedia container formats. Matroska is usually found as .mkv files (matroska video) and .mka files (matroska audio). - https://dl.matroska.org/downloads/libmatroska/libmatroska-1.6.3.tar.xz + programming.language.python3 + Python3 interface to the CUPS API + CUPS programlama arayüzü için Python3 desteği + python3-cups contains python3 bindings to wrap the CUPS API. + python3-cups, CUPS programlama arayüzü için Python3 bağlayıcıları içeren bir pakettir. + https://pypi.org/packages/source/p/pycups/pycups-2.0.1.tar.gz - libebml-devel - cmake + cups-devel + python3-devel - multimedia/video/libmatroska/pspec.xml + programming/language/python3/python3-cups/pspec.xml - libmatroska + python3-cups + Python3 interface to the CUPS API - libebml - libgcc + cups + python3 /usr/lib /usr/share/doc - - libmatroska-devel - Development files for libmatroska - libmatroska için geliştirme dosyaları - - libmatroska - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - + + 2021-10-13 + 2.0.1 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-06-29 - 1.6.3 - Version bump. + 2021-09-13 + 2.0.1 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2020-01-19 - 1.5.2 + 2020-05-16 + 2.0.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-15 + 1.9.74 Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-19 + 1.9.74 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 1.9.73 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.9.73 + First Relase. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-curio + https://github.com/dabeaz/curio + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Curio - Concurrent I/O + 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.5.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-curio/pspec.xml + + + python3-curio + Curio - Concurrent I/O + + python3 + + + /usr/share/doc/python3-curio + /usr/share/man + /usr/lib + + + + + 2021-10-28 + 1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-07 + 1.2 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 1.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 1.0 + Ver. bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 0.9 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-cycler + https://github.com/matplotlib/cycler + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + cycler: composable cycles. + cycler: birleştirilebilir döngüler. + python3-cycler provides composable style cycles. + python3-cycler, birleştirilebilir stil döngüler içeren python kitaplığı sunar. + https://github.com/matplotlib/cycler/archive/v0.10.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-cycler/pspec.xml + + + python3-cycler + cycler: composable cycles. + + python3-six + python3 + + + /usr/share/doc/python3-cycler + /usr/lib/python3* + + + + + 2021-10-28 + 0.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 0.10.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-dateutil + https://github.com/dateutil/dateutil + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + python3-dateutil provides powerful extensions to datetime + 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.2.tar.gz + + python3-setuptools-scm + python3-setuptools + python3-devel + + programming/language/python3/python3-dateutil/pspec.xml + + + python3-dateutil + python3-dateutil provides powerful extensions to datetime + + python3-six + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-dateutil + + + + + 2021-10-28 + 2.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-24 + 2.8.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-dbusmock + https://github.com/martinpitt/python-dbusmock + + Berk Çakar + berk2238@hotmail.com + + LGPLv3 + programming.language.python3 + Mock D-Bus objects for tests + Mock D-Bus objects for tests + https://github.com/martinpitt/python-dbusmock/releases/download/0.23.1/python-dbusmock-0.23.1.tar.gz + + dbus-python3 + python-pygobject3 + python3-setuptools + + programming/language/python3/python3-dbusmock/pspec.xml + + + python3-dbusmock + Mock D-Bus objects for tests + + dbus-python3 + python-pygobject3 + + + /usr/lib/python3* + /usr/share/doc + + + + + 2021-08-21 + 0.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-21 + 0.23.0 + First release + Berk Çakar + berk2238@hotmail.com + + + + + + python3-decorator + https://github.com/micheles/decorator + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + Python3 module to simplify the usage of decorators + Dekoratör kullanımını kolaylaştıran python modulü + python-decorator simplifies the usage of decorators for the average programmer. + python3-decorator, ortalama bir Python programcısı için dekoratör kullanımını basitleştirir. + https://github.com/micheles/decorator/archive/5.0.9.tar.gz + + python3-setuptools + python3-nose + + programming/language/python3/python3-decorator/pspec.xml + + + python3-decorator + Python3 module to simplify the usage of decorators + + python3 + + + /usr/share/doc/python3-decorator + /usr/lib/python3* + + + + + 2021-10-22 + 5.0.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 4.4.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-27 + 4.4.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 4.3.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 4.2.1 + Rebuild. Pisi Linux Community admin@pisilinux.org - 2018-08-03 - 1.4.5 + 2017-03-05 + 4.0.11 Rebuild. Pisi Linux Community admin@pisilinux.org - 2017-02-03 - 1.4.5 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2017-01-25 + 4.0.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org 2016-06-09 - 1.4.2 + 4.0.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-08-20 - 1.4.2 + 2015-08-04 + 4.0.2 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -329521,287 +283293,3172 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gst-rtsp-server - https://gitlab.freedesktop.org/gstreamer/gst-rtsp-server + python3-defusedxml + https://pypi.org/project/defusedxml/ Pisi Linux Admins admin@pisilinux.org - LGPLv3 - library - multimedia.video - RTSP server library based on GStreamer - 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.20.2.tar.xz + Python + app + programming.language.python3 + XML bomb protection for Python stdlib modules + XML bomb protection for Python stdlib modules + XML bomb protection for Python stdlib modules + XML bomb protection for Python stdlib modules + https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz - meson python3-devel - glib2-devel - gstreamer-devel - gst-plugins-bad-devel + python3-setuptools - multimedia/video/gst-rtsp-server/pspec.xml + programming/language/python3/python3-defusedxml/pspec.xml - gst-rtsp-server + python3-defusedxml - glib2 - gstreamer - gst-plugins-base + python3 - /usr/lib/libgstrtspserver* - /usr/lib/gstreamer-1.0 - /usr/lib/girepository-1.0 + /usr/lib /usr/share/doc - - gst-rtsp-server-devel - Development files for gst-rtsp-server - - gst-rtsp-server - gstreamer-devel - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2021-10-27 - 1.18.5 - Version bump. + 2021-10-28 + 0.7.1 + Rebuild Mustafa Cinasal muscnsl@gmail.com - 2021-06-24 - 1.18.4 - First release. - Mustafa Cinasal - muscnsl@gmail.com + 2021-04-26 + 0.7.1 + First release + Pisi Linux Admins + admin@pisilinux.org - x264 - http://developers.videolan.org/x264.html + python3-distlib + https://bitbucket.org/pypa/distlib/ - PisiLinux Community - admins@pisilinux.org + Blue Devil + bluedevil@sctzine.com - GPLv2 + PSF library - app:console - multimedia.video - Open source H264/AVC encoder - Açık kaynak kodlu H264/AVC çözücü - x264 is a free library for encoding H264/AVC video streams. - x264 H264/AVC görüntü dosyalarını açmak için kullanılan bir kütüphane - http://ftp.osuosl.org/pub/blfs/conglomeration/x264/x264-20210814.tar.xz + programming.language.python3 + Low-level components of distutils2/packaging. + distutils2/packaging'in düşük seviye bileşenleri. + python3-distlib Low-level parts of packaging/distutils2 which implement the relevant PEPs and which could be used by third-party packaging tools to achieve interoperability, enhanced with additional features for dependency resolution, package resource management and more. + python3-distlib, distutils2/packaging'in düşük seviye bileşenlerini içerir. + https://bitbucket.org/pypa/distlib/get/0.3.1.tar.gz - yasm-devel - l-smash-devel + python3-devel + python3-setuptools - multimedia/video/x264/pspec.xml + programming/language/python3/python3-distlib/pspec.xml - x264 + python3-distlib + Low-level components of distutils2/packaging. - l-smash + python3 - /usr/bin - /usr/lib - - - - x264-devel - Development files for x264 - x264 için geliştirme dosyaları - - x264 - - - /usr/include - /usr/lib/pkgconfig + /usr/lib/python3* + /usr/share/doc/python3-distlib - - 2021-10-30 - 20210814 - Version bump. + + 2021-10-22 + 0.3.1 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2021-05-05 - 20210211 - Version bump. + + 2020-07-22 + 0.3.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-03 + 0.3.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-distro + https://github.com/nir0s/distro + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2+ + app:console + programming.language.python3 + Linux Distribution - a Linux OS platform information API + Python'un platform.linux_distribution() yordamından çok daha özenli ve ayrıntılı, yenilenmiş alternatifi + Linux Distribution - a Linux OS platform information API + python3-distro, Python'un platform.linux_distribution() yordamından çok daha özenli ve ayrıntılı, yenilenmiş alternatifi olabılecek uygulama ve python kitaplığı sunarç + https://github.com/nir0s/distro/archive/v1.5.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-distro/pspec.xml + + + python3-distro + Linux Distribution - a Linux OS platform information API + + python3-setuptools + python3 + + + /usr/share/doc/python3-distro + /usr/bin/distro + /usr/lib/python3* + + + + + 2021-10-22 + 1.5.0 + Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2020-10-14 - 20200819 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + + 2020-04-07 + 1.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - - 2020-01-17 - 20191217 - Version bump - İdris Kalp - idriskalp@gmail.com + + 2020-02-27 + 1.4.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - - 2019-10-10 - 2245.20191010 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-12 - 2245.20190412 + + + + + python3-distutils-extra + https://launchpad.net/python-distutils-extra + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2+ + app:console + programming.language.python3 + Enhancements to the Python build system + Enhancements to the Python build system + https://launchpad.net/python-distutils-extra/trunk/2.39/+download/python-distutils-extra-2.39.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-distutils-extra/pspec.xml + + + python3-distutils-extra + + python3 + + + /usr/share/doc + /usr/lib/python3* + + + + + 2021-10-22 + 2.39 Rebuild Mustafa Cinasal muscnsl@gmail.com - - 2018-07-31 - 2245.20180730 + + 2021-04-11 + 2.39 Rebuild Mustafa Cinasal muscnsl@gmail.com + + 2020-03-23 + 2.39 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-dnspython + https://pypi.org/project/dnspython/ + + Pisi Linux Admins + admin@pisilinux.org + + ISC + app + programming.language.python3 + A DNS toolkit for Python + A DNS toolkit for Python + A DNS toolkit for Python + A DNS toolkit for Python + https://files.pythonhosted.org/packages/13/27/5277de856f605f3429d752a39af3588e29d10181a3aa2e2ee471d817485a/dnspython-2.1.0.zip + + python3-devel + python3-setuptools + python3-ecdsa + python3-idna + python3-pycryptodome + + programming/language/python3/python3-dnspython/pspec.xml + + + python3-dnspython + + python3 + python3-setuptools + python3-ecdsa + python3-idna + python3-pycryptodome + + + /usr/lib + /usr/share/doc + + + + + 2021-10-25 + 2.1.0 + Rebuild + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-20 + 2.1.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-docker-py + https://github.com/dotcloud/docker-py + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python3 + Python client for Docker. + A Python library for the Docker Remote API. It does everything the docker command does, but from within Python – run containers, manage them, pull/push images, etc. + https://github.com/docker/docker-py/archive/1.8.1.tar.gz + + python3-devel + python3-setuptools + python3-websocket-client + python3-six + python3-requests + + programming/language/python3/python3-docker-py/pspec.xml + + + python3-docker-py + Python client for Docker. + + python3 + python3-websocket-client + python3-six + python3-requests + + + /usr/lib + /usr/share/doc + + + - 2018-05-19 - 2245.19052018 - Version bump + 2021-10-22 + 1.8.1 + Rebuild. Mustafa Cinasal - muscnsl@gmail.com + muscnsl@pisilinux.org - 2018-02-18 - 2245.17022018 - Rebuild - Alihan Öztürk - alihan@pisilinux.org + 2020-03-19 + 1.8.1 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2017-09-20 - 2245.12062016 - Rebuild - Alihan Öztürk - alihan@pisilinux.org + 2018-08-19 + 1.8.1 + Version Down to fix gonullu. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-07-22 - 2245.12062016 - Fix relase - Ergün Salman - poyraz76@pisilinux.org + 2017-04-21 + 1.8.1 + Version Down to fix gonullu. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org - 2016-06-13 - 2245.12062016 - Version bump. - Alihan Öztürk - alihan@pisilinux.org + 2017-02-01 + 2.0.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org 2016-06-09 - 2245 + 1.8.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-12-02 - 2245 + 2016-06-06 + 1.8.1 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - dav1d - https://code.videolan.org/videolan/dav1d + python3-ecdsa + https://github.com/warner/python-ecdsa - Mathias Freire - mathiasfreire45@gmail.com + Blue DeviL + bluedevil@sctzine.com - BSD + MIT library - multimedia.video - dav1d is a new AV1 cross-platform decoder, open-source, and focused on speed and correctness. - The goal of this project is to provide a decoder for most platforms, and achieve the highest speed possible to overcome the temporary lack of AV1 hardware decoder. It supports all features from AV1, including all subsampling and bit-depth parameters. In the future, this project will host simple tools or simple wrappings (like, for example, an MFT transform). - http://downloads.videolan.org/pub/videolan/dav1d/0.8.1/dav1d-0.8.1.tar.xz + programming.language.python + ECDSA implementation for Python + Python3 için ECDSA Kriptografi Uygulaması + This is an easy-to-use implementation of ECDSA cryptography (Elliptic Curve Digital Signature Algorithm), implemented purely in Python, released under the MIT license. With this library, you can quickly create keypairs (signing key and verifying key), sign messages, and verify the signatures. The keys and signatures are very short, making them easy to handle and incorporate into other protocols. + Python3 için kolay kullanımlı, MIT lisanslı ECDSA kriptografi (Elliptic Curve Digital Signature Algorithm) modülü. Bu kitaplık ile hızlıca anahtar oluşturabilir (giriş ahahtarı ve doğrulama anahtarı), iletileri imzalayabilir ve imzalarınızı doğrulayabilirsiniz. Anahtar ile imzalar çok kısadır ve diğer protokollere bütünlleştirmek oldukça kolaydır. + https://github.com/warner/python-ecdsa/archive/python-ecdsa-0.17.0.tar.gz - nasm - meson - ninja + python3-devel + python3-setuptools - multimedia/video/dav1d/pspec.xml + programming/language/python3/python3-ecdsa/pspec.xml - dav1d + python3-ecdsa + ECDSA module for python - libgcc + python3-six + python3 - /usr/bin/dav1d - /usr/lib - /usr/share/doc + /usr/lib/python3* + /usr/share/doc/python3-ecdsa + + + 2021-10-25 + 0.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-23 + 0.15 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-21 + 0.14.1 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-01 + 0.13 + First Pisi Release, built with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + python3-editor + https://github.com/fmoo/python-editor + + Blue Devil + bluedevil@sctzine.com + + Apache2.0 + library + programming.language.python3 + Programmatically open an editor, capture the result. + Sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı. + python-editor is a library that provides the editor module for programmatically interfacing with your system's $EDITOR. + python3-editor sistem metin düzenleyiciniz ve programlama arayüzü ile etkileşime geçebilen python kitaplığı sağlar. + https://github.com/fmoo/python-editor/archive/1.0.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-editor/pspec.xml + - dav1d-devel + python3-editor + Programmatically open an editor, capture the result. - dav1d + python3 - /usr/include - /usr/lib/pkgconfig + /usr/lib/python3* + /usr/share/doc/python3-editor - 2021-01-24 - 0.8.1 - Version bump. - fury - uglyside@yandex.ru + 2021-10-25 + 1.0.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2020-01-12 - 0.5.2 + 2020-02-18 + 1.0.4 First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-email-validator + https://github.com/JoshData/python-email-validator + + PisiLinux Community + admins@pisilinux.org + + custom + app + programming.language.python3 + A robust email syntax and deliverability validation library for Python + A robust email syntax and deliverability validation library for Python + Python için sağlam bir e-posta sözdizimi ve teslim edilebilirlik doğrulama kitaplığı + Python için sağlam bir e-posta sözdizimi ve teslim edilebilirlik doğrulama kitaplığı + https://github.com/JoshData/python-email-validator/archive/refs/tags/v1.1.3.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-email-validator/pspec.xml + + + python3-email-validator + + python3 + python3-idna + python3-dnspython + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 1.1.3 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2021-06-29 + 1.1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-enchant + https://github.com/pyenchant/pyenchant + + Blue Devil + bluedevil@sctzine.com + + LGPLv3 + library + programming.language.python3 + Python bindings for the Enchant spellchecking system + Enchant yazım denetleyicisi için hızlı bir Python modulü + python3-enchant is an efficient Python module for Enchant spellchecker. + python3-enchant, Enchant yazım denetleyicisi için hızlı bir Python modulüdür. + https://github.com/pyenchant/pyenchant/archive/v3.2.2.tar.gz + + python3-devel + enchant2-devel + python3-setuptools + + programming/language/python3/python3-enchant/pspec.xml + + + python3-enchant + Python bindings for the Enchant spellchecking system + + python3 + enchant2 + + + /usr/lib/python3* + /usr/share/doc/python3-enchant + + + + + 2021-10-28 + 3.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-22 + 3.1.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 3.1.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 3.0.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-18 + 2.0.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-extras + https://github.com/testing-cabal/extras + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Extra code that should be part of the standard library but isn't. + Standart python kitaplığında olması gereken ama olmayan kodlar. + extras is a set of extensions to the Python standard library, originally written to make the code within testtools cleaner, but now split out for general use outside of a testing context. + python3-extras, standart python kitaplığında olması gereken ama olmayan (testtools) kodları sağlar. + https://github.com/testing-cabal/extras/archive/1.0.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-extras/pspec.xml + + + python3-extras + Extra code that should be part of the standard library but isn't. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-extras + + + + + 2021-10-28 + 1.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-20 + 1.0.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-filelock + https://github.com/benediktschmitt/py-filelock + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A platform independent file lock for Python. + Python için platform bağımsız dosya kilidi. + python3-filelock contains a single module, which implements a platform independent file lock in Python, which provides a simple way of inter-process communication. + python3-filelock, python için platform bağımsız dosya kilidi olan tek bir modül içerir. + https://github.com/tox-dev/py-filelock/archive/refs/tags/3.3.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-filelock/pspec.xml + + + python3-filelock + A platform independent file lock for Python. + + python3 + + + /usr/share/doc/python3-filelock + /usr/lib/python3* + + + + + 2021-10-28 + 3.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-03 + 3.0.12 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-fixtures + https://launchpad.net/python-fixtures + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Python fixtures for testing / resource management. + Test ve kaynak yöçetimi icin python fikstürleri. + python3-fixtures provides python fixtures for testing / resource management. + python3-fixtures, test ve kaynak yönetimi için python fikstürleri sağlar. + https://files.pythonhosted.org/packages/84/be/94ecbc3f2487bd14aa8b44852f498086219b7cc0c8250ee65a03e2c63119/fixtures-3.0.0.tar.gz + + python3-setuptools + python3-devel + python3-pbr + pip3 + + programming/language/python3/python3-fixtures/pspec.xml + + + python3-fixtures + Python fixtures for testing / resource management. + + python3-setuptools + python3-testtools + python3-extras + python3-pbr + python3-six + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-fixtures + + + + + 2021-10-28 + 3.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-20 + 3.0.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask + https://palletsprojects.com/p/flask/ + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + The Python micro framework for building web applications. + Ağ uygulamaları geliştirmek için python mikroçatısı. + Flask is a lightweight WSGI web application framework. It is designed to make getting started quick and easy, with the ability to scale up to complex applications. It began as a simple wrapper around Werkzeug and Jinja and has become one of the most popular Python web application frameworks. + python3-flask, hafif bir WSGI ağ uygulamaları çatısıdır. Flask çabuk ve kolayca, aynı zamanda basitten zora doğru ağ uygulamaları geliştirmek için tasarlanmıştır. + https://github.com/pallets/flask/archive/1.1.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask/pspec.xml + + + python3-flask + The Python micro framework for building web applications. + + python3-itsdangerous + python3-setuptools + python3-werkzeug + python3-Jinja2 + python3-click + python3 + + + /usr/share/doc/python3-flask + /usr/bin/flask + /usr/lib/python3* + + + + + 2021-10-25 + 1.1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 1.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-07 + 1.1.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-14 + 1.1.1 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-babelex + https://github.com/mrjoes/flask-babelex + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + i18n and l10n support for Flask based on Babel and pytz. + Flask uygulamalarınız için Babel ve pytz temelli i18n ve l10n desteği. + Implements i18n and l10n support for Flask. This is fork of the official Flask-Babel extension with additional features. + python3-flask-babelex, flask uygulamalarınız için Babel ve pytz temelli i18n ve l10n desteği sunar. + https://github.com/mrjoes/flask-babelex/archive/0.9.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-babelex/pspec.xml + + + python3-flask-babelex + i18n and l10n support for Flask based on Babel and pytz. + + python3-speaklater + python3-Jinja2 + python3-Babel + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-babelex + + + + + 2021-10-28 + 0.9.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 0.9.4 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-compress + http://pypi.python.org/pypi/Flask-Compress/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Compress responses in your Flask app. + Flask uygulamanızdaki yanıtları sıkıştırır. + Flask-Compress allows you to easily compress your Flask application's responses with gzip. + python3-flask-compress, flask uygulamanızdaki yanıtları gzip kullanarak kolayca sıkıştırmanıza olanak verir. + https://github.com/colour-science/flask-compress/archive/v1.10.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-compress/pspec.xml + + + python3-flask-compress + Compress responses in your Flask app. + + python3-brotli + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-compress + + + + + 2021-10-28 + 1.10.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 1.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-17 + 1.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-14 + 1.4.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-gravatar + https://github.com/zzzsochi/Flask-Gravatar/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Small and simple gravatar usage in Flask. + Flask için küçük ve basit gravatar kullanımı. + python3-flask-gravatar provides small and simple integration gravatar into flask. + python3-flask-gravatar, flask için küçük ve basit gravatar kullanımı sağlar. + https://github.com/zzzsochi/Flask-Gravatar/archive/v0.5.0.tar.gz + + python3-setuptools + python3-devel + pip3 + + programming/language/python3/python3-flask-gravatar/pspec.xml + + + python3-flask-gravatar + Small and simple gravatar usage in Flask. + + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-gravatar + + + + + 2021-10-28 + 0.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 0.5.0 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-login + https://github.com/maxcountryman/flask-login/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Flask user session management. + Flask için kullanıcı oturumu yönetimi. + Flask-Login provides user session management for Flask. It handles the common tasks of logging in, logging out, and remembering your users' sessions over extended periods of time.. + python3-flask-login, flask için kullanıcı oturumu yönetimi kitaplığı sağlar. + https://github.com/maxcountryman/flask-login/archive/0.5.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-login/pspec.xml + + + python3-flask-login + Flask user session management. + + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-login + + + + + 2021-10-28 + 0.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 0.5.0 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-mail + https://github.com/mattupstate/flask-mail + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Flask-Mail adds SMTP mail sending to your Flask applications. + Flask uygulamalarınız için SMTP posta uygulaması. + Flask-Mail is a Flask extension providing simple email sending capabilities. + python3-flask-login, flask uygulamalarınız için SMTP posta uygulaması kitaplığı sağlar. + https://github.com/mattupstate/flask-mail/archive/0.9.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-mail/pspec.xml + + + python3-flask-mail + Flask-Mail adds SMTP mail sending to your Flask applications. + + python3-blinker + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-mail + + + + + 2021-10-28 + 0.9.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 0.9.1 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-migrate + https://github.com/miguelgrinberg/Flask-Migrate/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + SQLAlchemy database migrations for Flask applications using Alembic. + Alembic kullanarak Flask uygulamalarınız için SQLAlchemy veritabanı göç aracı. + Flask-Migrate is an extension that handles SQLAlchemy database migrations for Flask applications using Alembic. The database operations are provided as command-line arguments under the flask db command. + python3-flask-migrate, flask uygulamalarınız için alembic kullanarak sqlalchemy veritabanınızı göç ettirmenizi sağlayan betikleri sunar. + https://github.com/miguelgrinberg/Flask-Migrate/archive/v3.1.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-migrate/pspec.xml + + + python3-flask-migrate + SQLAlchemy database migrations for Flask applications using Alembic. + + python3-alembic + python3-flask + python3 + + + /usr/share/doc/python3-flask-migrate + /usr/lib/python3* + + + + + 2021-10-28 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 3.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-18 + 2.5.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-19 + 2.5.2 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-paranoid + https://github.com/miguelgrinberg/flask-paranoid/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Simple user session protection. + Basit kullanıcı oturumu koruması. + python3-flask-paranoid provides simple user session protection. + python3-flask-paranoid, flask uygulamalarınız basit kullanıcı oturumu koruması kitaplığı sağlar. + https://github.com/miguelgrinberg/flask-paranoid/archive/v0.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-paranoid/pspec.xml + + + python3-flask-paranoid + Simple user session protection. + + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-paranoid + + + + + 2021-10-22 + 0.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 0.2 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-argparse + https://pypi.python.org/pypi/argparse + + Alihan Öztürk + alihan@pisilinux.org + + apache + app:console + programming.language.python3 + Python command-line parsing library + Python için komut satırı çözümleme kitaplığı + The argparse module makes it easy to write user friendly command line interfaces. + python3-argparse, Python için komut satırı çözümleme kitaplığı sunar. + https://pypi.python.org/packages/18/dd/e617cfc3f6210ae183374cd9f6a26b20514bbb5a792af97949c5aacddf0f/argparse-1.4.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-argparse/pspec.xml + + + python3-argparse + Python command-line parsing library + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-argparse + + + + + 2021-10-22 + 1.4.0 + Rebuild py3.9. + Pisi Linux Community + admin@pisilinux.org + + + 2019-12-30 + 1.4.0 + Rebuilt w/ py3.8 and clean. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 1.4.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-01 + 1.4.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.4.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-click + https://palletsprojects.com/p/click/ + + Blue Devil + bluedevil@sctzine.com + + BSD-3 + library + programming.language.python3 + Python3 composable command line interface toolkit + Python3 için komut satırı yaratma arayüzü + Click is a Python package for creating beautiful command line interfaces in a composable way with as little code as necessary. It's the "Command Line Interface Creation Kit". It's highly configurable but comes with sensible defaults out of the box. + Click, python3 için en az komut gerektirecek sekilde tasarlanmış komut satırı arayüzü yaratma paketidir. Açılımı "Command Line Interface Creation Kit - Komut Satırı Arayüzü Yaratma Araç Takımı" olan Click bazı varsayılanlarla beraber gelsede yüksek seviyede ayarlanabilir bir yapıya sahiptir. + https://github.com/pallets/click/archive/8.0.3.tar.gz + + python3-setuptools + python3 + + programming/language/python3/python3-click/pspec.xml + + + python3-click + Python3 composable command line interface toolkit + + python3 + + + /usr/share/doc/python3-click + /usr/lib/python3* + + + + + 2021-10-25 + 8.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 7.1.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 7.1.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-15 + 7.0 + Moved from contrib and rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-06 + 7.0 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-docker + https://github.com/docker/docker-py + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + A Python library for the Docker Engine API. + Docker motoru apileri için python kitaplığı. + A Python library for the Docker Engine API. It lets you do anything the docker command does, but from within Python apps – run containers, manage containers, manage Swarms, etc. + python3-docker, docker motoru apileri için python kitaplığı sunar. + https://github.com/docker/docker-py/archive/5.0.0.tar.gz + + python3-devel + python3-websocket-client + python3-setuptools + python3-requests + python3-six + + programming/language/python3/python3-docker/pspec.xml + + + python3-docker + A Python library for the Docker Engine API. + + python3 + python3-websocket-client + python3-requests + python3-six + + + /usr/lib + /usr/share/doc + + + python3-docker-py + + + + + 2021-10-22 + 5.0.0 + Rebu'ld. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 5.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 5.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 4.10 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-principal + https://github.com/mattupstate/flask-principal + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Identity management for Flask applications. + Flask uygulamaları için kimlik yönetim sistemi. + python3-flask-principal provides identity management for Flask applications. + python3-flask-principal, flask uygulamalarınız için kimlik yönetim sistemi sağlar. + https://github.com/mattupstate/flask-principal/archive/0.4.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-principal/pspec.xml + + + python3-flask-principal + Identity management for Flask applications. + + python3-blinker + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-principal + + + + + 2021-10-22 + 0.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-18 + 0.4.0 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-ifaddr + https://github.com/pydron/ifaddr + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python3 Library to enumerate all network interfaces. + Sistemdeki tüm ağ kartlarının IP addreslerini numaralandırıp sıralayabilen bir python3 kitaplığıdır. + python3-ifaddr is a small Python library that allows you to find all the IP addresses of the computer. + python3-ifaddr, bilgisayarınızda bulunan tüm ağ kartlarının ip adreslerini döndürebilen bir python3 kitaplığıdır. + https://github.com/pydron/ifaddr/archive/0.1.7.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-ifaddr/pspec.xml + + + python3-ifaddr + Python3 Library to enumerate all network interfaces. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-ifaddr + + + + + 2020-07-21 + 0.1.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 0.1.7 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-25 + 0.1.6 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-mako + https://www.makotemplates.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + library + programming.language.python3 + A python3 templating language + Python şablonlama dili + python3-mako is a super-fast templating language that borrows the best ideas from the existing templating languages. + python3-mako, varolan şablonlama dillerindeki en iyi fikirleri bir araya getiren süper hızlı bir şablonlama dilidir. + https://pypi.org/packages/source/m/mako/Mako-1.1.5.tar.gz + + python3-devel + python3-beaker + python3-setuptools + python3-MarkupSafe + + programming/language/python3/python3-mako/pspec.xml + + + python3-mako + A python3 templating language + + python3 + python3-beaker + python3-MarkupSafe + + + /usr/lib + /usr/share/doc + /usr/bin + + + + python3-mako-docs + Documentation files for python3-mako + python3-mako için belgelendirme dosyaları + python3-mako-docs, python3-mako için belgelendirme dosyalarını içerir. + + python3-mako + + + /usr/share/doc/*/html + /usr/share/doc/*/build + /usr/share/doc/*/examples + + + + + 2021-10-29 + 1.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 1.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 1.1.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 1.1.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 1.1.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-08 + 1.1.0 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2019-04-08 + 1.0.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-28 + 1.0.7 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + python3-passlib + https://passlib.readthedocs.io/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Passlib is a password hashing library for Python 2 and 3. + Passlib python 2 ve 3 için parola hashleri kitaplığıdır. + Passlib is a password hashing library for Python 2 and 3, which provides cross-platform implementations of over 30 password hashing algorithms, as well as a framework for managing existing password hashes. It's designed to be useful for a wide range of tasks, from verifying a hash found in /etc/shadow, to providing full-strength password hashing for multi-user application. + python3-passlib, python 2 ve 3 için 30dan fazla parola hashleri algoritmaları kitaplığı sağlar. + https://files.pythonhosted.org/packages/b6/06/9da9ee59a67fae7761aab3ccc84fa4f3f33f125b370f1ccdb915bf967c11/passlib-1.7.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-passlib/pspec.xml + + + python3-passlib + Passlib is a password hashing library for Python 2 and 3. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-passlib + + + + + 2021-10-28 + 1.7.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-19 + 1.7.2 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pycryptodome + https://www.pycryptodome.org/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A self-contained Python package of low-level cryptographic primitives + Düşük seviye kriptografik ilkeler içeren python3 paketidir. + PyCryptodome is a self-contained Python package of low-level cryptographic primitives.PyCryptodome is a fork of PyCrypto. It brings several enhancements with respect to the last official version of PyCrypto (2.6.1) + PyCrypto'dan çatallanan PyCryptodome düşük seviye kriptografik ilkeler içeren bir python3 kitaplığıdır. + https://github.com/Legrandin/pycryptodome/archive/v3.11.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pycryptodome/pspec.xml + + + python3-pycryptodome + A self-contained Python package of low-level cryptographic primitives + + gmp + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pycryptodome + + + + + 2021-10-25 + 3.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 3.9.8 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 3.9.7 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-pytz + https://pythonhosted.org/pytz/ + + PisiLinux Community + admins@pisilinux.org + + MIT + ZPL + library + programming.language.python3 + World Timezone Definitions for Python + Python için Dünya Saat Dilimi(World Time Zone) tanımları + python-pytz brings the Olson tz database into Python. This library allows accurate and cross platform timezone calculations using Python. It also solves the issue of ambiguous times at the end of daylight savings, which you can read more about in the Python Library Reference (datetime.tzinfo).Almost all (over 540) of the Olson timezones are supported. + python3-pytz, Olson tz veritabanını Python'a taşımaktadır. Bu kütüphane Python kullanarak doğru ve farklı platformlar üzerinde hesaplamalar yapmayı sağlar. Aynı zamanda gün ışığından kazanmak için saat ayarlama ile ilgili belirsizlikleri de çözmektedir. Bu konuda Python Library Reference (datetime.tzinfo) kısmında ayrıntılı bilgi bulabilirsiniz. 540'a yakın Olson zaman dilimi desteklenmektedir. + https://pypi.org/packages/source/p/pytz/pytz-2021.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pytz/pspec.xml + + + python3-pytz + World Timezone Definitions for Python + + python3 + + + /usr/lib + /usr/share/doc/python3-pytz + + + + + 2021-10-22 + 2021.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 2020.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-27 + 2019.3 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-01-29 + 2018.4 + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + python3-simplejson + https://github.com/simplejson/simplejson + + Blue Devil + bluedevil@sctzine.com + + AFL + MIT + library + programming.language.python3 + Simple, fast, extensible JSON encoder/decoder for Python. + Python için hızlı, genisletilebilir, basit bir JSON kodlayıcı/çozücü kitaplık. + simplejson is a simple, fast, complete, correct and extensible JSON (http://json.org) encoder and decoder for Python 3.3+ with legacy support for Python 2.5+. It is pure Python code with no dependencies, but includes an optional C extension for a serious speed boost. + Python için hızlı, genisletilebilir, basit bir JSON kodlayıcı/çozücü kitaplık modülü sunar. + https://github.com/simplejson/simplejson/archive/v3.17.5.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-simplejson/pspec.xml + + + python3-simplejson + Simple, fast, extensible JSON encoder/decoder for Python. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-simplejson + + + + + 2021-10-28 + 3.17.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 3.17.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-24 + 3.17.0 + First Pisi Release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-jsmath + https://github.com/sphinx-doc/sphinxcontrib-jsmath + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx extension which renders display math in HTML via JavaScript. + python3-sphinxcontrib-jsmath, javascript kullanarak html içerisinde matematiksel karakterlerin görüntülenmesini sağlar. + sphinxcontrib-jsmath is a sphinx extension which renders display math in HTML via JavaScript. + python3-sphinxcontrib-jsmath, javascript kullanarak html içerisinde matematiksel karakterlerin görüntülenmesini sağlayan sphinx genisleme modülüdür. + https://github.com/sphinx-doc/sphinxcontrib-jsmath/archive/1.0.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-jsmath/pspec.xml + + + python3-sphinxcontrib-jsmath + sphinxcontrib-jsmath module for python + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-sphinxcontrib-jsmath + + + + + 2021-10-22 + 1.0.1 + Rebuild. + Pisi Linux Admins + admins@pisilinux.org + + + 2019-12-30 + 1.0.1 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-script + https://github.com/smurfix/flask-script + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Flask extension to help writing external scripts for Flask applications. + Flask uygulamalarınız için harici betikler geliştirmenizi/yazmanızı sağlayan flask eklentisi. + A set of utilities for use with the Flask framework which provide decorators, classes and helpers for writing your own script commands. + python3-flask-script, flask uygulamalarınız için harici betikler geliştirmenizi/yazmanızı sağlayan flask eklentisi sağlar. + https://github.com/smurfix/flask-script/archive/v2.0.6.tar.gz + + python3-setuptools + python3-devel + + + Usingflask_scriptEverywhereInsteadOfflask.ext.script.patch + + programming/language/python3/python3-flask-script/pspec.xml + + + python3-flask-script + Flask extension to help writing external scripts for Flask applications. + + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-script + + + + + 2021-10-22 + 2.0.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-18 + 2.0.6 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-security + https://github.com/mattupstate/flask-security + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Quick and simple security for Flask applications. + Flask uygulamalarınız için hızlı ve basit güvenlik. + python3-flask-security, quickly adds security features to your Flask application. + python3-flask-security, flask uygulamalarınız için hızlı ve basit güvenlik bir şekilde güvenlik sunar. + https://github.com/mattupstate/flask-security/archive/3.0.0.tar.gz + + python3-setuptools + python3-devel + pip3 + + programming/language/python3/python3-flask-security/pspec.xml + + + python3-flask-security + Quick and simple security for Flask applications. + + python3-flask-principal + python3-flask-babelex + python3-flask-login + python3-flask-mail + python3-flask-wtf + python3-passlib + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-security + + + + + 2021-10-22 + 3.0.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 3.0.0 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-sqlalchemy + https://github.com/pallets/flask-sqlalchemy + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + Adds SQLAlchemy support to Flask. + Flask uygulamanıza SQLAlchemy desteği ekler. + Flask-SQLAlchemy is an extension for Flask that adds support for SQLAlchemy to your application. It aims to simplify using SQLAlchemy with Flask by providing useful defaults and extra helpers that make it easier to accomplish common tasks. + python3-flask-sqlalchemy, flask uygulamalarınıza SQLAlchemy desteği ekler. + https://github.com/pallets/flask-sqlalchemy/archive/2.5.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-flask-sqlalchemy/pspec.xml + + + python3-flask-sqlalchemy + Adds SQLAlchemy support to Flask. + + python3 + python3-flask + python3-sqlalchemy + + + /usr/lib/python3* + /usr/share/doc/python3-flask-sqlalchemy + + + + + 2021-10-22 + 2.5.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 2.5.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-22 + 2.4.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 2.4.1 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-flask-wtf + https://github.com/lepture/flask-wtf/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration. + CSRF, dosya yükleme ve ReCaptcha bütünleşmesi dahil Flask ve WTForms'u bütünleştiren python modülü. + Flask-Wtf provides simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration. + python3-flask-wtf, CSRF, dosya yükleme ve ReCaptcha bütünlesmesi dahil Flask ve WTForms'u bütünleştiren python modülü sağlar. + https://github.com/wtforms/flask-wtf/archive/refs/tags/v0.15.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-flask-wtf/pspec.xml + + + python3-flask-wtf + Simple integration of Flask and WTForms, including CSRF, file upload and Recaptcha integration. + + python3-itsdangerous + python3-wtforms + python3-flask + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-flask-wtf + + + + + 2021-10-22 + 0.15.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-29 + 0.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-18 + 0.14.3 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-future + http://python-future.org/ + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Clean single-source support for Python 3 and 2 + Python3 future modülü + python-future is the missing compatibility layer between Python 2 and Python 3. It allows you to use a single, clean Python 3.x-compatible codebase to support both Python 2 and Python 3 with minimal overhead. + python3-future python2 ile python3 arasındaki kayıp uyumluluk katmanıdır. Python2 ile Python3 arasında python3 uyumlu bir kod katmanı kullanabilmenizi sağlar. + https://pypi.io/packages/source/f/future/future-0.18.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-future/pspec.xml + + + python3-future + Clean single-source support for Python 3 and 2 + + python3-setuptools + python3 + + + /usr/bin/futurize + /usr/bin/pasteurize + /usr/lib/python3* + /usr/share/doc/python3-future + + + + + 2021-10-25 + 0.18.2 + Rebuilt + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-13 + 0.18.2 + Rebuilt and split packages + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-20 + 0.18.2 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-22 + 0.15.2 + First Pisi Release Built with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + python3-fuzzywuzzy + https://github.com/seatgeek/fuzzywuzzy + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + library + programming.language.python3 + Fuzzy String Matching in Python. + Python3 ile sözcük karşılaştırma/bulma modülü + Fuzzy string matching like a boss. It uses Levenshtein Distance to calculate the differences between sequences in a simple-to-use package. + python3-fuzzywuzzy Levenshtein uzaklığını kullanarak bölümler arası ayrımları hesaplayan kullanımı basit bir python3 modülüdür. + https://github.com/seatgeek/fuzzywuzzy/archive/0.18.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-fuzzywuzzy/pspec.xml + + + python3-fuzzywuzzy + Fuzzy String Matching in Python + + python3-Levenshtein + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-fuzzywuzzy + + + + + 2021-10-28 + 0.18.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-18 + 0.18.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + 2019-12-26 + 0.17.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-gtts + https://github.com/pndurette/gTTS + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + Google Text to Speech (TTS) API + Google Text to Speech (TTS) API + Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API + Module and command line utility to save spoken text to mp3 via the Google Text to Speech (TTS) API + https://github.com/pndurette/gTTS/archive/v2.2.3.tar.gz + + python3-devel + python3-setuptools + python3-click + python3-requests + + programming/language/python3/python3-gtts/pspec.xml + + + python3-gtts + Google Text to Speech (TTS) API + + python3 + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc/python3-gtts + + + + + 2022-01-23 + 2.2.3 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-gtts-token + https://github.com/Boudewijn26/gTTS-token + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + Google Text to Speech token + Google Text to Speech token + A python implementation of the token validation of Google Translate. + A python implementation of the token validation of Google Translate. + https://files.pythonhosted.org/packages/source/g/gTTS-token/gTTS-token-1.1.4.tar.gz + + python3-devel + python3-setuptools + python3-requests + + programming/language/python3/python3-gtts-token/pspec.xml + + + python3-gtts-token + Google Text to Speech token + + python3 + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc/python3-gtts-token + + + + + 2022-01-23 + 1.1.4 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-h11 + https://pypi.org/project/h11/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 + Sadece python ile hazırlanmış, HTTP/1.1 için kendi-giriş-çıkış-uygulamanı-getir uygulaması. + This is a little HTTP/1.1 library written from scratch in Python, heavily inspired by hyper-h2. + python3-h11, hyper-h2'den esınlenen bu kitaplık sıfırdan yazılmış bir HTTP/1.1 kitaplığıdır. + https://files.pythonhosted.org/packages/bd/e9/72c3dc8f7dd7874812be6a6ec788ba1300bfe31570963a7e788c86280cb9/h11-0.12.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-h11/pspec.xml + + + python3-h11 + A pure-Python, bring-your-own-I/O implementation of HTTP/1.1 + + python3 + + + /usr/lib + /usr/share/man + /usr/share/doc/python3-h11 + + + + + 2021-10-28 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 0.9.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-h2 + https://github.com/python-hyper/hyper-h2 + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + HTTP/2 State-Machine based protocol implementation + HTTP/2 Durum-Makinesi temelli protokol uygulanaması + This repository contains a pure-Python implementation of a HTTP/2 protocol stack. It's written from the ground up to be embeddable in whatever program you choose to use, ensuring that you can speak HTTP/2 regardless of your programming paradigm. + python3-h2, bu repo sadece python ile yazılmış HTTP/2 protokol yığını içerir. Programlama paradigmanız ne olursa olsun HTTP/2 konuştuğunuz sürece istediğiniz progrma gömebileceğiniz şekilde yazılmıştır. + https://github.com/python-hyper/hyper-h2/archive/v4.1.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-h2/pspec.xml + + + python3-h2 + HTTP/2 State-Machine based protocol implementation + + python3 + python3-hpack + python3-hyperframe + + + /usr/lib + /usr/share/man + /usr/share/doc/python3-h2 + + + + + 2021-10-28 + 4.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-23 + 4.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 3.2.0 + Ver. bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 3.1.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-hpack + https://github.com/python-hyper/hpack + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + HTTP/2 Header Encoding for Python. + Python için HTTP/2 başlık kodlaması. + This module contains a pure-Python HTTP/2 header encoding (HPACK) logic for use in Python programs that implement HTTP/2. + python3-hpack, HTTP/2yi kullanan uygulamalar için HTTP/2 başlık kodlaması sunar. + https://github.com/python-hyper/hpack/archive/v4.0.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-hpack/pspec.xml + + + python3-hpack + HTTP/2 Header Encoding for Python. + + python3 + + + /usr/lib + /usr/share/man + /usr/share/doc/python3-hpack + + + + + 2021-10-28 + 4.0.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-23 + 4.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 3.0.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-hstspreload + https://github.com/sethmlarson/hstspreload + + Blue Devil + bluedevil@sctzine.com + + BSD3 + library + programming.language.python3 + Chromium HSTS Preload list as a Python package and updated daily. + Chromium HSTS Preload listesi python paketi gibi günlük güncellenir. + Chromium HSTS Preload list as a Python package and updated daily. The package provides a single function: in_hsts_preload() which takes an IDNA-encoded host and returns either True or False regarding whether that host should be only accessed via HTTPS. + python3-hstspreload, "in_hsts_preload()" adında tek bir yordam sağlar. Bu yordam IDNA-kodlanmış alanı alır ve HTTPS ile erişilip erişilmeme durumuna göre doğru/yanlış bilgisi döndürür. + https://github.com/sethmlarson/hstspreload/archive/2021.10.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-hstspreload/pspec.xml + + + python3-hstspreload + Chromium HSTS Preload list as a Python package and updated daily. + + python3 + + + /usr/share/man + /usr/lib/python3* + /usr/share/doc/python3-hstspreload + + + + + 2021-10-28 + 2021.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 2020.8.25 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 2020.4.21 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 2020.4.7 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 2020.3.25 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-18 + 2020.3.17 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 2020.3.4 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-22 + 2020.2.21 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 2020.2.20 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 2020.2.15 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 2020.2.5 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 2020.1.22 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 2020.1.15 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-html5lib + https://github.com/html5lib/html5lib-python + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Standards-compliant library for parsing and serializing HTML documents and fragments in Python + Python ile HTML belgeleri ve parçalerinin çözümleyebilen standart-uyumlu kitaplik. + python3-html5lib is a pure-python library for parsing HTML. It is designed to conform to the WHATWG HTML specification, as is implemented by all major web browsers. + python3-html5lib python ile yazilmis HTML cozumleme kitapligidir. Neredeyse tum buyun ag gozaticilari tarafindan kullanilan, WHATWG HTML ile belirlenen ozelliklere uymak uzere tasarlanmistir. + https://github.com/html5lib/html5lib-python/archive/1.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-html5lib/pspec.xml + + + python3-html5lib + Standards-compliant library for parsing and serializing HTML documents and fragments in Python + + python3 + python3-six + python3-webencodings + + + /usr/lib/python3* + /usr/share/doc/python3-html5lib + + + + + 2021-10-22 + 1.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2020-07-22 + 1.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 1.0.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-httpcore + https://github.com/encode/httpcore + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + A minimal HTTP client. + Minimal bir HTTP istemcisi + The HTTP Core package provides a minimal low-level HTTP client, which does one thing only. Sending HTTP requests. + python3-httpcore, python3 için minimal düşük seviyeli bir HTTP istemcisidir. Sadece HTTP istekleri gönderir. + https://github.com/encode/httpcore/archive/0.13.7.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-httpcore/pspec.xml + + + python3-httpcore + The next generation HTTP client. + + python3 + python3-h2 + python3-h11 + python3-sniffio + + + /usr/lib/python3* + /usr/share/doc/python3-httpcore + + + + + 2021-10-28 + 0.13.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 0.10.2 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 0.9.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-httptools + https://github.com/MagicStack/httptools + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A collection of framework independent HTTP protocol utils. + Toplu Özgür HTTP protokol araçları + httptools is a Python binding for nodejs HTTP parser. It's still in a very early development stage, expect APIs to break. + python3-httptools, nodejs HTTP çözümleyicisi için python3 bağlayıcılarını içerir. + https://github.com/MagicStack/httptools/archive/v0.1.1.tar.gz + https://github.com/nodejs/http-parser/archive/v2.9.3.tar.gz + + pip3 + python3-wheel + python3-setuptools + python3-devel + + programming/language/python3/python3-httptools/pspec.xml + + + python3-httptools + A collection of framework independent HTTP protocol utils. + + python3 + + + /usr/share/doc/python3-httptools + /usr/share/man + /usr/lib + + + + + 2021-10-28 + 0.1.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-08 + 0.1.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 0.1.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 0.0.13 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-httpx + https://github.com/encode/httpx + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + The next generation HTTP client. + Gelecek nesil HTTP istemcisi + HTTPX is a fully featured HTTP client for Python 3, which provides sync and async APIs, and support for both HTTP/1.1 and HTTP/2. + python3-httpx, tam donanımlı python3 için HTTP istemcisidir. Asenkron APIler sunar ve hem HTT11/1'i hem de http/2'yi destekler. + https://github.com/encode/httpx/archive/0.20.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-httpx/pspec.xml + + + python3-httpx + The next generation HTTP client. + + python3 + python3-certifi + python3-chardet + python3-rfc3986 + python3-sniffio + python3-urllib3 + python3-httpcore + python3-hstspreload + + + /usr/bin/httpx + /usr/share/man + /usr/lib/python3* + /usr/share/doc/python3-httpx + + + + + 2021-10-28 + 0.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 0.14.2 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 0.13.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 0.12.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 0.12.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 0.11.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 0.11.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-hyperframe + https://github.com/python-hyper/hyperframe + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Pure-Python HTTP/2 framing + Pure-Python HTTP/2 çatısı. + This library contains the HTTP/2 framing code used in the hyper project. It provides a pure-Python codebase that is capable of decoding a binary stream into HTTP/2 frames. + python3-hyperframe, bu kitaplık "hyper" projelerinde kullanılmak üzere "HTTP/2" çerçeveleri içerir. İkilik bir akışı HTTP/2 çerçevelerine çözebilen python kod tabanı sunar. + https://github.com/python-hyper/hyperframe/archive/v6.0.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-hyperframe/pspec.xml + + + python3-hyperframe + Pure-Python HTTP/2 framing + + python3 + + + /usr/lib + /usr/share/man + /usr/share/doc/python3-hyperframe + + + + + 2021-10-28 + 6.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-23 + 6.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 5.2.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-idle + https://www.python.org/ + + PisiLinux Community + admins@pisilinux.org + + custom + programming.language + An Integrated Development Environment for Python + An Integrated Development Environment for Python + https://www.python.org/ftp/python/3.9.13/Python-3.9.13.tar.xz + + bzip2 + xz-devel + tcl-devel + gdbm-devel + zlib-devel + tcltk-devel + expat-devel + libffi-devel + sqlite-devel + python3-devel + ncurses-devel + openssl-devel + readline-devel + mpdecimal-devel + + programming/language/python3/python3-idle/pspec.xml + + + python3-tk + Python modules for Tk + library + programming.language.python3 + python + + tcl + tcltk + python3 + + + /usr/lib/python3*/tkinter + /usr/lib/python3.9/turtledemo + /usr/lib/python3.9/lib-dynload/_tkinter.cpython-39-x86_64-linux-gnu.so + + + + idle3 + An Integrated Development Environment for Python + Python için bütünleşik geliştirme ortamı + idle3, Python için bütünleşik geliştirme ortamı sunar. + app:gui + programming.environment + idle + + python3 + python3-tk + + + /usr/share/pixmaps + /usr/bin/idle3* + /usr/share/applications + /usr/lib/python*/idlelib + + + idle.desktop + + + + + 2022-06-11 + 3.9.13 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-12-14 + 3.9.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 3.9.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-20 + 3.8.9 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-08-30 + 3.8.5 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-07-22 + 3.8.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-28 + 3.8.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-10 + 3.8.0 + First release Idris Kalp idriskalp@gmail.com @@ -329809,25 +286466,5526 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - l-smash - https://github.com/l-smash/l-smash + python3-idna + https://github.com/kjd/idna - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - custom - app:console - multimedia.video - MP4 muxer and other tools. - Loyal to Spec of MPEG4, and Ad-hock Simple Hackwork library. - https://github.com/l-smash/l-smash/archive/v2.14.5.tar.gz - multimedia/video/l-smash/pspec.xml + BSD + library + programming.language.python3 + Internationalized Domain Names in Applications (IDNA) + IDNA protokolünü desktekleyen python kitaplığıdır. + Support for the Internationalised Domain Names in Applications (IDNA) protocol as specified in RFC 5891. This library also provides support for Unicode Technical Standard 46, Unicode IDNA Compatibility Processing. + RFC 5891 belgelendirmesinde belirtilen IDNA(Internationalised Domain Names in Applications - Uygulamalardaki Uluslararasılaşmış Alan Adları) protokolünü destekleyen python kitaplığıdır. Bu kitaplık ayrıca Unikod(Unicode) teknik standardı 46'yı da kapsar. + https://github.com/kjd/idna/archive/v3.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-idna/pspec.xml - l-smash - MP4 muxer and other tools. + python3-idna + Internationalized Domain Names in Applications (IDNA) - glibc + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-idna + + + + + 2021-10-22 + 3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-22 + 2.10 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 2.9 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-24 + 2.8 + Version bump and built w/ py3.8 + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-15 + 2.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-22 + 2.6 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + python3-imagesize + https://github.com/shibukawa/imagesize_py + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + Getting image size from png/jpeg/jpeg2000/gif file. + Png / jpeg / jpeg2000 / gif dosyasından görüntü boyutu elde etme. + This module analyzes jpeg/jpeg2000/png/gif image header and return image size. + Bu modül jpeg / jpeg2000 / png / gif resim başlığını ve dönüş resim boyutunu analiz eder. + https://files.pythonhosted.org/packages/e4/9f/0452b459c8ba97e07c3cd2bd243783936a992006cf4cd1353c314a927028/imagesize-1.2.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-imagesize/pspec.xml + + + python3-imagesize + Getting image size from png/jpeg/jpeg2000/gif file. + + python3 + + + /usr/bin + /usr/lib/python3* + /usr/share/doc/python3-imagesize + + + + + 2021-10-22 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-30 + 1.2.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-01-28 + 1.0.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python3-imdbpy + https://imdbpy.sourceforge.io/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + app + programming.language.python3 + Python bindings for the Internet Movie Database (IMDb) + Python bindings for the Internet Movie Database (IMDb) + Python bindings for the Internet Movie Database (IMDb) + Python bindings for the Internet Movie Database (IMDb) + https://github.com/alberanid/imdbpy/archive/refs/tags/2021.04.18.tar.gz + + python3-devel + python3-lxml + python3-pytest + python3-setuptools + + programming/language/python3/python3-imdbpy/pspec.xml + + + python3-imdbpy + + python3 + python3-lxml + python3-pytest + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 2021.04.18 + Rebuild + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-25 + 2021.04.18 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-importlib_metadata + https://gitlab.com/python-devs/importlib_metadata + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + importlib_metadata is a library to access the metadata for a Python package. + Python paketlerinin metaverisine erişmek için python kitaplığı + importlib_metadata is a library to access the metadata for a Python package. + python3-importlib_metadata, Python paketlerinin metaverisine erişmek için python kitaplığı sağlar. + https://gitlab.com/python-devs/importlib_metadata/-/archive/v2.0.0/importlib_metadata-v2.0.0.tar.gz + + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-importlib_metadata/pspec.xml + + + python3-importlib_metadata + Python development support library (note: maintenance only) + + python3 + python3-zipp + + + /usr/lib/python3* + /usr/share/doc/python3-importlib_metadata + + + + + 2021-10-22 + 2.0.0 + Rebuild + Pisi Linux Admins + admin@pisilinux.org + + + 2020-09-23 + 2.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-07-21 + 1.7.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 1.6.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.5.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 1.5.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-importlib_resources + https://gitlab.com/python-devs/importlib_resources + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Design and implementation for a planned importlib.resources + Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı. + The key goal of this module is to replace parts of pkg_resources with a solution in Python's stdlib that relies on well-defined APIs. This makes reading resources included in packages easier, with more stable and consistent semantics. + python3-importlib_resources, Python paketlerinin içerisindeki kaynakları daha iyi yönetebilen python kitaplığı sunar. Ana amacı pkg_resources madülünün yerini almaktır. + https://gitlab.com/python-devs/importlib_resources/-/archive/v3.0.0/importlib_resources-v3.0.0.tar.gz + + pip3 + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-importlib_resources/pspec.xml + + + python3-importlib_resources + Design and implementation for a planned importlib.resources + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-importlib_resources + + + + + 2021-10-28 + 3.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-22 + 3.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 1.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 8020-03-18 + 1.3.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-iniconfig + https://pypi.org/project/iniconfig/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.language.python3 + brain-dead simple config-ini parsing + brain-dead simple config-ini parsing + brain-dead simple config-ini parsing + brain-dead simple config-ini parsing + https://files.pythonhosted.org/packages/23/a2/97899f6bd0e873fed3a7e67ae8d3a08b21799430fb4da15cfedf10d6e2c2/iniconfig-1.1.1.tar.gz + + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-iniconfig/pspec.xml + + + python3-iniconfig + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 1.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-ipaddress + https://github.com/phihag/ipaddress + + Blue DeviL + bluedevil@sctzine.com + + PSFL + library + programming.language.python3 + Python 3.3+'s ipaddress for older Python versions + Python3.2 ve daha düşük sürümler için ipaddress modülü + python-ipaddress ipaddress provides the capabilities to create, manipulate and operate on IPv4 and IPv6 addresses and networks. This module is a backport for python 2.7 and python versions up to 3.2. + python-ipaddress modülü Python3.3 ile gelen ipaddress modülünün python 2.7 ve python 3.2'ye kadar olan sürümlerinde de çalışmasını sağlar. + https://github.com/phihag/ipaddress/archive/v1.0.23.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-ipaddress/pspec.xml + + + python3-ipaddress + ipaddress module for python3.2- + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2021-08-21 + 1.0.23 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-25 + 1.0.23 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-isodate + https://github.com/gweis/isodate/ + + fury + uglyside@yandex.ru + + BSD + library + programming.language.python3 + ISO 8601 date/time parser. + This module implements ISO 8601 date, time and duration parsing. The implementation follows ISO8601:2004 standard, and implements only date/time representations mentioned in the standard. If something is not mentioned there, then it is treated as non existent, and not as an allowed option. + https://github.com/gweis/isodate/archive/refs/tags/0.6.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-isodate/pspec.xml + + + python3-isodate + + python3 + + + /usr/lib + /usr/share + + + + + 2022-01-18 + 0.6.1 + Version bump + fury + uglyside@yandex.ru + + + 2021-10-28 + 0.6.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-18 + 0.6.0 + First build + fury + uglyside@yandex.ru + + + + + + python3-isort + https://github.com/PyCQA/isort + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A Python utility / library to sort imports. + Python importlarını sıralamak için python kitaplık ve araçları. + python3-isort is a Python utility / library to sort imports alphabetically, and automatically separated into sections and by type. + python3-isort, python importlarını sıralamak için python kitaplık ve araçları sağlar. + https://pypi.org/packages/source/i/isort/isort-5.9.3.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-isort/pspec.xml + + + python3-isort + A Python utility / library to sort imports. + + python3 + python3-setuptools + + + /usr/share/doc/ + /usr/lib/python3* + /usr/bin/isort + /usr/bin/isort-identify-imports + + + + + 2021-10-13 + 5.9.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 5.9.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 5.5.3 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-itsdangerous + https://palletsprojects.com/p/itsdangerous/ + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + Safely pass trusted data to untrusted environments and back. + Güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiir. + python3-itsdangerous provides safely pass trusted data to untrusted environments and back. + python3-itsdangerous,güvenilir veriyi güvenilir olmayan ortamlardan geçirip geri getiren python kitaplığı sunar. + https://github.com/pallets/itsdangerous/archive/2.0.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-itsdangerous/pspec.xml + + + python3-itsdangerous + Safely pass trusted data to untrusted environments and back. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-itsdangerous + + + + + 2021-10-25 + 2.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 1.1.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-jedi + https://github.com/davidhalter/jedi + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Awesome autocompletion and static analysis library for python. + Python için otomatik tamamlama ve durağan çözümleme kitaplığı. + Jedi is a static analysis tool for Python that can be used in IDEs/editors. Jedi has a focus on autocompletion and goto functionality. Jedi is fast and is very well tested. It understands Python and stubs on a deep level. + python3-jedi, python için otomatik tamamlama ve durağan çözümleme kitaplığı sunar. + https://github.com/davidhalter/jedi/archive/v0.18.0.tar.gz + https://github.com/davidhalter/typeshed/archive/jedi_v0.16.0.tar.gz + https://github.com/davidhalter/django-stubs/archive/refs/tags/1.7.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-jedi/pspec.xml + + + python3-jedi + Awesome autocompletion and static analysis library for python. + + python3 + python3-parso + + + /usr/lib/python3* + /usr/share/doc/python3-jedi + + + + + 2021-08-21 + 0.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 0.17.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 0.17.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-06 + 0.16.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-Jinja2 + https://palletsprojects.com/p/jinja/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.python3 + A small but fast and easy to use stand-alone template engine written in pure python + Küçük, hızlı ve kullanımı kolay, sadece python ile yazılmış bir bağımsız şablon üreteci + Jinja2 is the rewritten version of Jinja, sandboxed template engine written in pure Python. It provides a Django like non-XML syntax and compiles templates into executable python code. It's basically a combination of Django templates and python code. + Jinja2, sadece python ile yazılmış bir şablon üreteci olan Jinja'nın yeniden yazılmış bir versiyonudur. Django benzeri XML-olmayan bir sözdizimi sağlar ve şablonları derleyip çalıştırılabilir python programları haline getirir. Temel olarak Django şablonları ve python kodunun birleşimi bir programdır. + https://files.pythonhosted.org/packages/source/J/Jinja2/Jinja2-3.0.3.tar.gz + + python3-MarkupSafe + python3-setuptools + python3-devel + python3-pytest + python3-sphinxcontrib-log-cabinet + python3-pallets-sphinx-themes + python3-sphinx-issues + python3-sphinx + python3-charset-normalizer + + programming/language/python3/python3-Jinja2/pspec.xml + + + python3-Jinja2 + A small but fast and easy to use stand-alone template engine written in pure python + + python3-MarkupSafe + python3 + + + /usr/share/doc/python3-Jinja2/LICENSE.rst + /usr/share/doc/python3-Jinja2/README.rst + /usr/share/doc/python3-Jinja2/PKG-INFO + /usr/lib/python3* + + + + python3-Jinja2-docs + Documentation files for python3-Jinja2 + python3-Jinja2 için belgelendirme dosyaları + python3-Jinja2-docs, python3-Jinja2 için belgelendirme dosyaları içerir. + + /usr/share/doc/python3-Jinja2/html + + + + + 2021-11-11 + 3.0.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 3.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 2.11.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 2.11.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-29 + 2.11.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 2.10.3 + Rebuilt w/ py3.8 and clean. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-04 + 2.10.3 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-28 + 2.10 + First release. + Pisi Linux Community + admin@pisilinux.org + + + + + + python3-kappa + https://github.com/garnaat/kappa + + Ismet Sezer Simsek + ismetsezer1996@gmail.com + + LGPLv2.1 + library + app:console + programming.language.python3 + A CLI tool for AWS Lambda developers + AWS Lambda geliştiricileri için komut satırı arayüzü + Kappa is a command line tool that (hopefully) makes it easier to deploy, update, and test functions for AWS Lambda. + python3-kappa, AWS Lambdayı güncelleme, çalıştırma, test yapmayı kolaylaştıran bir komut satırı arayüzüdür. + https://pypi.python.org/packages/9e/67/c064a0b48f3aaee38aa810e09e6c3c97857e9c9a69cb2e6f79da650ec054/kappa-0.7.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-kappa/pspec.xml + + + python3-kappa + A CLI tool for AWS Lambda developers + + python3 + + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2021-10-28 + 0.7.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 0.7.0 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 0.7.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-15 + 0.7.0 + First Release + Ismet Sezer Simsek + ismetsezer1996@gmail.com + + + + + + python3-kiwisolver + https://github.com/nucleic/kiwi + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Efficient C++ implementation of the Cassowary constraint solving algorithm. + Python3 için Cassowary kısıtı hesaplama uygulaması kitaplığı. + Kiwi is an efficient C++ implementation of the Cassowary constraint solving algorithm. Kiwi is an implementation of the algorithm based on the seminal Cassowary paper. + python3-kiwisolver, python3 için Cassowary kısıtı hesaplama uygulaması kitaplığı sunar. + https://github.com/nucleic/kiwi/archive/1.3.2.tar.gz + + python3-setuptools + python3-devel + python3-cppy + + programming/language/python3/python3-kiwisolver/pspec.xml + + + python3-kiwisolver + Efficient C++ implementation of the Cassowary constraint solving algorithm. + + python3 + + + /usr/share/doc/python3-kiwisolver + /usr/lib/python3* + + + + + 2021-10-28 + 1.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-27 + 1.2.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-03 + 1.1.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-lazy-object-proxy + https://github.com/ionelmc/python-lazy-object-proxy + + Blue Devil + bluedevil@sctzine.com + + BSDv2 + library + programming.language.python3 + A fast and thorough lazy object proxy. + Hızlı ve esaslı tembel proxy nesnesi. + python3-lazy-object-proxy provides a fast and thorough lazy object proxy. + python3-lazy-object-proxy, hızlı ve esaslı tembel proxy nesnesi sunar. + https://github.com/ionelmc/python-lazy-object-proxy/archive/v1.6.0.tar.gz + + pip3 + python3-devel + python3-setuptools + + programming/language/python3/python3-lazy-object-proxy/pspec.xml + + + python3-lazy-object-proxy + A fast and thorough lazy object proxy. + + python3 + python3-setuptools + + + /usr/share/doc/ + /usr/lib/python3* + + + + + 2021-10-13 + 1.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 1.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 1.5.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-Levenshtein + https://pypi.org/project/python-Levenshtein/ + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + library + programming.language.python + Python extension for computing string edit distances and similarities + 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/2a/dc/97f2b63ef0fa1fd78dcb7195aca577804f6b2b51e712516cc0e902a9a201/python-Levenshtein-0.12.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-Levenshtein/pspec.xml + + + python3-Levenshtein + Python extension for computing string edit distances and similarities + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-Levenshtein + + + + + 2021-10-28 + 0.12.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-23 + 0.12.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-lit + https://pypi.org/project/lit/ + + Pisi Linux Admins + admin@pisilinux.org + + Apache + app + programming.language.python3 + lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures. + lit is a portable tool for executing LLVM and Clang style test suites, summarizing their results, and providing indication of failures. + lit, LLVM ve Clang tarzı test takımlarını yürütmek, sonuçlarını özetlemek ve arızaların göstergesini sağlamak için taşınabilir bir araçtır. + lit, LLVM ve Clang tarzı test takımlarını yürütmek, sonuçlarını özetlemek ve arızaların göstergesini sağlamak için taşınabilir bir araçtır. + https://files.pythonhosted.org/packages/f7/fc/aba44ef618619519d4fb56e604163fd85f4b598a4fd8a105e32e4e456798/lit-13.0.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-lit/pspec.xml + + + python3-lit + + python3-devel + python3-setuptools + + + /usr/bin + /usr/lib/python* + /usr/share/doc + + + + + 2021-10-28 + 13.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-05 + 12.0.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-lxml + https://lxml.de/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + BSD + library + programming.language.python3 + The lxml XML toolkit for Python. + Zengin içerikli ve kolay kullanımlı bir kütüphane. + lxml is the most feature-rich and easy-to-use library for working with XML and HTML in the Python language. + Python dilinde xml ve html ile çalışmak için, zengin içerikli ve kolay kullanımlı bir kütüphane. + https://github.com/lxml/lxml/archive/lxml-4.6.3.tar.gz + + cython3 + python3-devel + libxslt-devel + libxml2-devel + python3-sphinx + python3-Pygments + python3-setuptools + + programming/language/python3/python3-lxml/pspec.xml + + + python3-lxml + The lxml XML toolkit for Python. + + libxml2 + libxslt + python3 + + + /usr/lib/python3* + + + + python3-lxml-docs + API documentation of python3-lxml + python3-lxml paketine ait API belgeleri + python3-lxml-docs, python3-lxml için belgelendirme dosyalarını içerir. + + python3-lxml + + + /usr/share/doc/python3-lxml + + + + + 2021-10-22 + 4.6.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 4.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-13 + 4.6.2 + Version bump + Pisi Linux Admins + admin@pisilinux.org + + + 2020-07-21 + 4.5.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 4.5.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 4.5.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 4.4.2 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + python3-markdown + https://pypi.org/project/Markdown/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + programming.language.python3 + Python implementation of John Gruber's Markdown + Python implementation of John Gruber's Markdown + Python implementation of John Gruber's Markdown + Python implementation of John Gruber's Markdown + https://files.pythonhosted.org/packages/49/02/37bd82ae255bb4dfef97a4b32d95906187b7a7a74970761fca1360c4ba22/Markdown-3.3.4.tar.gz + + python3-devel + python3-PyYAML + python3-setuptools + + programming/language/python3/python3-markdown/pspec.xml + + + python3-markdown + + python3 + python3-PyYAML + python3-setuptools + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 3.3.4 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-05-26 + 3.3.4 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-markups + https://github.com/retext-project/pymarkups + + Stefan Gronewold + groni@pisilinux.org + + BSD + library + programming.language.python3 + Wrapper around various text markups + Çesitli metin "markup"ları için sarmalayıcı python yordamları. + This module provides a wrapper around various text markup languages. + python3-markups, çesitli markup dilleri için sarmalayıcı python yordamları sunar. + https://github.com/retext-project/pymarkups/archive/3.1.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-markups/pspec.xml + + + python3-markups + Wrapper around various text markups + + python3 + + + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 3.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 3.0.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 2.6.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-01 + 2.6.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-01 + 2.6.8 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-11-21 + 2.6.7 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + python3-MarkupSafe + https://pypi.python.org/pypi/MarkupSafe + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + Implements a XML/HTML/XHTML Markup safe string for Python + XML/HTML/XHTML markup dilleri için güvenli python karakter dizeleri gerçekleştirimi + python3-MarkupSafe, implements a unicode subclass that supports HTML strings. + python3-MarkupSafe, HTML karakter dizeleri için unicode bir alt sınıf gerçekleştirimi sağlar. + https://files.pythonhosted.org/packages/bf/10/ff66fea6d1788c458663a84d88787bae15d45daa16f6b3ef33322a51fc7e/MarkupSafe-2.0.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-MarkupSafe/pspec.xml + + + python3-MarkupSafe + + /usr/lib/python3.* + /usr/share/doc + + + + + 2021-10-22 + 2.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-08 + 1.1.1 + Rebuild for new python + Pisi Linux Community + admin@pisilinux.org + + + 2019-04-08 + 1.1.1 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-20 + 1.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + + + + python3-matplotlib + https://github.com/matplotlib/matplotlib + + Blue Devil + bluedevil@sctzine.com + + PSF + library + programming.language.python3 + matplotlib: plotting with Python. + matplotlib: python grafik çizim kitaplığı. + Matplotlib is a comprehensive library for creating static, animated, and interactive visualizations in Python. + python3-matplotlib, python ile hareketli, durağan ve etkileşimli çizgeler yapılmasını sağlayan kapsamlı bir python kitaplığı sunar. + https://github.com/matplotlib/matplotlib/archive/v3.3.1.tar.gz + + pip3 + python3-devel + python3-numpy + freetype-devel + python3-setuptools + + programming/language/python3/python3-matplotlib/pspec.xml + + + python3-matplotlib + matplotlib: plotting with Python. + + libpng + python3 + freetype + python3-numpy + python3-cycler + python3-dateutil + python3-pyparsing + python3-kiwisolver + + + /usr/lib/python3* + /usr/share/doc/python3-matplotlib + + + + + 2021-10-28 + 3.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 3.3.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-18 + 3.2.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-05 + 3.2.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-mccabe + https://github.com/PyCQA/mccabe + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + McCabe complexity checker for Python + Python kod denetleyicisi, flake8 için bir eklenti. + python3-mccabe, provides a plugin for flake8, the Python code checker. + python3-mccabe, Python kod denetleyicisi, flake8 için bir eklenti sağlar. + https://github.com/PyCQA/mccabe/archive/0.6.1.tar.gz + + pip3 + python3-devel + python3-setuptools + + programming/language/python3/python3-mccabe/pspec.xml + + + python3-mccabe + McCabe complexity checker for Python + + python3 + + + /usr/share/doc/ + /usr/lib/python3* + + + + + 2021-10-13 + 0.6.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 0.6.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-mimeparse + https://github.com/dbtsai/python-mimeparse + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Basic functions for handling mime-types in python. + Python ile mime-türlerini işleyebilmek için python kitaplığı. + python3-mimeparse, provides basic functions for handling mime-types. It can handle matching mime-types against a list of media-ranges. + python3-mimeparse, python ile mime-türlerini işleyebilmek için python kitaplığı sunar. + https://github.com/dbtsai/python-mimeparse/archive/1.6.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-mimeparse/pspec.xml + + + python3-mimeparse + Basic functions for handling mime-types in python. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-mimeparse + + + + + 2021-10-28 + 1.6.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-20 + 1.6.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-more-itertools + https://github.com/erikrose/more-itertools + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + More routines for operating on iterables, beyond itertools. + itertools'un ötesinde, itertablolarıyla çalısmak için yeni rutinler + Python's itertools library is a gem - you can compose elegant solutions for a variety of problems with the functions it provides. In more-itertools we collect additional building blocks, recipes, and routines for working with Python iterables. + python3-more-itertools, itertools'un ötesinde, itertablolarıyla çalısmak için yeni rutinler sağlar. + https://github.com/more-itertools/more-itertools/archive/refs/tags/v8.8.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-more-itertools/pspec.xml + + + python3-more-itertools + More routines for operating on iterables, beyond itertools. + + python3 + + + /usr/share/doc/python3-more-itertools + /usr/lib/python3* + + + + + 2021-08-21 + 8.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 8.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-16 + 8.3.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 8.2.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-multidict + https://github.com/aio-libs/multidict + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + The multidict implementation. + Multidict uygulaması. + Multidict is dict-like collection of key-value pairs where key might be occurred more than once in the container. + python3-multidict, sözlük benzeri anahtar-değer ikilisinden oluşan ama konteynerde birden fazla aynı anahtar olmasına olanak verek python modülüdür. + https://github.com/aio-libs/multidict/archive/v5.1.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-multidict/pspec.xml + + + python3-multidict + The multidict implementation. + + python3 + + + /usr/share/doc/python3-multidict + /usr/bin + /usr/share/man + /usr/lib + + + + + 2021-10-28 + 5.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 4.7.6 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-23 + 4.7.5 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 4.7.4 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-mutagen + https://github.com/quodlibet/mutagen + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python3 + An audio tag editing library + Müzik dosyalarının etiketlerini düzenlemek için bir python3 kitaplığı + Mutagen is a Python module to handle audio metadata. It supports ASF, FLAC, MP4, Monkey’s Audio, MP3, Musepack, Ogg Opus, Ogg FLAC, Ogg Speex, Ogg Theora, Ogg Vorbis, True Audio, WavPack, OptimFROG, and AIFF audio files. All versions of ID3v2 are supported, and all standard ID3v2.4 frames are parsed. It can read Xing headers to accurately calculate the bitrate and length of MP3s. ID3 and APEv2 tags can be edited regardless of audio format. It can also manipulate Ogg streams on an individual packet/page level. + python3-mutagen, müzik dosyalarının etiketlerini düzenlemeye yarayan python ile yazılmış bir kütüphanedir. + https://github.com/quodlibet/mutagen/archive/release-1.45.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-mutagen/pspec.xml + + + python3-mutagen + An audio tag editing library + + python3 + + + /usr/bin/mid3cp + /usr/bin/mid3v2 + /usr/bin/moggsplit + /usr/bin/mid3iconv + /usr/bin/mutagen-pony + /usr/bin/mutagen-inspect + /usr/lib/python3* + /usr/share/man/man1/mid3cp.1 + /usr/share/man/man1/mid3v2.1 + /usr/share/man/man1/mid3iconv.1 + /usr/share/man/man1/moggsplit.1 + /usr/share/man/man1/mutagen-pony.1 + /usr/share/man/man1/mutagen-inspect.1 + /usr/share/doc/python3-mutagen + + + + + 2021-10-28 + 1.45.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 1.45.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 1.44.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-24 + 1.43.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-nose + https://readthedocs.org/docs/nose/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + app:console + programming.language.python3 + A unittest extension offering automatic test suite discovery and easy test authoring + Python için unittest genişlemesi + python-nose provides an alternate test discovery and running process for unittest, one that is intended to mimic the behavior of py.test as much as is reasonably possible without resorting to too much magic. + python3-nose alternatif test tanıtma ve keşif kitaplığı. + https://pypi.python.org/packages/source/n/nose/nose-1.3.7.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-nose/pspec.xml + + + python3-nose + A unittest extension offering automatic test suite discovery and easy test authoring + + python3 + + + /usr/share/man + /usr/bin + /usr/lib/python3* + /usr/share/doc/python3-nose + + + + + 2021-10-22 + 1.3.7 + Rebuilt. + Pisi Linux Community + admin@pisilinux.org + + + 2019-12-12 + 1.3.7 + Rebuilt. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-30 + 1.3.7 + Rebuild for new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-01 + 1.3.7 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.3.7 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-08-04 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python3-numpy + https://numpy.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + The fundamental package needed for scientific computing with Python + Python ile bilimsel hesaplama için ihtiyaç duyulan temel paket + Numpy contains a powerful N-dimensional array object, sophisticated (broadcasting) functions, tools for integrating C/C++ and Fortran code, and useful linear algebra, Fourier transform, and random number capabilities. + Numpy, N-boyutlu güçlü bir dizi, gelişmiş fonksiyonlar, C/C++ ve Fortran kodunu entegre etmek için araçlar, doğrusal cebir ve rastgele sayı özelliği içerir. + Numpy contiene un potente objeto de array N-dimensional, funciones sofisticadas (broadcasting), herramientas para la integración de código C/C++ y Fortran, y facilidades útiles de algebra lineal, transformación Fourier, y número aleatorios. + https://github.com/numpy/numpy/archive/v1.21.2.tar.gz + + cython3 + libgfortran + cblas-devel + lapack-devel + python3-nose + python3-devel + python3-setuptools + + programming/language/python3/python3-numpy/pspec.xml + + + python3-numpy + The fundamental package needed for scientific computing with Python + + blas + cblas + lapack + python3 + libquadmath + python3-setuptools + + + /usr/lib + /usr/bin + /usr/share/doc/python3-numpy/README* + /usr/share/doc/python3-numpy/LICENSE* + + + + python3-numpy-docs + Documentation files for python3-numpy + python3-numpy için belgelendirme dosyaları + python3-numpy-docs, python3-numpy için belgelendirme dosyalarını içerir. + + python3-numpy + + + /usr/share/doc/python3-numpy/doc + + + + + 2021-10-22 + 1.21.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-22 + 1.19.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 1.19.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 1.18.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 1.18.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-24 + 1.18.2 + Patch version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 1.18.1 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2018-08-14 + 1.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-24 + 1.14.1 + First release. + Mustafa Cinasal + muscnsl@gmail.com + + + + + + python3-odfpy + https://pypi.org/project/odfpy/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app + programming.language.python3 + Python API and tools to manipulate OpenDocument files + Python API and tools to manipulate OpenDocument files + Python API and tools to manipulate OpenDocument files + Python API and tools to manipulate OpenDocument files + https://files.pythonhosted.org/packages/97/73/8ade73f6749177003f7ce3304f524774adda96e6aaab30ea79fd8fda7934/odfpy-1.4.1.tar.gz + + python3-devel + python3-defusedxml + python3-setuptools + + programming/language/python3/python3-odfpy/pspec.xml + + + python3-odfpy + + python3 + python3-defusedxml + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2021-10-28 + 1.4.1 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-04-26 + 1.4.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-olefile + https://github.com/decalage2/olefile + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Python package to parse, read and write Microsoft OLE2 files. + Microsoft OLE2 dosyalarını çözümleyebilen python kitaplığı. + python3-olefile (formerly OleFileIO_PL) is a Python package to parse, read and write Microsoft OLE2 files (also called Structured Storage, Compound File Binary Format or Compound Document File Format), such as Microsoft Office 97-2003 documents, vbaProject.bin in MS Office 2007+ files, Image Composer and FlashPix files, Outlook MSG files, StickyNotes, several Microscopy file formats, McAfee antivirus quarantine files, etc. + python3-olefile, Microsoft OLE2 dosyalarını çözümleyebilen python kitaplığı sunar. + https://github.com/decalage2/olefile/archive/v0.46.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-olefile/pspec.xml + + + python3-olefile + Python package to parse, read and write Microsoft OLE2 files. + + python3 + + + /usr/share/doc/python3-olefile + /usr/lib/python3* + + + + + 2021-10-22 + 0.46 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-07 + 0.46 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pafy + https://github.com/mps-youtube/pafy + + Blue Devil + bluedevil@sctzine.com + + LGPLv3 + library + programming.language.python3 + Python library to download YouTube content and retrieve metadata. + Youtube için Python APIsi + python3-pafy can retrieve YouTube content and metadata. + python3-pafy, Python ile YouTube içerik ve metadatanın çekilmesine olanak tanıyan python apisi sunar. + https://github.com/mps-youtube/pafy/archive/v0.5.5.tar.gz + + python3-setuptools + python3-youtube_dl + python3-devel + + programming/language/python3/python3-pafy/pspec.xml + + + python3-pafy + A small Python module for determining appropriate platform-specific dirs, e.g. a "user data dir". + + python3-youtube_dl + python3 + + + /usr/bin/ytdl + /usr/lib/python3* + /usr/share/doc/python3-pafy + + + + + 2021-10-28 + 0.5.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-26 + 0.5.5 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pallets-sphinx-themes + https://github.com/pallets/pallets-sphinx-themes + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + Sphinx themes for Pallets and related projects. + Pallets ve benzeri projeler için sphinx teması. + python3-pallets-sphinx-themes provides sphinx themes for Pallets and related projects. + python3-pallets-sphinx-themes, pallets ve benzeri projeler için sphinx teması sağlar. + https://files.pythonhosted.org/packages/da/ff/dc403f870b3e7886aabc4abab24feeeae0ca8b6278cca2a402d3249ed4f3/Pallets-Sphinx-Themes-2.0.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-pallets-sphinx-themes/pspec.xml + + + python3-pallets-sphinx-themes + Sphinx themes for Pallets and related projects. + + python3-importlib_metadata + python3-sphinx + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pallets-sphinx-themes + + + + + 2021-10-22 + 2.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-18 + 1.2.3 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-paramiko + https://github.com/paramiko/paramiko/ + + PisiLinux Community + admins@pisilinux.org + + LGPL + library + programming.language.python3 + SSH2 implementation for Python + Python3 için SSH2 Protokolü Uygulaması + python-paramiko is a module for python 2.2 (or higher) that implements the SSH2 protocol for secure (encrypted and authenticated) connections to remote machines. + Paramiko, python 2.2 ya da üzeri için, uzak makinelere güvenli (şifrelenmiş ve doğrulanmış) bağlantılar kurmak amacıyla SSH2 protokolünü uygulayan bir Python Modülüdür. + paramiko es un módulo para python 2.2 (o posterior) que implementa el protocolo SSH2 para conexiones seguras (encriptado y autenticado) con equipos remotos. + https://github.com/paramiko/paramiko/archive/2.8.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-paramiko/pspec.xml + + + python3-paramiko + Paramiko module for python3 + + python3-cryptography + python3-pynacl + python3-bcrypt + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-paramiko + + + + + 2021-10-28 + 2.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-13 + 2.7.1 + Version bump and Rebuilt + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-22 + 2.6.0 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-03-31 + 1.16.0 + Version bump, rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2013-11-19 + 1.12.0 + Version bump + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2012-11-15 + 1.7.7.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python3-parso + https://github.com/davidhalter/parso + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A Python Parser. + Bir python çözümleyicisi. + Parso is a Python parser that supports error recovery and round-trip parsing for different Python versions (in multiple Python versions). Parso is also able to list multiple syntax errors in your python file. + python3-parso, python ile yazdığınız kodlardaki sözdizim hatalarını bulabilen hata düzeltmelerini destekleyen bir python kitaplığıdır. + https://github.com/davidhalter/parso/archive/refs/tags/v0.8.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-parso/pspec.xml + + + python3-parso + A Python Parser. + + python3 + + + /usr/share/doc/python3-parso + /usr/lib/python3* + + + + + 2021-08-21 + 0.8.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 0.7.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-06 + 0.6.2 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pbr + https://pypi.org/project/pbr/ + + Blue Devil + bluedevil@sctzine.com + + Apache + app:console + library + programming.language.python3 + Python Build Reasonableness + Python İnşa Uygunluğu + PBR is a library that injects some useful and sensible default behaviors into your setuptools run. + python3-pbr, python setuptools ile olan kurulumunuza bazı işlevsel davranışlar ekleyen bir python3 kitaplığıdır. + https://pypi.org/packages/source/p/pbr/pbr-5.6.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-pbr/pspec.xml + + + python3-pbr + Python Build Reasonableness + + python3-setuptools + python3 + + + /usr/bin + /usr/share/doc + /usr/lib + /usr/share + + + + + 2021-10-28 + 5.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-08 + 5.4.5 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 5.4.4 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pexpect + https://pexpect.readthedocs.org/en/stable/ + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + programming.language.python3 + For controlling and automating applications + For controlling and automating applications + For controlling and automating applications + For controlling and automating applications + https://github.com/pexpect/pexpect/archive/4.8.0.tar.gz + + python3-devel + python3-ptyprocess + python3-setuptools + + programming/language/python3/python3-pexpect/pspec.xml + + + python3-pexpect + + python3 + python3-ptyprocess + + + /usr/lib/python3* + /usr/share/doc + + + + + 2021-10-22 + 4.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-03 + 4.8.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-pgi + https://github.com/pygobject/pgi + + PisiLinux Community + admins@pisilinux.org + + LGPL 2.1+ + library + programming.language.python3 + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + https://github.com/pygobject/pgi/archive/refs/tags/0.0.11.2.tar.gz + + python3-devel + python3-setuptools + gobject-introspection-devel + + programming/language/python3/python3-pgi/pspec.xml + + + python3-pgi + GObject Introspection bindings written in pure Python using ctypes and cffi (optional). API compatible with PyGObject. + + python3 + gobject-introspection + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc* + + + + + 2022-05-01 + 0.0.11.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-pillow + https://python-pillow.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + wrapper (version enrobée) Python3 de la librairie de graphisme vectoriel cairo. + PIL is the fork of Python Imaging Library. + Python Görsel Kitaplığı (PIL - Python Imaging Library) çatalıdır. + Pillow is the friendly PIL fork by Alex Clark and Contributors. PIL is the Python Imaging Library by Fredrik Lundh and Contributors. As of 2019, Pillow development is supported by Tidelift. + python3-pillow, özgür python PIL(Python Imaging Library - Python Görsel Kitaplığı) kütüphanesinin özgür yazılımcılar tarafından geliştirilen çatalıdır. + https://github.com/python-pillow/Pillow/archive/8.3.1.tar.gz + + tiff-devel + webp-devel + zlib-devel + lcms2-devel + libxcb-devel + python3-devel + freetype-devel + python3-Jinja2 + openjpeg2-devel + python3-setuptools + libjpeg-turbo-devel + libimagequant-devel + python3-tk + python3-cffi + python3-sphinx + python3-olefile + python3-pycparser + python3-sphinx-removed-in + python3-sphinx_rtd_theme + python3-charset-normalizer + python3-sphinx-copybutton + + + python-pillow_spinxwarn.patch + python-pillow_sphinx.patch + + programming/language/python3/python3-pillow/pspec.xml + + + python3-pillow + PIL is the fork of Python Imaging Library. + + tiff + webp + zlib + lcms2 + libxcb + python3 + freetype + openjpeg2 + libjpeg-turbo + libimagequant + python3-Jinja2 + python3-sphinx-removed-in + python3-sphinx-copybutton + python3-charset-normalizer + + + /usr/share/doc + /usr/lib + + + + python3-pillow-devel + Development files for python3-pillow + python3-pillow için geliştirme dosyaları + python3-pillow-devel, python3-pillow için geliştirme dosyalarını içerir. + + zlib-devel + python3-devel + libjpeg-turbo-devel + python3-pillow + + + /usr/include + + + + python3-pillow-docs + Documentation files for python3-pillow + python3-pillow için belgelendirme dosyaları + python3-pillow-docs, python3-pillow için belgelendirme dosyaları içerir. + + python3-pillow + + + /usr/share/doc/python3-pillow/html + + + + + 2021-10-22 + 8.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 7.2.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 7.1.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 7.1.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 7.0.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 5.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-10 + 4.3.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-01-25 + 4.0.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-18 + 3.1.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + python3-pkgconfig + https://github.com/matze/pkgconfig + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A Python interface to the pkg-config command line tool. + pkg-config komut satırı aracı için python arayüzü. + pkgconfig is a Python module to interface with the pkg-config command line tool and supports Python 2.6+ and 3.3+.. + python3-pkgconfig, pkg-config komut satırı aracı için python arayüzü sunar. + https://pypi.io/packages/source/p/pkgconfig/pkgconfig-1.5.5.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pkgconfig/pspec.xml + + + python3-pkgconfig + A Python interface to the pkg-config command line tool. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pkgconfig + + + + + 2021-10-28 + 1.5.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-20 + 1.5.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pluggy + https://github.com/pytest-dev/pluggy + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A minimalist production ready plugin system + Minimalist bir hazır üretim eklenti sistemi. + pluggy is the crystallized core of plugin management and hook calling for pytest. It enables 500+ plugins to extend and customize pytest’s default behaviour. + python3-pluggy, minimalist bir hazır üretim eklenti sistemi içerir. + https://github.com/pytest-dev/pluggy/archive/0.13.1.tar.gz + + pip3 + python3-setuptools-scm + python3-setuptools + python3-devel + + programming/language/python3/python3-pluggy/pspec.xml + + + python3-pluggy + A minimalist production ready plugin system + + python3-importlib_metadata + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pluggy + + + + + 2021-10-22 + 0.13.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-13 + 0.13.1 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-PLY + https://www.dabeaz.com/ply/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.python3 + Implementation of lex and yacc parsing tools + PLY is an implementation of lex and yacc parsing tools for Python. + https://sourceforge.net/projects/pisilinux/files/source/ply-3.11.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-PLY/pspec.xml + + + python3-PLY + + python3 + + + /usr/bin + /usr/lib + /usr/include + /usr/share/doc + + + + + 2021-10-28 + 3.11 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2020-01-15 + 3.11 + First release + İdris Kalp + idriskalp@gmail.com + + + + + + python3-pocketsphinx + https://github.com/AzatAI/pocketsphinx-python + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. + This package provides a python interface to CMU Sphinxbase and Pocketsphinx libraries created with SWIG and Setuptools. + https://files.pythonhosted.org/packages/13/6f/280431fc903d7bc1a0b7efe5dc837602f0f193e382b36006bf23178acab5/pocketsphinx2-0.1.17.tar.gz + + python3-devel + swig + alsa-lib-devel + pulseaudio-libs-devel + python-setuptools + python3-setuptools + + programming/language/python3/python3-pocketsphinx/pspec.xml + + + python3-pocketsphinx + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + + python3 + python3-soupsieve + + + /usr/lib/python3* + /usr/share/doc/python3-pocketsphinx + + + + python-pocketsphinx + Pocketsphinx is a part of the CMU Sphinx Open Source Toolkit For Speech Recognition. + + python + + + /usr/lib/python* + /usr/share/doc/python-pocketsphinx + + + + + 2022-01-23 + 0.1.17 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-psutil + https://github.com/giampaolo/psutil + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + A cross-platform process utilities module for Python + Platform bağımsız, süreçler hakkında bilgi sağlayan bir Python modülü + python3-psutil is a module providing an interface for retrieving information on all running processes and system utilization (CPU, memory) in a portable way by using Python, implementing many functionalities offered by command line tools like ps, top, kill, lsof and netstat. + python3-psutil, bütün çalışan süreçler ve sistem kullanımı (MİB - Merkezi İşlem Birim(CPU) ve hafıza gibi) hakkında bilgilere erişimek için arayüz sunan bir Python modülüdür. ps, top, kill, lsof, netstat gibi bir çok komut satırı araçlarının sunduğu işlevselliği sağlamaktadır. + https://github.com/giampaolo/psutil/archive/release-5.8.0.tar.gz + + python3-devel + + programming/language/python3/python3-psutil/pspec.xml + + + python3-psutil + A cross-platform process utilities module for Python + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-psutil + + + + + 2021-10-22 + 5.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 5.7.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 5.7.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-07 + 5.6.7 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 5.4.6 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-23 + 5.4.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-01 + 5.0.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 4.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 4.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python3-psycopg2 + https://www.psycopg.org/ + + Blue Devil + bluedevil@sctzine.com + + LGPL3 + library + programming.language.python3 + PostgreSQL database adapter for the Python programming language. + Python programlama dili için PostgreSQL veritabanı adaptörü. + Psycopg is the most popular PostgreSQL database adapter for the Python programming language. Its main features are the complete implementation of the Python DB API 2.0 specification and the thread safety (several threads can share the same connection). + python3-psycopg2, python programlama dili için PostgreSQL veritabanı adaptörü sunar. + https://github.com/psycopg/psycopg2/archive/2_9_1.tar.gz + + python3-setuptools + postgresql-lib + python3-devel + + programming/language/python3/python3-psycopg2/pspec.xml + + + python3-psycopg2 + PostgreSQL database adapter for the Python programming language. + + postgresql-lib + python3 + + + /usr/share/doc/python3-psycopg2 + /usr/lib/python3* + + + + + 2021-10-28 + 2.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-07 + 2.8.5 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-20 + 2.8.4 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-ptyprocess + https://github.com/pexpect/ptyprocess + + Pisi Linux Admins + admin@pisilinux.org + + ISC + library + programming.language.python3 + Run a subprocess in a pseudo terminal + Run a subprocess in a pseudo terminal + Run a subprocess in a pseudo terminal + Run a subprocess in a pseudo terminal + https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-ptyprocess/pspec.xml + + + python3-ptyprocess + + python3 + + + /usr/lib/python3* + /usr/share/doc + + + + + 2021-10-22 + 0.7.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-03 + 0.7.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-py + https://github.com/pytest-dev/py + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python development support library (note: maintenance only) + Python geliştirme destek kitaplığı + The python3-py lib is a Python development support library. + python3-py kitaplığı python geliştirmek icin destek kitaplığı sunar. + https://files.pythonhosted.org/packages/0d/8c/50e9f3999419bb7d9639c37e83fa9cdcf0f601a9d407162d6c37ad60be71/py-1.10.0.tar.gz + + pip3 + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-py/pspec.xml + + + python3-py + Python development support library (note: maintenance only) + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-py + + + + + 2021-10-22 + 1.10.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 1.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 1.9.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 1.8.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyalsaaudio + http://larsimmisch.github.io/pyalsaaudio/ + + PisiLinux Community + admins@pisilinux.org + + PSF + library + programming.language.python3 + This package contains wrappers for accessing the ALSA API from Python. + This package contains wrappers for accessing the ALSA API from Python. + It is fairly complete for PCM devices and Mixer access. + It is fairly complete for PCM devices and Mixer access. + https://files.pythonhosted.org/packages/a9/bd/24f576c07953671edfeba2545c3c92c46e97384f622957ecf95967c2b456/pyalsaaudio-0.9.2.tar.gz + + python3-devel + python-setuptools + python-devel + python3-setuptools + alsa-lib-devel + + programming/language/python3/python3-pyalsaaudio/pspec.xml + + + python3-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. + + python3 + alsa-lib + + + /usr/lib/python3* + /usr/share/doc/python3-pyalsaaudio + + + + python-pyalsaaudio + This package contains wrappers for accessing the ALSA API from Python. + + python + alsa-lib + + + /usr/lib/python2.7 + + + + + 2022-06-03 + 0.9.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-23 + 0.9.0 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-pyasn1 + https://github.com/etingof/pyasn1 + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Python bindings for ASN.1 types and codecs + Python3 için ASN.1 kitaplığı + Pure-Python implementation of ASN.1 types and DER/BER/CER codecs (X.208) + python3-pyasn1 ASN.1 türleri ve DER/BER/CER kodekleri (X.208) içeren bir python kitaplığıdır. + https://github.com/etingof/pyasn1/archive/v0.4.8.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pyasn1/pspec.xml + + + python3-pyasn1 + Python bindings for ASN.1 types and codecs + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pyasn1 + + + + + 2021-10-28 + 0.4.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-23 + 0.4.8 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyasn1-modules + https://github.com/etingof/pyasn1-modules/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A collection of ASN.1-based protocols modules. + Python3 için ASN.1-temelli protokol modülleri kolleksiyonu + A collection of ASN.1 modules expressed in form of pyasn1 classes. Includes protocols PDUs definition (SNMP, LDAP etc.) and various data structures (X.509, PKCS etc.). + python3-pyasn1-modules Python3 için ASN.1-temelli protokol modülleri kolleksiyonunu içerir. + https://github.com/etingof/pyasn1-modules/archive/v0.2.8.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pyasn1-modules/pspec.xml + + + python3-pyasn1-modules + A collection of ASN.1-based protocols modules. + + python3 + python3-pyasn1 + + + /usr/lib/python3* + /usr/share/doc/python3-pyasn1-modules + + + + + 2021-10-28 + 0.2.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-23 + 0.2.8 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyatspi + http://www.linuxfoundation.org/collaborate/workgroups/accessibility + + Kamil Atlı + suvari@pisilinux.org + + LGPLv2+ + library + programming.language.python3 + Python bindings for at-spi2-core + at-spi2-core altyapısı için Python bağlayıcısı + python3-pyatspi provides a python client library for the AT-SPI D-Bus accessibility infrastructure. + python3-pyatspi AT-SPI D-Bus erişilebilirlik altyapısı için python istemci kitaplığıdır. + http://ftp.acc.umu.se/pub/GNOME/sources/pyatspi/2.38/pyatspi-2.38.2.tar.xz + + python3-pygobject3-devel + python-pygobject3-devel + at-spi2-core-devel + + programming/language/python3/python3-pyatspi/pspec.xml + + + python3-pyatspi + Python bindings for at-spi2-core + + python3-pygobject3 + at-spi2-core + python3 + + + /usr/lib/python* + /usr/share/doc + + + + + 2021-12-10 + 2.38.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2.38.1 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-04 + 2.38.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-17 + 2.36.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 2.34.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 2.30.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-PyAudio + http://people.csail.mit.edu/hubert/pyaudio/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + Python Bindings for PortAudio. + Python Bindings for PortAudio. + ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) + ython bindings for PortAudio (Fork to fix PY_SSIZE_T_CLEAN error) + https://files.pythonhosted.org/packages/ab/42/b4f04721c5c5bfc196ce156b3c768998ef8c0ae3654ed29ea5020c749a6b/PyAudio-0.2.11.tar.gz + + python3-devel + portaudio-devel + + programming/language/python3/python3-PyAudio/pspec.xml + + + python3-PyAudio + Python Bindings for PortAudio. + + python3 + portaudio + + + /usr/lib/python3* + /usr/share/doc/python3-PyAudio + + + + + 2022-01-23 + 0.2.11 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-pychromecast + https://github.com/balloob/pychromecast + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python3 module to talk to Google Chromecast. + YouTube Chromecast APIsi sağlayan python3 bağlayıcısı. + python3-pychromecast provides a way to talk with the Google Chromecast. + python3-pychromecast, Google Chromecast ile konuşmayı sağayan bir python3 kitaplığıdır. + https://github.com/home-assistant-libs/pychromecast/archive/9.3.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pychromecast/pspec.xml + + + python3-pychromecast + Python3 module to talk to Google Chromecast. + + python3 + python3-six + python3-requests + python3-zeroconf + python3-protobuf + python3-setuptools + + + /usr/lib/python3* + /usr/share/doc/python3-pychromecast + + + + + 2021-10-28 + 9.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-31 + 7.2.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-19 + 5.2.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pycountry + https://github.com/flyingcircusio/pycountry + + Blue DeviL + bluedevil@sctzine.com + + LGPLv2.1 + library + programming.language.python3 + ISO country, subdivision, language, currency and script definitions and their translations. + Python3 pycountry modülü + This is the pycountry module, a Python library to access ISO country, subdivision, language, currency and script definitions and their translations. + python3-pycountry modülü ISO ülke, kur bilgisi ve bunların çevirilerine ait kitaplık sunar. + https://github.com/flyingcircusio/pycountry/archive/20.7.3.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pycountry/pspec.xml + + + python3-pycountry + ISO country, subdivision, language, currency and script definitions and their translations. + + python3 + python3-setuptools + + + /usr/lib/python3* + /usr/share/doc/python3-pycountry + + + + + 2021-10-28 + 20.7.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 20.7.3 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-10 + 19.8.18 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-pycparser + https://github.com/eliben/pycparser + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Complete C99 parser in pure Python + Python ile yazılmış C99 cözümleyicisi. + pycparser is a parser for the C language, written in pure Python. It is a module designed to be easily integrated into applications that need to parse C source code. + pycparser, C kaynak kodunu çözümlemesi gereken uygulamalara kolaylıkla bütünleşebilen bir python modülüdür. + https://github.com/eliben/pycparser/archive/release_v2.20.tar.gz + + python3-setuptools + python3 + + programming/language/python3/python3-pycparser/pspec.xml + + + python3-pycparser + Complete C99 parser in pure Python + + python3 + + + /usr/share/doc/python3-pycparser + /usr/lib/python3* + + + + + 2021-10-22 + 2.20 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 2.20 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-07 + 2.19 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pycrypto + https://www.dlitz.net/software/pycrypto/ + + Blue DeviL + bluedevil@sctzine.com + + PD + library + programming.language.python3 + Python3 pycrypto module + Python3 pycrypto modülü + A collection of cryptographic algorithms and protocols, implemented for use from Python2. + python3-pycrypto, Python2 için kriptografik algoritmalar ve protokoller içeren bir kitaplıktır. + https://files.pythonhosted.org/packages/60/db/645aa9af249f059cc3a368b118de33889219e0362141e75d4eaf6f80f163/pycrypto-2.6.1.tar.gz + + gmp-devel + python3-devel + python3-setuptools + + programming/language/python3/python3-pycrypto/pspec.xml + + + python3-pycrypto + Python3 pycrypto module + + gmp + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pycrypto + + + + + 2021-10-28 + 2.6.1 + First pisi release + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-21 + 2.7a.1 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-pycryptodomex + https://pypi.org/project/pycryptodomex/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A self-contained Python package of low-level cryptographic primitives and doesn't conflict with pycrypto. + Düşük seviye kriptografik ilkeler içeren python3 paketidir. + PyCryptodomex is a self-contained Python package of low-level cryptographic primitives.PyCryptodome is a fork of PyCrypto. It brings several enhancements with respect to the last official version of PyCrypto (2.6.1) + PyCrypto'dan çatallanan PyCryptodomex düşük seviye kriptografik ilkeler içeren bir python3 kitaplığıdır. + https://pypi.org/packages/source/p/pycryptodomex/pycryptodomex-3.11.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pycryptodomex/pspec.xml + + + python3-pycryptodomex + A self-contained Python package of low-level cryptographic primitives + + python3 + gmp + + + /usr/lib/python3* + /usr/share/doc/python3-pycryptodomex + + + + + 2021-10-28 + 3.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 3.9.8 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-24 + 3.9.7 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyelftools + https://github.com/eliben/pyelftools + + Blue DeviL + bluedevil@sctzine.com + + Public Domain + library + app:console + programming.language.python3 + Python3 library for analyzing ELF files and DWARF debugging information + Python3 için pyelftools modülü + pyelftools is a pure-Python library for parsing and analyzing ELF files and DWARF debugging information. + pyelftools ELF ve DWARF dosyaları için çözümleme, inceleme ve hata ayıklamak için python ile yazılmış bir kitaplıktır. + https://github.com/eliben/pyelftools/archive/v0.27.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pyelftools/pspec.xml + + + python3-pyelftools + Python3 library for analyzing ELF files and DWARF debugging information + + python3 + + + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2021-10-28 + 0.27 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-12 + 0.26 + First pisi release. + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-Pygments + https://pygments.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + A syntax highlighting package written in Python + Python dilinde yazılmış bir sözdizimi belirtme aracı + python-Pygments is a generic syntax highlighter for general use in all kinds of software such as forum systems, wikis or other applications that need to prettify source code. + python3-Pygments, kaynak kodunu güzelleştirmek ihtiyacı duyulan forum sistemleri, wikiler ve diğer uygulamalar gibi her çeşit yazılımda kullanılmak için yazılmış olan genel bir sözdizimi belirtme aracıdır. + https://github.com/pygments/pygments/archive/2.9.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-Pygments/pspec.xml + + + python3-Pygments + A syntax highlighting package written in Python + + python3-setuptools + + + /usr/lib/python3* + /usr/bin + /usr/share/man + + + + python3-Pygments-docs + Documentation files for python3-Pygments + + /usr/share/doc/python3-Pygments + + + + + 2021-10-22 + 2.9.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 2.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-11 + 2.6.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-29 + 2.5.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-01-27 + 2.2.0 + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + python3-pygobject3 + http://www.pygtk.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.language.python3 + Bindings (liens) glib pour Python3. + Python Bindings for GLib/GObject/GIO/GTK+ + GLib/GObject/GIO/GTK+ için python3 bağlayıcıları. + pygobject is GLib's GObject library bindings for Python3. + python3-pygobject, Python3 için yazılmış, Glib'in GObject kütüphanesi bağlayıcısıdır. + http://ftp.acc.umu.se/pub/GNOME/sources/pygobject/3.42/pygobject-3.42.1.tar.xz + + meson + glib2-devel + libffi-devel + python3-devel + python3-cairo-devel + gobject-introspection-devel + + programming/language/python3/python3-pygobject3/pspec.xml + + + python3-pygobject3 + Python Bindings for GLib/GObject/GIO/GTK+ + + cairo + glib2 + libffi + python3 + python3-cairo + gobject-introspection + + + /usr/share/doc + /usr/share/pygobject + /usr/lib/python3* + /usr/lib/libpyglib-gi-2.0-python3*.so* + + + + python3-pygobject3-devel + Development files for python3-pygobject3 + python3-pygobject3 için geliştirme dosyaları + python3-pygobject3-devel, python3-pygobject3 için geliştirme dosyalarını içerir. + + glib2-devel + libffi-devel + gobject-introspection-devel + python3-pygobject3 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-31 + 3.42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 3.40.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-31 + 3.40.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 3.36.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 3.36.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-07 + 3.34.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-05 + 3.32.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2019-09-14 + 3.32.2 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 3.27.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 3.27.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-08-01 + 3.22.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 3.22.0 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 3.22.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.18.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 3.18.2 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-08 + 3.18.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + python3-pyinotify + https://github.com/seb-m/pyinotify + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + Monitoring filesystems events with inotify on Linux. + Monitoring filesystems events with inotify on Linux. + Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. + Pyinotify is a Python module for monitoring filesystems changes. Pyinotify relies on a Linux Kernel feature (merged in kernel 2.6.13) called inotify. inotify is an event-driven notifier, its notifications are exported from kernel space to user space through three system calls. pyinotify binds these system calls and provides an implementation on top of them offering a generic and abstract way to manipulate those functionalities. + https://github.com/seb-m/pyinotify/archive/refs/tags/0.9.6.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pyinotify/pspec.xml + + + python3-pyinotify + Monitoring filesystems events with inotify on Linux. + + python3 + + + /usr/bin* + /usr/lib/python3* + /usr/share/doc* + + + + + 2022-01-23 + 0.9.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-pylibacl + https://pylibacl.k1024.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.language.python3 + This python 2.2+ extension module allows you to manipulate the POSIX.1e Access Control Lists present in some os/filesystem combinations + POSIX.1e Access Control Listelerini manipüle eden bir python 2.2+ eklentisi. + Ce module d'extension de python 2.2+ permet de manipuler les Listes de Contrôle d'Accès POSIX.1e présentes dans certaines combinaisons de systèmes d'exploitations/systèmes de fichiers. + python-libacl is a C extension module for Python which implements POSIX ACLs manipulation. It is a wrapper on top of the systems's acl C library. + Bu python 2.2+ eklentisi sayesinde bazı işletim sistemi/dosya sistemi kombinasyonlarındaki POSIX.1e Erişim Kontrol Listeleri işlenebilir. + https://pylibacl.k1024.org/downloads/pylibacl-0.6.0.tar.gz + + acl-devel + python3-devel + python3-setuptools + + programming/language/python3/python3-pylibacl/pspec.xml + + + python3-pylibacl + This python 2.2+ extension module allows you to manipulate the POSIX.1e Access Control Lists present in some os/filesystem combinations + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pylibacl + + + + + 2021-10-28 + 0.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-13 + 0.5.4 + Rebuilt and split packages + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-21 + 0.5.4 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2016-04-03 + 0.5.3 + Version bump, rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + 2013-11-16 + 0.5.1 + Rebuild + Burak Fazıl Ertürk + burakerturk@pisilinux.org + + + 2010-04-30 + 0.5.1 + First release + Erdinç Gültekin + admins@pisilinux.org + + + + + + python3-pylint + https://pylint.org/ + + Blue Devil + bluedevil@sctzine.com + + GPL + library + programming.language.python3 + A python code static checker tools. + Python kaynak kodlarını hatalara karşı tarayan bir araç. + python3-pylint is a Python static code analysis tool which looks for programming errors, helps enforcing a coding standard, sniffs for code smells and offers simple refactoring suggestions. + python3-pylint, bir Python modülünün standartlara uyup uymadığını, hatalar içerip içermediğini analiz eden bir uygulamadır. + https://github.com/PyCQA/pylint/archive/refs/tags/v2.11.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pylint/pspec.xml + + + python3-pylint + A Python module for decorators, wrappers and monkey patching. + + python3 + python3-toml + python3-isort + python3-mccabe + python3-astroid + python3-setuptools + + + /usr/share/doc/ + /usr/bin + /usr/lib/python3* + + + + + 2021-10-13 + 2.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 2.11.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 2.6.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pynacl + https://github.com/pyca/pynacl/ + + Blue DeviL + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Python3 binding to the Networking and Cryptography (NaCl) library + Python3 için NaCl modülü + python3-pynacl PyNaCl is a Python3 binding to libsodium, which is a fork of the Networking and Cryptography library. These libraries have a stated goal of improving usability, security and speed. + PyNaCl, ağ ve kriptografi kitaplığından geliştirilen libsodium kitaplığının python3 modülüdür. + https://github.com/pyca/pynacl/archive/1.4.0.tar.gz + + pip3 + python3-devel + python3-setuptools + + programming/language/python3/python3-pynacl/pspec.xml + + + python3-pynacl + PyNaCl module for python3 + + python3 + python3-cffi + + + /usr/lib/python3* + /usr/share/doc/python3-pynacl + + + + + 2021-10-28 + 1.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 1.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-11 + 1.3.0 + Rebuilt + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-25 + 1.3.0 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-pyparsing + https://github.com/pyparsing/pyparsing/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python3 parsing module + Python3 cözümleme modülü. + The pyparsing module is an alternative approach to creating and executing simple grammars, vs. the traditional lex/yacc approach, or the use of regular expressions. The pyparsing module provides a library of classes that client code uses to construct the grammar directly in Python code. + python3-pyparsing modülü lex/yacc yaklaşımı veya regex dışında basit dilbilgisi yaratma ve çalıştırmak için alternatif bir yaklaşım sunar. + https://files.pythonhosted.org/packages/c1/47/dfc9c342c9842bbe0036c7f763d2d6686bcf5eb1808ba3e170afdb282210/pyparsing-2.4.7.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-pyparsing/pspec.xml + + + python3-pyparsing + Python3 parsing module + + python3 + + + /usr/share/doc/python3-pyparsing + /usr/lib/python3* + + + + + 2021-10-22 + 2.4.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-07 + 2.4.7 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 2.4.6 + First Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pypcap + https://github.com/pynetwork/pypcap + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Python3 pcap module + Python3 pcap modülü + This is a simplified object-oriented Python wrapper for libpcap - the current tcpdump.org version, and the WinPcap port for Windows. + python3-pypcap, python3 için basitleştirilmiş, nesne tabanlı bir sarmalayıcı modüldür. + https://pypi.org/packages/source/p/pypcap/pypcap-1.2.3.tar.gz + + pip3 + libpcap-devel + python3-devel + python3-setuptools + + + pypcap-python3.9.patch + + programming/language/python3/python3-pypcap/pspec.xml + + + python3-pypcap + Python3 pcap module + + libpcap + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pypcap + + + + + 2021-10-28 + 1.2.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-13 + 1.2.3 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-pypdf2 + https://mstamy2.github.com/PyPDF2 + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A utility to read and write pdfs with Python + Python3 pypdf2 modülü + PyPDF2 is a pure-python PDF toolkit originating from the pyPdf project. PyPDF2 can extract data from PDF files, or manipulate existing PDFs to produce a new file. PyPDF2 is compatible with Python versions 2.6, 2.7, and 3.2 - 3.5. + PyPDF2 artık güncellenmeyen pypdf aracının devam projesidir. PyPDF2 PDF dosyalarından veri çıkartabilir veya eski PDF'i değistirerek yeni bir PDF oluşturabilir. + https://github.com/mstamy2/PyPDF2/archive/1.26.0.tar.gz + + python3-devel + + programming/language/python3/python3-pypdf2/pspec.xml + + + python3-pypdf2 + Python3 pyPDF2 module + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pypdf2 + + + + + 2021-10-28 + 1.26.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-13 + 1.26.0 + Rebuilt and split packages + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyrsistent + https://github.com/tobgu/pyrsistent + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Persistent/Immutable/Functional data structures for Python. + Kalıcı/Değismez/İşlevsel veriyapıları kitaplığı. + Pyrsistent is a number of persistent collections (by some referred to as functional data structures). Persistent in the sense that they are immutable. + python3-pyrsistent python için Kalıcı/Değişmez/İşlevsel veriyapıları kitaplığı sağlar. + https://github.com/tobgu/pyrsistent/archive/v0.18.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-pyrsistent/pspec.xml + + + python3-pyrsistent + Persistent/Immutable/Functional data structures for Python. + + python3-six + python3 + + + /usr/share/doc/python3-pyrsistent + /usr/lib/python3* + + + + + 2021-10-28 + 0.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-27 + 0.16.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-19 + 0.15.7 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyserial + https://pyserial.readthedocs.io/en/latest/shortintro.html + + fury + uglyside@yandex.ru + + BSD-3-Clause + library + programming.language.python3 + This module encapsulates the access for the serial port. + This module encapsulates the access for the serial port. It provides backends for Python running on Windows, OSX, Linux, BSD (possibly any POSIX compliant system) and IronPython. The module named “serial” automatically selects the appropriate backend. + https://files.pythonhosted.org/packages/source/p/pyserial/pyserial-3.5.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-pyserial/pspec.xml + + + python3-pyserial + + python3 + python3-urllib3 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 3.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-03 + 3.5 + First build + fury + uglyside@yandex.ru + + + + + + python3-PyShellCode + https://github.com/thomaskeck/PyShellCode/ + + Blue Devil + bluedevil@sctzine.com + + GPL3 + library + programming.language.python3 + Execute ShellCode / "Inline-Assembler" in Python + Python3 ile shellcode koşmanızı sağlar + Execute ShellCode in Python. In other words, allows to use "inline assembler" in Python. + python3-PyShellCode, python3 içerisinde assembly(NASM sözdizimi ile) ya da shellkod koşmanızı sağlar. + https://github.com/thomaskeck/PyShellCode/archive/v1.0.tar.gz + + python3-devel + cmake + + programming/language/python3/python3-PyShellCode/pspec.xml + + + python3-PyShellCode + Execute ShellCode / "Inline-Assembler" in Python + + python3 + + + /usr/lib + /usr/lib/python3* + /usr/share/doc/python3-PyShellCode + + + + python3-PyShellCode-devel + Development headers for the python3-PyShellCode module + + python3-PyShellCode + + + /usr/include/ + + + + + 2021-10-28 + 1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-09 + 1.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pysmbc + http://cyberelk.net/tim/software/pysmbc + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + library + programming.language.python3 + Python interface to the libsmbclient library + libsmbclient kitaplığı için Python arayüzü + python-smbc is a Python binding for the libsmbclient library. + python3-pysmbc, libsmbclient kitaplığı için bir Python bağlayıcısıdır. + https://pypi.org/packages/source/p/pysmbc/pysmbc-1.0.23.tar.gz + + samba-devel + python3-devel + python3-setuptools + + programming/language/python3/python3-pysmbc/pspec.xml + + + python3-pysmbc + Python3 interface to the libsmbclient library + + samba + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-pysmbc + + + + + 2021-10-22 + 1.0.23 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-24 + 1.0.22 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 1.0.21 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 1.0.20 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.0.19 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 1.0.18 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pysol_cards + https://pypi.org/project/pysol-cards/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Deal PySol FC Cards + PySol FC Kartlarını Dağıtır + The pysol-cards python modules allow the python developer to generate the initial deals of some PySol FC games. It also supports PySol legacy deals and Microsoft FreeCell / Freecell Pro deals. + python3-pysol_cards, pysol-cards python modülleri python geliştiricisine PySol FC oyunları için kart dağıtma yordamları sunar. + https://pypi.io/packages/source/p/pysol_cards/pysol_cards-0.12.0.tar.gz + + pip3 + python3-devel + python3-setuptools + + programming/language/python3/python3-pysol_cards/pspec.xml + + + python3-pysol_cards + Deal PySol FC Cards + + python3 + python3-pbr + + + /usr/share + /usr/lib + /usr/share/doc + + + + + 2021-10-28 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 0.10.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 0.8.9 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 0.8.8 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 0.8.7 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pytest + https://pytest.org/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Simple powerful testing with Python + Basit ve güçlü python3 için test modülü. + The pytest framework makes it easy to write small tests, yet scales to support complex functional testing for applications and libraries. + python3-pytest, python3 için güçlü ve basit test modülü içerir. + https://files.pythonhosted.org/packages/5b/98/92bbda5f83ed995ef8953349ef30c77c934abcc251c42ab3d7787a40c49c/pytest-6.2.4.tar.gz + + python3-six + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-pytest/pspec.xml + + + python3-pytest + Simple powerful testing with Python + + python3 + python3-py + python3-attrs + python3-pluggy + python3-wcwidth + python3-packaging + python3-setuptools + python3-more-itertools + + + /usr/lib/python3* + /usr/bin/pytest + /usr/bin/py.test + /usr/share/doc/python3-pytest + + + + + 2021-10-22 + 6.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 6.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-23 + 6.0.2 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 5.4.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-17 + 5.4.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-13 + 5.3.5 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pytest-runner + https://pytest.org/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Invoke py.test as distutils command with dependency resolution + Bağımlılık çözünürlüğü ile beraber distutils komutu olarak py.test çalıştırır. + python3-pytest-runner invokes py.test as distutils command with dependency resolution. + python3-pytest-runner, bağımlılık çözünürlüğü ile beraber distutils komutu olarak py.test çalıştırır. + https://files.pythonhosted.org/packages/2a/04/c3223812b3427ffa95110c5781eae7fe8bc3e9e1fe4e2328bee17b9e5820/pytest-runner-5.3.1.tar.gz + + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-pytest-runner/pspec.xml + + + python3-pytest-runner + Simple powerful testing with Python + + python3 + python3-pytest + + + /usr/lib/python3* + /usr/share/doc/python3-pytest-runner + + + + + 2021-10-22 + 5.3.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 5.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 5.2 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-pyttsx3 + https://github.com/nateshmbhat/pyttsx3 + + PisiLinux Community + admins@pisilinux.org + + MPL2 + library + programming.language.python3 + pyttsx3 is a text-to-speech conversion library in Python. + pyttsx3 is a text-to-speech conversion library in Python. + pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. + pyttsx3 is a text-to-speech conversion library in Python. Unlike alternative libraries, it works offline, and is compatible with both Python 2 and 3. + https://github.com/nateshmbhat/pyttsx3/archive/v.2.90.tar.gz + + python3-devel + python3-setuptools + espeak-devel + python3-sphinx + + programming/language/python3/python3-pyttsx3/pspec.xml + + + python3-pyttsx3 + pyttsx3 is a text-to-speech conversion library in Python. + + python3 + espeak + python3-sphinx + + + /usr/lib/python3* + /usr/share/doc/python3-pyttsx3 + + + + + 2022-01-23 + 2.90 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + python3-pyudev + https://pypi.org/project/pyudev/ + + Blue Devil + bluedevil@sctzine.com + + LGPLv2.1 + library + programming.language.python3 + Python3 bindings for libudev library + libudev için Python3 bağlayıcısı + These bindings enable using of udev library in Python programs. + Bu bağlayıcı, Python3 programlarında, udev kitaplığı olan libudev'in işlevselliğinden yararlanmayı sağlar. + https://github.com/pyudev/pyudev/archive/v0.22.tar.gz + + python3-setuptools + python3-devel + eudev-devel + + programming/language/python3/python3-pyudev/pspec.xml + + + python3-pyudev + Python3 bindings for libudev library + + python3-six + python3 + + + /usr/lib + /usr/share/doc + + + + + 2021-10-28 + 0.22 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-29 + 0.22 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-20 + 0.21.0 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-PyYAML + https://pyyaml.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + The next generation YAML parser and emitter for Python3 + Python3 için yeni nesil YAML ayrıştırıcısı + python3-pyyaml is the next generation YAML parser and emitter for Python3. + python3-pyyaml python3 için yeni nesil YAML ayrıştırıcısıdır. + https://github.com/yaml/pyyaml/archive/5.4.1.1.tar.gz + + _yaml.c + + + libyaml-devel + python3-devel + python3-setuptools + + programming/language/python3/python3-PyYAML/pspec.xml + + + python3-PyYAML + The next generation YAML parser and emitter for Python + + python3 + libyaml + python3-setuptools + + + /usr/share/doc/python3-PyYAML + /usr/lib/python3* + + + + + 2021-10-22 + 5.4.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-27 + 5.3.1 + Patch version bump + Blue Devil + bluedevil@sctzine.com + + + 2020-02-22 + 5.3 + Clean and rebuilt. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-11 + 5.3 + Version bump + Blue Devil + bluedevil@sctzine.com + + + 2019-01-02 + 5.2 + Version bump and rebuilt w/ py3.8. + Blue Devil + bluedevil@sctzine.com + + + 2019-10-03 + 5.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-19 + 3.13 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-01 + 3.12 + Rebuild for py3.6.0 + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-01-16 + 3.12 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + python3-pyzmq + https://github.com/zeromq/pyzmq/ + + Blue DeviL + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + PyZMQ: Python3 bindings for zeromq + PyZMQ: ZeroMQ için Python3 bağlayıcıları + This package contains Python bindings for ØMQ. ØMQ is a lightweight and fast messaging implementation. + python3-pyzmq, ZeroMQ için Python3 bağlayıcıları içerir. + https://github.com/zeromq/pyzmq/archive/v22.3.0.tar.gz + + python3-setuptools + python3-devel + zeromq-devel + cython3 + + programming/language/python3/python3-pyzmq/pspec.xml + + + python3-pyzmq + PyZMQ: Python3 bindings for zeromq + + python3 + zeromq + + + /usr/share/doc/python3-pyzmq + /usr/lib/python3* + + + + + 2021-10-28 + 22.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 19.0.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 19.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-31 + 18.1.1 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-qt5 + https://www.riverbankcomputing.com/software/pyqt/intro + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + GPLv3 + library + programming.language.python3 + A set of Python bindings for the Qt 5.x Toolkit + Qt is a set of C++ libraries and development tools that includes platform independent abstractions for graphical user interfaces, networking, threads, Unicode, regular expressions, SQL databases, SVG, OpenGL, XML, and user and application settings. PyQt implements 440 of these classes as a set of Python modules. + https://files.pythonhosted.org/packages/3b/27/fd81188a35f37be9b3b4c2db1654d9439d1418823916fe702ac3658c9c41/PyQt5-5.15.6.tar.gz + + dbus-devel + dbus-python3 + dbus-python-common + python3-devel + python3-sip + qt5-svg-devel + qt5-base-devel + qt5-script-devel + qt5-webkit-devel + qt5-sensors-devel + qt5-location-devel + qt5-designer-devel + python3-pyqt5-sip + qt5-x11extras-devel + qt5-webengine-devel + qt5-multimedia-devel + qt5-serialport-devel + qt5-webchannel-devel + qt5-websockets-devel + qt5-declarative-devel + qt5-xmlpatterns-devel + qt5-networkauth-devel + qt5-connectivity-devel + qt5-quickcontrols2-devel + + + restore-sip4-support.patch + + programming/language/python3/python3-qt5/pspec.xml + + + python3-qt5 + A set of Python 3.x bindings for the Qt 5.x Toolkit + + libgcc + dbus + python3 + python3-sip + qt5-designer + qt5-webengine + qt5-svg + qt5-base + qt5-sensors + qt5-location + qt5-webkit + qt5-x11extras + qt5-multimedia + qt5-serialport + qt5-webchannel + qt5-websockets + qt5-declarative + qt5-xmlpatterns + qt5-connectivity + qt5-networkauth + python3-pyqt5-sip + + + /usr/bin/pyuic5 + /usr/lib/python3.9/site-packages + /usr/lib/qt5/plugins/PyQt5/libpyqt5qmlplugin.so + /usr/lib/qt5/plugins/designer/libpyqt5.so + /usr/share/doc + /usr/share/qt5/qsci/api/python/PyQt5.api + /usr/bin/pyrcc5 + /usr/bin/pylupdate5 + + + + python3-qt5-devel + Development files for python3-qt5 + + libgcc + qt5-base + python3-qt5 + + + /usr/share/sip/PyQt5 + + + + + 2022-04-18 + 5.15.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-06 + 5.15.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-21 + 5.15.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 5.15.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-12 + 5.15.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-19 + 5.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 5.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 5.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-29 + 5.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-04 + 5.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-13 + 5.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-06 + 5.13.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 5.11.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-02 + 5.11.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-14 + 5.11.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-11 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 5.11.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 5.10.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-01 + 5.9.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-22 + 5.9.2 + version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-03 + 5.7.1 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 5.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-07 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-25 + 5.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 5.5.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-random2 + https://pypi.org/project/random2/ + + PisiLinux Community + admins@pisilinux.org + + PSF + app + programming.language.python3 + Python 3 compatible port of Python 2 random module + Python2 rastgele modülünün Python 3'e uygun olan portu. + Python 3 compatible port of Python 2 random module + python3-random2, Python2 rastgele modülünün Python 3'e uygun olan bir port sağlar. + https://files.pythonhosted.org/packages/ee/b5/5aca5217501fbd06b1e5aed6d5986baa0da5380880e6bb6f421ed18e3a32/random2-1.0.1.zip + + python3-six + python3-devel + python3-setuptools + + programming/language/python3/python3-random2/pspec.xml + + + python3-random2 + Python 3 compatible port of Python 2 random module + + python3 + + + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-10-28 + 1.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.0.1 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2018-11-11 + 1.0.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-rdflib + https://pypi.org/project/rdflib/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app + programming.language.python3 + A Python library for working with RDF, a simple yet powerful language for representing information + A Python library for working with RDF, a simple yet powerful language for representing information + A Python library for working with RDF, a simple yet powerful language for representing information + A Python library for working with RDF, a simple yet powerful language for representing information + https://files.pythonhosted.org/packages/source/r/rdflib/rdflib-6.1.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-rdflib/pspec.xml + + + python3-rdflib + + python3 /usr/bin @@ -329836,270 +291994,3200 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol /usr/share/doc - - l-smash-devel - Development files for l-smash. - - l-smash - - - /usr/lib/pkgconfig - /usr/include - - - - 2020-01-17 - 2.14.5 - Rebuild - İdris Kalp - idriskalp@gmail.com - - 2018-07-31 - 2.14.5 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2021-01-18 + 6.1.1 + Version bump + Pisilinux Community + admins@pisilinux.org - 2017-01-25 - 2.9.1 - Rebuild for new toolchain. - Alihan Öztürk - alihan@pisilinux.org - - - 2016-06-12 - 2.9.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - opencore-amr - http://opencore-amr.sourceforge.net/ - + 2021-10-14 + 6.0.1 + Rebuild. PisiLinux Community admins@pisilinux.org - - Apache-2.0 - library - multimedia.video - AMR speech codec implementation - AMR ses kodek sistemi - Opencore AMR is an implementation of Adaptive Multi Rate Narrowband and Wideband speech codec. - Opencore AMR, Adaptive Multi Rate Narrowband ve Wideband ses kodek sistemi altyapısıdır. - mirrors://sourceforge/opencore-amr/opencore-amr/opencore-amr-0.1.5.tar.gz - multimedia/video/opencore-amr/pspec.xml - - - opencore-amr - - /usr/lib - /usr/share/doc/opencore-amr - - - - opencore-amr-devel - Development files for opencore-amr - opencore-amr için geliştirme dosyaları - - opencore-amr - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 0.1.5 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2018-03-26 - 0.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-05 - 0.1.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - 2014-05-20 - 0.1.3 + 2021-10-09 + 6.0.1 First release - Serdar Soytetir - kaptan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - gstreamermm - https://gstreamer.freedesktop.org/bindings/cplusplus.html + python3-recommonmark + https://github.com/readthedocs/recommonmark - Osman Erkan - osman.erkan@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - GPLv2 - library - multimedia.video - GStreamer C++ bindings - Gstreamer C++ arayüzü - The GStreamer API C++ bindings are based on gtkmm, using the same lifecycle mechanism. - Gstreamer'ın C++ arayüzü gtkmm temel alınarak hazırlanmıştır, aynı yaşam ömrü mekanizmasını kullanır. - http://ftp.gnome.org/pub/GNOME/sources/gstreamermm/1.10/gstreamermm-1.10.0.tar.xz + MIT + app + programming.language.python3 + Markdown parser for docutils + Markdown parser for docutils + Belgeler için Markdown ayrıştırıcısı + Belgeler için Markdown ayrıştırıcısı + https://github.com/readthedocs/recommonmark/archive/refs/tags/0.7.1.tar.gz - glibmm-devel - pangomm-devel - cairomm-devel - libxmlpp-devel - gstreamer-devel - gst-plugins-base-devel + python3-devel + python3-sphinx + python3-pytest + python3-docutils + python3-commonmark + python3-setuptools - multimedia/video/gstreamermm/pspec.xml + programming/language/python3/python3-recommonmark/pspec.xml - gstreamermm + python3-recommonmark - glib2 - glibmm - libgcc - libxml2 - libxmlpp - gstreamer - libsigc++ - gst-plugins-base + python3 + python3-sphinx + python3-commonmark + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-25 + 0.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-16 + 0.6.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-reportlab + https://pypi.org/project/reportlab/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + programming.language.python3 + A proven industry-strength PDF generating solution + A proven industry-strength PDF generating solution + A proven industry-strength PDF generating solution + A proven industry-strength PDF generating solution + https://files.pythonhosted.org/packages/16/31/81ff7e3f9fd345cd4685f964fbc3d89a06f39a4f552ab1c2a5769a0f9013/reportlab-3.6.9.tar.gz + + python3-devel + freetype-devel + python3-pillow-devel + + programming/language/python3/python3-reportlab/pspec.xml + + + python3-reportlab + + python3 + freetype /usr/lib - /usr/share/devhelp/books/gstreamermm-1.0 /usr/share/doc - - gstreamermm-next - - - - gstreamermm-devel - gstreamermm için geliştirme dosyaları - gstreamermm için geliştirme dosyaları - - glibmm-devel - libxmlpp-devel - gstreamer-devel - gst-plugins-base-devel - gstreamermm - - - /usr/include/gstreamermm-1.0 - /usr/lib/pkgconfig - - - gstreamermm-next-devel - - - 2022-05-11 - 1.10.0 - Rebuild. - Pisi Linux Community + + 2022-05-05 + 3.6.9 + version Bump + Pisi Linux Admins admin@pisilinux.org - - 2022-04-13 - 1.10.0 - Rebuild. - Pisi Linux Community + + 2021-04-26 + 3.5.67 + First release + Pisi Linux Admins admin@pisilinux.org + + + + + python3-requests + http://www.python-requests.org/ + + Ergün Salman + ergunsalman@hotmail.com + + MIT + library + programming.language.python3 + Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. + Requests insanlar için yapılmış basit bir HTTP kitaplığıdır. + Python’s standard urllib2 module provides most of the HTTP capabilities you need + Requests HTTP/1.1 isteklerini çok basit bir şekilde göndermenize olanak tanıyan bir python kitaplığıdır. + https://github.com/psf/requests/archive/v2.26.0.tar.gz + + python3-devel + python3-setuptools + + + certs.patch + + programming/language/python3/python3-requests/pspec.xml + + + python3-requests + Requests is an Apache2 Licensed HTTP library, written in Python, for human beings. + + python3 + python3-idna + python3-chardet + python3-urllib3 + + + /usr/share/doc/python3-requests + /usr/lib/python3* + + + + + 2021-10-22 + 2.26.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + - 2021-10-27 - 1.10.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-07-21 + 2.24.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com - 2021-06-14 - 1.10.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-02-21 + 2.23.0 + Version bump. + Blue Devil + bluedevil@sctzine.com - 2021-01-18 - 1.10.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2019-12-24 + 2.22.0 + Rebuilt w/ py3.8 and added translations. + Blue Devil + bluedevil@sctzine.com - 2020-01-18 - 1.10.0 - Rebuild. + 2019-07-11 + 2.22.0 + Version Bump. Pisi Linux Community admin@pisilinux.org - 2019-10-05 - 1.10.0 - Rebuild + 2018-05-21 + 2.19.1 + Version Bump. Pisi Linux Community admin@pisilinux.org - 2018-12-16 - 1.10.0 - Rebuild + 2018-05-21 + 2.18.4 + Version Bump. Pisi Linux Community admin@pisilinux.org - 2018-09-28 - 1.10.0 + 2017-03-19 + 2.13.0 Release Bump. Pisi Linux Community admin@pisilinux.org - 2017-02-17 - 0.10.11 - rebuild and edit. + 2016-06-09 + 2.9.1 + Release Bump Pisi Linux Community admin@pisilinux.org - 2016-06-09 - 0.10.11 + 2016-06-06 + 2.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 2.9.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-rfc3986 + https://pypi.org/project/rfc3986/ + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Validating URI References per RFC 3986. + Her RFC 3986 için URI referanslarını değerlendirir. + A Python implementation of RFC 3986 including validation and authority parsing. + python3-rfc3986, değerlendirme ve yetkilendirme çözümleyicisi de içeren python3 uygulamasıdır. + https://github.com/python-hyper/rfc3986/archive/1.5.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-rfc3986/pspec.xml + + + python3-rfc3986 + Validating URI References per RFC 3986. + + python3 + + + /usr/share/doc/python3-rfc3986 + /usr/share/man + /usr/lib + + + + + 2021-10-28 + 1.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-08 + 1.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 1.3.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sane + https://python-sane.readthedocs.io/en/latest/ + + Pisi Linux Admins + admin@pisilinux.org + + MIT + app + programming.language.python3 + Python interface to the SANE scanner and frame grabber. + Python interface to the SANE scanner and frame grabber. + Python interface to the SANE scanner and frame grabber. + Python interface to the SANE scanner and frame grabber. + https://github.com/python-pillow/Sane/archive/refs/tags/v2.9.1.tar.gz + + python3-devel + python3-setuptools + sane-backends-devel + + programming/language/python3/python3-sane/pspec.xml + + + python3-sane + + python3 + sane-backends + + + /usr/lib + /usr/share/doc + + + + + 2021-04-26 + 2.9.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-sanic + https://pypi.org/project/sanic/ + + Ismet Sezer Simsek + ismetsezer1996@gmail.com + + MIT + library + app:console + programming.language.python3 + A web server and web framework that's written to go fast. Build fast. Run fast. + python3-sanic, hızlı çalışması, hızlı inşa etmesi ve hızlı yazılması üzerinde özellikleri geliştirilmiş bir ağ sunucu ve çatısıdır. + Sanic is a Python 3.6+ web server and web framework that's written to go fast. It allows the usage of the async/await syntax added in Python 3.5, which makes your code non-blocking and speedy. + python3-sanic, hızlı çalışması için tasarlanmış bir python3 ağ sunucu ve çatısıdır. + https://github.com/huge-success/sanic/archive/v21.9.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-sanic/pspec.xml + + + python3-sanic + A web server and web framework that's written to go fast. Build fast. Run fast. + + python3 + python3-httpx + python3-aiofiles + python3-httptools + python3-multidict + python3-websockets + + + /usr/lib + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2021-10-28 + 21.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 20.6.3 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 20.3.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 19.12.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 0.7.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 0.7.0 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-29 - 0.10.11 + 2017-08-15 + 0.6.0 + First Release + Ismet Sezer Simsek + ismetsezer1996@gmail.com + + + + + + python3-scour + https://github.com/scour-project/scour + + Blue Devil + bluedevil@sctzine.com + + Apachev2.0 + library + programming.language.python3 + Scour - An SVG Optimizer / Cleaner + SVG iyileştirici/temizleyici. + Scour is an SVG optimizer/cleaner that reduces the size of scalable vector graphics by optimizing structure and removing unnecessary data written in Python. + python3-scour, SVG çizim dosyalarının yapısını düzelten, bunu yaparken boyutlarını da düşürerek iyileştirme yapan bir python kitaplığıdır. + https://github.com/scour-project/scour/archive/refs/tags/v0.38.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-scour/pspec.xml + + + python3-scour + Scour - An SVG Optimizer / Cleaner + + python3 + + + /usr/bin/scour + /usr/lib/python3* + /usr/share/doc/python3-scour + + + + + 2021-10-28 + 0.38.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-15 + 0.38.1 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-setproctitle + https://github.com/dvarrazzo/py-setproctitle + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + MIT + library + programming.language.python3 + Allows a python process to change its process title + Allows a python process to change its process title + https://github.com/dvarrazzo/py-setproctitle/archive/refs/tags/version-1.2.2.tar.gz + + procps + python3-devel + python3-pytest + python3-setuptools + + programming/language/python3/python3-setproctitle/pspec.xml + + + python3-setproctitle + + procps + python3 + python3-pytest + + + /usr/lib + /usr/share/doc + + + + + 2021-10-25 + 1.2.2 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-25 + 1.2.2 + Version bump + Pisi Linux Admins + admin@pisilinux.org + + + 2020-03-23 + 1.1.10 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-setuptools-scm + https://github.com/pypa/setuptools_scm + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python3 setuptools-scm module + Python3 setuptools-scm modülü + Tsetuptools_scm handles managing your Python package versions in SCM metadata instead of declaring them as the version argument or in a SCM managed file. + setuptools-scm python paket versiyonlarını SCM metadataları kullanarak yönetmenizi sağlayan python3 modülüdür. + https://files.pythonhosted.org/packages/57/38/930b1241372a9f266a7df2b184fb9d4f497c2cef2e016b014f82f541fe7c/setuptools_scm-6.0.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-setuptools-scm/pspec.xml + + + python3-setuptools-scm + Python3 setuptools-scm module + + python3 + python3-setuptools + + + /usr/lib/python3* + /usr/share/doc/python3-setuptools-scm + + + + + 2021-10-22 + 6.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 6.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 4.1.2 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 4.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 3.5.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 3.4.3 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-11 + 3.3.3 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + 2019-11-28 + 3.3.3 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-shiboken2 + https://www.pyside.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + app:console + programming.language.python3 + Shiboken the Binding Generator + Shiboken is the CPython-based binding code generator for C or C++ libraries. It uses an ApiExtractor library to parse the C or C++ headers and get the type information, using Clang. + https://download.qt.io/official_releases/QtForPython/pyside2/PySide2-5.15.2-src/pyside-setup-opensource-src-5.15.2.tar.xz + + llvm + cmake + libxslt-devel + python3-devel + qt5-base-devel + llvm-clang-devel + qt5-xmlpatterns-devel + + programming/language/python3/python3-shiboken2/pspec.xml + + + shiboken2 + Shiboken2 is the binding generator used to create the PySide2 bindings. + + libxslt + qt5-base + llvm-clang + + + /usr/share/doc + /usr/bin/shiboken2 + /usr/lib/libshiboken2* + /usr/share/man/man1/shiboken2.1 + /usr/bin/shiboken_tool.py + + + + python3-shiboken2 + Python3 shared library files used by shiboken2. + Python3 için shiboken2 bağlayıcı modülü + python3-shiboken2, Python3 için shiboken2 bağlayıcı modülü içerir. + + python3 + shiboken2 + + + /usr/lib/python3*/site-packages/shiboken2* + /usr/lib/libshiboken2.cpython-36m-x86_64-linux-gnu.so* + + + + python3-shiboken2-devel + Development headers for the shiboken2 library. + python3-shiboken2 için geliştime dosyaları + python3-shiboken2-devel, python3-shiboken2 için geliştime dosyaları içerir. + + python3-shiboken2 + + + /usr/lib/cmake/ + /usr/include/shiboken2/ + /usr/lib/pkgconfig/shiboken2.pc + + + + + 2021-10-28 + 5.15.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-24 + 5.15.2 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-11-13 + 5.15.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-05-25 + 5.14.2 + Patch version bump. + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-sip + https://www.riverbankcomputing.com/news + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:console + programming.language.python3 + SIP is a tool for generating bindings for C++ classes so that they can be used by Python3 + C ve C++ kütüphaneleri için python bağlayıcıları oluşturan bir araç + Generator powiązań Pythona z bibliotekami klas C++ + SIP is a tool for generating bindings for C and C++ libraries so that they can be used by Python3. It takes any C or C++ libraries and converts them into Python extension modules. + SIP3 C ve C++ kütüphanelerini Python'da kullanabilmek için bağlayıcılar oluşturan bir araçtır. Herhangi bir C veya C++ kütüphanesini Python genişletme modülüne dönüştürür. + Generuje powiązania Pythona z bibliotekami klas C++ ze zbioru plików ze specyfikacjami klas. Obsługiwany jest Python 2 i 3. + https://www.riverbankcomputing.com/static/Downloads/sip/4.19.25/sip-4.19.25.tar.gz + + python3-devel + + programming/language/python3/python3-sip/pspec.xml + + + python3-sip + Python 3.x SIP bindings for C and C++ libraries + + libgcc + python3 + + + /usr/bin + /usr/lib + /usr/include + /usr/share/licenses + + + + python3-pyqt5-sip + Python 3.x pyqt5 SIP bindings for C and C++ libraries + C ve C++ kütüphaneleri için python PyQt5 bağlayıcıları oluşturan bir araç + SIP3 C ve C++ kütüphanelerini Python'da PyQt5 ile kullanabilmek için bağlayıcılar oluşturan bir araçtır. Herhangi bir C veya C++ kütüphanesini Python PyQt5 genişletme modülüne dönüştürür. + + libgcc + + + /usr/lib/python3*/site-packages/PyQt5* + + + + python3-sip-docs + Documentation files for python3-sip + python3-sip için belgelendirme dosyaları + python3-sip-docs, python3-sip için belgelendirme dosyalarını içerir. + + python3-sip + + + /usr/share/doc/python3-sip + + + + + 2021-10-22 + 4.19.25 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-19 + 4.19.24 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-10 + 4.19.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 4.19.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 4.19.21 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 4.19.20 + Rebuild bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 4.19.20 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-09-13 + 4.19.19 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-13 + 4.19.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 4.19.14 + Rebuild pyqt5 sip. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-14 + 4.19.12 + Rebuild pyqt5 sip. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 4.19.12 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-10 + 4.19.6 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 4.19.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-18 + 4.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-11 + 4.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-20 + 4.18 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-08 + 4.16.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-six + http://pypi.python.org/pypi/six/ + + Alihan Öztürk + alihan@pisilinux.org + + MIT + app:console + programming.language.python3 + Python 2 and 3 compatibility utilities. + Python2 ve python3 uyumluluk programı. + python-six provides simple utilities for wrapping over differences between Python 2 and Python 3. + python3-six, python2 ile python3 arasındaki farklılıkların aşılmasına yardımcı olan basit araçlar sağlar. + https://pypi.org/packages/source/s/six/six-1.16.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-six/pspec.xml + + + python3-six + Python 2 and 3 compatibility utilities. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-six + + + + + 2021-10-22 + 1.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-24 + 1.15.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-21 + 1.14.0 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2019-12-11 + 1.13.0 + Version bump. + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-06 + 1.11.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-24 + 1.11.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-22 + 1.10.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-01 + 1.10.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.9.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 1.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-08 + 1.9.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + python3-smartypants + https://github.com/leohemsted/smartypants.py + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + programming.language.python3 + Python with the SmartyPants + Python with the SmartyPants + Python with the SmartyPants + Python with the SmartyPants + https://github.com/leohemsted/smartypants.py/archive/refs/tags/v2.0.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-smartypants/pspec.xml + + + python3-smartypants + + python3 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 2.0.1 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-05-26 + 2.0.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-sniffio + https://github.com/python-trio/sniffio + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.language.python3 + Sniff out which async library your code is running under + Yazdığınız kod hangi asenkron kitaplık altında koşuyor bunu dinleyen kitaplık. + This is a tiny package whose only purpose is to let you detect which async library your code is running under. + python3-sniffio, yazdığınız kod hangi asenkron kitaplık altında koşuyor, bunu dinleyen ve tespit edebilen bir python kitaplığıdır. + https://github.com/python-trio/sniffio/archive/v1.2.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-sniffio/pspec.xml + + + python3-sniffio + Sniff out which async library your code is running under + + python3 + python3-curio + + + /usr/lib + /usr/share/man + /usr/share/doc/python3-sniffio + + + + + 2021-10-28 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 1.1.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-snowballstemmer + https://snowballstem.org/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Snowball stemming library collection for Python3 + Snowball, python3 için sözcük kökeni bulma kitaplığıdır. + Snowball is a small string processing language designed for creating stemming algorithms for use in Information Retrieval. + Snowball, sıklıkla kullanılan bilgi çekme yapılırken kullanılan sözcük kökü bulma işlemi için yaratılmış küçük bir sözcük işleme kitaplığıdır. + https://pypi.python.org/packages/source/s/snowballstemmer/snowballstemmer-2.1.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-snowballstemmer/pspec.xml + + + python3-snowballstemmer + snowballstemmer module for python3 + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-snowballstemmer + + + + + 2021-10-22 + 2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-06 + 2.0.0 + Rebuilt w/ py3.8 + Blue Devil + bluedevil@sctzine.com + + + 2019-12-06 + 2.0.0 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-soupsieve + https://facelessuser.github.io/soupsieve/ + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A modern CSS selector implementation for Beautiful Soup. + Beautiful Soup için çağdaş bir CSS seçici uygulaması + Soup Sieve is a CSS selector library designed to be used with Beautiful Soup 4. It aims to provide selecting, matching, and filtering using modern CSS selectors. Soup Sieve currently provides selectors from the CSS level 1 specifications up through the latest CSS level 4 drafts and beyond (though some are not yet implemented). + Soup Sieve, Beautiful Soup 4 ile kullanılmak üzere geliştirilmiş bir CSS seçici python3 kitaplığıdır. + https://github.com/facelessuser/soupsieve/archive/2.2.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-soupsieve/pspec.xml + + + python3-soupsieve + A modern CSS selector implementation for Beautiful Soup. + + python3 + python3-backports.functools_lru_cache + + + /usr/lib/python3* + /usr/share/doc/python3-soupsieve + + + + + 2021-10-28 + 2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-24 + 2.0.1 + First release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-speaklater + https://github.com/mitsuhiko/speaklater/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Implements a lazy string for python useful for use with gettext. + Gettext ile kullanımı yararlı, pythonda tembel söz katarları uygulaması. + A module that provides lazy strings for translations. Basically you get an object that appears to be a string but changes the value every time the value is evaluated based on a callable you provide. + python3-speaklater, gettext ile kullanımı yararlı, pythonda tembel söz katarları uygulaması sunar. + https://files.pythonhosted.org/packages/03/47/eaa6a52849915456aa144fea9e41332ae9b1a246a899095a231c995aab7e/speaklater3-1.4.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-speaklater/pspec.xml + + + python3-speaklater + Implements a lazy string for python useful for use with gettext. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-speaklater + + + + + 2021-10-28 + 1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-19 + 1.3 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinx + https://www.sphinx-doc.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + library + programming.language.python3 + Python documentation generator. It can generate HTML or Latex outputs + Python için döküman üreticisi. HTML, Latex gibi çıktılar üretebiliyor + It's a very common documentation generator especially using for python3 based documentation.It can generate HTML or PDF, Ps outputs with Latex output support. + Özellikle python için hazırlanan dökümanları yorumlamak için kullanılan yaygın bir döoküman üreticisi. Başta HTML olmak üzere Latex ile birlikte PDF, Ps gibi doküman çıktıları üretebiliyor. + https://pypi.org/packages/source/S/Sphinx/Sphinx-5.0.1.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-sphinx/pspec.xml + + + python3-sphinx + Python documentation generator. It can generate HTML or Latex outputs + + python3 + python3-six + python3-Babel + python3-Jinja2 + python3-certifi + python3-requests + python3-Pygments + python3-docutils + python3-pyparsing + python3-imagesize + python3-packaging + python3-setuptools + python3-charset-normalizer + python3-snowballstemmer + python3-sphinx_rtd_theme + python3-sphinxcontrib-qthelp + python3-sphinxcontrib-jsmath + python3-sphinxcontrib-devhelp + python3-sphinxcontrib-htmlhelp + python3-sphinx-alabaster-theme + python3-sphinxcontrib-applehelp + python3-sphinxcontrib-serializinghtml + + + /usr/bin + /usr/lib/python3* + /usr/share/doc/python3-sphinx/LICENSE + + + + python3-sphinx-docs + Documentation files for python3-sphinx + python3-sphinx için belgelendirme dosyaları + python3-sphinx-docs, python3-sphinx için belgelendirme dosyaları içerir. + + python3-sphinx + + + /usr/share/doc/python3-sphinx + + + + + 2022-06-03 + 5.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-30 + 5.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-23 + 4.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-11 + 4.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-23 + 4.1.2 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 4.1.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 4.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 3.2.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-16 + 3.0.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 3.0.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 3.0.0 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 2.4.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-24 + 2.4.3 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 2.4.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 2.4.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 2.3.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-06 + 1.6.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-28 + 1.6.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-sphinx-alabaster-theme + https://github.com/bitprophet/alabaster + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.language.python3 + Sphinx default theme. + Sphinx varsayılan teması. + Alabaster is a visually (c)lean, responsive, configurable theme for the Sphinx documentation system. It is Python 2+3 compatible. + Alabaster, Sphinx dokümantasyon sistemi için görsel (c) yalın, duyarlı, yapılandırılabilir bir temadır. Python 2 + 3 uyumludur. + https://github.com/bitprophet/alabaster/archive/0.7.12.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinx-alabaster-theme/pspec.xml + + + python3-sphinx-alabaster-theme + Sphinx default theme. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-sphinx-alabaster-theme + + + + + 2021-10-22 + 0.7.12 + Version bump. + Pisi Linux Admins + admins@pisilinux.org + + + 2019-12-30 + 0.7.12 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-01-28 + 0.7.11 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + python3-sphinx-copybutton + https://pypi.org/project/sphinx-copybutton/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.language.python3 + Add a copy button to code cells in Sphinx docs + Add a copy button to code cells in Sphinx docs + Add a copy button to code cells in Sphinx docs + Add a copy button to code cells in Sphinx docs + https://files.pythonhosted.org/packages/d0/79/d57ca42f4be2ac21f660300a5e1a285ce42b23c45b5a4b9a21ce973a3b2f/sphinx-copybutton-0.4.0.tar.gz + + python3-devel + python3-sphinx + python3-setuptools + + programming/language/python3/python3-sphinx-copybutton/pspec.xml + + + python3-sphinx-copybutton + + python3 + python3-sphinx + + + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-10-14 + 0.4.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2021-10-22 + 0.4.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-sphinx-issues + https://github.com/sloria/sphinx-issues + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A Sphinx extension for linking to your project's issue tracker. + Projeniz için olay izleme sphinx genişlemesi. + A Sphinx extension for linking to your project's issue tracker. Includes roles for linking to issues, pull requests, user profiles, with built-in support for GitHub (though this works with other services). + python3-sphinx-issues, projeniz için olay izleme sphinx genişlemesi sunar. + https://github.com/sloria/sphinx-issues/archive/1.2.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinx-issues/pspec.xml + + + python3-sphinx-issues + A Sphinx extension for linking to your project's issue tracker. + + python3-docutils + python3-sphinx + python3 + + + /usr/share/doc/python3-sphinx-issues + /usr/lib/python3* + + + + + 2021-10-22 + 1.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 1.2.0 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinx-removed-in + https://pypi.org/project/sphinx-removed-in/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app + programming.language.python3 + versionremoved and removed-in directives for Sphinx + versionremoved and removed-in directives for Sphinx + versionremoved and removed-in directives for Sphinx + versionremoved and removed-in directives for Sphinx + https://files.pythonhosted.org/packages/85/cc/69f0d8a3cef9fed0faa0c103500d6fd8b2dc1d53e98095fc9b1ac9268e38/sphinx-removed-in-0.2.1.tar.gz + + python3-devel + python3-sphinx + python3-setuptools + + programming/language/python3/python3-sphinx-removed-in/pspec.xml + + + python3-sphinx-removed-in + + python3 + python3-sphinx + + + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-10-14 + 0.2.1 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2021-10-22 + 0.2.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-sphinxcontrib-applehelp + https://github.com/sphinx-doc/sphinxcontrib-applehelp + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx extension which outputs Apple help books. + Apple yardım kitapları olarak çıktı verebilen sphinx genişleme modülüdür. + sphinxcontrib-applehelp is a sphinx extension which outputs Apple help books. + python3-sphinxcontrib-applehelp, Apple yardım kitapları olarak çıktı verebilen sphinx genişleme modülüdür. + https://github.com/sphinx-doc/sphinxcontrib-applehelp/archive/1.0.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-applehelp/pspec.xml + + + python3-sphinxcontrib-applehelp + sphinxcontrib-applehelp module for python + + python3 + + + /usr/share/doc/python3-sphinxcontrib-applehelp + /usr/lib/python3* + + + + + 2021-10-22 + 1.0.2 + Rebuild. + Pisi Linux Admins + admins@pisilinux.org + + + 2020-03-04 + 1.0.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 1.0.1 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-devhelp + https://github.com/sphinx-doc/sphinxcontrib-devhelp + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx extension which outputs Devhelp document. + Devhelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. + sphinxcontrib-devhelp is a sphinx extension which outputs Devhelp document. + python3-sphinxcontrib-devhelp, Devhelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. + https://github.com/sphinx-doc/sphinxcontrib-devhelp/archive/1.0.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-devhelp/pspec.xml + + + python3-sphinxcontrib-devhelp + sphinxcontrib-devhelp module for python + + python3 + + + /usr/share/doc/python3-sphinxcontrib-devhelp + /usr/lib/python3* + + + + + 2021-10-22 + 1.0.2 + Rebuild. + Pisi Linux Admins + admins@pisilinux.org + + + 2020-03-04 + 1.0.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 1.0.1 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-htmlhelp + https://github.com/sphinx-doc/sphinxcontrib-htmlhelp + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx extension which renders HTML help files. + python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilir/görüntüleyebilir. + sphinxcontrib-htmlhelp is a sphinx extension which renders HTML help files. + python3-sphinxcontrib-htmlhelp, html yardım dosyalarını işleyebilen/görüntüleyebilen sphinx genişleme modülüdür. + https://files.pythonhosted.org/packages/eb/85/93464ac9bd43d248e7c74573d58a791d48c475230bcf000df2b2700b9027/sphinxcontrib-htmlhelp-2.0.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-htmlhelp/pspec.xml + + + python3-sphinxcontrib-htmlhelp + sphinxcontrib-htmlhelp module for python + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-sphinxcontrib-htmlhelp + + + + + 2021-10-22 + 2.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-23 + 1.0.3 + version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 1.0.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-log-cabinet + https://github.com/davidism/sphinxcontrib-log-cabinet + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Organize changelog directives in Sphinx docs. + Sphinx belgesinde "changelog" etkinliğini düzenler. + Organize changelogs generated by versionadded, versionchanged, deprecated directives. The log will be sorted by newest to oldest version. For HTML docs, older versions will be collapsed by default. + python3-sphinxcontrib-log-cabinet, sphinx belgesinde "changelog" etkinliğini düzenlemeye yarayan python kitaplığını içerir. + https://github.com/davidism/sphinxcontrib-log-cabinet/archive/1.0.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-log-cabinet/pspec.xml + + + python3-sphinxcontrib-log-cabinet + Organize changelog directives in Sphinx docs. + + python3 + + + /usr/share/doc/python3-sphinxcontrib-log-cabinet + /usr/lib/python3* + + + + + 2021-10-22 + 1.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-22 + 1.0.1 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-qthelp + https://github.com/sphinx-doc/sphinxcontrib-qthelp + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx extension which outputs Qthelp document. + Qthelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. + sphinxcontrib-qthelp is a sphinx extension which outputs QtHelp document + python3-sphinxcontrib-qthelp, Qthelp belgesi olarak çıktı verebilen sphinx genişleme modülüdür. + https://github.com/sphinx-doc/sphinxcontrib-qthelp/archive/1.0.3.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-qthelp/pspec.xml + + + python3-sphinxcontrib-qthelp + sphinxcontrib-qthelp module for python + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-sphinxcontrib-qthelp + + + + + 2021-10-22 + 1.0.3 + Rebuild. + Pisi Linux Admins + admins@pisilinux.org + + + 2020-03-04 + 1.0.3 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 1.0.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-serializinghtml + https://github.com/sphinx-doc/sphinxcontrib-serializinghtml + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx extension which outputs "serialized" HTML files (json and pickle). + python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişletmesi. + sphinxcontrib-serializinghtml is a sphinx extension which outputs "serialized" HTML files (json and pickle). + python3-sphinxcontrib-serializinghtml, serileştirilmiş HTML dosyaları yaratabilen sphinx genişleme modülüdür. + https://files.pythonhosted.org/packages/b5/72/835d6fadb9e5d02304cf39b18f93d227cd93abd3c41ebf58e6853eeb1455/sphinxcontrib-serializinghtml-1.1.5.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sphinxcontrib-serializinghtml/pspec.xml + + + python3-sphinxcontrib-serializinghtml + sphinxcontrib-serializinghtml module for python + + python3 + + + /usr/share/doc/python3-sphinxcontrib-serializinghtml + /usr/lib/python3* + + + + + 2021-10-22 + 1.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 1.1.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-30 + 1.1.3 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinxcontrib-websupport + https://www.sphinx-doc.org/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Sphinx API for Web Apps + python3-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. + python3-sphinxcontrib-websupport provides a Python API to easily integrate Sphinx documentation into your Web application. + python3-sphinxcontrib-websupport, Sphinx belgelendirme üretecisidir. python3-sphinxcontrib-websupport, ağ uygulamalarınız için Sphinx ile bütünleşebilen python apisi sunar. + https://pypi.org/packages/source/s/sphinxcontrib-websupport/sphinxcontrib-websupport-1.2.4.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-sphinxcontrib-websupport/pspec.xml + + + python3-sphinxcontrib-websupport + sphinxcontrib-websupport module for python + + python3 + python3-Jinja2 + python3-docutils + python3-setuptools + + + /usr/lib/python3* + /usr/share/doc/python3-sphinxcontrib-websupport + + + + + 2021-10-22 + 1.2.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 1.2.4 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-16 + 1.2.2 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 1.2.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-08 + 1.2.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-13 + 1.1.2 + Rebuilt w/ py3.8 + Blue Devil + bluedevil@sctzine.com + + + 2019-11-13 + 1.1.2 + First pisi release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sphinx_rtd_theme + https://github.com/readthedocs/sphinx_rtd_theme + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Sphinx theme for readthedocs.org. + readthedocs.org için sphinx teması. + This Sphinx theme was designed to provide a great reader experience for documentation users on both desktop and mobile devices. + Hem mobil hem masaüstü belgelendirme kullanıcılarına çok iyi bir okuma deneyimi sunmak amacıyla tasarlanmış bir sphinx teması. + https://github.com/readthedocs/sphinx_rtd_theme/archive/0.5.2.tar.gz + + nodejs + python3-devel + python3-setuptools + + + python-sphinx_rtd_theme-unbundle-fonts.patch + python-sphinx_rtd_theme-html5shiv.patch + 2ab605a455.patch + + programming/language/python3/python3-sphinx_rtd_theme/pspec.xml + + + python3-sphinx_rtd_theme + Sphinx theme for readthedocs.org. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-sphinx_rtd_theme + + + + + 2021-10-22 + 0.5.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 0.5.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-15 + 0.4.3 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sqlalchemy + https://www.sqlalchemy.org/ + + Blue DeviL + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + The Python SQL Toolkit and Object Relational Mapper + Python SQL Araç Kiti ve İlişkisel Nesne Haritalandırıcısı + SQLAlchemy is the Python SQL toolkit and Object Relational Mapper that gives application developers the full power and flexibility of SQL. SQLAlchemy provides a full suite of well known enterprise-level persistence patterns, designed for efficient and high-performing database access, adapted into a simple and Pythonic domain language. + SQLAlchemy, geliştiricisine SQL'in tüm güç ve esnekliğini verebilen, python sql araç kiti ve ilişkisel nesne haritalandırıcısı sunan bir python modülüdür. + https://github.com/sqlalchemy/sqlalchemy/archive/rel_1_4_26.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sqlalchemy/pspec.xml + + + python3-sqlalchemy + The Python SQL Toolkit and Object Relational Mapper + + python3 + + + /usr/share/doc + /usr/lib + + + + + 2021-10-25 + 1.4.26 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-31 + 1.3.19 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 1.3.17 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-08 + 1.3.16 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-18 + 1.3.15 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 1.3.14 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 1.3.13 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-08 + 1.3.11 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + python3-sqlparse + https://github.com/andialbrecht/sqlparse + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + A non-validating SQL parser module for Python. + Python için doğrulamasız SQL çözümleyici. + sqlparse is a non-validating SQL parser for Python. It provides support for parsing, splitting and formatting SQL statements. + python3-sqlparse, python ile doğrulamasız sql çözümleme yapmanıza yarayacak python modülleri sunar. + https://github.com/andialbrecht/sqlparse/archive/0.4.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sqlparse/pspec.xml + + + python3-sqlparse + A non-validating SQL parser module for Python. + + python3-setuptools + python3 + + + /usr/share/doc/python3-sqlparse + /usr/bin/sqlformat + /usr/lib/python3* + + + + + 2021-10-28 + 0.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 0.3.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-19 + 0.3.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-sshtunnel + https://github.com/pahaz/sshtunnel + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + SSH tunnels to remote server. + Python icin ssh uygulaması. + python3-sshtunnel provides pure python SSH tunnels. + python3-sshtunnel, python ile ssh tüneli açarak uzak sunucuya bağlanmanızı sağlayan modülleri sunar. + https://github.com/pahaz/sshtunnel/archive/0.4.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-sshtunnel/pspec.xml + + + python3-sshtunnel + SSH tunnels to remote server. + + python3-setuptools + python3-pycparser + python3-paramiko + python3 + + + /usr/share/doc/python3-sshtunnel + /usr/bin/sshtunnel + /usr/lib/python3* + + + + + 2021-10-28 + 0.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-19 + 0.1.5 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-testtools + https://github.com/testing-cabal/testtools + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Testtools - tasteful testing for python. + testtools, python standart kitaplığındaki birim test çatısına eklentiler içerir. + testtools is a set of extensions to the Python standard library's unit testing framework. + python3-testtools, python standart kitaplığındaki birim test çatısına eklentiler sağlayan python modüllerini içerir. + https://pypi.io/packages/source/t/testtools/testtools-2.5.0.tar.gz + + python3-setuptools + python3-devel + python3-pbr + + programming/language/python3/python3-testtools/pspec.xml + + + python3-testtools + Testtools - tasteful testing for python. + + python3-setuptools + python3-extras + python3-six + python3-pbr + python3 + + + /usr/share/doc/python3-testtools + /usr/lib/python3* + + + + + 2021-10-28 + 2.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-17 + 2.4.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-20 + 2.3.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-toml + https://github.com/uiri/toml + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Python lib for parsing TOML + TOML çözümleyen python kitaplığı. + A Python library for parsing and creating TOML. + python3-toml, TOML çözümleyen python kitaplığı sunar. + https://github.com/uiri/toml/archive/0.10.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-toml/pspec.xml + + + python3-toml + Python lib for parsing TOML + + python3 + + + /usr/share/doc/ + /usr/lib/python3* + + + + + 2021-10-22 + 0.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 0.10.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-tqdm + https://github.com/tqdm/tqdm + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A Fast, Extensible Progress Bar for Python and CLI. + Python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubugu kitaplığı + python3-tqdm provides a fast, extensible progress bar for python and commandline. Instantly make your loops show a smart progress meter - just wrap any iterable with tqdm(iterable), and you're done! + python3-tqdm, python3 ile komut satırı için hızlı ve genişletilebilir ilerleme çubuğu kitaplığı sunar. Bu modül ile döngülerinize akıllı ilerleme çubuğu ekleyebilirsiniz. + https://files.pythonhosted.org/packages/e3/c1/b3e42d5b659ca598508e2a9ef315d5eef0a970f874ef9d3b38d4578765bd/tqdm-4.62.3.tar.gz + + pip3 + python3-devel + python3-setuptools + + programming/language/python3/python3-tqdm/pspec.xml + + + python3-tqdm + A Fast, Extensible Progress Bar for Python and CLI. + + python3 + python3-setuptools + + + /usr/share/doc/python3-tqdm + /usr/lib/python3* + /usr/bin/tqdm + + + + + 2021-10-28 + 4.62.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-31 + 4.48.2 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 4.46.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 4.45.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-29 + 4.44.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 4.43.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-05 + 4.42.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-27 + 4.42.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 4.41.1 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-25 + 4.41.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-typogrify + https://pypi.org/project/typogrify/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + app + programming.language.python3 + filters to make caring about typography on the web a bit easier + filters to make caring about typography on the web a bit easier + filters to make caring about typography on the web a bit easier + filters to make caring about typography on the web a bit easier + https://files.pythonhosted.org/packages/8a/bf/64959d6187d42472acb846bcf462347c9124952c05bd57e5769d5f28f9a6/typogrify-2.0.7.tar.gz + + python3-devel + python3-setuptools + python3-smartypants + + programming/language/python3/python3-typogrify/pspec.xml + + + python3-typogrify + + python3 + python3-smartypants + + + /usr/lib + /usr/share/doc + + + + + 2021-10-22 + 2.0.7 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-05-26 + 2.0.7 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + python3-Unidecode + http://pypi.python.org/pypi/Unidecode/ + + PisiLinux Community + admins@pisilinux.org + + Artistic + GPLv2 + library + programming.language.python3 + US-ASCII transliterations of Unicode text + Unicode karakterlerinin US-ASCII harf çevirileri + python-Unidecode provides ASCII transliterations of Unicode text. This is a Python port of Text::Unidecode Perl module. + python3-Unidecode, Unicode karakterlerinin US-ASCII harf çevirilerini sağlar. Text::Unidecode Perl modülünün Python diliyle yazılmış halidir. + https://files.pythonhosted.org/packages/cd/31/245d8a384939aa0ee152c76fc62890f79f35fc41cd12839f5df268d9081d/Unidecode-1.2.0.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-Unidecode/pspec.xml + + + python3-Unidecode + US-ASCII transliterations of Unicode text + + python3 + + + /usr/bin/unidecode + /usr/lib/python3* + /usr/share/doc/python3-Unidecode + + + + + 2021-10-24 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 1.1.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-urllib3 + https://github.com/shazow/urllib3 + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.language.python3 + urllib3 is a powerful, sanity-friendly HTTP client for Python. + urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. + urllib3 is a powerful, sanity-friendly HTTP client for Python. Much of the Python ecosystem already uses urllib3 and you should too. urllib3 brings many critical features that are missing from the Python standard libraries. + urllib3 güçlü ve akıl sağlığı dostu olan, python için HTTP istemcisi sunan bir kitaplıktır. urllib3 Python standart kütüphanesinde bulunmayan kritik özellikleri içerir. + https://github.com/urllib3/urllib3/archive/1.26.6.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-urllib3/pspec.xml + + + python3-urllib3 + urllib3 is a powerful, sanity-friendly HTTP client for Python. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-urllib3 + + + + + 2021-10-22 + 1.26.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-24 + 1.25.9 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 1.25.8 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-24 + 1.25.7 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 1.23 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-22 + 1.22 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + python3-validictory + https://github.com/jamesturk/validictory + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A general purpose Python3 data validator. + Python3 için genel maksatlı veri onaylama kitaplığı + python3-validictory is a general purpose Python3 data validator. + python3-validictory, Python için genel maksatlı veri onaylama kitaplığı sunar. + https://github.com/jamesturk/validictory/archive/1.1.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-validictory/pspec.xml + + + python3-validictory + A general purpose Python3 data validator. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-validictory + + + + + 2021-10-28 + 1.1.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-23 + 1.1.2 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-virtualenv + https://github.com/pypa/virtualenv/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + app:console + programming.language.python3 + Virtual Python Environment builder. + Sanal Python ortamı üreteci. + python3-virtualenv is a a tool and library for creating isolated virtual python environments. + python3-virtualenv, sanal bir python çalışma ortamı yaratan araç ve kitaplıkları sunar. + https://github.com/pypa/virtualenv/archive/20.8.0.tar.gz + + python3-devel + python3-setuptools + python3-setuptools-scm + + programming/language/python3/python3-virtualenv/pspec.xml + + + python3-virtualenv + Virtual Python Environment builder. + + python3 + python3-six + python3-appdirs + python3-distlib + python3-filelock + python3-setuptools + + + /usr/lib/python3* + /usr/bin/virtualenv + /usr/share/doc/python3-virtualenv + + + + + 2021-10-28 + 20.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-31 + 20.0.31 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-24 + 20.0.21 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 20.0.20 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 20.0.18 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-07 + 20.0.16 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 20.0.15 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 20.0.14 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 20.0.10 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-03 + 20.0.7 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-wcwidth + https://github.com/jquast/wcwidth + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + Measures number of Terminal column cells of wide-character codes. + Terminal ekranına basılan unikod karakter katarlarının genişliğini ölçen python kitaplığı. + Python library that measures the width of unicode strings rendered to a terminal + python3-wcwidth, terminal ekranına basılan unikod karakter katarlarının genişliğini ölçen python kitaplığı sunar. + https://github.com/jquast/wcwidth/archive/0.2.5.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-wcwidth/pspec.xml + + + python3-wcwidth + Measures number of Terminal column cells of wide-character codes. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-wcwidth + + + + + 2021-10-22 + 0.2.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-21 + 0.2.5 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 0.1.9 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 0.1.8 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-webencodings + https://github.com/gsnedders/python-webencodings + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + Character encoding for the web. + Genel ağ icin karakter kodlaması. + python3-webencodings is a Python implementation of the WHATWG Encoding standard. + python3-webencodings, genel ağ için karakter kodlaması kitaplığı sunar. + https://github.com/gsnedders/python-webencodings/archive/v0.5.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-webencodings/pspec.xml + + + python3-webencodings + Character encoding for the web. + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-webencodings + + + + + 2021-10-25 + 0.5.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-20 + 0.5.1 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-websocket-client + https://github.com/websocket-client/websocket-client + + Alihan Öztürk + alihan@pisilinux.org + + BSD + app:console + programming.language.python3 + WebSocket client library for Python + Python3 icin ag soketleri kitapligi + websocket-client module is WebSocket client for python. This provide the low level APIs for WebSocket. All APIs are the synchronous functions. + python3-websocket-client, WebSocket icin dusuk seviye apiler sunar. Tum apiler senkron yordamlardir. + https://github.com/websocket-client/websocket-client/archive/v1.1.1.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-websocket-client/pspec.xml + + + python3-websocket-client + WebSocket client library for Python + + python3-six + python3 + + + /usr/bin/wsdump.py + /usr/lib/python3* + /usr/share/doc/python3-websocket-client + + + + + 2021-10-22 + 1.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-26 + 0.57.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-19 + 0.48.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-25 + 0.47.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 0.46.0 + Release Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-01 + 0.40.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.37.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-06 + 0.37.0 First release Alihan Öztürk alihan@pisilinux.org @@ -330108,164 +295196,3881 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - xavs2 - https://github.com/pkuvcl/xavs2/ + python3-websockets + https://github.com/aaugustin/websockets - Mathias Freire - mathiasfreire45@gmail.com + Blue Devil + bluedevil@sctzine.com - GPL + BSD3 library - multimedia.video - Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard - Open-Source encoder of AVS2-P2/IEEE1857.4 video coding standard - https://github.com/pkuvcl/xavs2/archive/1.3.tar.gz + programming.language.python3 + Library for building WebSocket servers and clients in Python. + Websocket sunucu ve istemcileri inşa etmek için gerekli python kitaplığı + websockets is a library for building WebSocket servers and clients in Python with a focus on correctness and simplicity. + python3-websockets, doğruluk ve sadeliği esas alarak, Websocket sunucu ve istemcileri yapmak için gerekli python kitaplığını içerir. + https://github.com/aaugustin/websockets/archive/9.1.tar.gz - yasm + python3-devel + python3-setuptools - multimedia/video/xavs2/pspec.xml + programming/language/python3/python3-websockets/pspec.xml - xavs2 + python3-websockets + Library for building WebSocket servers and clients in Python. + + python3 + + + /usr/lib + /usr/share/man + /usr/share/doc/python3-websockets + + + + + 2021-10-22 + 9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 8.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-werkzeug + https://palletsprojects.com/p/werkzeug/ + + Blue Devil + bluedevil@sctzine.com + + BSDv3 + library + programming.language.python3 + The comprehensive WSGI web application library. + WSGI ağ uygulamaları kitaplığı. + Werkzeug is a comprehensive WSGI web application library. It began as a simple collection of various utilities for WSGI applications and has become one of the most advanced WSGI utility libraries. + python3-werkzeug, WSGI ağ uygulamaları kitaplığı içerir. + https://github.com/pallets/werkzeug/archive/2.0.2.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-werkzeug/pspec.xml + + + python3-werkzeug + The comprehensive WSGI web application library + + python3 + + + /usr/share/doc/python3-werkzeug + /usr/lib/python3* + + + + + 2021-10-25 + 2.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-07 + 1.0.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-13 + 1.0.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-wheel + https://github.com/pypa/wheel + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + The official binary distribution format for Python. + Python için resmi ikilik dosya dağıtım biçimi + This library is the reference implementation of the Python wheel packaging standard, as defined in PEP 427. + python3-wheel, PEP427'de tanımlanan Python için "wheel" paketleme standardı uygulamasıdır. + https://github.com/pypa/wheel/archive/0.36.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-wheel/pspec.xml + + + python3-wheel + The official binary distribution format for Python. + + python3 + + + /usr/bin/wheel + /usr/lib/python3* + /usr/share/doc/python3-wheel + + + + + 2021-10-22 + 0.36.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-30 + 0.35.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-wrapt + https://github.com/GrahamDumpleton/wrapt + + Blue Devil + bluedevil@sctzine.com + + BSDv2 + library + programming.language.python3 + A Python module for decorators, wrappers and monkey patching. + Çalışma zamanında uygulama yamayabilen(monkey patching), sarmalayıcı yordamlar ve dekoratörler için python modülü. + python3-wrapt provides a transparent object proxy for Python, which can be used as the basis for the construction of function wrappers and decorator functions. + python3-wrapt, çalışma zamanında uygulama yamayabilen(monkey patching), sarmalayıcı yordamlar ve dekoratörler için python modülü sağlar. + https://github.com/GrahamDumpleton/wrapt/archive/1.13.2.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-wrapt/pspec.xml + + + python3-wrapt + A Python module for decorators, wrappers and monkey patching. + + python3 + python3-setuptools + + + /usr/share/doc/ + /usr/lib/python3* + + + + + 2021-10-13 + 1.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 1.13.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 1.12.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-wtforms + https://github.com/wtforms/wtforms + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.language.python3 + A flexible forms validation and rendering library for Python. + Esnek bir form değerlendirme ve render kitaplığı. + WTForms is a flexible forms validation and rendering library for Python web development. It is framework agnostic and can work with whatever web framework and template engine you choose. + python3-wtforms, python icin esnek bir form değerlendirme ve render kitaplığı sağlar. + https://github.com/wtforms/wtforms/archive/2.3.3.tar.gz + + python3-Babel + python3-devel + python3-setuptools + + programming/language/python3/python3-wtforms/pspec.xml + + + python3-wtforms + A flexible forms validation and rendering library for Python. + + python3 + python3-MarkupSafe + + + /usr/lib/python3* + /usr/share/doc/python3-wtforms + + + + + 2021-10-25 + 2.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 2.3.1 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-04-22 + 2.3.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 2.2.1 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + python3-xdg + https://gitlab.freedesktop.org/xdg + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2+ + app:console + programming.language.python3 + X client library for Python3. + X client library for Python3. + https://gitlab.freedesktop.org/xdg/pyxdg/-/archive/rel-0.28/pyxdg-rel-0.28.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-xdg/pspec.xml + + + python3-xdg + X client library for Python3. + + python3 + + + /usr/share/doc/python3-xdg + /usr/lib/python3* + + + + + 2022-06-07 + 0.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-22 + 0.27 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-27 + 0.26 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-xlib + https://github.com/python-xlib/python-xlib + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2+ + library + programming.language.python3 + X client library for Python3. + Python için X istemci kitaplığı. + The Python X Library is intended to be a fully functional X client library for Python programs. It is written entirely in Python, in contrast to earlier X libraries for Python (the ancient X extension and the newer plxlib) which were interfaces to the C Xlib. + python3-xlib, python için X istemci kitaplığı sunar. + https://github.com/python-xlib/python-xlib/archive/0.31.tar.gz + + pip3 + python3-setuptools + python3-devel + + programming/language/python3/python3-xlib/pspec.xml + + + python3-xlib + X client library for Python3. + + python3-six + python3 + + + /usr/share/doc/python3-xlib + /usr/lib/python3* + + + + + 2021-10-02 + 0.31 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-08 + 0.27 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-27 + 0.26 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + python3-youtube_dl + https://ytdl-org.github.io/youtube-dl/index.html + + Pisi Linux Admins + admins@pisilinux.org + + GPLv3 + app:console + programming.language.python3 + Youtube Video Downloader + Youtube video indirici. + Youtube Video Downloader + Youtube ve benzeri video oynatan sitelerden video indirmeyi sağlayan bir uygulama. + youtube_dl + https://github.com/ytdl-org/youtube-dl/archive/2021.12.17.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-youtube_dl/pspec.xml + + + python3-youtube_dl + Youtube Video Downloader + + python3-setuptools + python3 + + + /etc/fish + /usr/share/doc/ + /usr/bin + /usr/lib/python3* + /usr/share/man/man1 + /etc/bash_completion.d + /usr/share/applications + + + + + 2022-01-04 + 2021.12.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2021.06.06 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-17 + 2021.06.06 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-04 + 2021.05.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-17 + 2021.01.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-31 + 2020.07.28 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-06-28 + 2020.06.16.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 2020.05.08 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-27 + 2020.03.24 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-11 + 2020.03.08 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-04 + 2020.03.01 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-18 + 2020.02.16 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 2020.01.24 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-23 + 2020.01.15 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-10 + 2020.01.01 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-26 + 2019.12.25 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-10-28 + 2019.10.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-06-24 + 2019.06.21 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 2018.12.17 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-26 + 2018.12.17 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 2018.11.18 + version bump + Aydin Atmaca + aydinatmaca@gmail.com + + + 2018-10-03 + 2018.09.26 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 2018.08.04 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 2018.01.21 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-01 + 2017.01.31 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-08-26 + 2016.08.24.1 + version bump + Metehan Özbek + mthnzbk@gmail.com + + + 2016-08-06 + 2016.08.06 + version bump + Metehan Özbek + admins@pisilinux.org + + + 2016-07-21 + 2016.07.17 + First release + Metehan Özbek + admins@pisilinux.org + + + + + + python3-zappa + https://github.com/Miserlou/Zappa + + Ismet Sezer Simsek + ismetsezer1996@gmail.com + + LGPLv2.1 + library + app:console + programming.language.python3 + Zappa - Serverless Python + Zappa - Sunucusuz Python + Server-less Python Web Services for AWS Lambda and API Gateway + python3-zappa, AWS Lambda ve API Ağ geçidi için sunucusuz Python ağ hizmetleri sunan python arayüzüdür. + https://files.pythonhosted.org/packages/38/d1/92037f8194028d720e4ab50aff0a0c6355aab1d5240e593e4797f2b4ada8/zappa-0.54.0.tar.gz + + python3-setuptools + python3-devel + + programming/language/python3/python3-zappa/pspec.xml + + + python3-zappa + Zappa - Serverless Python + + python3 + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2021-10-28 + 0.54.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-11 + 0.51.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 0.50.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-06 + 0.49.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-14 + 0.48.2 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-08-30 + 0.46.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-08-15 + 0.43.2 + First Release + Ismet Sezer Simsek + ismetsezer1996@gmail.com + + + + + + python3-zeroconf + https://github.com/jstasiak/python-zeroconf + + Blue Devil + bluedevil@sctzine.com + + LGPLv2 + library + programming.language.python3 + A pure python3 implementation of multicast DNS service discovery. + Python3 için çoklu dağıtımı destekleyen DNS hizmeti keşfi uygulaması + python3-zeroconf is a pure Python3 Multicast DNS Service Discovery Library (Bonjour/Avahi compatible). + python3-zeroconf, çoklu dağıtım(multicast) DNS hizmetlerini python üzerinden bulabilmenize olanak sağlayan bir python kitaplığıdır. + https://github.com/jstasiak/python-zeroconf/archive/0.36.9.tar.gz + + python3-devel + python3-setuptools + + programming/language/python3/python3-zeroconf/pspec.xml + + + python3-zeroconf + A pure python3 implementation of multicast DNS service discovery. + + python3 + python3-ifaddr + + + /usr/lib/python3* + /usr/share/doc/python3-zeroconf + + + + + 2021-10-28 + 0.36.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-31 + 0.28.3 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-19 + 0.26.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + python3-zipp + https://github.com/jaraco/zipp + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.language.python3 + A pathlib-compatible Zipfile object wrapper. + pathlib-uyumlu ZipDosyası sarmalayıcı python modülü + A pathlib-compatible Zipfile object wrapper. A backport of the Path object. + python3-zipp, pathlib-uyumlu ZipDosyası sarmalayıcı python modülü, path nesnesinin geriye dönüklüğünü sağlar. + https://files.pythonhosted.org/packages/38/f9/4fa6df2753ded1bcc1ce2fdd8046f78bd240ff7647f5c9bcf547c0df77e3/zipp-3.4.1.tar.gz + + python3-setuptools-scm + python3-setuptools + python3-devel + python3-toml + + programming/language/python3/python3-zipp/pspec.xml + + + python3-zipp + Python development support library (note: maintenance only) + + python3 + + + /usr/share/doc/python3-zipp + /usr/lib/python3* + + + + + 2021-10-22 + 3.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 3.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 3.1.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-21 + 3.0.0 + Ver. bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-12 + 2.2.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + yt-dlp + https://github.com/yt-dlp/yt-dlp + + Kamil Atlı + suvari@pisilinux.org + + as-is + library + programming.language.python3 + A youtube-dl fork with additional features and fixes + Ek özelliklere ve düzeltmelere sahip bir youtube-dl çatalı + A youtube-dl fork with additional features and fixes + Ek özelliklere ve düzeltmelere sahip bir youtube-dl çatalı + https://github.com/yt-dlp/yt-dlp/archive/refs/tags/2022.03.08.1.tar.gz + + aria2-devel + ffmpeg-devel + python3-wheel + python3-devel + rtmpdump-devel + python3-mutagen + python3-setuptools + python3-websockets + python3-pycryptodomex + + programming/language/python3/yt-dlp/pspec.xml + + + yt-dlp + A youtube-dl fork with additional features and fixes + + aria2 + ffmpeg + python3 + rtmpdump + python3-wheel + python3-mutagen + python3-websockets + python3-pycryptodomex + + + /usr/bin + /usr/share/man/man1 + /usr/share/bash-completion/completions + /usr/share/fish/vendor_completions.d + /usr/share/zsh/site-functions + /usr/share/doc/yt_dlp + /usr/share/doc/yt-dlp + /usr/lib/python3.9/site-packages/yt_dlp + + + + + 2022-03-29 + 2022.03.08.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + R-lang + http://www.r-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + programming.language + A free software environment for statistical computing and graphics + This package includes the core R userspace and all R development components. + http://cran.r-project.org/src/base/R-3/R-3.6.3.tar.gz + + libXmu-devel + icu4c-devel + jdk7-openjdk + xdg-utils + blas-devel + lapack-devel + libXt-devel + libSM-devel + cairo-devel + pango-devel + libjpeg-turbo-devel + tiff-devel + libgfortran + xz-devel + readline-devel + curl-devel + minizip-devel + + + R-3.4.1-parallel.patch + R-3.4.1-rmath-shared.patch + + programming/language/R-lang/pspec.xml + + + R + + blas + make + tiff + libXt + icu4c + libSM + cairo + pango + libXmu + lapack + xdg-utils + libgfortran + jre7-openjdk + libjpeg-turbo + xz + curl + zlib + bzip2 + glib2 + libX11 + libpng + libpcre + readline + + + /etc + /usr/bin + /usr/lib/R + /usr/share/man + /usr/share/R + + + System.Package + + + 99R + ld.so.conf + + + + R-mathlib + Math library for R + R Mathlib kitaplığı + library + + R + + + /usr/lib + /usr/include/Rmath.h + /usr/include/R/Rmath.h + /usr/lib/pkgconfig/libRmath.pc + + + + R-docs + Documents for R + R belgeleri + data:doc + + /usr/share/doc/R + + + + R-devel + Development files for R + R için geliştirme dosyaları + + R + + + /usr/include + /usr/lib/pkgconfig/libR.pc + + + + + 2021-02-27 + 3.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 3.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-04-06 + 3.5.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-12-23 + 3.5.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-09-09 + 3.5.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-08 + 3.5.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-01 + 3.4.3 + Release bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-12-01 + 3.4.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-06-08 + 3.4.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-27 + 3.3.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + ruby + http://www.ruby-lang.org/en/ + + PisiLinux Community + admins@pisilinux.org + + Ruby + app:console + programming.language.ruby + An object-oriented scripting language + Nesneye dayalı bir dil + Ruby est un langage de programmation dynamique, open source mettant l'accent sur la simplicité et la productivité. Il a une syntaxe élégante qui est naturelle à lire et facile à écrire. + Ruby is a dynamic, open source programming language with a focus on simplicity and productivity. It has an elegant syntax that is natural to read and easy to write. + Ruby, basitlik ve üretkenliğe odaklanan açık kaynaklı, dinamik bir betik dilidir. Okuması ve yazması kolay, şık bir sözdizime sahiptir. + Ruby es un lenguaje dinámico, de código abierto, y con enfoque en simplicidad y productividad. Tiene una sintaxis elegante que permite leer naturalmente y escribirlo de manera fácil. + https://cache.ruby-lang.org/pub/ruby/3.0/ruby-3.0.1.tar.xz + + tcl-devel + gmp-devel + zlib-devel + gdbm-devel + tcltk-devel + libffi-devel + openssl-devel + libyaml-devel + + programming/language/ruby/ruby/pspec.xml + + + ruby + An object-oriented language for quick and easy programming + + tcl + gmp + zlib + gdbm + tcltk + libffi + openssl + libyaml + readline + + + /usr/bin + /usr/lib/ruby/3.0.0/ + /usr/lib/libruby.so.3.0.1 + /usr/lib/libruby.so.3.0 + /usr/lib/libruby.so + /usr/lib/ruby/site_ruby/3.0.0/ + /usr/lib/ruby/vendor_ruby/3.0.0/ + /usr/share/man/man1 + /usr/share/doc/ruby/LEGAL + /usr/share/doc/ruby/LICENSE + /usr/share/doc/ruby/README* + /usr/share/doc/ruby/COPYING* + + + + ruby-devel + Development files for ruby + ruby için geliştirme dosyaları + ruby-devel, ruby için geliştirme dosyalarını içerir. + + ruby + + + /usr/lib/pkgconfig/ + /usr/include + + + + ruby-docs + Documentation files for ruby + ruby için belgelendirme dosyaları + ruby-docs, libnotify için belgelendirme dosyalarını içerir. + + ruby + + + /usr/share/ri/ + + + + rubygems + rubygems, The Ruby standard for packaging ruby libraries + ruby için standart kitaplık dosyaları + rubygems, ruby için standart kitaplık dosyalarını içerir. + + ruby + + + /usr/bin/gem + /usr/lib/ruby/gems/ + /usr/share/ri/3.0.0/system/Gem + /usr/share/man/man5 + + + + + 2021-06-28 + 3.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-26 + 2.7.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-07 + 2.6.5 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-01 + 2.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 2.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-06-06 + 2.5.0 + Rebuild for gdbm. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-01-31 + 2.5.0 + Release Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 2.4.0 + Release Bump + Muhammet Dilmaç + m.dilmac@pisilinux.org + + + 2016-06-09 + 2.2.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-04 + 2.2.2 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + rust + https://www.rust-lang.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.language + Systems programming language focused on safety, speed and concurrency + Güvenlik, hız ve eşzamanlılık odaklı sistem programlama dili + Język programowania systemów skoncentrowany na bezpieczeństwie, szybkości i współbieżności + Systems programming language focused on safety, speed and concurrency + Rust inanılmaz hızlı ve bellek tasarrufludur. Çöp toplayıcısı veya çalışma zamanı olmadan performans açısından kritik öneme sahip servisleri çalıştırabilir, gömülü cihazlarda çalışabilir ve diğer dillerle kolayca entegre olabilir. + Rust jest niesamowicie szybki i wydajny w pamięci. Może uruchamiać usługi krytyczne pod względem wydajności bez modułu odśmiecania pamięci lub środowiska wykonawczego, działać na urządzeniach osadzonych i łatwo integrować się z innymi językami. + https://static.rust-lang.org/dist/rustc-1.60.0-src.tar.gz + https://static.rust-lang.org/dist/rust-1.60.0-x86_64-unknown-linux-gnu.tar.gz + + bootstrap-config.toml + + + rust + perl + llvm + cmake + ninja + ocaml + valgrind-devel + zlib-devel + glibc-devel + libxml2-devel + openssl-devel + libssh2-devel + gdb-devel + curl-devel + python3-devel + libffi-devel + + programming/language/rust/pspec.xml + + + rust + + curl + zlib + libgcc + libssh2 + openssl + llvm-libs + + + /usr/bin + /usr/libexec + /etc + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + /usr/share/zsh + + + + rust-docs + Development files for rust + + rust + + + /usr/share/doc/rust/html + + + + + 2022-05-01 + 1.60.0 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2022-02-14 + 1.58.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-10-25 + 1.56.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-16 + 1.55.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-06 + 1.52.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-24 + 1.50.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-12-26 + 1.48.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-09-22 + 1.46.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-02 + 1.44.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-05 + 1.43.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-28 + 1.42.0 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-21 + 1.38.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-29 + 1.35.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2019-05-27 + 1.34.2 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2019-04-17 + 1.34.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2019-02-11 + 1.32.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2018-12-19 + 1.31.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2018-10-29 + 1.30.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2018-10-29 + 1.29.2 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2018-08-30 + 1.27.0 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-04-17 + 1.25.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2017-11-13 + 1.21.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2017-09-26 + 1.20.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + scratch + https://scratch.mit.edu + + Blue Devil + bluedevil@sctzine.com + + GPLv2 + app:gui + programming.language + Programming language learning environment for stories, games, music and art. + Çocuklar için, sanat, müzik ve öyküler ile geliştirme yapılan programlama dili ve ortamı. + Scratch is a programming language that makes it easy to create your own interactive stories, animations, games, music, and art -- and share your creations on the web. + Scratch, çcuklar için sanat, müzik ve öyküler ile geliştirme yapılan programlama dili ve ortamı sunar. + https://download.scratch.mit.edu/scratch-1.4.0.7.src.tar.gz + + gtk2-devel + pango-devel + + programming/language/scratch/pspec.xml + + + scratch + Programming language learning environment for stories, games, music and art. + + gtk2 + pango + squeak-vm + shared-mime-info + desktop-file-utils + + + /usr/share/ + /usr/lib/ + /usr/bin + /usr/share/doc/fplll + + + + + 2020-05-21 + 1.4.0.7 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + tcl + http://www.tcl.tk + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + programming.language.tcl + Tcl programming language + Tcl programlama dili + Tcl provides a powerful platform for creating integration applications that tie together diverse applications, protocols, devices, and frameworks. + Tcl, çeşitli uygulamalar geliştirmek için kullanılabilen bir programlama dilidir. + Tcl provee una plataforma potente para crear aplicaciones de integración de diversos aplicaciones, protocolos, dispositivos y frameworks + mirrors://sourceforge/tcl/tcl8.6.10-src.tar.gz + + zlib-devel + + programming/language/tcl/tcl/pspec.xml + + + tcl + + zlib + + + /usr/bin + /usr/lib + /usr/lib/tcl8.6 + /usr/share/doc + /usr/share/man + + + + tcl-devel + Development files for tcl + tcl için geliştirme dosyaları + + tcl + zlib-devel + + + /usr/include + /usr/lib/*.a + /usr/lib/pkgconfig + /usr/lib/tclConfig.sh + /usr/share/man/man3 + + + + sqlite-tcl + files for sqlite-tcl + + tcl + + + /usr/lib/sqlite3.13.0/libsqlite* + /usr/lib/tcl8/8.6/tdbc/sqlite3-1.0.4.tm + /usr/share/man/mann/tdbc_sqlite3.n + /usr/share/man/mann/sqlite3.n + + + + + 2020-01-15 + 8.6.10 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 8.6.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-30 + 8.6.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-26 + 8.6.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 8.6.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-11 + 8.6.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + tcltk + http://www.tcl.tk + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.language.tcl + Tk est une boîte à outils X11 implémentée avec le langage de script Tcl. + An X11 toolkit implemented with the Tcl scripting language + Tcl betik dili ile yazılmış X11 araç ve kitaplıkları + Tk is an X Windows widget set designed to work closely with the tcl scripting language. It allows you to write simple programs with full featured GUIs in only a little more time then it takes to write a text based interface. + Tk, tcl betik dili ile birlikte kullanılması için tasarlanmış bir X Windows araç setidir. Metin tabanlı arayüzlere oranla daha kısa sürede tam özellikli grafik arayüzlere sahip basit programlar yazmanızı sağlar. + mirrors://sourceforge/tcl/tk8.6.10-src.tar.gz + + tcl-devel + libX11-devel + libXft-devel + fontconfig-devel + + + tk-8.6.9-conf.patch + tk-8.6.4-no-fonts-fix.patch + tk-8.6.1-make.patch + + programming/language/tcl/tcltk/pspec.xml + + + tcltk + + tcl + libX11 + libXft + fontconfig + + + /usr/bin + /usr/lib + /usr/lib/tk8.6 + /usr/share/doc + /usr/share/man + + + + tcltk-devel + Development files for tcltk + tcltk için geliştirme dosyaları + + tcltk + libX11-devel + tcl-devel + + + /usr/include + /usr/lib/*.a + /usr/lib/tkConfig.sh + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-01-18 + 8.6.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 8.6.8 + Rebuild for New Toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-27 + 8.6.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-31 + 8.6.6 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 8.6.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-14 + 8.6.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + vala + http://live.gnome.org/Vala + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + BSD + programming.language + A modern programming language for GNOME + GNOME için modern bir programlama dili + Kompilator języka opartego na bibliotece GObject + Vala is a new programming language that aims to bring modern programming language features to GNOME developers without imposing any additional runtime requirements and without using a different ABI compared to applications and libraries written in C. + Vala, ek bir çalışma zamanı bağımlılığı olmayan ve C kitaplıklarının olduğu gibi kullanılabilmesini sağlayan modern bir programlama dilidir. + Vala to nowy język programowania, którego celem jest udostępnienie cech nowoczesnych języków programowania programistom GNOME bez wymuszania dodatkowych wymagań co do środowiska uruchomieniowego i używania API innego niż w aplikacjach i bibliotekach napisanych w C. + mirrors://gnome/vala/0.56/vala-0.56.1.tar.xz + + help2man + glib2-devel + gobject-introspection-devel + libxslt-devel + dbus-devel + + programming/language/vala/pspec.xml + + + vala + app:console + library + + glib2 + + + /usr/lib/vala + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/vala-*/vapi + /usr/share/vala/vapi/libvala-*.vapi + /usr/share/vim/vimfiles + + + vim/vala.syntax + vim/vala.ftdetect + + + + vala-docs + GNOME devhelp documentation for Vala + Vala için GNOME devhelp kitabı + Pliki dokumentacji dla kompilatora vala + data:doc + + /usr/share/devhelp + + + + vala-devel + Development files for vala + vala için geliştirme dosyaları + Pliki nagłówkowe dla kompilatora vala + + vala + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/pkgconfig + /usr/share/aclocal + /usr/share/vala/Makefile.vapigen + /usr/share/man/man3 + + + + + 2022-06-02 + 0.56.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-31 + 0.54.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-09 + 0.54.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-16 + 0.54.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-29 + 0.54.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-30 + 0.54.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-23 + 0.54.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-04 + 0.54.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-23 + 0.54.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 0.52.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 0.52.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 0.52.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-15 + 0.48.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 0.44.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 0.40.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 0.40.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-29 + 0.36.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-27 + 0.36.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-19 + 0.34.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 0.28.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-22 + 0.28.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + abseil-cpp + https://abseil.io/ + + PisiLinux Community + admins@pisilinux.org + + Apache + library + programming.library + Collection of C++ library code designed to augment the C++ standard library + Collection of C++ library code designed to augment the C++ standard library + Collection of C++ library code designed to augment the C++ standard library + Collection of C++ library code designed to augment the C++ standard library + https://github.com/abseil/abseil-cpp/archive/refs/tags/20211102.0.tar.gz + + cmake + + programming/library/abseil-cpp/pspec.xml + + + abseil-cpp + + libgcc + + + /usr/lib + /usr/share/doc + + + + abseil-cpp-devel + Development files for abseil-cpp + + abseil-cpp + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-12-10 + 20211102.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + accounts-qml-module + https://launchpad.net/ubuntu/ + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv3 + library + programming.library + Expose the Online Accounts API to QML applications + Expose the Online Accounts API to QML applications + Expose the Online Accounts API to QML applications + Expose the Online Accounts API to QML applications + https://gitlab.com/accounts-sso/accounts-qml-module/-/archive/VERSION_0.7/accounts-qml-module-VERSION_0.7.tar.gz + + signon-devel + libaccounts-qt5-devel + qt5-base-devel + qt5-assistant-devel + qt5-declarative-devel + + + Build-add-qmltypes-file-to-repository.patch + Fix-compilation-with-Qt-5.13.patch + + programming/library/accounts-qml-module/pspec.xml + + + accounts-qml-module + + signon + libaccounts-qt5 + qt5-base + qt5-declarative + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2020-04-08 + 0.6 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + amtk + https://wiki.gnome.org/Projects/Amtk + + PisiLinux Community + admins@pisilinux.org + + LGPL2 + app:gui + programming.library + Actions, Menus and Toolbars Kit for GTK+ applications + Gtk uygulamları için eylem, menü ve araç çubuğu kiti + Actions, Menus and Toolbars Kit for GTK+ applications + Gtk uygulamları için eylem, menü ve araç çubuğu kiti + mirrors://gnome/amtk/5.4/amtk-5.4.1.tar.xz + + gettext-devel + glib2-devel + gtk-doc + gtk3-devel + gobject-introspection-devel + meson + + programming/library/amtk/pspec.xml + + + amtk + + gtk3 + glib2 + + + /usr + /usr/share + /usr/share/man + + + + amtk-devel + amtk için geliştirme dosyaları + + amtk + glib2-devel + gtk3-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-05-25 + 5.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-02 + 5.3.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + appstream + https://www.freedesktop.org/wiki/Distributions/AppStream/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.library + Provides a standard for creating app stores across distributions + Provides a standard for creating app stores across distributions + Provides a standard for creating app stores across distributions + Provides a standard for creating app stores across distributions + https://www.freedesktop.org/software/appstream/releases/AppStream-0.14.6.tar.xz + + cmake + meson + xmlto + gtk-doc + vala-devel + docbook-xsl + docbook-xml + libsoup-devel + lmdb-devel + glib2-devel + python-six + python3-devel + libxslt-devel + libyaml-devel + libxml2-devel + qt5-base-devel + qt5-linguist + gperf + curl-devel + gobject-introspection-devel + + programming/library/appstream/pspec.xml + + + appstream + + curl + libxml2 + libyaml + glib2 + libsoup + lmdb + + + /usr/bin + /etc + /usr/lib + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/doc + /usr/share/gettext + /usr/share/vala + /usr/share/gir-1.0 + /usr/share/libalpm + /usr/share/installed-tests/appstream/metainfo-validate.test + + + System.Package + + + + appstream-qt5 + + qt5-base + libgcc + appstream + glib2 + + + /usr/lib/libAppStreamQt.* + + + + appstream-qt5-devel + Development files for appstream + + appstream-qt5 + + + /usr/include/AppStreamQt + /usr/lib/cmake + + + + appstream-devel + Development files for appstream + + appstream + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-01 + 0.14.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-11 + 0.14.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-31 + 0.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-26 + 0.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-11 + 0.12.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 0.12.10 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-04-14 + 0.12.5 + Rebuild qt5. + PisiLinux Community + admins@pisilinux.org + + + 2019-02-13 + 0.12.5 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-11-09 + 0.12.3 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-10-20 + 0.12.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + appstream-glib + https://people.freedesktop.org/~hughsient/appstream-glib/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + programming.library + Provides GObjects and helper methods to read and write AppStream metadata + Provides GObjects and helper methods to read and write AppStream metadata + https://people.freedesktop.org/~hughsient/appstream-glib/releases/appstream-glib-0.7.18.tar.xz + + meson + autoconf-archive + gperf + gcap-devel + libxslt-devel + docbook-xsl + glib2-devel + libarchive-devel + libsoup-devel + json-glib-devel + gdk-pixbuf-devel + libpng-devel + gtk3-devel + libyaml-devel + libutil-linux-devel + gobject-introspection-devel + libxml2-devel + + + 0001-builder-Implement-support-for-.pisi-format.patch + 0002-pisi-Enable-comparison-by-release-field-highest-win.patch + + programming/library/appstream-glib/pspec.xml + + + appstream-glib + + gtk3 + cairo + pango + libyaml + freetype + glib2 + libsoup + json-glib + gdk-pixbuf + libarchive + fontconfig + libutil-linux + libxml2 + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/locale + /usr/share/bash-completion/ + /usr/share/aclocal + /usr/share/gettext + /usr/share/installed-tests/appstream-glib + /usr/share/doc + + + + appstream-glib-devel + + appstream-glib + libutil-linux-devel + libarchive-devel + glib2-devel + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-06-23 + 0.7.18 + Added PiSi Support. + Berk Çakar + berk2238@hotmail.com + + + 2020-10-10 + 0.7.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-02 + 0.7.16 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-02-13 + 0.7.14 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-04 + 0.7.12 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-10 + 0.7.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + binaryen + https://github.com/WebAssembly/binaryen + + Blue Devil + bluedevil@sctzine.com + + Apache2.0 + app:console + library + programming.library + Compiler infrastructure and toolchain library for WebAssembly + C++ ile WebAssembly için yazılış derleyici altyapısı ve araç zinciri. + Binaryen is a compiler and toolchain infrastructure library for WebAssembly, written in C++. It aims to make compiling to WebAssembly easy, fast, and effective. + binaryen, C++ ile WebAssembly için yazılış derleyici altyapısı ve araç zinciri sunar. Binaryen, WebAssembly ile derlemeyi kolay, hızlı ve verimli yapmayı amaçlar. + https://github.com/WebAssembly/binaryen/archive/version_96.tar.gz + + cmake + meson + + + b43807a835fc878e5eefcb8b4a18aff62d7f4540.patch + + programming/library/binaryen/pspec.xml + + + binaryen + Extremely fast hash algorithm + + /usr/lib + /usr/share/doc + /usr/bin + /etc/profile.d/binaryen.sh + + + binaryen.sh + + + + binaryen-devel + Development files for binaryen + binaryen için geliştirme dosyaları + binaryen-devel, binaryen için geliştirme dosyalarını içerir. + + binaryen + + + /usr/include + + + + + 2020-09-07 + 96 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + black-hole-solver + https://www.shlomifish.org/open-source/projects/black-hole-solitaire-solver/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + library + programming.library + The Black Hole Solitaire Solver Executable + The Black Hole Solitaire Solver Executable + The Black Hole Solitaire Solver Executable + The Black Hole Solitaire Solver Executable + https://fc-solve.shlomifish.org/downloads/fc-solve/black-hole-solver-1.10.1.tar.xz + + cmake + perl-path-tiny + python3-devel + rinutils-devel + + programming/library/black-hole-solver/pspec.xml + + + black-hole-solver + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + black-hole-solver-devel + Development files for black-hole-solver + + black-hole-solver + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-05-10 + 1.10.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + catch2 + https://github.com/catchorg/catch2 + + Safa Arıman + safaariman@pisilinux.org + + BSLv1 + library + programming.library + C++ Automated Test Cases in Headers + C++ Automated Test Cases in Headers + Catch2 is a multi-paradigm test framework for C++, which also supports Objective-C. It is primarily distributed as a single header file, although certain extensions may require additional headers. + Catch2 is a multi-paradigm test framework for C++, which also supports Objective-C. It is primarily distributed as a single header file, although certain extensions may require additional headers. + https://github.com/catchorg/Catch2/archive/v2.11.1.tar.gz + + cmake + python3-devel + + programming/library/catch2/pspec.xml + + + catch2 + + /usr/include + /usr/lib + /usr/share/doc + /usr/share + + + + + 2020-03-17 + 2.11.1 + First release + Safa Arıman + safaariman@pisilinux.org + + + + + + cbindgen + https://github.com/eqrion/cbindgen + + PisiLinux Community + admins@pisilinux.org + + MPL2 + library + programming.library + A tool for generating C bindings to Rust code + A tool for generating C bindings to Rust code + Rust koduna C bağlamaları oluşturmak için bir araç + Rust koduna C bağlamaları oluşturmak için bir araç + https://github.com/eqrion/cbindgen/archive/v0.23.0.tar.gz + + rust + llvm + curl-devel + + programming/library/cbindgen/pspec.xml + + + cbindgen + + /usr/bin + /usr/share/doc + + + + + 2022-05-30 + 0.23.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-27 + 0.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-06 + 0.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-27 + 0.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-26 + 0.17.0 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-12-27 + 0.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-02 + 0.15.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-09-24 + 0.14.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-02 + 0.14.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-29 + 0.14.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-05 + 0.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-16 + 0.14.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 0.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-28 + 0.13.2 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-01-11 + 0.12.1 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-12-03 + 0.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-21 + 0.9.1 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-09-03 + 0.9.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2019-05-20 + 0.8.7 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2019-03-19 + 0.8.2 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2019-02-11 + 0.7.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-11-16 + 0.6.7 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2018-10-29 + 0.6.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + cdk + https://invisible-island.net/cdk/cdk.html + + fury + uglyside@yandex.ru + + custom + library + programming.library + This is a modified/enhanced version of Cdk. + Cdk stands for 'Curses Development Kit' and it currently contains 21 ready to use widgets which facilitate the speedy development of full screen curses programs. This little project of mine started as a test to see how compatible my Linux machine was to other UNIX breeds. While doing this I discovered Ncurses, and played with it. These widgets are the result of over a years worth of playing. + https://invisible-mirror.net/archives/cdk/cdk-5.0-20211216.tgz + + Xaw3d-devel + ncurses-devel + + programming/library/cdk/pspec.xml + + + cdk + + ncurses + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + cdk-devel + + ncurses-devel + perl + cdk + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-17 + 5.0.20211216 + Version bump. + fury + uglyside@yandex.ru + + + 2020-11-28 + 5.0.20200923 + First build. + fury + uglyside@yandex.ru + + + + + + cpp-utilities + https://github.com/Martchus/cpp-utilities + + fury + uglyside@yandex.ru + + GPL-2 + library + programming.library + Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities. + Common C++ classes and routines used by my applications such as argument parser, IO and conversion utilities. + https://github.com/Martchus/cpp-utilities/archive/refs/tags/v5.14.0.tar.gz + + cmake + doxygen + boost-devel + cppunit-devel + + programming/library/cpp-utilities/pspec.xml + + + cpp-utilities + + boost + libgcc + + + /usr/lib + /usr/share + /usr/share/doc + + + + cpp-utilities-devel + + cpp-utilities + + + /usr/include + /usr/lib/pkgconfig + /usr/share/c++-utilities + + + + + 2022-04-14 + 5.14.0 + Version bump + fury + uglyside@yandex.ru + + + 2022-01-18 + 5.12.0 + Version bump + fury + uglyside@yandex.ru + + + 2021-11-04 + 5.11.1 + First build + fury + uglyside@yandex.ru + + + + + + double-conversion + https://github.com/google/double-conversion + + fury + uglyside@yandex.ru + + BSD-3-Clause + library + programming.library + Efficient binary-decimal and decimal-binary conversion routines for IEEE doubles. + IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları. + double-conversion provides binary-decimal and decimal-binary routines for IEEE doubles. + double-conversion, IEEE çiftleri için ikilik-onluk ve onluk-ikilik sayı tabanları arasında verimli dönüşüm yordamları sunar. + https://github.com/google/double-conversion/archive/refs/tags/v3.1.7.tar.gz + + cmake + + programming/library/double-conversion/pspec.xml + + + double-conversion + + libgcc + + + /usr/lib + /usr/share/doc + + + + double-conversion-devel + double-conversion için geliştirme dosyaları + double-conversion-devel, double-conversion için geliştirme dosyalarını içerir. + + double-conversion + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-01-04 + 3.1.7 + Version bump. + fury + uglyside@yandex.ru + + + 2021-12-20 + 3.1.6 + Version bump. + fury + uglyside@yandex.ru + + + 2020-04-30 + 3.1.5 + First build. + fury + uglyside@yandex.ru + + + + + + editorconfig-core-c + https://editorconfig.org/ + + Pisi Linux Admins + admin@pisilinux.org + + BSD + library + programming.library + EditorConfig core library written in + EditorConfig core library written in + EditorConfig çekirdek kitaplığı + EditorConfig çekirdek kitaplığı + https://github.com/editorconfig/editorconfig-core-c/archive/v0.12.4.tar.gz + + cmake + doxygen + libpcre2-devel + + programming/library/editorconfig-core-c/pspec.xml + + + editorconfig-core-c + + libpcre2 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + editorconfig-core-c-devel + Development files for editorconfig-core-c + + editorconfig-core-c + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2020-09-21 + 0.12.4 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + expected + https://github.com/TartanLlama/expected + + Safa Arıman + safa@ariman.gen.tr + + CC0 + library + programming.library + Single header implementation of std::expected with functional-style extensions. + Single header implementation of std::expected with functional-style extensions. + std::expected is proposed as the preferred way to represent object which will either have an expected value, or an unexpected value giving information about why something failed. Unfortunately, chaining together many computations which may fail can be verbose, as error-checking code will be mixed in with the actual programming logic. This implementation provides a number of utilities to make coding with expected cleaner. + std::expected is proposed as the preferred way to represent object which will either have an expected value, or an unexpected value giving information about why something failed. Unfortunately, chaining together many computations which may fail can be verbose, as error-checking code will be mixed in with the actual programming logic. This implementation provides a number of utilities to make coding with expected cleaner. + https://github.com/TartanLlama/expected/archive/v1.0.0.tar.gz + + cmake + git + catch2 + + programming/library/expected/pspec.xml + + + expected-devel + + /usr/include + /usr/share/doc + /usr/share/cmake + + + + + 2020-03-17 + 1.0.0 + First release + Safa Arıman + safa@ariman.gen.tr + + + + + + fmt + https://fmt.dev/latest/index.html + + Blue Devil + bluedevil@sctzine.com + + BSD + library + programming.library + Open-source formatting library for C++ + C++ için açık kaynak kodlu biçimlendirme kitaplığı. Open-source formatting library for C++ + {fmt} is an open-source formatting library for C++. It can be used as a safe and fast alternative to (s)printf and iostreams. + fmt, C++ için açık kaynak kodlu biçimlendirme kitaplığı sunar. + https://github.com/fmtlib/fmt/archive/refs/tags/8.0.1.tar.gz + + cmake + + programming/library/fmt/pspec.xml + + + fmt + Open-source formatting library for C++ + + libgcc + + + /usr/lib + /usr/share/doc/fmt + + + + fmt-devel + Development files for fmt + fmt için geliştirme dosyaları + fmt-devel, fmt için geliştirme dosyalarını içerir. + + fmt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-17 + 8.0.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-09-23 + 7.0.3 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-05-18 + 6.2.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + freecell-solver + https://fc-solve.shlomifish.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.library + A program that automatically solves layouts of Freecell and similar variants of Card Solitaire + Freecell ve Card Solitaire'ın benzer varyantlarının düzenlerini otomatik olarak çözen bir program + This is Freecell Solver - a program that automatically solves layouts of Freecell and similar variants of Card Solitaire such as Eight Off, Forecell, and Seahaven Towers, as well as Simple Simon boards. + Freecell Çözücüsü: Eight Off, Forecell, Seahaven Towers, Simple Simon gibi Freecell ve Card Solitaire'ın benzer varyantlarının düzenlerini otomatik olarak çözen bir programdır. + https://fc-solve.shlomifish.org/downloads/fc-solve/freecell-solver-6.0.1.tar.xz + + cmake + gperf + perl-Moo + python3-six + perl-path-tiny + rinutils-devel + python3-random2 + python3-pysol_cards + perl-template-toolkit + + programming/library/freecell-solver/pspec.xml + + + freecell-solver + A program that automatically solves layouts of Freecell and similar variants of Card Solitaire + + rinutils + + + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + freecell-solver-devel + Development files for freecell-solver + freecell-solver için geliştirme dosyaları + freecell-solver-devel, freecell-solver için geliştirme dosyalarını içerir. + + freecell-solver + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-23 + 6.0.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-13 + 5.16.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-11-11 + 5.0.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + glm + http://glm.g-truc.net/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.library + C++ mathematics library + C++ matematik kitaplığı + C++ mathematics library for 3D software based on the OpenGL Shading Language (GLSL) specification + GLM, OpenGL Shading Language (GLSL) spesifikasyonuna dayanan 3D yazılımlar için bir C + + matematik kitaplığıdır. + https://github.com/g-truc/glm/archive/0.9.9.6.tar.gz + + cmake + + + glm-0.9.9.6-install.patch + + programming/library/glm/pspec.xml + + + glm + + /usr/include + /usr/lib + + + + glm-doc + + /usr/share/doc + + + + + 2020-02-21 + 0.9.9.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-09 + 0.9.8.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + 2017-01-01 + 0.9.8.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + gom + https://wiki.gnome.org/Projects/Gom + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + programming.library + GObject to SQLite object mapper library + GObject'den SQLite nesne eşleyici kitaplığı + GObject to SQLite object mapper library + GObject'den SQLite nesne eşleyici kitaplığı + gom + mirrors://gnome/gom/0.4/gom-0.4.tar.xz + + gobject-introspection-devel + gdk-pixbuf-devel + python3-pygobject3-devel + sqlite-devel + python3-devel + meson + + programming/library/gom/pspec.xml + + + gom + + glib2 + sqlite + + + /usr/bin + /usr/lib/libgom* + /usr/lib/girepository-1.0 + /usr/lib/python3* + /usr/share/doc + + + + gom-devel + gom için geliştirme dosyaları + + gom + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-10-24 + 0.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-10 + 0.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + gtksourceviewmm3 + https://wiki.gnome.org/Projects/GtkSourceView + + PisiLinux Community + admins@pisilinux.org + + LGPL-2.1 + library + programming.library + GtkSourceView is a GNOME library that extends GtkTextView, the standard GTK+ widget for multiline text editing. + GtkSourceView adds support for syntax highlighting, undo/redo, file loading and saving, search and replace, a completion system, printing, displaying line numbers, and other features typical of a source code editor. + https://download.gnome.org/sources/gtksourceviewmm/3.18/gtksourceviewmm-3.18.0.tar.xz + + atk-devel + gtk3-devel + atkmm-devel + cairo-devel + glib2-devel + pango-devel + glibmm-devel + gtkmm3-devel + cairomm-devel + pangomm-devel + libsigc++-devel + gdk-pixbuf-devel + gtksourceview3-devel + + programming/library/gtksourceviewmm3/pspec.xml + + + gtksourceviewmm3 + + atk + gtk3 + atkmm + cairo + glib2 + pango + glibmm + gtkmm3 + cairomm + pangomm + libsigc++ + gdk-pixbuf + gtksourceview3 + + + /usr/lib + /usr/share + /usr/share/doc + + + + gtksourceviewmm3-devel + + gtksourceviewmm3 + glibmm-devel + gtkmm3-devel + gtksourceview3-devel + + + /usr/include + /usr/lib/pkgconfig + + + + gtksourceviewmm3-docs + + gtksourceviewmm3 + + + /usr/share/doc/gtksourceviewmm-3.0 + + + + + 2021-12-18 + 3.18.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + guidelines-support-library + https://github.com/Microsoft/GSL + + Safa Arıman + safaariman@pisilinux.org + + MIT + library + programming.library + Microsoft Guidelines Support Library + Microsoft Kılavuz Destek Kitaplığı + The Guideline Support Library (GSL) contains functions and types that are suggested for use by the C++ Core Guidelines maintained by the Standard C++ Foundation. This package contains Microsoft's implementation of GSL. + Kılavuz Destek Kitaplığı (GSL), Standart C++ Vakfı tarafından sürdürülen C++ Çekirdek Kılavuzu tarafından kullanılması için önerilen yordam ve yapıları içerir. + https://github.com/microsoft/GSL/archive/v3.1.0.tar.gz + + cmake + + programming/library/guidelines-support-library/pspec.xml + + + guidelines-support-library-devel + Development files of Microsoft Guidelines Support Library + guidelines-support-library için geliştirme dosyaları + guidelines-support-library-devel, guidelines-support-library için geliştirme dosyalarını içerir. + + /usr/share/doc + /usr/include + /usr/share/cmake + + + + + 2020-09-23 + 3.1.0 + Major version bump. Translations fixed. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-18 + 2.1.0 + First release + Safa Arıman + safaariman@pisilinux.org + + + + + + gumbo-parser + https://github.com/google/gumbo-parser + + pisilinux community + admins@pisilinux.org + + Apache-2 + library + programming.library + An HTML5 parsing library in pure C99. + Gumbo is an implementation of the HTML5 parsing algorithm implemented as a pure C99 library with no outside dependencies. + https://github.com/google/gumbo-parser/archive/refs/tags/v0.10.1.tar.gz + programming/library/gumbo-parser/pspec.xml + + + gumbo-parser + + /usr/lib + + + + gumbo-parser-devel + + gumbo-parser + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-20 + 0.10.1 + First build + pisilinux community + admins@pisilinux.org + + + + + + gypsy + https://gypsy.freedesktop.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv2 + library + programming.library + GPS multiplexing daemon + GPS multiplexing daemon + GPS multiplexing daemon + GPS multiplexing daemon + https://gypsy.freedesktop.org/releases/gypsy-0.9.tar.gz + + gtk-doc + dbus-devel + python-six + glib2-devel + libxslt-devel + libgudev-devel + dbus-glib-devel + bluez-libs-devel + gobject-introspection-devel + + + g_type_init_deprecation.patch + gypsy-0.9-format.patch + gypsy-0.9-mga-no-werror.patch + gypsy-0.9-gcc7.patch + + programming/library/gypsy/pspec.xml + + + gypsy + + dbus + glib2 + libgudev + dbus-glib + bluez-libs + + + /etc + /usr/lib + /usr/share + /usr/share/doc + /usr/libexec/gypsy-daemon + + + + gypsy-devel + + gypsy + + + /usr/lib/pkgconfig + /usr/include + + + + gypsy-docs + Reference documents for gypsy + + /usr/share/gtk-doc + + + + + 2020-01-18 + 0.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 0.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-03 + 0.9 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + jemalloc + https://github.com/jemalloc/jemalloc/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.library + General-purpose scalable concurrent malloc implementation + General-purpose scalable concurrent malloc implementation + Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması + Genel amaçlı ölçeklenebilir eşzamanlı malloc uygulaması + https://github.com/jemalloc/jemalloc/archive/refs/tags/5.2.1.tar.gz + programming/library/jemalloc/pspec.xml + + + jemalloc libgcc /usr/bin /usr/lib + /usr/share + /usr/share/man /usr/share/doc - xavs2-devel - Header files for xavs2. + jemalloc-devel + Development files for jemalloc - xavs2 + jemalloc - /usr/include - /usr/lib/pkgconfig + /usr/include + /usr/lib/pkgconfig - 2020-01-14 - 1.3 - First release. - İdris Kalp - idriskalp@gmail.com + 2021-11-20 + 5.2.1 + First release + PisiLinux Community + admins@pisilinux.org - cheese - https://gitlab.gnome.org/GNOME/cheese + jsoncpp + https://github.com/open-source-parsers/jsoncpp + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.library + C++ library for interacting with JSON + JSON ile etkileşim için C ++ kütüphanesi + C++ library for interacting with JSON + JSON ile etkileşim için C ++ kütüphanesi + https://github.com/open-source-parsers/jsoncpp/archive/1.9.2.tar.gz + + meson + + programming/library/jsoncpp/pspec.xml + + + jsoncpp + + libgcc + + + /usr/lib + /usr/share + /usr/share/doc + + + + jsoncpp-devel + Development files for jsoncpp + + jsoncpp + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2020-03-01 + 1.9.2 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-11-30 + 1.8.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + jsonrpc-glib + https://gitlab.gnome.org/GNOME/jsonrpc-glib Pisi Linux Admins admins@pisilinux.org - GPLv2 - multimedia.video - Take photos and videos with your webcam, with fun graphical effects - Take photos and videos with your webcam, with fun graphical effects - https://download.gnome.org/sources/cheese/41/cheese-41.1.tar.xz + LGPLv2.1 + programming.library + jsonrpc-glib is a library to communicate using the JSON-RPC 2.0 specification. + Jsonrpc-GLib is a library to communicate with JSON-RPC based peers in either a synchronous or asynchronous fashion. It also allows communicating using the GVariant serialization format instead of JSON when both peers support it. + https://download.gnome.org/sources/jsonrpc-glib/3.42/jsonrpc-glib-3.42.0.tar.xz - appstream-glib-devel - gobject-introspection-devel meson vala-devel - yelp-tools - clutter-devel - clutter-gst-devel - clutter-gtk-devel - gnome-desktop-devel - libseccomp-devel - libseccomp - libcanberra-devel - libcanberra-gtk3-devel - gettext-devel - gdk-pixbuf-devel glib2-devel - itstool - libXtst-devel - librsvg-devel - libgee-devel - gnome-video-effects - gst-plugins-bad-devel + gobject-introspection-devel + json-glib-devel - multimedia/video/cheese/pspec.xml + programming/library/jsonrpc-glib/pspec.xml - cheese + jsonrpc-glib + library - cogl - gtk3 - cairo glib2 - libX11 - clutter - gstreamer - gdk-pixbuf - clutter-gst - clutter-gtk - gnome-desktop - gst-plugins-base - libcanberra-gtk3 + json-glib - /usr/bin /usr/lib/girepository-1.0 /usr/lib/lib*.so* - /usr/share/applications - /usr/share/dbus-1 - /usr/share/help /usr/share/doc - /usr/share/locale - /usr/share/man - /usr/share/glib-2.0 - /usr/share/icons - /usr/share/metainfo - cheese-devel + jsonrpc-glib-devel + Development files for jsonrpc-glib - cheese - gtk3-devel + jsonrpc-glib glib2-devel - libX11-devel - clutter-devel - gstreamer-devel - gdk-pixbuf-devel - clutter-gst-devel - clutter-gtk-devel - gst-plugins-base-devel - gst-plugins-bad-devel + json-glib-devel /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig /usr/share/gir-1.0 + /usr/share/vala + + 2022-03-21 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-11-15 - 41.1 + 2022-01-07 + 3.41.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-09-20 - 41.0 + 2021-09-23 + 3.40.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-05-28 + 2021-06-13 3.38.0 First release for Pisi Linux Berk Çakar @@ -330275,387 +299080,118 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - libfdk-aac - https://github.com/mstorsjo/fdk-aac + libaccounts-glib + https://code.google.com/p/accounts-sso PisiLinux Community admins@pisilinux.org - custom - library - multimedia.video - Fraunhofer FDK AAC codec library - Fraunhofer FDK AAC codec library - Fraunhofer FDK AAC codec library - Fraunhofer FDK AAC codec library - https://github.com/mstorsjo/fdk-aac/archive/v2.0.1.tar.gz - multimedia/video/libfdk-aac/pspec.xml + LGPLv2 + programming.library + Accounts and SSO (Single Sign-On) framework + Accounts and SSO (Single Sign-On) framework for Linux and POSIX based platforms. + https://sourceforge.net/projects/pisilinux/files/source/libaccounts-glib-1.24.tar.gz + + meson + vala-devel + glib2-devel + check-devel + libxml2-devel + sqlite-devel + gtk-doc + docbook-xsl + dbus-glib-devel + gobject-introspection-devel + python3-pygobject3-devel + + programming/library/libaccounts-glib/pspec.xml - libfdk-aac + libaccounts-glib + library + + glib2 + sqlite + libxml2 + + /usr/bin /usr/lib + /usr/share/backup-framework/applications/accounts.conf + /usr/share/xml + /usr/share/gettext/its/ + /usr/share/libaccounts-glib/testdata + /usr/share/dbus-1/interfaces/com.google.code.AccountsSSO.Accounts.Manager.xml + /usr/share/man/man1 + /usr/share/gir-1.0/Accounts-1.0.gir + /usr/share/vala - libfdk-aac-devel - Development files for libfdk-aac + libaccounts-glib-devel + Development files for libaccounts-glib - libfdk-aac + libaccounts-glib + glib2-devel + libxml2-devel + sqlite-devel /usr/include - /usr/lib/cmake /usr/lib/pkgconfig - - - 2020-01-18 - 2.0.1 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2019-11-04 - 2.0.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libtheora - https://www.theora.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - multimedia.video - Le codec (compresseur / décompresseur) de compression vidéo Theora. - The Theora Video Compression Codec - Theora video sıkıştırma kodlaması - Der Theora Video Kompressions-Codec - libtheora is Xiph.Org's first publicly released video codec, intended for use within the Ogg's project's Ogg multimedia streaming system. - libtheora, Ogg projesi kapsamında Ogg çokluortam akış sistemi ile beraber kullanılmak üzere tasarlanmış bir video kodlamasıdır. - http://downloads.xiph.org/releases/theora/libtheora-1.1.1.tar.bz2 - - libogg-devel - libvorbis-devel - - - flags.patch - libtheora-1.1.1-libpng16.patch - - multimedia/video/libtheora/pspec.xml - - libtheora + libaccounts-glib-docs + Help files and API documents for libaccounts-glib + data:doc - libogg - libvorbis + libaccounts-glib - /usr/lib + /usr/share/gtk-doc /usr/share/doc - - libtheora-32bit - 32-bit shared libraries for libtheora - emul32 - emul32 - - libogg-32bit - - - libtheora - libogg-32bit - - - /usr/lib32 - - - - libtheora-devel - Development files for libtheora - libtheora için geliştirme dosyaları - - libtheora - libogg-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/lib32/pkgconfig - - - 2020-01-11 - 1.1.1 - Rebuild + 2021-08-08 + 1.24 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-04 + 1.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.21 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-15 + 1.21 + Release Bump Kamil Atlı suvari@pisilinux.org - - 2018-07-31 - 1.1.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 1.1.1 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.1.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-05-27 - 1.1.1 - Release bump - Serdar Soytetir - kaptan@pisilinux.org - - - 2014-05-20 - 1.1.1 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - gst-plugins-good - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Ensemble de plug-ins (greffons) de bonne qualité sous la licence préférée de gstreamer. - 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.20.2.tar.xz - - meson - xz-devel - valgrind - orc-devel - gtk3-devel - flac-devel - lame-devel - cairo-devel - aalib-devel - libdv-devel - speex-devel - mpg123-devel - taglib-devel - libpng-devel - libvpx-devel - libX11-devel - libv4l-devel - wavpack-devel - twolame-devel - libsoup-devel - libcaca-devel - libgudev-devel - libunwind-devel - libshout-devel - libXfixes-devel - libXdamage-devel - libavc1394-devel - libraw1394-devel - gdk-pixbuf-devel - libiec61883-devel - libjpeg-turbo-devel - gstreamer-devel - pulseaudio-libs-devel - gst-plugins-base-devel - jack-audio-connection-kit-devel - - multimedia/video/gst-plugins-good/pspec.xml - - - gst-plugins-good - - orc - gtk3 - flac - zlib - lame - aalib - bzip2 - cairo - glib2 - libdv - speex - mpg123 - taglib - libX11 - libpng - libv4l - libvpx - twolame - libXext - libcaca - libsoup - wavpack - libgudev - libshout - libXfixes - gdk-pixbuf - libXdamage - libavc1394 - libraw1394 - libiec61883 - libjpeg-turbo - gstreamer - pulseaudio-libs - gst-plugins-base - jack-audio-connection-kit - - - /etc/gconf - /usr/bin - /usr/lib - /usr/share/gstreamer-1.0/presets - /usr/share/doc - /usr/share/man - /usr/share/locale - - - gst-plugins-good-next - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 1.16.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-26 - 1.14.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-16 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-28 - 1.12.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.10.31 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.10.31 - Rebuild and edit. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 0.10.31 + 2016-06-11 + 1.21 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-28 - 0.10.31 + 2016-03-30 + 1.21 First release Alihan Öztürk alihan@pisilinux.org @@ -330664,405 +299200,425 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - gst-editing-services - https://gitlab.freedesktop.org/gstreamer/gst-editing-services + libaccounts-qt5 + https://gitlab.com/accounts-sso/libaccounts-qt - Pisi Linux Admins - admin@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - LGPLv3 + GPLv3 library - multimedia.video - GStreamer library for creating audio/video editors - 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.20.2.tar.xz + programming.library + Qt5-based client library for accessing the online accounts database + Qt5-based client library for accessing the online accounts database + https://sourceforge.net/projects/pisilinux/files/source/libaccounts-qt-1.16.tar.gz - gstreamer-devel - gst-plugins-base-devel - gst-plugins-bad-devel - gobject-introspection-devel - libxml2-devel - python3-devel - python3-pygobject3-devel - meson + doxygen + qt5-base-devel + qt5-assistant-devel + glib2-devel + libaccounts-glib-devel - multimedia/video/gst-editing-services/pspec.xml + programming/library/libaccounts-qt5/pspec.xml - gst-editing-services + libaccounts-qt5 glib2 - libxml2 - python3 - gstreamer - gst-plugins-base + libgcc + qt5-base + libaccounts-glib - /usr/bin - /usr/lib/libges* - /usr/lib/girepository-1.0 - /usr/lib/gst-validate-launcher - /usr/lib/gstreamer-1.0 - /usr/lib/python3.* - /usr/share/bash-completion - /usr/share/doc - /usr/share/gstreamer-1.0 - /usr/share/man + /usr/lib/libaccounts-qt5* + /usr/share/doc/libaccounts-qt5 + /usr/lib/cmake - gst-editing-services-devel - Development files for gst-editing-services + libaccounts-qt5-devel + Development files for libaccounts-qt5 - gst-editing-services + libaccounts-qt5 + qt5-base-devel glib2-devel - libxml2-devel - python3-devel - gstreamer-devel - gst-plugins-base-devel /usr/include - /usr/share/gir-1.0 /usr/lib/pkgconfig + + libaccounts-qt5-docs + Help files and API documents for libaccounts-qt5 + data:doc + + libaccounts-qt5 + + + /usr/share/doc + + + + libaccounts-qt5-tools + This package contains the tools for the libaccounts-qt5 library + data:doc + + libaccounts-qt5 + libgcc + qt5-base + + + /usr/bin + /usr/share/libaccounts-qt-tests + + - - 2022-05-11 - 1.20.2 + + 2020-02-04 + 1.16 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2019-07-22 + 1.14 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 1.14 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.14 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-15 + 1.14 + Release Bump + Kamil Atlı + suvari@pisilinux.org + - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-11 + 1.14 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2021-10-24 - 1.18.4 - Rebuild. - Pisi Linux Admins - admin@pisilinux.org + 2016-05-20 + 1.13 + Rebuild for qt5 + Alihan Öztürk + alihan@pisilinux.org - 2021-06-14 - 1.18.4 + 2016-03-30 + 1.14 First release - Pisi Linux Admins - admin@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - xine-lib - http://xine.sourceforge.net/ + libadwaita + https://gitlab.gnome.org/GNOME/libadwaita PisiLinux Community admins@pisilinux.org - GPLv2 + LGPLv2.1 library - multimedia.video - Librairies centrales pour le lecteur vidéo Xine. - Core libraries for Xine movie player - Xine çokluortam oynatıcısının çekirdek kitaplıkları - This package contains the Xine library. It can be used to play back various media, decode multimedia files from local disk drives, and display multimedia streamed over the Internet. It interprets many of the most common multimedia formats available - and some uncommon formats, too. - xine-lib çeşitli medyaları oynatmak, farklı medya yapılarını birbirine dönüştürmek, Internet üzerinden yayınları işleyip göstermek gibi işlevleri olan bir çokluortam kitaplığıdır. Yaygın çokluortam yapılarının çoğunu desteklediği gibi fazla yaygın olmayan yapıları da desteklemektedir. - https://sourceforge.net/projects/xine/files/xine-lib/1.2.12/xine-lib-1.2.12.tar.xz - - accel_vaapi.h - + programming.library + Building blocks for modern GNOME applications. + Building blocks for modern GNOME applications. + Modern GNOME uygulamaları için yapı taşları. + Modern GNOME uygulamaları için yapı taşları. + https://download.gnome.org/sources/libadwaita/1.1/libadwaita-1.1.2.tar.xz - aom-devel - dav1d-devel - faad2-devel - gnutls-devel - libmng-devel - libpng-devel - libcaca-devel - libssh2-devel - openssl-devel - wayland-devel - libdvdnav-devel - libmpcdec-devel - libdvdread-devel - libjpeg-turbo-devel - libXext-devel - fontconfig-devel - freetype-devel - zlib-devel - libXinerama-devel - libXv-devel - libXvMC-devel - libogg-devel - libvorbis-devel - libglvnd-devel - libdvdcss-devel - DirectFB-devel - flac-devel - libsdl-devel - alsa-lib-devel - aalib-devel - libtheora-devel - libvpx-devel - samba-devel - libmad-devel - speex-devel - libmodplug-devel - ffmpeg-devel - a52dec-devel - libv4l-devel - pulseaudio-libs-devel - libdca-devel - libbluray-devel - libmng-devel - libSM-devel - libICE-devel - libcdio-devel - mesa-glu-devel - libvdpau-devel + meson + sassc + gtk4-devel + cairo-devel + glib2-devel + pango-devel + libsass-devel + fribidi-devel + graphene-devel + gobject-introspection-devel - - list.patch - no_autopoint.patch - lpthread.patch - - multimedia/video/xine-lib/pspec.xml + programming/library/libadwaita/pspec.xml - xine-lib + libadwaita - libglvnd - zlib - flac - speex - aalib - libXv - libmad - a52dec - libdca - libsdl - libogg - libv4l - ffmpeg - libX11 - libXvMC - libXext - libvpx - libxcb - alsa-lib - freetype - DirectFB - libvdpau - mesa-glu - libtheora - libbluray - libvorbis - fontconfig - libmodplug - aom - dav1d - faad2 - gnutls - libmng - libpng - libcaca - libssh2 - openssl - wayland - libdvdnav - libmpcdec - libdvdread - libjpeg-turbo - pulseaudio-libs + gtk4 + cairo + glib2 + pango + libsass + fribidi + graphene /usr/bin /usr/lib - /usr/share/xine - /usr/share/xine-lib/fonts - /usr/share/man - /usr/share/doc/xine-lib - - - - xine-lib-devel - Development files for xine-lib - xine-lib için geliştirme dosyaları - xine-lib için geliştirme dosyaları - - xine-lib - - - /usr/bin/xine-config - /usr/lib/pkgconfig - /usr/include - /usr/share/aclocal - - - - - 2022-04-19 - 1.2.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-29 - 1.2.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 1.2.10 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-10-05 - 1.2.10 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2020-09-18 - 1.2.10 - Rebuild ffmpeg. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-19 - 1.2.10 - Rebuild ffmpeg. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-28 - 1.2.9 - Rebuild ffmpeg. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-16 - 1.2.9 - Rebuild ffmpeg. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-26 - 1.2.9 - Rebuild ffmpeg. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-24 - 1.2.9 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 1.2.8 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-14 - 1.2.6 - Release bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-27 - 1.2.6 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - graphene - https://ebassi.github.io/graphene/ - - Pisi Linux Admins - admin@pisilinux.org - - MIT - library - multimedia.video - A thin layer of graphic data types - A thin layer of graphic data types - A thin layer of graphic data types - A thin layer of graphic data types - https://github.com/ebassi/graphene/archive/1.10.8.tar.gz - - meson - gtk-doc - glib2-devel - gobject-introspection-devel - - multimedia/video/graphene/pspec.xml - - - graphene - - glib2 - - - /usr/lib - /usr/libexec /usr/share + /usr/share/locale + /usr/share/vala /usr/share/gir-1.0 /usr/share/doc - graphene-devel - Development files for graphene + libadwaita-devel + Development files for libadwaita - graphene - glib2-devel + libadwaita + gtk4-devel /usr/include /usr/lib/pkgconfig + + + 2022-06-02 + 1.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-31 + 1.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-02 + 1.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-02 + 1.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-30 + 1.0.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libappimage + https://appimage.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + programming.library + Reference implementation of the AppImage specification + Reference implementation of the AppImage specification + Reference implementation of the AppImage specification + Reference implementation of the AppImage specification + https://github.com/AppImage/libappimage/archive/refs/tags/v1.0.3.tar.gz + + vim + wget + cmake + boost-devel + cairo-devel + glib2-devel + librsvg-devel + desktop-file-utils + libarchive-devel + squashfuse-devel + xdg-utils-cxx-devel + + + libappimage-gcc10.patch + + programming/library/libappimage/pspec.xml + - graphene-docs - Development files for graphene + libappimage - graphene + boost + cairo + glib2 + libgcc + librsvg + libarchive + squashfuse + xdg-utils-cxx + + + /usr/lib + /usr/share/doc + + + + libappimage-devel + Development files for libappimage + + libappimage + boost-devel + cairo-devel + glib2-devel + librsvg-devel + desktop-file-utils + libarchive-devel + squashfuse-devel + xdg-utils-cxx-devel + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-10-21 + 1.0.3 + Rebuild boost + Pisi Linux Admins + admin@pisilinux.org + + + 2021-05-19 + 1.0.3 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libappindicator + https://lazka.github.io/pgi-docs/AppIndicator3-0.1/index.html + + Pisilinux Community + admin@pisilinux.org + + LGPL + library + programming.library + A library to allow applications to export a menu into the Unity Menu bar. + A library to allow applications to export a menu into the Unity Menu bar. + https://launchpad.net/libappindicator/12.10/12.10.0/+download/libappindicator-12.10.0.tar.gz + + gtk2-devel + gtk3-devel + python-devel + python3-devel + libdbusmenu-gtk3 + libdbusmenu-devel + libindicator-devel + libindicator-gtk2-devel + python3-pygobject3-devel + gobject-introspection-devel + + + incompatible_pointer_build_fix.patch + nopython.patch + + programming/library/libappindicator/pspec.xml + + + libappindicator + + atk + gtk3 + glib2 + cairo + pango + gdk-pixbuf + libindicator + libdbusmenu-glib + libdbusmenu-gtk3 + + + /usr/lib + /usr/share + /usr/share/doc + + + + libappindicator-devel + + libappindicator + gtk3-devel + libdbusmenu-gtk + libdbusmenu-glib + libdbusmenu-devel + + + /usr/lib/pkgconfig + /usr/include + + + + libappindicator-gtk2 + + gtk2 + libindicator-gtk2 + libdbusmenu-gtk + + + /usr/lib/libappindicator.so* + + + + libappindicator-gtk2-devel + + libappindicator-gtk2 + gtk2-devel + + + /usr/lib/pkgconfig/appindicator-0.1.pc + /usr/include/libappindicator-0.1/libappindicator + + + + libappindicator-docs + + libappindicator /usr/share/gtk-doc @@ -331070,3448 +299626,15 @@ Bu Skype SILK codec ve Xiph.Org 's Celt codec teknolojisi dahil RFC 6716 ol - 2022-03-21 - 1.10.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-23 - 1.10.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libmpeg2 - http://libmpeg2.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams - mpeg-2 ve mpeg-1 video görüntülerini çözmek için ücretsiz bir kütüphane - libmpeg2 est une librairie libre pour décoder les flux vidéos mpeg-2 et mpeg-1. libmpeg2 est capable de décoder tous les flux vidéos se conformant à certaines restrictions : "paramètres contraints (constrained parameters)" pour mpeg-1 et "profil principal (main profile)" pour mpeg-2. - libmpeg2 is a free library for decoding mpeg-2 and mpeg-1 video streams. libmpeg2 is able to decode all mpeg streams that conform to certain restrictions: "constrained parameters" for mpeg-1, and "main profile" for mpeg-2. - libmpeg2, mpeg-1 ve mpeg-2 video akışlarının çözülerek okunması için ücretsiz bir kütüphanedir. Libmpeg-2, bir takım kısıtlayıcı kurallara (mpeg-1 için "kısıtlanmış parametreler" ve mpeg-2 için "ana profil") uyan bütün mpeg yayınlarını çözebilir. - libmpeg2 es una librería libre para decodificar flujos de video mpeg-2 y mpeg-1. libmpeg2 puede decodificar todo tipo de flujos mpeg que cumplen ciertos restricciones: "constrained parameters" para mpeg-1, y "main profile" para mpeg-2. - http://libmpeg2.sourceforge.net/files/libmpeg2-0.5.1.tar.gz - - libmpeg2-0.4.1-use-readelf-for-test.patch - - multimedia/video/libmpeg2/pspec.xml - - - libmpeg2 - - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - - - - libmpeg2-devel - Development files for libmpeg2 - libmpeg2 için geliştirme dosyaları - - libmpeg2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-19 - 0.5.1 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 0.5.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2017-01-25 - 0.5.1 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.5.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-25 - 0.5.1 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - rubberband - https://github.com/breakfastquay/rubberband - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv1 - library - multimedia.video - Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı - Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı - Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı - Zaman-germe ve zift-shifting ses kütüphanesi ve yardımcı programı - https://github.com/breakfastquay/rubberband/archive/v1.8.2.tar.gz - - vamp-plugin-sdk-devel - libsamplerate-devel - libsndfile-devel - ladspa-sdk-devel - fftw3-devel - jdk8-openjdk - fftw3-devel - - multimedia/video/rubberband/pspec.xml - - - rubberband - - fftw3 - libgcc - libsndfile - libsamplerate - vamp-plugin-sdk - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - - - - rubberband-devel - - rubberband - - - /usr/lib/pkgconfig - /usr/include - - - - - 2021-03-10 - 1.8.2 - Rebuild. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-18 - 1.8.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 1.8.1 + 2021-07-04 + 12.10.0 Rebuild. Mustafa Cinasal muscnsl@gmail.com - 2018-03-27 - 1.8.1 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - gst-plugins-bad - https://gstreamer.freedesktop.org/modules/gst-plugins-bad.html - - Osman Erkan - osman.erkan@pisilinux.org - - GPLv2 - library - multimedia.video - A set of GStreamer plug-ins that aren't up to par compared to the rest - 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.20.2.tar.xz - - meson - valgrind - srt-devel - zvbi-devel - aom-devel - sbc-devel - flite-devel - lcms2-devel - libva-devel - libass-devel - libgme-devel - libmfx-devel - nettle-devel - openal-devel - libnice-devel - libsrtp-devel - vulkan-devel - libkate-devel - libmpcdec-devel - imath-devel - libbs2b-devel - librsvg-devel - rtmpdump-devel - libfdk-aac-devel - libmodplug-devel - libopenmpt-devel - fluidsynth-devel - openexr-devel - orc-devel - curl-devel - gsm-devel - faac-devel - gtk3-devel - libglvnd-devel - webp-devel - x265-devel - faad2-devel - libX11-devel - libunwind-devel - mpg123-devel - libxml2-devel - libusb-devel - openssl-devel - libdca-devel - jasper-devel - libsdl-devel - opencv-devel - libexif-devel - libopus-devel - libgudev-devel - wayland-devel - libdc1394-devel - openjpeg2-devel - mesa-glu-devel - wayland-cursor - libmpeg2-devel - DirectFB-devel - libvdpau-devel - libtheora-devel - libdvdnav-devel - libsndfile-devel - mjpegtools-devel - soundtouch-devel - libdvdread-devel - llvm-clang-devel - schroedinger-devel - libvo-aacenc-devel - libjpeg-turbo-devel - libvo-amrwbenc-devel - gstreamer-devel - gobject-introspection-devel - gst-plugins-base-devel - - multimedia/video/gst-plugins-bad/pspec.xml - - - gst-plugins-bad - - gsm - srt - curl - orc - zvbi - pango - libusb - libxml2 - libsrtp - openssl - libgudev - libdc1394 - openjpeg2 - aom - sbc - flite - lcms2 - libva - libass - libgme - libmfx - nettle - openal - vulkan - libkate - libmpcdec - imath - libnice - libbs2b - librsvg - rtmpdump - libfdk-aac - libmodplug - libopenmpt - fluidsynth - openexr-libs - faac - gtk3 - libglvnd - opencv - libxcb - webp - x265 - bzip2 - cairo - faad2 - glib2 - libX11 - libdca - libdrm - libgcc - libkms - wayland - libpng - libopus - DirectFB - libvdpau - libdvdnav - libdvdread - libsndfile - mjpegtools - soundtouch - libvo-aacenc - schroedinger - libjpeg-turbo - gstreamer - libvo-amrwbenc - wayland-client - gst-plugins-base - - - /usr/bin - /usr/lib - /usr/share/locale - /usr/share/gstreamer-1.0 - /usr/share/gst-plugins-bad/1.0/ - /usr/share/gir-1.0/ - /usr/share/doc - - - gst-plugins-bad-next - - - - gst-plugins-bad-devel - Development files for gst-plugins-bad - gst-plugins-bad için geliştirme dosyaları - - gstreamer-devel - gst-plugins-base-devel - gst-plugins-bad - - - /usr/lib/pkgconfig - /usr/include - - - gst-plugins-bad-next-devel - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-09 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-04 - 1.18.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-06 - 1.18.3 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-12 - 1.18.3 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-09 - 1.17.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-05 - 1.17.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-18 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-01 - 1.16.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Rebuild x265. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-26 - 1.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-24 - 1.14.2 - Rebuild qt5. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-16 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-23 - 1.12.4 - Rebuild qt5. - Pisi Linux Community - admin@pisilinux.org - - - 2018-10-16 - 1.12.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-28 - 1.12.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-05 - 0.10.23 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.10.23 - Rebuild and edit. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 0.10.23 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-14 - 0.10.23 - rebuild - Alihan Öztürk - alihan@pisilinux.org - - - 2016-03-31 - 0.10.23 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gstreamer-vaapi - http://www.freedesktop.org/software/vaapi/releases/gstreamer-vaapi/ - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2.1 - library - multimedia.video - GStreamer Multimedia Framework VA Plugins - gstreamer-vaapi, GStreamer Multimedia Framework VA Plugins. - https://gstreamer.freedesktop.org/src/gstreamer-vaapi/gstreamer-vaapi-1.20.2.tar.xz - - meson - python3 - mesa-devel - libglvnd-devel - libva-devel - libXrandr-devel - wayland-protocols-devel - gstreamer-devel - gst-plugins-bad-devel - gst-plugins-base-devel - - multimedia/video/gstreamer-vaapi/pspec.xml - - - gstreamer-vaapi - - glib2 - libva - libglvnd - eudev - libX11 - libdrm - libXrandr - libXrender - wayland-client - wayland-protocols - gstreamer - gst-plugins-bad - gst-plugins-base - - - /usr/lib - /usr/share/doc - - - gstreamer-vaapi-next - gstreamer-vaapi-next-devel - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-01 - 1.16.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-26 - 1.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-16 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-28 - 1.12.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - - - - libquicktime - http://libquicktime.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.video - A library based on quicktime4linux with extensions - quicktime4linux ve eklentileri tabanlı bir kütüphane - Libquicktime est basée sur l'excellente librairie quicktime4linux en y apportant de multiples améliorations. Toutes les librairies externes ont été supprimées du source. En échange, les librairies disponibles sur les systèmes sont détectées par le script configure. Tous les codecs (codeur/décodeur) d'origine ont été déménagés dans des modules que l'on peut charger dynamiquement, et de nouveaux codecs sont en développement. - Libquicktime is based on the great quicktime4linux library with several enhancements. All 3rd-party libraries were removed from the sourcetree. Instead, the systemwide installed libraries are detected by the configure script. All original codecs were moved into dynamically loadable modules, and new codecs are in development. - Libquicktime, birkaç gelişmişliğe sahip büyük quicktime4linux kütüphanesi üzerine temellendirilmiştir. Tüm 3üncü-parti kütüphaneler kök ağacından silinmiştir. Bunun yerine, sistem genişliğne sahip kütüphaneler kurulmuş ve yapılandırma betikleri ile keşfedilmiştir. Tüm orjinal kodlar, dinamik olarak yüklenebilen modüller haline gelmiş ve yeni kodlar geliştirilmektedir. - Libquicktime está basado enla librería quicktime4linux con varios mejoras. Todos los librerías de terceros fueron removidos de los fuentes. En su lugar el script de configure detecta las librerías ya instalados en el sistema. Todos codecs originales fueron convertido a módulos dinámicos, y nuevos codecs están en desarrollo. - mirrors://sourceforge/project/libquicktime/libquicktime/1.2.4/libquicktime-1.2.4.tar.gz - - mesa-devel - lame-devel - zlib-devel - glib2-devel - libglvnd-devel - libX11-devel - libpng-devel - faac-devel - gtk2-devel - libdv - faad2-devel - libXt-devel - libXv-devel - ffmpeg-devel - libXaw-devel - libXext-devel - alsa-lib-devel - libvorbis-devel - libavc1394-devel - libraw1394-devel - schroedinger-devel - libjpeg-turbo-devel - x264-devel - - - CVE-2016-2399.patch - libquicktime-1.2.4-CVE-2017-9122_et_al.patch - libquicktime-1.2.4+libav-9.patch - libquicktime-1.2.4-ffmpeg2.patch - libquicktime-1.2.4-ffmpeg29.patch - libquicktime-1.2.4-ffmpeg4.patch - libquicktime-1.2.4-ffmpeg-codecs.patch - - multimedia/video/libquicktime/pspec.xml - - - libquicktime - - libglvnd - lame - zlib - glib2 - libX11 - libpng - faac - gtk2 - libdv - faad2 - libXt - libXv - ffmpeg - libXaw - libXext - alsa-lib - libvorbis - libavc1394 - libraw1394 - schroedinger - libjpeg-turbo - x264 - - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/locale - - - - libquicktime-devel - Development files for libquicktime - libquicktime için geliştirme dosyaları - - libquicktime - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - - - - - 2021-10-30 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-15 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-12 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-05 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-29 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-18 - 1.2.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 1.2.4 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-13 - 1.2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-13 - 1.2.4 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - smpeg - http://www.lokigames.com/development/smpeg.php3 - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - app:gui - multimedia.video - SDL MPEG kitaplığı - SDL MPEG - SDL MPEG library - SMPEG is a SDL MPEG decoding library. - SMPEG, MPEG formatını kullanabilen SDL kitaplığıdır. - https://sources.voidlinux.org/smpeg-0.4.5/smpeg-0.4.5.tar.gz - - libsdl-devel - freeglut-devel - mesa-devel - mesa-glu-devel - - - smpeg-0.4.5-gcc6.patch - smpeg-0.4.4-format_not_a_string_literal_and_no_format_arguments.diff - smpeg-0.4.5-fix-header.patch - smpeg-0.4.5-libsupc++.patch - smpeg-0.4.5-link.patch - - multimedia/video/smpeg/pspec.xml - - - smpeg - - libsdl - mesa - mesa-glu - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - smpeg-devel - Development files for smpeg - smpeg için geliştirme dosyaları - - smpeg - - - /usr/bin/smpeg-config - /usr/include - /usr/share/aclocal - - - - smpeg-32bit - 32-bit shared libraries for smpeg - smpeg için 32-bit paylaşımlı kitaplıklar - emul32 - emul32 - - freeglut-32bit - mesa-32bit - libsdl-32bit - mesa-glu-32bit - - - smpeg - libsdl-32bit - - - /usr/lib32 - - - - - 2018-08-05 - 0.4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-18 - 0.4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.4.5 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-01 - 0.4.5 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - kvazaar - http://ultravideo.cs.tut.fi/#encoder - - Mathias Freire - mathiasfreire45@gmail.com - - LGPL - library - multimedia.video - An open-source HEVC encoder - Kvazaar is an award-winning academic open-source video encoder for the state-of-the-art High Efficiency Video Coding (HEVC/H.265) standard. Kvazaar is being developed in C and optimized in Assembly under the LGPLv2.1. - https://github.com/ultravideo/kvazaar/releases/download/v2.0.0/kvazaar-2.0.0.tar.xz - - yasm - crypto++-devel - - multimedia/video/kvazaar/pspec.xml - - - kvazaar - - crypto++ - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - kvazaar-devel - Header files for kvazaar. - - kvazaar - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-11-07 - 2.0.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-28 - 2.0.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-01-12 - 1.3.0 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - vid.stab - http://www.rowetel.com/?page_id=452 - - Mathias Freire - mathiasfreire45@gmail.com - - GPL - library - multimedia.video - Video stabilization library - Video stabilization library - https://github.com/georgmartius/vid.stab/archive/v1.1.0.tar.gz - - cmake - - multimedia/video/vid.stab/pspec.xml - - - vid.stab - - libgcc - libgomp - - - /usr/bin - /usr/lib - /usr/share/doc - - - - vid.stab-devel - Header files for vid.stab. - - vid.stab - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 1.1.0 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - aom - https://aomedia.org/ - - Mathias Freire - mathiasfreire45@gmail.com - - BSD - library - multimedia.video - Alliance for Open Media video codec - aom is the AOMedia video encoder for ​AV1, an open source and royalty-free video codec. aom can save about 30% bitrate compared to VP9 and H.265 / HEVC, and about 50% over H.264, while retaining the same visual quality. - https://storage.googleapis.com/aom-releases/libaom-3.2.0.tar.gz - - ninja - cmake - - multimedia/video/aom/pspec.xml - - - aom - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - aom-devel - Header files for aom. - - aom - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-01 - 3.2.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-12 - 1.0.0_20200112 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - libmp4v2 - https://github.com/TechSmith/mp4v2 - - Pisilinux Community - admins@pisilinux.org - - MPL-1.1 - library - app:console - multimedia.video - MPEG4 library - MPEG4 kütüphanesi - Librairie MPEG4 extraite de MPEG4IP, habituellement utilisée dans les sytèmes de son 3D. - MPEG4 library extracted from MPEG4IP, usually used in 3D sound systems. - Genellikle 3B ses işleme uygulamalarında kullanılan, MPEG4IP yazılımının parçası olan MPEG4 kütüphanesi. - Librería MPEG4 parte de MPEG4IP, comúnmente utilizado en sistemas de sonido 3D. - https://github.com/TechSmith/mp4v2/archive/refs/tags/Release-ThirdParty-MP4v2-5.0.1.tar.gz - - libgcc - - multimedia/video/libmp4v2/pspec.xml - - - libmp4v2 - - libgcc - - - /usr/bin - /usr/lib - - - - libmp4v2-devel - Development files for libmp4v2 - libmp4v2 için geliştirme dosyaları - - libmp4v2 - - - /usr/include - - - - - 2021-11-27 - 5.0.1 - Version bump. - fury - uglyside@yandex.ru - - - 2020-01-18 - 2.0.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 2.0.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 2.0.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 2.0.0 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - davs2 - https://github.com/pkuvcl/davs2/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPL - library - multimedia.video - Open-Source decoder of AVS2-P2/IEEE1857.4 video coding standard - davs2 is an open-source decoder of AVS2-P2/IEEE1857.4 video coding standard. - https://github.com/pkuvcl/davs2/archive/1.6.tar.gz - - davs2-1.6-gcc8-fix.patch - - - yasm-devel - - multimedia/video/davs2/pspec.xml - - - davs2 - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - davs2-devel - Header files for davs2. - - davs2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-12 - 1.6 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - xvid - http://www.xvid.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - High performance MPEG-4 video de-/encoding solution - Yüksek performanslı bir MPEG-4 video kodlayıcı/çözücü - Xvid is a codec which makes it possible to compress movies too much while still maintaining the original image quality. - Xvid videoları kalite kaybına neden olmadan yüksek oranlarda sıkıştırabilmeye olanak tanıyan bir kodlayıcıdır. - Xvid es un codec que posibilita una alta compresión de peliculas, manteniendo la calidad original de la imagen. - http://downloads.xvid.org/downloads/xvidcore-1.3.5.tar.gz - multimedia/video/xvid/pspec.xml - - - xvid - - /usr/lib - /usr/share/doc/xvid - - - - xvid-devel - - xvid - - - /usr/share/doc/xvid/examples - /usr/include - - - - - 2020-01-17 - 1.3.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.3.5 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-27 - 1.3.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 1.3.4 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-12-14 - 1.3.3 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - schroedinger - http://www.diracvideo.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Dirac codec library - Dirac kodek kitaplığı - C-based libraries and GStreamer plugins for the Dirac video codec. - C ile kodlanmış Dirac video kodeği kitaplıkları ve GStreamer eklentileri - https://src.fedoraproject.org/repo/pkgs/schroedinger/schroedinger-1.0.11.tar.gz/da6af08e564ca1157348fb8d92efc891/schroedinger-1.0.11.tar.gz - - orc-devel - - - ltmain_as-needed.patch - - multimedia/video/schroedinger/pspec.xml - - - schroedinger - - orc - - - /usr/lib - /usr/share/doc - - - - schroedinger-devel - Development files for schroedinger - schroedinger için geliştirme dosyaları - - schroedinger - orc-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-18 - 1.0.11 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-01 - 1.0.11 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 1.0.11 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 1.0.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-20 - 1.0.11 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - libdv - http://libdv.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.video - Software codec for dv-format video (camcorders etc) - Dijital video (kaydedici cihazlar vs) için çözümleme yazılımı - Le codec Quasar DV (libdv) est un codec logiciel pour la vidéo DV, le format d'encodage utilisé par la plupart des caméras numériques, typiquement celles gérant l'interface IEEE 1394 (a.k.a. FireWire ou i.Link). Libdv a été développé selon les standards officiels pour la vidéo DV : IEC 61834 et SMPTE 314M. - The Quasar DV codec (libdv) is a software codec for DV video, the encoding format used by most digital camcorders, typically those that support the IEEE 1394 (a.k.a. FireWire or i.Link) interface. Libdv was developed according to the official standards for DV video: IEC 61834 and SMPTE 314M. - Quasar DV codec (libdv), DV video için çözümleyicidir. Bu dosya biçimi çoğu dijital kameralarda (özellikle de IEEE 1394) kullanılır. Libdv, DV videonun resmi standartları olan IEC 61834 ve SMPTE 314M'ye göre geliştirilmiştir. - El codec Quasar DV (libdv) es un codec de software para video DV, el formato de codificación usado en la mayoría de los camcorders digitales, que típicamente soportan la interfaz IEEE 1394 (alias FireWire o i.Link). Libdv fue desarrollado de conforme los estándares oficiales para video DV: IEC 61834 y SMPTE 314M. - mirrors://sourceforge/libdv/libdv-1.0.0.tar.gz - - libsdl-devel - popt-devel - - - libdv-0.99-2.6.patch - libdv-1.0.0-pic.patch - libdv-1.0.0-dso-linking.patch - libdv-mmxdetect-athlon.patch - - multimedia/video/libdv/pspec.xml - - - libdv - - popt - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libdv-devel - Development files for libdv - libdv için geliştirme dosyaları - - libdv - - - /usr/include/libdv - /usr/lib/pkgconfig - - - - - 2020-01-18 - 1.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-02 - 1.0.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-02 - 1.0.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 1.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-09 - 1.0.0 - First release - Kamil Atlı - suvarice@gmail.com - - - - - - libprojectM - http://projectm.sourceforge.net - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2 - library - multimedia.video - An advanced MilkDrop-compatible music visualization library - MilkDrop uyumlu müzik görselleştirme kitaplığı - libprojectM is an iterative music visualization library which uses OpenGL for hardware acceleration. It is a reimplementation of Winamp visualization plug-in MilkDrop which uses 3D graphics hardware, combined with iterative image-based rendering techniques and compatible with MilkDrop presets. - libprojectM, donanım hızlandırma kullanılarak OpenGL ile müzik görselleştirme işlemini yapan bir kitaplıktır. - https://github.com/projectM-visualizer/projectm/releases/download/v3.1.12/projectM-3.1.12.tar.gz - - cmake - mesa-devel - libsdl2-devel - libglvnd-devel - qt5-base-devel - freeglut-devel - libvisual-devel - pulseaudio-libs-devel - - multimedia/video/libprojectM/pspec.xml - - - libprojectM - - libgcc - libglvnd - libsdl2 - - - /usr/bin/projectM-unittest - /usr/share/icons - /usr/share/doc - /usr/share/projectM/ - /usr/lib/libprojectM.so* - - - - libprojectM-devel - Development files for libprojectM - libprojectM için geliştirme dosyaları - - qt5-base-devel - libprojectM - - - /usr/include - /usr/lib/pkgconfig - - - - libprojectM-sdl - ProjectM support for sdl - - libsdl2 - qt5-base - jack-audio-connection-kit - libprojectM - - - /usr/bin/projectMSDL - - - - libprojectM-pulseaudio - ProjectM support for Pulseaudio - - qt5-base - libglvnd - pulseaudio-libs - libprojectM - - - /usr/share/man/man1/projectM-pulseaudio.1 - /usr/bin/projectM-pulseaudio - /usr/share/applications/projectM-pulseaudio.desktop - - - - - 2022-01-09 - 3.1.12 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libdvbpsi - https://www.videolan.org/developers/libdvbpsi.html - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Librairie pour la génération et le décodage des tables PSI TS/DVB MPEG. - Library for MPEG TS/DVB PSI tables decoding and generation - MPEG TS/DVB PSI taslaklarını üretmek ve çözümlemek için kullanılan bir kitaplık - libdvbpsi is a simple library designed for decoding and generation of MPEG TS and DVB PSI tables. - libdvbpsi, MPEG TS ve DVB PSI tablolarının ürteimi ve çözümlenmesi için tasarlanmış basit bir kitaplıktır. - http://download.videolan.org/pub/libdvbpsi/1.3.3/libdvbpsi-1.3.3.tar.bz2 - multimedia/video/libdvbpsi/pspec.xml - - - libdvbpsi - - /usr/lib - /usr/share/doc - - - - libdvbpsi-devel - Development files for libdvbpsi - libdvbpsi için geliştirme dosyaları - - libdvbpsi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-04 - 1.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-03 - 1.3.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 1.3.0 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-04-02 - 1.3.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - gst-plugins-ugly - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Other plugins for gstreamer - Gstreamer için diğer eklentiler - 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.20.2.tar.xz - - meson - xz-devel - zlib-devel - valgrind - python3 - orc-devel - x264-devel - lame-devel - glib2-devel - a52dec-devel - libmad-devel - mpg123-devel - libcdio-devel - twolame-devel - libunwind-devel - libmpeg2-devel - libdvdread-devel - opencore-amr-devel - gstreamer-devel - gst-plugins-base-devel - - multimedia/video/gst-plugins-ugly/pspec.xml - - - gst-plugins-ugly - - orc - lame - x264 - glib2 - a52dec - libmad - mpg123 - libcdio - twolame - libmpeg2 - libdvdread - opencore-amr - gstreamer - gst-plugins-base - - - /usr/lib/gstreamer-1.0 - /usr/share/doc/gst-plugins-ugly - /usr/share/gtk-doc - /usr/share/gstreamer-1.0 - /usr/share/locale - - - gst-plugins-ugly-next - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-05 - 1.17.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-01 - 1.16.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-16 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-28 - 1.12.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-18 - 0.10.19 - Rebuild and edit. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.10.19 - Rebuild and edit. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 0.10.19 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-10 - 0.10.19 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - vo-aacenc - http://sourceforge.net/projects/opencore-amr/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - app:cli - multimedia.video - VisualOn AAC encoder library - VisualOn AAC encoder library - http://sourceforge.net/projects/opencore-amr/files/vo-aacenc/vo-aacenc-0.1.3.tar.gz/download - multimedia/video/vo-aacenc/pspec.xml - - - libvo-aacenc - - /usr/lib - /usr/share/doc - - - - libvo-aacenc-devel - - libvo-aacenc - - - /usr/include - /usr/lib/pkgconfig/vo-aacenc.pc - - - - - 2020-01-18 - 1.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-02 - 1.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 1.3 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-06-18 - 1.3 - First release - Serdar Soytetir - kaptan@pisilinux.org - - - - - - x265 - http://x265.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - app:console - multimedia.video - Open source H265/EVC encoder - Açık kaynak kodlu H265/EVC çözücü - x265 is a commercially funded open source implementation of the H.265/High Efficiency Video Coding (HEVC) compression standard. - x265 H265/EVC görüntü dosyalarını açmak için kullanılan bir kütüphane - https://bitbucket.org/multicoreware/x265_git/get/3.5.tar.gz - - git - yasm-devel - cmake - - multimedia/video/x265/pspec.xml - - - x265 - - libgcc - - - /usr/bin - /usr/lib - - - - x265-devel - Development files for x265 - x265 için geliştirme dosyaları - - x265 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-05-05 - 3.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-14 - 3.4 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-17 - 3.2.1 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-10-06 - 3.2 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-04-14 - 3.0 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-05 - 2.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-19 - 2.7 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-18 - 2.6 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-11 - 2.2 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-12 - 1.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-23 - 1.7 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - gst-libav - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - 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.20.2.tar.xz - - meson - python3 - valgrind - orc-devel - xz-devel - zlib-devel - yasm-devel - ffmpeg-devel - libunwind-devel - gst-plugins-base-devel - - multimedia/video/gst-libav/pspec.xml - - - gst-libav - - xz - zlib - bzip2 - glib2 - ffmpeg - gstreamer - gst-plugins-base - - - /usr/lib - /usr/share/doc - - - gst-libav-next - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-01 - 1.16.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-16 - 1.14.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-28 - 1.12.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - - - - libvpx - http://www.webmproject.org - - PisiLinux Community - admins@pisilinux.org - - BSD - app:console - library - multimedia.video - WebM VP8 Codec SDK - WebM VP8 geliştirme altyapısı - libvpx is the VP8 development library usually used in WebM and similiar formats. - libvpx WebM ve benzeri çokluortam taşıyıcılarda kullanılan VP8 kodeği geliştirme kitaplığıdır. - https://github.com/webmproject/libvpx/archive/v1.11.0.tar.gz - - git - libgcc - yasm-devel - - multimedia/video/libvpx/pspec.xml - - - libvpx - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc/libvpx - - - - libvpx-devel - libvpx header files - libvpx için başlık dosyaları - - libvpx - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-04-19 - 1.11.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 1.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-27 - 1.9.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-14 - 1.8.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-30 - 1.7.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-05 - 1.6.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-12 - 1.5.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-07-15 - 1.4.0 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - gst-plugins-base - http://gstreamer.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - multimedia.video - Basepack of plugins for gstreamer - Gstreamer için temel eklentiler paketi - 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.20.2.tar.xz - - git - meson - mesa-devel - libdrm-devel - libgudev-devel - libglvnd-devel - graphene-devel - libjpeg-turbo-devel - valgrind - zlib-devel - orc-devel - iso-codes-devel - cdparanoia-devel - pango-devel - cairo-devel - libXv-devel - libogg-devel - libXext-devel - libopus-devel - alsa-lib-devel - python3-devel - elfutils-devel - libvorbis-devel - libtheora-devel - libvisual-devel - wayland-cursor - wayland-devel - libunwind-devel - libX11-devel - xorg-proto - xorg-server-xvfb - gstreamer-devel - gobject-introspection-devel - wayland-protocols-devel - - multimedia/video/gst-plugins-base/pspec.xml - - - gst-plugins-base - - mesa - libdrm - libgudev - libjpeg-turbo - orc - zlib - glib2 - pango - cairo - libglvnd - libXv - libX11 - libogg - libpng - libxcb - wayland - libXext - libopus - alsa-lib - libvorbis - libvisual - libtheora - cdparanoia - graphene - wayland-cursor - wayland-client - gstreamer - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - /usr/share/man - /usr/share/locale - /usr/share/gst-plugins-base/1.0 - - - gst-plugins-base-next - - - - gst-plugins-base-32bit - 32-bit shared libraries for gst-plugins-base - emul32 - emul32 - - orc-32bit - glib2-32bit - libXv-32bit - pango-32bit - libogg-32bit - libX11-32bit - libopus-32bit - alsa-lib-32bit - libtheora-32bit - libvorbis-32bit - libvisual-32bit - gstreamer-32bit - libgudev-32bit - libdrm-32bit - mesa-32bit - libglvnd-32bit - libjpeg-turbo-32bit - - - gst-plugins-base - orc-32bit - zlib-32bit - cairo-32bit - libglvnd-32bit - glib2-32bit - libXv-32bit - libpng-32bit - libxcb-32bit - wayland-32bit - pango-32bit - libogg-32bit - libX11-32bit - libopus-32bit - libxml2-32bit - libXext-32bit - alsa-lib-32bit - libtheora-32bit - libvorbis-32bit - libvisual-32bit - gstreamer-32bit - libgudev-32bit - mesa-32bit - libdrm-32bit - libjpeg-turbo-32bit - - - /usr/lib32/gstreamer-1.0 - /usr/lib32/libgst* - /usr/lib32/libgraphene* - - - gst-plugins-base-next-32bit - - - - gst-plugins-base-devel - Development files for gst-plugins-base - gst-plugins-base için geliştirme dosyaları - - gst-plugins-base - orc-devel - gstreamer-devel - glib2-devel - libX11-devel - wayland-devel - libglvnd-devel - graphene-devel - mesa-devel - zlib-devel - libdrm-devel - libgudev-devel - - - /usr/include - /usr/lib32/graphene-1.0/include/graphene-config.h - /usr/lib/pkgconfig - /usr/lib32/pkgconfig/graphene* - /usr/lib32/pkgconfig/gstreamer*.pc - /usr/share/man/man3 - - - gst-plugins-base-next-devel - - - - - 2022-05-11 - 1.20.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-13 - 1.20.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-27 - 1.18.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-14 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-18 - 1.18.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-14 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-11 - 1.16.2 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-20 - 1.16.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-05 - 1.16.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-24 - 1.14.2 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-16 - 1.14.2 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-28 - 1.12.0 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-11 - 1.12.0 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-19 - 0.10.36 - Rebuild and edit. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-10 - 0.10.36 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-25 - 0.10.36 - Release bump - Alihan Öztürk - alihan@pisilinux.org - - - 2014-05-20 - 0.10.36 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - xavs - http://xavs.sourceforge.net/ - - Mathias Freire - mathiasfreire45@gmail.com - - GPL - library - multimedia.video - XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS). - XAVS is to implement high quality encoder and decoder of the Audio Video Standard of China (AVS). - https://sourceforge.net/projects/pisilinux/files/source/xavs-0.1.55.tar.xz - - yasm - - - xavs-dynamic-xavs.patch - xavs-0.1.55-dont-strip-symbols.patch - xavs-dup-asm.patch - xavs-x32-yasm.patch - - multimedia/video/xavs/pspec.xml - - - xavs - - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - xavs-devel - Header files for xavs. - - xavs - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-01-14 - 0.1.55 - First release - Idris Kalp - idriskalp@gmail.com - - - - - - libopenshot-audio - https://openshot.org/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - library - multimedia.editor - A free, open-source C++ library dedicated to delivering high quality audio editing and audio playback solutions. - Yüksek kaliteli ses düzenleme ve ses oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığı. - OpenShot Audio Library (libopenshot-openshot) is a free, open-source C++ library dedicated to delivering high quality audio editing and audio playback solutions to the world. - OpenShot Ses Kitaplığı (libopenshot-openshot), dünyaya yüksek kaliteli ses düzenleme ve ses oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığıdır. - https://github.com/OpenShot/libopenshot-audio/archive/refs/tags/v0.2.2.tar.gz - - cmake - zlib-devel - glibc-devel - python3-devel - alsa-lib-devel - freetype-devel - - multimedia/editor/libopenshot-audio/pspec.xml - - - libopenshot-audio - - zlib - libgcc - alsa-lib - - - /usr/bin - /usr/lib/libopenshot-audio.so* - /usr/share/doc - /usr/share/man/man1 - - - - libopenshot-audio-devel - Development files for libopenshot-audio - - libopenshot-audio - - - /usr/include - /usr/lib/cmake - - - - - 2021-12-07 - 0.2.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - openshot - http://www.openshotvideo.com - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - app:gui - multimedia.editor - An award-winning free and open-source video editor. - Ödüllü, ücretsiz ve açık kaynaklı bir video düzenleyici. - OpenShot Video Editor is an award-winning free and open-source video editor and is dedicated to delivering high quality video editing and animation solutions to the world. - OpenShot Video Editor, ödüllü ücretsiz ve açık kaynaklı bir video düzenleyicidir ve kendini dünyaya yüksek kaliteli video düzenleme ve animasyon çözümleri sunmaya adamıştır. - openshot - https://github.com/OpenShot/openshot-qt/archive/refs/tags/v2.6.1.tar.gz - - cmake - ffmpeg-devel - python3-devel - python3-pyzmq - qt5-base-devel - python-gtk-devel - libopenshot-devel - python3-requests - python3-qt5-devel - python3-setuptools - libopenshot-audio-devel - - - openshot-2.6.1-no_metric_default.patch - - multimedia/editor/openshot/pspec.xml - - - openshot - - ffmpeg - python3 - qt5-base - python-gtk - python-mlt - libopenshot - python3-qt5 - python3-pyzmq - libopenshot-audio - - - /usr/bin - /usr/lib - /usr/lib/python2.7/site-packages/openshot/locale - /usr/share/applications - /usr/share/mime - /usr/share/pixmaps - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/metainfo - - - - - 2021-12-07 - 2.6.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - picard - http://musicbrainz.org/doc/MusicBrainz_Picard - - Stefan Gronewold(groni) - groni@pisilinux.org - - GPLv2 - app:gui - multimedia.editor - MusicBrainz Picard is the official MusicBrainz tagger. - MusicBrainz Picard is a cross-platform (Linux/MacMusicBrainz Picard resmi MusicBrainz etiketleyicisidir. - Picard supports the majority of audio file formats, is capable of using audio fingerprints (AcoustIDs), performing CD lookups and disc ID submissions, and it has excellent Unicode support. Additionally, there are several plugins available that extend Picard's features. - Picard, ses dosyası formatlarının çoğunu destekler, ses parmak izlerini (AcoustID'ler) kullanabilir, CD aramaları ve disk kimliği gönderimleri gerçekleştirebilir ve mükemmel Unicode desteğine sahiptir. Ek olarak, Picard'ın özelliklerini genişleten birkaç eklenti vardır. - http://ftp.musicbrainz.org/pub/musicbrainz/picard/picard-2.3.2.tar.gz - - bzip2 - python3-devel - python3-mutagen - libdiscid-devel - python3-setuptools - musicbrainz5-devel - python3-qt5-devel - - multimedia/editor/picard/pspec.xml - - - picard - - bzip2 - libdiscid - python3-qt5 - musicbrainz5 - python-discid - libchromaprint - python3-mutagen - - - /usr/bin - /usr/lib - /usr/share/icons/highcolor - /usr/share/applications - /usr/share - /usr/share/locale - /usr/share/doc - - - - - 2020-05-11 - 2.3.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - pipewire-0.2 - https://pipewire.org/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - multimedia.editor - Server and user space API to deal with multimedia pipelines, 0.2.x series - Server and user space API to deal with multimedia pipelines, 0.2.x series - https://github.com/PipeWire/pipewire/archive/0.2.7.tar.gz - - meson - doxygen - valgrind-devel - sbc-devel - dbus-devel - glib2-devel - eudev-devel - alsa-lib-devel - - multimedia/editor/pipewire-0.2/pspec.xml - - - pipewire-0.2 - - sbc - dbus - glib2 - eudev - alsa-lib - - - /usr/lib - /usr/share - /usr/share/doc - - - - pipewire-0.2-devel - Development files for pipewire-0.2 - - pipewire-0.2 - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-03-19 - 0.2.7 - Fix file conflicts - PisiLinux Community - admins@pisilinux.org - - - 2021-01-19 - 0.2.7 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - vapoursynth - https://vapoursynth.com/doc/ - - fury - uglyside@yandex.ru - - LGPL-2.1 - app:console - multimedia.editor - A video processing framework with simplicity in mind. - VapourSynth is an application for video manipulation. It has a core library written in C++ and a Python module to allow video scripts to be created. - https://github.com/vapoursynth/vapoursynth/archive/refs/tags/R57.tar.gz - - nasm - cython3 - python3-devel - libzimg-devel - python3-sphinx - - multimedia/editor/vapoursynth/pspec.xml - - - vapoursynth - - ffmpeg - python3 - libzimg - - - /usr/bin - /usr/lib - /usr/lib/python3.9/site-packages/ - /usr/share/man - - - - vapoursynth-doc - - /usr/share/vapoursynth/html - - - - vapoursynth-devel - - vapoursynth - libzimg-devel - python3-devel - - - /usr/lib/pkgconfig - /usr/include/vapoursynth - - - - - 2021-12-11 - 57 - First build - fury - uglyside@yandex.ru - - - - - - dvdauthor - http://dvdauthor.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - multimedia.editor - A simple DVD tool - Basit bir DVD yaratma aracı - dvdauthor is a set of simple tools to help you author a DVD. - dvdauthor DVD oynatıcıya takıldığında sorunsuzca oynatılabilecek bir DVD üretebilen bir uygulamadır. - https://sourceforge.net/projects/dvdauthor/files/dvdauthor-0.7.2.tar.gz - - libpng-devel - gettext-devel - libxml2-devel - fribidi-devel - freetype-devel - fontconfig-devel - libdvdread-devel - imagemagick-devel - GraphicsMagick-devel - - - backport_from_git.patch - - multimedia/editor/dvdauthor/pspec.xml - - - dvdauthor - - libpng - fribidi - libxml2 - freetype - fontconfig - libdvdread - GraphicsMagick - - - /usr/bin - /usr/share/doc - /usr/lib - /usr/share/man - /usr/share - - - - - 2020-09-27 - 0.7.2 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-05 - 0.7.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.7.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-03 - 0.7.1 - Rebuild for new Toolchains. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-07-09 - 0.7.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - devedeNG - https://rastersoft.com/programas/devede.html - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - app:gui - multimedia.editor - Graphical frontend to create video DVDs/(S)VCDs - Video DVD ve SVCD oluşturmak için grafik arayüz - Devede NG is a rewrite of the Devede DVD disc authoring program. This new -code has been written from scratch, and uses Python3 and Gtk3. It is also -cleaner, which will allow to add new features in the future. - DeVeDeng, neredeyse tüm görüntü biçimlerinden, (ev oynatıcıları için uyumlu) video DVD üretebilen bir uygulamadır. - devede - https://gitlab.com/rastersoft/devedeng/-/archive/4.16.0/devedeng-4.16.0.tar.bz2 - - gtk3-devel - ffmpeg-devel - gettext-devel - python3-devel - - multimedia/editor/devedeNG/pspec.xml - - - devedeNG - - gtk3 - ffmpeg - cdrkit - python3 - mplayer - vcdimager - dvdauthor - python-gtk - python3-cairo - python3-urllib3 - python3-setuptools - python3-pygobject3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man/man1 - - - - - 2020-09-27 - 4.16.0 - Version bump. - fury - uglyside@yandex.ru - - - 2020-03-05 - 4.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-12-03 - 4.12.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - id3lib - http://id3lib.sourceforge.net/ - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv1 - driver - multimedia.editor - ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık - ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık - ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık - ID3v1 ve ID3v2 etiketlerini okumak, yazmak ve değiştirmek için kullanılan kitaplık - https://sourceforge.net/projects/id3lib/files/id3lib/3.8.3/id3lib-3.8.3.tar.gz - - zlib-devel - libgcc - - - 00-add-libz-to-compilation.patch - 05-create-m4-directory.patch - 10-fix-compilation-with-cpp-headers.patch - 15-fix-headers-of-main-functions.patch - 20-create-manpages.patch - 30-fix-utf16.patch - 40-deal-with-mkstemp.patch - 50-remove-outdated-check.patch - 60-add-c-wrapper-functions.patch - 60-fix_make_check.patch - 60-id3lib-missing-nullpointer-check.patch - 60-spelling.patch - 61-fix_vbr_stack_smash.patch - - multimedia/editor/id3lib/pspec.xml - - - id3lib - - zlib - libgcc - - - /usr/bin - /usr/lib - /usr/share/doc - - - - id3lib-devel - Development files for id3lib - - id3lib - - - /usr/include - - - - - 2020-03-05 - 3.8.3 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 3.8.3 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-17 - 3.8.3 - First release. - Mustafa Cinasal - muscnsl@gmail.com - - - - - - easytag - https://wiki.gnome.org/Apps/EasyTAG - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.editor - Audio File Tag Viewer/Editor - Ses Dosyaları Etiketlerini Görüntüleme/Düzenleme Yazılımı - EasyTAG is a utility for viewing and editing id tags for MP3, MP2, MP4/AAC, FLAC, Ogg Vorbis, MusePack and Monkey's Audio files. - EasyTAG MP3, MP2, MP4/AAC, FLAC, Ogg Vorbis, Musepack ve Monkey's Audio ses dosyalarının id etiketlerinin görüntülenebileceği ve düzenlenebileceği bir yazılımdır. - easytag - https://download.gnome.org/sources/easytag/2.4/easytag-2.4.3.tar.xz - - itstool - intltool - gtk3-devel - flac-devel - speex-devel - pango-devel - docbook-xml - docbook-xsl - taglib-devel - libogg-devel - id3lib-devel - wavpack-devel - libxslt-devel - libopus-devel - python3-devel - opusfile-devel - libid3tag-devel - libvorbis-devel - gdk-pixbuf-devel - desktop-file-utils - appstream-glib-devel - - - ru_translation.patch - basque_translation.patch - slovenian_translation.patch - - multimedia/editor/easytag/pspec.xml - - - easytag - - flac - gtk3 - glib2 - speex - id3lib - libgcc - libogg - taglib - libopus - wavpack - opusfile - libid3tag - libvorbis - gdk-pixbuf - - - /usr/bin - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2020-12-04 - 2.4.3 - First release. - fury - uglyside@yandex.ru - - - - - - tageditor - https://github.com/Martchus/tageditor - - fury - uglyside@yandex.ru - - GPL-2 - app:gui - multimedia.editor - A tag editor with Qt GUI and command-line interface. - A tag editor with Qt GUI and command-line interface supporting MP4/M4A/AAC (iTunes), ID3, Vorbis, Opus, FLAC and Matroska. - https://github.com/Martchus/tageditor/archive/refs/tags/v3.7.0.tar.gz - - cmake - qt5-linguist - cppunit-devel - qt5-base-devel - tagparser-devel - qtutilities-devel - cpp-utilities-devel - qt5-multimedia-devel - - multimedia/editor/tageditor/pspec.xml - - - tageditor - - libgcc - qt5-base - tagparser - qtutilities - cpp-utilities - qt5-declarative - - - /usr/bin - /usr/share - /usr/share/doc - - - - - 2022-04-14 - 3.7.0 - Version bump - fury - uglyside@yandex.ru - - - 2022-01-18 - 3.6.0 - Version bump - fury - uglyside@yandex.ru - - - 2021-11-04 - 3.5.0 + 2021-01-28 + 12.10.0 First build. fury uglyside@yandex.ru @@ -334520,2587 +299643,68 @@ cleaner, which will allow to add new features in the future. - pipewire - https://pipewire.org/ + libcacard + https://gitlab.freedesktop.org/spice/libcacard - PisiLinux Community - admins@pisilinux.org + Kamil Atlı + suvari@pisilinux.org LGPLv2.1 library - multimedia.editor - Server and user space API to deal with multimedia pipelines - Server and user space API to deal with multimedia pipelines - Server and user space API to deal with multimedia pipelines - Server and user space API to deal with multimedia pipelines - https://github.com/PipeWire/pipewire/archive/0.3.50.tar.gz + app:console + science.misc + CAC (Common Access Card) library + CAC (Ortak Erişim Kartı) kitaplığı + This library provides emulation of smart cards to a virtual card +reader running in a guest virtual machine. + Bu kitaplık, akıllı kartların sanal bir karta öykünmesini sağlar +Konuk sanal makinede çalışan okuyucu. + https://www.spice-space.org/download/libcacard/libcacard-2.8.1.tar.xz - git meson - doxygen - valgrind - sbc-devel - dbus-devel - avahi-devel - avahi-libs - glib2-devel - eudev-devel - libusb-devel - vulkan-devel - vulkan-headers - ffmpeg-devel - ncurses-devel - libsdl2-devel - readline-devel - alsa-lib-devel - gstreamer-devel - libfdk-aac-devel - libsndfile-devel - bluez-libs-devel - pulseaudio-libs-devel - gst-plugins-base-devel - jack-audio-connection-kit-devel - - multimedia/editor/pipewire/pspec.xml - - - pipewire - - sbc - dbus - glib2 - eudev - vulkan - ffmpeg - libusb - alsa-lib - gstreamer - libfdk-aac - libsndfile - avahi-libs - bluez-libs - pulseaudio-libs - gst-plugins-base - jack-audio-connection-kit - - - /usr/bin - /etc - /lib/udev/rules.d/90-pipewire-alsa.rules - /usr/lib - /usr/share - /usr/share/doc - - - - pipewire-devel - Development files for pipewire - - pipewire - - - /usr/include - /usr/lib/pkgconfig - - - - pipewire-docs - Development files for pipewire - - pipewire - - - /usr/share/doc/pipewire/html - - - - - 2022-04-19 - 0.3.50 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-12 - 0.3.43 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-06 - 0.3.40 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-24 - 0.3.37 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-31 - 0.3.34 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-01 - 0.3.26 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-19 - 0.3.19 - Rebuild - PisiLinux Community - admins@pisilinux.org - - - 2021-01-06 - 0.3.19 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2020-03-30 - 0.3.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ktageditor - https://sourceforge.net/projects/ktageditor/ - - Stefan Gronewold - groni@pisilinux.org - - LGPL - multimedia.editor - KTag Editor is an Audio tag editor developed in Qt5 framework. - KTag Editor is a free open source ID3v tag editor developed in Qt5 framework. Supported files are mp3, wav, ogg, wma, flac, asf - https://sourceforge.net/projects/ktageditor/files/Source/0.2.0/ktageditor.zip - - qt5-base-devel - qt5-phonon-devel - taglib-devel - qt5-phonon-backend-gstreamer - - multimedia/editor/ktageditor/pspec.xml - - - ktageditor - KTag Editor is an Audio tag editor developed in Qt5 framework. - - qt5-base - qt5-phonon - qt5-phonon-backend-gstreamer - libgcc - taglib - - - /usr/bin - /usr/share - - - - - 2020-03-05 - 0.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.2.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-21 - 0.2.0 - First Release - Stefan Gronewold - groni@pisilinux.org - - - - - - blender - https://www.blender.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - multimedia.editor - 3D modeling, animation, rendering and post-production application - 3D animasyon sistemi - blender is the essential software solution you need for 3D, from modeling, animation, rendering and post-production to interactive creation and playback. - Blender 3B modelleme ve animasyon yapmaya yarayan açık kaynak bir yazılımdır. - blender - http://download.blender.org/source/blender-3.0.1.tar.xz - - git - cmake - llvm - potrace - gmp-devel - openxr-devel - ffmpeg-devel - fftw3-devel - boost-devel - freetype-devel - glew-devel - icu4c-devel - imath-devel - jack-audio-connection-kit-devel - libdc1394-devel - libgomp - libjpeg-turbo-devel - libpng-devel - libsdl-devel - libsdl2-devel - libsndfile-devel - libspnav-devel - libX11-devel - libXi-devel - libXxf86vm-devel - mesa-devel - libglvnd-devel - mesa-glu-devel - openal-devel - openexr-devel - openjpeg-devel - python3-devel - tiff-devel - openimageio-devel - webp-devel - zlib-devel - python3-requests - python3-numpy - intel-tbb-devel - OpenCOLLADA-devel - opencolorio-devel - python3-idna - python3-setuptools - jemalloc-devel - zstd-devel - - - blender-openexr.patch - blender-3.0.0-intern-ghost-fix-typo-in-finding-XF86VMODE.patch - - multimedia/editor/blender/pspec.xml - - - blender - - gmp - zstd - boost - openxr - pugixml - potrace - libsdl2 - ffmpeg - fftw3 - freetype - libglvnd - intel-tbb - libXfixes - openjpeg2 - libXrender - glew - imath - jack-audio-connection-kit - libgcc - libdc1394 - libgomp - libjpeg-turbo - libpng - libsdl - libsndfile - libspnav - libX11 - libXi - libXxf86vm - mesa - mesa-glu - openal - openexr-libs - openjpeg - python3 - tiff - openimageio - zlib - intel-tbb - OpenCOLLADA - opencolorio - jemalloc - - - /usr/bin - /usr/lib/python3.9/ - /usr/share/blender/ - /usr/share/doc - /usr/share/pixmaps/ - /usr/share/man/man1 - /usr/share/icons - /usr/share/applications - /usr/share/mime - /usr/share/locale - - - blender.xml - blender-wrapper - blender.desktop - - - - - 2022-05-23 - 3.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-05 - 3.0.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-19 - 2.93.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-25 - 2.93.5 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-21 - 2.92.0 - Rebuild boost. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-30 - 2.92.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-11 - 2.92.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-20 - 2.91.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-19 - 2.90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-04 - 2.83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-25 - 2.82 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-11 - 2.81 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-01 - 2.79 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-11 - 2.79 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-04-27 - 2.79 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-24 - 2.79 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-14 - 2.79 - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2017-05-28 - 2.78c - Version bump - PisiLinux Community - admins@pisilinux.org - - - 2017-03-17 - 2.78 - Version bump - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-15 - 2.75a - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-15 - 2.75a - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-05-08 - 2.75a - First release - Ali Algul - alialgul@pisilinux.org - - - - - - ogre-next - https://github.com/OGRECave/ogre-next - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2 - library - multimedia.editor - Scene-oriented, flexible 3D engine written in C++ - C++ ile yazılmış, sahne odaklı, esnek 3B motor - Ogre-Next is a 3D graphics rendering engine. Not to be confused with a game engine which provides Networking, Sound, Physics, etc. - Ogre-Next, bir 3D grafik işleme motorudur. Ağ, Ses, Fizik vb. Sağlayan bir oyun motoruyla karıştırılmamalıdır. - https://github.com/OGRECave/ogre-next/archive/refs/tags/v2.3.0.tar.gz - - git - cmake - ninja - doxygen - mesa-devel - zlib-devel - boost-devel - libXt-devel - vulkan-devel - openvr-devel - libX11-devel - dejavu-fonts - libXaw-devel - cppunit-devel - libsdl2-devel - zziplib-devel - openssl-devel - tinyxml-devel - python3-devel - libglvnd-devel - mesa-glu-devel - graphviz-devel - freetype-devel - rapidjson-devel - libXrandr-devel - FreeImage-devel - - multimedia/editor/ogre-next/pspec.xml - - - ogre-next - - zlib - mesa - libXt - libgcc - openvr - libX11 - libXaw - openssl - tinyxml - doxygen - cppunit - libsdl2 - zziplib - freetype - graphviz - mesa-glu - libglvnd - FreeImage - rapidjson - libXrandr - dejavu-fonts - - - /usr/bin - /usr/lib/OGRE - /usr/lib/libOgreHlmsPbs.so* - /usr/lib/libOgreMeshLodGenerator.so* - /usr/lib/libOgreOverlay.so* - /usr/lib/libOgreSceneFormat.so* - /usr/lib/libOgreMain.so* - /usr/lib/libOgreHlmsUnlit.so* - /usr/share/OGRE - /usr/share/doc - - - - ogre-next-devel - Development files for ogre-next - - ogre-next - - - /usr/include - /usr/lib/OGRE/cmake - /usr/lib/pkgconfig - - - - - 2022-04-30 - 2.3.0 - First release. - Kamil Atlı - suvari@pisilinux.org - - - - - - libopenshot - https://openshot.org/ - - Kamil Atlı - suvari@pisilinux.org - - GPL - library - multimedia.editor - A free, open-source C++ library dedicated to delivering high quality video editing, animation, and playback solutions to the world. - Dünyaya yüksek kaliteli video düzenleme, animasyon ve oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığı. - OpenShot Video Library (libopenshot) is a free, open-source C++ library dedicated to delivering high quality video editing, animation, and playback solutions to the world. - OpenShot Video Kitaplığı (libopenshot), dünyaya yüksek kaliteli video düzenleme, animasyon ve oynatma çözümleri sunmaya adanmış ücretsiz, açık kaynaklı bir C++ kitaplığıdır. - https://github.com/OpenShot/libopenshot/archive/refs/tags/v0.2.7.tar.gz - - swig - cmake - catch2 - libgcc - doxygen - x264-devel - ruby-devel - glibc-devel - ffmpeg-devel - zeromq-devel - openmp-devel - opencv-devel - python3-pyzmq - python3-devel - qt5-svg-devel - jsoncpp-devel - qt5-base-devel - protobuf-devel - alsa-lib-devel - python3-qt5-devel - libopenshot-audio-devel - imagemagick-devel - qt5-multimedia-devel - - multimedia/editor/libopenshot/pspec.xml - - - libopenshot - - ffmpeg - libgcc - zeromq - jsoncpp - libgomp - python3 - qt5-base - imagemagick - libopenshot-audio - - - /usr/lib/python3.9/site-packages - /usr/lib/libopenshot_protobuf.so* - /usr/lib/libopenshot.so* - /usr/share/doc - - - - libopenshot-devel - Development files for libopenshot - - libopenshot - - - /usr/include - - - - - 2021-12-09 - 0.2.7 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - gaupol - https://otsaloma.io/gaupol/ - - PisiLinux Community - admins@pisilinux.org - - GPL-3 - app:gui - multimedia.editor - Editor for text-based subtitle files. - Metin yazı biçimli altyazıları düzenleme aracı - Gaupol is an editor for text-based subtitle files. It supports multiple subtitle file formats and provides means of creating, editing and translating subtitles and timing subtitles to match video. - Metin yazı biçimli altyazıları düzenleme aracıdır. Çeşitli altyazı türlerini desteklemektedir. Ayrıca yazı içeriğini ve zamanlamayı düzeltmenize olanak sağlar. - https://github.com/otsaloma/gaupol/archive/refs/tags/1.11.tar.gz - - gtk3-devel - python3-devel - python3-setuptools - python3-pygobject3-devel - - multimedia/editor/gaupol/pspec.xml - - - gaupol - - gtk3 - python3 - iso-codes - gst-libav - mpv-player - python3-cairo - python3-chardet - gst-plugins-bad - gst-plugins-base - gst-plugins-ugly - gst-plugins-good - python3-pygobject3 - - - /usr/bin - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2022-05-14 - 1.11 - Version bump. - fury - uglyside@yandex.ru - - - 2021-11-04 - 1.10.1 - First build. - fury - uglyside@yandex.ru - - - - - - puddletag - https://docs.puddletag.net/ - - Pisilinux Community - admins@pisilinux.org - - GPL-3 - app:gui - multimedia.editor - Puddletag is an audio tag editor (primarily created) for GNU/Linux. - Linux üzerinde mp3 etiketlerini düzenlemenizi sağlayan bir araç - Supported formats: ID3v1, ID3v2 (mp3), MP4 (mp4, m4a, etc.), VorbisComments (ogg, flac), Musepack (mpc), Monkey’s Audio (.ape) and WavPack (wv). - Puddletag programı, kolay görünümü sayesinde mp3 etiketlerinde rahatça değişiklik yapabilmenizi sağlar. ID3v1, ID3v2, mp4, ogg, flac,mps, ape, wv formatlarını destekler. - https://files.pythonhosted.org/packages/source/p/puddletag/puddletag-2.1.1.tar.gz - - python3-qt5 - python3-devel - python3-setuptools - - multimedia/editor/puddletag/pspec.xml - - - puddletag - - python3-qt5 - libchromaprint - python3-mutagen - python3-configobj - python3-pyparsing - - - /usr/bin - /usr/lib - /usr/share - /usr/share/man - /usr/share/doc - - - - - 2022-02-05 - 2.1.1 - Minor ver. bump - fury - uglyside@yandex.ru - - - 2022-02-04 - 2.1.0 - First release - fury - uglyside@yandex.ru - - - - - - otter-browser - http://otter-browser.org/ - - Stefan Gronewold (groni) - groni@pisilinux.org - - GPL-3 - gui - network.web - Otter-Browser Controlled by the user, not vice versa - Otter Browser aims to recreate the best aspects of the classic Opera (12.x) UI using Qt5. - https://github.com/OtterBrowser/otter-browser/archive/v1.0.01.tar.gz - - hunspell-devel - qt5-multimedia-devel - qt5-svg-devel - qt5-webengine-devel - qt5-webkit-devel - qt5-xmlpatterns-devel - cmake - - network/web/otter-browser/pspec.xml - - - otter-browser - - hunspell - qt5-multimedia - qt5-svg - qt5-webengine - qt5-webkit - qt5-xmlpatterns - - - /usr/lib - /usr/share - /usr/share/man/man1 - /usr/bin - - - - - 2020-07-06 - 1.0.01 - First Release - Erkan IŞIK - erkanisik@pisilinux.org - - - - - - firefox - https://www.mozilla.org/tr/ - - PisiLinux Community - admins@pisilinux.org - - MPL-1.1 - NPL-1.1 - GPLv2 - app:gui - network.web - Firefox Web Browser - Firefox Web Browser - Firefox Web-Browser - Firefox Web Tarayıcı - Przeglądarka WWW Firefox - Firefox Navegador Web - It is more secure and faster to browse the web with Firefox web browser. You can personalize your web browser with many specifications that is not enough to explain in two sentences. - Met Firefox gaat het browsen van het web veiliger en sneller. Het kan met vele toevoegingen aan uw persoonlijke wensen aangepast worden en heeft te veel mogelijkheden om in twee zinnen te beschrijven. - Mit dem Firefox Web-Browser surfen sie sicherer und schneller im Web. Sie können Ihren Web-Browser mit vielen Spezifikationen personalisieren, diese kann man nicht in zwei Sätzen erklären. - Internette gezinmek daha güvenli ve hızlı. İki cümle ile anlatılamayacak ek ozellikler ile açık kaynak kodlu web tarayıcınızı kişiselleştirebilirsiniz. - Mozilla Firefox – otwarta przeglądarka internetowa oparta na silniku Gecko, stworzona i rozwijana przez Korporację Mozilla oraz ochotników. - Navegue por la web de forma rápida y segura. Navegador web de código abierto que se puede personalizar con características adicionales. - firefox - https://ftp.mozilla.org/pub/firefox/releases/101.0/source/firefox-101.0.source.tar.xz - - mozconfig-inst - mozconfig-opt - configure - pisilinux/browserconfig.properties - - - rust - wget - llvm - nodejs - chrpath - cbindgen nss-devel - lld-devel - gdb-devel - util-linux nspr-devel - zlib-devel - gtk3-devel - gtk2-devel - yasm-devel - gconf-devel - libXt-devel - libSM-devel - autoconf213 - icu4c-devel - compiler-rt - libvpx-devel - libpng-devel - libffi-devel - gnutls-devel - python-devel - sqlite-devel - python3-devel - hunspell-devel - alsa-lib-devel - libevent-devel - xorg-app-devel - libnotify-devel - dbus-glib-devel - xkeyboard-config - xorg-server-xvfb - llvm-clang-devel - python3-setuptools - libxkbcommon-devel - libXcomposite-devel - libXScrnSaver-devel - libjpeg-turbo-devel - pulseaudio-libs-devel - gst-plugins-base-devel - startup-notification-devel - jack-audio-connection-kit-devel + glib2-devel + pcsc-lite-devel - network/web/firefox/pspec.xml + programming/library/libcacard/pspec.xml - firefox + libcacard + CAC (Common Access Card) library - atk nss - dbus - gtk3 - gtk2 nspr - zlib - cairo glib2 - libXt - pango - libX11 - libffi - libxcb - libgcc - pixman - sqlite - iconcan - libXext - icu4c - libvpx - alsa-lib - libevent - freetype - hunspell - dbus-glib - libXfixes - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - startup-notification + pcsc-lite - /etc/ - /usr/share/doc /usr/bin - /usr/share/mime - /usr/libexec + /usr/share/doc/ + /usr/lib/libcacard.so* + + + + libcacard-devel + Development files for libcacard + libcacard için geliştirme dosyaları + Bu kitaplık, akıllı kartların sanal bir karta öykünmesini sağlar +Konuk sanal makinede çalışan okuyucu. + + nss-devel + glib2-devel + pcsc-lite-devel + libcacard + + + /usr/include /usr/lib/pkgconfig - /usr/share/pixmaps - /usr/lib/firefox - /usr/share/applications - - - System.Package - - - pisilinux/mozillafirefox.desktop - pisilinux/firefox-l10n.js - pisilinux/default-prefs.js - pisilinux/distribution.ini - pisilinux/pisilinux_bookmark-tr.html - pisilinux/pisilinux_bookmark-en.html - pisilinux/pisilinux_bookmark-nl.html - pisilinux/pisilinux_bookmark-de.html - - - - firefox-lang-az - Firefox üçün Türkçe dil faylı - Firefox üçün Türkçe dil faylı - locale:az - system.locale - lang-az - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-az@firefox.mozilla.org.xpi - - - - firefox-lang-bs - Engleskom jeziku paket za Firefox - Engleskom jeziku paket za Firefox - locale:bs - system.locale - lang-bs - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-bs@firefox.mozilla.org.xpi - - - - firefox-lang-ca - Arxiu d'idioma català del Firefox - Arxiu d'idioma català del Firefox - locale:ca - system.locale - lang-ca - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ca@firefox.mozilla.org.xpi - - - - firefox-lang-da - Dansk sprogpakke til Firefox - Dansk sprogpakke til Firefox - locale:da - system.locale - lang-da - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-da@firefox.mozilla.org.xpi - - - - firefox-lang-de - Deutsch Sprachdatei für Firefox - Deutsch Sprachdatei für Firefox - locale:de - system.locale - lang-de - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-de@firefox.mozilla.org.xpi - - - - firefox-lang-el - Ελληνική γλώσσα pack για τον Firefox - Ελληνική γλώσσα pack για τον Firefox - locale:el - system.locale - lang-el - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-el@firefox.mozilla.org.xpi - - - - firefox-lang-en-US - English language pack for Firefox - English language pack for Firefox - locale:en-US - system.locale - lang-en-US - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-US@firefox.mozilla.org.xpi - - - - firefox-lang-en-GB - British English language pack for Firefox - British English language pack for Firefox - locale:en-GB - system.locale - lang-en-GB - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-en-GB@firefox.mozilla.org.xpi - - - - firefox-lang-es-AR - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-AR - system.locale - lang-es-AR - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-AR@firefox.mozilla.org.xpi - - - - firefox-lang-es-CL - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-CL - system.locale - lang-es-CL - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-CL@firefox.mozilla.org.xpi - - - - firefox-lang-es-ES - Paquete de idioma español para Firefox - Paquete de idioma español para Firefox - locale:es-ES - system.locale - lang-es-ES - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-es-ES@firefox.mozilla.org.xpi - - - - firefox-lang-fi - Suomen kielen pack for Firefox - Suomen kielen pack for Firefox - locale:fi - system.locale - lang-fi - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-fi@firefox.mozilla.org.xpi - - - - firefox-lang-fr - Paquet de langue française pour Firefox - Paquet de langue française pour Firefox - locale:fr - system.locale - lang-fr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-fr@firefox.mozilla.org.xpi - - - - firefox-lang-hr - Hrvatski jezični paket za Firefox - Hrvatski jezični paket za Firefox - locale:hr - system.locale - lang-hr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-hr@firefox.mozilla.org.xpi - - - - firefox-lang-hu - Magyar nyelvű pack for Firefox - Magyar nyelvű pack for Firefox - locale:hu - system.locale - lang-hu - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-hu@firefox.mozilla.org.xpi - - - - firefox-lang-it - Language Pack italiano per Firefox - Language Pack italiano per Firefox - locale:it - system.locale - lang-it - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-it@firefox.mozilla.org.xpi - - - - firefox-lang-lt - Lietuvių kalbos paketas Firefox - Lietuvių kalbos paketas Firefox - locale:lt - system.locale - lang-lt - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-lt@firefox.mozilla.org.xpi - - - - firefox-lang-nl - Nederlands taalpakket voor Firefox - Nederlands taalpakket voor Firefox - locale:nl - system.locale - lang-nl - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-nl@firefox.mozilla.org.xpi - - - - firefox-lang-pl - Polski pakiet językowy dla programu Firefox - Polski pakiet językowy dla programu Firefox - locale:pl - system.locale - lang-pl - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pl@firefox.mozilla.org.xpi - - - - firefox-lang-pt-BR - Pacote de idioma português para o Firefox - Pacote de idioma português para o Firefox - locale:pt-BR - system.locale - lang-pt-BR - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pt-BR@firefox.mozilla.org.xpi - - - - firefox-lang-pt-PT - Pacote de idioma português para o Firefox - Pacote de idioma português para o Firefox - locale:pt-PT - system.locale - lang-pt-PT - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-pt-PT@firefox.mozilla.org.xpi - - - - firefox-lang-ro - Pachet de limba română pentru Firefox - Pachet de limba română pentru Firefox - locale:ro - system.locale - lang-ro - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ro@firefox.mozilla.org.xpi - - - - firefox-lang-ru - Русский языковый пакет для Firefox - Русский языковый пакет для Firefox - locale:ru - system.locale - lang-ru - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-ru@firefox.mozilla.org.xpi - - - - firefox-lang-sr - Паковање српски језик за Фирефок - Паковање српски језик за Фирефок - locale:sr - system.locale - lang-sr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-sr@firefox.mozilla.org.xpi - - - - firefox-lang-sv-SE - Svenska språkpaket för Firefox - Svenska språkpaket för Firefox - locale:sv-SE - system.locale - lang-sv-SE - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-sv-SE@firefox.mozilla.org.xpi - - - - firefox-lang-tr - Firefox için Türkçe dil dosyası - Firefox için Türkçe dil dosyası - locale:tr - system.locale - lang-tr - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-tr@firefox.mozilla.org.xpi - - - - firefox-lang-uk - Український мовний пакет для Firefox - Український мовний пакет для Firefox - locale:uk - system.locale - lang-uk - - firefox - - - /usr/lib/firefox/browser/extensions/langpack-uk@firefox.mozilla.org.xpi - - 2022-05-30 - 101.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-05-02 - 100.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-04-10 - 99.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 98.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-18 - 97.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-02-14 - 97.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2022-01-26 - 96.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-01-10 - 96.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-16 - 95.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-12-06 - 95.0 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-11 - 94.0.1 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2021-11-01 - 94.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-05 - 93.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-06 - 92.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-23 - 91.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-16 - 91.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-19 - 90.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-12 - 90.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-17 - 89.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-31 - 89.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-19 - 88.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-22 - 87.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-27 - 86.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-06 - 85.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-25 - 85.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-02 - 84.0.1 - Version bump and enable PGO and LTO - İdris Kalp - idriskalp@gmail.com - - - 2020-12-27 - 84.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-16 - 83.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-19 - 82.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-10-01 - 81.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-21 - 81.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-09-01 - 80.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-10 - 78.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-01 - 78.0.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-03 - 77.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-12 - 76.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-05 - 76.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-06 - 75.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-09 - 74.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-17 - 73.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-01-09 - 72.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-02 - 71.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-31 - 70.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-21 - 70.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-03 - 69.0.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-19 - 69.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-08-15 - 68.0.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-26 - 68.0.1 - Version Bump and rebuild - Idris Kalp - idriskalp@gmail.com - - - 2019-05-24 - 67.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-15 - 66.0.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-28 - 66.0.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-13 - 65.0.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-28 - 65.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-11 - 64.0.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-11 - 64.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-11-17 - 63.0.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-10-30 - 63.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-25 - 62.0.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-07 - 61.0.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-20 - 60.0.1 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-08 - 60.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-06 - 59.0.3 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 58.0.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-04 - 58.0.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-07 - 57.0.4 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-08 - 57.0.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-19 - 57.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 56.0.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-09-30 - 55.0.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-29 - 53.0.3 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-22 - 52.0.1 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2017-03-05 - 50.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-16 - 47.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 44.0.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2016-04-02 - 44.0.2 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - lynx - https://invisible-mirror.net/lynx/lynx.html - - PisiLinux Community - admins@pisilinux.org - - GPL - app:console - network.web - Lynx is the text web browser. - This is the top level page for the Lynx software distribution site hosted by the Internet Software Consortium. - http://invisible-mirror.net/archives/lynx/tarballs/lynx2.8.9rel.1.tar.bz2 - - ncurses-devel - openssl-devel - gettext-devel - - - lynx2-8-6-don-t-accept-command-line-args-to-telnet.patch - lynx2-8-6-fix-ugly-color.patch - lynx2-8-7-adapt-to-modern-file-localizations.patch - lynx2-8-7-tmp_dir.patch - - network/web/lynx/pspec.xml - - - lynx - - ncurses - openssl - - - /usr/bin - /etc - /usr/share - /usr/share/man - - - - - 2020-01-07 - 2.8.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-22 - 2.8.9 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-07-30 - 2.8.8 - Rebuild New T. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 2.8.8 - Rebuild - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 2.8.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-05-29 - 2.8.8 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - falkon - https://www.falkon.org/ - - Mustafa Cinasal - muscnsl@gmail.com - - GPLv3 - app:web - network.web - Cross-platform QtWebKit browser - Cross-platform QtWebKit browser - falkon is a new and very fast QtWebEngine browser - falkon is a new and very fast QtWebEngine browser - https://github.com/KDE/falkon/archive/refs/tags/v22.04.0.tar.gz - - extra-cmake-modules - kwallet-devel - qt5-base-devel - qt5-declarative-devel - qt5-webchannel-devel - qt5-webengine-devel - qt5-x11extras-devel - qt5-sql-postgresql - qt5-svg-devel - qt5-sql-mysql - qt5-sql-odbc - qt5-linguist - qt5-sql-sqlite - libgnome-keyring - python3-devel - openssl-devel - libxcb-devel - nss-devel - cmake - kio-devel - purpose-devel - karchive-devel - - - bookmarks_json.diff - - network/web/falkon/pspec.xml - - - falkon - - kio - kcrash - purpose - kcoreaddons - libxcb - libgnome-keyring - kwallet - qt5-base - qt5-declarative - qt5-webchannel - qt5-webengine - qt5-x11extras - qt5-sql-sqlite - - - /usr/bin - /usr/lib - /usr/include - /usr/share - /usr/share/locale - /usr/share/bash-completion - /usr/share/metainfo - /usr/share/pixmaps - /usr/share/icons - /usr/share/doc - - - qupzilla - - - - - 2021-02-02 - 22.04.0 - version bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2021-02-02 - 3.1.0 - Rebuild. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2020-04-12 - 3.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-01 - 3.1.0 - version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-01 - 3.0.1 - Fixed version number - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-11 - 3.1.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-08 - 3.0.0 - First release - Mustafa Cinasal - muscnsl@gmail.com - - - - - - chromium-browser - https://www.chromium.org/Home - - Admin PisiLinux - admin@pisilinux.org - - GPLv2 - app:gui - network.web - A WebKit powered web browser - Webkit tabanlı ağ tarayıcı - Chromium-browser is an open-source web browser, powered by WebKit. - Chromium, açık kaynak kodlu Webkit tabanlı bir ağ tarayıcıdır. - chromium-browser - http://gsdview.appspot.com/chromium-browser-official/chromium-99.0.4844.58.tar.xz - - alsa-lib-devel - at-spi2-atk-devel - atk-devel - cairo-devel - cups-devel - curl-devel - dbus-devel - desktop-file-utils - faac-devel - flac-devel - gdk-pixbuf-devel - glib2-devel - glibc-devel - gperf - gsm-devel - gtk3-devel - harfbuzz-devel - hunspell-devel - icon-theme-hicolor - imlib2-devel - jack-audio-connection-kit-devel - lame-devel - libXScrnSaver-devel - libXcomposite-devel - libXcursor-devel - libXdamage-devel - libXext-devel - libXfixes-devel - libXi-devel - libXrandr-devel - libXrender-devel - libXtst-devel - libavc1394-devel - libdc1394-devel - libdrm-devel - libexif-devel - libffi-devel - libgnome-keyring - libjpeg-turbo-devel - libmtp-devel - libogg-devel - libopus-devel - libsecret-devel - libtheora-devel - libva-devel - libvdpau-devel - libvorbis-devel - libxcb-devel - libxslt-devel - llvm-clang-devel - lld-devel - llvm - compiler-rt - minizip-devel - mit-kerberos-devel - ninja - nodejs - nss-devel - opencore-amr-devel - pango-devel - pciutils-devel - pulseaudio-libs-devel - python-lxml - schroedinger-devel - snappy-devel - speech-dispatcher-devel - speex-devel - usbutils - valgrind - webp-devel - x264-devel - xdg-utils - xvid-devel - yasm-devel - python-devel - json-c-devel - openjpeg2-devel - re2-devel - ffmpeg-devel - freetype-devel - mesa-devel - libxkbcommon-devel - jre8-openjdk-headless - pipewire-devel - libevent-devel - - - webcodecs-stop-using-AudioOpusEncoder.patch - fix-build-break-with-system-libdrm.patch - sql-make-VirtualCursor-standard-layout-type.patch - use-oauth2-client-switches-as-default.patch - chromium-91-java-only-allowed-in-android-builds.patch - chromium-buildname.patch - wayland-egl.patch - patches/chromium-78-protobuf-RepeatedPtrField-export.patch - patches/chromium-98-compiler.patch - patches/chromium-99-AutofillAssistantModelExecutor-NoDestructor.patch - - network/web/chromium-browser/pspec.xml - - - chromium-browser - - alsa-lib - dbus - atk - cairo - cups - curl - flac - fontconfig - gdk-pixbuf - at-spi2-atk - at-spi2-core - gtk3 - libevent - libXcomposite - libXcursor - libXdamage - libXext - libXfixes - libXi - libXrandr - libXrender - libXScrnSaver - libXtst - libxcb - libxslt - libva - mit-kerberos - nss - pango - pepperflash - pulseaudio-libs - webp - nspr - expat - glib2 - libX11 - libgcc - harfbuzz - re2 - ffmpeg - libopus - snappy - freetype - libdrm - libjpeg-turbo - mesa - pipewire - - - /etc - /usr/bin - /usr/lib - /usr/share/man - /usr/share/doc - /usr/share/icons - /usr/share/metainfo - /usr/share/pixmaps - /usr/share/applications - /usr/share/drirc.d/10-chromium-browser.conf - - - master_preferences - chromium-drirc-disable-10bpc-color-configs.conf - chromium-browser.desktop - - - - - 2022-03 - 99.0.4844.58 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2022-02-14 - 98.0.4758.91 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2022-01-11 - 97.0.4692.77 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2021-10-21 - 95.0.4638.54 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2021-08-16 - 92.0.4515.131 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2021-07-07 - 91.0.4472.147 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2021-03-18 - 89.0.4389.90 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2021-01-19 - 87.0.4280.142 - Version Bump - İdris Kalp - idriskalp@gmail.com - - - 2020-04-29 - 81.0.4044.122 - Version Bump - Idris Kalp - idriskalp@gmail.com - - - 2020-02-28 - 80.0.3987.106 - Version Bump - Idris Kalp - idriskalp@gmail.com - - - 2020-01-12 - 79.0.3945.117 - Version Bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-09-25 - 78.0.3904.70 - Version Bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-09-24 - 77.0.3865.93 - Version Bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-08-16 - 76.0.3809.111 - Version Bump. - Idris Kalp - idriskalp@gmail.com - - - 2019-07-22 - 75.0.3770.144 - Version Bump. - Idris Kalp - idriskalp@gmail.com - - - 2018-09-11 - 69.0.3497.100 - Version Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2018-04-09 - 62.0.3202.97 - Version Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2017-11-24 - 62.0.3202.94 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-31 - 60.0.3112.78 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-11 - 58.0.3029.81 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-12-12 - 55.0.2883.75 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-23 - 53.0.2785.116 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-10 - 53.0.2785.101 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-09-06 - 53.0.2785.92 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-08-03 - 52.0.2743.116 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-22 - 52.0.2743.82 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-07-05 - 51.0.2704.106 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-30 - 51.0.2704.84 - Version Bump. - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-09 - 48.0.2564.97 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - - - - clipgrab - https://clipgrab.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:gui - network.download - A video downloader - Bir video indirici. - A program which downloads and converts online videos from YouTube, Vimeo, DailyMotion, MyVideo and many other platforms. - YouTube, Vimeo, DailyMotion, MyVideo ve diğer bazı platformlardan video indirip dönüştürebilen bir programdır. - clipgrab - https://download.clipgrab.org/clipgrab-3.9.7.tar.gz - - ffmpeg-devel - qt5-base-devel - qt5-webengine-devel - - network/download/clipgrab/pspec.xml - - - clipgrab - - ffmpeg - libgcc - yt-dlp - qt5-base - qt5-webengine - - - /usr/bin - /usr/share/pixmaps - /usr/share/applications - /usr/share/doc/clipgrab - - - clipgrab.desktop - - - - - 2022-03-29 - 3.9.7 + 2021-02-10 + 2.8.1 First release. Kamil Atlı suvari@pisilinux.org @@ -337109,788 +299713,66 @@ cleaner, which will allow to add new features in the future. - uget - http://ugetdm.com/ + libcloudproviders + http://live.gnome.org/libcloudproviders - PisiLinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com - GPLv3 - app:gui - network.download - uget - Download manager using GTK+ and libcurl - Bir indirme aracı. - uGet is an Open Source download manager application for GNU/Linux developed with GTK+. - Uget, Linux için yazılmış, GTK tabanlı bir indirme yöneticisidir. - uget - https://sourceforge.net/projects/urlget/files/uget%20%28stable%29/2.2.3/uget-2.2.3-1.tar.gz - - intltool - gtk3-devel - curl-devel - cairo-devel - glib2-devel - pango-devel - openssl-devel - libnotify-devel - gdk-pixbuf-devel - gstreamer-devel - - network/download/uget/pspec.xml - - - uget - - curl - gtk3 - cairo - glib2 - pango - openssl - libnotify - gdk-pixbuf - gstreamer - aria2 - - - /usr/bin - /usr/share/applications - /usr/share/pixmaps - /usr/share/sounds - /usr/share/icons - /usr/share/locale - /usr/share/doc - - - - - 2020-04-11 - 2.2.3.1 - Version bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2016-03-22 - 2.0.5 - Version bump, rebuilt with docker. - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2014-07-09 - 1.10.4 - Version Bump. - Vedat Demir - vedat@pisilinux.org - - - 2014-02-17 - 1.10.3 - Rebuild. - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-02-08 - 1.10.3 - First release - Idris Kalp - admins@pisilinux.org - - - - - - axel - https://github.com/axel-download-accelerator/axel - - Idris Kalp - idriskalp@gmail.com - - GPLv2 - app:console - network.download - Light command line download accelerator - Axel tries to accelerate the download process by using multiple connections per file, and can also balance the load between different servers. - https://github.com/axel-download-accelerator/axel/releases/download/v2.17.11/axel-2.17.11.tar.xz - - openssl-devel - - network/download/axel/pspec.xml - - - axel - - openssl - libgcc - - - /usr/bin - /usr/include - /usr/share/locale - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2022-05-23 - 2.17.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-02 - 2.7.10 - Version bump. - Idris Kalp - idriskalp@gmail.com - - - 2020-01-11 - 2.7.6 - First release. - Idris Kalp - idriskalp@gmail.com - - - - - - aria2 - https://aria2.github.io/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.download - A download utility with resuming and segmented downloading. - Parçalı ve yarım kalan dosyaları indirme özelliğine sahip bir indirme aracı - aria2 is a download utility with resuming and segmented downloading. Supported protocols are HTTP, HTTPS, FTP and BitTorrent. It also supports Metalink version 3.0. - Aria2 parçalı indirme ve yarım kalan indirmeleri devam ettirme özelliklerine sahip olan bir indirme aracıdır. - https://github.com/aria2/aria2/releases/download/release-1.36.0/aria2-1.36.0.tar.xz - - gmp-devel - zlib-devel - c-ares-devel - gnutls-devel - nettle-devel - sqlite-devel - libxml2-devel - libssh2-devel - - network/download/aria2/pspec.xml - - - aria2 - - gmp - zlib - c-ares - libgcc - gnutls - nettle - sqlite - libxml2 - libssh2 - - - /usr/bin - /usr/lib - /usr/share/bash-completion - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - aria2-devel - - aria2 - - - /usr/lib/pkgconfig - /usr/include - - - - - 2021-09-14 - 1.36.0 - Version bump. - fury - uglyside@yandex.ru - - - 2021-07-01 - 1.35.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-15 - 1.35.0 - Ver. bump - fury - uglyside@yandex.ru - - - 2019-07-04 - 1.34.0 - Rebuild. - fury - uglyside@yandex.ru - - - 2019-04-18 - 1.34.0 - Version bump - fury - uglyside@yandex.ru - - - 2016-03-22 - 1.21.0 - Version bump, rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2015-02-15 - 1.18.9 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2013-11-22 - 1.18.1 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-10-01 - 1.18.0 - Version bump - Richard de Bruin - richdb@pisilinux.org - - - 2013-06-15 - 1.17.1 - Version bump - Osman Erkan - osman.erkan@pisilinux.org - - - 2013-04-23 - 1.16.0 - Dep fixed - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-12-14 - 1.16.0 - First release - M. Tayyip Yel - admins@pisilinux.org - - - - - - wget - http://www.gnu.org/software/wget/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - app:console - network.download - Command-line utility to retrieve files from remote systems - Http ve ftp gibi internet protokollerini kullanarak dosya indirebilen bir yazılım - GNU Wget is a free software package for retrieving files using HTTP, HTTPS and FTP, the most widely-used Internet protocols. It is a non-interactive commandline tool, so it may easily be called from scripts, cron jobs, terminals without X-Windows support, etc. - GNU Wget, HTTP, HTTPS ve FTP gibi en çok kullanılan Internet protokollerini kullanarak dosyalara ulaşmak icin kullanılan bir özgür yazılım paketidir. Etkileşimsiz bir komutsatırı aracıdır, böylece X-Windows desteği olmadan, betikler, işlemler, terminal kullanımı gerçekleştirilebilir. - http://ftp.gnu.org/gnu/wget/wget-1.21.1.tar.gz - - openssl-devel - zlib-devel - libidn2-devel - - network/download/wget/pspec.xml - - - wget - - zlib - openssl - libidn2 - - - /etc - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/man - /usr/share/locale - - - - - 2021-03-01 - 1.21.1 - Version bump - İdris Kalp - idriskalp@gmail.com - - - 2020-11-07 - 1.20.3 - Rebuild - mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 1.20.3 - Version bump - idris kalp - idriskalp@gmail.com - - - 2018-08-07 - 1.19 - Rebuild - mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-17 - 1.19 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-10-27 - 1.18 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-09 - 1.17.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-25 - 1.17.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - persepolis - https://persepolisdm.github.io - - Kamil Atlı - suvari@pisilinux.org - - GPL3 + LGPLv3 library - network.download - Qt front-end for aria2 download manager - Persepolis is a Download Manager and a GUI For aria2. - https://github.com/persepolisdm/persepolis/archive/refs/tags/3.2.0.tar.gz + programming.library + libcloudproviders is a DBus API that allows cloud storage sync clients to expose +their services. + libcloudproviders is a DBus API that allows cloud storage sync clients to expose +their services. Clients such as file managers and desktop environments can then +provide integrated access to the cloud providers services. + https://gitlab.gnome.org/World/libcloudproviders/-/archive/0.3.1/libcloudproviders-0.3.1.tar.gz - aria2-devel - ffmpeg-devel - qt5-svg-devel - python3-devel - python3-psutil - libnotify-devel - python3-requests - python3-qt5-devel - python3-setuptools - python3-youtube_dl - python-setproctitle - pulseaudio-libs-devel - sound-theme-freedesktop - - network/download/persepolis/pspec.xml - - - persepolis - - aria2 - ffmpeg - python3 - qt5-svg - python3-qt5 - pulseaudio-libs - python3-requests - python3-youtube_dl - python-setproctitle - sound-theme-freedesktop - - - /usr/share - /usr/bin - /usr/share/man/man1 - /usr/share/doc/persepolis - /usr/lib/python3.9/site-packages - - - - - 2022-02-05 - 3.2.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - prozilla - http://freecode.com/projects/prozilla - - Mathias Freire - mathiasfreire45@gmail.com - - GPLv3 - app:console - network.download - Console based download accelerator. - Prozilla is a console based download accelerator which speeds up download process approximately %200-300. - http://ftp.disconnected-by-peer.at/prozilla/prozilla-2.0.5.tar.bz2 - - ncurses-devel - - network/download/prozilla/pspec.xml - - - prozilla - - /usr/bin - /usr/include - /usr/share/locale - /usr/lib - /usr/share/man - /usr/share/doc - - - - - 2019-06-09 - 2.0.5 - First release - Mathias Freire - mathiasfreire45@gmail.com - - - - - - gnu-netcat - http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/nc/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.analyzer - A tool designed to read and write data across connections using TCP/IP - A simple Unix utility which reads and writes data across network connections using TCP or UDP protocol. It is designed to be a reliable "back-end" tool that can be used directly or easily driven by other programs and scripts. - mirrors://sourceforge/netcat/netcat-0.7.1.tar.bz2 - network/analyzer/gnu-netcat/pspec.xml - - - gnu-netcat - - /usr/bin - /usr/share/doc - /usr/share/info - /usr/share/locale - /usr/share/man/man1 - - - - - 2021-07-02 - 0.7.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 0.7.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-15 - 0.7.1 - Release bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-07-02 - 0.7.1 - First release - Pisi Linux Admins - admins@pisilinux.org - - - - - - openslp - http://www.openslp.org/ - - PisiLinux Community - admins@pisilinux.org - - BSD - service - network.analyzer - An open-source implementation of Service Location Protocol - Servis Yer Protokolünün (Service Location Protocol - SLP) bir açık kaynak uyarlaması - Le Service Location Protocol (Protocole de Localisation de Service) est un protocole standard de recherche de l'IETF fournissant un framework (cadre de développement) pour permettre aux application résau de découvrir l'existence, la localisation et la configuration de services réseaux au sein des réseaux d'entreprises. - Service Location Protocol is an IETF standards track protocol that provides a framework to allow networking applications to discover the existence, location, and configuration of networked services in enterprise networks. - SLP (Service Location Protocol – Hizmet Yer Protokolu), ağlara bağlı hizmetlerin bulunabilmesi için gereken altyapıyı sağlar. - Service Location Protocol es un protocolo según estándar IETF, que provee un framework que permite a aplicaciones descubrir la existencia, locación y configuración de servicios de red en redes empresariales. - mirrors://sourceforge/openslp/openslp-2.0.0.tar.gz - - zlib-devel - openssl-devel - doxygen - docbook-xsl - - - openslp-2.0.0-CVE-2016-7567.patch - openslp-2.0.0-CVE-2017-17833.patch - openslp-2.0.0-fdr-CVE-2019-5544.patch - openslp-2.0.0-null-pointer-deref.patch - openslp-2.0.0-openssl-1.1-fix.patch - - network/analyzer/openslp/pspec.xml - - - openslp - - openssl - - - /etc/slp.conf - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/doc/openslp/html/IntroductionToSLP - /usr/share/doc/openslp/html/UsersGuide - /usr/share/doc/openslp/html/faq* - /var/log - - - - openslp-server - OpenSLP server daemon - OpenSLP hizmet sunucusu - openslp-server contains ths OpenSLP server daemon to dynamically register services. - openslp-server, dinamik hizmet kaydı için gerekli OpenSLP sunucusunu içerir. - - openssl - openslp - - - /etc/slp.reg - /etc/slp.spi - /usr/sbin/slpd - - - - openslp-devel - Development files for openslp - openslp için geliştirme dosyaları - - openslp - zlib-devel - openssl-devel - - - /usr/include - /usr/share/doc/openslp/html/ProgrammersGuide - - - - - 2021-07-02 - 2.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-02-07 - 2.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-15 - 2.0.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-06 - 2.0.0 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 2.0.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-01 - 2.0.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - wireshark - http://www.wireshark.org - - Pisi Linux Admins - admins@pisilinux.org - - GPLv2 - app:gui - network.analyzer - Network traffic analyzer - Ağ trafiği çözümleyicisi - Wireshark allows you to examine protocol data stored in files or as it is captured from wired or wireless (WiFi or Bluetooth) networks, USB devices, and many other sources. It supports dozens of protocol capture file formats and understands more than a thousand protocols. - Wireshark, dosyalarda saklanan veya kablolu veya kablosuz (WiFi veya Bluetooth) ağlardan, USB aygıtlarından ve diğer birçok kaynaktan alınan protokol verilerini incelemenize olanak tanır. Düzinelerce protokol yakalama dosya formatını destekler ve binden fazla protokolü anlar. - https://www.wireshark.org/download/src/all-versions/wireshark-3.4.7.tar.xz - - cmake meson + vala-devel glib2-devel - libpcap-devel - zlib-devel - lua52-devel - mit-kerberos - e2fsprogs-devel - gnutls-devel - libmaxminddb-devel - libgcrypt-devel - libcap-devel - sbc-devel - c-ares-devel - libxml2-devel - libssh-devel - libnl-devel - tiff-devel - lz4-devel - libnghttp2-devel - qt5-multimedia-devel - qt5-svg-devel - qt5-linguist - minizip-devel - zstd-devel - brotli-devel - speexdsp-devel - snappy-devel - libopus-devel - libilbc-devel - libxslt-devel - doxygen + gobject-introspection-devel - network/analyzer/wireshark/pspec.xml + programming/library/libcloudproviders/pspec.xml - wireshark + libcloudproviders - lz4 - sbc - zlib - zstd glib2 - lua52 - brotli - c-ares - gnutls - snappy - libssh - libilbc - libopus - libxml2 - libgcrypt - libnghttp2 - mit-kerberos + gobject-introspection - /usr/bin - /usr/lib/lib*.so* - /usr/lib/wireshark - /usr/share/appdata - /usr/share/applications + /usr/lib /usr/share/doc - /usr/share/icons - /usr/share/man - /usr/share/mime - /usr/share/wireshark - - System.Package - - wireshark-devel + libcloudproviders-devel + Development files for libcloudproviders - wireshark - glib2-devel + libcloudproviders /usr/include + /usr/lib/girepository-1.0 /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/vala/vapi + /usr/share/gir-1.0 + + 2021-05-27 + 0.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-08-23 - 3.4.7 + 2021-04-10 + 0.3.0 First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -337899,124 +299781,41 @@ cleaner, which will allow to add new features in the future. - traceroute - http://traceroute.sourceforge.net/ + libconfig + https://hyperrealm.github.io/libconfig/ - PisiLinux Community + Pisilinux Community admins@pisilinux.org - GPLv2 - app:console - network.analyzer - Utility to trace the route of IP packets - IP paketlerinin izlediği yolları takip etme aracı - The traceroute utility displays the route used by IP packets on their way to a specified network (or Internet) host. Traceroute is used as a network debugging tool. If you're having network connectivity problems, traceroute will show you where along the route the trouble is. - traceroute IP paketlerinin ağda veya internette izlediği yolu görüntüler. Ağda bağlantı probleminiz varsa, traceroute problemin yol üzerinde tam olarak nereden kaynaklandığını gösterir. - https://sourceforge.net/projects/traceroute/files/traceroute/traceroute-2.1.0/traceroute-2.1.0.tar.gz - network/analyzer/traceroute/pspec.xml - - - traceroute - - /bin - /usr/share/doc - /usr/share/man - - - - - 2021-07-02 - 2.1.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 2.1.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-07 - 2.1.0 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - rrdtool - http://oss.oetiker.ch/rrdtool/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console + LGPL-2.1 library - network.analyzer - A system to store and display time-series data - Zaman serisi verilerini saklamak ve göstermek için bir araç - RRD is the acronym for Round Robin Database. RRD is a system to store and display time-series data (i.e. network bandwidth, machine/room temperature, server load average). - RRD, Round Robin Database için kullanılan bir kısaltmadır. RRD, zaman serisi verilerini (ör. ağ bantgenişliği, makine/oda sıcaklığı, ortalama sunucu yükü) saklamak ve göstermek için kullanılan bir sistemdir. - http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.7.2.tar.gz + programming.library + C/C++ library for processing configuration files. + C/C++ Yapılandırma Dosyası Kitaplığı + Libconfig is a simple library for manipulating structured configuration files. The file format is more compact and more readable than XML. And unlike XML, it is type-aware, so it is not necessary to do string parsing in application code. + Libconfig, yapılandırma dosyalarını düzenlemek için basit bir kitaplıktır. Dosya biçimi XML'den daha basit ve okunabilirdir. XML'den farklı olarak tip bilgisi de tutulur. Böylece, uygulama kodlarında katar ayrıştırmaya gerek kalmaz. + https://github.com/hyperrealm/libconfig/releases/download/v1.7.3/libconfig-1.7.3.tar.gz - perl - groff - lua-devel - tcl-devel - cairo-devel - pango-devel - dejavu-fonts - glib2-devel - python3-devel - libxml2-devel - libart_lgpl-devel - python3-setuptools - tcp-wrappers-devel - ruby-devel + texinfo - network/analyzer/rrdtool/pspec.xml + programming/library/libconfig/pspec.xml - rrdtool - A system to store and display time-series data + libconfig - lua - tcl - perl - ruby - cairo - glib2 - pango - libpng - python3 - libxml2 - rubygems - libart_lgpl - dejavu-fonts - tcp-wrappers + libgcc - /usr/bin /usr/lib - /usr/share/man /usr/share/doc - /usr/share/rrdtool - /usr/share/locale - rrdtool-devel - Development header files for rrdtool. - rrdtool için geliştirme dosyaları - rrdtool-devel, rrdtool için geliştirme dosyalarını içerir. + libconfig-devel + Development files for libconfig + libconfig için geliştirme dosyaları - rrdtool + libconfig /usr/include @@ -338024,73 +299823,123 @@ cleaner, which will allow to add new features in the future. - - 2021-10-24 - 1.7.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-28 - 1.7.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-18 - 1.7.2 - * Rebuild due to new ruby - * Fix translation - Blue Devil - bluedevil@sctzine.com - - 2020-01-18 - 1.7.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com + 2022-04-14 + 1.7.3 + Version bump. + Pisilinux Community + admins@pisilinux.org - 2019-10-01 + 2020-11-07 1.7.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + Rebuild + Pisi Linux Community + admin@pisilinux.org - 2018-08-15 - 1.7.0 + 2020-01-12 + 1.7.2 Rebuild Pisi Linux Community admin@pisilinux.org - 2018-01-31 - 1.7.0 - Version Bump + 2018-08-03 + 1.5 + Rebuild Pisi Linux Community admin@pisilinux.org - 2017-03-01 - 1.6.0 - Version Bump + 2017-02-17 + 1.5 + Rebuild Pisi Linux Community admin@pisilinux.org - 2016-06-15 - 1.5.3 - Release Bump + 2016-06-09 + 1.5 + Version Bump Pisi Linux Community admin@pisilinux.org - 2015-07-30 - 1.5.3 + 2013-03-04 + 1.4.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libconfuse + https://github.com/libconfuse/libconfuse + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.library + Configuration file parser library. + Yapılandırma dosyası ayrıştırıcısı + libconfuse is a configuration file parser library. + libconfuse bir yapılandırma dosyası ayrıştırıcısıdır. + https://github.com/libconfuse/libconfuse/releases/download/v3.3/confuse-3.3.tar.xz + programming/library/libconfuse/pspec.xml + + + libconfuse + + /usr/lib + /usr/share/doc/confuse + /usr/share/locale + + + + libconfuse-devel + Development headers for libconfuse + libconfuse için geliştirme başlıkları + libconfuse-devel provides development headers for libconfuse. + libconfuse için geliştirme başlıklarını içerir. + + libconfuse + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2021-10-17 + 3.3 + Version bump. + fury + uglyside@yandex.ru + + + 2020-03-01 + 3.2.2 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-10 + 3.2.1 + Rebuild for new toolchain. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-17 + 3.2.1 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -338099,415 +299948,616 @@ cleaner, which will allow to add new features in the future. - avahi - http://avahi.org/ + libdatrie + https://linux.thai.net/~thep/datrie/datrie.html - PisiLinux Community - admins@pisilinux.org + fury + uglyside@yandex.ru - LGPLv2 - app:console - network.analyzer - Local network service discovery - Yerel ağ hizmeti bulma sistemi - avahi is a system which facilitates service discovery on a local network. This means that you can plug your laptop or computer into a network and instantly be able to view other people who you can chat with, find printers to print to or find files being shared. - avahi yerel ağ üzerindeki hizmetleri tespit etmeyi kolaylaştıran bir sistemdir. Bu sayede, bilgisayarınızı ağa dahil ettikten sonra anında mevcut bilgisayarları ve yazıcıları görebilir ve kullanabilirsiniz. - https://github.com/lathiat/avahi/releases/download/v0.7/avahi-0.7.tar.gz + LGPL-2.1 + library + programming.library + An Implementation of Double-Array Trie. + This is an implementation of double-array structure for representing trie, as proposed by Junichi Aoe. + https://linux.thai.net/pub/thailinux/software/libthai/libdatrie-0.2.13.tar.xz - gtk2-devel - gtk3-devel - libcap-devel - libdaemon-devel - gobject-introspection-devel - libepoxy-devel - at-spi2-core-devel - gdbm-devel - intltool - python3 + glibc-devel - network/analyzer/avahi/pspec.xml + programming/library/libdatrie/pspec.xml - avahi-glib - Libraries for easy use of avahi from glib applications - Glib uygulamalarında avahi kullanımını kolaylaştıran kitaplıklar + trietool - glib2 - avahi - avahi-libs - - - /usr/lib/libavahi-glib.* - /usr/lib/libavahi-gobject.* - - - - avahi-glib-devel - Development files for avahi-glib - avahi-glib için geliştirme dosyaları - - avahi-glib - avahi-devel - - - /usr/include/avahi-glib - /usr/include/avahi-gobject - /usr/lib/pkgconfig/avahi-glib.pc - /usr/lib/pkgconfig/avahi-gobject.pc - - - - avahi-ui - Gtk user interface library for Avahi - avahi için geliştirme dosyaları - - gdbm - gtk2 - glib2 - avahi-libs - avahi-glib - atk - cairo - pango - gdk-pixbuf - fontconfig - - - /usr/lib/libavahi-ui.so* - - - - avahi-ui-devel - Development files for avahi-ui - avahi-ui için geliştirme dosyaları - - gtk2-devel - avahi-ui - avahi-devel - avahi-glib-devel - - - /usr/include/avahi-ui - /usr/lib/pkgconfig/avahi-ui.pc - - - - avahi-ui-gtk3 - Gtk3 user interface library for Avahi - avahi-gtk3, Gtk3 user interface library for Avahi - - gdbm - glib2 - gtk3 - avahi-libs - avahi-glib - atk - cairo - pango - gdk-pixbuf - - - /usr/lib/libavahi-ui-gtk3.so* - - - - avahi-ui-gtk3-devel - Development files for avahi-ui-gtk3 - avahi-ui-gtk3 için geliştirme dosyaları - - gtk2-devel - avahi-ui-gtk3 - avahi-devel - avahi-glib-devel - gtk3-devel - - - /usr/lib/pkgconfig/avahi-ui-gtk3.pc - - - - avahi-ui-tools - UI tools for mDNS browsing - Grafiksel mDNS tarama araçları - - gtk3 - glib2 - avahi - avahi-ui - avahi-glib - avahi-ui-gtk3 - avahi-libs - gtk3 - - - /usr/lib/python*/site-packages - /usr/bin/b* - /usr/bin/avahi-discover* - /usr/bin/avahi-bookmarks - /usr/share/man/man1/b* - /usr/share/man/man1/avahi-discover* - /usr/share/man/man1/avahi-bookmarks* - /usr/share/avahi/interfaces - /usr/share/applications/b* - /usr/share/applications/avahi-discover.desktop - - - - avahi-compat-howl - Libraries for howl compatibility - howl uyumluluk kitaplıkları - - avahi - avahi-libs - - - /usr/lib/libhowl.so* - - - - avahi-compat-howl-devel - Development files for avahi-compat-howl - avahi-compat-howl için geliştirme dosyaları - - avahi-compat-howl - - - /usr/include/avahi-compat-howl - /usr/lib/pkgconfig/avahi-compat-howl.pc - /usr/lib/pkgconfig/howl.pc - - - - avahi-compat-libdns_sd - Libraries for Apple Bonjour mDNSResponder compatibility - libdns_sd uyumluluk kitaplıkları - - avahi - avahi-libs - - - /usr/lib/libdns_sd.so* - - - - avahi-compat-libdns_sd-devel - Development files for avahi-compat-libdns_sd - avahi-compat-libdns_sd için geliştirme dosyaları - - avahi-compat-libdns_sd - - - /usr/include/avahi-compat-libdns_sd - /usr/include/dns_sd.h - /usr/lib/pkgconfig/avahi-compat-libdns_sd.pc - /usr/lib/pkgconfig/libdns_sd.pc - - - - avahi-libs - Libraries needed to run programs that use avahi - Avahi kullanan uygulamaları çalıştırmak için gerekli kitaplıklar - - dbus - - - /usr/lib/libavahi-common.so* - /usr/lib/libavahi-client.so* - - - - avahi - - dbus - expat - libcap - libdaemon - avahi-libs - - - /usr/sbin/avahi-daemon - /usr/lib/libavahi-core.so* - /etc/avahi/avahi-daemon.conf - /etc/avahi/hosts - /etc/avahi/services/ssh.service - /etc/dbus-1/system.d/avahi-dbus.conf - /usr/share/avahi - /usr/share/dbus-1/interfaces/*.xml - /usr/share/dbus-1/system-services - /usr/lib/avahi/service* - /lib/systemd/system - /usr/share/locale - /usr/share/doc - /usr/share/man/man5/* - /usr/share/man/man8/avahi-daemon.* - /run/avahi-daemon - /usr/lib/girepository-1.0 - /usr/share/gir-1.0 - /usr/lib/tmpfiles.d/avahi.conf - - - System.Service - System.Package - - - avahi.conf - - - - avahi-autoipd - Link-local IPv4 address automatic configuration daemon (IPv4LL) - Link-local IPv4 adresi otomatik yapılandırma hizmeti (IPv4LL) - - libdaemon - - - /etc/avahi/avahi-autoipd.action - /usr/sbin/avahi-autoipd - /usr/share/man/man8/avahi-autoipd.* - /var/lib/avahi-autoipd - - - - avahi-dnsconfd - Configure local unicast DNS settings based on information published in mDNS - Yerel unicast DNS ayarlarını mDNS üzerinden gelen bilgilere göre yapılandırma hizmeti - - libdaemon - avahi - avahi-libs - - - /etc/avahi/avahi-dnsconfd.action - /usr/sbin/avahi-dnsconfd - /usr/share/man/man8/avahi-dnsconfd.* - - - System.Service - - - - avahi-tools - Command line tools for mDNS browsing and publishing - mDNS taramak ve yayınlamak için komut satırı araçları - - gdbm - avahi - avahi-libs + libdatrie /usr/bin - /usr/share/man/man1 + /usr/share/man/man1 + /usr/share/doc - avahi-devel - Development files for avahi - avahi için geliştirme dosyaları + libdatrie + + /usr/lib + + + + libdatrie-devel - avahi-libs + libdatrie - /usr/lib/pkgconfig/avahi-core.pc - /usr/lib/pkgconfig/avahi-client.pc - /usr/include/avahi-client - /usr/include/avahi-common - /usr/include/avahi-core + /usr/lib/pkgconfig + /usr/include - - 2021-07-02 - 0.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2020-01-07 - 0.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2019-03-24 - 0.7 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-30 - 0.7 - Rebuild New T. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-18 - 0.7 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.6.32 - Version Bump. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.6.31 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - 2014-05-20 - 0.6.31 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2022-04-14 + 0.2.13 + First build. + fury + uglyside@yandex.ru - libupnp - https://github.com/pupnp/pupnp + libdazzle + https://gitlab.gnome.org/GNOME/libdazzle - Pisilinux Community - admins@pisilinux.org + Berk Çakar + berk2238@hotmail.com - BSD - library - network.analyzer - Librairie UPnP. - Portable UPnP library. - Taşınabilir UPnP kitaplığı - Portabels UPnP Bibliothek - The Universal Plug and Play (UPnP) SDK for Linux provides support for building UPnP-compliant control points, devices, and bridges on Linux. - mirrors://sourceforge/pupnp/libupnp-1.14.12.tar.bz2 + GPLv3 + programming.misc + The libdazzle library is a companion library to GObject and Gtk+ + The libdazzle library is a companion library to GObject and Gtk+ + https://download.gnome.org/sources/libdazzle/3.44/libdazzle-3.44.0.tar.xz - kernel-headers + gtk3-devel + gobject-introspection-devel + gtk-doc + meson + vala-devel + glib2-devel + cairo-devel - network/analyzer/libupnp/pspec.xml + programming/library/libdazzle/pspec.xml - libupnp + libdazzle + The libdazzle library is a companion library to GObject and Gtk+ + + glib2 + gtk3 + cairo + pango + gdk-pixbuf + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/libdazzle*.so* + /usr/share/doc + /usr/share/vala + /usr/share/locale + + + + libdazzle-devel + + libdazzle + gtk3-devel + + + /usr/include/libdazzle-1.0 + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-03-21 + 3.44.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-22 + 3.42.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-25 + 3.40.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + libdispatch + https://apple.github.io/swift-corelibs-libdispatch/ + + Pisilinux Community + admin@pisilinux.org + + Apache-2 + library + programming.library + Grand Central Dispatch. + Grand Central Dispatch (GCD or libdispatch) provides comprehensive support for concurrent code execution on multicore hardware. + https://github.com/apple/swift-corelibs-libdispatch/archive/swift-5.4.2-RELEASE.tar.gz + + cmake + llvm-clang + llvm-clang-devel + + + avoid-libkqueue.patch + remove-werror.patch + + programming/library/libdispatch/pspec.xml + + + libdispatch + + llvm-libs + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libdispatch-devel + + libdispatch + + + /usr/include + + + + + 2021-09-12 + 5.4.2 + Version bump. + fury + uglyside@yandex.ru + + + 2021-02-24 + 5.3 + Rebuild for llvm. + Kamil Atlı + suvari@pisilinux.org + + + 2020-12-31 + 5.3 + First build. + fury + uglyside@yandex.ru + + + + + + libev + http://software.schmorp.de/pkg/libev.html + + Ertuğrul Erata + ertugrulerata@gmail.com + + BSD + GPLv2 + programming.library + Full-featured and high performance event loop library + FA high-performance event loop/event model with lots of feature + http://dist.schmorp.de/libev/libev-4.31.tar.gz + programming/library/libev/pspec.xml + + + libev + + /usr/lib + + + + libev-devel + Development files for libev + system.devel + + libev + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-03-01 + 4.31 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-09-12 + 4.24 + Rebuild for new toolchain. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-16 + 4.24 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libgdata + https://wiki.gnome.org/Projects/libgdata + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app + programming.library + GLib-based library for accessing online service APIs using the GData protocol + GLib-based library for accessing online service APIs using the GData protocol + GData protokolünü kullanarak çevrimiçi hizmet API'lerine erişmek için GLib tabanlı kitaplık + GData protokolünü kullanarak çevrimiçi hizmet API'lerine erişmek için GLib tabanlı kitaplık + https://download.gnome.org/sources/libgdata/0.18/libgdata-0.18.1.tar.xz + + meson + gcr-devel + vala-devel + glib2-devel + libsoup-devel + libxml2-devel + json-glib-devel + libuhttpmock-devel + gnome-online-accounts-devel + + programming/library/libgdata/pspec.xml + + + libgdata + + gcr + glib2 + libsoup + libxml2 + json-glib + libuhttpmock + gnome-online-accounts + + + /usr/lib + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/vala + /usr/share/doc + + + + libgdata-devel + Development files for libgdata + + libgdata + gcr-devel + glib2-devel + libsoup-devel + libxml2-devel + json-glib-devel + libuhttpmock-devel + gnome-online-accounts-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-06-02 + 0.18.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libgee + https://wiki.gnome.org/Projects/Libgee + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app + programming.library + A collection library providing GObject-based interfaces and classes for commonly used data structures + Sık kullanılan veri yapıları için GObject tabanlı arabirimler ve sınıflar sağlayan bir koleksiyon kitaplığı + Yaygın olarak kullanılan veri yapıları için GObject tabanlı arayüzler ve sınıflar sağlayan bir koleksiyon kütüphanesi + Yaygın olarak kullanılan veri yapıları için GObject tabanlı arayüzler ve sınıflar sağlayan bir koleksiyon kütüphanesi + mirrors://gnome/libgee/0.20/libgee-0.20.5.tar.xz + + vala-devel + glib2-devel + gobject-introspection-devel + + programming/library/libgee/pspec.xml + + + libgee + + glib2 + + + /usr/lib + /usr/share + /usr/share/vapi + /usr/share/doc + + + + libgee-devel + Development files for libgee + + glib2-devel + libgee + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-02-11 + 0.20.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 0.20.3 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-01-15 + 0.20.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libgepub + https://gitlab.gnome.org/GNOME/libgepub + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + programming.library + Simple library to read epub files using glib + glib kullaranak epub dosyalarını okumak için basit bir kitaplık + Simple library to read epub files using glib + glib kullaranak epub dosyalarını okumak için basit bir kitaplık + libgepub + mirrors://gnome/libgepub/0.6/libgepub-0.6.0.tar.xz + + gobject-introspection-devel + glib2-devel + gtk3-devel + libarchive-devel + glib2-devel + libxml2-devel + meson + webkit2gtk-devel + + programming/library/libgepub/pspec.xml + + + libgepub + + gtk3 + glib2 + libsoup + libxml2 + libarchive + webkit2gtk + + + /usr/lib/libgepub* + /usr/lib/girepository-1.0 + /usr/share/gir + /usr/share/doc + + + + libgepub-devel + libgepub için geliştirme dosyaları + + libgepub + glib2-devel + libsoup-devel + libxml2-devel + libarchive-devel + webkit2gtk-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-06-08 + 0.6.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libgfbgraph + https://wiki.gnome.org/Projects/GFBGraph + + Pisi Linux Admins + admin@pisilinux.org + + LGPLv3 + app + programming.library + GLib/GObject wrapper for the Facebook Graph API + GLib/GObject wrapper for the Facebook Graph API + Facebook Graph API için GLib/GObject sarmalayıcı + Facebook Graph API için GLib/GObject sarmalayıcı + https://download.gnome.org/sources/gfbgraph/0.2/gfbgraph-0.2.5.tar.xz + + gtk-doc + glib2-devel + librest-devel + libsoup-devel + libxml2-devel + json-glib-devel + gnome-online-accounts-devel + + programming/library/libgfbgraph/pspec.xml + + + libgfbgraph + + glib2 + librest + libsoup + libxml2 + json-glib + gnome-online-accounts + /usr/lib /usr/share/doc - libupnp-devel - Development files for libupnp. - libupnp için geliştirme dosyaları + libgfbgraph-devel + Development files for libgfbgraph - libupnp + libgfbgraph + glib2-devel + librest-devel + libsoup-devel + libxml2-devel + json-glib-devel + gnome-online-accounts-devel + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + libgfbgraph-docs + Development files for libgfbgraph + + libgfbgraph + + + /usr/share/gtk-doc + + + + + 2021-10-30 + 0.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-02 + 0.2.4 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libgringotts + https://directory.fsf.org/wiki/LibGringotts + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.library + A small, thread-safe C library. + Küçük ve evreli bir C kitaplığı + libgringotts is a small, thread-safe C library originally developed for Gringotts. Its purpose is to encapsulate data in an encrypted and compressed file. + libgringotts programcının belirli bir dosya biçiminde veri kaydetmeseine imkan veren küçük ve evreli bir C kitaplığıdır. Veriyi şifrelenmiş ve sıkıştırılmış bir şekilde kapsüllemeyi hedefler. + mirrors://sourceforge/gringotts.berlios/libgringotts-1.2.1.tar.bz2 + + libmcrypt-devel + mhash-devel + zlib-devel + + + fix-doc-dir.patch + + programming/library/libgringotts/pspec.xml + + + libgringotts + + libmcrypt + mhash + + + /usr/lib + /usr/share/doc/libgringotts + + + + libgringotts-devel + Development files for libgringotts + + libgringotts /usr/include @@ -338515,58 +300565,1060 @@ cleaner, which will allow to add new features in the future. - - 2022-04-16 - 1.14.12 - Version bump. + + 2020-12-20 + 1.2.1 + First release fury uglyside@yandex.ru - - 2021-07-02 - 1.14.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-13 - 1.14.0 - Ver. bump - fury - uglyside@yandex.ru - - - 2018-08-07 - 1.6.25 + + + + + libgudev + https://wiki.gnome.org/Projects/libgudev + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPL2 + library + programming.library + GObject bindings for Udev (Eudev) + libudev için GObject bağlayıcıları + GObject bindings for Udev (Eudev) + libgudev, ibudev için GObject bağlayıcıları içeren kitaplıklar sunar. + eudev + https://download.gnome.org/sources/libgudev/237/libgudev-237.tar.xz + + meson + gtk-doc + libxslt + vala-devel + python-six + docbook-xsl + eudev-devel + glib2-devel + gobject-introspection-devel + + programming/library/libgudev/pspec.xml + + + libgudev + GObject bindings for Udev (Eudev) + + eudev + glib2 + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/vala/vapi + /usr/share/gtk-doc + + + + libgudev-32bit + libgudev için 32-bit paylaşımlı kitaplıklar + libgudev-32bit, libgudev için 32-bit paylaşımlı kitaplıklar sunar. + emul32 + emul32 + + eudev-32bit + glib2-32bit + glib2-devel + + + eudev-32bit + glib2-32bit + + + /usr/lib32 + + + + libgudev-devel + Development files for libgudev + libgudev için geliştirme dosyaları + libgudev-devel, libgudev için geliştirme dosyalarını içerir. + system.devel + + eudev-devel + glib2-devel + libgudev + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include/gudev-1.0 + + + + + 2021-12-04 + 237 Rebuild. Mustafa Cinasal muscnsl@gmail.com - - 2017-03-02 - 1.6.25 - Version Bump. + + 2021-08-15 + 237 + Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2021-04-03 + 236 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-23 + 234 + Major version bump. Translations added. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-21 + 233 + Add 32 bit. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 233 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 232 + Version Bump + Pisi Linux Community + admin@pisilinux.org + - 2017-03-02 - 1.6.20 - Version Bump. + 2017-02-13 + 231 + Version Bump Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org 2016-06-09 - 1.6.19 + 230 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-31 - 1.6.19 + 2016-01-24 + 230 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libinih + https://github.com/benhoyt/inih + + Pisi Linux Admins + admin@pisilinux.org + + BSD + library + programming.library + A simple .INI file parser written in C + A simple .INI file parser written in C + C ile yazılmış basit bir .INI dosyası ayrıştırıcısı + C ile yazılmış basit bir .INI dosyası ayrıştırıcısı + https://github.com/benhoyt/inih/archive/r53.tar.gz + + meson + + programming/library/libinih/pspec.xml + + + libinih + + libgcc + + + /usr/lib + /usr/share + /usr/share/doc + + + + libinih-devel + Development files for libinih + + libinih + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2021-02-27 + 53 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libjcat + https://github.com/hughsie/libjcat + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.library + Library for reading and writing Jcat files + Library for reading and writing Jcat files + Jcat dosyalarını okumak ve yazmak için kitaplık + Jcat dosyalarını okumak ve yazmak için kitaplık + https://github.com/hughsie/libjcat/archive/refs/tags/0.1.8.tar.gz + + meson + gtk-doc + help2man + vala-devel + glib2-devel + gpgme-devel + gnutls-devel + json-glib-devel + libgpg-error-devel + gobject-introspection-devel + + programming/library/libjcat/pspec.xml + + + libjcat + + glib2 + gpgme + gnutls + json-glib + libgpg-error + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share/vala + /usr/share/man + /usr/share/installed-tests + /usr/share/doc + + + + libjcat-devel + Development files for libjcat + + glib2-devel + gnutls-devel + json-glib-devel + libjcat + + + /usr/include + /usr/share/gir-1.0 + /usr/lib/pkgconfig + + + + libjcat-docs + Development files for libjcat + + libjcat + + + /usr/share/gtk-doc + + + + + 2021-10-20 + 0.1.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libmaxminddb + https://maxmind.github.io/libmaxminddb + + Pisi Linux Admins + admins@pisilinux.org + + Apache-2.0 + library + programming.library + C library for the MaxMind DB file format + The libmaxminddb library provides a C library for reading MaxMind DB files, including the GeoIP2 databases from MaxMind. + https://github.com/maxmind/libmaxminddb/releases/download/1.6.0/libmaxminddb-1.6.0.tar.gz + + glibc-devel + geoip-devel + cmake + + programming/library/libmaxminddb/pspec.xml + + + libmaxminddb + + /usr/bin + /usr/lib + /usr/share/doc + + + + libmaxminddb-devel + + libmaxminddb + + + /usr/include + + + + + 2021-08-10 + 1.6.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + libmediaart + https://gitlab.gnome.org/GNOME/libmediaart + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + programming.library + Library for managing media art caches + ortam sanat önbelleğini yönetmek için bir kitaplık + Library for managing media art caches + ortam sanat önbelleğini yönetmek için bir kitaplık + libmediaart + mirrors://gnome/libmediaart/1.9/libmediaart-1.9.6.tar.xz + + glib2-devel + gdk-pixbuf-devel + gobject-introspection-devel + gtk-doc + meson + vala-devel + + programming/library/libmediaart/pspec.xml + + + libmediaart + + glib2 + gdk-pixbuf + + + /usr/bin + /usr/lib/libmediaart* + /usr/lib/girepository-1.0 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/vala + + + + libmediaart-devel + libmediaart için geliştirme dosyaları + + libmediaart + glib2-devel + gdk-pixbuf-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-06-02 + 1.9.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-10 + 1.9.5 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libnih + https://launchpad.net/libnih + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL + app:library + programming.library + Small library for C application development + C uygulama geliştirme için küçük bir kütüphane + Small library for C application development. + C uygulama geliştirme için küçük bir kütüphane. + https://launchpad.net/libnih/1.0/1.0.3/+download/libnih-1.0.3.tar.gz + + dbus-devel + expat-devel + + programming/library/libnih/pspec.xml + + + libnih + + dbus + expat + + + /usr/bin + /usr/share/man + /usr/share/aclocal + /usr/lib/ + + + + libnih-devel + + libnih + dbus-devel + expat-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-01 + 1.0.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.0.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-13 + 1.0.3 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 1.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-27 + 1.0.3 + First release + Aydın Demirel + aydin.demirel@pisilinux.org + + + + + + libosinfo + https://libosinfo.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL + LGPL + library + programming.library + GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support + GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support + GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support + GObject based library API for managing information about operating systems, hypervisors and the (virtual) hardware devices they can support + https://releases.pagure.org/libosinfo/libosinfo-1.9.0.tar.xz + + meson + gtk-doc + intltool + vala-devel + python3-six + docbook-xsl + glib2-devel + libxslt-devel + libxml2-devel + libsoup-devel + gobject-introspection-devel + + programming/library/libosinfo/pspec.xml + + + libosinfo + + glib2 + libgcc + libxml2 + libxslt + libsoup + + + /usr/bin + /usr/lib + /usr/share + /usr/share/vala + /usr/share/gir-1.0 + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + libosinfo-devel + osinfo headers. + + glib2-devel + libosinfo + + + /usr/include + /usr/lib/pkgconfig + + + + libosinfo-docs + + libosinfo + + + /usr/share/gtk-doc + + + + + 2021-1-27 + 1.9.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2020-03-01 + 1.7.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2019-03-18 + 1.4.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libportal + https://github.com/flatpak/libportal + + Berk Çakar + berk2238@hotmail.com + + GPLv3 + library + programming.library + GIO-style async APIs for most Flatpak portals. + GIO-style async APIs for most Flatpak portals. + https://github.com/flatpak/libportal/releases/download/0.6/libportal-0.6.tar.xz + + glib2-devel + git + gtk-doc + meson + vala + gtk3-devel + gtk4-devel + qt5-base-devel + qt5-x11extras-devel + glib2-devel + gi-docgen + gobject-introspection-devel + + programming/library/libportal/pspec.xml + + + libportal + + glib2 + git + gtk-doc + gtk3 + gtk4 + qt5-base + qt5-x11extras + + + /etc/gconf + /usr/lib + /usr/bin + /usr/share/locale + /usr/share/doc + /usr/share/libportal + /usr/share/glib-2.0 + /usr/share/vala + /usr/share/icons + + + + libportal-docs + libportal reference documents + data:doc + + /usr/share/doc/libportal-1 + + + + libportal-devel + Development files for libportal + + libportal + gtk3-devel + gtk4-devel + qt5-base-devel + qt5-x11extras-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2022-03-22 + 0.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-18 + 0.4 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + libpsl + https://github.com/rockdaboot/libpsl + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.library + Public Suffix List library + Public Suffix List library + Genel Ek Listesi kitaplığı + Genel Ek Listesi kitaplığı + https://github.com/rockdaboot/libpsl/releases/download/libpsl-0.21.0/libpsl-0.21.0.tar.gz + + gtk-doc + glib2-devel + icu4c-devel + python-six + gettext-devel + libidn2-devel + libxslt-devel + libunistring-devel + + programming/library/libpsl/pspec.xml + + + libpsl + + libidn2 + libunistring + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libpsl-devel + Development files for libpsl + + libpsl + + + /usr/include + /usr/lib/pkgconfig + + + + libpsl-docs + Development files for libpsl + + libpsl + + + /usr/share/gtk-doc + + + + + 2020-01-28 + 0.21.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-08-03 + 0.21.0 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-09-04 + 0.20.2 + Version Bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-03-04 + 0.20.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libptytty + http://software.schmorp.de/pkg/libptytty.html + + fury + uglyside@yandex.ru + + GPL-2 + library + programming.library + OS independent and secure pty/tty and utmp/wtmp/lastlog handling. + Libptytty is a small library that offers pseudo-tty management in an OS-independent way. It was created out of frustration over the many differences of pty/tty handling in different operating systems for the use inside "rxvt-unicode". + https://ftp.osuosl.org/pub/blfs/conglomeration/libptytty/libptytty-2.0.tar.gz + + cmake + + programming/library/libptytty/pspec.xml + + + libptytty + + libgcc + + + /usr/lib + /usr/share/man/man3 + /usr/share/doc/libptytty + + + + libptytty-devel + + libptytty + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-21 + 2.0 + First build. + fury + uglyside@yandex.ru + + + + + + libqaccessibilityclient + https://www.kde.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.library + Helper library to make writing accessibility tools easier + Helper library to make writing accessibility tools easier + Erişilebilirlik araçlarını yazmayı kolaylaştırmak için yardımcı kitaplık + Erişilebilirlik araçlarını yazmayı kolaylaştırmak için yardımcı kitaplık + https://download.kde.org/stable/libqaccessibilityclient/libqaccessibilityclient-0.4.1.tar.xz + + extra-cmake-modules + qt5-base-devel + + programming/library/libqaccessibilityclient/pspec.xml + + + libqaccessibilityclient + + libgcc + qt5-base + + + /usr/lib + /usr/share/doc + + + + libqaccessibilityclient-devel + Development files for libqaccessibilityclient + + libqaccessibilityclient + + + /usr/include + /usr/lib/cmake + + + + + 2021-10-15 + 0.4.1 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + libsass + https://github.com/sass/libsass + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.library + LibSass is a C++ port of the original Ruby Sass CSS compiler with a C API. + Sass CSS ön işlemcisinin C uygulaması (kütüphane) + C implementation of Sass CSS preprocessor (library) + C implementation of Sass CSS preprocessor (library) + https://github.com/sass/libsass/archive/3.6.5.tar.gz + programming/library/libsass/pspec.xml + + + libsass + + libgcc + + + /usr/lib + /usr/share + /usr/share/doc + + + + libsass-devel + Development files for libsass + + libsass + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-08-02 + 3.6.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-01 + 3.6.3 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-01-17 + 3.5.5 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libsignon-glib + https://gitlab.com/accounts-sso/libsignon-glib + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + programming.library + Authorization and authentication management for glib + libsignon-glib provides authorization and authentication management for GLib applications. + https://gitlab.com/accounts-sso/libgsignon-glib/-/archive/2.4.1/libgsignon-glib-2.4.1.tar.gz + + meson + glib2-devel + gobject-introspection-devel + signon-devel + gtk-doc + + programming/library/libsignon-glib/pspec.xml + + + libsignon-glib + + gobject-introspection + glib2 + signon + + + /usr/bin + /usr/lib/ + /usr/share/gir-1.0 + /usr/share/vala/vapi/signon.vapi + + + + libsignon-glib-devel + Development files for libsignon-glib + libsignon-glib için kütüphaneler + libsignon-glib geliştirme paketi, libsignon-glib için geliştirme dosyaları sunar. + + libsignon-glib + glib2-devel + signon-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libsignon-glib-doc + Document files for libsignon-glib + + libsignon-glib + + + /usr/share/doc + /usr/share/gtk-doc/html + + + + + 2020-03-04 + 2.4.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-07 + 1.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-06 + 1.13 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-29 + 1.13 First release Alihan Öztürk alihan@pisilinux.org @@ -338575,94 +301627,3171 @@ cleaner, which will allow to add new features in the future. - libpcap - http://www.tcpdump.org/ + libthai + https://linux.thai.net/projects/libthai/ + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + programming.library + LibThai is a set of Thai language support routines aimed to ease developers’ tasks to incorporate Thai language support in their applications. + It includes important Thai-specific functions e.g. word breaking, input and output methods as well as basic character and string supports. + https://linux.thai.net/pub/thailinux/software/libthai/libthai-0.1.29.tar.xz + + doxygen + trietool + libdatrie-devel + + programming/library/libthai/pspec.xml + + + libthai + + libdatrie + + + /usr/lib + /usr/share/libthai/thbrk.tri + + + + libthai-devel + + libthai + + + /usr/lib/pkgconfig + /usr/include + + + + libthai-html-doc + + /usr/share/doc + /usr/share/doc/libthai/html + + + + + 2022-04-14 + 0.1.29 + First build + fury + uglyside@yandex.ru + + + + + + libunibreak + http://vimgadgets.sourceforge.net/libunibreak/ + + Pisi Linux Community + admin@pisilinux.org + + zlib + library + programming.library + An Implementation of the line breaking and word breaking algorithms + Satır kırılma ve kelime kırılma algoritmalarının bir uygulaması + Libunibreak is an implementation of the line breaking and word breaking algorithms as described in Unicode Standard Annex 14 and Unicode Standard Annex 29 + libunibreak Unicode Standard Annex 14 ve Unicode Standard Annex 29 içinde tanımlandığı gibi satır kırılma ve kelime kırılma algoritmalarının bir uygulamasıdır. + https://github.com/adah1972/libunibreak/releases/download/libunibreak_5_0/libunibreak-5.0.tar.gz + programming/library/libunibreak/pspec.xml + + + libunibreak + + /usr/lib + /usr/share/doc + + + + libunibreak-devel + + libunibreak + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-22 + 5.0 + First release. + Pisi Linux Community + admin@pisilinux.org + + + + + + liburcu + http://liburcu.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.library + Userspace RCU (read-copy-update) library + Userspace RCU (read-copy-update) library + Userspace RCU (read-copy-update) library + Userspace RCU (read-copy-update) library + https://lttng.org/files/urcu/userspace-rcu-0.13.0.tar.bz2 + programming/library/liburcu/pspec.xml + + + liburcu + + /usr/lib + /usr/share/doc + + + + liburcu-devel + Development files for liburcu + + liburcu + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-21 + 0.13.0 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + liburing + https://git.kernel.dk/cgit/liburing/ + + fury + uglyside@yandex.ru + + GPL + LGPL + MIT + library + programming.library + This is the io_uring library, liburing. + liburing provides helpers to setup and teardown io_uring instances, and also a simplified interface for applications that don't need (or want) to deal with the full kernel side implementation. + https://git.kernel.dk/cgit/liburing/snapshot/liburing-2.1.tar.bz2 + programming/library/liburing/pspec.xml + + + liburing + + /usr/lib + /usr/share/man + /usr/share/doc + + + + liburing-devel + + liburing + + + /usr/lib/pkgconfig + /usr/include + + + + + 2021-09-15 + 2.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-10 + 2.0 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-13 + 0.7 + First build. + fury + uglyside@yandex.ru + + + + + + libwlocate + https://sourceforge.net/projects/libwlocate/ + + Alihan Öztürk + alihan@pisilinux.org + + GPLv3 + library + programming.library + A shared library that can be used for location-based services + libwlocate is a shared library that can be used for location-based services. + http://sourceforge.net/projects/pisilinux/files/source/libwlocate-code-213bcf6fb073d968af5e849a5c1828603f69e5ac.tar.gz + + wireless-tools-devel + + programming/library/libwlocate/pspec.xml + + + libwlocate + A shared library that can be used for location-based services + + wireless-tools + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libwlocate-devel + Development files for libwlocate + + libwlocate + + + /usr/include + + + + + 2020-03-04 + 0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-04 + 0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-11 + 0.2 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-03 + 0.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libwpe + https://wpewebkit.org + + Pisi Linux Admins + admin@pisilinux.org + + custom + library + programming.library + General-purpose library for WPE WebKit + General-purpose library for WPE WebKit + WPE WebKit için genel amaçlı kitaplık + WPE WebKit için genel amaçlı kitaplık + https://github.com/WebPlatformForEmbedded/libwpe/archive/1.9.1.tar.gz + + meson + libxkbcommon-devel + mesa-devel + + + 0447b7a.patch + + programming/library/libwpe/pspec.xml + + + libwpe + + libgcc + libxkbcommon + + + /usr/lib + /usr/share + /usr/share/doc + + + + libwpe-devel + Development files for libwpe + + libwpe + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-02-27 + 1.9.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libxdg-basedir + https://github.com/devnev/libxdg-basedir + + fury + uglyside@yandex.ru + + MIT + library + programming.library + libxdg-basedir is an implementation of the XDG Base Directory specifications. + libxdg-basedir is an implementation of the XDG Base Directory specifications. + https://github.com/devnev/libxdg-basedir/archive/refs/tags/libxdg-basedir-1.2.3.tar.gz + programming/library/libxdg-basedir/pspec.xml + + + libxdg-basedir + + /usr/lib + /usr/share/doc + + + + libxdg-basedir-devel + + libxdg-basedir + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-06-19 + 1.2.3 + Version bump. + fury + uglyside@yandex.ru + + + 2021-01-23 + 1.2.2 + First Beta build. + fury + uglyside@yandex.ru + + + + + + libxml++26 + https://libxmlplusplus.github.io/libxmlplusplus/ + + Pisilinux Community + admins@pisilinux.org + + LGPL-2.1 + library + programming.library + C++ wrapper for the libxml2 XML parser library. + Old ABI. Uses Glib::ustring from the glibmm-2.4 ABI. + https://download.gnome.org/sources/libxml++/2.42/libxml++-2.42.1.tar.xz + + cmake + meson + glibmm-devel + libxml2-devel + libsigc++-devel + + programming/library/libxml++26/pspec.xml + + + libxml++26 + + libgcc + glibmm + libxml2 + + + /usr/lib + /usr/share/doc + + + + libxml++26-devel + + libxml++26 + glibmm-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/libxml++-2.6 + + + + + 2021-12-18 + 2.42.1 + Fixed. + fury + uglyside@yandex.ru + + + + + + liri-cmake-shared + https://liri.io/ PisiLinux Community admins@pisilinux.org BSD library - network.analyzer - A system-independent library for user-level network packet capture - Kullanıcı seviyesinde ağ paketi yakalamak için bir sistem bağımsız kitaplığı - libpcap (Packet CAPture) fourni un cadre de développement portable pour la surveillance réseau de bas niveau. On peut l'utiliser pour collecter des statistiques réseau, surveiller la sécurité, corriger le réseau, etc. - libpcap (Packet CAPture) provides a portable framework for low-level network monitoring. Applications include network statistics collection, security monitoring, network debugging, etc. - libpcap (Packet CAPture) düşük-seviye ağların izlenmesi için kullanılan bir kitaplıktır. Ağ istatistikleri, güvenlik izleyicisi, ağ hata gözleme gibi uygulamalar genellikle bu kitaplığı kullanır. - libpcap (Packet CAPture) facilita un framework portable para monitoreo de redes a a bajo nivel. Aplicaciones abarcan sistemas de estadísticas de red, monitoreo de seguridad, depuración de red, etc. - http://www.tcpdump.org/release/libpcap-1.10.1.tar.gz + programming.library + Extra imports and modules for Cmake + Extra imports and modules for Cmake + Extra imports and modules for Cmake + Extra imports and modules for Cmake + https://github.com/lirios/cmake-shared/releases/download/v1.1.0/liri-cmake-shared-1.1.0.tar.xz - bluez-libs-devel + extra-cmake-modules - network/analyzer/libpcap/pspec.xml + programming/library/liri-cmake-shared/pspec.xml - libpcap + liri-cmake-shared + + /usr/share + /usr/share/doc + + + + + 2020-04-04 + 1.1.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + lucene++ + https://github.com/luceneplusplus/LucenePlusPlus + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + Apache-2.0 + library + programming.library + An up to date C++ port of the popular Java Lucene library, a high-performance, full-featured text search engine. + Lucene++ is an up to date C++ port of the popular Java Lucene library, a high-performance, full-featured text search engine. + https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_3.0.8.tar.gz + + cmake + boost-devel + + + fix_various_cmake_issues.patch + use_correct_libdir.patch + fix_typo.patch + + programming/library/lucene++/pspec.xml + + + lucene++ + + boost + libgcc + /usr/lib /usr/share/doc - /usr/share/man - libpcap-devel - Development files for libpcap - libpcap için geliştirme dosyaları + lucene++-devel - libpcap + lucene++ + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-27 + 3.0.8 + Rebuild boost. + fury + uglyside@yandex.ru + + + 2021-04-29 + 3.0.8 + Version bump. + fury + uglyside@yandex.ru + + + 2020-11-26 + 3.0.7 + First Release. + fury + uglyside@yandex.ru + + + + + + md4c + https://github.com/mity/md4c + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.library + C Markdown parser + C Markdown parser + C Markdown parser + C Markdown parser + https://github.com/mity/md4c/archive/release-0.4.2.tar.gz + + cmake + + programming/library/md4c/pspec.xml + + + md4c + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + md4c-devel + Development files for md4c + + md4c + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2020-01-15 + 0.4.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mhash + http://mhash.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.library + A uniform interface to several hash algorithms. + Hash algoritmaları için ortak arayüz + mhash is a free library which provides a uniform interface to a large number of hash algorithms. + mhash, çeşitli hash algoritmalarını kolayca kullanabilmek için ortak arayüz sağlayan özgür bir kitaplıktır. + mirrors://sourceforge/mhash/mhash-0.9.9.9.tar.bz2 + + mhash-0.9.9.9-keygen_test_fix.patch + + programming/library/mhash/pspec.xml + + + mhash + + /usr/lib + /usr/share/doc + + + + mhash-devel + Development files for mhash + mhash paketine ait geliştirme dosyaları + + mhash - /usr/bin/pcap-config /usr/include /usr/share/man/man3 - - 2021-07-02 - 1.10.1 + + 2020-12-20 + 0.9.9.9 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + msgpack-c + https://msgpack.org/ + + fury + uglyside@yandex.ru + + Boost + library + programming.library + It's like JSON but smaller and faster. + MessagePack is an efficient binary serialization format, which lets you exchange data among multiple languages like JSON, except that it's faster and smaller. Small integers are encoded into a single byte and short strings require only one extra byte in addition to the strings themselves. + https://github.com/msgpack/msgpack-c/releases/download/c-4.0.0/msgpack-c-4.0.0.tar.gz + + cmake + + programming/library/msgpack-c/pspec.xml + + + msgpack-c + + /usr/lib + + + + msgpack-c-devel + + msgpack-c + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-04-14 + 4.0.0 + First build. + fury + uglyside@yandex.ru + + + + + + pisi-timedate + https://github.com/friberk/pisi-timedate + + Berk Çakar + berk2238@hotmail.com + + GPLv3 + programming.library + timedated1 interface implementation for Pisi Linux (or any other non-systemd distributions) + timedated1 interface implementation for Pisi Linux (or any other non-systemd distributions) + https://github.com/friberk/pisi-timedate/archive/refs/tags/1.2.0.tar.gz + + dbus-devel + glib2-devel + + programming/library/pisi-timedate/pspec.xml + + + pisi-timedate + timedated1 interface implementation for Pisi Linux (or any other non-systemd distributions) + + dbus + glib2 + + + /etc/dbus-1 + /usr/libexec + /usr/share/dbus-1 + /usr/share/doc + + + + + 2021-04-17 + 1.2.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + pystring + https://github.com/imageworks/pystring + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.library + Pystring is a collection of C++ functions which match the interface and behavior of python + Pystring is a collection of C++ functions which match the interface and behavior of python + Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur. + Pystring, python'un arayüzü ve davranışıyla eşleşen bir C++ işlevleri topluluğudur. + https://github.com/imageworks/pystring/archive/refs/heads/master.zip + + fedora/CMakeLists.txt + + + cmake + + programming/library/pystring/pspec.xml + + + pystring + + libgcc + + + /usr/lib + /usr/share/doc + + + + pystring-devel + Development files for pystring + + pystring + + + /usr/include + + + + + 2021-06-30 + 1.1.3 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + qtutilities + https://github.com/Martchus/qtutilities + + fury + uglyside@yandex.ru + + GPL-2 + library + programming.library + Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models. + Common Qt related C++ classes and routines used by my applications such as dialogs, widgets and models. + https://github.com/Martchus/qtutilities/archive/refs/tags/v6.6.0.tar.gz + + cmake + doxygen + qt5-linguist + qt5-base-devel + cpp-utilities-devel + + programming/library/qtutilities/pspec.xml + + + qtutilities + + libgcc + qt5-base + cpp-utilities + + + /usr/lib + /usr/share + /usr/share/doc + + + + qtutilities-devel + + qtutilities + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/qtutilities/cmake + + + + + 2022-04-14 + 6.6.0 + Version bump + fury + uglyside@yandex.ru + + + 2022-01-18 + 6.5.3 + Version bump + fury + uglyside@yandex.ru + + + 2021-11-04 + 6.5.0 + First build + fury + uglyside@yandex.ru + + + + + + range-v3 + https://github.com/ericniebler/range-v3 + + Safa Arıman + safaariman@pisilinux.org + + BSLv1 + library + programming.library + Range algorithms, views, and actions for C++11/14/17 + Range algorithms, views, and actions for C++11/14/17 + Range-v3 is a generic library that augments the existing standard library with facilities for working with ranges. A range can be loosely thought of a pair of iterators. This library provides a full implementation of all the standard algorithms with range-based overloads for convenience. + Range-v3 is a generic library that augments the existing standard library with facilities for working with ranges. A range can be loosely thought of a pair of iterators. This library provides a full implementation of all the standard algorithms with range-based overloads for convenience. + https://github.com/ericniebler/range-v3/archive/0.11.0.tar.gz + + cmake + + programming/library/range-v3/pspec.xml + + + range-v3-devel + + /usr/include + /usr/lib/cmake + /usr/share/doc + + + + + 2021-09-24 + 0.11.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-02-01 - 1.9.1 + + 2020-03-18 + 0.10.0 + First release + Safa Arıman + safaariman@pisilinux.org + + + + + + rapidjson + http://rapidjson.org/ + + Kamil Atlı + suvari@pisilinux.org + + MIT + app + programming.library + A fast JSON parser/generator for C++ with both SAX/DOM style API. + Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu + A fast JSON parser/generator for C++ with both SAX/DOM style API. + Hem SAX/DOM stili API ile C++ için hızlı bir JSON ayrıştırıcı/oluşturucu + https://github.com/Tencent/rapidjson/archive/refs/tags/v1.1.0.tar.gz + + cmake + + programming/library/rapidjson/pspec.xml + + + rapidjson + + /usr/lib + /usr/share/doc + + + + rapidjson-devel + Development files for rapidjson + rapidjson için geliştirme dosyaları + + rapidjson + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + + + 2022-05-01 + 1.1.0 + First release. + Kamil Atlı + suvari@pisilinux.org + + + + + + re2 + https://github.com/google/re2 + + Mustafa Cinasal + muscnsl@gmail.com + + BSD + library + programming.library + Fast, safe, thread-friendly regular expression engine + Fast, safe, thread-friendly regular expression engine + Fast, safe, thread-friendly regular expression engine + Fast, safe, thread-friendly regular expression engine + https://github.com/google/re2/archive/2020-11-01.tar.gz + programming/library/re2/pspec.xml + + + re2 + + libgcc + + + /usr/lib + /usr/share + /usr/share/doc + + + + re2-devel + Development files for re2 + + re2 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-12-18 + 20201101 Version bump. - Blue DeviL + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 20200303 + version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-19 + 20180801 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-21 + 20180401 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + rinutils + https://www.shlomifish.org/open-source/projects/ + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.library + A C11 / gnu11 utilities C library + Bir C11 / gnu11 aracları bulunan C kitaplığı + This is a set of C headers containing macros and static functions that are expected to work on Unix-like systems and MS Windows that have been extracted from Shlomi Fish´s projects. + Shlomi Fish'in projelerinden çıkartılmış hem *nix hem ms windows platformlarında çalışması beklenen C başlık makro ve durağan yordamları içeren C kitaplığıdır. + https://github.com/shlomif/rinutils/archive/0.8.0.tar.gz + + cmake + + programming/library/rinutils/pspec.xml + + + rinutils + A C11 / gnu11 utilities C library + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + rinutils-devel + Development files for rinutils + + rinutils + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-05-10 + 0.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 0.2.0 + First Pisi Release + Blue Devil bluedevil@sctzine.com + + + + + sassc + https://github.com/sass/sassc + + PisiLinux Community + admins@pisilinux.org + + MIT + app + programming.library + Sass CSS ön işlemcisinin C uygulaması + Sass CSS ön işlemcisinin C uygulamas + C implementation of Sass CSS preprocessor + C implementation of Sass CSS preprocessor + https://github.com/sass/sassc/archive/3.6.2.tar.gz + + libsass-devel + + programming/library/sassc/pspec.xml + + + sassc + + libsass + + + /usr/bin + /usr/share/doc + + + + + 2021-08-02 + 3.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-04 + 3.6.1 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2019-01-17 + 3.5.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + signon + https://code.google.com/p/accounts-sso + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + programming.library + A framework for centrally storing authentication credentials + Single Sign-On is a framework for centrally storing authentication credentials and handling authentication on behalf of applications as requested by applicationsIt consists of + a secure storage of login credentials (for example usernames and passwords), plugins for different authentication systems and a client library for applications to communicate with this system. + https://gitlab.com/accounts-sso/signond/-/archive/VERSION_8.60/signond-VERSION_8.60.tar.bz2 + + qt5-base-devel + doxygen + + + qt5.5.diff + use_keyring.patch + + programming/library/signon/pspec.xml + + + signon + + qt5-base + libgcc + doxygen + + + /usr/bin + /usr/lib + /etc + /usr/share/dbus-1 + + + + signon-devel + Development files for signon + Signon için kütüphaneler + Signon geliştirme paketi, Signon için geliştirme dosyaları sunar. + + signon + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + signon-docs + Help files and API documents for signon + data:doc + + signon + + + /usr/share/doc + + + + + 2020-03-04 + 8.60 + version bump + Kamil Atlı + suvari@pisilinux.org + - 2018-08-13 - 1.8.1 - Rebuild New T. + 2019-01-08 + 8.58 + Rebuild qt5. Mustafa Cinasal muscnsl@gmail.com + 2018-08-15 + 8.58 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + 2017-05-15 - 1.8.1 + 8.58 Release Bump Kamil Atlı suvari@pisilinux.org + + 2016-06-10 + 8.58 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-14 + 8.58 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + spdlog + https://spdlog.docsforge.com/ + + fury + uglyside@yandex.ru + + MIT + library + programming.library + Fast C++ logging library. + Very fast, header-only/compiled, C++ logging library. + https://github.com/gabime/spdlog/archive/refs/tags/v1.9.2.tar.gz + + cmake + fmt-devel + + programming/library/spdlog/pspec.xml + + + spdlog + + fmt + libgcc + + + /usr/lib + + + + spdlog-devel + + fmt-devel + spdlog + + + /usr/lib/cmake + /usr/include/spdlog + /usr/lib/pkgconfig + + + + + 2021-12-14 + 1.9.2 + First build. + fury + uglyside@yandex.ru + + + + + + squashfuse + https://github.com/vasi/squashfuse + + Pisi Linux Admins + admin@pisilinux.org + + custom + app + programming.library + FUSE filesystem to mount squashfs archives + FUSE filesystem to mount squashfs archives + FUSE filesystem to mount squashfs archives + FUSE filesystem to mount squashfs archives + https://github.com/vasi/squashfuse/archive/refs/tags/0.1.104.tar.gz + + xz-devel + lz4-devel + lzo-devel + zlib-devel + zstd-devel + fuse-devel + squashfs-tools + + programming/library/squashfuse/pspec.xml + + + squashfuse + + xz + lz4 + lzo + zlib + zstd + fuse + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + squashfuse-devel + Development files for squashfuse + + squashfuse + xz-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-05-19 + 0.1.104 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + stellarsolver + https://github.com/rlancaste/stellarsolver + + Kamil Atlı + suvari@pisilinux.org + + GPL3 + library + app:console + programming.library + The Cross Platform Sextractor and Astrometry.net-Based Internal Astrometric Solver + Çapraz platform Sextractor ve Astrometry.net tabanlı dahili astrometrik çözücü + The Cross Platform Sextractor and Astrometry.net-Based Internal Astrometric Solver. + Çapraz platform Sextractor ve Astrometry.net tabanlı dahili astrometrik çözücü. + https://github.com/rlancaste/stellarsolver/archive/2.2.tar.gz + + cmake + gsl-devel + wcslib-devel + cfitsio-devel + qt5-base-devel + + programming/library/stellarsolver/pspec.xml + + + stellarsolver + + gsl + libgcc + wcslib + cfitsio + qt5-base + + + /usr/share/doc + /usr/lib/libstellarsolver.so + /usr/lib/libstellarsolver.so.2 + /usr/lib/libstellarsolver.so.2.2 + + + + stellarsolver-devel + Development files for stellarsolver + stellarsolver için geliştirme dosyaları + + stellarsolver + + + /usr/lib/pkgconfig/stellarsolver.pc + /usr/lib/cmake/StellarSolver + /usr/include/libstellarsolver + + + + + 2022-05-08 + 2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-16 + 1.5 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + swig + http://www.swig.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3+ + BSD + app:console + library + programming.library + Connects C/C++/Objective C to some high-level programming languages + Basitleştirilmiş arayüz oluşturucu + Simplified Wrapper and Interface Generator (Générateur d'interface de scripts d'enrobage simplifié), SWIG est un outil de développement qui connecte des programmes écrits en C et C++ avec divers langages de programmation de haut niveau. SWIG est utilisé avec différents type de langages incluant les langages de script habituels tels que Perl, PHP, Python, Tcl, Ruby. + Simplified Wrapper and Interface Generator, SWIG is a software development tool that connects programs written in C and C++ with a variety of high-level programming languages. SWIG is used with different types of languages including common scripting languages such as Perl, PHP, Python, Tcl, Ruby and PHP + SWIG, C ve C++ ile yazılmış uygulamaları çeşitli üst düzey programlama dilleri ile bağlayan bir yazılım geliştirme aracıdır. SWIG, genel betik dilleri olan Perl, PHP, Python, Tcl, Ruby gibi farklı diller ile kullanılır. + mirrors://sourceforge/swig/swig/swig-4.0.2/swig-4.0.2.tar.gz + + perl + zlib-devel + ruby-devel + boost-devel + libpcre-devel + python3-devel + + + swig-Upgrade-to-support-newer-NodeJS.patch + + programming/library/swig/pspec.xml + + + swig + Connects C/C++/Objective C to some high-level programming languages + + zlib + libgcc + libpcre + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/swig + + + + + 2021-03-11 + 4.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-11 + 4.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 4.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 4.0.1 + Rebuild due to new ruby version + Blue Devil + bluedevil@sctzine.com + + + 2020-01-09 + 4.0.1 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-07-25 + 3.0.12 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-22 + 3.0.11 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + - 2016-06-09 - 1.8.1 + 2017-01-28 + 3.0.11 Version Bump Kamil Atlı suvari@pisilinux.org 2016-06-09 - 1.7.4 + 3.0.2 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-25 - 1.7.4 + 2014-12-22 + 3.0.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + template-glib + https://gitlab.gnome.org/GNOME/template-glib + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + programming.library + template-glib is a library for template expansion which supports calling into GObject Introspection from templates. + Template-GLib is a library to help you generate text based on a template and user defined state. Template-GLib does not use a language runtime, so it is safe to use from any GObject-Introspectable language. + https://download.gnome.org/sources/template-glib/3.34/template-glib-3.34.1.tar.xz + + meson + vala-devel + glib2-devel + gobject-introspection-devel + + programming/library/template-glib/pspec.xml + + + template-glib + library + + glib2 + gobject-introspection + + + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/share/doc + /usr/share/locale + + + + template-glib-devel + Development files for template-glib + + template-glib + glib2-devel + gobject-introspection-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2022-03-21 + 3.34.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 3.34.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + tepl + https://wiki.gnome.org/Projects/Tepl + + PisiLinux Community + admins@pisilinux.org + + LGPL3 + app:gui + programming.library + Library that eases the development of GtkSourceView-based text editors and IDEs + GktSourceView temelli metin editörü ve IDE'ler için geliştirmeyi kolaylaştıran bir kitaplık + Library that eases the development of GtkSourceView-based text editors and IDEs + GktSourceView temelli metin editörü ve IDE'ler için geliştirmeyi kolaylaştıran bir kitaplık + mirrors://gnome/tepl/6.0/tepl-6.0.2.tar.xz + + amtk-devel + gobject-introspection-devel + gtksourceview4-devel + icu4c-devel + meson + gtk-doc + pango-devel + + programming/library/tepl/pspec.xml + + + tepl + + amtk + cairo + glib2 + gtk3 + gtksourceview4 + icu4c + pango + + + /usr/lib/libtepl* + /usr/lib/girepository-1.0 + /usr/share/doc + /usr/share/gtk-doc + /usr/share/locale + + + + tepl-devel + tepl için geliştirme dosyaları + + tepl + amtk-devel + glib2-devel + gtk3-devel + gtksourceview4-devel + icu4c-devel + + + /usr/lib/pkgconfig + /usr/include + /usr/share/gir-1.0 + + + + + 2022-05-27 + 6.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-02 + 6.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-02 + 6.00.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + totem-pl-parser + https://gitlab.gnome.org/GNOME/totem-pl-parser + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + programming.library + Totem playlist parser + totem-pl-parser is a simple GObject-based library to parse a host of playlist formats, as well as save those + https://download.gnome.org/sources/totem-pl-parser/3.26/totem-pl-parser-3.26.5.tar.xz + + glib2-devel + intltool + libarchive-devel + libgcrypt-devel + libxml2-devel + gobject-introspection-devel + meson + + programming/library/totem-pl-parser/pspec.xml + + + totem-pl-parser + + libarchive + glib2 + libxml2 + libgcrypt + + + /usr/lib/girepository-1.0/ + /usr/lib/lib*.so* + /usr/share/doc + /usr/share/locale + + + + totem-pl-parser-devel + Development files for totem-pl-aprser + + totem-pl-parser + libarchive-devel + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-05-28 + 3.26.5 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + tpm2-tss + https://github.com/tpm2-software/tpm2-tss + + PisiLinux Community + admins@pisilinux.org + + BSDv2 + library + programming.library + OSS implementation of the TCG TPM2 Software Stack (TSS2) + TCG TPM2 (Trusted Platform Module) Yazılım yığınının (TSS2) açık kaynak kodlu uygulanması + Implementation of the TCG Trusted Platform Module 2.0 Software Stack (TSS2) + tpm2-tss, TCG TPM2 (Trusted Platform Module) Yazılım yığınının (TSS2) açık kaynak kodlu uygulanmasını içeren kitaplıkları sunar. + https://github.com/tpm2-software/tpm2-tss/archive/3.1.0.tar.gz + + doxygen + iproute2 + curl-devel + json-c-devel + gettext-devel + openssl-devel + autoconf-archive + + programming/library/tpm2-tss/pspec.xml + + + tpm2-tss + OSS implementation of the TCG TPM2 Software Stack (TSS2) + + curl + json-c + openssl + + + /etc + /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /var/lib/tpm2-tss + /var/run/tpm2-tss + + + + tpm2-tss-devel + Development files for tpm2-tss + tpm2-tss için geliştirme dosyaları + tpm2-tss-devel, tpm2-tss için geliştirme dosyalarını içerir. + + curl-devel + json-c-devel + openssl-devel + tpm2-tss + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-01-14 + 3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 3.0.0 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2020-09-23 + 3.0.0 + Major version bump. Fix translation + Blue Devil + bluedevil@sctzine.com + + + 2020-04-02 + 2.4.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + utf8proc + https://github.com/JuliaStrings/utf8proc + + fury + uglyside@yandex.ru + + MIT + library + programming.library + a clean C library for processing UTF-8 Unicode data. + utf8proc is a small, clean C library that provides Unicode normalization, case-folding, and other operations for data in the UTF-8 encoding. + https://github.com/JuliaStrings/utf8proc/archive/refs/tags/v2.7.0.tar.gz + + cmake + + programming/library/utf8proc/pspec.xml + + + utf8proc + + /usr/lib + + + + utf8proc-devel + + utf8proc + + + /usr/include/utf8proc.h + /usr/lib/pkgconfig + + + + + 2021-12-20 + 2.7.0 + Version bump + fury + uglyside@yandex.ru + + + 2021-11-22 + 2.6.1 + First build + fury + uglyside@yandex.ru + + + + + + uthash + http://troydhanson.github.io/uthash/ + + fury + uglyside@yandex.ru + + BSD-2 + library + programming.library + A hash table for C structures. + Any C structure can be stored in a hash table using uthash. Just add a UT_hash_handle to the structure and choose one or more fields in your structure to act as the key. Then use these macros to store, retrieve or delete items from the hash table. + https://github.com/troydhanson/uthash/archive/refs/tags/v2.3.0.tar.gz + programming/library/uthash/pspec.xml + + + uthash + + /usr/include + + + + + 2022-04-14 + 2.3.0 + First build. + fury + uglyside@yandex.ru + + + + + + wimlib + https://wimlib.net/index.html + + PisiLinux Community + admins@pisilinux.org + + custom + app + programming.library + A library and program to extract, create, and modify WIM files + A library and program to extract, create, and modify WIM files + WIM dosyalarını ayıklamak, oluşturmak ve değiştirmek için bir kitaplık ve program + WIM dosyalarını ayıklamak, oluşturmak ve değiştirmek için bir kitaplık ve program + https://wimlib.net/downloads/wimlib-1.13.5.tar.gz + + attr-devel + fuse-devel + libxml2-devel + ntfs-3g + openssl-devel + + programming/library/wimlib/pspec.xml + + + wimlib + + fuse + cdrkit + mtools + cabextract + libxml2 + ntfs-3g + openssl + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + wimlib-devel + Development files for wimlib + + wimlib + fuse-devel + libxml2-devel + openssl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-06 + 1.13.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-27 + 1.13.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + wpebackend-fdo + https://wpewebkit.org + + Pisi Linux Admins + admin@pisilinux.org + + custom + library + programming.library + Freedesktop.org backend for WPE WebKit + Freedesktop.org backend for WPE WebKit + WPE WebKit için Freedesktop.org arka ucu + WPE WebKit için Freedesktop.org arka ucu + https://github.com/Igalia/WPEBackend-fdo/archive/1.9.1.tar.gz + + meson + mesa-devel + glib2-devel + wayland-devel + libwpe-devel + libglvnd-devel + libepoxy-devel + wayland-protocols-devel + wayland-client + wayland-server + libxkbcommon-devel + + programming/library/wpebackend-fdo/pspec.xml + + + wpebackend-fdo + + glib2 + libgcc + libwpe + wayland + libepoxy + wayland-client + wayland-server + + + /usr/lib + /usr/share + /usr/share/doc + + + + wpebackend-fdo-devel + Development files for wpebackend-fdo + + wpebackend-fdo + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-02-27 + 1.9.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + xdg-utils-cxx + https://github.com/azubieta/xdg-utils-cxx + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + programming.library + Implementation of the FreeDesktop specifications to be used in C++ projects + Implementation of the FreeDesktop specifications to be used in C++ projects + Implementation of the FreeDesktop specifications to be used in C++ projects + Implementation of the FreeDesktop specifications to be used in C++ projects + https://github.com/azubieta/xdg-utils-cxx/archive/refs/tags/v1.0.1.tar.gz + + cmake + + programming/library/xdg-utils-cxx/pspec.xml + + + xdg-utils-cxx + + /usr/lib + /usr/share/doc + + + + xdg-utils-cxx-devel + Development files for xdg-utils-cxx + + xdg-utils-cxx + + + /usr/include + /usr/lib/cmake + + + + + 2021-05-19 + 1.0.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + xxhash + https://cyan4973.github.io/xxHash/ + + Safa Arıman + safaariman@pisilinux.org + + BSD + GPLv2 + library + programming.library + Extremely fast hash algorithm + Aşırı hızlı çırpı yordamları algoritması + xxHash is an Extremely fast Hash algorithm, running at RAM speed limits. It successfully completes the SMHasher test suite which evaluates collision, dispersion and randomness qualities of hash functions. Code is highly portable, and hashes are identical on all platforms (little / big endian). + xxHash RAM hız sınırlarında aşırı hızlı çırpı yordamları koşabilen bir kitaplıktır. + https://github.com/Cyan4973/xxHash/archive/v0.8.1.tar.gz + + make + + programming/library/xxhash/pspec.xml + + + xxhash + Extremely fast hash algorithm + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + xxhash-devel + Development files for xxhash + xxhash için geliştirme dosyaları + xxhash-devel, xxhash için geliştirme dosyalarını içerir. + + xxhash + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-30 + 0.8.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-07 + 0.8.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-03-19 + 0.7.3 + First release + Safa Arıman + safaariman@pisilinux.org + + + + + + yad + https://github.com/v1cont/yad + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + programming.library + Yet Another Dialog - display graphical dialogs from shell scripts or command line. + Yad komut satırından veya kabuk betikleriyle diyalog kutuları yapmanızı sağlar. + Yad allows you to display GTK+ dialog boxes from command line or shell scripts. YAD depends on GTK+ only. + Yad komut satırından veya kabuk betikleriyle diyalog kutuları yapmanızı sağlayan kitaplığı içerir. + https://github.com/v1cont/yad/archive/v7.1.tar.gz + + intltool + gtk3-devel + glib2-devel + gettext-devel + gtkspell3-devel + shared-mime-info + + programming/library/yad/pspec.xml + + + yad + Yet Another Dialog - display graphical dialogs from shell scripts or command line. + + gtk3 + cairo + glib2 + pango + gtkspell3 + gdk-pixbuf + + + /usr/share + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/locale + + + yad-gtk2 + + + + + 2020-09-23 + 7.1 + Major version bump. Fix translation + Blue Devil + bluedevil@sctzine.com + + + 2020-04-27 + 6.0 + version bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-04-05 + 0.42.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + yaml-cpp + https://github.com/jbeder/yaml-cpp + + Ergün Salman + Poyraz76@pisilinux.org + + LGPLv2 + Libry + programming.library + yaml-cpp is a YAML parser and emitter in C++ matching the YAML 1.2 spec. + To get a feel for how it can be used, see the Tutorial or How to Emit YAML. + yalm-cpp + https://github.com/jbeder/yaml-cpp/archive/yaml-cpp-0.6.3.tar.gz + + cmake + python-devel + boost-devel + + programming/library/yaml-cpp/pspec.xml + + + yaml-cpp + + /usr/lib/ + /usr/include/yaml-cpp/* + /usr/lib/pkgconfig/ + /usr/share/doc/ + + + + + 2020-03-04 + 0.6.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-19 + 0.5.3 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 0.5.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-11 + 0.5.2 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-01 + 0.5.2 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + z3 + https://github.com/Z3Prover/z3 + + fury + uglyside@yandex.ru + + MIT + library + programming.library + The Z3 Theorem Prover. + Z3 is a theorem prover from Microsoft Research. + https://github.com/Z3Prover/z3/archive/refs/tags/z3-4.8.17.tar.gz + + cmake + ninja + gmp-devel + python3-devel + python3-setuptools + + programming/library/z3/pspec.xml + + + z3 + + gmp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + python3-z3 + programming.language.python3 + + z3 + python3 + + + /usr/lib/python* + + + + z3-devel + + z3 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2022-05-28 + 4.8.17 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-11 + 4.8.12 + Version bump. + fury + uglyside@yandex.ru + + + 2021-07-05 + 4.8.11 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-24 + 4.8.10 + Version bump. + fury + uglyside@yandex.ru + + + 2020-10-08 + 4.8.9 + First build. + fury + uglyside@yandex.ru + + + + + + gnu-efi + https://sourceforge.net/projects/gnu-efi/ + + Ergün Salman + Poyraz76@pisilinux.org + + LGPLv2 + Libry + programming.library + Develop EFI applications for ARM-64, ARM-32, x86_64, IA-64 (IPF), and IA-32 (x86) platforms using the GNU toolchain and the EFI development environment.. + GNU toolchain and the EFI development environment.. + yalm-cpp + https://sourceforge.net/projects/gnu-efi/files/gnu-efi-3.0.14.tar.bz2 + programming/library/gnu-efi/pspec.xml + + + gnu-efi + + /usr/lib/ + /usr/include/ + /usr/share/ + + + + + 2021-11-21 + 3.0.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 3.0.11 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-15 + 3.0.11 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-10-21 + 3.0.9 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-10 + 3.0.8 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-05-15 + 3.0.4 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-08-16 + 3.0.4 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + libdmapsharing + http://www.flyn.org/projects/libdmapsharing/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + LGPLv2 + app:gui + programming.library + A DMAP client and server library + Bir DMAP istemci ve sunucu kitaplığı + A DMAP client and server library + Bir DMAP istemci ve sunucu kitaplığı + libdmapsharing + http://www.flyn.org/projects/libdmapsharing/libdmapsharing-3.9.9.tar.gz + + glib2-devel + libgee-devel + libsoup-devel + gdk-pixbuf-devel + gstreamer-devel + gst-plugins-base-devel + avahi-glib-devel + gtk-doc + vala-devel + + programming/library/libdmapsharing/pspec.xml + + + libdmapsharing + + zlib + glib2 + libsoup + avahi-glib + avahi-libs + gdk-pixbuf + gstreamer + gst-plugins-base + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + + + + libdmapsharing-devel + libdmapsharing için geliştirme dosyaları + + libdmapsharing + glib2-devel + gstreamer-devel + libsoup-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + + + + + 2021-06-11 + 3.9.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libsocket + https://github.com/dermesser/libsocket + + fury + uglyside@yandex.ru + + BSD + library + programming.library + libsocket is a library written in C for the purpose of simplifying the usage of AF_INET/AF_INET6 (internet domain) and AF_UNIX (unix domain) sockets. + libsocket is a library written in C for the purpose of simplifying the usage of AF_INET/AF_INET6 (internet domain) and AF_UNIX (unix domain) sockets. libsocket++ is an object-oriented wrapper around libsocket. + https://github.com/dermesser/libsocket/archive/v2.5.0.tar.gz + + cmake + + programming/library/libsocket/pspec.xml + + + libsocket + + libgcc + + + /usr/lib + /usr/share/doc + + + + libsocket-devel + + libsocket + + + /usr/include + + + + + 2020-12-22 + 2.5.0 + First build + fury + uglyside@yandex.ru + + + + + + rpcsvc-proto + https://github.com/thkukuk/rpcsvc-proto + + Kamil Atlı + suvari@pisilinux.org + + BSD + library + app:console + programming.library + This package contains rpcsvc proto.x files from glibc, which are +missing in libtirpc. + Glibc'den gelen rpcsvc proto.x dosyalarını içerir. + This package contains rpcsvc proto.x files from glibc, which are +missing in libtirpc. Additional it contains rpcgen, which is needed +to create header files and sources from protocol files. + Bu paket, glibc'den gelen, libtirpc'de eksik olan rpcsvc proto.x dosyalarını içerir. Ek olarak protokol dosyalarından başlık dosyaları ve kaynaklar oluşturmak için gerekli olan rpcgen içerir. +. + https://github.com/thkukuk/rpcsvc-proto/releases/download/v1.4/rpcsvc-proto-1.4.tar.xz + + glibc-devel + + programming/library/rpcsvc-proto/pspec.xml + + + rpcsvc-proto + + /usr/bin + /usr/share/doc + /usr/share/man/man1/rpcgen.1 + + + + rpcsvc-proto-devel + Development headers for rpcsvc-proto + rpcsvc-proto kitaplığı için geliştirme başlıkları + + rpcsvc-proto + + + /usr/include + /usr/share/pkgconfig + + + + + 2020-01-19 + 1.4 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2019-03-29 + 1.4 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + http-parser + https://github.com/nodejs/http-parser + + Blue Devil + bluedevil@sctzine.com + + MIT + library + programming.misc + A http request/response parser for c. + C için HTTP istek/yanıt çözümleyicisi + This is a parser for HTTP messages written in C. It parses both requests and responses. The parser is designed to be used in performance HTTP applications. It does not make any syscalls nor allocations, it does not buffer data, it can be interrupted at anytime. + HTTP mesajları için C ile yazılmış bu kitaplık, HTTP istek ve yanıtlarını çözümleyen bir C kitaplığıdır. + https://github.com/nodejs/http-parser/archive/v2.9.4.tar.gz + + meson.build + + + meson + + programming/misc/http-parser/pspec.xml + + + http-parser + A http request/response parser for c. + + /usr/share/doc/http-parser + /usr/include + /usr/lib + + + + + 2021-10-28 + 2.9.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-08 + 2.9.3 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + libnice + https://nice.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + MPL-1.1 + LGPLv2.1 + app:console + library + programming.misc + GLib ICE library + GLIB ICE kitaplığı + Nice is an implementation of the IETF's draft Interactive Connectivity Establishment standard (ICE). + Nice, IETF'ye ait bir taslak olan Etkileşimli Bağlanırlık Birliği standardı uygulamasıdır. + http://nice.freedesktop.org/releases/libnice-0.1.15.tar.gz + + glib2-devel + gnutls-devel + gobject-introspection-devel + gstreamer-devel + + programming/misc/libnice/pspec.xml + + + libnice + + glib2 + gnutls + libxml2 + gstreamer + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + libnice-devel + Development files for libnice + libnice için geliştirme dosyaları + + libnice + glib2-devel + gnutls-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2019-04-22 + 0.1.15 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-06-09 + 0.1.14 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 0.1.13 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-27 + 0.1.13 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + mm-common + https://www.gtkmm.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + programming.misc + Common build files of the C++ bindings + Common build files of the C++ bindings + Common build files of the C++ bindings + Common build files of the C++ bindings + https://download.gnome.org/sources/mm-common/1.0/mm-common-1.0.4.tar.xz + + meson + doxygen + libxslt-devel + + programming/misc/mm-common/pspec.xml + + + mm-common + + doxygen + libxslt + + + /usr/bin + /usr/share + /usr/share/aclocal + /usr/share/man + /usr/share/doc + /usr/share/pkgconfig + + + + + 2022-02-13 + 1.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-26 + 1.0.3 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + acorn + https://github.com/acornjs/acorn + + Blue Devil + bluedevil@sctzine.com + + MIT + app:console + library + programming.misc + A tiny, fast JavaScript parser, written completely in JavaScript. + Tamamen javascript ile yazılmış küçük ve hızlı bir Javascript çözümleyicisi. + acorn is a tiny, fast JavaScript parser, written completely in JavaScript. + acorn kitaplığı, tamamen javascript ile yazılmış küçük ve hızlı bir Javascript çözümleyicisi sunar. + https://registry.npmjs.org/acorn/-/acorn-8.0.1.tgz + + rsync + nodejs + + programming/misc/acorn/pspec.xml + + + acorn + A tiny, fast JavaScript parser, written completely in JavaScript + + nodejs + + + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2020-09-08 + 8.0.1 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + apr + http://apr.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Apache portable runtime library + Apache portatif çalışma ortamı kitaplığı (eski sürüm) + Apache Portable Runtime – przenośna biblioteka uruchomieniowa + L'Apache Portable Runtime (APR) a pour mission de fournir une librairie libre C de structures de donnés et de routines. Le numéro de version majeur commence par un 0. + The mission of the Apache portable runtime (APR) is to provide a free library of C data structures and routines. + Apache portatif çalışma ortamı kitaplığı (APR), C data yapıları için özgür kitaplığı sağlar. Bu sürüm 0 ile başlar. + APR to Przenośna Biblioteka Fazy Wykonywania Apache, zaprojektowana jako biblioteka wspomagająca, która udostępnia przewidywalny i spójny interfejs do podstawowych, specyficznych dla platformy implementacji. + mirrors://apache/apr/apr-1.7.0.tar.gz + + libutil-linux-devel + + programming/misc/apr/pspec.xml + + + apr + + libutil-linux + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/aclocal + /usr/lib/apr-1/build + + + + apr-devel + Development files for apr + Development files for apr + + apr + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-27 + 1.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 1.6.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-20 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-01 + 1.5.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + apr-util + http://apr.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Apache portable runtime utils + Apache çalışma ortamı araçları (eski sürüm) + L'Apache Portable Runtime Utils (APR-Utils) contient des interfaces utilitaires supplémentaires pour APR fournissant un support pour, XML, LDAP,des interfaces pour les bases de données, d'analyse d'URI, et plus encore. La numéro de version majeur commence par un 1. + Apache portable runtime utils (APR-Util) contains additional utility interfaces for APR; including support for XML, database interfaces, URI parsing and more. + Apache portatif çalışma ortamı araçları (APR-Util) ek arabirimleri içerir; XML, LDAP, veritabanı, URI ve diğer arabirimler. Bu sürüm 0 ile başlar. + Narzędzie APR to biblioteka narzędziowa zaimplementowana na bazie apr, oferująca dostęp do bazy danych, przetwarzanie XML oraz inne przydatne funkcje. + mirrors://apache/apr/apr-util-1.6.1.tar.bz2 + + db-devel + zlib-devel + expat-devel + sqlite-devel + libutil-linux-devel + openssl-devel + unixODBC-devel + apr-devel + mariadb-lib + postgresql-lib + cyrus-sasl-devel + openldap-client + + programming/misc/apr-util/pspec.xml + + + apr-util + + db + zlib + expat + sqlite + libutil-linux + openssl + apr + unixODBC + mariadb-lib + postgresql-lib + cyrus-sasl + openldap-client + + + /usr/lib + /usr/share/doc + /usr/bin + + + + apr-util-devel + Development files for apr-util + + apr-util + apr-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-27 + 1.6.1 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-09 + 1.6.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-20 + 1.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.5.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-06 + 1.5.4 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -338671,59 +304800,820 @@ cleaner, which will allow to add new features in the future. - iftop - http://www.ex-parrot.com/~pdw/iftop/ + autoconf213 + http://www.gnu.org/software/autoconf/autoconf.html + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + app:console + programming.misc + Used to create autoconfiguration files version 2.13 + Used to create autoconfiguration files, Autoconf is an extensible package of m4 macros that produce shell scripts to automatically configure software source code packages. + mirrors://gnu/autoconf/autoconf-2.13.tar.gz + + texinfo + m4 + perl + + + autoconf-2.13-consolidated_fixes-1.patch + + programming/misc/autoconf213/pspec.xml + + + autoconf213 + + texinfo + m4 + + + /usr/bin + /usr/share/doc + /usr/share + /usr/share/info + /usr/share/autoconf + + + + + 2020-12-09 + 2.13 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-29 + 2.13 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-07 + 2.13 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-30 + 2.13 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2016-03-13 + 2.13 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + boost + http://boost.org PisiLinux Community admins@pisilinux.org GPLv2 - app:console - network.analyzer - Bandwidth monitor - Bantgenişliği izleyicisi - iftop displays bandwidth usage on an interface. - iftop ağ bağlantılarınız üzerindeki veri akışını gösterir. - http://www.ex-parrot.com/~pdw/iftop/download/iftop-1.0pre4.tar.gz + library + programming.misc + Peer-reviewed portable C++ source libraries + Açık kaynak kodlu ve taşınabilir C++ kaynak kitaplıkları + Boost propose des librairies C++ gratuites, portables et relues en comité. L'accent est porté sur les librairies portables qui fonctionnent bien avec la Librairie Standard C++. + Boost provides free portable peer-reviewed C++ libraries. The emphasis is on portable libraries which work well with the C++ Standard Library. + Boost, kaynak kodları gözden geçirilmiş C++ kitaplıklarını içerir. + https://boostorg.jfrog.io/ui/native/main/release/1.77.0/source/boost_1_77_0.tar.bz2 - libpcap-devel - ncurses-devel + bzip2 + xz-devel + zstd-devel + zlib-devel + icu4c-devel + python3-devel + libxslt-devel + openmpi-devel + python3-numpy - network/analyzer/iftop/pspec.xml + programming/misc/boost/pspec.xml - iftop + boost + Peer-reviewed portable C++ source libraries - libpcap - ncurses + xz + zlib + zstd + bzip2 + icu4c + libgcc + openmpi - /usr/sbin - /usr/share/doc/iftop - /usr/share/man + /usr/share/boostbook + /usr/share/boost-build + /usr/bin + /usr/share/doc + /usr/lib + + + + boost-devel + Headers and library documentation for boost + boost için başlık dosyaları ve kitaplık belgeleri + boost-devel, boost için geliştirme ve başlık dosyalarını içerir. + data:doc + + boost + + + /usr/share/doc/*/html + /usr/include + /usr/lib/cmake + + + + boost-python3 + A C++ library which enables seamless interoperability between C++ and the Python3 + boost için python3 kitaplık belgeleri + boost-python3, boost için python3 kitaplık belgelerini içerir. + + boost + libgcc + openmpi + + + /usr/lib/python3.9 + /usr/lib/libboost_numpy39.so* + /usr/lib/libboost_python39.so* + /usr/lib/libboost_mpi_python39.so* - - iftoprc - + + 2021-10-21 + 1.77.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-21 + 1.77.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-07-07 + 1.75.0 + Rebuild boost-build + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 1.75.0 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-11-07 + 1.72.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 1.72.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-10 + 1.72.0 + Symlink and translations fix + Blue Devil + bluedevil@sctzine.com + + + 2020-01-12 + 1.72.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.66.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 1.66.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-19 + 1.63.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-09 + 1.63.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-08 + 1.63.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-01 + 1.63.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + - 2016-03-02 - 1.0.4 - Rebuilt with docker + 2016-06-09 + 1.60.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 1.60.0 + Release bump. İbrahim KARAGÜZEL karaguzelibrahim@gmail.com + + 2016-05-08 + 1.60.0 + First release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + btyacc + https://www.siber.com/btyacc + + PisiLinux Community + admins@pisilinux.org + + freedist + app:console + programming.misc + Backtracking YACC - modified from Berkeley YACC + This is original Berkeley Yacc modified to better fit production environment (and to have less bugs, too). + http://www.siber.com/btyacc/btyacc-3-0.tar.gz + + btyacc-3.0-includes.patch + btyacc-3.0-makefile.patch + + programming/misc/btyacc/pspec.xml + + + btyacc + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2020-01-16 + 3.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 3.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-14 + 3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + - 2014-01-26 - 1.0.4 - Version bump. + 2016-06-09 + 3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-11 + 3.0 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + clucene + http://clucene.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + Apache-2.0 + library + programming.misc + A high-performance indexing and searching API + Yüksek performanslı bir indeksleme ve arama API'si + CLucene is a high-performance, scalable, cross platform, full-featured, open-source indexing and searching API. It is written in C++. + CLucene yüksek performanslı, ölçeklenebilir, platform bağımsız, çok özellikli, açık kaynak arama ve indeksleme programlama arayüzüdür. C++ ile yazılmıştır. + CLucene es una API para indexación y búsqueda de alta performance, escalable, cross plataforma, full-featured, código abierto. Está escrito en C++. + http://downloads.sourceforge.net/clucene/clucene-core-2.3.3.4.tar.gz + + boost-devel + cmake + zlib-devel + + + clucene-2.3.3.4-gcc6.patch + clucene-core-2.3.3.4-pkgconfig.patch + clucene-2.3.3.4-contribs_lib-1.patch + fix_zlib_detections.diff + clucene-core-2.3.3.4-usleep.patch + clucene-warnings.patch + clucene-gcc-atomics.patch + clucene-debug.patch + clucene-narrowing-conversions.patch + clucene-multimap-put.patch + + programming/misc/clucene/pspec.xml + + + clucene + + /usr/lib + /usr/share + + + + clucene-devel + Development files for clucene + clucene için geliştirme dosyaları + + clucene + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-26 + 2.3.3.4 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-02 + 2.3.3.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 2.3.3.4 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 2.3.3.4 + First Release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + ctpl + https://ctpl.tuxfamily.org/ + + fury + uglyside@yandex.ru + + GPL-3 + library + programming.misc + CTPL − C Template (Parser) Library. + CTPL is a template engine library written in C and distributed under the terms of the GNU GPLv3+ + http://download.tuxfamily.org/ctpl/releases/ctpl-0.3.4.tar.gz + + gtk-doc + python-six + glib2-devel + + programming/misc/ctpl/pspec.xml + + + ctpl + + glib2 + gtk-doc + python-six + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/man/man1 + /usr/share/doc + + + + ctpl-docs + GTK reference documents for ctpl + + /usr/share/gtk-doc + + + + ctpl-devel + Development files for ctpl + + glib2-devel + ctpl + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-15 + 0.3.4 + Rebuild. + fury + uglyside@yandex.ru + + + 2019-10-18 + 0.3.4 + Rebuild. + fury + uglyside@yandex.ru + + + 2019-04-21 + 0.3.4 + First build + fury + uglyside@yandex.ru + + + + + + dbus-c++ + https://sourceforge.net/projects/dbus-cplusplus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C++ bindings for DBus library + DBus kitaplığı için C++ bağlayıcıları + dbus-c++ attempts to provide a C++ API for D-BUS. The library has a glib/gtk and an Ecore mainloop integration. It also offers an optional own main loop. + dbus-c++, DBus kitaplığı için C++ programlama arayüzü sunan bir kitaplıktır. + https://sourceforge.net/projects/dbus-cplusplus/files/dbus-c%2B%2B/0.9.0/libdbus-c%2B%2B-0.9.0.tar.gz + + dbus-devel + expat-devel + glib2-devel + + + disable-threading.patch + fix-writechar.patch + gcc47.patch + + programming/misc/dbus-c++/pspec.xml + + + dbus-c++ + + dbus + libgcc + expat + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + + + + dbus-c++-devel + + dbus-c++ + dbus-devel + expat-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-11-07 + 0.9.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 0.0_20090907 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.0_20090907 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.0_20090907 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-28 + 0.0_20090907 + First release Stefan Gronewold(groni) groni@pisilinux.org + + + + + dotconf + https://github.com/williamh/dotconf + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A library to parse configuration files + Yapılandırma dosyası ayıklama kitaplığı + dotconf is a simple-to-use and powerful configuration file parser library written in C. + dotconf C dilinde yazılmış, basit kullanımlı ve güçlü bir yapılandırma dosyası ayıklama kitaplığıdır. + https://src.fedoraproject.org/lookaside/extras/dotconf/dotconf-1.3.tar.gz/35c19ec9b96648f53e987e47e52dbc4c/dotconf-1.3.tar.gz + programming/misc/dotconf/pspec.xml + + + dotconf + + /usr/lib + /usr/share/doc + + + + dotconf-devel + Development headers and documentation for dotconf + dotconf kitaplığı için geliştirme başlıkları ve belgeleri + + dotconf + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/dotconf/examples + /usr/share/doc/dotconf/dotconf-api.txt + + + + + 2020-02-02 + 1.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-10 + 1.3 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + - 2012-09-01 - 1.0 + 2015-08-25 + 1.3 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + ffcall + http://www.haible.de/bruno/packages-ffcall.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + Foreign function call libraries + Dış işlev fonksiyonları çağırma kitaplıkları + Collection of four libraries which can be used to build foreign function call interfaces in embedded interpreters. + ffcall inşa sırasında yabancı fonksiyonları çağırmak için kullanılan, 4 kitaplıktan oluşan, bir kitaplığıdır. + https://ftp.gnu.org/gnu/libffcall/libffcall-2.2.tar.gz + programming/misc/ffcall/pspec.xml + + + ffcall + + /usr/lib + /usr/share/doc + + + + ffcall-devel + Development files for ffcall + ffcall için geliştirme dosyaları + + ffcall + + + /usr/include + /usr/share/man/man3 + + + + + 2020-03-20 + 2.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + flann + https://github.com/mariusmuja/flann + + Osman Erkan + osman.erkan@pisilinux.org + + BSD + library + programming.misc + FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional space. + FLANN is a library for performing fast approximate nearest neighbor searches in high dimensional spaces. It contains a collection of algorithms we found to work best for nearest neighbor search and a system for automatically choosing the best algorithm and optimum parameters depending on the dataset. + https://github.com/mariusmuja/flann/archive/1.9.1.tar.gz + + cmake + hdf5-devel + + + flann-1.9.1-cmake-3.11.patch + + programming/misc/flann/pspec.xml + + + flann + + libgcc + libgomp + hdf5-devel + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/flann + + + + flann-devel + Development files for flann + + flann + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-05 + 1.9.1 + Rebuild. + Kamil Atlı + admin@pisilinux.org + + + 2019-02-07 + 1.9.1 + Rebuild. + Kamil Atlı + admin@pisilinux.org + + + 2018-09-02 + 1.9.1 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2017-04-30 + 1.8.4 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 1.8.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-25 + 1.8.4 First release Osman Erkan osman.erkan@pisilinux.org @@ -338732,8 +305622,15361 @@ cleaner, which will allow to add new features in the future. - usbredir - https://www.spice-space.org/usbredir.html + gdl + https://gitlab.gnome.org/GNOME/gdl + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + Gnome Docking library + GNOME geliştirme kitaplıkları + Provides docking features for gtk+. + Bu paket, GNOME geliştirme araçları arasında paylaşılan kitaplıkları ve bileşenleri içerir. + https://download.gnome.org/sources/gdl/3.40/gdl-3.40.0.tar.xz + + gtk-doc + intltool + gtk3-devel + python3-six + libxml2-devel + gobject-introspection-devel + + programming/misc/gdl/pspec.xml + + + gdl + Provides docking features for gtk+. + + atk + gtk3 + cairo + glib2 + pango + libxml2 + gdk-pixbuf + + + /usr/lib + /usr/share/locale + /usr/share/doc/gdl/README + /usr/share/doc/gdl/COPYING + /usr/share/gir-1.0/Gdl-3.gir + + + + gdl-devel + Development files for gdl + gdl için geliştirme dosyaları + gdl-devel, gdl için geliştirme dosyalarını içerir. + + gtk3-devel + libxml2-devel + gdl + + + /usr/include + /usr/lib/pkgconfig + + + + gdl-docs + Documentation files for gdl + gdl için başvuru belgeleri + gdl-docs provides documentation files for gdl. + gdl-docs, gdl için belgelendirme dosyalarını içerir. + data:doc + + gdl + + + /usr/share/gtk-doc/html + + + + + 2021-08-27 + 3.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-30 + 3.34.0 + Ver. bump + fury + uglyside@yandex.ru + + + 2013-10-29 + 3.8.1 + Rebuild. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-07-31 + 3.8.1 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-07-30 + 2.31.3 + Rebuild + Osman Erkan + osman.erkan@pisilinux.org + + + 2012-12-22 + 2.31.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + geoip + https://dev.maxmind.com/geoip + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C library for country/city/organization to IP address or hostname mapping + Ülke/şehir/organizasyon adı ile IP adresi veya makine adı eşleştirmesi için C kitaplığı + GeoIP is a C library that enables the user to find the country that any IP address or hostname originates from. + GeoIP, herhangi bir IP adresinin veya makine adının hangi ülkeye ait olduğunu bulmak için kullanılan bir C kitaplığıdır. + https://github.com/maxmind/geoip-api-c/archive/v1.6.12.tar.gz + https://sourceforge.net/projects/pisilinux/files/source/GeoIP-data.tar.xz + programming/misc/geoip/pspec.xml + + + geoip + + /etc + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/GeoIP + + + + geoip-devel + Geoip için geliştirme dosyaları + + geoip + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-15 + 1.6.12 + Version Bump and fix + Idris Kalp + idriskalp@gmail.com + + + 2018-08-10 + 1.6.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-09-20 + 1.6.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.6.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-14 + 1.6.2 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + google-sparsehash + http://code.google.com/p/google-sparsehash + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.misc + An extremely memory-efficient hash_map implementation + Son derece verimli bellek kullanımına sahip hash-map uyarlaması + The SparseHash library contains several hash-map implementations, including implementations that optimize for space or speed. + SparseHash kitaplığı hıza veya boyuta göre eniyileştirilebilecek çeşitli hash-map uyarlamalarını içerir. + https://github.com/sparsehash/sparsehash/archive/sparsehash-2.0.3.tar.gz + programming/misc/google-sparsehash/pspec.xml + + + google-sparsehash + + /usr/lib + /usr/include + /usr/share/doc + + + + + 2018-09-09 + 2.0.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2017-01-04 + 2.0.3 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + grantlee-qt5 + https://github.com/steveire/grantlee + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + Qt string template engine based on the Django template system + Django şablon sistemi benzeri bir Qt metin şablon motoru + grantlee is a plugin based String Template system written using the Qt framework. The goals of the project are to make it easier for application developers to separate the structure of documents from the data they contain, opening the door for theming. + grantlee, Qt çatısı kullanılarak yazılmış bir eklenti destekli metin şablon sistemidir. Projenin amaçları; belgelerin yapısını, içerdikleri veriden ayırarak uygulama geliştiricilerinin işini kolaylaştırmak ve tema desteği için imkan sağlamaktır. + https://github.com/steveire/grantlee/archive/v5.2.0.tar.gz + + mesa-devel + qt5-base-devel + qt5-declarative-devel + cmake + + programming/misc/grantlee-qt5/pspec.xml + + + grantlee-qt5 + + qt5-base + qt5-declarative + libgcc + + + /usr/lib + /usr/share/doc + + + + grantlee-qt5-devel + Development files for grantlee + grantlee için geliştirme dosyaları + + grantlee-qt5 + qt5-base-devel + + + /usr/include + /usr/lib/cmake + + + + + 2022-01-11 + 5.2.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-03 + 5.2.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-20 + 5.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-05 + 5.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-28 + 5.1.0 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2018-12-25 + 5.1.0 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2018-09-09 + 5.1.0 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-10 + 5.1.0 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2016-08-13 + 5.1.0 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2016-06-09 + 5.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-18 + 5.0.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gtest + http://code.google.com/p/googletest/ + + Kamil Atlı + suvari@pisilinux.org + + BSD + library + programming.misc + GoogleTest - Google Testing and Mocking Framework + Google C++ test çatısı + Google's framework for writing C++ tests on a variety of platforms (GNU/Linux, Mac OS X, Windows, Windows CE, and Symbian). Based on the xUnit architecture. Supports automatic test discovery, a rich set of assertions, user-defined assertions, death tests, fatal and non-fatal failures, various options for running the tests, and XML test report generation. + gtest, birçok platformda C++ testleri yazmayı sağlayan bir test çatısıdır. + https://github.com/google/googletest/archive/refs/tags/release-1.11.0.tar.gz + + cmake + python3-devel + + programming/misc/gtest/pspec.xml + + + gtest + + libgcc + python3 + + + /usr/lib/libgtest* + /usr/lib/libgmock* + + + + gtest-devel + Development files for gtest + gtest için geliştirme dosyaları + + gtest + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-05-03 + 1.11.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + gtkglext + https://sourceforge.net/projects/gtkglext/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + OpenGL extension to GTK+ + GTK+ için OpenGL eklentisi + GtkGLExt is an OpenGL extension to GTK+ 2.0 or later + GTK+ 2.0 veya sonraki sürümler için OpenGL eklentisi + mirrors://sourceforge/gtkglext/gtkglext-1.2.0.tar.bz2 + + python3-devel + gtk2-devel + freeglut-devel + mesa-devel + mesa-glu-devel + libXmu-devel + libXt-devel + atk-devel + cairo-devel + fontconfig-devel + pango-devel + pangox-compat-devel + libSM-devel + libICE-devel + + + support-pango.diff + 01_fix_fontcache_nullderef.dpatch + gtkglext-1.2.0-bz677457.diff + gtkglext-gcc8.patch + + programming/misc/gtkglext/pspec.xml + + + gtkglext + + gtk2 + freeglut + mesa + mesa-glu + libXmu + libXt + atk + cairo + fontconfig + pango + pangox-compat + libSM + libICE + gdk-pixbuf + + + /usr/lib + /usr/share/doc + + + + gtkglext-devel + Development headers for gtkglext + gtkglext için geliştirme başlıkları + gtkglext-devel provides development headers for gtkglext. + gtkglext için geliştirme başlıklarını içerir. + + gtkglext + gtk2-devel + pango-devel + pangox-compat-devel + + + /usr/include + /usr/lib/gtkglext-1.0/include/ + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/share/gtk-doc + + + + + 2020-03-06 + 1.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-07 + 1.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-04 + 1.2.0 + First release. + Marcin Bojara + marci@pisilinux.org + + + + + + guile2.0 + https://www.gnu.org/software/guile/ + + Blue Devil + bluedevil@sctzine.com + + GPL + app:console + library + programming.misc + Interpréteur et librairie GNU Scheme. + GNU Scheme interpreter and library + GNU Scheme yorumlayıcısı ve kitaplığı + Język GNU Extension language. + GUILE (GNU's Ubiquitous Intelligent Language for Extension) is a library implementation of the Scheme programming language, written in C. GUILE provides a machine-independent execution platform that can be linked in as a library during the building of extensible programs. + https://ftp.gnu.org/pub/gnu/guile/guile-2.0.14.tar.xz + + gc-devel + gmp-devel + libffi-devel + gettext-devel + readline-devel + libunistring-devel + + programming/misc/guile2.0/pspec.xml + + + guile2.0 + GNU Scheme interpreter and library + + gc + gmp + + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/guile + /usr/lib/guile/2.0 + /usr/lib/libguile-2.0* + /usr/lib/libguilereadline-v-18* + + + + guile2.0-devel + Development files for guile2.0 + guile2.0 için geliştirme dosyaları + Pliki nagłówkowe guile2.0. + guile2.0-devel, guile2.0 için geliştirme dosyalarını içerir. + + gc-devel + gmp-devel + guile2.0 + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2020-12-09 + 2.0.14 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-07 + 2.0.14 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + htmlcxx + http://htmlcxx.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPL + app:library + programming.misc + htmlcxx is a simple non-validating css1 and html parser for C++ + htmlcxx is the name of both the library and the utility application that comes with this package. Although the htmlcxx (the application) is mostly useless for programming, you can use it to easily see how htmlcxx (the library) would parse your html code. + http://sourceforge.net/projects/htmlcxx/files/htmlcxx/0.86/htmlcxx-0.86.tar.gz + + flex + bison + libtool + + + fix-gcc-4.6-ftbfs.patch + reduce-linking.patch + + programming/misc/htmlcxx/pspec.xml + + + htmlcxx + + libgcc + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + htmlcxx-devel + Development files for htmlcxx + + htmlcxx + + + /usr/include + /usr/lib/pkgconfig + + + + + 2018-09-16 + 0.86 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-23 + 0.86 + Rebuild with new toolchain + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-20 + 0.86 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + icu4c + http://site.icu-project.org/home + + PisiLinux Community + admins@pisilinux.org + + as-is + library + programming.misc + International Components for Unicode + Unicode desteği için uluslarası bileşenler + ICU est un ensemble mature de librairies C/C++ et Java pour le support de l'Unicode, l'internationalisation et la globalisation de logiciel (i18n/g11n). Ce paquet contient les librairies C/C++. + ICU is a mature, widely used set of C/C++ and Java libraries for Unicode support, software internationalization and globalization (i18n/g11n). This package contains the C/C++ libraries. + ICU, Unicode desteği, yazılım uluslararasılaştırma ve yerelleştirme konusunda yaygın olarak kullanılan gelişmiş bir kitaplıktır. ICU, Unicode ve u10a desteği için C/C++ ve Java kitaplıklarını içerir. + ICU es un conjunto maduro y muy utilizado de librerías C/C++ y Java para soporte Unicode, internacionalización y globalización de software (i18n/g11n). Este paque te contiene las librerías C/C++. + https://github.com/unicode-org/icu/releases/download/release-68-2/icu4c-68_2-src.tgz + + libgcc + + programming/misc/icu4c/pspec.xml + + + icu4c + + libgcc + + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc/icu4c/html + + + + icu4c-devel + Development files for icu4c + icu4c için geliştirme dosyaları + + icu4c + + + /usr/bin/icu-config + /usr/lib/icu + /usr/share/icu + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig/ + + + + icu4c-32bit + 32-bit shared libraries for icu4c + emul32 + _emul32 + + libgcc + + + icu4c + libgcc + + + /usr/lib32/libicu* + /usr/lib32/icu + + + + + 2021-02-26 + 68.2 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-11-07 + 65.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-12 + 65.1 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-01-06 + 64.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-06 + 60.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-23 + 60.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 60.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-29 + 60.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-31 + 58.2 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 55.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 55.1 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-03 + 55.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + iniparser + http://ndevilla.free.fr/iniparser/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + programming.misc + A free ini file parsing library + Bir ini dosyası ayrıştırma kitaplığı + iniparser is a free stand-alone ini file parsing library written in portable ANSI C. + iniparser, ücretsiz ve ANSI C ile taşınabilir bir şekilde yazılmış INI dosyası ayrıştırma kitaplığıdır. + https://github.com/ndevilla/iniparser/archive/v4.1.tar.gz + programming/misc/iniparser/pspec.xml + + + iniparser + + /usr/share/doc + /usr/lib + + + + iniparser-devel + Development files for iniparser + iniparser için geliştirme dosyaları + + iniparser + + + /usr/include + + + + + 2020-01-19 + 4.1 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-08-06 + 4.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 4.0 + Version Bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2013-05-22 + 3.1 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + intel-tbb + http://www.threadingbuildingblocks.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + Intel Threading Building Blocks Library + Intel Threading kitaplığı + Threading Building Blocks (TBB) is a C++ runtime library that abstracts the low-level threading details necessary for optimal multi-core performance. + https://github.com/intel/tbb/archive/v2020.3.tar.gz + + install.sh + + + cmake + + programming/misc/intel-tbb/pspec.xml + + + intel-tbb + + /usr/lib + /usr/share/doc + + + + intel-tbb-devel + Development files for intel-tbb + intel-tbb için geliştirme dosyaları + + intel-tbb + + + /usr/include + + + + + 2021-06-30 + 2020.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-12 + 2020.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2020.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-09 + 2018_20180618 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-30 + 44_20160128 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 44_20160128 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-08 + 44_20160128 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + jq + https://github.com/stedolan/jq + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.misc + lightweight and flexible command-line JSON processor + lightweight and flexible command-line JSON processor + lightweight and flexible command-line JSON processor + lightweight and flexible command-line JSON processor + https://github.com/stedolan/jq/releases/download/jq-1.6/jq-1.6.tar.gz + + oniguruma-devel + + programming/misc/jq/pspec.xml + + + jq + + oniguruma + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + jq-devel + Development files for jq + + jq + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-09 + 1.6 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2020-06-07 + 1.6 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + json-glib + http://live.gnome.org/JsonGlib + + PisiLinux Community + admins@pisilinux.org + + LGPLv2+ + library + programming.misc + Library for JavaScript Object Notation format + JavaScript Nesne Notasyon biçimi için bir kitaplık + json-glib is a library providing serialization and deserialization support for the JavaScript Object Notation (JSON) format. + json-glib JavaScript Nesne Notasyon (JSON) biçimi için serileştirme ve ters serileştirme sağlayan bir kitaplıktır. + mirrors://gnome/json-glib/1.6/json-glib-1.6.6.tar.xz + + meson + gtk-doc + glib2-devel + gobject-introspection-devel + + programming/misc/json-glib/pspec.xml + + + json-glib + + gobject-introspection + glib2 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/gir* + /usr/lib/girepository-1.0 + /usr/libexec/installed-tests/json-glib-1.0 + /usr/share/installed-tests/json-glib-1.0 + /usr/share/locale + + + + json-glib-devel + Development files for json-glib + json-glib için geliştirme dosyaları + + json-glib + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + json-glib-32bit + 32-bit shared libraries for json-glib + json-glib için 32-bit paylaşımlı kitaplıklar + emul32 + _emul32 + + glib2-32bit + + + glib2-32bit + json-glib + + + /usr/lib32 + /usr/lib32/girepository-1.0 + + + + + 2021-10-02 + 1.6.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-24 + 1.6.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-19 + 1.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-07 + 1.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 1.4.4 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2020-01-17 + 1.4.4 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-07-27 + 1.4.2 + Rebuild for New Toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-28 + 1.4.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-06 + 1.2.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 1.0.2 + Release bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-03-18 + 1.0.2 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libassuan + http://www.gnupg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + programming.misc + Librairie IPC (communication inter-processus) auto-suffisante utilisée par gpg, gpgme et newpg. + IPC library for GnuPG related projects + GnuPG, GPGME ve newpg tarafından kullanılan IPC kitaplığı + This is the IPC library used by GnuPG 2, GPGME and a few other packages. + https://www.gnupg.org/ftp/gcrypt/libassuan/libassuan-2.5.5.tar.bz2 + + libgpg-error-devel + + programming/misc/libassuan/pspec.xml + + + libassuan + + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/info + + + + libassuan-devel + Development files for libassuan + libassuan için geliştirme dosyaları + + libassuan + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + + 2021-05-28 + 2.5.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 2.5.3 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-06-03 + 2.5.3 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 2.5.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 2.5.1 + Release bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 2.4.3 + Release bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-12-24 + 2.4.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-09 + 2.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-21 + 2.2.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libctemplate + https://github.com/OlafvdSpek/ctemplate + + Pisi Linux Community + admins@pisilinux.org + + BSD + library + programming.misc + CTemplate is a simple but powerful template language for C++. + CTemplate C++ için basit ama çok güçlü bır taslak/şablon kitaplığıdır. + It emphasizes separating logic from presentation: it is impossible to embed application logic in this template language. + libctemplate, C++ için basit ama çok güçlü bır taslak/şablon kitaplığı sunar. + https://github.com/OlafvdSpek/ctemplate/archive/ctemplate-2.4.tar.gz + + python3-devel + glibc-devel + + programming/misc/libctemplate/pspec.xml + + + libctemplate + CTemplate is a simple but powerful template language for C++. + + libgcc + + + /usr/bin/diff_tpl_auto_escape + /usr/bin/make_tpl_varnames_h + /usr/bin/template-converter + /usr/share/doc + /usr/lib + + + + libctemplate-devel + Development files for libctemplate + + libctemplate + + + /usr/include + + + + + 2020-03-18 + 2.4 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-09 + 2.3 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2017-04-30 + 2.3 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 2.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-22 + 2.3 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libcxx + http://libcxx.llvm.org/ + + Idris Kalp + idriskalp@gmail.com + + MIT + library + programming.misc + LLVM C++ standard library. + libcxx provides standard c++ library by LLVM + https://github.com/llvm/llvm-project/releases/download/llvmorg-11.1.0/llvm-project-11.1.0.src.tar.xz + + llvm + llvm-libs + llvm-clang + lld + cmake + python3-devel + + programming/misc/libcxx/pspec.xml + + + libcxx + + /usr/lib + /usr/share/doc + + + + libcxx-32bit + libcxx 32bit shared libraries. + emul32 + emul32 + + libcxx + + + /usr/lib32 + + + + libcxx-devel + Development files for libcxx + + libcxx + + + /usr/include + + + + + 2021-02-20 + 11.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-2 + 11.0.0 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2020-03-26 + 10.0.0 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + libdaemon + http://0pointer.de/lennart/projects/libdaemon + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Library for writing UNIX daemons + UNIX hizmetleri yazmak için bir kitaplığı + libdaemon is a lightweight C library which eases the writing of UNIX daemons. + libdaemon, UNIX hizmetleri yazmayı kolaylaştıran hafif bir C kitaplığıdır. + http://0pointer.de/lennart/projects/libdaemon/libdaemon-0.14.tar.gz + programming/misc/libdaemon/pspec.xml + + + libdaemon + + /usr/lib + /usr/share/doc + + + + libdaemon-devel + Development files for libdaemon + libdaemon için geliştirme dosyaları + + libdaemon + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man/man3 + + + + libdaemon-32bit + 32-bit shared libraries for libdaemon + emul32 + emul32 + + libdaemon + + + /usr/lib32 + + + + + 2020-01-18 + 0.14 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 0.14 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.14 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 0.14 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libdbusmenu + https://launchpad.net/dbusmenu + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + programming.misc + Library for applications to pass a menu scructure accross DBus + Uygulamaların DBus üzerinden menü yapılarını gönderebilmelerini sağlayan bir kitaplık + libdbusmenu is a small little library that was created by pulling out some common code out of indicator-applet. It passes a menu structure across DBus so that a program can create a menu simply without worrying about how it is displayed on the other side of the bus. + libdbusmenu, indicator-applet uygulamasında kullanılan bazı genel kodların ayrı bir kitaplık haline getirilmesiyle oluşturulmuş bir kitaplıktır. Bu kitaplık ile uygulamaların menü yapısı DBus ile başka uygulamalara iletilebilir, bu sayede uygulamalar karşı tarafta menünün nasıl gösterileceğini dikkate almadan menüler oluşturabilirler. + https://launchpad.net/libdbusmenu/16.04/16.04.0/+download/libdbusmenu-16.04.0.tar.gz + + intltool + gtk2-devel + gtk3-devel + gnome-doc-utils + json-glib-devel + gtk-doc + gobject-introspection-devel + + + 0001_autoconf.patch + + programming/misc/libdbusmenu/pspec.xml + + + libdbusmenu-glib + GLIB bindings for libdbusmenu + libdbusmenu için GLIB bağlayıcıları + + libdbusmenu-common + json-glib + + + /usr/lib/libdbusmenu-glib* + /usr/lib/libdbusmenu-json* + /usr/share/libdbusmenu + /usr/share/gtk-doc/html/libdbusmenu-glib + + + + libdbusmenu-common + Common files for libdbusmenu libraries + libdbusmenu kitaplıkları için ortak dosyalar + + /usr/share/doc + /usr/share/vala/vapi/Dbusmenu-*.vapi + /usr/share/gir-1.0/Dbusmenu-*.gir + /usr/lib/girepository-1.0/Dbusmenu-*.typelib + + + + libdbusmenu-gtk + GTK 2.x libraries for libdbusmenu + libdbusmenu için GTK 2.x kitaplıkları + + libdbusmenu-glib + libdbusmenu-common + gtk2 + atk + cairo + pango + freetype + harfbuzz + gdk-pixbuf + fontconfig + + + /usr/lib/libdbusmenu-gtk.so* + /usr/share/vala/vapi/DbusmenuGtk-*.vapi + /usr/share/gir-1.0/DbusmenuGtk-*.gir + /usr/lib/girepository-1.0/DbusmenuGtk-*.typelib + /usr/share/gtk-doc/html/libdbusmenu-gtk + + + + libdbusmenu-gtk3 + GTK 3.x libraries for libdbusmenu + libdbusmenu için GTK 3.x kitaplıkları + + libdbusmenu-glib + libdbusmenu-common + gtk3 + atk + cairo + pango + gdk-pixbuf + + + /usr/lib/libdbusmenu-gtk3.so* + /usr/share/vala/vapi/DbusmenuGtk3-*.vapi + /usr/share/gir-1.0/DbusmenuGtk3-*.gir + /usr/lib/girepository-1.0/DbusmenuGtk3-*.typelib + + + + libdbusmenu-tools + Some examples for testing libdbusmenu + libdbusmenu testleri için çeşitli örnekler + + libdbusmenu-glib + libdbusmenu-common + json-glib + + + /usr/libexec + /usr/share/doc/libdbusmenu/*dbusmenu-bench* + + + + libdbusmenu-devel + Development files for libdbusmenu + libdbusmenu için geliştirme dosyaları + + libdbusmenu-glib + libdbusmenu-gtk + gtk2-devel + gdk-pixbuf-devel + dbus-glib-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-11-19 + 16.04.0 + Rebuild.For Beta System + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + libdbusmenu-qt + https://launchpad.net/libdbusmenu-qt + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + Qt implementation of the DBusMenu spec + DBusMenu spesifikasyonunun Qt gerçeklemesi + libdbusmenu-qt library provides a Qt implementation of the DBusMenu spec. + libdbusmenu-qt kitaplığı DBusMenu spesifikasyonunun Qt gerçeklemesini sağlar. + http://archive.ubuntu.com/ubuntu/pool/main/libd/libdbusmenu-qt/libdbusmenu-qt_0.9.3+16.04.20160218.orig.tar.gz + + libqjson-devel + mesa-devel + qt5-base-devel + doxygen + cmake + + programming/misc/libdbusmenu-qt/pspec.xml + + + libdbusmenu-qt + + qt5-base + libgcc + + + /usr/lib + /usr/share/doc + + + + libdbusmenu-qt-devel + Development files for libdbusmenu-qt + libdbusmenu-qt için geliştirme dosyaları + + libdbusmenu-qt + qt5-base-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-02 + 0.9.3_16.04.20160218 + Rebuild New qt5. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.9.3_16.04.20160218 + Rebuild New qt5. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.9.3_16.04.20160218 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 0.9.3_16.04.20160218 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.9.3_20150604 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-18 + 0.9.3_20150604 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libedit + https://www.thrysoee.dk/editline + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.misc + An autotool and libtoolized port of the NetBSD Editline library + NetBSD Editline kitaplığının Linux portu + libedit is a command line editing and history library. It is designed to be used by interactive programs that allow the user to type commands at a terminal prompt. + libedit, geçmiş bilgisini ve komut satırı düzenleme işlerini kolaylaştıran bir kitaplıktır. + http://thrysoee.dk/editline/libedit-20191231-3.1.tar.gz + + ncurses-devel + + programming/misc/libedit/pspec.xml + + + libedit + + ncurses + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libedit-devel + Development files for libedit + libedit için geliştirme dosyaları + + libedit + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-11-07 + 3.1.20191231 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 3.1.20191231 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-07-25 + 3.1.20180525 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-02 + 3.1.20170329 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-02 + 3.1_20160903 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.1_20150325 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-25 + 3.1_20150325 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libevent + http://monkey.org/~provos/libevent + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.misc + Une librairie pour exécuter une fonction lorsqu'un événement spécifique a lieu sur un descripteur (descriptor) de fichier. + A library to execute a function when a specific event occurs on a file descriptor + Dosya tanımlayıcıları üzerindeki belirli değişiklerde belirli fonksiyonların çalıştırılmasını sağlayan bir kitaplığı + The libevent API provides a mechanism to execute a callback function when a specific event occurs on a file descriptor or after a timeout has been reached. libevent is meant to replace the asynchronous event loop found in event driven network servers. An application just needs to call event_dispatch() and can then add or remove events dynamically without having to change the event loop. + libevent dosya tanımlayıcısında tanımlı bir olay oluştuğunda ya da zamanaşımı olduğunda belirlenmiş fonksiyonların çalıştırılma mekanizmasını sağlar. Olay güdümlü(event-driven) ağ sunucularının bulundurduğu asenkron olay döngülerinin(event-loop) yerine alması anlamına gelir. Uygulamanın olay döngüsünü degiştirmek zorunda kalmadan dinamik olarak olay ekleme ve silme işlemlerini yapabilmek için yalnızca event_dispatch() fonksiyonunu çağırması yeterli olur. + https://github.com/libevent/libevent/archive/release-2.1.11-stable.tar.gz + + openssl-devel + zlib-devel + + + libevent-linkage_fix.diff + libevent-2.0.13-manpages-on.patch + + programming/misc/libevent/pspec.xml + + + libevent + + openssl + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libevent-devel + Development files for libevent + libevent için geliştirme dosyaları + + libevent + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-09-15 + 2.1.11 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-12 + 2.1.11 + Version bump + İdris Kalp + aidriskalp@gmail.com + + + 2018-08-05 + 2.1.8 + Rebuild. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-02 + 2.1.8 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.0.22 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 2.0.22 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libgsf + http://www.gnome.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + GPLv2 + programming.misc + Gnome structured file library + Gnome yapılandırılmış dosya kitaplığı + The libgsf is a library for reading and writing structured files (eg MS OLE and Zip). + Libgsf MS, OLE ve Zip gibi yapılandırılmış dosyaları okuyup yazmaya yarayan bir kitaplığıdır. + mirrors://gnome/libgsf/1.14/libgsf-1.14.49.tar.xz + + libbonobo-devel + gtk2-devel + python-gtk-devel + orbit2-devel + glib2-devel + libxml2-devel + intltool + gettext-devel + perl + gobject-introspection-devel + gtk-doc + python-six + gdk-pixbuf-devel + + programming/misc/libgsf/pspec.xml + + + libgsf + app:console + library + + zlib + bzip2 + glib2 + libxml2 + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/thumbnailers/gsf-office.thumbnailer + /usr/share/gir-1.0/Gsf-1.gir + /usr/share/man + + + + libgsf-gnome + Gnome support for libgsf + libgsf için Gnome desteği + app:console + library + + libgsf + gdk-pixbuf + + + /etc + /usr/bin/gsf-office-thumbnailer + /usr/lib/libgsf-gnome* + /usr/lib/python*/site-packages/gsf/gnome* + /usr/share/man/man1/gst-office-thumbnailer* + + + + libgsf-docs + Libgsf reference documents + libgsf referans belgeleri + data:doc + + libgsf + + + /usr/share/doc + /usr/share/gtk-doc + + + + libgsf-devel + Development files for libgsf + libgsf paketi geliştirme dosyaları + library + + libgsf + libgsf-gnome + libbonobo-devel + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-01 + 1.14.49 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-28 + 1.14.48 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-25 + 1.14.47 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.14.44 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-01 + 1.14.41 + Version Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 1.14.31 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-07 + 1.14.31 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libgtop + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + System monitoring library + Sistem izleme kitaplığı + libgtop is a library to get system specific data such as CPU and Memory Usage and information about running processes. + libgtop, çalışan süreçler hakkında CPU ve bellek kullanımı gibi sistem bilgisini almak için bir kitaplığıdır. + mirrors://gnome/libgtop/2.40/libgtop-2.40.0.tar.xz + + gtk-doc + yelp-devel + glib2-devel + gobject-introspection-devel + + programming/misc/libgtop/pspec.xml + + + libgtop + + glib2 + libXau + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/locale + /usr/share/gir-1.0 + + + + libgtop-docs + libgtop reference documents + libgtop başvuru belgeleri + data:doc + + /usr/share/gtk-doc + + + + libgtop-devel + Development files for libgtop + libgtop için geliştirme dosyaları + + glib2-devel + libgtop + + + /usr/include + /usr/lib/pkgconfig + /usr/share/info + + + + + 2020-02-29 + 2.40.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libical + https://github.com/libical/libical + + Berk Çakar + berk2238@hotmail.com + + MPL-1.1 + LGPLv2 + library + programming.misc + An open source reference implementation of the icalendar data type and serialization format + icalendar veri tipi ve serileştirme biçiminin açık kaynak referans gerçeklemesi + libical is an Open Source implementation of the IETF's iCalendar Calendaring and Scheduling protocols. (RFC 2445, 2446, and 2447). It parses iCal components and provides a C API for manipulating the component properties, parameters, and subcomponents. + libical IETF'in iCalendar Takvim ve Planlama protokülün açık kaynak gerçeklemesidir. (RFC 2445, 2446, 2447) Kitaplık, iCal bileşenlerini ayrıştırır ve bileşen özelliklerini, parametrelerini ve alt bileşenlerini işlemek için bir C programlama arayüzü sunar. + https://github.com/libical/libical/releases/download/v3.0.9/libical-3.0.9.tar.gz + + cmake + db-devel + docbook-xsl + doxygen + glib2-devel + gobject-introspection-devel + gtk-doc + libxml2-devel + libxslt-devel + perl + python-six + vala + + programming/misc/libical/pspec.xml + + + libical + The Evolution Data Server package provides a unified backend for programs that work with +contacts, tasks, and calendar information. + + db + glib2 + icu4c + libgcc + gobject-introspection + + + /usr/lib + /usr/libexec/libical/ical-glib-src-generator + /usr/share/gir-1.0/* + /usr/share/libical/zoneinfo + /usr/share/vala/* + + + + libical-devel + Development files for libical + libical için geliştirme dosyaları + + db-devel + glib2-devel + icu4c-devel + libical + + + /usr/include + /usr/lib/pkgconfig + + + + libical-docs + libical reference documents + + /usr/share/gtk-doc + + + + + 2021-04-10 + 3.0.9 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2020-01-14 + 3.0.7 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-01-31 + 3.0.1 + Version Bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-12-26 + 3.0.1 + Version Bump + Mustafa Cinasal + admin@pisilinux.org + + + 2017-02-17 + 2.0.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-06 + 1.0.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libIDL + http://www.gnome.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Constructeur d'arbre CORBA + CORBA tree builder + CORBA ağacı inşa aracı + libIDL provides parsing .idl files and generate errors and warning messages in gcc-like format. + libIDL .idl dosyalarını ayrıştırmayı sağlar ve gcc biçimine benzer hata ve uyarı mesajları üretir. + mirrors://gnome/libIDL/0.8/libIDL-0.8.14.tar.bz2 + + glib2-devel + + programming/misc/libIDL/pspec.xml + + + libIDL + + glib2 + + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/doc + + + + libIDL-devel + Development files for libIDL + + libIDL + + + /usr/bin/libIDL-config-2 + /usr/lib/pkgconfig + /usr/include + + + + + 2020-01-26 + 0.8.14 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-15 + 0.8.14 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 0.8.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.8.14 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.8.14 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + libinput + http://www.freedesktop.org/wiki/Software/libinput/ + + Alihan Öztürk + alihan@pisilinux.org + + X11 + app:console + programming.misc + library that handles input devices for display servers and other applications that need to directly deal with input devices. + libinput Wayland Campasitars giriş aygıtları işlemek için ve genel X.Org giriş sürücü sağlamak için bir kütüphane. + It provides device detection, device handling, input device event processing and abstraction so minimize the amount of custom input code the user of libinput need to provide the common set of functionality that users expect. + Bu yüzden kullanıcıların beklediği fonksiyonellik ortak kümesi sağlamak için gereken özel giriş kodu compositors miktarını en az indirerek, aygıt kullanımı, giriş aygıtı olay işleme ve soyutlama sağlar. + https://www.freedesktop.org/software/libinput/libinput-1.19.3.tar.xz + + meson + gtk3-devel + valgrind-devel + libevdev-devel + check-devel + libunwind-devel + eudev-devel + libmtdev-devel + libwacom-devel + libXtst-devel + wayland-client + wayland-devel + wayland-protocols-devel + + programming/misc/libinput/pspec.xml + + + libinput + + gtk3 + eudev + cairo + glib2 + libevdev + libmtdev + libwacom + libX11 + wayland-client + + + /etc + /usr/bin + /usr/libexec/libinput + /usr/lib + /lib/udev + /usr/share/doc + /usr/share/libinput + /usr/share/zsh + /usr/share/man/man1 + + + + libinput-devel + Development files for libinput + + libinput + eudev-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-14 + 1.19.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-09 + 1.19.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 1.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-04 + 1.18.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 1.17.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 1.15.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-16 + 1.14.901 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-18 + 1.14.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-04 + 1.12.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.11.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-06 + 1.10.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-12 + 1.10.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-22 + 1.10.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-24 + 1.9.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-21 + 1.6.3 + fix pisi check. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-11 + 1.6.3 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-02-13 + 1.6.1 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-11-03 + 1.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-02 + 1.2.4 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-08 + 1.2.2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + liblrdf + http://lrdf.sourceforge.net + + Serdar Soytetir + kaptan@pisilinux.org + + GPLv2 + library + programming.misc + A lightweight RDF library with special support for LADSPA plugins + LADSPA eklentilerine özel destek sunan hafif bir RDF kitaplığı + Une librairie RDF légère avec un support spécial pour les plugins (greffons) LADSPA. + A lightweight RDF library with special support for LADSPA plugins. + LADSPA eklentilerine özel destek sunan hafif bir RDF kitaplığıdır. + Librería RDF liviana, con soporte especial para plugins LADSPA + https://github.com/swh/LRDF/archive/refs/tags/v0.6.1.tar.gz + + ladspa-sdk + raptor2-devel + + programming/misc/liblrdf/pspec.xml + + + liblrdf + + raptor2 + ladspa-sdk + + + /usr/lib + /usr/share/doc + /usr/share/ladspa + + + + liblrdf-devel + Development files for liblrdf + liblrdf için geliştirme dosyaları + + liblrdf + + + /usr/include + /usr/lib/pkgconfig + + + + + 2012-10-09 + 0.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + libnotify + http://www.galago-project.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + Desktop notification library + Masaüstü bildirim kitaplığı + Envoie les notifications bureautiques à un daemon de notification. + libnotify sends desktop notifications to a notification daemon. + Libnotify, masaüstü uyarılarını uyarı birimine gönderir. + Envía notificaciones de escritorio al demonio de notificaciones + https://download.gnome.org/sources/libnotify/0.7/libnotify-0.7.12.tar.xz + + gobject-introspection-devel + gdk-pixbuf-devel + python-pyatspi + libXtst-devel + gnome-common + gtk3-devel + gtk-doc + xmlto + meson + + programming/misc/libnotify/pspec.xml + + + libnotify + Desktop notification library + + gdk-pixbuf + libXtst + glib2 + + + /usr/share/doc/libnotify/COPYING + /usr/share/gir-1.0/ + /usr/bin + /usr/lib + + + + libnotify-devel + Development files for libnotify + libnotify için geliştirme dosyaları + libnotify-devel, libnotify için geliştirme dosyalarını içerir. + + libnotify + gdk-pixbuf-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libnotify-docs + Documentation files for libnotify + libnotify için belgelendirme dosyaları + libnotify-docs, libnotify için belgelendirme dosyalarını içerir. + + libnotify + + + /usr/share/doc/libnotify/SPECIFICATION + /usr/share/doc/libnotify/README* + /usr/share/doc/libnotify/spec + /usr/share/gtk-doc/html + + + + + 2022-05-31 + 0.7.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 0.7.8 + Clean and split docs. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-17 + 0.7.8 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-07-31 + 0.7.7 + Rebuild New T + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 0.7.7 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 0.7.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 0.7.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + liboauth + http://liboauth.sourceforge.net + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + MIT + library + programming.misc + C library implementing the OAuth secure authentication protocol + liboauth is a collection of POSIX-c functions implementing the OAuth Core RFC 5849 standard. + mirrors://sourceforge/liboauth/liboauth-1.0.3.tar.gz + + curl-devel + nss-devel + + + liboauth-1.0.1-doxygen-out-of-tree.patch + liboauth-1.0.3-openssl-1.1.patch + liboauth-1.0.3-openssl-1.1_2.patch + + programming/misc/liboauth/pspec.xml + + + liboauth + + nss + curl + nspr + + + /usr/lib/lib*.so* + /usr/share/licenses + /usr/share/man + /usr/share/doc + + + + liboauth-devel + Development files for liboauth + + liboauth + nss-devel + curl-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-05-28 + 1.0.3 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + libofa + https://code.google.com/archive/p/musicip-libofa/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + The Open Fingerprint Architecture library + Müzik dosyaları için akustik parmak izi oluşturma kitaplığı + libofa is a library for generating acoustic fingerprints that can be used to identify music files using the MusicDNS service. + libofa, MısicDNS servisini kullanarak müzik dosyalarının akustik parmak izini oluşturmak için kullanılan bir kitaplığıdır. + https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/musicip-libofa/libofa-0.9.3.tar.gz + + fftw3-devel + expat-devel + curl-devel + + + compile.patch + gcc44.patch + pkgconfig.patch + libofa-0.9.3-gcc47.patch + libofa-0.9.3-curl.patch + + programming/misc/libofa/pspec.xml + + + libofa + + fftw3 + expat + libgcc + + + /usr/lib + /usr/share/doc + + + + libofa-devel + Development files for libofa + libofa için geliştirme dosyaları + + libofa + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-08 + 0.9.3 + Rebuild. + Pisi Linux Admins + admins@pisilinux.org + + + 2018-08-19 + 0.9.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + 2017-01-07 + 0.9.3 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + libqjson + http://qjson.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Qt-based library that maps JSON data to QVariant objects + Qt tabanlı bu kitaplığı JSON data haritalarını QVariant nesnelere dönüştürür + Implementacja Qt formatu JSON + libqjson, (JavaScript Object Notation) is a lightweight data-interchange format. It can represents integer, real number, string, an ordered sequence of value, and a collection of name/value pairs. + libqjson, (JavaScript Object Notation) bir veri değişim biçimidir. JSON haritalarını QVariant nesnelere dönüştürür.. + http://source.pisilinux.org/1.0/qjson-0.82_d0f62e65.tar.gz + + qt5-base-devel + cmake + + programming/misc/libqjson/pspec.xml + + + libqjson + + qt5-base + libgcc + + + /usr/lib + /usr/share/doc + + + + libqjson-devel + Development files for libqjson + libqjson için geliştirme dosyaları + Pliki nagłówkowe do libqjson + + libqjson + qt5-base-devel + + + /usr/include/qjson + /usr/lib/pkgconfig + /usr/lib/cmake/qjson + + + + + 2018-08-07 + 0.82_p1 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2017-04-30 + 0.82_p1 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.82_p1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-18 + 0.82_p1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libsigc++ + https://libsigcplusplus.github.io/libsigcplusplus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Système de rappels à types sûrs (typesafe callback) pour C++. + Typesafe signal framework for C++ + C++ için sinyal altyapısı + libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. + libsigc++, widget kitaplıkları, soyut arabirimlerde ve genel programlama esnasında kullanılmak üzere tasarlanmış bir sinyal ve callback altyapısıdır. + mirrors://gnome/libsigc++/2.10/libsigc++-2.10.8.tar.xz + + mm-common + + programming/misc/libsigc++/pspec.xml + + + libsigc++ + + libgcc + + + /usr/lib + /usr/share/doc + + + + libsigc++-devel + Development files for libsigc++ + libsigc++ için geliştirme dosyaları + + libsigc++ + + + /usr/include + /usr/lib/sigc++*/include + /usr/lib/pkgconfig + + + + libsigc++-docs + Development documents for libsigc++ + libsigc++ için geliştirme belgeleri + + /usr/share/doc/libsigc++/html + + + + + 2022-06-01 + 2.10.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-26 + 2.10.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 2.10.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-12 + 2.10.2 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 2.10.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.10.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-21 + 2.4.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libsigc++3 + https://libsigcplusplus.github.io/libsigcplusplus/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + Typesafe signal framework for C++ + libsigc++ is a library which implements a full callback system for use in widget libraries, abstract interfaces, and general programming. + mirrors://gnome/libsigc++/3.0/libsigc++-3.0.7.tar.xz + + mm-common + + programming/misc/libsigc++3/pspec.xml + + + libsigc++3 + + libgcc + + + /usr/lib + /usr/share/doc + + + + libsigc++3-devel + Development files for libsigc++3 + + libsigc++3 + + + /usr/include + /usr/lib/sigc++*/include + /usr/lib/pkgconfig + + + + libsigc++3-docs + Development documents for libsigc++ + + /usr/share/doc/libsigc++-3.0/ + + + + + 2021-07-25 + 3.0.7 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + libsoup + http://live.gnome.org/LibSoup + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + An HTTP library implementation in C + C için HTTP kitaplık gerçekleyicisi + libsoup is an HTTP client/server library for GNOME. + libsoup, GNOME için HTTP istemci / sunucu kitaplığıdır. + mirrors://gnome/libsoup/2.74/libsoup-2.74.2.tar.xz + + meson + libgcrypt-devel + gtk-doc + mit-kerberos + python3-devel + glib2-devel + libxml2-devel + sqlite-devel + intltool + gettext-devel + vala-devel + libpsl-devel + zlib-devel + mit-kerberos-devel + python-six + glib-networking + sysprof-devel + gobject-introspection-devel + + programming/misc/libsoup/pspec.xml + + + libsoup + + glib2 + libxml2 + sqlite + libpsl + zlib + mit-kerberos + glib-networking + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/vala + /usr/share/locale/ + /usr/lib/girepository-1.0/Soup-2.4.typelib + + + + libsoup-gnome + + glib2 + libsoup + + + /usr/lib/lib*gnome* + /usr/lib/girepository-1.0/SoupGNOME-2.4.typelib + + + + libsoup-docs + libsoup reference documents + libsoup başvuru belgeleri + data:doc + + libsoup + + + /usr/share/gtk-doc + + + + libsoup-devel + Development files for libsoup + libsoup için geliştirme dosyaları + + zlib-devel + glib2-devel + sqlite-devel + libpsl-devel + libxml2-devel + sysprof-devel + gobject-introspection-devel + libsoup + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2022-06-02 + 2.74.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-25 + 2.74.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 2.74.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-17 + 2.74.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-23 + 2.74.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-27 + 2.72.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.68.3 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-19 + 2.62.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 2.61.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-07 + 2.61.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 2.56.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.54.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-08 + 2.54.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-06-14 + 2.50.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libsoup3 + http://live.gnome.org/LibSoup + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + An HTTP library implementation in C + libsoup is an HTTP client/server library for GNOME. + https://download.gnome.org/sources/libsoup/3.0/libsoup-3.0.6.tar.xz + + meson + libgcrypt-devel + gtk-doc + mit-kerberos + python3-devel + glib2-devel + libxml2-devel + sqlite-devel + intltool + gettext-devel + vala-devel + libpsl-devel + zlib-devel + mit-kerberos-devel + python-six + glib-networking + sysprof-devel + libnghttp2-devel + gobject-introspection-devel + + programming/misc/libsoup3/pspec.xml + + + libsoup3 + + glib2 + libxml2 + sqlite + libpsl + zlib + libnghttp2 + mit-kerberos + glib-networking + + + /usr/lib + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/vala + /usr/share/locale/ + /usr/lib/girepository-1.0/Soup-2.4.typelib + + + + libsoup3-docs + libsoup reference documents + data:doc + + libsoup3 + + + /usr/share/gtk-doc + + + + libsoup3-devel + Development files for libsoup3 + + zlib-devel + glib2-devel + sqlite-devel + libpsl-devel + libxml2-devel + sysprof-devel + libnghttp2-devel + gobject-introspection-devel + libsoup3 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2022-05-31 + 3.0.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-06 + 3.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-25 + 3.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-26 + 3.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-08 + 2.99.8 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + libspectre + http://libspectre.freedesktop.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + A small library for rendering Postscript documents + Postscript belgeleri görüntüleştirme için küçük bir kitaplığı + libspectre is a small library for rendering Postscript documents. It provides a convenient easy to use API for handling and rendering Postscript documents. + libspectre, postscript belgeleri görüntüleştirme için kullanımı kolay bir API sağlar. + http://libspectre.freedesktop.org/releases/libspectre-0.2.8.tar.gz + + ghostscript-devel + cairo-devel + + + libspectre-0.2.7-gs918.patch + + programming/misc/libspectre/pspec.xml + + + libspectre + + ghostscript + + + /usr/lib + /usr/share/doc + + + + libspectre-devel + Development files for libspectre + libspectre için geliştirme dosyaları + + libspectre + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libspectre-32bit + 32-bit shared libraries for libspectre + emul32 + emul32 + + ghostscript-32bit + cairo-32bit + + + libspectre + ghostscript-32bit + + + /usr/lib32 + + + + + 2018-08-08 + 0.2.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 0.2.8 + Version Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.2.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-02 + 0.2.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libtalloc + https://talloc.samba.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + programming.misc + Hierarchical pool based memory allocator + Bellek yönetim kitaplığı + libtalloc is a library which implements a hierarchical allocator with destructors which is the core memory allocator in samba. + libtalloc, samba hizmetinin temel bellek ayırıcısını oluşturan hiyerarşik havuz tabanlı ayırıcıyı gerçekleyen kitaplıktır. + https://www.samba.org/ftp/talloc/talloc-2.3.4.tar.gz + + docbook-xsl + libxslt-devel + python-devel + python3-devel + libbsd-devel + attr-devel + libtirpc-devel + rpcsvc-proto-devel + + programming/misc/libtalloc/pspec.xml + + + libtalloc + + python + python3 + libbsd + attr + + + /usr/lib + /usr/share/man + /usr/share/doc + + + + libtalloc-devel + Development files for libtalloc + libtalloc için geliştirme dosyaları + + libtalloc + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + /usr/share/man/man3 + + + + libtalloc-32bit + 32-bit shared libraries for libtalloc + libtalloc için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxslt-32bit + attr-32bit + + + attr-32bit + libtalloc + + + /usr/lib32 + + + + + 2022-06-10 + 2.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-23 + 2.3.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-20 + 2.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.3.1 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2019-04-04 + 2.1.16 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 2.1.14 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-08 + 2.1.13 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-27 + 2.1.10 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 2.1.8 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-07-25 + 2.1.6 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 2.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-28 + 2.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libtevent + http://tevent.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + programming.misc + Event system based on the talloc memory management library + talloc bellek yönetim kitaplığına dayanan olay sistemi kitaplığı + libtevent is an event system based on the talloc memory management library. It is the core event system used in Samba. Tevent has support for many event types, including timers, signals, and the classic file descriptor events. + libtevent Samba uygulamasının en temel olay sistem kitaplığıdır. Zamanlayıcı, dosya tanımlayıcı gibi çeşitli olay türlerini desteklemektedir. + https://www.samba.org/ftp/tevent/tevent-0.12.1.tar.gz + + python-devel + python3-devel + libbsd-devel + gdb-devel + libtalloc-devel + libxslt + docbook-xsl + libtirpc-devel + rpcsvc-proto-devel + cmocka-devel + + programming/misc/libtevent/pspec.xml + + + libtevent + + libtalloc + libbsd + python + python3 + + + /usr/lib + + + + libtevent-devel + Development files for libtevent + libtevent için geliştirme dosyaları + + libtevent + libtalloc-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-06-10 + 0.12.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 0.10.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-19 + 0.10.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 0.10.2 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2019-04-04 + 0.9.39 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 0.9.37 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-08 + 0.9.36 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-27 + 0.9.34 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 0.9.31 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 0.9.28 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-09 + 0.9.25 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 0.9.25 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libunique + https://wiki.gnome.org/Attic/LibUnique + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A library for writing single instance applications + Basit ve örnek uygulamalar yazmak için kitaplığı + Unique is a library for writing single instance applications. If you launch a single instance application twice, the second instance will either just quit or will send a message to the running instance. + Unique, basit ve örnek uygulamalar yazmak için bir kitaplığıdır. Eğer örnek uygulama iki kere başlatılırsa; ikincisi ya kapanacak, ya da birincisine mesaj gönderecektir. + https://download.gnome.org/sources/libunique/1.1/libunique-1.1.6.tar.bz2 + + dbus-glib-devel + gtk2-devel + gtk-doc + intltool + libxslt-devel + docbook-xsl + python-six + gobject-introspection-devel + + + libunique-1.1.6-upstream_fixes-1.patch + 99_ltmain_as-needed.patch + fix-disable-deprecated.patch + + programming/misc/libunique/pspec.xml + + + libunique + + gtk2 + glib2 + libX11 + dbus-glib + + + /usr/lib + /usr/share + /usr/share/doc + + + + libunique-devel + libunique development files + libunique geliştirme dosyaları + + libunique + gtk2-devel + + + /usr/lib/pkgconfig + /usr/include + + + + libunique-docs + Unique reference documents + libunique belgeleri + data:doc + + libunique + + + /usr/share/gtk-doc + + + + + 2021-05-25 + 1.1.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-30 + 1.1.6 + Rebuild + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 1.1.6 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + libwpd + http://libwpd.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C++ library designed to help process WordPerfect documents + WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığı + Library that handles Word Perfect documents. + Libwpd WordPerfect belgeleri oluşturmak için yardımcı C++ kitaplığıdır. + mirrors://sourceforge/libwpd/libwpd-0.10.3.tar.xz + + doxygen + libgsf-devel + boost-devel + librevenge-devel + libtool + grep + pkgconfig + + programming/misc/libwpd/pspec.xml + + + libwpd + + librevenge + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwpd-devel + Development files for libwpd + libwpd için geliştirme dosyaları + + libwpd + librevenge-devel + + + /usr/include + /usr/lib/pkgconfig + + + + libwpd-docs + Documentation for libwpd + + /usr/share/doc/libwpd/html + + + + + 2021-10-21 + 0.10.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-10 + 0.10.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-22 + 0.10.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 0.10.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-16 + 0.10.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-06 + 0.10.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libwpg + http://libwpg.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C++ library designed to help process WordPerfect Graphics documents + WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığı + Libwpg project is a library and to work with graphics in WPG (WordPerfect Graphics) format. WPG is the format used among others in Corel sofware, such as WordPerfect and Presentations. + Libwpg WordPerfect grafik belgelerini oluşturmak için yardımcı C++ kitaplığıdır. + https://sourceforge.net/projects/libwpg/files/libwpg/libwpg-0.3.3/libwpg-0.3.3.tar.xz + + doxygen + libwpd-devel + libtool + grep + pkgconfig + + programming/misc/libwpg/pspec.xml + + + libwpg + + libwpd + librevenge + libgcc + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwpg-devel + Development files for libwpg + libwpg için geliştirme dosyaları + + libwpd-devel + librevenge-devel + libwpg + + + /usr/include + /usr/lib/pkgconfig + + + + libwpg-docs + Documentation for libwpg + + /usr/share/doc/libwpg/html + + + + + 2021-10-21 + 0.3.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2021-03-10 + 0.3.3 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-22 + 0.3.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 0.3.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-16 + 0.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-02 + 0.3.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libwps + http://sourceforge.net/projects/libwps + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + programming.misc + Microsoft Works format import library + Microsoft Works biçimi için bir kitaplık + libwps is a Microsoft Works file format import filter based on top of the libwpd (which is already used in three word processors). + libwps, (halihazırda 3 kelime işlemci tarafından kullanılan) libwpd tabanlı bir Microsoft Works dosya biçimi ithal filtresidir. + https://sourceforge.net/projects/libwps/files/libwps/libwps-0.4.12/libwps-0.4.12.tar.xz + + boost-devel + libwpd-devel + librevenge-devel + + programming/misc/libwps/pspec.xml + + + libwps + + libgcc + librevenge + + + /usr/lib + /usr/share/doc + /usr/bin + + + + libwps-devel + Development files for libwps + libwps için geliştirme dosyaları + + librevenge-devel + libwps + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-21 + 0.4.12 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2021-03-10 + 0.4.12 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2020-02-22 + 0.4.10 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2018-09-16 + 0.4.10 + First release + PisiLinux Community + admins@pisilinux.org + + + 2018-03-22 + 0.4.8 + First release + PisiLinux Community + admins@pisilinux.org + + + 2017-01-01 + 0.4.4 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libxklavier + http://www.freedesktop.org/Software/LibXklavier + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + programming.misc + High level XKB library + Yüksek seviyeli bir XKB kitaplığı + libxklavier is a library can be used to develop XKB-based applications. + libxklavier, XKB tabanlı uygulamalar geliştirmek için kullanılabilen bir kitaplığıdır. + http://cgit.freedesktop.org/libxklavier/snapshot/libxklavier-5.4.zip + + libxkbfile-devel + libxkbcommon-devel + libXfixes-devel + xkeyboard-config + gobject-introspection-devel + libXi-devel + iso-codes-devel + vala-devel + glib2-devel + libX11-devel + libxml2-devel + gtk-doc + intltool + python-six + + programming/misc/libxklavier/pspec.xml + + + libxklavier + + libxkbfile + libXi + iso-codes + glib2 + libX11 + libxml2 + + + /usr/lib + /usr/share/doc + /usr/share + /usr/share/libxklavier + + + + libxklavier-devel + Development files for libxklavier + libxklavier için geliştirme dosyaları + + glib2-devel + libxml2-devel + libxklavier + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-03-15 + 5.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-20 + 5.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-05 + 5.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-30 + 5.4 + Rebuild + Kamil Atlı + admin@pisilinux.org + + + 2016-07-02 + 5.4 + First release + PisiLinux Community + admin@pisilinux.org + + + + + + libxmlb + https://github.com/hughsie/libxmlb + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + programming.library + Library for querying compressed XML metadata + A library to help create and query binary XML blobs + Library for querying compressed XML metadata + A library to help create and query binary XML blobs + https://people.freedesktop.org/~hughsient/releases/libxmlb-0.2.0.tar.xz + + meson + gtk-doc + docbook-xsl + glib2-devel + shared-mime-info + gobject-introspection-devel + + programming/misc/libxmlb/pspec.xml + + + libxmlb + Library for querying compressed XML metadata + + glib2 + + + /usr/share/doc + /usr/share/gir-1.0 + /usr/share/gtk-doc + /usr/lib/libxmlb.* + /usr/lib/xb-tool + /usr/share/girepository-1.0 + /usr/lib/girepository-1.0 + + + + libxmlb-devel + Development files for libxmlb + libxmlb için geliştirme dosyaları + libxmlb-devel, libxmlb için geliştirme dosyalarını içerir. + + glib2-devel + libxmlb + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-02 + 0.2.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-01 + 0.1.14 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libxmlpp + http://libxmlplusplus.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + C++ wrapper for the libxml2 XML parser library + libxml++ is a C++ wrapper for the libxml XML parser library. + http://ftp.acc.umu.se/pub/GNOME/sources/libxml++/3.2/libxml++-3.2.0.tar.xz + + glibmm-devel + libsigc++-devel + libxml2-devel + + programming/misc/libxmlpp/pspec.xml + + + libxmlpp + + libgcc + libxml2 + glibmm + + + /usr/lib + /usr/share/doc + + + + libxmlpp-devel + Development files for libxmlpp + libxmlpp için geliştirme dosyaları + + libxmlpp + glibmm-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/libxml++-2.6 + + + + libxmlpp-docs + Development documents for libxmlpp in HTML + libxmlpp için HTML formatında geliştirme belgeleri + + /usr/share/doc/libxmlpp/html + /usr/share/devhelp + + + + + 2020-01-12 + 3.2.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 3.0.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 2.40.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.38.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-21 + 2.38.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libyaml + http://pyyaml.org/wiki/LibYAML + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + YAML 1.1 parser and emitter written in C + C ile yazılmış YAML 1.1 ayrıştırıcısı + libyaml is a YAML 1.1 parser and emitter written in C. + libyaml C ile yazılmış bir YAML 1.1 ayrıştırıcısıdır. + http://pyyaml.org/download/libyaml/yaml-0.2.2.tar.gz + programming/misc/libyaml/pspec.xml + + + libyaml + YAML 1.1 parser and emitter written in C + + /usr/lib + /usr/share/doc + + + + libyaml-devel + Development headers for libyaml + libyaml için başlık dosyaları + libyaml-devel provides development headers for libyaml. + libyaml-devel, libyaml için başlık dosyalarını içerir. + + libyaml + + + /usr/include + /usr/lib/pkgconfig + + + + libyaml-docs + Documentation files for libyaml + libyaml için belgelendirme dosyaları + libyaml-docs, libyaml için belgelendirme dosyalarını içerir. + + libyaml + + + /usr/share/doc/libyaml/html/ + + + + + 2020-11-07 + 0.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 0.2.2 + Rebuilt for the new toolchain + Blue Devil + bluedevil@sctzine.com + + + 2019-10-03 + 0.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.1.7 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-09-20 + 0.1.7 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 0.1.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-22 + 0.1.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + log4c + http://log4c.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C library for flexible logging + C için bir günlük kitaplığı + log4c is a C language library for flexible logging to files, syslog and other destinations. It is modeled after the Log for Java library (log4j), staying as close to their API as is reasonable. + log4c, dosyalara, syslog hizmetine ve diğer hedeflere kolayca günlük tutmayı sağlayan bir C kitaplığıdır. + mirrors://sourceforge/log4c/log4c-1.2.4.tar.gz + programming/misc/log4c/pspec.xml + + + log4c + A C library for flexible logging + + /usr/lib + /usr/share/doc + /usr/share/man + + + + log4c-devel + Development files for log4c + log4c için geliştirme dosyaları + log4c-devel, log4c için geliştirme dosyalarını içerir. + + log4c + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + + + + + 2020-01-23 + 1.2.4 + Rebuild for new toolchain + Blue Devil + bluedevil@sctzine.com + + + + + + npth + http://git.gnupg.org/cgi-bin/gitweb.cgi?p=npth.git + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.misc + New portable threads library + Yeni GNU Taşınabilir iş parçacıkları kitaplığı + Un librairie de threads portable pour les plateformes Unix. Elle permet la synchronisation non-préemptive pour l'exécution de threads ("multithreading") au sein d'applications serveur. + is a non-preemptive threads implementation using an API very similar to the one known from GNU Pth. It has been designed as a replacement of GNU Pth for non-ancient operating systems. + Pth Unix platformları için derlenmiş taşınabilir kitaplığıdır. Bir çok iç sunucu uygulamalarının yerine getirilmesi işlerinin öncelikli olmayan planlamasını yapar. + ftp://ftp.gnupg.org/gcrypt/npth/npth-1.6.tar.bz2 + programming/misc/npth/pspec.xml + + + npth + + /usr/lib + /usr/share/doc + + + + npth-devel + Development files for pth + npth için geliştirme dosyaları + + npth + + + /usr/bin/npth-config + /usr/include + /usr/share/aclocal + /usr/share/man + + + + + 2020-01-19 + 1.6 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 1.5 + Rebuild. + Mustafa Cianasal + muscnsl@gmail.com + + + 2018-02-21 + 1.5 + Version Bump + Mustafa Cianasal + muscnsl@gmail.com + + + 2017-03-05 + 1.3 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-12 + 1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + oniguruma + https://github.com/kkos/oniguruma/ + + İdris Kalp + idriskalp@gmail.com + + BSD + library + programming.misc + A regular expressions library + Oniguruma is a modern and flexible regular expressions library. It encompasses features from different regular expression implementations that traditionally exist in different languages. + https://github.com/kkos/oniguruma/archive/refs/tags/v6.9.7.1.tar.gz + + gettext-devel + + programming/misc/oniguruma/pspec.xml + + + oniguruma + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/ + /usr/share/man/man1 + + + + oniguruma-devel + Development files for oniguruma + + oniguruma + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-09 + 6.9.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-08 + 6.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-22 + 6.9.4 + First release. + İdris Kalp + idriskalp@gmail.com + + + + + + openmp + https://openmp.llvm.org/ + + Idris Kalp + idriskalp@gmail.com + + MIT + library + programming.misc + LLVM OpenMP runtime library + LLVM OpenMP çalışma zamanı kitaplığı + openmp provides runtime for OpenMP by LLVM + openmp, LLVM tarafından OpenMP çalışma zamanı kitaplıklarını içerir + https://github.com/llvm/llvm-project/releases/download/llvmorg-11.0.0/openmp-11.0.0.src.tar.xz + + cmake + libffi-devel + elfutils-devel + + programming/misc/openmp/pspec.xml + + + openmp + + llvm-libs + libcxx + + + /usr/lib + /usr/share/doc + + + + openmp-32bit + openmp 32-bit libraries + openmp 32-bit kitaplıkları + emul32 + emul32 + + libffi-32bit + elfutils-32bit + + + openmp + libcxx-32bit + + + /usr/lib32 + + + + openmp-devel + Development files for openmp + openmp için geliştirme dosyaları + + openmp + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2020-11-14 + 11.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-28 + 10.0.0 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + physfs + http://icculus.org/physfs/ + + PisiLinux Community + admins@pisilinux.org + + ZLIB + library + programming.misc + Filesystem library + Dosya sistemi kitaplığı + Warstwa abstrakcji plików dla gier + Couche d'abstraction pour les systèmes de fichier, généralement utilisée par les jeux. + Abstraction layer for filesystems. + physfs dosya sistemi katmanı kitaplığıdır. + Capa de abstracción para sistemas de archivos, comúnmente utilizado en juegos + PhysicsFS to biblioteka udostępniająca abstrakcyjny dostęp do różnych archiwów. + http://icculus.org/physfs/downloads/physfs-3.0.1.tar.bz2 + + cmake + zlib + + programming/misc/physfs/pspec.xml + + + physfs + + /usr/lib + /usr/share/doc + + + + physfs-devel + Development files for physfs + physfs için geliştirme dosyaları + + physfs + + + /usr/include + + + + + 2018-09-09 + 3.0.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-08 + 2.0.3 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 2.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-11 + 2.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + qd + https://www.davidhbailey.com/dhbsoftware/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + app:console + programming.misc + C++/Fortran-90 double-double and quad-double library. + C++/Fortran-90 double-double ve quad-double için C kitaplığı. + A double-double and quad-double package for Fortran and C++. + qd, C++/Fortran-90 double-double ve quad-double için C kitaplığı sunar. + https://www.davidhbailey.com/dhbsoftware/qd-2.3.22.tar.gz + programming/misc/qd/pspec.xml + + + qd + C++/Fortran-90 double-double and quad-double library. + + /usr/share + /usr/lib + /usr/bin + /usr/share/doc/qd + + + + qd-devel + Development files for qd + qd için geliştirme dosyaları + qd-devel, qd için geliştirme dosyalarını içerir. + + qd + + + /usr/include + + + + + 2020-05-20 + 2.3.22 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + qml-box2d + https://github.com/qml-box2d/qml-box2d + + Berk Çakar + berk2238@hotmail.com + + BSD + programming.misc + Box2D QML plugin + Box2D QML plugin + https://github.com/qml-box2d/qml-box2d/archive/1b37be7d9dfb44ec6d520595a4e4f45f63717822.zip + + qt5-declarative-devel + + programming/misc/qml-box2d/pspec.xml + + + qml-box2d + Box2D QML plugin + + qt5-declarative + qt5-base + libgcc + + + /usr/lib + + + + + 2021-04-24 + 20160102 + First release + Berk Çakar + berk2238@hotmail.com + + + + + + qrencode + http://fukuchi.org/works/qrencode/index.en.html + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + programming.misc + A C library for encoding data in a QR code symbol + QR kod sembolüne veri gömmek için bir kitaplık + qrencode is a C library for encoding data in a QR Code symbol, a kind of 2D symbology that can be scanned by handy terminals such as a mobile phone with CCD. The capacity of QR Code is up to 7000 digits or 4000 characters, and is highly robust. + qrencode, cep telefonları gibi mobil cihazlar tarafından kolaylıkla taranabilen, 2 boyutlu bir sembol olan QR kod içerisinde veri gömmek için kullanılan bir kitaplıktır. + http://fukuchi.org/works/qrencode/qrencode-4.0.2.tar.gz + + libsdl-devel + m4 + gettext-devel + libpng-devel + + programming/misc/qrencode/pspec.xml + + + qrencode + + libpng + + + /usr/lib + /usr/bin/qrencode + /usr/share/man/man1 + /usr/share/doc + + + + qrencode-devel + Development files for qrencode + qrencode için geliştirme dosyaları + + qrencode + + + /usr/include + /usr/lib/pkgconfig + + + + + 2018-09-02 + 4.0.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-01 + 3.4.4 + Rebuild for new Toolchain + Kamil Atlı + suvari@pisilinux.org + + + 2016-05-22 + 3.4.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-02-22 + 3.4.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + ragel + http://www.complang.org/ragel/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + programming.misc + Ragel compiles executable finite state machines from regular languages. + Ragel compiles executable finite state machines from regular languages. Ragel targets C, C++, Obj-C, C#, D, Java, Go and Ruby. + http://www.colm.net/files/ragel/ragel-6.10.tar.gz + programming/misc/ragel/pspec.xml + + + ragel + + libgcc + + + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/vim/ + + + + + 2018-09-09 + 6.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-30 + 6.10 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 6.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-19 + 6.9 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + raptor2 + http://librdf.org/raptor + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + programming.misc + The RDF Parser Toolkit + RDF ayrıştırıcı araç kiti + Raptor est une boîte à outils d'analyse RDF pour Redland fournissant un ensemble d'analyseurs et de sérialiseurs (serializers) pour Resource Description Framework (RDF - Cadre de Développement pour description de ressource). + Raptor2 is the RDF Parser Toolkit for Redland that provides a set of Resource Description Framework (RDF) parsers and serializers. + librdf, RDF ayrıştırıcılar ve yorumlayıcılar için gerekli kitaplığı ve araçları içerir. + http://download.librdf.org/source/raptor2-2.0.15.tar.gz + + gtk-doc + python-six + curl-devel + icu4c-devel + glib2-devel + libxslt-devel + + programming/misc/raptor2/pspec.xml + + + raptor2 + library + + curl + icu4c + libxml2 + libxslt + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/man/man1 + + + + raptor2-devel + Development headers for raptor2 + Raptor için başlık dosyaları + raptor2-devel raptor2 için başlık dosyalarını içerir. + library + + raptor2 + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/bin/raptor-config + /usr/share/man/man1/raptor-config.1 + + + + raptor2-docs + Documentation files for raptor + Raptor için belgelendirme dosyaları + raptor2-docs raptor2 için belgelendirme dosyalarını içerir. + data:doc + + raptor2 + + + /usr/share/doc/raptor2/html + + + + + 2020-02-26 + 2.0.15 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-16 + 2.0.15 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2018-02-01 + 2.0.15 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + rasqal + http://librdf.org/rasqal + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2 + Apache-2.0 + app:console + library + programming.misc + Library that handles Resource Description Framework (RDF) + RDF (Resource Description Framework) işleme kitaplığı + Rasqal is a C library that handles Resource Description Framework (RDF) query syntaxes, query construction and query execution returning result bindings. The supported query languages are SPARQL and RDQL. + Rasqal RDF (Resource Description Framework) sözdizimindeki sorguları işleyebilen bir C kitaplığıdır. SPARQL ve RDQL biçimlerini destekler. + http://download.librdf.org/source/rasqal-0.9.33.tar.gz + + raptor2-devel + libpcre-devel + libxml2-devel + mpfr-devel + + programming/misc/rasqal/pspec.xml + + + rasqal + + raptor2 + libpcre + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + rasqal-devel + Development files for rasqal + rasqal için geliştirme dosyaları + library + + rasqal + raptor2-devel + + + /usr/bin/rasqal-config + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/man/man1/rasqal-config* + + + + rasqal-docs + Development documents for rasqal in HTML format + rasqal için HTML formatında geliştirme belgeleri + data:doc + + /usr/share/doc/rasqal/html + + + + + 2020-02-26 + 0.9.33 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-02 + 0.9.33 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-03 + 0.9.33 + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + redland + http://librdf.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + Apache-2.0 + library + programming.misc + High-level interface for the Resource Description Framework + RDF (Resource Description Framework) için üst seviye katman kitaplıkları + Redland is a set of free software C libraries that provide support for the Resource Description Framework (RDF). + Redland, RDF (Resource Description Framework) desteği sağlayan C kitaplıklarından oluşur. + http://download.librdf.org/source/redland-1.0.17.tar.gz + + rasqal-devel + unixODBC-devel + + programming/misc/redland/pspec.xml + + + redland + + rasqal + raptor2 + unixODBC + libtool-ltdl + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/gtk-doc/html/redland/ + /usr/share/man + /usr/share/redland + + + + redland-devel + Development files for redland + redland için geliştirme dosyaları + + redland + raptor2-devel + rasqal-devel + + + /usr/include + /usr/bin/redland-config + /usr/lib/pkgconfig + /usr/share/man/man1/redland-config* + + + + + 2020-02-26 + 1.0.17 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-02 + 1.0.17 + First Relase + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-03-04 + 1.0.17 + First Relase + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + rnnoise + https://gitlab.xiph.org/xiph/rnnoise + + Pisi Linux Admins + admin@pisilinux.org + + custom + library + programming.misc + Recurrent neural network for audio noise reduction + Recurrent neural network for audio noise reduction + Ses gürültüsünü azaltmak için tekrarlayan sinir ağı + Ses gürültüsünü azaltmak için tekrarlayan sinir ağı + https://gitlab.xiph.org/xiph/rnnoise/-/archive/7f449bf8bd3b933891d12c30112268c4090e4d59/rnnoise-7f449bf8bd3b933891d12c30112268c4090e4d59.tar.gz + programming/misc/rnnoise/pspec.xml + + + rnnoise + + /usr/lib + /usr/share + /usr/share/doc + + + + rnnoise-devel + Development files for rnnoise + + rnnoise + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-09-23 + 0.4.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + setconf + http://setconf.roboticoverlords.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + console + programming.misc + Utility to easily change settings in configuration files + setconf, Utility to easily change settings in configuration files + http://setconf.roboticoverlords.org/setconf-0.7.5.tar.xz + programming/misc/setconf/pspec.xml + + + setconf + + /usr/share/man + /usr/share/doc + /usr/bin + + + + + 2020-01-15 + 0.7.5 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-09-08 + 0.7.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-06 + 0.7.5 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2014-07-04 + 0.6.2 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + source-highlight + https://www.gnu.org/software/src-highlite/ + + Blue DeviL + bluedevil@sctzine.com + + GPL + app::console + programming.misc + Source code to syntax highlighted document converter. + Kaynak koddan sözdizim renklendirmesi olan belgeye çeviriciç + source-highlight, given a source file, produces a document with syntax highlighting. It also provides a C++ highlight library. + source-highlight, verilen kaynak kodu sözdizim kurallarına göre renklendirip belgeye çeviren yazılımdır. + https://ftp.gnu.org/gnu/src-highlite/source-highlight-3.1.9.tar.gz + + ctags + boost-devel + + programming/misc/source-highlight/pspec.xml + + + source-highlight + Source code to syntax highlighted document converter. + app::console + + boost + + + /usr/share/man + /usr/bin + /usr/share/info + /usr/share/source-highlight + /usr/lib/libsource-highlight* + /usr/share/bash-completion/completions/source-highlight + + + + source-highlight-devel + Development headers for source-highlight + source-highlight için geliştirme dosyaları + source-highlight-devel provides development headers for source-highlight. + source-highlight-devel, source-highlight için geliştirme dosyalarını içerir. + library + + source-highlight + + + /usr/include + /usr/lib/pkgconfig + + + + source-highlight-docs + Documentation files for source-highlight + source-highlight için belgelendirme dosyaları + source-highlight-docs provides documentation files for source-highlight. + source-highlight-docs, source-highlight için belgelendirme dosyalarını içerir. + data:doc + + source-highlight + + + /usr/share/doc/source-highlight + + + + + 2021-10-21 + 3.1.9 + Rebuild boost. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 3.1.9 + Rebuild boost. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 3.1.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-07 + 3.1.9 + First pisi release + Blue DeviL + bluedevil@sctzine.com + + + + + + tinyxml + http://www.grinninglizard.com/tinyxml + + PisiLinux Community + admins@pisilinux.org + + ZLIB + library + programming.misc + A simple, small, C++ XML parser + Basit ve hafif bir XML ayrıştırıcı + TinyXML is a simple, small, C++ XML parser that can be easily integrating into other programs. + TinyXML, C++ için basit ve hafif bir XML ayrıştırıcıdır. Diğer programlara kolayca entegre edilebilir. + mirrors://sourceforge/tinyxml/tinyxml/2.6.2/tinyxml_2_6_2.zip + + setconf + + + enforce-use-stl.patch + entity.patch + + programming/misc/tinyxml/pspec.xml + + + tinyxml + + libgcc + + + /usr/lib + /usr/share/doc + /usr/share/doc/tinyxml/html + + + + tinyxml-devel + Development files for tinyxml + tinyxml için geliştirme başlıkları + + tinyxml + + + /usr/include + /usr/lib/pkgconfig + + + tinyxml.pc + + + + + 2020-01-15 + 2.6.2 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2018-09-09 + 2.6.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-06 + 2.6.2 + Rebuild for Pisi Linux 2.0 + Stefan Gronewold + groni@pisilinux.org + + + 2014-07-04 + 2.6.2 + version bump + Kamil Atlı + suvarice@gmail.com + + + 2014-03-09 + 2.6.1 + Rebuild + Varol Maksutoğlu + waroi@pisilinux.org + + + 2011-01-19 + 2.6.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + tinyxml2 + http://www.grinninglizard.com/tinyxml2/ + + Pisi Linux Admins + admins@pisilinux.org + + zlib + library + programming.misc + Simple XML parser made for easy integration + Simple XML parser made for easy integration + Simple XML parser made for easy integration + Simple XML parser made for easy integration + https://github.com/leethomason/tinyxml2/archive/7.1.0.tar.gz + + cmake + + programming/misc/tinyxml2/pspec.xml + + + tinyxml2 + + libgcc + + + /usr/lib + /usr/share/doc + + + + tinyxml2-devel + Development files for tinyxml2 + + tinyxml2 + + + /usr/include + /usr/lib/pkgconfig + /usr/lib/cmake + + + + + 2020-01-15 + 7.1.0 + Version bump + Pisi Linux Admins + admins@pisilinux.org + + + 2018-08-13 + 6.2.0 + First release + Pisi Linux Admins + admins@pisilinux.org + + + 2017-10-18 + 5.0.1 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + unixODBC + http://www.unixodbc.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2.1 + app:console + programming.misc + ODBC Interface for Linux + The unixODBC Project goals are to develop and promote unixODBC to be the definitive standard for ODBC on non MS Windows platforms. + ftp://ftp.unixodbc.org/pub/unixODBC/unixODBC-2.3.7.tar.gz + + libtool-ltdl + + programming/misc/unixODBC/pspec.xml + + + unixODBC + + libtool-ltdl + + + /etc + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc/unixODBC/AUTHORS + /usr/share/doc/unixODBC/README + + + + unixODBC-devel + Development files for unixODBC + unixODBC için geliştirme dosyaları. + + unixODBC + + + /usr/bin/odbc_config + /usr/include + + + + unixODBC-docs + Documentation for unixODBC + unixODBC için belgelendirme dosyaları. + data:doc + + /usr/share/doc/unixODBC + + + + + 2020-01-12 + 2.3.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 2.3.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-15 + 2.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 2.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-27 + 2.3.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + vigra + http://ukoethe.github.io/vigra + + PisiLinux Community + admins@pisilinux.org + + MIT + library + programming.misc + Generic programming library for computer vision + Bilgisayarlı görü (computer vision) için genel programlama kitaplığı + vigra stands for "Vision with Generic Algorithms". It's a novel computer vision library that puts its main emphasis on customizable algorithms and data structures. + vigra, "Genel Algoritmalarla Görü (Vision with Generic Algorithms)" anlamına gelir. Özelleştirilebilir algoritma ve veri yapılarını vurgulayan yeni bir bilgisayarlı görü kitaplığıdır. + https://github.com/ukoethe/vigra/archive/Version-1-11-1.tar.gz + + cmake + doxygen + tiff-devel + hdf5-devel + fftw3-devel + boost-devel + python-nose + python-sphinx + libpng-devel + python-numpy + python-devel + openexr-devel + libjpeg-turbo-devel + docutils + mesa-glu-devel + python-Pygments + python-Jinja2 + blas-devel + lapack-devel + + + disable-doc.patch + fix-incorrect-template-parameter-type.patch + vigra-openexr3.patch + + programming/misc/vigra/pspec.xml + + + vigra + + hdf5 + tiff + boost + fftw3 + libgcc + libpng + python + openexr-libs + libjpeg-turbo + + + /usr/lib + /usr/share/doc + /usr/bin + + + + vigra-devel + Development files for vigra + vigra için geliştirme dosyaları + + vigra + + + /usr/include + /usr/lib/vigra/*.cmake + + + + + 2021-11-27 + 1.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-20 + 1.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 1.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.11.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-03 + 1.11.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-01 + 1.11.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 1.11.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-14 + 1.11.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-17 + 1.11.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 1.10.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-02-03 + 1.10.0 + First release + Yusuf Aydemir + yusuf.aydemir@gmail.com + + + + + + xapian-core + http://www.oligarchy.co.uk/xapian + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + programming.misc + Probabilistic Information Retrieval library + İstatistiksel Bilgi Çıkarma kitaplığı + Xapian is an Open Source Probabilistic Information Retrieval Library. It offers a highly adaptable toolkit that allows developers to easily add advanced indexing and search facilities to applications. + Xapian, Açık Kaynak Kodlu bir İstatistiksel Bilgi Çıkarma kitaplığıdır. Geliştiricilerin uygulamalara kolaylıkla gelişmiş kataloglama ve arama becerileri eklemelerini sağlayan hayli uyumlu bir araç takımına sahiptir. + https://oligarchy.co.uk/xapian/1.4.18/xapian-core-1.4.18.tar.xz + + libutil-linux-devel + zlib-devel + + programming/misc/xapian-core/pspec.xml + + + xapian-core + Probabilistic Information Retrieval library + + libutil-linux + libgcc + zlib + + + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + /usr/share + + + + xapian-core-devel + Development headers for xapian-core + xapian-core için geliştirme başlıkları + xapian-core-devel provides development headers for xapian-core. + xapian-core-devel, xapian-core için geliştirme başlıklarını içerir. + library + + xapian-core + + + /usr/bin/xapian-config* + /usr/lib/cmake/xapian + /usr/lib/pkgconfig + /usr/share/aclocal + /usr/include + + + + xapian-core-docs + Documentation files for xapian-core + xapian-core için belgelendirme dosyaları + xapian-core-docs provides documentation files for xapian-core. + xapian-core-docs, xapian-core için belgelendirme dosyalarını içerir. + data:doc + + xapian-core + + + /usr/share/doc/xapian-core/apidoc.pdf + /usr/share/doc/xapian-core/apidoc/ + /usr/share/doc/xapian-core/*html + + + + + 2021-01-22 + 1.4.18 + Version bump. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2020-03-11 + 1.4.15 + Patch version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-12-08 + 1.4.14 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-09 + 1.4.7 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-20 + 1.4.3 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-03-03 + 1.12.18 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 1.12.18 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + critical + 2014-09-02 + 1.12.18 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xerces-c + http://xml.apache.org/xerces-c + + PisiLinux Community + admins@pisilinux.org + + Apache-2.0 + library + programming.misc + Xerces-C++ is a validating XML parser written in a portable subset of C++ + C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcı + Xerces-C++ est un analyseur XML validant écrit dans un sous-ensemble portable du C++. + Xerces-C++ is a validating XML parser written in a portable subset of C++. + Xerces-C++, C++ dilinin taşınabilir bir altkümesi ile yazılmış, XML sentaks doğrulaması yapabilen bir ayrıştırıcıdır. + Xerces-C++ es un analizador XML con validación, escrito con un subconjunto portable de C++ + http://archive.apache.org/dist/xerces/c/3/sources/xerces-c-3.2.3.tar.gz + + icu4c-devel + curl-devel + libgcc + + programming/misc/xerces-c/pspec.xml + + + xerces-c + + icu4c + curl + libgcc + + + /usr/bin + /usr/lib + + + + xerces-c-devel + Development files for xerces-c + xerces-c için geliştirme dosyaları + + xerces-c + + + /usr/include + /usr/lib/pkgconfig + + + + xerces-c-docs + Document files for xerces-c + xerces-c için yardım dosyaları ve API belgeleri + + xerces-c + + + /usr/share/doc + + + + + 2021-03-12 + 3.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-25 + 3.2.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 3.2.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-31 + 3.2.0 + Version bump for icu4c + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-17 + 3.1.2 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 3.1.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-26 + 3.1.2 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + xsd + http://www.codesynthesis.com/products/xsd + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + programming.misc + An open-source, cross-platform W3C XML Schema to C++ data binding compiler + Kompilator schematów W3C XML do wiązań danych C++ + CodeSynthesis XSD is an open-source, cross-platform W3C XML Schema to C++ data binding compiler. Provided with an XML instance specification (XML Schema), it generates C++ classes that represent the given vocabulary as well as parsing and serialization code. You can then access the data stored in XML using types and functions that semantically correspond to your application domain rather than dealing with intricacies of reading and writing XML. + CodeSynthesis XSD to mający otwarte źródła wieloplatformowy kompilator schematów W3C XML do wiązań danych C++. Na podstawie specyfikacji instancji XML (schematu XML) generuje klasy C++ reprezentujące podany słownik, a także kod analizujący i serializujący. Następnie można odwoływać się do danych zapisanych w XML-u przy użyciu typów i funkcji semantycznie odpowiadających działaniu aplikacji, bez zajmowania się skomplikowaniem odczytu i zapisu XML-a. + https://codesynthesis.com/~boris/tmp/xsd/4.1.0.a11/xsd-4.1.0.a11+dep.tar.bz2 + + xerces-c-devel + boost-devel + ghostscript-devel + + programming/misc/xsd/pspec.xml + + + xsd + + xerces-c + boost + + + /usr/bin + /usr/share/man + + + + xsd-devel + Development files for xsd + xsd için geliştirme dosyaları + Pliki nagłówkowe xsd + + xsd + + + /usr/include + /usr/lib/pkgconfig + + + + xsd-docs + Document files for xsd + + xsd + + + /usr/share/doc + + + + + 2021-03-12 + 4.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 4.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 4.0.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-14 + 4.0.0 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-17 + 4.0.0 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 4.0.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-24 + 4.0.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + yajl + http://lloyd.github.com/yajl + + PisiLinux Community + admins@pisilinux.org + + BSD + library + app:console + programming.misc + Yet Another JSON Library (YAJL) + JSON kitaplığı + yajl is a small event-driven (SAX-style) JSON parser written in ANSI C, and a small validating JSON generator. + yajl, ANSI C ile yazılmış olay-tabanlı (SAX tarzı) ufak bir JSON ayıklayıcıdır. + http://github.com/lloyd/yajl/tarball/2.1.0/lloyd-yajl-2.1.0.tar.gz + + cmake + + programming/misc/yajl/pspec.xml + + + yajl + + /usr/bin + /usr/lib + /usr/share/doc + + + + yajl-devel + Development headers for yajl + yajl kitaplığı için geliştirme başlıkları + + yajl + + + /usr/include + /usr/share/pkgconfig + + + + + 2020-03-13 + 2.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 2.1.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-21 + 2.1.0 + Release Bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-12-31 + 2.1.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + php + http://www.php.net + + Fatih Turgel + turgelfatih@gmail.com + + PHP + library + programming.language.php + PHP7 is an HTML-embedded scripting language. The goal of the language is to allow web developers to write dynamically generated pages quickly + Dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dili + PHP7 is an HTML-embedded scripting language. Much of its syntax is borrowed from C, Java and Perl with a couple of unique PHP-specific features thrown in. The goal of the language is to allow web developers to write dynamically generated pages quickly. + PHP7, dinamik HTML sayfaları oluşturmak için kullanılan bir programlama dilidir. Dil yapısının önemli bir kısmı C, Java ve Perl'den alınmıştır. Bu dilin amacı, web geliştiricilerinin kısa zamanda dinamik sayfalar oluşturmasına imkan vermektir. + PHP7 es un languaje interpretado que puede estar embebido en HTML. Muchas partes de su sintaxis fueron prestados de C, Java y Perl con algunas facilidades agregados únicas de PHP. El lenguaje permite a desarrolladores web escribir de manera sencilla páginas con contenido dinámico. + https://www.php.net/distributions/php-7.4.25.tar.xz + + gd-devel + re2c + libzip-devel + harfbuzz-devel + apr-devel + apr-util-devel + apache + postfix + libxslt-devel + db-devel + mariadb-lib + libmcrypt-devel + mit-kerberos-devel + libc-client + postgresql-server + libjpeg-turbo-devel + zlib-devel + curl-devel + gdbm-devel + libpng-devel + freetype-devel + openssl-devel + sqlite-devel + oniguruma-devel + + + db6.patch + debian/052-phpinfo_no_configure.patch + + programming/php/php/pspec.xml + + + php-cli + + php-common + gd + curl + zlib + bzip2 + libpng + libxslt + libxml2 + freetype + mariadb-lib + libmcrypt + mit-kerberos + postgresql-lib + openldap-client + libjpeg-turbo + oniguruma + sqlite + openssl + + + /etc/php/cli + /usr/bin + /usr/share/man + + + go-pear + + + + php-common + Common config files for PHP + PHP için genel yapılandırma dosyaları + + db + gd + pam + gdbm + mit-kerberos + + + /usr/lib/php/modules + /usr/share/php7 + /etc/php/ext + + + + php-devel + Development files for PHP + + php-common + + + /usr/bin/php-config + /usr/bin/phpize + /usr/include + /usr/lib/php/build + /usr/share/man/man1/php-config* + /usr/share/man/man1/phpize* + + + + php-pear + Development files for PHP + + php-common + + + /etc/pear.conf + /usr/bin/pear + /usr/bin/go-pear + /usr/lib/php/PEAR/ + /usr/lib/php/Structures + /usr/lib/php/.lock + /usr/lib/php/peclcmd.php + /usr/lib/php/pearcmd.php + /usr/lib/php/System.php + /usr/lib/php/PEAR.php + /usr/lib/php/.filemap + /usr/lib/php/.registry/ + /usr/lib/php/Console/Getopt.php + /usr/lib/php/XML/Util.php + /usr/lib/php/Archive/Tar.php + /usr/lib/php/test/XML_Util + /usr/lib/php/test/Structures_Graph + /usr/lib/php/test/Console_Getopt + /usr/lib/php/.channels + /usr/lib/php/doc/ + /usr/lib/php/data/PEAR/ + /usr/lib/php/OS/Guess.php + + + + mod_php + server.web + + xz + pam + curl + zlib + bzip2 + libnsl + libpng + apache + libxml2 + freetype + libtool-ltdl + mariadb-lib + postgresql-lib + gd + libxslt + mit-kerberos + openldap-client + cyrus-sasl + harfbuzz + php-common + libmcrypt + libjpeg-turbo + sqlite + openssl + e2fsprogs + oniguruma + + + /usr/lib/apache2/modules/libphp7.so + /etc/apache2 + /etc/php/apache2 + + + 70_mod_php7.conf + + + + php-zip + Zip extension for PHP + + php-common + pam + libzip + mit-kerberos + + + /usr/lib/php/modules/zip.so + /etc/php/cli/ext/10-php-zip.ini + /etc/php/ext/10-php-zip.ini + + + 10-php-zip.ini + + + + php-imap + Module for PHP to enable IMAP support + + pam + openssl + e2fsprogs + php-common + libc-client + mit-kerberos + + + /usr/lib/php/modules/imap.so + /etc/php/ext/11-php-imap.ini + /etc/php/cli/ext/11-php-imap.ini + /etc/php/apache2/ext/11-php-imap.ini + + + 11-php-imap.ini + + + + php-fpm + FPM for PHP + + libxslt + libmcrypt + php-common + libjpeg-turbo + postgresql-lib + openldap-client + curl + zlib + bzip2 + sqlite + libxml2 + openssl + oniguruma + + + /usr/sbin/php-fpm + /usr/share/man/man8/php-fpm.8 + /etc/php/ext/php-fpm.conf + /etc/php-fpm.d/www.conf.default + /usr/share/fpm + /run + /var/log + + + System.Service + + + php-fpm.conf + + + + + 2021-10-31 + 7.4.25 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-06 + 7.4.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-22 + 7.4.3 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2019-10-11 + 7.3.10 + Version bump and OpenSSL fix + İdris Kalp + idriskalp@gmail.com + + + 2019-08-01 + 7.3.8 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-11-26 + 7.2.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 7.2.9 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-06-17 + 7.2.6 + Version Bump + Erkan IŞIK + info@erkanisik.com + + + 2017-12-24 + 7.2.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-06 + 5.6.30 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 5.6.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-20 + 5.6.20 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + valgrind + http://www.valgrind.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.profiler + Memory access debugger for X86 and PPC Linux platforms + X86 ve PPC Linux platformları için bellek erişimi hata ayıklayıcı + Valgrind is an award-winning suite of tools for debugging and profiling Linux programs. With the tools that come with Valgrind, you can automatically detect many memory management and threading bugs, avoiding hours of frustrating bug-hunting, making your programs more stable. You can also perform detailed profiling, to speed up and reduce memory use of your programs. + Valgrind, bu konuda ödül kazanmış Linux için çizge ve hata ayıklama araçları takımıdır. Valgrind ile gelen araçlar yardımıyla, birçok hafıza yönetimi ve iş parçacığı hatalarını otomatik olarak yakalayabilir, boşa geçen hata ayıklama saatlerinizi kazanabilir, programlarınızı daha kararlı bir hale getirebilirsiniz. Ayrıca programlarınızı daha hızlı çalışır yapmak ve kullandıkları hafızayı azaltmak için iş parçacıklarını detaylı olarak inceleyebilirsiniz. + ftp://sourceware.org/pub/valgrind/valgrind-3.18.1.tar.bz2 + + glibc-devel + boost-devel + gdb-devel + docbook-xsl + + + valgrind-3.7.0-respect-flags.patch + + programming/profiler/valgrind/pspec.xml + + + valgrind + + glibc + perl + + + /usr/bin + /usr/libexec + /usr/lib + /usr/share/doc/valgrind + /usr/share/man + + + + valgrind-devel + Development files for valgrind + + valgrind + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 3.18.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-15 + 3.16.1 + Rebu'ld + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-21 + 3.16.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-07 + 3.15.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 3.13.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-03-22 + 3.13.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-31 + 3.13.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 3.12.0 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 3.11.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-29 + 3.11.0 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + git + https://git-scm.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + programming.scm + Fast Version Control System + Hızlı Sürüm Denetim Sistemi + Git is a fast, scalable, distributed revision control system with an unusually rich command set that provides both high-level operations and full access to internals. + Git hızlı, ölçeklenebilir ve dağıtılmış, ve sık rastlanmayan zengin komut kümesi içeren, hem yüksek seviyeli işlemleri hem dahili işlemlere tam erişimi sağlayan bir sürüm kontrol sistemidir. + GIT es un sistema rápido, escalable y distribuido de control de versiones con un amplio espectro de comandos que permite operaciones de alto nivel tanto como operaciones con acceso a detalles internos. + https://mirrors.edge.kernel.org/pub/software/scm/git/git-2.36.1.tar.xz + + libpcre2-devel + openssl-devel + libpcre-devel + libxslt-devel + expat-devel + tcltk-devel + curl-devel + perl-Error + util-linux + zlib-devel + asciidoc + xmlto + perl + + programming/scm/git/pspec.xml + + + git + Fast Version Control System + app:console + + perl-Git + perl-String-ShellQuote + perl-Net-SMTP-SSL + perl-Authen-SASL + perl-libwww + libpcre + libpcre2 + openssh + openssl + rsync + expat + zlib + curl + + + /usr/bin + /usr/libexec/git-core + /etc/bash_completion.d + /usr/share/git-core + /usr/share/locale + /usr/share/man/man1/git.1* + /usr/share/man/man1/git-a* + /usr/share/man/man1/git-b* + /usr/share/man/man1/git-ca* + /usr/share/man/man1/git-ch* + /usr/share/man/man1/git-cl* + /usr/share/man/man1/git-co* + /usr/share/man/man1/git-credential-c* + /usr/share/man/man1/git-credential-s* + /usr/share/man/man1/git-credential.* + /usr/share/man/man1/git-cv* + /usr/share/man/man1/git-di* + /usr/share/man/man1/git-de* + /usr/share/man/man1/git-f* + /usr/share/man/man1/git-gc* + /usr/share/man/man1/git-ge* + /usr/share/man/man1/git-gr* + /usr/share/man/man1/git-h* + /usr/share/man/man1/git-i* + /usr/share/man/man1/git-l* + /usr/share/man/man1/git-m* + /usr/share/man/man1/git-n* + /usr/share/man/man1/git-p* + /usr/share/man/man1/git-q* + /usr/share/man/man1/git-r* + /usr/share/man/man1/git-s* + /usr/share/man/man1/git-t* + /usr/share/man/man1/git-u* + /usr/share/man/man1/git-v* + /usr/share/man/man1/git-w* + /usr/share/man/man5/ + /usr/share/man/man7/ + /usr/share/doc + + + + git-daemon + GIT protocol daemon + GIT protokolü hizmeti + git-daemon, GIT protokolü hizmeti sunar. + service + + zlib + libpcre + git + + + /etc/conf.d/git-daemon + /usr/libexec/git-core/git-daemon + /usr/share/man/man1/git-daemon*.1* + /pub/scm + + + System.Service + + + git-daemon.confd + + + + perl-Git + Perl interface to GIT + GIT için perl arayüzü + perl-Git, GIT için perl arayüzü sunar. + library + programming.language.perl + + perl-Error + perl + + + /usr/lib/perl5 + /usr/share/perl5 + /usr/share/man/man3/Git.3pm + + + + gitk + Git revision tree visualiser + Git sürüm ağacı görüntüleyici + gitk, Git sürüm ağacı görüntüleyicisi sunar. + app:gui + + git + tcltk + + + /usr/bin/gitk + /usr/share/gitk + /usr/share/man/man1/*gitk*.1* + + + + git-gui + Git GUI tool + GIT için basit bir grafik arayüz + git-gui, GIT için basit bir grafik arayüz sunar. + app:gui + + git + gitk + tcltk + + + /usr/libexec/git-core/git-gui* + /usr/libexec/git-core/git-citool + /usr/share/git-gui + /usr/share/man/man1/git-gui.1* + /usr/share/man/man1/git-citool.1* + /usr/share/applications/git-gui.desktop + + + git-gui.desktop + + + + gitweb + Simple web interface to GIT repositories + GIT için Web arayüzü + interfaz web para GIT + gitweb, GIT için Web arayüzü sunar. + app:web + server.web + + git + + + /var/www/localhost + /etc/conf.d/gitweb + /etc/apache2/conf.d + /usr/share/man/man1/gitweb.1* + + + gitweb.confd + git.conf.httpd + + + + + 2022-05-07 + 2.36.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-23 + 2.33.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-13 + 2.33.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 2.32.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-20 + 2.25.0 + Version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-01-18 + 2.23.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.16.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-20 + 2.16.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 2.12.0 + Version bump. + Alihan Öztürk + alihan@pisilnux.org + + + 2016-11-12 + 2.10.2 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-09 + 2.7.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-26 + 2.7.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + github-cli + https://github.com/cli/cli + + Blue Devil + bluedevil@sctzine.com + + MIT + app:console + programming.scm + The GitHub CLI + Github komut satırı arayüzü. + gh is GitHub on the command line, and it's now available in beta. It brings pull requests, issues, and other GitHub concepts to the terminal next to where you are already working with git and your code. + gh, resmi Github komut satırı arayüzüdür. + https://github.com/cli/cli/archive/v0.5.7.tar.gz + + golang + + programming/scm/github-cli/pspec.xml + + + github-cli + The GitHub CLI + + /usr/bin/gh + /usr/share/doc + + + + + 2020-02-24 + 0.5.7 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + libgit2 + https://libgit2.github.com + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + programming.scm + git c dili kütüphanesi + A linkable library for Git + git için c kütüphanesi + A plain C library to interface with the git version control system + libgit2 + https://github.com/libgit2/libgit2/archive/v1.1.0.tar.gz + + zlib-devel + libpcre-devel + openssl-devel + http-parser + libssh2-devel + python3-devel + cmake + + programming/scm/libgit2/pspec.xml + + + libgit2 + + zlib + openssl + libpcre + libssh2 + http-parser + + + /usr/lib + + + + libgit2-devel + + libgit2 + zlib-devel + openssl-devel + libpcre-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2021-07-17 + 1.1.0 + Rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2021-06-15 + 1.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 1.0.1 + Rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2020-09-21 + 1.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-15 + 0.28.4 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-04-22 + 0.28.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-02-20 + 0.27.4 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-20 + 0.26.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 0.25.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.23.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-01 + 0.23.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libgit2-glib + https://gitlab.gnome.org/GNOME/libgit2-glib + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + programming.misc + libgit2-glib is a glib wrapper library around the libgit2 git access library. + libgit2-glib is a glib wrapper library around the libgit2 git access library. + https://download.gnome.org/sources/libgit2-glib/1.0/libgit2-glib-1.0.0.1.tar.xz + + meson + libssh2-devel + glib2-devel + gobject-introspection-devel + libgit2-devel + python3-devel + vala-devel + + programming/scm/libgit2-glib/pspec.xml + + + libgit2-glib + libgit2-glib is a glib wrapper library around the libgit2 git access library. + + glib2 + libgit2 + libssh2 + + + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/lib/python3* + /usr/share/doc + + + + libgit2-glib-devel + libgit2-glib is a glib wrapper library around the libgit2 git access library. + + glib2-devel + libgit2-devel + libgit2-glib + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2021-12-24 + 1.0.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-08 + 0.99.0.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-13 + 0.99.0.1 + Version bump + Berk Çakar + berk2238@hotmail.com + + + 2021-04-07 + 0.99.0 + First release for Pisi Linux + Berk Çakar + berk2238@hotmail.com + + + + + + mercurial + https://www.mercurial-scm.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.scm + A distributed SCM tool + Dağıtık bir kaynak kod yönetim aracı + Système de gestion de code source, rapide et léger conçu pour gérer de manière efficace les projets distribués de très grande taille. + A fast, lightweight Source Control Management system designed for efficient handling of very large distributed projects. + Çok büyük dağıtık projelerin verimli bir şekilde idare edilmesi amacıyla geliştirilmiş hızlı, hafif bir kaynak kod kontrol yönetimi sistemi + Un sistema rápido y liviano de administración de fuentes (Source Control Management) diseñado para manejo eficaz de proyectos muy largos y distribuidos. + https://www.mercurial-scm.org/release/mercurial-5.3.tar.gz + + python-devel + + programming/scm/mercurial/pspec.xml + + + mercurial + A distributed SCM tool + + python + + + /etc/bash_completion.d + /usr/bin + /usr/share/doc + /usr/share/man + /usr/lib + + + + + 2020-02-25 + 5.3 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-09 + 4.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-20 + 4.5 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-19 + 4.1.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 3.8.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-04 + 3.3.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + qgit + http://digilander.libero.it/mcostalba/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + programming.scm + A git GUI viewer built on Qt5/C++ + Qt5/C++ üzerine inşa edilmiş git grafik arayüzü + With qgit you will be able to browse revisions history, view patch content and changed files, graphically following different development branches. + Qgit ile sürüm geçmişlerine göz atabilecek, yama içeriklerini ve değişen dosyaları değişik geliştirme dallarında grafiksel olarak görebileceksiniz. + Con qgit se puede navegar por los históricos de revisiones, ver contenido de parches y archivos modificados, siguiendo de manera gráfica las diferentes ramificaciones de desarrollo. + qgit + https://github.com/tibirna/qgit/archive/qgit-2.9.tar.gz + + qt5-base-devel + + programming/scm/qgit/pspec.xml + + + qgit + + qt5-base + libgcc + + + /usr/bin + /usr/share + + + qgit.desktop + + + + + 2019-08-28 + 2.9 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + subversion + http://subversion.apache.org/ + + PisiLinux Community + admins@pisilinux.org + + Subversion + app:console + service + programming.scm + A compelling replacement for CVS + Bir sürüm kontrol sistemi + SVN est un gestionnaire de configuration permettant de stocker des fichiers et de contrôler leur historique de changement dans un dépôt. + SVN is a version controlling system to store files and control their change history in a repository. + Daha gelişmiş özellikleri olan ve önceki CVS yerine kullanılan, bir sürüm yönetim sistemidir. + http://archive.apache.org/dist/subversion/subversion-1.14.1.tar.bz2 + + apache + expat-devel + zlib-devel + ruby-devel + serf-devel + sqlite-devel + jdk8-openjdk + apr-util-devel + cyrus-sasl-devel + python-devel + dbus-devel + glib2-devel + openssl-devel + swig + python3-devel + python-py3c-devel + + + subversion-swig-perl-install_vendor.patch + subversion.rpath.fix.patch + dont_compile_pyc.patch + + programming/scm/subversion/pspec.xml + + + subversion + + file + zlib + expat + libgcc + sqlite + apr + serf + apr-util + cyrus-sasl + python-py3c + + + /etc/conf.d + /etc/subversion + /etc/bash_completion.d + /usr/share/build + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/locale + /usr/share/man + /var/svn + + + System.Service + System.Package + + + svnserve.confd + subversion.config + + + + subversion-devel + Development files for subversion + Subversion için geliştirme dosyaları + + openssl-devel + apr-devel + serf-devel + sqlite-devel + apr-util-devel + subversion + + + /usr/include + /usr/share/pkgconfig + + + + mod_dav_svn + server.web + + apr + apache + apr-util + subversion + + + /usr/lib/apache2 + /usr/libexec/mod_dav_svn.so + /usr/libexec/mod_authz_svn.so + /etc/apache2/modules.d + /var/www/localhost/htdocs + + + System.Package + + + 47_mod_dav_svn.conf + + + + + 2022-06-11 + 1.14.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-10 + 1.14.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-09-16 + 1.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-20 + 1.9.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 1.9.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 1.9.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-06 + 1.9.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + benchmark + https://github.com/google/benchmark + + Kamil Atlı + suvari@pisilinux.org + + Apache + library + programming.tool + A microbenchmark support library + Bir mikro kıyaslama destek kitaplığı + A library to benchmark code snippets, similar to unit tests. + Birim testlerine benzer şekilde kod parçacıklarını karşılaştırmak için bir kitaplık. + https://github.com/google/benchmark/archive/refs/tags/v1.6.1.tar.gz + + git + cmake + + programming/tool/benchmark/pspec.xml + + + benchmark + + libgcc + + + /usr/lib/libbenchmark.so* + /usr/lib/libbenchmark_main.so* + /usr/share/doc/benchmark + + + + benchmark-devel + + benchmark + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + 2022-06-11 + 1.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + cmocka + https://cmocka.org/ + + Blue Devil + bluedevil@sctzine.com + + Apache + library + programming.tool + Full unit testing framework for C with support for mock objects. + Sahte nesneler ile deskteklenmiş C için tam birim test çatısı + cmocka is an elegant unit testing framework for C with support for mock objects. It only requires the standard C library, works on a range of computing platforms (including embedded) and with different compilers. + cmocka sahte nesneler ile deskteklenmiş C için tam birim test çatısı sunar. + https://gitlab.com/cmocka/cmocka/-/archive/cmocka-1.1.5/cmocka-cmocka-1.1.5.tar.gz + + doxygen + cmake + + programming/tool/cmocka/pspec.xml + + + cmocka + Full unit testing framework for C with support for mock objects. + + /usr/lib + /usr/share/doc + + + + cmocka-devel + Development files for cmocka + cmocka için geliştirme dosyaları + libssh-cmocka, cmocka için geliştirme dosyalarını içerir. + + cmocka + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-24 + 1.1.5 + First release + Blue Devil + bluedevil@sctzine.com + + + + + + cppcheck + https://cppcheck.sourceforge.io/ + + fury + uglyside@yandex.ru + + GPLv3 + app:gui + app:console + programming.tool + static analysis of C/C++ code. + Cppcheck is a static analysis tool for C/C++ code. It provides unique code analysis to detect bugs and focuses on detecting undefined behaviour and dangerous coding constructs. The goal is to detect only real errors in the code (i.e. have very few false positives). + mirrors://sourceforge/cppcheck/cppcheck-2.8.tar.bz2 + + cmake + z3-devel + zlib-devel + docbook-xsl + qt5-sql-odbc + qt5-linguist + libxslt-devel + libpcre-devel + python3-devel + qt5-sql-mysql + qt5-sql-sqlite + qt5-base-devel + tinyxml2-devel + qt5-charts-devel + qt5-sql-postgresql + python3-setuptools + qt5-assistant-devel + + + htmlreport_py3.patch + qm_install_path.patch + + programming/tool/cppcheck/pspec.xml + + + cppcheck + + z3 + libgcc + libpcre + python3 + tinyxml2 + qt5-base + qt5-charts + qt5-assistant + python3-Pygments + + + /usr/bin + /usr/share + /usr/share/Cppcheck + /usr/share/Cppcheck/lang + /usr/share/man + /usr/share/doc + + + + + 2022-05-28 + 2.8 + Ver. bump + fury + uglyside@yandex.ru + + + 2022-02-05 + 2.7 + Ver. bump + fury + uglyside@yandex.ru + + + 2021-10-11 + 2.6 + Ver. bump + fury + uglyside@yandex.ru + + + 2021-07-05 + 2.5 + Ver. bump + fury + uglyside@yandex.ru + + + 2021-03-24 + 2.4 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-12-20 + 2.3 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-10-06 + 2.2 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-06-27 + 2.1 + Ver. bump + fury + uglyside@yandex.ru + + + 2020-04-16 + 1.90 + Version Bump + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-12-19 + 1.89 + First build. + fury + uglyside@yandex.ru + + + + + + cppunit + http://www.freedesktop.org/wiki/Software/cppunit + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + programming.tool + C++ port of the famous JUnit framework for unit testing + Popüler JUnit test çatısının C++ sürümü + cppunit is a C++ unit testing framework. It started its life as a port of JUnit to C++ by Michael Feathers. + cppunit, C++ uygulama geliştiricileri tarafından yazdıkları uygulamaların test edilmesi amacıyla kullanılabilecek bir test altyapısıdır. + https://dev-www.libreoffice.org/src/cppunit-1.15.1.tar.gz + + grep + libtool + + programming/tool/cppunit/pspec.xml + + + cppunit + + /usr/lib + /usr/share/doc + + + + cppunit-devel + Contains the headers and other files necessary for developing programs that use cppunit + + cppunit + libgcc + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + /usr/share/man + + + + + 2020-01-15 + 1.15.1 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-29 + 1.14.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-08-01 + 1.14.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-04-11 + 1.13.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.13.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-21 + 1.13.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ctags + http://ctags.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.tool + Exuberant Ctags generates an index (or tag) file of objects found in source and header files + Kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir + Exuberant Ctags génère un fichier d'index (ou tag) pour les objets trouvés dans les fichiers sources et d'entête permettant à ces entités d'être rapidement et facilement localisées par un éditeur de texte et d'autres utilitaires. Il gère actuellement 33 langages de programmation. + Exuberant Ctags generates an index (or tag) file of objects found in source and header files that allows these items to be quickly and easily located by a text editor or other utility. Currently supports 33 programming languages. + Exuberant Ctags, kod ve başlık dosyalarında bulunan objeler için indeks dosyaları üretir. + Exuberant Ctags genera un archivo de índice (o tag) de objetos encontrados en archivos de fuente y cabeceras, para localizar fácilmente estos ítemes con un editor de texto u otra herramienta. Actualmente soporta 33 lenguajes de programación. + https://github.com/universal-ctags/ctags/archive/p5.9.20201129.0.tar.gz + + docutils + python3 + python3-Pygments + python-docutils + jansson-devel + libxml2-devel + libyaml-devel + libseccomp-devel + + programming/tool/ctags/pspec.xml + + + ctags + + jansson + libxml2 + libyaml + libseccomp + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2020-11-07 + 5.9 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-02-08 + 5.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-29 + 5.8 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-10 + 5.8 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-09 + 5.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-21 + 5.8 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + dev86 + https://github.com/lkundrak/dev86 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + programming.tool + Development environment for ELKS-86 and standalone 8086 code + ELKS-86 ve 8086 kodları için geliştirme ortamı + Entorno de desarrollo para ELKS-86 y código 8086 independiente + The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources. + https://github.com/lkundrak/dev86/archive/v0.16.21.tar.gz + + fedora/dev86-noelks.patch + fedora/dev86-nostrip.patch + fedora/dev86-long.patch + dont-ask-anything.patch + 64bit-build-fix.patch + makefile-fix.patch + + programming/tool/dev86/pspec.xml + + + dev86 + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2020-11-07 + 0.16.21 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-26 + 0.16.21 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 0.16.21 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 0.16.19 + Release Bump. + Kamil Atlı + admin@pisilinux.org + + + 2017-05-15 + 0.16.19 + Release Bump. + Kamil Atlı + admin@pisilinux.org + + + 2016-06-09 + 0.16.19 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-17 + 0.16.19 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + fcgi + http://www.fastcgi.com/drupal + + PisiLinux Community + admins@pisilinux.org + + BSD + library + programming.tool + FastCGI development kit + FastCGI araç takımı + FastCGI is a language independent, scalable, open extension to CGI that provides high performance without the limitations of server specific APIs. + FastCGI; dil bağımsız, ölçeklenebilir, CGI sunucusunun sınırlamaları olmadan belirli API'leri yüksek performansda çalıştıran bir kitaplıktır. + https://github.com/FastCGI-Archives/fcgi2/archive/2.4.2.tar.gz + programming/tool/fcgi/pspec.xml + + + fcgi + + /usr/bin + /usr/lib + /usr/share/doc/fcgi + /usr/share/man + + + + fcgi-devel + Development files for fcgi + fcgi için geliştirme dosyaları + + fcgi + + + /usr/include + /usr/share/man/man3 + + + + + 2020-03-21 + 2.4.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + iucode-tool + https://gitlab.com/iucode-tool/iucode-tool + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + programming.tool + Tool to manipulate Intel® IA-32/X86-64 microcode bundles + Tool to manipulate Intel® IA-32/X86-64 microcode bundles + https://gitlab.com/iucode-tool/iucode-tool/-/archive/v2.3.1/iucode-tool-v2.3.1.tar.gz + programming/tool/iucode-tool/pspec.xml + + + iucode-tool + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2021-05-26 + 2.3.1 + First release + Berk Çakar + berk2238@hotmail.com + + + + + + xplanet + http://xplanet.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + science.astronomy + Render a planetary image into an X window + Gezegen görüntülerini bir X penceresine çizdirir + Xplanet was inspired by Xearth, which renders an image of the earth into the X root window. All of the major planets and most satellites can be drawn, similar to the Solar System Simulator. A number of different map projections are also supported, including azimuthal, Lambert, Mercator, Mollweide, orthographic, and rectangular. + Xplanet, Dünya'nın bir görüntüsünü bir X penceresine çizdiren Xearth programından esinlenilerek yapılmıştır. Güneş Sistemi Simülatörü'ne benzer şekilde bir çok büyük gezegen ve uydu çizdirilebilir. Azimut, Lambert, Mercator, Mollweide, ortografik, dikdörtgen de dahil olmak üzere bir çok farklı harita projeksiyonunu destekler. + mirrors://sourceforge/project/xplanet/xplanet/1.3.1/xplanet-1.3.1.tar.gz + + tiff-devel + pango-devel + netpbm-devel + giflib-devel + libjpeg-turbo-devel + libXScrnSaver-devel + + + giflib6.patch + xplanet-1.3.1-remove-null-comparison.patch + + science/astronomy/xplanet/pspec.xml + + + xplanet + + tiff + pango + giflib + glib2 + libX11 + libgcc + libpng + netpbm + freetype + libXScrnSaver + libjpeg-turbo + + + /usr/bin + /usr/share/doc + /usr/share + /usr/share/man + + + + + 2018-09-07 + 1.3.1 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2017-06-06 + 1.3.1 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-09 + 1.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 1.3.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + geda + http://geda-project.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + science.electronics + gEDA contains gschem, gnetlist, gsymcheck, gattrib, utilities and documentation from the gEDA project. + GEDA, GPL Elektronik Tasarım Otomasyon Araçları. + The gEDA project has produced and continues working on a full GPL'd suite and toolkit of Electronic Design Automation tools. + GEDA projesi, GPL lısansı altında Elektronik Tasarım Otomasyon Araçları ve geliştirme başlıkları içerir. + http://ftp.geda-project.org/geda-gaf/stable/v1.10/1.10.0/geda-gaf-1.10.0.tar.gz + + flex + gawk + doxygen + pkgconfig + gtk2-devel + guile-devel + glib2-devel + python-devel + + science/electronics/geda/pspec.xml + + + geda + + gtk2 + cairo + guile + glib2 + pango + gdk-pixbuf + + + /usr/share + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/gEDA + /usr/share/info + /usr/share/mime + /usr/share/icons + /usr/share/applications + /usr/share/locale + + + + geda-devel + Development files for geda + geda için geliştirme dosyaları + geda-devel, geda için geliştirme dosyalarını içerir. + + glib2-devel + guile-devel + gdk-pixbuf-devel + geda + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-29 + 1.10.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-16 + 1.8.2 + First release + PisiLinux Community + admins@pisilinux.org + + + 2018-04-03 + 1.8.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + kicad + http://kicad-pcb.org/ + + Mustafa Cinasal + muscnsl@gmail.com + + GPLv1 + library + science.electronics + Electronic schematic and printed circuit board (PCB) design tools + Electronic schematic and printed circuit board (PCB) design tools + Electronic schematic and printed circuit board (PCB) design tools + Electronic schematic and printed circuit board (PCB) design tools + https://launchpad.net/kicad/4.0/4.0.7/+download/kicad-4.0.7.tar.xz + https://github.com/KiCad/kicad-i18n/archive/4.0.7.tar.gz + + swig + cmake + curl-devel + zlib-devel + glew-devel + cairo-devel + wxGTK-devel + boost-devel + libSM-devel + mesa-devel + doxygen + openssl-devel + python-devel + mesa-glu-devel + desktop-file-utils + + + boost-1.61.patch + CheckCXXSymbolExists.patch + + science/electronics/kicad/pspec.xml + + + kicad + + curl + glew + mesa + boost + cairo + wxGTK + libgcc + python + libgomp + openssl + mesa-glu + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2018-09-09 + 4.0.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 4.0.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-04 + 4.0.7 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + ngspice + http://ngspice.sourceforge.net/ + + Blue Devil + bluedevil@sctzine.com + + BSD + app:console + library + science.electronics + Mixed-level/Mixed-signal circuit simulator based on Spice3f5, Ciber1b1, and Xspice. + Spice3f5, Ciber1b1, ve Xspice temelli, karma-seviye ve karma-sinyal devre simülatörü. + ngspice is the open source spice simulator for electric and electronic circuits. + ngspice, karma-seviye ve karma-sinyal devre simülatörü araçları ve kitaplık dosyaları içerir. + https://downloads.sourceforge.net/project/ngspice/ng-spice-rework/32/ngspice-32.tar.gz + + libXaw-devel + libedit-devel + ncurses-devel + readline-devel + + science/electronics/ngspice/pspec.xml + + + ngspice + Mixed-level/Mixed-signal circuit simulator based on Spice3f5, Ciber1b1, and Xspice + + libXaw + libedit + libgomp + ncurses + readline + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/ngspice + + + + ngspice-devel + Development files for ngspice + ngspice için geliştirme dosyaları + ngspice-devel, ngspice için geliştirme dosyalarını içerir. + + ngspice + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-28 + 32 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + pcb + http://pcb.gpleda.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + science.electronics + Printed circuit board editor + Pcb X Pencere Sistem'i için bir baskı devre çizim programıdır. + PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time. + PCB, X11 Pencere Sistem'i üzerinde çalışan interaktif bir baskı devre çizim programıdır. PCB, tasarım kural denetleyicisi, karmaşık bağlantı(rats nest) özelliği bulundurmakta ve kart üretiminde kullanılan endüstri standartlarından RS-274-X (Gerber), NC drill ve Centroid veri formatlarında çıktı oluşturabilir. PCB, yerleştirme zamanınızı azaltacak, otomatik yönlendirme ve iz optimizasyonu gibi gelişmiş özellikler sunmaktadır. + https://sourceforge.net/projects/pcb/files/pcb/pcb-4.1.2/pcb-4.1.2.tar.gz + + intltool + dbus-devel + mesa-glu-devel + gtk2-devel + tcltk-devel + gd-devel + gdk-pixbuf-devel + gtkglext-devel + + + desktop_file.patch + + science/electronics/pcb/pspec.xml + + + pcb + + gtk2 + dbus + glib2 + mesa + cairo + tcltk + mesa-glu + gtkglext + gd + gdk-pixbuf + + + /usr/bin + /usr/share/doc/pcb + /usr/share/info + /usr/share/man + /usr/share/pcb + /usr/share/icons + /usr/share/mime + /usr/share/mimelnk + /usr/share/gEDA/scheme + /usr/share/appdata + /usr/include + /usr/lib + /usr/share/applications + /usr/share/locale + /usr/share/metainfo/pcb.appdata.xml + + + + + 2018-09-07 + 4.1.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-04 + 4.1.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gdal + https://gdal.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + science.gis + A translator library for raster geospatial data formats (includes OGR support) + Coğrafi raster veri formatları için dönüştürücü bir kütüphane (OGR desteği de vardır) + GDAL is a translator library for raster geospatial data formats which presents a single abstract data model to the calling application for all supported formats. + GDAL çağıran uygulamaya tüm desteklenen formatlar için tek bir soyut veri modeli sunan raster veri formatı dönüştürücü bir kütüphanedir. + http://download.osgeo.org/gdal/3.1.3/gdal-3.1.3.tar.gz + + curl-devel + hdf5-devel + geos-devel + proj-devel + tiff-devel + expat-devel + libpng-devel + netcdf-devel + sqlite-devel + openjpeg2-devel + libgeotiff-devel + libspatialite-devel + python-devel + python-setuptools + + science/gis/gdal/pspec.xml + + + gdal + A translator library for raster geospatial data formats (includes OGR support) + + geos + hdf5 + proj + swig + tiff + expat + libpng + netcdf + libfreexl + openjpeg2 + libgeotiff + libjpeg-turbo + libspatialite + + + /usr/share + /usr/lib + /usr/bin + + + + python-gdal + gdal python bindings + gdal için python bağlayıcıları + python-gdal, gdal için python bağlayıcıları içerir. + + python + libgcc + python-numpy + gdal + + + /usr/bin/epsg_tr.py + /usr/bin/pct2rgb.py + /usr/bin/rgb2pct.py + /usr/bin/esri2wkt.py + /usr/bin/gcps2vec.py + /usr/bin/gcps2wld.py + /usr/bin/gdal2xyz.py + /usr/bin/gdalmove.py + /usr/bin/ogrmerge.py + /usr/bin/gdal_auth.py + /usr/bin/gdal_calc.py + /usr/bin/gdal_edit.py + /usr/bin/gdalident.py + /usr/bin/gdal2tiles.py + /usr/bin/gdal_merge.py + /usr/bin/gdal_sieve.py + /usr/bin/gdalchksum.py + /usr/bin/gdalimport.py + /usr/bin/gdal_retile.py + /usr/bin/gdalcompare.py + /usr/bin/mkgraticule.py + /usr/bin/gdal_proximity.py + /usr/bin/gdal_fillnodata.py + /usr/bin/gdal_pansharpen.py + /usr/bin/gdal_polygonize.py + /usr/lib/python2.7 + + + + gdal-devel + Development files for gdal + gdal için geliştirme dosyaları + gdal-devel, gdal için geliştirme dosyalarını içerir. + + gdal + + + /usr/include + /usr/share/man/man3 + + + + + 2020-09-24 + 3.1.3 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-02-07 + 2.3.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-15 + 2.2.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-14 + 2.2.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-30 + 2.2.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 2.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-24 + 2.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + geos + https://trac.osgeo.org/geos/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + science.gis + Geometry engine library for Geographic Information Systems + Coğrafi bilgi sistemleri için geometri motoru sunan bir kütüphane + GEOS (Geometry Engine - Open Source) is a C++ port of the Java Topology Suite (JTS). + GEOS (Açık Kaynak Geometri Motoru) Java Topology Suit (JTS) kütüphanesinin C++ portudur. + http://download.osgeo.org/geos/geos-3.9.1.tar.bz2 + + swig + doxygen + ruby-devel + python-devel + + + geos-gcc43.patch + + science/gis/geos/pspec.xml + + + geos + Geometry engine library for Geographic Information Systems + + ruby + libgcc + python + rubygems + + + /usr/lib + /usr/bin + /usr/share/doc/geos + + + + geos-devel + Development files for geos + geos için geliştirme dosyaları + geos-devel, geos için geliştirme dosyalarını içerir. + + ruby-devel + python-devel + geos + + + /usr/include + + + + geos-docs + Documentation files for geos + geos için belgelendirme dosyaları + geos-docs, geos için belgelendirme dosyalarını içerir. + + geos + + + /usr/share/doc/geos/html + + + + + 2021-06-28 + 3.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-18 + 3.8.1 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-20 + 3.7.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 3.6.3 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-15 + 3.6.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-15 + 3.6.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-24 + 3.5.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gpsd + https://gpsd.gitlab.io/gpsd/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app + library + science.gis + GPS daemon and library to support serial/USB GPS devices. + gpsd is a service daemon that monitor one or more GPSes attached to a host computer through serial or USB ports, making all data of the sensors available to be queried on TCP port 2947 of the host computer. + http://download-mirror.savannah.gnu.org/releases/gpsd/gpsd-3.23.1.tar.xz + + scons + xmlto + dbus-devel + libusb-devel + libxslt-devel + python3-devel + ncurses-devel + libsocket-devel + bluez-libs-devel + python3-pyserial + + + pylibdir_path.patch + use_os_environ.patch + + science/gis/gpsd/pspec.xml + + + gpsd + + dbus + libgcc + libusb + ncurses + libsocket + bluez-libs + python3-pyserial + + + /etc/conf.d + /usr/bin + /usr/sbin + /lib/udev/gpsd.hotplug + /usr/lib + /lib/udev/rules.d + /usr/share/man + /usr/share/gpsd/doc + + + System.Service + + + gpsd.sysconfig + + + + gpsd-clients + Various text based and graphical clients for gpsd. + + gpsd + dbus + libusb + ncurses + bluez-libs + python3-pyserial + + + /usr/bin/cgps + /usr/bin/gpscat + /usr/bin/gpsdecode + /usr/bin/gpspipe + /usr/bin/gpxlogger + /usr/bin/lcdgps + /usr/bin/xgps + /usr/bin/xgpsspeed + /usr/share/man/man1/gps.1* + /usr/share/man/man1/cgps* + /usr/share/man/man1/gpscat* + /usr/share/man/man1/gpsdecode* + /usr/share/man/man1/gpspipe* + /usr/share/man/man1/gpxlogger* + /usr/share/man/man1/cgpxlogger* + /usr/share/man/man1/lcdgps* + /usr/share/man/man1/xgps* + /usr/share/applications + /usr/share/gpsd/icons + /usr/share/pixmaps + + + data/gpsd-logo.png + data/xgps.desktop + data/xgpsspeed.desktop + + + + gpsd-devel + Development files for gpsd. + + gpsd + + + /usr/bin/gpsfake + /usr/lib/python*/site-packages/gps/fake.py + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man1/gpsfake.1 + + + + + 2021-10-24 + 3.23.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-27 + 3.21 + First build. + fury + uglyside@yandex.ru + + + + + + libfreexl + https://www.gaia-gis.it/fossil/freexl/index + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.gis + Library to extract valid data from within an Excel (.xls) spreadsheet + FreeXL is an open source library to extract valid data from within an Excel (.xls) spreadsheet. + http://www.gaia-gis.it/gaia-sins/freexl-1.0.5.tar.gz + science/gis/libfreexl/pspec.xml + + + libfreexl + + /usr/lib + /usr/share/doc/* + + + + libfreexl-devel + Development files for libfreexl + + libfreexl + + + /usr/include/* + /usr/lib/pkgconfig/freexl.pc + /usr/lib/libfreexl.so + + + + + 2018-09-07 + 1.0.5 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-16 + 1.0.4 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-15 + 1.0.2 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-25 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libgeotiff + http://geotiff.osgeo.org + + PisiLinux Community + admins@pisilinux.org + + as-is + library + science.gis + Library for reading TIFF files with embedded tags + Biblioteka GeoTIFF + Library for reading TIFF files with embedded tags for geographic (cartographic) information. + Coğrafik bilgi için gömülü etikletler içeren TIFF dosyalarını okumaya yarayan bir kütüphane. + Ta biblioteka pozwala na odczytywanie i analizowanie znaczników „GeoTIFF”, a także definiowanie i zapisywanie znaczników w nowych plikach. + http://download.osgeo.org/geotiff/libgeotiff/libgeotiff-1.6.0.tar.gz + + doxygen + proj-devel + tiff-devel + zlib-devel + libjpeg-turbo-devel + + science/gis/libgeotiff/pspec.xml + + + libgeotiff + Library for reading TIFF files with embedded tags + + proj + tiff + zlib + libjpeg-turbo + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/epsg_csv + + + + libgeotiff-devel + Development files for libgeotiff + libgeotiff için geliştirme dosyaları + Pliki naglowkowe do libgeotiff + libgeotiff-devel, libgeotiff için geliştirme dosyalarını içerir. + + proj-devel + tiff-devel + zlib-devel + libjpeg-turbo-devel + libgeotiff + + + /usr/include + + + + + 2020-09-24 + 1.6.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-07 + 1.4.2 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-16 + 1.4.2 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-29 + 1.4.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libspatialite + https://www.gaia-gis.it/fossil/libspatialite/index + + PisiLinux Community + admins@pisilinux.org + + MPL-1.0 + library + science.gis + SQLite extension to support spatial data types and operations + Uzamsal veri türleri ve işlemlerini destekleyen sqlite uzantıları. + SpatiaLite is an open source library intended to extend the SQLite core to support fully fledged Spatial SQL capabilities. + libspatialite, uzamsal veri türleri ve işlemlerini destekleyen sqlite uzantıları içeren kitaplıktır. + http://www.gaia-gis.it/gaia-sins/libspatialite-sources/libspatialite-5.0.0.tar.gz + + geos-devel + proj-devel + zlib-devel + sqlite-devel + libxml2-devel + minizip-devel + libfreexl-devel + + science/gis/libspatialite/pspec.xml + + + libspatialite + SQLite extension to support spatial data types and operations + + geos + proj + zlib + sqlite + libxml2 + libfreexl + + + /usr/lib + /usr/share/doc/* + + + + libspatialite-devel + Development files for libspatialite + libspatialite için geliştirme dosyaları + libspatialite-devel, libspatialite için geliştirme dosyalarını içerir. + + geos-devel + proj-devel + zlib-devel + sqlite-devel + libxml2-devel + libfreexl-devel + libspatialite + + + /usr/include/* + /usr/lib/pkgconfig/* + /usr/lib/libspatialite.so + + + + + 2020-09-22 + 5.0.0 + Major version bump. Turkish translations added + Blue Devil + bluedevil@sctzine.com + + + 2018-09-07 + 4.3.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-18 + 4.3.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-29 + 4.2.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ogdi + https://src.fedoraproject.org/lookaside/extras/ogdi/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + science.gis + Open Geographical Datastore Interface, a GIS support library + Açık coğrafik veri kayıt arayüzü, GIS destek kütüphanesi + OGDI is an application programming interface (API) that uses a standardized access methods to work in conjunction with GIS software packages (the application) and various geospatial data products. + OGDI, GIS yazılım paketleri ve çeşitli mekansal/coğrafik veri ürünleriyle çalışabilecek standart erişim metodları içeren açık bir uygulama geliştirme arayüzüdür. + https://src.fedoraproject.org/lookaside/extras/ogdi/ogdi-3.2.1.tar.gz/sha512/74bb62dc437e83ec1364046621c66bcab9bd7c2e0f9bd62d8e5110b5f0adcc8519f76baefb2263aebdaa5fb76ec75c3075624559ce140b936f888bca5fa24a0a/ogdi-3.2.1.tar.gz + + proj-devel + zlib-devel + expat-devel + libtirpc-devel + unixODBC-devel + + + fedora/ogdi-3.2.0.beta2-sailer.patch + fedora/ogdi-3.2.1-cleanup.patch + fedora/ogdi-3.2.1-rpc.patch + fedora/ogdi-3.2.1-rpc-flags.patch + + science/gis/ogdi/pspec.xml + + + ogdi + + proj + zlib + expat + libtirpc + + + /usr/bin + /usr/lib + /usr/share/doc + + + + ogdi-devel + Development files for ogdi + ogdi için geliştirme dosyaları + + ogdi + proj-devel + zlib-devel + expat-devel + libtirpc-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2019-02-07 + 3.2.1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-07 + 3.2.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-15 + 3.2.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.2.0_beta2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-31 + 3.2.0_beta2 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + postgis + http://postgis.refractions.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.gis + Adds support for geographic objects to PostgreSQL + Coğrafi nesneler için PostgreSQL eklentisi + PostGIS adds support for geographic objects to the PostgreSQL object-relational database. In effect, PostGIS "spatially enables" the PostgreSQL server, allowing it to be used as a backend spatial database for geographic information systems (GIS), much like ESRI's SDE or Oracle's Spatial extension. + postgis, PostgreSQL nesne yönelimli veritabanı için coğrafi nesneler ekleme desteği sağlayan bir pakettir. Gerçekte postgis, coğrafi bilgi sistemleri için kullanılan spatial veritabanı bağlayıcısında olduğu gibi (daha çok ESRI'nin SDE'sine veya Oracle'in Spatial eklentisine benzer) PostgreSQL sunucusunda da benzer işleri yapabilmenizi sağlar. + http://download.osgeo.org/postgis/source/postgis-3.0.2.tar.gz + + proj-devel + gdal-devel + geos-devel + json-c-devel + libxslt-devel + libxml2-devel + postgresql-lib + + science/gis/postgis/pspec.xml + + + postgis + Adds support for geographic objects to PostgreSQL + + proj + gdal + geos + zlib + json-c + libxml2 + libpcre + postgresql-lib + postgresql-server + + + /etc + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + + 2020-09-25 + 3.0.2 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2019-11-18 + 2.5.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-07 + 2.4.4 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-16 + 2.3.6 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-30 + 2.3.2 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 2.2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-25 + 2.2.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + proj + https://proj.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + science.gis + Cartographic Projections library + Kartografik görüntüleme kütüphanesi + Proj.4 cartographic projection software with updated NAD27 grids. + Güncellenmiş NAD27 gridlerini de içeren kartografik görüntüleme yazılımı. + https://download.osgeo.org/proj/proj-7.1.1.tar.gz + https://download.osgeo.org/proj/proj-datumgrid-1.8.tar.gz + + curl-devel + tiff-devel + sqlite-devel + + science/gis/proj/pspec.xml + + + proj + Cartographic Projections library + + tiff + + + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/proj + + + + proj-devel + Development files for proj + proj için geliştirme dosyaları + proj-devel, proj için geliştirme dosyalarını içerir. + + proj + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-09-24 + 7.1.1 + Major version bump. + Blue Devil + bluedevil@sctzine.com + + + 2018-09-07 + 5.1.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-15 + 4.9.3 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.9.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-24 + 4.9.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cln + http://www.ginac.de/CLN/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + CLN, une librairie de classes (C++) pour les nombres. + A class library (C++) for numbers + Sayılar için bir C++ sınıf kütüphanesi + cln is a library for efficient computations with all kinds of numbers in arbitrary precision. + cln, her türlü hassaslıktaki sayılarla hızlı hesaplamalar yapmak için tasarlanmış bir kütüphanedir. + http://www.ginac.de/CLN/cln-1.3.6.tar.bz2 + + gmp-devel + + science/mathematics/cln/pspec.xml + + + cln + + gmp + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + cln-devel + Development files for cln + cln için geliştirme dosyaları + + cln + gmp-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-11 + 1.3.6 + Rebuild for new toolchain. + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-13 + 1.3.4 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-28 + 1.3.4 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-29 + 1.3.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + djbfft + http://cr.yp.to/djbfft.html + + PisiLinux Community + admins@pisilinux.org + + public-domain + library + science.mathematics + Fast float library + Hızlı küsürlü sayı kitaplığı + An extremely fast library for floating-point convolution. + djbfft çok hızlı küsürlü sayı bükülme kitaplığıdır. + http://cr.yp.to/djbfft/djbfft-0.76.tar.gz + + gcc3.patch + shared.patch + headers.patch + + science/mathematics/djbfft/pspec.xml + + + djbfft + + /usr/lib + /usr/share/doc + + + + djbfft-devel + Development files for djbfft + djbfft için geliştirme dosyaları + + djbfft + + + /usr/include + + + + + 2020-01-19 + 0.76 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.76 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-01 + 0.76 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.76 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-20 + 0.76 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + fftw3 + http://www.fftw.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + A library for computing the discrete Fourier transform (DFT) + Ayrık Fourier dönüşümü hesaplamak için bir kütüphane + FFTW v3 est une librairie sous-routine C pour le calcul discret de transformation de Fourier (DFT) dans une ou plusieurs dimensions, pour une entrée de taille arbitraire, aussi bien pour des données réeles ou complexes (ainsi que les données paires/impaires, i.e. la transformation discrète cosinus/sinus ou DCT/DST). + fftw3 is a C subroutine library for computing the discrete Fourier transform (DFT) in one or more dimensions, of arbitrary input size, and of both real and complex data (as well as of even/odd data, i.e. the discrete cosine/sine transforms or DCT/DST). + fftw3, ayrık Fourier dönüşümü hesaplamak için kullanılabilecek bir C kütüphanesidir. + FFTW v3 es una librería con subrutinas C para computar la transformación Fourier discreta (DFT) en una o más dimensiones, con longitud de entrada arbitraria, para datos reales y complejos (y también de datos par/impar, i.e. transformación discreta coseno/seno DCT/DST). + ftp://ftp.fftw.org/pub/fftw/fftw-3.3.8.tar.gz + + libgfortran + libquadmath + gettext + + science/mathematics/fftw3/pspec.xml + + + fftw3 + + libquadmath + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/info + + + + fftw3-devel + Development files for fftw3 + fftw3 için geliştirme dosyaları + + fftw3 + + + /usr/lib/pkgconfig + /usr/include + /usr/share/doc/fftw3/html + + + + + 2020-01-12 + 3.3.8 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 3.3.7 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 3.3.6 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 3.3.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + gsl + http://www.gnu.org/software/gsl/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + science.mathematics + GNU scientific library + GNU bilimsel kütüphane + La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++. + The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers. + C ve C++ programcıları tarafından kullanılan nümerik kütüphane + GNU Scientific Library (GSL) es una libería numérica para programadores C y C++. + https://ftp.gnu.org/gnu/gsl/gsl-2.6.tar.gz + science/mathematics/gsl/pspec.xml + + + gsl + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + + + + gsl-devel + Development files for gsl + gsl için geliştirme dosyaları + + gsl + + + /usr/include + /usr/share/aclocal + /usr/share/man/man3 + /usr/lib/pkgconfig + + + + + 2020-01-11 + 2.6 + Rebuild for toolchain + Kamil Atlı + suvari@pisilinux.org + + + 2019-10-05 + 2.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.4 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 2.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-30 + 1.16 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + lapack + http://www.netlib.org/lapack + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.mathematics + Linear Algebra PACKage + Doğrusal cebir paketi + LAPACK is a standard library for numerical linear algebra. LAPACK provides routines for solving systems of simultaneous linear equations, least-squares solutions of linear systems of equations, eigenvalue problems, and singular value problems. + LAPACK, nümerik doğrusal cebir için yazılmış standart bir kütüphanedir. Eşanlı doğrusal denklemler sistemini, doğrusal denklemler sistemindeki en küçük kareler tekniğini, özdeğer ve tekil değer problemlerini çözmek için pekçok yordamlar içerir. + https://github.com/Reference-LAPACK/lapack/archive/v3.9.0.tar.gz + + libgfortran + cmake + + + lapack-3.9.0-lapacke-shared.patch + + science/mathematics/lapack/pspec.xml + + + blas + Basic Linear Algebra Subprograms + Temel lineer cebir yordamları + Blas is a standard library which provides a number of basic algorithms for numerical algebra. + blas, temel lineer cebir yordamları içerir + + libgfortran + + + /usr/lib/libblas.so* + + + + blas-devel + Development files for blas + blas için geliştirme dosyaları + blas-devel, blas için geliştirme dosyaları içerir + static + + blas + + + /usr/lib/libblas.a + /usr/lib/pkgconfig/blas.pc + + + + cblas + C interface to BLAS + BLAS kitaplığının C arayüzü + Blas is a standard library which provides a number of basic algorithms for numerical algebra. + cblas, BLAS kitaplığının C arayüzü olan yordamları içerir + + blas + + + /usr/lib/libcblas.so* + + + + cblas-devel + Development files for CBLAS + cblas için geliştirme dosyaları + cblas-devel provides development files for cblas + cblas-devel, cblas için geliştirme dosyaları içerir + + blas-devel + cblas + + + /usr/lib/libcblas.a + /usr/include/cblas* + /usr/lib/pkgconfig/cblas.pc + /usr/lib/cmake/cblas-3.9.0/cblas* + + + + lapack + Linear Algebra PACKage + + libgcc + libgfortran + blas + + + /usr/share/doc + /usr/lib/liblapack.so* + + + + lapack-devel + Development files for lapack + lapack için geliştirme dosyaları + lapack-devel, lapack için geliştirme dosyaları içerir + static + + lapack + blas-devel + + + /usr/lib/cmake/lapack* + /usr/lib/liblapack.a + /usr/lib/pkgconfig/lapack.pc + + + + + 2020-11-07 + 3.9.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-12-12 + 3.9.0 + Fix dependency + Blue DeviL + bluedevil@sctzine.com + + + 2020-01-19 + 3.9.0 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2019-12-12 + 3.9.0 + Version bump + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-14 + 3.8.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-01 + 3.8.0 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2017-04-15 + 3.7.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.5.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-12-23 + 3.5.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libqalculate + http://qalculate.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + app:console + science.mathematics + Qalculate ! est une calculatrice de bureau multi-usage pour GNU/Linux. + Multi-purpose calculator library + Genel amaçlı hesap makinesi kütüphanesi + libqalculate underpins the Qalculate! multi-purpose desktop calculator for GNU/Linux. + libqalculate, Qalculate! hesap makinesi tarafından ihtiyaç duyulan genel amaçlı bir kütüphanedir. + https://github.com/Qalculate/libqalculate/archive/v3.10.0.tar.gz + + doxygen + intltool + cln-devel + gmp-devel + curl-devel + mpfr-devel + glib2-devel + icu4c-devel + gettext-devel + libxml2-devel + ncurses-devel + readline-devel + perl-XML-Parser + perl-Locale-gettext + + science/mathematics/libqalculate/pspec.xml + + + libqalculate + Multi-purpose calculator library + + cln + gmp + curl + mpfr + icu4c + glib2 + libgcc + libxml2 + readline + + + /usr/lib + /usr/share/doc + /usr/share/man + /usr/bin + /usr/share/qalculate + /usr/share/locale + + + + libqalculate-devel + Development files for libqalculate + libqalculate için geliştirme dosyaları + libqalculate-devel, libqalculate için geliştirme dosyalarını içerir. + + cln-devel + mpfr-devel + glib2-devel + libxml2-devel + libqalculate + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-26 + 3.10.0 + Minor version bump. + Blue Devil + bluedevil@sctzine.com + + + 2020-02-03 + 3.7.0 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-15 + 2.6.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-03-02 + 0.9.10 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.9.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 0.9.7 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libspiro + http://libspiro.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + Library to simplify the drawing of beautiful curves + Eğri çizimi kütüphanesi + libspiro is a library that will take an array of spiro control points and convert them into a series of bezier splines which can then be used in the myriad of ways the world has come to use beziers. + libspiro, verilen kontrol noktalarını bezier eğrilerine çeviren bir kütüphanedir. + https://github.com/fontforge/libspiro/archive/refs/tags/20200505.tar.gz + science/mathematics/libspiro/pspec.xml + + + libspiro + + /usr/lib + /usr/share/doc + + + + libspiro-devel + Development files for libspiro + libspiro için geliştirme dosyaları + + libspiro + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2021-08-10 + 1.1.0.20200505 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-18 + 0.5.20190731 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 0.5.20190731 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 0.5.20150702 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-20 + 0.5.20150702 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 20071029 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 20071029 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + matio + https://sourceforge.net/projects/matio/ + + Blue Devil + bluedevil@sctzine.com + + BSD + library + app:console + science.mathematics + C library with a fortran 90/95 module interface for reading/writing MATLAB MAT-files + Matlab dosyalarını okuyup/yazmak için bir C kitaplığı + matio is an open-source library for reading/writing MATLAB MAT files. This library is designed for use by programs/libraries that do not have access or do not want to rely on MATLAB's shared library. + matio, Matlab MAT dosyalarını okuyup/yazmak için geliştirilmiş, sınırlı Fortran 90 arayüzüne sahip bir C kitaplığıdır. + mirrors://sourceforge/matio/matio-1.5.17.tar.gz + + hdf5-devel + + science/mathematics/matio/pspec.xml + + + matio + + hdf5 + + + /usr/share + /usr/lib + /usr/bin + /usr/share/doc/matio + + + + matio-devel + Development files for matio + matio için geliştirme dosyaları + matio-devel, matio için geliştirme dosyalarını içerir. + + matio + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-06-08 + 1.5.17 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + metis + http://glaros.dtc.umn.edu/gkhome/metis/metis/overview + + Blue Devil + bluedevil@sctzine.com + + custom + library + science.mathematics + A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices + Aralıklı matrisler için, çizgeleri bölümleme, sonlu eleman ağlarını bölümleme programları. + METIS est une famille de programmes pour partitionner des graphes non structurés, des hypergraphes et calculer la renumérotation de matrice pour réduire son remplissage. + METIS is a family of programs for partitioning unstructured graphs and hypergraphs and computing fill-reducing orderings of sparse matrices. + metis, aralıklı matrisler için, çizgeleri bölümleme, sonlu eleman ağlarını bölümleme programları sunar. + https://bitbucket.org/petsc/pkg-metis/get/v5.1.0-p8.tar.bz2 + + cmake + + science/mathematics/metis/pspec.xml + + + metis + A set of serial programs for partitioning graphs, partitioning finite element meshes, and producing fill reducing orderings for sparse matrices + + /usr/lib + /usr/share/doc + + + + metis-devel + Development files for metis + metis için geliştirme dosyaları + metis-devel, metis için geliştirme dosyalarını içerir. + + metis + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-26 + 5.1.0_p8 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + netcdf + https://www.unidata.ucar.edu/software/netcdf/ + + PisiLinux Community + admins@pisilinux.org + + UCAR-Unidata + library + science.mathematics + Librairie scientifique et interface pour l'accès aux données orientées tableaux. + Scientific library and interface for array oriented data access + Dizi (array) odaklı veri erişimi için arayüz ve bilimsel kütüphane + netcdf (network common data form) is a set of software libraries and machine-independent data formats that support the creation, access, and sharing of array-oriented scientific data. + ftp://ftp.unidata.ucar.edu/pub/netcdf/netcdf-4.6.1.tar.gz + + hdf5-devel + curl-devel + libgfortran + + science/mathematics/netcdf/pspec.xml + + + netcdf + + hdf5 + curl + libgfortran + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/info + + + + netcdf-devel + Development files for netcdf + netcdf için geliştirme dosyaları + + netcdf + hdf5-devel + curl-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2019-02-06 + 4.6.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-07 + 4.6.1 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-16 + 4.5.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-08-16 + 4.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-16 + 4.4.1 + Rebuild with new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-25 + 4.4.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + octave + https://www.gnu.org/software/octave/ + + Blue Devil + bluedevil@sctzine.com + + GPL + library + app:gui + science.mathematics + A high-level language, primarily intended for numerical computations. + Özellikle sayısal hesaplamalar için geliştirilmiş yüksek seviyeli bir programlama dili. + GNU Octave is software featuring a high-level programming language, primarily intended for numerical computations. Octave helps in solving linear and nonlinear problems numerically, and for performing other numerical experiments using a language that is mostly compatible with MATLAB. It may also be used as a batch-oriented language. + octave, özellikle sayısal hesaplamalar için geliştirilmiş yüksek seviyeli bir programlama dilidir. Octave doğrusal ve doğrusal olmayan sayısal problemleri çözmede yardımcı olur. + https://ftp.gnu.org/gnu/octave/octave-5.2.0.tar.gz + + gperf + gnuplot + qrupdate + blas-devel + curl-devel + glpk-devel + hdf5-devel + fltk-devel + fftw3-devel + qhull-devel + arpack-devel + lapack-devel + qt5-linguist + libpcre-devel + freetype-devel + mesa-glu-devel + qt5-base-devel + readline-devel + sundials-devel + portaudio-devel + fontconfig-devel + libsndfile-devel + ghostscript-devel + qscintilla2-devel + SuiteSparse-devel + qt5-assistant-devel + GraphicsMagick-devel + + + octave-sundials4.patch + + science/mathematics/octave/pspec.xml + + + octave + A high-level language, primarily intended for numerical computations. + + blas + curl + fltk + glpk + hdf5 + fftw3 + qhull + arpack + lapack + libXft + libpcre + libXext + libgomp + alsa-lib + libglvnd + mesa-glu + freetype + qrupdate + qt5-base + readline + sundials + libXfixes + portaudio + fontconfig + libsndfile + libXcursor + libXrender + ghostscript + libgfortran + libXinerama + qscintilla2 + SuiteSparse + qt5-assistant + GraphicsMagick + + + /usr/lib + /usr/share/ + /usr/share/man + /usr/bin + /usr/libexec + /usr/share/doc/octave + /etc/ld.so.conf.d/octave.conf + + + + octave-devel + Development files for octave + octave için geliştirme dosyaları + octave-devel, octave için geliştirme dosyalarını içerir. + + octave + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-22 + 5.2.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + plotutils + http://www.gnu.org/software/plotutils/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + science.mathematics + 2D vector graphics library + 2B vektörel grafik araçları + PlotUtils is a powerful C/C++ function library for exporting 2D vector graphics. + 2B vektörel grafik üretmeye yarayan C/C++ kütüphanesi ve araçlar + ftp://ftp.heanet.ie/pub/gnu/plotutils/plotutils-2.6.tar.gz + + libXaw-devel + libXext-devel + libXt-devel + + + plotutils-2.6-png15.patch + + science/mathematics/plotutils/pspec.xml + + + plotutils + + libSM + libICE + libXmu + libXaw + libXext + libXt + libX11 + libgcc + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/info + /usr/share/man + /usr/share/libplot + /usr/share/ode + /usr/share/pic2plot + /usr/share/tek2plot + + + + plotutils-devel + Development files for plotutils + plotutils için geliştirme dosyaları + + plotutils + + + /usr/include + + + + + 2018-08-09 + 2.6 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-16 + 2.6 + Rebuild with new toolchain + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-06-09 + 2.6 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 2.6 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + pspp + http://www.gnu.org/software/pspp/pspp.html + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + science.mathematics + GNU PSPP is a program for statistical analysis of sampled data + PSPP bir örneklenmiş veri istatistik uygulamasıdır + GNU PSPP is a program for statistical analysis of sampled data + PSPP bir örneklenmiş veri istatistik uygulamasıdır + pspp + http://ftp.gnu.org/gnu/pspp/pspp-1.4.1.tar.gz + + python3-devel + cairo-devel + gsl-devel + gtk3-devel + gtksourceview3-devel + plotutils-devel + postgresql-lib + ncurses-devel + readline-devel + texinfo + desktop-file-utils + libxml2-devel + libglade-devel + gettext-devel + zlib-devel + icon-theme-hicolor + spread-sheet-widget-devel + + science/mathematics/pspp/pspec.xml + + + pspp + GNU PSPP is a program for statistical analysis of sampled data + + gsl + gtk3 + zlib + cairo + glib2 + pango + libxml2 + ncurses + readline + gtksourceview3 + postgresql-lib + icon-theme-hicolor + spread-sheet-widget + + + /etc/pspp + /usr/bin + /usr/lib + /usr/share/appdata + /usr/share/applications + /usr/share/icons + /usr/share/locale + /usr/share/man + /usr/share/mime + /usr/share/pspp + /usr/share/metainfo/org.fsf.pspp.metainfo.xml + + + pspp.desktop + splash.png + + + + pspp-docs + Documents for PSPP + + pspp + + + /usr/share/doc + /usr/share/info + + + + + 2020-09-09 + 1.4.1 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-10-05 + 1.3.0a + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-28 + 1.3.0a + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + qalculate-gtk + https://qalculate.github.io/ + + Blue Devil + bluedevil@sctzine.com + + GPLv2+ + app:gui + science.mathematics + GTK frontend for libqalculate. + Qalculate! is a multi-purpose cross-platform desktop calculator. It is simple to use but provides power and versatility normally reserved for complicated math packages, as well as useful tools for everyday needs (such as currency conversion and percent calculation). + https://github.com/Qalculate/qalculate-gtk/archive/v3.10.0.tar.gz + + intltool + gtk3-devel + cairo-devel + pango-devel + gettext-devel + libxml2-devel + python3-devel + readline-devel + gdk-pixbuf-devel + libqalculate-devel + + science/mathematics/qalculate-gtk/pspec.xml + + + qalculate-gtk + GTK frontend for libqalculate. + + gtk3 + cairo + pango + libxml2 + python3 + gdk-pixbuf + libqalculate + + + /usr/share + /usr/lib + /usr/share/man + /usr/bin + /usr/share/doc/qalculate-gtk + + + + + 2020-05-26 + 3.10.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + qrupdate + https://sourceforge.net/projects/qrupdate + + Blue Devil + bluedevil@sctzine.com + + GPLv3 + library + science.mathematics + Fortran library for fast updates of QR and Cholesky decompositions. + Hızlı QR ve Cholesky dekompozisyonları için Fortran kitaplığı. + qrupdate is a Fortran library for fast updates of QR and Cholesky decompositions. + qrupdate, hızlı QR ve Cholesky dekompozisyonları için Fortran kitaplığı sunar. + https://downloads.sourceforge.net/project/qrupdate/qrupdate/1.2/qrupdate-1.1.2.tar.gz + + blas-devel + libquadmath + lapack-devel + + science/mathematics/qrupdate/pspec.xml + + + qrupdate + Fortran library for fast updates of QR and Cholesky decompositions. + + blas + lapack + libgfortran + + + /usr/lib + /usr/share/doc/qrupdate + + + + + 2020-05-26 + 1.1.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + rkward + http://rkward.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + science.mathematics + Veri analiz aracı + Veri işleme aracı + RKWard essaie de fournir une manière facile et extensible d'utiliser une EDI/IHM (IDE/GUI) pour le projet R. RKWar essaie de combiner la puissance du langage R avec la (relative) facilité d'utilisation des outils commerciaux de statistique. + RKWard aims to provide an easily extensible, easy to use IDE/GUI for the R-project. RKWard tries to combine the power of the R-language with the (relative) ease of use of commercial statistics tools. + RKWard, R projesi için kolayca genişleyebilir, ve kolay kullanılabilir bir grafik arayüz (geliştirme ortamı) sağlamayı amaçlar. R dilinin gücüyle ticari programların kullanım kolaylığını birleştirmeye çalışır. + https://download.kde.org/stable/rkward/0.7.0/src/rkward-0.7.0b.tar.gz + + extra-cmake-modules + R-devel + qt5-base-devel + qt5-webkit-devel + qt5-script-devel + kcoreaddons-devel + kdoctools-devel + ki18n-devel + kxmlgui-devel + ktexteditor-devel + kdewebkit-devel + + science/mathematics/rkward/pspec.xml + + + rkward + + R + kio + ki18n + kcrash + kparts + libgcc + kconfig + kxmlgui + kservice + qt5-base + kdewebkit + qt5-script + qt5-webkit + kcompletion + kcoreaddons + kjobwidgets + ktexteditor + kwindowsystem + kconfigwidgets + kwidgetsaddons + + + /usr/bin + /usr/lib + /usr/share/locale + /usr/share/applications + /usr/share/doc + /usr/share/icons + /usr/share/mime + /usr/share/kxmlgui5 + /usr/share/rkward + /usr/share/man + /usr/share/kservices5 + /usr/share/org.kde.syntax-highlighting + + + + + 2019-04-10 + 0.7.0b + First Release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + spread-sheet-widget + https://www.gnu.org + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + app:gui + science.mathematics + Library for Gtk+ which provides a widget for viewing and manipulating 2 dimensional tabular data + Library for Gtk+ which provides a widget for viewing and manipulating 2 dimensional tabular data + spread-sheet-widget + http://alpha.gnu.org/gnu/ssw/spread-sheet-widget-0.6.tar.gz + + gtk3-devel + glib2-devel + python3-devel + + science/mathematics/spread-sheet-widget/pspec.xml + + + spread-sheet-widget + + gtk3 + + + /usr/lib + /usr/share/doc + /usr/share/info + + + + spread-sheet-widget-devel + + spread-sheet-widget + gtk3-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-09 + 0.6 + version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2019-04-10 + 0.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + SuiteSparse + http://faculty.cse.tamu.edu/davis/suitesparse.html + + Pisi Linux Community + admin@pisilinux.org + + GPL + library + science.mathematics + SuiteSparse, a suite of Sparse matrix software + Sparse matrix kütüphanesi + Librairie de matrices Sparse. + SuiteSparse is a single archive that contains sparse matrix libraries. + SuiteSparse, Sparse matrix kütüphanesi içerir. + https://github.com/DrTimothyAldenDavis/SuiteSparse/archive/v5.7.2.tar.gz + + cmake + blas-devel + metis-devel + libquadmath + lapack-devel + intel-tbb-devel + + + suitesparse-no-demo.patch + + science/mathematics/SuiteSparse/pspec.xml + + + SuiteSparse + SuiteSparse, a suite of Sparse matrix software + + blas + metis + lapack + libgomp + intel-tbb + + + /usr/lib + /usr/share/doc + + + + SuiteSparse-devel + Development files for SuiteSparse + SuiteSparse için geliştirme dosyaları + SuiteSparse-devel, SuiteSparse için geliştirme dosyalarını içerir. + + SuiteSparse + + + /usr/include + + + + + 2020-05-24 + 5.7.2 + Major Version Bump + Blue Devil + bluedevil@sctzine.com + + + 2017-04-24 + 4.4.4 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 4.4.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-11 + 4.4.4 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + sundials + https://computing.llnl.gov/projects/sundials + + Blue Devil + bluedevil@sctzine.com + + BSD + library + science.mathematics + Suite of nonlinear differential/algebraic equation solvers. + Doğrusal olmayan diferansiyel ve cebirsel eşitlik çözücüsü + sundials provides a suite of nonlinear differential/algebraic equation solvers. + sundials, doğrusal olmayan diferansiyel ve cebirsel eşitlik çözücüleri içeren bir kitaplıktır. + https://computation.llnl.gov/projects/sundials/download/sundials-5.3.0.tar.gz + + cmake + libquadmath + python-devel + openmpi-devel + SuiteSparse-devel + + science/mathematics/sundials/pspec.xml + + + sundials + A program that automatically solves layouts of Freecell and similar variants of Card Solitaire + + openmpi + libgomp + SuiteSparse + + + /usr/share + /usr/lib + /usr/share/doc + /usr/bin + + + + sundials-devel + Development files for sundials + + sundials + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-26 + 5.3.0 + First release. + Blue Devil + bluedevil@sctzine.com + + + + + + arpack + https://github.com/opencollab/arpack-ng + + Blue Devil + bluedevil@sctzine.com + + BSD + library + science.misc + Collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. + Büyük ölçekli özdeğer problemleri çözmek için tasarlanmış Fortran77 alt programları. + ARPACK-NG is a collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. + arpack, büyük ölçekli özdeğer problemleri çözmek için tasarlanmış Fortran77 alt programları sunar. + https://github.com/opencollab/arpack-ng/archive/3.7.0.tar.gz + + blas-devel + libquadmath + libgfortran + lapack-devel + openmpi-devel + + science/misc/arpack/pspec.xml + + + arpack + Collection of Fortran77 subroutines designed to solve large scale eigenvalue problems. + + blas + lapack + openmpi + libgfortran + libquadmath + + + /usr/lib + /usr/share/doc/arpack + + + + arpack-devel + Development files for arpack + arpack için geliştirme dosyaları + arpack-devel, arpack için geliştirme dosyalarını içerir. + + arpack + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-24 + 3.7.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + cfitsio + https://heasarc.gsfc.nasa.gov/docs/software/fitsio/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + app:console + science.misc + C and Fortran library for manipulating FITS files + FITS dosyalarını düzenleyebilmek için gerekli C ve Fortran kütüphanesi + CFITSIO provides simple high-level routines for reading and writing FITS files that insulate the programmer from the internal complexities of the FITS format. + CFITSIO, FITS dosyalarını okumak/yazmak için programcıyı FITS formatının kendi karmaşıklığından soyutlayan yüksek seviyede fonksiyonlar sağlar. + http://heasarc.gsfc.nasa.gov/FTP/software/fitsio/c/cfitsio3450.tar.gz + science/misc/cfitsio/pspec.xml + + + cfitsio + + /usr/lib + /usr/bin + /usr/share/doc + + + + cfitsio-devel + Development files for cfitsio + cfitsio için geliştirme dosyaları + + cfitsio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2018-09-07 + 3.450 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 3.420 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-15 + 3.370 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.370 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-18 + 3.370 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + coin + https://bitbucket.org/Coin3D/coin/wiki/Home + + PisiLinux Community + admin@pisilinux.org + + GPLv2 + app:console + science.misc + Coin3D is a high-level 3D graphics toolkit. + 3D Üst düzey grafiksel araç takımı + Is a high-level 3D graphics toolkit, fully compatible with SGI Open Inventor 2.1. + coin,SGI Open Inventor 2.1 ile tam uyumlu grafiksel 3D araç takımı + https://bitbucket.org/Coin3D/coin/downloads/Coin-3.1.3.tar.gz + + libXext-devel + mesa-devel + libSM-devel + libICE-devel + doxygen + libglade-devel + mesa-glu-devel + + + clang-name-lookup.diff + fix_gcc_4_8_1.patch + Coin-2.5.0-inttypes.patch + Coin-2.4.6-man3.diff + + science/misc/coin/pspec.xml + + + coin + + libX11 + libglvnd + libXext + mesa + libSM + libICE + libglade + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/Coin + + + + coin-devel + Development files for coin + coin için geliştirme dosyaları + + coin + + + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal + + + + coin-docs + Documents for Coin + coin belgeleri + + /usr/share/doc + + + + + 2020-01-27 + 3.1.3 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2018-09-16 + 3.1.3 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-15 + 3.1.3 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.1.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 3.1.3 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + eigen3 + http://eigen.tuxfamily.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2-with-exceptions + library + science.misc + Lightweight C++ template library for linear algebra + Lineer cebir için hafif bir C++ şablon kitaplığı + eigen3 is a lightweight C++ template library for vector and matrix math, a.k.a. linear algebra. + Eigen3, lineer cebir için kullanılan hafif bir C++ şablon kitaplığıdır. + http://bitbucket.org/eigen/eigen/get/3.3.7.tar.bz2 + + cmake + freeglut-devel + fftw3-devel + gmp-devel + mpfr-devel + mesa-devel + + science/misc/eigen3/pspec.xml + + + eigen3 + + /usr/include + /usr/share + + + + + 2020-01-27 + 3.3.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-12 + 3.3.7 + Rebuild. + Erkan Işık + erkanisik@pisilinux.org + + + 2018-08-03 + 3.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 3.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-17 + 3.3.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 3.2.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-23 + 3.2.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + flint + http://www.flintlib.org/ + + Blue Devil + bluedevil@sctzine.com + + LGPLv2+ + library + science.misc + Fast Library for Number Theory. + Sayı kuramı için hızlı bir kitaplık. + FLINT is a C library for doing number theory. FLINT supports arithmetic with numbers, polynomials, power series and matrices over many base rings. + flint, sayı kuramı için hızlı bir kitaplık sunar. + http://www.flintlib.org/flint-2.5.2.tar.gz + + gmp-devel + ntl-devel + mpfr-devel + + + flint-pie-hardening-conflict.patch + + science/misc/flint/pspec.xml + + + flint + Fast Library for Number Theory. + + gmp + ntl + mpfr + + + /usr/lib + /usr/share/doc/flint + + + + flint-devel + Development files for flint + flint için geliştirme dosyaları + flint-devel, flint için geliştirme dosyalarını içerir. + + flint + + + /usr/include + + + + + 2020-05-20 + 2.5.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + fplll + https://github.com/fplll/fplll + + Blue Devil + bluedevil@sctzine.com + + LGPLv2.1 + library + app:console + science.misc + Lattice algorithms using floating-point arithmetic. + Kayan-noktalı sayıları aritmetiği kullanan latis algoritmaları. + fplll contains implementations of several lattice algorithms. The implementation relies on floating-point orthogonalization, and LLL [LLL82] is central to the code, hence the name. + fplll, kayan-noktalı sayıları aritmetiği kullanan latis algoritmaları sunar. + https://github.com/fplll/fplll/archive/5.3.2.tar.gz + + qd-devel + gmp-devel + mpfr-devel + + science/misc/fplll/pspec.xml + + + fplll + Lattice algorithms using floating-point arithmetic. + + qd + gmp + mpfr + + + /usr/bin + /usr/share/fplll + /usr/share/doc/fplll + /usr/lib/libfplll* + + + + fplll-devel + Development files for fplll + fplll için geliştirme dosyaları + fplll-devel, fplll için geliştirme dosyalarını içerir. + + fplll + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-20 + 5.3.2 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + gf2x + https://gforge.inria.fr/projects/gf2x/ + + Blue Devil + bluedevil@sctzine.com + + GPL + LGPL + library + science.misc + A library for multiplying polynomials over the binary field. + İkilik alan üzerinden polinom çarpması yapabilen bir C kitaplığı. + gf2x is a library for multiplying polynomials over the binary field. + gf2x, ikilik alan üzerinden polinom çarpması yapabilen bir C kitaplığı sunar. + https://gforge.inria.fr/frs/download.php/file/38243/gf2x-1.3.0.tar.gz + + libgcc + + science/misc/gf2x/pspec.xml + + + gf2x + A library for multiplying polynomials over the binary field. + + libgcc + + + /usr/lib + /usr/share/doc/gf2x + + + + gf2x-devel + Development files for g2fx + gf2x için geliştirme dosyaları + gf2x-devel, gf2x için geliştirme dosyalarını içerir. + + gf2x + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-20 + 1.3.0 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + gnuplot + http://www.gnuplot.info/ + + Blue Devil + bluedevil@sctzine.com + + custom + app:console + science.misc + Plotting package which outputs to X11, PostScript, PNG, GIF, and others. + X11, PostScript, PNG, GIF, ve diğerlerine çıktı verebilen çizim yapma paketi. + Gnuplot is a portable command-line driven graphing utility for Linux, OS/2, MS Windows, OSX, VMS, and many other platforms. GNUPlot provides plotting package which outputs to X11, PostScript, PNG, GIF, and others. + gnuplot, X11, PostScript, PNG, GIF, ve diğerlerine çıktı verebilen çizim yapma paketi sunar. + https://downloads.sourceforge.net/sourceforge/gnuplot/gnuplot-5.2.8.tar.gz + + emacs + gd-devel + lua-devel + cairo-devel + pango-devel + wxGTK-devel + qt5-linguist + libcerf-devel + qt5-svg-devel + qt5-base-devel + readline-devel + libjpeg-turbo-devel + + + lua53_compat.patch + + science/misc/gnuplot/pspec.xml + + + gnuplot + A high-level language, primarily intended for numerical computations. + + gd + lua + emacs + cairo + pango + wxGTK + libcerf + qt5-svg + qt5-base + readline + wxGTK-common + libjpeg-turbo + + + /usr/share/ + /usr/bin + /usr/share/doc/gnuplot + + + + + 2020-05-22 + 5.2.8 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + hdf5 + https://www.hdfgroup.org/HDF5/ + + PisiLinux Community + admins@pisilinux.org + + BSD + NCSA-HDF + library + science.misc + NCSA Hierarchical Data Format (HDF) Software Library and Utilities + NCSA hiyerarşik veri biçimi (Hierarchical Data Format - HDF) kütüphanesi ve araçları. + HDF5 est une librairie généraliste ainsi qu'un format de fichier pour stocker des informations scientifiques. + HDF5 is a general purpose library and file format for storing scientific data. + HDF5, bilimsel verileri saklamak için kullanılan bir dosya biçimi tanımını ve bu dosyaları kullanmak için gerekli kütüphane ve araçları sağlar. + HDF5 es una librería de uso general y un formato de archivos para almacenar datos científicos + https://support.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.10.5.tar.bz2 + + time + cmake + libgfortran + zlib-devel + net-tools + + science/misc/hdf5/pspec.xml + + + hdf5 + + zlib + libgcc + libgfortran + + + /usr/bin + /usr/lib + /usr/share/doc/hdf5 + /usr/share/hdf5_examples + + + + hdf5-devel + Development files for hdf5 + hdf5 için geliştirme dosyaları + + hdf5 + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-27 + 1.10.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-07-14 + 1.10.5 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2019-02-03 + 1.10.4 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-05 + 1.10.1 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-15 + 1.10.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-10 + 1.8.17 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 1.8.16 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + + + + ilmbase + http://www.openexr.com + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.misc + Several utility libraries from ILM (Industrial Light & Magic) used by OpenEXR + ILM (Industrial Light & Magic) şirketinden OpenEXR tarafından kullanılan çeşitli araç ve kitaplıklar + IlmBase are a set of utility libraries released by ILM, and used in their OpenEXR implementation. Included in this package you can find; libHalf (a class named Half for manipulating "half" values (16-bit floating point format) as if they were a built-in C++ data type), libIlmThread (a thread abstraction library on top of pthreads), libImath (a math library with support for matrices, 2d and 3d transformations, solvers for linear/quadratic/cubic equations and more), libIex (an exception handling library). + IlmBase, ILM tarafından yayınlanan ve onların OpenEXR gerçeklemelerinde kullandıkları kitaplıkları içerir. Bu pakette; libHalf ("yarım" değerleri (16-bit kayan noktalı sayı biçimi) C++ dilinin kendi tipleriymiş gibi kullanan Half sınıfı), libIlmThread (pthread üerine yazılmış bir soyutlama kitaplığı), libImath (matris, 2 ve 3 boyutlu dönüşümler, lineer, ikinci ve üçüncü dereceden denklem çözücü destekli matematik kitaplığı), libIex (istisna işleme kitaplığı) kitaplıklarını bulabilirsiniz. + https://github.com/AcademySoftwareFoundation/openexr/archive/v2.5.3.tar.gz + science/misc/ilmbase/pspec.xml + + + ilmbase + + libgcc + + + /usr/lib + /usr/share/doc + + + + ilmbase-devel + Development files for ilmbase + ilmbase için geliştirme dosyaları + + ilmbase + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-20 + 2.5.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.2.1 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-08-06 + 2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 2.2.0 + Version Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-09 + 2.0.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-25 + 2.0.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + imath + https://www.openexr.com/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.misc + Library of 2D and 3D vector, matrix, and math operations for computer graphics + Bilgisayar grafikleri için 2B ve 3B vektör, matris ve matematik işlemleri kitaplığı + https://github.com/AcademySoftwareFoundation/Imath/archive/refs/tags/v3.1.3.tar.gz + + cmake + doxygen + boost-devel + boost-python3 + python3-devel + python3-numpy + python3-sphinx + python3-breathe + + + fedora/imath-python-test.patch + fedora/209.patch + fedora/imath-docs.patch + + science/misc/imath/pspec.xml + + + imath + + libgcc + python3 + boost-python3 + + + /usr/lib + /usr/share + /usr/share/doc + + + ilmbase + + + + imath-devel + Development files for imath + + imath + + + /usr/include + /usr/lib/cmake + /usr/lib/pkgconfig + + + ilmbase-devel + + + + + 2021-10-26 + 3.1.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + iml + https://cs.uwaterloo.ca/~astorjoh/iml.html + + Blue Devil + bluedevil@sctzine.com + + GPLv2+ + library + science.misc + IML - Integer Matrix Library. + Tamsayı matris algoritmaları C kitaplığı. + IML is a free library of C source code which implements algorithms for computing exact solutions to dense systems of linear equations over the integers. + iml, tamsayı matris algoritmaları C kitaplığı sunar. + http://www.cs.uwaterloo.ca/~astorjoh/iml-1.0.5.tar.bz2 + + gmp-devel + cblas-devel + + science/misc/iml/pspec.xml + + + iml + IML - Integer Matrix Library. + + gmp + cblas + + + /usr/share + /usr/lib + /usr/share/doc/iml + + + + iml-devel + Development files for iml + iml için geliştirme dosyaları + iml-devel, iml için geliştirme dosyalarını içerir. + + iml + + + /usr/include + + + + + 2020-05-20 + 1.0.5 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + libcerf + https://jugit.fz-juelich.de/mlz/libcerf/ + + Blue Devil + bluedevil@sctzine.com + + custom + library + science.misc + A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. + Dawson, Faddeeva, ve Voigt yordamları ile beraber karmaşık hata yordamlarının kesin ve verimli bir uygulaması olan bağımsız sayısal kitaplık. + libcerf provides a self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. + libcerf, Dawson, Faddeeva, ve Voigt yordamları ile beraber karmaşık hata yordamlarının kesin ve verimli bir uygulaması olan bağımsız sayısal kitaplık sunar. + https://jugit.fz-juelich.de/mlz/libcerf/-/archive/v1.13/libcerf-v1.13.tar.gz + + cmake + + science/misc/libcerf/pspec.xml + + + libcerf + A self-contained numeric library that provides an efficient and accurate implementation of complex error functions, along with Dawson, Faddeeva, and Voigt functions. + + /usr/lib + /usr/share/man + /usr/share/doc/libcerf + + + + libcerf-devel + Development files for libcerf + libcerf için geliştirme dosyaları + libcerf-devel, libcerf için geliştirme dosyalarını içerir. + + libcerf + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-20 + 1.13 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + libindi + http://www.indilib.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app:console + library + science.misc + Astronomical control protocol library + indilib is a distributed control protocol designed to operate astronomical instrumentation. indilib is small, flexible, easy to parse, and scalable. + https://github.com/indilib/indi/archive/v1.9.3.tar.gz + + libjpeg-turbo-devel + qt5-base-devel + libtheora-devel + libnova-devel + cfitsio-devel + libusb-devel + fftw3-devel + boost-devel + curl-devel + zlib-devel + gsl-devel + pkgconfig + cmake + + science/misc/libindi/pspec.xml + + + libindi + + fftw3 + libogg + libtheora + libnova + cfitsio + gsl + curl + libjpeg-turbo + libusb + gsl + libgcc + zlib + + + /usr/bin + /usr/lib + /lib/udev/rules.d + /usr/share/indi + /usr/share/doc + + + + libindi-devel + Development files for libindi + + libindi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-14 + 1.9.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-14 + 1.9.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-12 + 1.8.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-27 + 1.8.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-05 + 1.8.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-07 + 1.7.4 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 1.6.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 1.6.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-18 + 1.4.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 1.2.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-18 + 1.2.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libnova + http://libnova.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + science.misc + Celestial Mechanics and Astronomical Calculation Library + Gökyüzü mekaniği ve astronomik hesaplama kütüphanesi + libnova is a general purpose, double precision, celestial mechanics, astrometry and astrodynamics library. + libnova genel amaçlı, çift hassasiyetli, gökyüzü mekaniği, astrometri ve astrodinamik kütüphanesidir. + https://sourceforge.net/projects/libnova/files/libnova/v%200.15.0/libnova-0.15.0.tar.gz + science/misc/libnova/pspec.xml + + + libnova + + /usr/bin + /usr/lib + /usr/share/doc + + + + libnova-devel + Development files for libnova + libnova için geliştirme dosyaları + + libnova + + + /usr/include + /usr/bin/libnovaconfig + + + + + 2020-01-27 + 0.15.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-07 + 0.15.0 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-13 + 0.15.0 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-18 + 0.14.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 0.14.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 0.14.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + m4ri + https://bitbucket.org/malb/m4ri + + Blue Devil + bluedevil@sctzine.com + + GPLv2+ + library + science.misc + Algorithms for linear algebra over F_2. + F2 üzerinden lineer cebir için algoritmalar. + M4RI is a library for fast arithmetic with dense matrices over F2. The name M4RI comes from the first implemented algorithm: The “Method of the Four Russians” inversion algorithm published by Gregory Bard. This algorithm in turn is named after the “Method of the Four Russians” multiplication algorithm which is probably better referred to as Kronrod's method. + m4ri, F2 üzerinden lineer cebir için algoritmalar sunar. + https://bitbucket.org/malb/m4ri/get/release-20200125.tar.gz + + libpng-devel + + science/misc/m4ri/pspec.xml + + + m4ri + Algorithms for linear algebra over F_2. + + libpng + + + /usr/lib + /usr/share/doc/m4ri + + + + m4ri-devel + Development files for m4ri + m4ri için geliştirme dosyaları + m4ri-devel, m4ri için geliştirme dosyalarını içerir. + + m4ri + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-20 + 20200125 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + m4rie + https://bitbucket.org/malb/m4rie + + Blue Devil + bluedevil@sctzine.com + + GPLv2+ + library + science.misc + Algorithms for linear algebra over F2^e. + F2^e üzerinden lineer cebir için algoritmalar. + M4RIE is a library for fast arithmetic with dense matrices over GF(2^e) for 2 ≤ e≤ 16. The name stems from the fact that is relies heavily on M4RI. M4RIE is available under the General Public License Version 2 or later (GPLv2+). + m4rie, F2^e üzerinden lineer cebir için algoritmalar sunar. + https://bitbucket.org/malb/m4rie/get/release-20200115.tar.gz + + m4ri-devel + + science/misc/m4rie/pspec.xml + + + m4rie + Algorithms for linear algebra over F2^e. + + m4ri + + + /usr/lib + /usr/share/doc/m4rie + + + + m4rie-devel + Development files for m4rie + m4rie için geliştirme dosyaları + m4rie-devel, m4rie için geliştirme dosyalarını içerir. + + m4rie + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-20 + 20200125 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + muparser + http://muparser.beltoforion.de/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + science.misc + Mathematical expressions parser library + Matematiksel ifade ayrıştırma kitaplığı + muparser is a mathematical expressions parser library. It is based on transforming an expression into a bytecode and precalculating constant parts of it. + muparser, matematiksel ifadelerin ayrıştırılmasında kullanılan bir kitaplıktır. + https://github.com/beltoforion/muparser/archive/v2.2.6.tar.gz + science/misc/muparser/pspec.xml + + + muparser + + libgcc + + + /usr/lib + /usr/share/doc + + + + muparser-devel + Development files for muparser + muparser için geliştirme dosyaları + + muparser + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-27 + 2.2.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-07 + 2.2.5 + Release Bump + Rebuild with new toolchain + admin@pisilinux.org + + + 2017-04-15 + 2.2.5 + Release Bump + Rebuild with new toolchain + admin@pisilinux.org + + + 2016-06-09 + 2.2.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-08 + 2.2.5 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ntl + https://www.shoup.net/ntl/ + + Blue Devil + bluedevil@sctzine.com + + LGPL + library + science.misc + A Library for doing Number Theory. + Sayı kuramı için bir kitaplık. + NTL is a high-performance, portable C++ library providing data structures and algorithms for manipulating signed, arbitrary length integers, and for vectors, matrices, and polynomials over the integers and over finite fields. + ntl, sayı kuramı için bir kitaplık sunar. + https://www.shoup.net/ntl/ntl-11.4.3.tar.gz + + gmp-devel + gf2x-devel + + science/misc/ntl/pspec.xml + + + ntl + A Library for doing Number Theory. + + gmp + gf2x + + + /usr/lib/libntl* + + + + ntl-devel + Development files for ntl + ntl için geliştirme dosyaları + ntl-devel, ntl için geliştirme dosyalarını içerir. + + ntl + + + /usr/include + /usr/lib/pkgconfig + + + + ntl-docs + Documentation files for ntl + ntl için belgelendirme dosyaları + ntl-docs, ntl için belgelendirme dosyalarını içerir. + + ntl + + + /usr/share/doc + + + + + 2020-05-20 + 11.4.3 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + opencascade + https://www.opencascade.com/ + + Blue Devil + bluedevil@sctzine.com + + LGPLv2.1 + app:console + library + science.misc + Open CASCADE Technology, 3D modeling and numerical simulation. + 3 boyutlu modelleme ve nümerik simülasyon kitaplık ve araçları. + Open CASCADE Technology (OCCT) is an object-oriented C++ class library designed for rapid production of sophisticated domain-specific CAD/CAM/CAE applications.. + opencascade, 3 boyutlu modelleme ve nümerik simülasyon kitaplık ve araçları sunar. + https://github.com/tpaviot/oce/releases/download/official-upstream-packages/opencascade-7.4.0p1.snapshot.tar.gz + + cmake + tcltk-devel + ffmpeg-devel + libXmu-devel + freetype-devel + qt5-base-devel + intel-tbb-devel + fontconfig-devel + + + fix-install-dir-references.patch + cmake-fix-variable.patch + + science/misc/opencascade/pspec.xml + + + opencascade + Open CASCADE Technology, 3D modeling and numerical simulation. + + tcl + tcltk + ffmpeg + libXmu + freetype + libglvnd + qt5-base + intel-tbb + fontconfig + + + /usr/lib + /usr/share/doc + /usr/bin + /etc/profile.d + /usr/share/opencascade + + + + opencascade-devel + Development files for opencascade + opencascade için geliştirme dosyaları + opencascade-devel, opencascade için geliştirme dosyalarını içerir. + + opencascade + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-28 + 7.4.0 + First Pisi Release + Blue Devil + bluedevil@sctzine.com + + + + + + qhull + http://www.qhull.org/ + + Blue Devil + bluedevil@sctzine.com + + custom + app:console + library + science.misc + A general dimension code for computing convex hulls and related structures. + Dışbukey gövdeler ve ilgili yapılar için genel boyutlu algoritmalar. + Qhull computes the convex hull, Delaunay triangulation, Voronoi diagram, halfspace intersection about a point, furthest-site Delaunay triangulation, and furthest-site Voronoi diagram. + qhull, dışbukey gövdeler ve ilgili yapılar için genel boyutlu algoritmalar sunar. + https://github.com/qhull/qhull/archive/2019.1.tar.gz + + cmake + + + qhull-pic.patch + qhull-no-static.patch + + science/misc/qhull/pspec.xml + + + qhull + A general dimension code for computing convex hulls and related structures. + + libgcc + + + /usr/lib + /usr/share/man + /usr/bin + /usr/share/doc/qhull + + + + qhull-devel + Development files for qhull + qhull için geliştirme dosyaları + qhull-devel, qhull için geliştirme dosyalarını içerir. + + qhull + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-05-27 + 2019.1 + First pisi release. + Blue Devil + bluedevil@sctzine.com + + + + + + wcslib + http://www.atnf.csiro.au/people/Mark.Calabretta/WCS/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + science.misc + A C library that implements the 'World Coordinate System' (WCS) standard in FITS + The FITS "World Coordinate System" (WCS) standard defines keywords and usage that provide for the description of astronomical coordinate systems in a FITS image header. + ftp://ftp.atnf.csiro.au/pub/software/wcslib/wcslib-6.4.tar.bz2 + + gcc + flex + libgfortran + cfitsio-devel + + science/misc/wcslib/pspec.xml + + + wcslib + + cfitsio + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man/man1 + + + + wcslib-devel + Development files for wcslib + + wcslib + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-27 + 6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-07 + 5.19.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-13 + 5.18 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-15 + 5.16 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-09 + 5.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-18 + 5.12 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + opencv + https://opencv.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + science.robotics + Computer vision library + Bilgisayarla görme kütüphanesi + Biblioteka funkcji do grafiki komputerowej w czasie rzeczywistym + opencv is a programming library mainly aimed at the real time computer vision. Example applications are human-computer interaction, object identification, face recognition, motion tracking, mobile robotics. + opencv gerçek zamanlı bilgisayarla görme işlemleri için tasarlanmış bir kütüphanedir. İnsan-bilgisayar etkileşimi, nesne tanımlama, yüz tanıma, hareket izleme, mobil robotik, opencv'nin kullanıldığı bazı uygulama alanlarıdır. + OpenCV (Open Source Computer Vision) to biblioteka funkcji przeznaczonych głównie do grafiki komputerowej w czasie rzeczywistym. + https://github.com/opencv/opencv/archive/4.5.4.tar.gz + https://github.com/opencv/opencv_contrib/archive/4.5.4.tar.gz + + cmake + hdf5-devel + gtk2-devel + gtk3-devel + cairo-devel + libv4l-devel + openexr-libs + jasper-devel + imath-devel + openexr-devel + lapack-devel + python-numpy + python-devel + python3-devel + python3-numpy + xine-lib-devel + libdc1394-devel + gstreamer-devel + gdk-pixbuf-devel + libjpeg-turbo-devel + libgphoto2-devel + gst-plugins-base-devel + intel-tbb-devel + eigen3 + opencl-icd-devel + libglvnd-devel + tiff-devel + webp-devel + freetype-devel + harfbuzz-devel + libpng-devel + protobuf-devel + opencl-icd-devel + ninja + openjpeg2-devel + + + 2a4348e0.patch + + science/robotics/opencv/pspec.xml + + + opencv + + gtk3 + hdf5 + cairo + zlib + glib2 + jasper + libgcc + libpng + libv4l + imath + libgphoto2 + openexr-libs + xine-lib + libdc1394 + gstreamer + gdk-pixbuf + gst-plugins-base + libjpeg-turbo + intel-tbb + opencl-icd + libglvnd + tiff + webp + freetype + harfbuzz + protobuf + opencl-icd + openjpeg2 + + + /usr/lib + /usr/bin + /usr/share/OpenCV + /usr/share/licenses + /usr/share/opencv4 + + + + opencv-docs + Computer vision library documents and examples + + /usr/share/doc/opencv + /usr/share/doc/opencv/samples + + + + opencv-devel + Development files for opencv + opencv için geliştirme dosyaları + Pliki naglowkowe do opencv + + opencv + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-12-09 + 4.5.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-23 + 4.5.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-12 + 4.5.1 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-09-19 + 4.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-13 + 4.2.0 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2019-01-11 + 3.4.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-14 + 3.4.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-23 + 3.4.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-14 + 3.2.0 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2017-09-22 + 3.2.0 + Release bump. + Kamil Atlı + suvari@pisilinux.org + + + 2017-07-07 + 3.2.0 + Release bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2017-04-17 + 3.2.0 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-11-06 + 2.4.13 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-09 + 2.4.11 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-15 + 2.4.11 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + cyrus-sasl + https://www.cyrusimap.org/sasl/ + + PisiLinux Community + admins@pisilinux.org + + as-is + library + service + server.auth + The Cyrus SASL (Simple Authentication and Security Layer) + Cyrus basit kimlik tanımlama ve güvenlik katmanı + cyrus-sasl is the Simple Authentication and Security Layer, a method for adding authentication support to connection-based protocols. To use SASL, a protocol includes a command for identifying and authenticating a user to a server and for optionally negotiating protection of subsequent protocol interactions. + Cyrus-sasl, bağlantı tabanlı protokoller için kullanılan bir kimlik doğrulama uygulamasıdır. Çoğunlukla Smtp doğrulaması için kullanılır. + https://github.com/cyrusimap/cyrus-sasl/releases/download/cyrus-sasl-2.1.27/cyrus-sasl-2.1.27.tar.gz + + mit-kerberos-devel + pam-devel + gdbm-devel + e2fsprogs-devel + openssl-devel + groff + openldap-server + + + gentoo/cyrus-sasl-2.1.25-auxprop.patch + gentoo/cyrus-sasl-2.1.26-missing-size_t.patch + gentoo/cyrus-sasl-2.1.27-CVE-2019-19906.patch + gentoo/cyrus-sasl-2.1.27-as_needed.patch + gentoo/cyrus-sasl-2.1.27-autoconf-2.71.patch + gentoo/cyrus-sasl-2.1.27-autotools_fixes.patch + gentoo/cyrus-sasl-2.1.27-avoid_pic_overwrite.patch + gentoo/cyrus-sasl-2.1.27-db_gdbm-fix-gdbm_errno-overlay-from-gdbm_close.patch + gentoo/cyrus-sasl-2.1.27-doc_build_fix.patch + gentoo/cyrus-sasl-2.1.27-gss_c_nt_hostbased_service.patch + gentoo/cyrus-sasl-2.1.27-memmem.patch + gentoo/cyrus-sasl-2.1.27-slibtool.patch + + server/auth/cyrus-sasl/pspec.xml + + + cyrus-sasl + + mit-kerberos + pam + gdbm + e2fsprogs + openssl + + + /etc + /usr/lib/tmpfiles.d/cyrus-sasl.conf + /usr/sbin + /usr/lib + /usr/share/cyrus-sasl-2 + /run + /usr/share/man + /usr/share/doc + + + System.Service + System.Package + + + saslauthd.confd + saslauthd.pam + tmpfiles.conf + + + + cyrus-sasl-devel + Development files for cyrus-sasl + cyrus-sasl için geliştirme dosyaları + + cyrus-sasl + + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc/cyrus-sasl/*.txt + /usr/share/man/man3 + + + + + 2021-11-06 + 2.1.27 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 2.1.27 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-12 + 2.1.27 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 2.1.26 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-09 + 2.1.26 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-19 + 2.1.26 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-08 + 2.1.26 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-07-05 + 2.1.26 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libpwquality + https://fedorahosted.org/libpwquality/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + server.auth + Password quality checking + The libpwquality package contains a library used for password quality checking and generation of random passwords that pass the checks. + https://github.com/libpwquality/libpwquality/releases/download/libpwquality-1.4.0/libpwquality-1.4.0.tar.bz2 + + cracklib-devel + pam-devel + audit-devel + + server/auth/libpwquality/pspec.xml + + + libpwquality + + cracklib + pam + + + /lib + /etc/security + /usr/lib + /usr/share/man/man1 + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc/libpwquality + /usr/share/locale + /usr/bin + + + + libpwquality-devel + libpwquality için geliştirme dosyaları + libpwquality için geliştirme dosyaları + + libpwquality + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-06-06 + 1.4.0 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2021-04-26 + 1.4.0 + Release Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-26 + 1.3.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 1.2.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-23 + 1.2.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + bind + https://www.isc.org/software/bind/ + + PisiLinux Community + admins@pisilinux.org + + as-is + service + server + The Berkeley Internet Name Domain (BIND) DNS (Domain Name System) server + Berkeley İnternet İsim Alanı (BIND) DNS (Alan Adı Sistemi) sunucusu + bind is an implementation of the DNS protocols, bind includes a DNS server (named), a resolver library and tools for verifying that the DNS server is operating properly. + bind, DNS protokollerinin gerçeklenimidir. DNS sunucu (named) ve bu sunucunun düzgün çalışması ve doğrulamasını yapılması için gerekli çözümleyici kitaplık ve araçları içerir. + ftp://ftp.isc.org/isc/bind9/9.14.9/bind-9.14.9.tar.gz + + openssl-devel + libxml2-devel + libcap-devel + zlib-devel + e2fsprogs-devel + readline-devel + geoip-devel + python3-devel + python3-PLY + + + nslookup-pisilinux.patch + fedora/bind-9.5-PIE.patch + fedora/bind97-rh645544.patch + fedora/bind99-rh640538.patch + + server/bind/pspec.xml + + + bind-libs + bind-libs contains the libraries used by both the bind server package and the tools package + bind kitaplık dosyaları + library + server.library + + openssl + libxml2 + mit-kerberos + + + /usr/lib + + + + bind-devel + bind header and development files + bind geliştirme başlıkları ve araçları + library + server.library + + bind-libs + + + /usr/include + /usr/bin/isc-config.sh + /usr/share/man/man1/isc-config* + /usr/share/man/man3/lwres* + + + + bind-tools + Utilities for querying DNS name servers + DNS isim çözümleme araçları + app:console + network.analyzer + + bind-libs + readline + mit-kerberos + python3 + python3-PLY + + + /usr/bin + /usr/share/man/man1 + + + + bind-chroot + A chroot runtime environment for the ISC BIND DNS server 'named' + bind sunucusunu chroot içinde çalıştırmak için gerekli dizin ve dosyalar + service + + bind + + + /etc/rsyslog.d/bind_chroot.conf + /var/named/chroot/etc + /var/named/chroot + + + System.Package + System.Service + + + chroot.rsyslog + + + + bind + service + + bind-libs + libcap + libxml2 + openssl + python3 + python3-PLY + + + /etc + /usr/sbin + /var + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc + + + System.Service + System.Package + + + named.conf + named.confd + gentoo/named.ca + gentoo/127.zone + gentoo/localhost.zone + fedora/named.logrotate + + + + + 2020-01-15 + 9.14.9 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-10 + 9.12.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-09 + 9.10.2 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-08 + 9.10.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-05-08 + 9.10.2 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + firebird + http://www.firebirdsql.org/ + + PisiLinux Community + admins@pisilinux.org + + IPL-1 + IDPL-1 + LGPLv2.1 + service + library + server.database + A relational database offering many ANSI SQL-99 features + Birçok ANSI SQL-99 özelliği sunan ilişkisel bir veritabanı + Firebird is an open source relational database management system offering many ANSI SQL-99 features. + Birçok ANSI SQL-99 özelliği sunan, küçük, hızlı ve çok kararlı bir veritabanı sunucu. + https://github.com/FirebirdSQL/firebird/archive/R2_5_9.tar.gz + + icu4c-devel + btyacc + libedit-devel + + server/database/firebird/pspec.xml + + + firebird-client + Firebird database client library + Firebird veritabanı istemci kütüphanesi + Firebird relational database client library. + Firebird sunucuya bağlantı için kullanılan istemci kütüphanesi + + libgcc + + + /usr/lib/libfbclient.* + /usr/lib/libgds.* + /usr/lib/libib_util.* + /usr/lib/libfbtrace.so + /opt/firebird/lib/libfbclient.* + /opt/firebird/lib/libgds.* + /opt/firebird/lib/libib_util.* + /opt/firebird/plugins/libfbtrace.so + + + + firebird-superserver + Firebird super server + Firebird veritabanı sunucusu + Firebird veritabanı için super sunucu. Klasik sunucu mimarisine göre, SMP performansı daha fazladır. + + firebird-client + icu4c + libedit + libgcc + + + /etc/firebird + /etc/env.d/50firebird + /opt/firebird/*.conf + /opt/firebird/*.msg + /opt/firebird/security2.fdb + /opt/firebird/README + /opt/firebird/WhatsNew + /opt/firebird/UDF + /opt/firebird/bin + /opt/firebird/doc + /opt/firebird/examples + /opt/firebird/help + /opt/firebird/intl + /opt/firebird/lib/libicu* + /opt/firebird/upgrade + /opt/firebird/firebird.log + /opt/firebird + /run/firebird + + + System.Service + System.Package + + + hosts.equiv + 50firebird + + + + firebird-devel + Development files for firebird + Firebird için geliştirme dosyaları + + firebird-client + + + /usr/include/firebird + + + + + 2020-01-16 + 2.5.9.27139 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-16 + 2.5.7.27050 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 2.5.7.27050 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-01-30 + 2.5.7.27050 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-18 + 2.5.6.27020 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 2.5.4.26856 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-03 + 2.5.4.26856 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libgda + http://www.gnome-db.org/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv2 + library + server.database + Library for writing gnome database programs + libgda is a library that eases the task of writing Gtk3-based database programs. + https://ftp.gnome.org/pub/GNOME/sources/libgda/5.2/libgda-5.2.9.tar.xz + + cairo-devel + db-devel + gdk-pixbuf-devel + gobject-introspection-devel + goocanvas-devel + graphviz-devel + gtk3-devel + gtksourceview3-devel + intltool + iso-codes-devel + itstool + jdk8-openjdk + json-glib-devel + libsecret-devel + libsoup-devel + libxslt-devel + mariadb-lib + mdbtools-devel + openssl-devel + pango-devel + sqlcipher-devel + sqlite-devel + readline-devel + gtk-doc + vala-devel + postgresql-lib + openldap-client + + server/database/libgda/pspec.xml + + + libgda + Library for writing gnome database programs + + glib2 + libxml2 + libxslt + libsecret + gdk-pixbuf + + + /etc + /usr/lib + /usr/lib/girepository-1.0/Gda-5.0.typelib + /usr/share/help + /usr/share/libgda-5.0 + /usr/share/locale + /usr/share/man + + + + libgda-devel + Development files for libgda + + libgda + gtk3-devel + libxslt-devel + glib2-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + libgda-docs + libgda reference documents + data:doc + + /usr/share/doc + /usr/share/gtk-doc + + + + libgda-bdb + Berkeley DB provider for libgda + + libgda + + + /usr/lib/libgda-5.0/providers/libgda-bdb.so + /usr/share/libgda-5.0/bdb_specs_dsn.xml + + + + libgda-java + Java provider for libgda + + libgda + jdk8-openjdk + + + /usr/lib/libgda-5.0/providers/gdaprovider-5.0.jar + /usr/lib/libgda-5.0/providers/libgda-jdbc.so + /usr/share/libgda-5.0/jdbc* + + + + libgda-ldap + Ldap provider for libgda + + libgda + openldap-client + + + /usr/lib/libgda-5.0/providers/libgda-ldap.so + /usr/share/libgda-5.0/ldap* + + + + libgda-mysql + Mysql provider for libgda + + libgda + mariadb-lib + + + /usr/lib/libgda-5.0/providers/libgda-mysql.so + /usr/share/libgda-5.0/mysql* + + + + libgda-postgres + Postgres provider for libgda + + libgda + postgresql-lib + + + /usr/lib/libgda-5.0/providers/libgda-postgres.so + /usr/share/libgda-5.0/postgres* + + + + libgda-sqlcipher + SQLiteCipher provider for libgda + + libgda + openssl + sqlcipher + + + /usr/lib/libgda-5.0/providers/libgda-sqlcipher.so + /usr/share/libgda-5.0/sqlcipher* + + + + libgda-sqlite + SQLite provider for libgda + + libgda + sqlite + + + /usr/lib/libgda-5.0/providers/libgda-sqlite.so + /usr/share/libgda-5.0/sqlite* + + + + libgda-mdb + Mdb provider for libgda + + libgda + mdbtools + + + /usr/lib/libgda-5.0/providers/libgda-mdb.so + /usr/share/libgda-5.0/mdb_specs_dsn.xml + + + + libgda-tools + Graphical tools for libgda + + libgda + gtk3 + cairo + libsoup + graphviz + readline + goocanvas + libgda-ui + gtksourceview3 + + + /usr/bin + /usr/share/appdata + /usr/share/applications + /usr/share/gnome/gda-browser + /usr/share/icons + /usr/share/pixmaps + + + + libgda-ui + UI extensions for libgda + + libgda + pango + + + /usr/lib/girepository-1.0/Gdaui-5.0.typelib + /usr/lib/libgda-5.0/plugins/gdaui* + /usr/lib/libgda-ui-5.0.so.* + /usr/share/libgda-5.0/dtd/gdaui-layout.dtd + /usr/share/libgda-5.0/icons + /usr/share/libgda-5.0/language-specs + /usr/share/libgda-5.0/pixmaps + /usr/share/libgda-5.0/ui + + + + libgda-ui-devel + Development files for libgda-ui + + libgda + libgda-ui + + + /usr/bin/gdaui-demo-5.0 + /usr/include/libgda-5.0/libgda-ui + /usr/lib/libgda-5.0/plugins/libgda-ui-plugins.so + /usr/lib/libgda-ui-5.0.so + /usr/share/glade/catalogs/gdaui-catalog.xml + /usr/share/glade/pixmaps/widget-gdaui* + /usr/share/libgda-5.0/demo + + + + libgda-web + Web provider for libgda + + libgda + libsoup + + + /usr/lib/libgda-5.0/providers/libgda-web.so + /usr/share/libgda-5.0/php + /usr/share/libgda-5.0/web + + + + + 2021-07-19 + 5.2.9 + Rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-04-20 + 5.2.9 + First release + Berk Çakar + berk2238@hotmail.com + + + + + + libtdb + https://tdb.samba.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv3+ + library + app:console + server.database + Trivial database library + TDB veritabanına erişim için gerekli kitaplıklar + libtdb contains C library and Python bindings to access to a trivial database. TDB is very much like GDBM and BSDDB except that it allows multiple simultaneous writers and uses locking internally to keep writers from trampling on each other. + libtdb basit bir veritabanı olan TDB ile iletişime geçmek için gerekli C ve Python kitaplıklarını içerir. + https://www.samba.org/ftp/tdb/tdb-1.4.7.tar.gz + + libxslt + libtirpc-devel + python3-devel + docbook-xsl + libbsd-devel + + server/database/libtdb/pspec.xml + + + libtdb + + python3 + libbsd + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libtdb-devel + Development files for libtdb + libtdb için geliştirme dosyaları + + libtdb + + + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/include + + + + libtdb-32bit + 32-bit shared libraries for libtdb + emul32 + _emul32 + + libgcc + + + libtdb + libgcc + + + /usr/lib32 + + + + + 2022-06-10 + 1.4.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-23 + 1.4.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-17 + 1.4.3 + Rebuild 32bit. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.4.3 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 1.3.16 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-03 + 1.3.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-08 + 1.3.15 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-09 + 1.3.12 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-07-24 + 1.3.8 + Version Bump + Ergün Salman + poyraz76@pisilinux.org + + + 2016-06-08 + 1.3.7 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-30 + 1.3.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + lmdb + http://symas.com/mdb/ + + PisiLinux Community + admins@pisilinux.org + + OpenLDAP + custom + library + app:console + server.database + Symas Lightning Memory-Mapped Database + An ultra-fast, ultra-compact key-value embedded data store. + https://github.com/LMDB/lmdb/archive/LMDB_0.9.29.tar.gz + + lmdb.pc + + server/database/lmdb/pspec.xml + + + lmdb + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + lmdb-devel + Development files for lmdb + + lmdb + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-06-20 + 0.9.29 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 0.9.24 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-08-10 + 0.9.21 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-09 + 0.9.19 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 0.9.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-28 + 0.9.16 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mariadb + https://mariadb.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:console + server.database + MariaDB is a drop-in replacement for MySQL + Hızlı, çok kullanıcılı ve çok görevli SQL veritabanı sunucusu + MariaDB strives to be the logical choice for database professionals looking for a robust, scalable, and reliable SQL server. + MySQL, çoklu iş parçacıklı (multi-threaded), çok kullanıcılı (multi-user), hızlı ve sağlam (robust) bir Veritabanı yönetim sistemidir. Özelllikle basit web uygulamaları için LAMP sistemi içinde sıkça tercih edilmektedir. + https://ftp.osuosl.org/pub/blfs/conglomeration/mariadb/mariadb-10.6.4.tar.gz + + ncurses-devel + zlib-devel + libxml2-devel + readline-devel + libevent-devel + openssl-devel + libpcre-devel + libaio-devel + unixODBC-devel + pam-devel + snappy-devel + cracklib-devel + mit-kerberos-devel + xz-devel + lzo-devel + curl-devel + libpcre2-devel + cmake + + server/database/mariadb/pspec.xml + + + mariadb-lib + MariaDB client tools + MySQL istemcileri tarafından gereken paylaşımlı kitaplıklar + app:console + library + + zlib + curl + bzip2 + libgcc + libpcre + libxml2 + openssl + libaio + unixODBC + xz + lzo + libpcre2 + + + /usr/bin + /usr/bin/mysql_config + /usr/include + /usr/lib/libmariadb.so.3 + /usr/lib/libmariadbclient.a + /usr/lib/libmariadbd* + /usr/lib/libmariadb.so + /usr/lib/libmysqlclient.so + /usr/lib/libmysqlclient.so.19 + /usr/lib/libmysqlclient.so.19.0.0 + /usr/lib/libmysqlclient_r.so + /usr/lib/libmysqlclient_r.so.19 + /usr/lib/libmysqlclient_r.so.19.0.0 + /usr/lib/libmysqld.a + /usr/lib/libmysqlclient_r.a + /usr/lib/libmysqlclient.a + /usr/lib/libmysqld.so + /usr/lib/libmysqld.so.19 + /usr/lib/libmysqlservices.a + /usr/bin/mysqld_safe_helper + /usr/lib/pkgconfig/libmariadb.pc + /usr/lib/pkgconfig/mariadb.pc + /usr/share/pam_user_map.so + /usr/share/user_map.conf + + + mysql-lib + + + + mariadb-client + MariaDB client libraries + MariaDB istemci uygulamaları + app:console + + mariadb-lib + libaio + zlib + libgcc + libpcre + ncurses + openssl + + + /usr/bin/mysql + /usr/bin/mysqladmin + /usr/bin/mysqlcheck + /usr/bin/mysqldump + /usr/bin/mysqlimport + /usr/bin/mysqlshow + /usr/bin/mysqlslap + + + mysql-client + + + + mariadb-server + MariaDB server and releated files + MariaDB sunucusu ve ilgili dosyalar + service + + mariadb-lib + mariadb-client + curl + bzip2 + zlib + libgcc + openssl + libxml2 + unixODBC + pam + snappy + cracklib + mit-kerberos + + + /etc + /usr/bin/aria_chk + /usr/bin/aria_dump_log + /usr/bin/aria_ftdump + /usr/bin/aria_pack + /usr/bin/aria_read_log + /usr/bin/innochecksum + /usr/bin/msql2mysql + /usr/bin/my_print_defaults + /usr/bin/myisam_ftdump + /usr/bin/myisamchk + /usr/bin/myisamlog + /usr/bin/myisampack + /usr/bin/mysql_ldb + /usr/bin/mysql_client_test + /usr/bin/mysql_convert_table_format + /usr/bin/mysql_embedded + /usr/bin/mysql_client_test_embedded + /usr/bin/mysqltest_embedded + /usr/bin/mysql_find_rows + /usr/bin/mysql_fix_extensions + /usr/bin/mysql_install_db + /usr/bin/mysql_plugin + /usr/bin/mysql_secure_installation + /usr/bin/mysql_setpermission + /usr/bin/mysql_tzinfo_to_sql + /usr/bin/mysql_upgrade + /usr/bin/mysql_waitpid + /usr/bin/mysql_zap + /usr/bin/mysqlaccess + /usr/bin/mysqlbinlog + /usr/bin/mysqlbug + /usr/bin/mysqld + /usr/bin/mysqld-post + /usr/bin/mysqld_multi + /usr/bin/mysqld_safe + /usr/bin/mysqldumpslow + /usr/bin/mysqlhotcopy + /usr/bin/mysqltest + /usr/bin/perror + /usr/bin/replace + /usr/bin/resolve_stack_dump + /usr/bin/resolveip + /usr/bin/tokuft_logprint + /usr/bin/tokuftdump + /usr/bin/wsrep_sst_common + /usr/bin/wsrep_sst_mysqldump + /usr/bin/wsrep_sst_rsync + /usr/bin/wsrep_sst_xtrabackup + /usr/bin/wsrep_sst_xtrabackup-v2 + /usr/bin/mytop + /usr/lib/mysql/plugin + /usr/share/mysql + /usr/share/groonga-normalizer-mysql + /var + /usr/share/doc + /usr/share/groonga + /usr/lib/tmpfiles.d/mariadb.conf + /run/mysqld + + + mysql-server + + + System.Service + System.Package + + + my.cnf + tmpfiles.conf + + + + mariadb-man-pages + MariaDB server and client man pages + MariaDB sunucu ve istemci uygulamarına ait kılavuz sayfaları + data + + /usr/share/man + + + mysql-man-pages + + + + + 2021-11-06 + 10.6.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-13 + 10.4.11 + Version Bump. + Idris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 10.2.13 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-09 + 10.1.21 + Release bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 10.1.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-24 + 10.1.10 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + postgresql + http://www.postgresql.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + server.database + A powerful, open source relational database system + Güçlü bir açık kaynaklı ilişkisel veritabanı sistemi + PostgreSQL is a powerful, open source relational database system. + PostgreSQL, açık kaynak kodlu, güçlü bir ilişkisel veritabanıdır + https://ftp.postgresql.org/pub/source/v12.1/postgresql-12.1.tar.bz2 + + mit-kerberos + e2fsprogs-devel + pam-devel + readline-devel + zlib-devel + python-devel + openssl-devel + tcl-devel + libxslt-devel + libxml2-devel + openldap-server + + server/database/postgresql/pspec.xml + + + postgresql-lib + Essential shared libraries for any PostgreSQL client program or interface + library + + mit-kerberos + python + zlib + libxml2 + openssl + e2fsprogs + libxslt + openldap-client + + + /usr/lib + /usr/include + /usr/lib/pkgconfig + /usr/share/postgresql + /usr/bin/pg_config + + + + postgresql-doc + Postgresql documents + Postegresql belgeleri + Additional documentation for PostgreSQL. + PostegreSQL için ek belgelendirme + data:doc + + postgresql-lib + + + /usr/share/doc + + + + postgresql-server + service + + postgresql-lib + pam + zlib + libxml2 + openssl + readline + e2fsprogs + mit-kerberos + openldap-server + openldap-client + + + /etc + /usr/bin + /usr/share/locale + /usr/share/postgresql/contrib + /usr/share/man + /var/lib + + + System.Package + System.Service + + + postgresql.conf-8 + + + + postgresql-pl + + postgresql-lib + tcl + perl + + + /usr/bin/pltcl_listmod + /usr/bin/pltcl_loadmod + /usr/bin/pltcl_delmod + /usr/lib/postgresql/plperl.so + /usr/lib/postgresql/plpython.so + /usr/lib/postgresql/pltcl.so + /usr/share/postgresql/unknown.pltcl + + + + + 2020-11-06 + 12.1 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-15 + 12.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-03 + 10.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-09-20 + 9.6.2 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 9.3.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-03 + 9.3.9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + sqlcipher + https://www.zetetic.net/sqlcipher/ + + Alihan Öztürk + alihan@pisilinux.org + + BSD + data + server.database + SQLite extension that provides transparent 256-bit AES encryption of database files + SQLCipher is an SQLite extension that provides transparent 256-bit AES encryption of database files. Pages are encrypted before being written to disk and are decrypted when read back. Due to the small footprint and great performance it’s ideal for protecting embedded application databases and is well suited for mobile development. + https://github.com/sqlcipher/sqlcipher/archive/v4.3.0.tar.gz + + readline-devel + tcl-devel + openssl-devel + sqlite-devel + ncurses-devel + + server/database/sqlcipher/pspec.xml + + + sqlcipher + SQLite extension that provides transparent 256-bit AES encryption of database files. + + openssl + readline + sqlite + tcl + ncurses + + + /usr/bin + /usr/lib/tcl8.6 + /usr/lib/lib* + /usr/share/doc + + + + sqlcipher-devel + Development files for sqlcipher. + + sqlcipher + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-02-07 + 4.3.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2019-04-26 + 4.0.1 + Version bump. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2017-02-09 + 3.4.0 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 3.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-22 + 3.3.1 + First release. + Alihan Öztürk + alihan@pisilinux.org + + + + + + dhcp + https://www.isc.org/dhcp/ + + PisiLinux Community + admins@pisilinux.org + + isc-dhcp + app:console + library + service + server + DHCP Sunucusu + DHCP-Server + Dynamic host configuration protocol software + DHCP (Dynamic Host Configuration Protocol) is a protocol which allows individual devices on an IP network to get their own network configuration information (IP address, subnetmask, broadcast address, etc.) from a DHCP server. + IP adresi atanmasını ve TCP/IP bilgilerinin yapılandırılmasını sağlayan DHCP Sunucusu + http://ftp.isc.org/isc/dhcp/4.4.1/dhcp-4.4.1.tar.gz + + groff + openldap-client + + server/dhcp/pspec.xml + + + dhcp + + openldap-client + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /var/lib + /run + /usr/share/man + /usr/share/doc + + + System.Service + System.Service + System.Service + System.Package + + + dhcpd + dhcpd6 + dhcrelay + dhcpd.conf + + + + dhclient + Provides the dhclient ISC DHCP client daemon + DHCP İstemcisi + app:console + network.connection + + /etc/dhcp/dhclient.conf + /usr/sbin/dhclient + /var/lib/dhclient + /usr/share/man/man5/dhclient* + /usr/share/man/man8/dhclient* + /usr/share/man/man5/dhcp-options* + /usr/share/man/man5/dhcp-eval* + /usr/share/doc/dhcp/dhclient* + + + dhclient.conf + + + + dhcp-devel + Development files for dhcp + dhcp için geliştirme dosyaları + + dhcp + + + /usr/include + /usr/share/man/man3 + + + + + 2020-01-27 + 4.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 4.4.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-25 + 4.3.6 + Version bump,fix #2943 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-05-09 + 4.3.0 + Release Bump + Kamil Atlı + admin@pisilinux.org + + + 2016-06-08 + 4.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-05-19 + 4.3.0 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + libvncserver + http://libvncserver.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + server.misc + Library for creating VNC (Virtual Network Computing) servers + VNC sunucu oluşturmak için kütüphane + Biblioteka do łatwego implementowania serwera VNC + libvncserver provides a C library to create VNC servers. + VNC sunucu benzeri kendi VNC (Virtual Network Computing) sunucunuzu oluşturmak isterseniz gerekli kütüphane + Wieloplatformowa biblioteka C, pozwalającą na łatwą implementację trybu serwera lub klienta VNC (Virtual Network Computing) we własnym programie. + https://github.com/LibVNC/libvncserver/archive/LibVNCServer-0.9.13.tar.gz + + gnutls-devel + libjpeg-turbo-devel + libgcrypt-devel + libpng-devel + openssl-devel + lzo-devel + cmake + + server/misc/libvncserver/pspec.xml + + + libvncserver + + zlib + libpng + libgcrypt + gnutls + libjpeg-turbo + openssl + lzo + + + /usr/bin/*-config + /usr/lib + + + + libvncserver-devel + Development files for libvncserver + libvncserver için geliştirme dosyaları + Pliki nagłówkowe libvncserver + + libvncserver + zlib-devel + libpng-devel + libgcrypt-devel + gnutls-devel + libjpeg-turbo-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-04-25 + 0.9.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-09 + 0.9.12 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-15 + 0.9.12 + Version Bump + İdris Kalp + idriskalp@gmail.com + + + 2018-08-07 + 0.9.11 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-29 + 0.9.9 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.9.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-06-14 + 0.9.9 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + phodav + https://wiki.gnome.org/phodav Kamil Atlı suvari@pisilinux.org @@ -338741,38 +320984,46 @@ cleaner, which will allow to add new features in the future. LGPLv2.1 library app:console - network.analyzer - USB traffic redirection protocol - usbredir is the name of a network protocol for sending USB device traffic over a network connection. It is also the name of the software package offering a parsing library, a usbredirhost library and several utilities implementing this protocol. - https://spice-space.org/download/usbredir/usbredir-0.11.0.tar.xz + server.misc + WebDav server implementation using libsoup (RFC 4918) + phởdav (phodav) is a minimal WebDAV server implementation using GNOME libsoup (RFC 4918.) + https://download.gnome.org/sources/phodav/2.5/phodav-2.5.tar.xz meson - libusb-devel - glib2-devel + gtk-doc + asciidoc + libsoup-devel + libxml2-devel - network/analyzer/usbredir/pspec.xml + server/misc/phodav/pspec.xml - usbredir - a network protocol for sending USB device traffic over a network connection. + phodav + WebDav server implementation using libsoup (RFC 4918) glib2 - libusb + libxml2 + libsoup + asciidoc /usr/bin /usr/share/doc/ + /usr/share/gtk-doc/ /usr/share/man - /usr/lib/libusbredirhost.so* - /usr/lib/libusbredirparser.so* + /lib/udev/rules.d + /usr/share/locale + /usr/lib/libphodav-2.0.so* - usbredir-devel - Development files for usbredir + phodav-devel + Development files for phodav - libusb-devel - usbredir + glib2-devel + libsoup-devel + libxml2-devel + phodav /usr/include @@ -338782,7 +321033,7 @@ cleaner, which will allow to add new features in the future. 2021-10-10 - 0.11.0 + 2.5 First release Kamil Atlı suvari@pisilinux.org @@ -338791,1200 +321042,340 @@ cleaner, which will allow to add new features in the future. - telnet-bsd - ftp://ftp.suse.com/pub/people/kukuk/ipv6/ + ntp + http://www.ntp.org - Kamil Atlı - suvari@pisilinux.org + PisiLinux Community + admins@pisilinux.org + MIT BSD - app:console - network.remoteshell - Telnet and telnetd - Telnet protokolünün OpenBSD işletim sisteminden alınmış hali. IPV6 desteği içerir. - telnet-bsd provides a command line telnet client which is used for remote login using the telnet protocol. - telnet-bsd, telnet protokolünü kullanarak uzaktan bağlantı sağlayan bir komut satırı telnet istemcisidir. - https://sourceforge.net/projects/pisilinux/files/source/telnet-bsd-1.2.tar.bz2 - - ncurses-devel - - network/remoteshell/telnet-bsd/pspec.xml - - - telnet-bsd - - ncurses - - - /usr/bin - /usr/sbin - /usr/share/man - /usr/share/doc - - - - - 2019-05-22 - 1.2 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libproxy - https://github.com/libproxy/libproxy - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:console - network.misc - Proxy configuration library - Proxy yapılandırma kitaplığı - libproxy is a library that provides automatic proxy configuration management. - Otomatik proxy yapılandırma yönetimini sağlayan bir kitaplığı. - https://github.com/libproxy/libproxy/archive/0.4.17.tar.gz - - gconf-devel - libXmu-devel - NetworkManager-devel - webkit2gtk-devel - spidermonkey-devel - cmake - intltool - - network/misc/libproxy/pspec.xml - - - libproxy - - glib2 - libgcc - - - /usr/bin - /usr/lib - /usr/libexec/ - /usr/share/doc - /usr/share/vala - - - - libproxy-gnome3 - - libproxy - libgcc - - - /usr/lib/libproxy/*/modules/config_gnome3.* - /usr/libexec/pxgconf - - - - libproxy-networkmanager - - libproxy - dbus - libgcc - - - /usr/lib/libproxy/*/modules/network_networkmanager.* - - - - libproxy-webkit-gtk2 - - libproxy - webkit2gtk - libgcc - - - /usr/lib/libproxy/*/modules/pacrunner_webkit* - - - - libproxy-mozjs - - libproxy - - - /usr/lib/libproxy/*/modules/pacrunner_mozjs* - - - - libproxy-devel - Development files for libproxy - libproxy için geliştirme dosyaları - - libproxy - - - /usr/include - /usr/lib/pkgconfig - /usr/share/cmake - - - - - 2021-10-24 - 0.4.17 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-06 - 0.4.17 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-25 - 0.4.15 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-16 - 0.4.15 - Rebuild - Mustafa Cinasl - muscnsl@gmail.com - - - 2019-04-16 - 0.4.15 - Rebuild bump - Mustafa Cinasl - muscnsl@gmail.com - - - 2018-07-30 - 0.4.15 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-07-30 - 0.4.10 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-08 - 0.4.10 - Release bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-11-01 - 0.4.10 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - c-ares - https://c-ares.haxx.se/ - - PisiLinux Community - admins@pisilinux.org - - as-is - library - network.misc - A C library that performs DNS requests and name resolves asynchronously - Eşzamansız DNS sorgulamaları ve isim çözme işlemleri için bir C kitaplığı - c-ares est une librairie qui effectue des requête DNS et les résolutions de nom de manière asynchrone. c-ares est issue d'un schisme de la librairie 'ares' écrite par Greg Hudson au MIT. - c-ares is a C library that performs DNS requests and name resolves asynchronously. c-ares is a fork of the library named 'ares', written by Greg Hudson at MIT. - Eşzamansız DNS sorgulamaları ve isim çözme işlemleri için bir C kitaplığı. c-ares, ares kitaplığı temel alınarak geliştirilmiştir. - c-ares es una librería C que realiza consultas DNS y resolución asíncron de nombres. c-ares es un derivado (fork) de la librería 'ares', escrito por Greg Hudson en el MIT. - https://c-ares.haxx.se/download/c-ares-1.17.2.tar.gz - network/misc/c-ares/pspec.xml - - - c-ares - - /usr/lib - /usr/share/man/man3 - /usr/share/doc/c-ares/* - - - - c-ares-devel - Development files for c-ares - c-ares için geliştirme dosyaları - - c-ares - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-08-15 - 1.17.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-04 - 1.15.0 - Version Bump. - fury - uglyside@yandex.ru - - - 2018-08-29 - 1.12.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-24 - 1.11.0 - Version bump, rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2014-02-17 - 1.9.1 - Release - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-01 - 1.9.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - geoclue - http://www.freedesktop.org/wiki/Software/GeoClue - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - library - network.misc - The Geoinformation Service. - Geoclue is a modular geoinformation service built on top of the D-Bus messaging system. - https://gitlab.freedesktop.org/geoclue/geoclue/-/archive/2.5.7/geoclue-2.5.7.tar.bz2 - - meson - intltool - dbus-devel - gtk-doc - glib2-devel - libsoup-devel - libnotify-devel - json-glib-devel - dbus-glib-devel - avahi-glib-devel - libxml2-devel - libxslt - libmm-glib-devel - - network/misc/geoclue/pspec.xml - - - geoclue - - glib2 - json-glib - libnotify - avahi-glib - avahi-libs - libsoup - libmm-glib - - - /etc - /usr/lib/ - /usr/share/ - /usr/libexec/ - - - - geoclue-devel - geoclue için geliştirme dosyaları - geoclue için geliştirme dosyaları - - geoclue - glib2-devel - dbus-glib-devel - libxml2-devel - - - /usr/include/libgeoclue-2.0/ - /usr/lib/pkgconfig - - - - - 2021-07-23 - 2.5.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-08 - 2.4.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-18 - 2.4.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-22 - 2.4.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 2.4.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-03 - 2.4.10 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 0.12.99 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-28 - 0.12.99 - Rebuild for new Toolchain. - Stefan Gronewold(groni) - groni@pisilinux.org - - - 2016-06-09 - 0.12.99 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-27 - 0.12.99 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libssh - http://www.libssh.org - - PisiLinux Community - admin@pisilinux.org - - LGPLv2.1 - library - network.misc - Full C library functions for manipulating a client-side SSH connection - SSH bağlantılarının kontrol edilebilmesini sağlayan C kitaplığı - libssh library was designed to be used by programmers needing a working SSH implementation by the mean of a library. The complete control of the client is made by the programmer. With libssh, you can remotely execute programs, transfer files, use a secure and transparent tunnel for your remote programs. With its Secure FTP implementation, you can play with remote files easily, without third-party programs others than libcrypto (from openssl). - libssh, yazılımlarında SSH kullanmak isteyen programcılar için tasarlanmış bir C kitaplığıdır. SSH istemcisi programcı tarafından tam olarak kontrol edilebilir, uzaktan yazılım çalıştırma, tünel yaratma, dosya transferi ve uzak dosya erişimi işlemleri yapılabilir. Tüm bunlar için openssl paketinde bulunan lıbcrypto'nun sistemde bulunması yeterlidir. - https://www.libssh.org/files/0.9/libssh-0.9.6.tar.xz + GPLv2+ + service + server + NTP daemon and client + NTP hizmeti ve istemcisi + Network Time Protocol utilities and daemons that will synchronize your computer's time to Coordinated Universal Time (UTC) via the NTP protocol and NTP servers. + ntp, NTP protokolü üzerinden uzak sunucuları kullanarak sisteminizin zamanını eşitlemek için gerekli araçları ve hizmetleri içerir. + https://www.eecis.udel.edu/~ntp/ntp_spool/ntp4/ntp-4.2/ntp-4.2.8p15.tar.gz + + fix-man-pages.sh + + avahi-compat-libdns_sd-devel + libedit-devel + net-snmp-devel + perl-HTML-Parser + libcap-devel openssl-devel - cmocka-devel - zlib-devel - doxygen - cmake - openssh + libevent-devel - network/misc/libssh/pspec.xml + server/ntp/pspec.xml - libssh - Full C library functions for manipulating a client-side SSH connection + ntp-server + NTP server + NTP hizmeti + avahi-compat-libdns_sd + libedit + net-snmp + libcap openssl - zlib + libevent + ntp-client - /usr/lib + /etc/ntp.conf + /etc/conf.d + /etc/ntp/crypto + /usr/bin/ntpstat + /usr/bin/update-leap + /usr/bin/calc_tickadj + /usr/share/ntp/lib/NTP/Util.pm + /usr/libexec + /usr/sbin /usr/share/doc - - - - libssh-devel - Development files for libssh - libssh için geliştirme dosyaları - libssh-devel, libssh için geliştirme dosyalarını içerir. - - libssh - - - /usr/include - /usr/lib/pkgconfig - - - - libssh-docs - Development documentation for libssh - libssh için belgelendirme dosyaları - libssh-docs, libssh için belgelendirme dosyalarını içerir. - - /usr/share/doc/libssh/html /usr/share/man + /var/lib/ntp + + System.Package + System.Service + + + fedora/ntp.conf + fedora/ntpd.sysconfig + fedora/ntp.cryptopw + - - - 2021-08-26 - 0.9.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-24 - 0.9.3 - Version bump. - Blue Devil - bluedevil@sctzine.com - - - 2018-10-17 - 0.8.4 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-08-15 - 0.8.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 0.7.4 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 0.7.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-25 - 0.7.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - webkit-gtk2 - http://webkitgtk.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - LGPLv2.1 - BSD - library - network.misc - An opensource web browser engine for GTK+ applications - The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. - http://www.webkitgtk.org/releases/webkitgtk-2.4.11.tar.xz - - mesa-devel - gtk-doc - glib2-devel - gtk2-devel - ruby-devel - webp-devel - cairo-devel - icu4c-devel - libXt-devel - enchant2-devel - sqlite-devel - geoclue-devel - libsoup-devel - fontconfig-devel - libxslt-devel - harfbuzz-devel - libsecret-devel - libXcomposite-devel - libjpeg-turbo-devel - gstreamer-devel - gst-libav - gobject-introspection-devel - gst-plugins-base-devel - gst-plugins-bad-devel - gst-plugins-good - which - icon-theme-hicolor - gperf - libSM-devel - - - install-minibrowser.patch - enchant-2.x.patch - icu59.patch - pkgconfig-enchant-2.patch - icu68.patch - fix-ftbfs-gcc6.patch - gtk-doc.patch - grammar.patch - - network/misc/webkit-gtk2/pspec.xml - - webkit-gtk2 - - atk - zlib - glib2 - gtk2 - mesa - webp - cairo - icu4c - libXt - libX11 - libgcc - libpng - libxml2 - pango - sqlite - enchant2 - geoclue - libsoup - libxslt - harfbuzz - freetype - libsecret - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - gstreamer - gst-libav - gst-plugins-bad - gst-plugins-base - gst-plugins-good - gobject-introspection - + ntp-client + NTP client + NTP istemcisi + app:console + util.admin - /usr/lib - /usr/share - /usr/share/doc + /etc/conf.d/ntpdate + /etc/ntp/step-tickers + /etc/ntp/keys + /usr/sbin/ntpdate + /usr/share/man/man8/ntpdate.8* + + System.Service + System.Package + + + fedora/ntpdate.sysconfig + fedora/ntp.step-tickers + fedora/ntp.keys + - webkit-gtk2-devel - Development files for GTK+ port of WebKit - library + ntp-docs + NTP documentation + NTP belgeleri data:doc - libgcc - gtk2-devel - glib2-devel - webkit-gtk2 - libsoup-devel + ntp-client - /usr/bin - /usr/include - /usr/lib/pkgconfig - /usr/share/doc/webkit-gtk/Web* - /usr/share/doc/webkit-gtk2/html - /usr/share/doc/webkit-gtk/JavaScriptCore + /usr/share/doc/ntp/html - 2020-01-28 - 2.4.11 + 2021-07-14 + 4.2.8_p15 Rebuild. - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-09 - 2.4.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2021-03-27 + 4.2.8_p15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-05-04 - 2.4.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-05 - 2.4.11 - Rebuild for new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-27 - 2.4.11 - Rebuild for new toolchain. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-18 - 2.4.11 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-9 - 2.4.9 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-05 - 2.4.9 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - openmpi - https://www.open-mpi.org/ - - PisiLinux Community - admins@pisilinux.org - - custom:OpenMPI - library - app:console - network.misc - High performance message passing library (MPI) - Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı - Open MPI est un projet combinant les technologies et les ressources de plusieurs autres projets (FT-MPI, LA-MPI, LAM/MPI et PACX-MPI) afin de construire la meilleure librairie MPI disponible. Une implémentation totalement neuve conforme au MPI-2. Open MPI offre des avantages aux vendeurs de systèmes et de logiciels, au développeurs d'applications ainsi qu'aux chercheur en génie logiciel. - The Open MPI Project is an open source Message Passing Interface implementation that is developed and maintained by a consortium of academic, research, and industry partners. Open MPI is therefore able to combine the expertise, technologies, and resources from all across the High Performance Computing community in order to build the best MPI library available. Open MPI offers advantages for system and software vendors, application developers and computer science researchers. - Yüksek performanslı ve açık kaynak kodlu MPI (Message Passing Library) kitaplığı - Open MPI es un proyecto que combina recursos y tecnologías de varios otros proyectos (FT-MPI, LA-MPI, LAM/MPI, y PACX-MPI) para construir la mejor librería MPI. Una implementación MPI-2 compliant completamente nueva, Open MPI ofrece ventajas para fabricantes de sistemas y software, desarrolladores de aplicaciones y investigadores de computación. - https://download.open-mpi.org/release/open-mpi/v4.1/openmpi-4.1.1.tar.bz2 - - valgrind-devel - zlib-devel - hwloc-devel - libnl-devel - - network/misc/openmpi/pspec.xml - - - openmpi - High performance message passing library (MPI) - - hwloc - libnl - - - /etc - /usr/lib - /usr/share/doc - /usr/share/man - /usr/bin - /usr/share/pmix - /usr/share/openmpi - - - - openmpi-devel - Development files for openmpi - openmpi için geliştirme dosyaları - openmpi-devel, openmpi için geliştirme dosyalarını içerir. - - openmpi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-19 - 4.1.1 + 2020-03-20 + 4.2.8_p13 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-05-22 - 4.0.3 - First Pisi Release - Blue Devil - bluedevil@sctzine.com - - - - - - libasyncns - http://0pointer.de/lennart/projects/libasyncns - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.misc - A C library for asynchronous name service queries - Asenkron isim servisi sorguları için C kitaplığı - libasyncns is a C library for Linux/Unix for executing name service queries asynchronously. It is an asynchronous wrapper around getaddrinfo(), getnameinfo(), res_query() and res_search() from libc and libresolv. - libasyncns, Linux/Unix üzerinde isim servisi sorgularını asenkron olarak gerçekleştirme imkanı veren bir C kitaplığıdır. - http://0pointer.de/lennart/projects/libasyncns/libasyncns-0.8.tar.gz - network/misc/libasyncns/pspec.xml - - - libasyncns - - /usr/lib - /usr/share/doc - - - - libasyncns-devel - Development files for libasyncns - libasyncns için geliştirme dosyaları - - libasyncns - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - 2020-01-14 - 0.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-08-03 - 0.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-02-17 - 0.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-01-29 - 0.8 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - libndp - http://libndp.org/ - - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - GPLv2+ - library - network.misc - Library for Neighbor Discovery Protocol - Ağ tarama protokolü için kitaplık - Library for Neighbor Discovery Protocol - Ağ tarama protokolü için kitaplık - https://github.com/jpirko/libndp/archive/v1.7.tar.gz - network/misc/libndp/pspec.xml - - - libndp - - /etc - /usr/share - /etc/dbus-1 - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libndp-devel - Development files for libndp - libndp için geliştirme dosyaları - - libndp - - - /usr/include - /usr/lib/pkgconfig/ - - - - - 2020-02-02 - 1.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.6 + 2018-08-10 + 4.2.8_p10 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com + + 2017-05-09 + 4.2.8_p10 + Version Bump + Kamil Atlı + suvari@pisilinux.org + - 2017-02-19 - 1.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com + 2016-10-27 + 4.2.8_p8 + Version Bump + Pisi Linux Community + admin@pisilinux.org - 2016-06-09 - 1.4 + 2016-06-08 + 4.2.8_p4 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-01-07 - 1.4 + 2016-01-01 + 4.2.8_p4 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Stefan Gronewold + groni@pisilinux.org - florb - http://florb.shugaa.de/ + openldap + http://www.openldap.org - fury - uglyside@yandex.ru + PisiLinux Community + admins@pisilinux.org - MIT - app:gui - network.misc - A simple map viewer and GPX editor. - florb is a really simple map viewer and GPX editor written in C++ using the FLTK UI toolkit. florb makes it easy to create and edit tracks for planning short and extended trips into the wild green. Or anywhere else for that matter. - https://github.com/shugaa/florb/archive/85d2be7d851f83db8a289fd2018832aec295d526.zip - https://github.com/pekdon/florb/raw/cmake_support/src/res/audio-input-microphone-ina.png + OPENLDAP + server + Open-source suite of LDAP applications and development tools + LDAP uygulamaları ve geliştirme araçları + OpenLDAP is an open-source suite of LDAP (Lightweight Directory Access Protocol) applications and development tools + LDAP hizmeti için gereken uygulamalar ve geliştirme araçlarını içerir + ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/openldap-2.4.59.tgz - cmake - yaml-cpp - curl-devel - mesa-devel - fltk-devel - gpsd-devel - boost-devel - libX11-devel - libXpm-devel - libXres-devel - tinyxml2-devel - libxkbfile-devel - libxkbcommon-devel + nss-devel + db-devel + openssl-devel + tcp-wrappers-devel + cyrus-sasl-devel + libtool-ltdl + icu4c-devel + unixODBC-devel + mariadb-server + libutil-linux-devel + mit-kerberos-devel + chrpath + groff - support_building_with_cmake.patch - allow_startup_with_missing_config_file.patch - no_build_about_resources.patch + openldap-2.4.39-ntlm-1.patch + fedora/openldap-reentrant-gethostby.patch + fedora/openldap-ldaprc-currentdir.patch + fedora/openldap-nss-update-list-of-ciphers.patch + fedora/openldap-nss-ignore-certdb-type-prefix.patch + fedora/openldap-nss-pk11-freeslot.patch + fedora/openldap-switch-to-lt_dlopenadvise-to-get-RTLD_GLOBAL-set.patch + fedora/openldap-autoconf-pkgconfig-nss.patch + fedora/openldap-ai-addrconfig.patch - network/misc/florb/pspec.xml + server/openldap/pspec.xml - florb + openldap-client + Command-line ldap client commands (ldapsearch, ldapadd etc..) + library + app:console - fltk - curl - gpsd - boost - libgcc - libX11 - libXpm - tinyxml2 + nss + nspr + openssl + cyrus-sasl + /etc/openldap/ldap.conf* + /usr/include /usr/bin - /usr/share + /usr/lib + /usr/share/man/man1 + /usr/share/man/man5/ldap.conf.5 + + + openldap-server + OpenLDAP server slapd and releated tools + OpenLDAP server slapd, additional backends, configuration files, schema definitions required for operation, and database maintenance tools + service + + db + perl + unixODBC + libutil-linux + tcp-wrappers + libtool-ltdl + nss + cyrus-sasl + openldap-client + + + /etc/conf.d + /etc/openldap + /usr/lib/tmpfiles.d/openldap-server.conf + /usr/sbin + /usr/libexec + /usr/share/man/man3 + /usr/share/man/man5 + /usr/share/man/man8 + /usr/share/doc + /var/lib + /run/openldap + + + System.Package + System.Service + - florb.desktop.in + tmpfiles.conf + slapd.conf + gencert.sh - - - 2021-10-22 - 1.1 - Rebuild - fury - uglyside@yandex.ru - - - 2020-12-19 - 1.1 - First build from git (include patches from @pekdon). - fury - uglyside@yandex.ru - - - - - - freerdp - http://www.freerdp.com - - Aydın Demirel - aydin.demirel@pisilinux.org - - ASF - app:console - network.misc - A Remote Desktop Implementation - Bir uzak masaüstü protokol uygulaması - FreeRDP is a free implementation of the Remote Desktop Protocol (RDP), released under Apacle License. - FreeRDP Apache lisansı altında dağıtılan, Uzak Masaüstü Uygulamasının (RDP) özgür bir uygulamasıdır. - https://github.com/FreeRDP/FreeRDP/archive/2.4.0.tar.gz + + openldap-32bit + 32-bit shared libraries for openldap + openldap için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 - pam-devel - cups-devel - ffmpeg-devel - alsa-lib-devel - libXinerama-devel - xmlto - libX11-devel - libXi-devel - libXcursor-devel - libxkbcommon-devel - libxkbfile-devel - libXv-devel - libXrandr-devel - gstreamer-devel - gst-plugins-base-devel - glib2-devel - openssl-devel - zlib-devel - cmake - libxslt - util-linux - wayland-devel - libusb-devel - libXext-devel - libXtst-devel - libXfixes-devel - libXdamage-devel - libjpeg-turbo-devel - wayland-client - wayland-cursor - pulseaudio-libs-devel + openssl-32bit + libtool-ltdl-32bit - network/misc/freerdp/pspec.xml - - - freerdp - pam - cups - glib2 - libXi - libXv - ffmpeg - libX11 - libusb - libXext - libXtst - openssl - alsa-lib - libXfixes - libXrandr - libXcursor - libXdamage - libXrender - libxkbfile - libXinerama - libxkbcommon - libjpeg-turbo - wayland-client - wayland-cursor - pulseaudio-libs - gstreamer - gst-plugins-base + openssl-32bit + openldap-client - /usr/bin - /usr/lib - /usr/share/freerdp - /usr/share/doc - /usr/share/man - - - - freerdp-devel - - freerdp - openssl-devel - wayland-devel - libxkbcommon-devel - - - /usr/include - /usr/lib/pkgconfig + /usr/lib32 - - 2021-10-17 - 2.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-03 - 2.3.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-02-07 - 2.0.0-rc4 + 2021-11-06 + 2.4.59 Version bump. - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2019-10-25 - 2.0_20180426 + 2020-11-07 + 2.4.48 Rebuild - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-07 - 2.0_20180426 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2020-01-14 + 2.4.48 + Version bump + Idris Kalp + idriskalp@gmail.com - 2018-04-26 - 2.0_20180426 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2018-08-03 + 2.4.45 + Release bump for toolchain + Kamil Atlı + suvari@pisilinux.org - 2017-03-01 - 2.0_20170201 - Version Bump - Pisi Linux Community - admin@pisilinux.org + 2017-01-27 + 2.4.44 + Release bump for toolchain + Kamil Atlı + suvari@pisilinux.org - 2016-06-14 - 2.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.0.2 + 2016-06-15 + 2.4.44 Release Bump Pisi Linux Community admin@pisilinux.org + + 2016-05-27 + 2.4.44 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + - 2015-01-01 - 1.0.2 + 2016-03-28 + 2.4.44 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -339993,93 +321384,482 @@ cleaner, which will allow to add new features in the future. - iputils - https://github.com/iputils/iputils + openssh + http://www.openssh.com/ PisiLinux Community admins@pisilinux.org BSD app:console - network.misc - Network monitoring tools including ping and ping6 - ping ve ping6 uygulamalarını da içeren ağ izleme araçları - Iputils contient les outils de surveillance réseau incluant ping et ping6. - iputils contains network monitoring tools including ping and ping6. - Iputils, ping ve ping6 gibi ağ izleme araçlarını içeren bir pakettir. - https://github.com/iputils/iputils/archive/s20190709.tar.gz + service + server + Port of OpenBSD's free SSH release + OpenBSD'den aktarılmış SSH sürümü + OpenSSH est une version libre des outils de connexion SSH sur lesquels les utilisateurs techniquement chevronnés s'appuient. Les utilisateurs de telnet, rlogin et ftp ne se rendent peut être pas compte que les mots de passe sont transmis sur internet en clair. OpenSSH crypte tout le trafic (y compris les mots de passe) pour éliminer les écoutes passives, les détournements de connexion et autres attaques. + OpenSSH is a FREE version of the SSH connectivity tools that technical users of the Internet rely on. Users of telnet, rlogin, and ftp may not realize that their password is transmitted across the Internet unencrypted, but it is. OpenSSH encrypts all traffic (including passwords) to effectively eliminate eavesdropping, connection hijacking, and other attacks. + OpenSSH teknik internet kullanıcıların güvendikleri SSH bağlanırlık araçlarının Özgür (free) sürümüdür.telnet, rlogin ve ftp kullanıcıları parolalarının internetten şifresiz olarak aktarıldığını anlayamayabilirler ancak aktarılmaktadır.OpenSSH eavesdropping (iletişim kanalını dinleme), connection hijacking (bağlantı çalma) ve diğer atakları önlemek için tüm bağlantı trafiğini (parolalar dahil) şifrelemektedir. + https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/openssh-8.6p1.tar.gz + libedit-devel + zlib-devel openssl-devel - libidn2-devel - libcap-devel - meson - ninja + mit-kerberos-devel + pam-devel - - fix-setuid-redeclared.patch - - network/misc/iputils/pspec.xml + server/openssh/pspec.xml - iputils + openssh - libcap - libidn2 + libedit + zlib openssl + mit-kerberos + pam /etc /usr/bin /usr/sbin - /sbin - /lib/systemd/system - /etc/conf.d/rdisc - /usr/share/doc + /usr/libexec + /usr/lib + /usr/share/openssh + /var/empty /usr/share/man + /usr/share/doc + + System.Service + + + + + 2021-06-05 + 8.6_p1 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2020-01-21 + 8.1_p1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-10 + 7.6_p1 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-19 + 7.4_p1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-08 + 7.2_p2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 7.2_p2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + postfix + http://www.postfix.com/ + + PisiLinux Community + admins@pisilinux.org + + IPL-1 + service + server + A fast and secure drop-in replacement for sendmail + Hızlı ve güvenli bir e-posta sunucusu + Postfix is Wietse Venema's mailer that started life as an alternative to the widely-used Sendmail program. + Postfix, Wietse Venema tarafından yazılmış, sendmail a alternatif güçlü bir e-posta sunucusudur. + http://www.postfix.org/postfix-release/official/postfix-3.5.12.tar.gz + + db-devel + libnsl-devel + libpcre-devel + openssl-devel + cyrus-sasl-devel + openldap-client + postgresql-lib + mit-kerberos-devel + mariadb-lib + + server/postfix/pspec.xml + + + postfix + + db + pam + libnsl + zlib + libpcre + openssl + mariadb-lib + cyrus-sasl + bind-libs + openldap-client + postgresql-lib + mit-kerberos + comar-api + + + /etc + /usr/bin + /usr/sbin + /usr/lib + /var + /usr/share/man + /usr/share/doc/postfix/AAAREADME + /usr/share/doc/postfix/COMPATIBILITY + /usr/share/doc/postfix/HISTORY + /usr/share/doc/postfix/LICENSE + /usr/share/doc/postfix/RELEASE_NOTES + /usr/share/doc/postfix/defaults + + + System.Package + System.Service + - man/arping.8 - man/clockdiff.8 - man/ping.8 - man/rarpd.8 - man/rdisc.8 - man/tracepath.8 - man/traceroute6.8 - fedora/tftp.xinetd + smtpd.conf + saslpass + main.cf + mkcert.sh + aliases + mailcap + bounce.cf.tr + + + + postfix-docs + Help files for postfix package + Postfix paketine ait yardım dosyaları + + postfix + + + /usr/share/doc + + + + + 2021-11-06 + 3.5.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-05 + 3.5.8 + Version bump. + Berk Çakar + berk2238@hotmail.com + + + 2020-01-27 + 3.4.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-02 + 3.2.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-11 + 3.2.0 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 3.1.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-02-27 + 3.1.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + rpcbind + http://nfsv4.bullopensource.org + + PisiLinux Community + admins@pisilinux.org + + BSD + service + server + Universal Addresses to RPC Program Number Mapper + Evrensel adresleri RPC program numaralarına eşleştirici + The rpcbind utility is a server that converts RPC program numbers into universal addresses. It must be running on the host to be able to make RPC calls on a server on that machine. + RPCbind aracı, RPC program numaralarını DARPA protokolü port numaralarına çeviren bir sunucu yazılımıdır. + mirrors://sourceforge/rpcbind/1.2.6/rpcbind-1.2.6.tar.bz2 + + libtirpc-devel + tcp-wrappers-devel + + server/rpcbind/pspec.xml + + + rpcbind + + libtirpc + tcp-wrappers + + + /etc + /usr/sbin/rpcbind + /usr/bin/rpcinfo + /var/lib + /usr/share/man + /usr/share/doc + + + System.Service + + + rpcbind.sysconfig - - 2020-02-07 - 20190709 + + 2022-03-11 + 1.2.6 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + samba + http://www.samba.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + service + server + A suite of SMB and CIFS client/server programs for UNIX + Linux için Windows ağ paylaşım servisi + samba is a free software implementation of Microsoft's networking protocol released under the GNU General Public License. As of version 4, Samba not only provides file and print services for various Microsoft Windows clients but can also integrate with a Windows Server domain, either as a Primary Domain Controller (PDC) or as a Domain Member. It can also be part of an Active Directory domain. + Samba, Linux ve Unix işletim sistemleri ile Windows NT ve Windows 9x işletim sistemleri arasındaki iletişimi sağlayan bir ağ sunucusu uygulamasıdır. Samba yalnızca Linux ve windows makinaların birbirlerini görmelerini sağlamaz aynı zamanda Linux çalıştıran bilgisayarların windows ağında yazıcı sunucusu gibi işlevleri edinmesi içinde kullanılır. Ayrıca Active Directory ile de uyumludur. + https://download.samba.org/pub/samba/stable/samba-4.14.10.tar.gz + + acl-devel + pam-devel + perl-parse-yapp + jansson-devel + rpcsvc-proto-devel + docbook-xsl + avahi-devel + gnutls-devel + libgpg-error-devel + popt-devel + libtalloc-devel + python3-devel + icu4c-devel + cups-devel + mit-kerberos + libcap-devel + openldap-client + openldap-server + libtdb-devel + libarchive-devel + dbus-devel + libtirpc-devel + libnsl-devel + + + 0001-Fix-build-on-libtirpc-less-glibc.patch + + server/samba/pspec.xml + + + samba + + acl + pam + cups + dbus + popt + zlib + icu4c + gnutls + libbsd + libcap + libnsl + libtdb + jansson + python3 + libtasn1 + libtirpc + libtalloc + avahi-libs + openldap-client + + + /etc + /lib + /run + /var + /usr/bin + /usr/lib/cups + /usr/lib/lib*.so* + /usr/lib/python3.9 + /usr/lib/samba + /usr/lib/tmpfiles.d + /usr/libexec + /usr/sbin + /usr/share/samba + /usr/share/man + + + System.Package + System.Service + + + lmhosts + samba.pam + smbusers + smb.conf + tmpfiles.conf + + + + samba-devel + Development files for samba + samba için geliştirme dosyaları + + samba + libtalloc-devel + libtevent-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-20 + 4.14.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-20 + 4.14.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-22 + 4.14.5 + Rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2021-06-20 + 4.14.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-18 + 4.13.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 4.11.5 Version bump. İdris Kalp idriskalp@gmail.com - - 2018-08-13 - 20180629 - Rebuild New T. + + 2019-04-05 + 4.9.4 + Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-08-06 + 4.7.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-28 + 4.5.5 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + - 2017-03-02 - 20161105 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2016-07-24 + 4.4.5 + Version Bump fix service.py + Ergün Salman + poyraz76@pisilinux.org - 2016-06-09 - 20150815 + 2016-06-15 + 4.2.3 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-10-01 - 20150815 + 2015-07-30 + 4.2.3 First release Ertuğrul Erata ertugrulerata@gmail.com @@ -340088,162 +321868,941 @@ cleaner, which will allow to add new features in the future. - webkit2gtk - http://webkitgtk.org + sshpass + https://sourceforge.net/projects/sshpass/ - Alihan Öztürk + PisiLinux Community admins@pisilinux.org - LGPLv2 - LGPLv2.1 - BSD - library - network.misc - An opensource web browser engine for GTK+ applications - The GTK+ port of WebKit is intended to provide a browser component primarily for users of the portable GTK+ UI toolkit on platforms like Linux. - https://www.webkitgtk.org/releases/webkitgtk-2.34.0.tar.xz + GPLv3 + app:console + server + Fool ssh into accepting an interactive password non-interactively + Fool ssh into accepting an interactive password non-interactively + Fool ssh into accepting an interactive password non-interactively + Fool ssh into accepting an interactive password non-interactively + https://sourceforge.net/projects/sshpass/files/sshpass/1.06/sshpass-1.06.tar.gz - cmake - which - gperf - gtk-doc - bubblewrap - ruby-devel - mesa-devel - gtk3-devel - gtk2-devel - webp-devel - libwpe-devel - cairo-devel - icu4c-devel - libXt-devel - lcms2-devel - sqlite-devel - python3-devel - libsoup-devel - wayland-devel - libxslt-devel - geoclue-devel - libgudev-devel - harfbuzz-devel - enchant2-devel - xdg-dbus-proxy - libtasn1-devel - libglvnd-devel - libnotify-devel - openjpeg2-devel - libsecret-devel - libgcrypt-devel - libseccomp-devel - icon-theme-hicolor - libjpeg-turbo-devel - gst-plugins-bad-devel - gst-plugins-base-devel - gobject-introspection-devel - wpebackend-fdo-devel - libmanette-devel + openssh - network/misc/webkit2gtk/pspec.xml + server/sshpass/pspec.xml - webkit2gtk + sshpass - atk - zlib - gtk3 - mesa - webp - cairo - icu4c - libXt - glib2 - pango - libwpe - libX11 - libgcc - libpng - libxml2 - sqlite - enchant - geoclue - libsoup - libxslt - enchant2 - libtasn1 - harfbuzz - freetype - libglvnd - libsecret - openjpeg2 - libnotify - libgcrypt - gstreamer - gst-libav - fontconfig - gdk-pixbuf - libXdamage - libXrender - libseccomp - libXcomposite - libjpeg-turbo - gst-plugins-bad - gst-plugins-base - gst-plugins-good - gobject-introspection - wpebackend-fdo - libmanette + openssh + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2020-01-27 + 1.06 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-05-04 + 1.06 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + apache + http://httpd.apache.org/ + + Pisi Linux Admins + admins@pisilinux.org + + Apache-2.0 + service + server.web + Apache web sunucusu + Apache Webserver + Apache web server + Apache HTTP Server is a free software/open source web server for Unix-like systems, Microsoft Windows, Novell NetWare and other operating systems. Apache is notable for playing a key role in the initial growth of the World Wide Web, and continues to be the most popular web server in use, serving as the de facto reference platform against which other web servers are designed and judged. + Dünyanın en çok tercih edilen web sunucu olan Apache artık diğer genelağ sunucularının standartlarını belirlemek için takip ettiği hızlı, güçlü, esnek ve yüksek özelleştirilebilirliğe sahip bir genelağ sunucusudur. + https://downloads.apache.org/httpd/httpd-2.4.54.tar.bz2 + + apr-devel + nss-devel + lua-devel + zlib-devel + openssl-devel + libxml2-devel + db-devel + expat-devel + libpcre-devel + apr-util-devel + cyrus-sasl-devel + + server/web/apache/pspec.xml + + + apache + + nss + apr + lua + apr-util + cyrus-sasl + openldap-client + zlib + openssl + libxml2 + libpcre + db + expat + + + /etc + /usr/sbin + /usr/bin + /usr/include + /var/log/apache2 + /var/www + /run/apache2 + /var/cache + /usr/share/doc + /usr/share/man + /usr/lib + /usr/share/dbus-1/services/apache.service + + + System.Package + System.Service + + + apache.service + apache2.confd + httpd.conf + 00_default_vhost.conf + 00_apache_manual.conf + 40_mod_ssl.conf + 41_mod_ssl.default-vhost.conf + 45_mod_dav.conf + 46_mod_ldap.conf + webroot/apache.css + webroot/apache_pb.gif + webroot/index.html + webroot/index-tr.html + webroot/index-ptbr.html + webroot/index-es.html + webroot/index-de.html + webroot/pisi-linux.png + + + + + 2022-06-08 + 2.4.54 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-31 + 2.4.53 + Version bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-11-01 + 2.4.51 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-27 + 2.4.41 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 2.4.34 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-17 + 2.4.29 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 2.4.25 + Version Bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-14 + 2.4.20 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-17 + 2.4.20 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + kdsoap + https://github.com/KDAB/KDSoap + + PisiLinux Community + admins@pisilinux.org + + custom + library + server.web + Qt-based client-side and server-side SOAP component + Qt tabanlı istemci tarafı ve sunucu tarafı SOAP bileşeni + It can be used to create client applications for web services and also provides the means to create web services without the need for any further component such as a dedicated web server. + Web hizmetleri için istemci uygulamaları oluşturmak için kullanılabilir ve ayrıca özel bir web sunucusu gibi başka bir bileşene ihtiyaç duymadan web hizmetleri oluşturmak için araçlar sağlar. + https://github.com/KDAB/KDSoap/releases/download/kdsoap-1.9.0/kdsoap-1.9.0.tar.gz + + cmake + qt5-base-devel + + server/web/kdsoap/pspec.xml + + + kdsoap + + libgcc + qt5-base + + + /usr/bin /usr/lib /usr/share /usr/share/doc - webkit2gtk-devel - Development files for GTK+ port of WebKit - library - data:doc + kdsoap-devel + Development files for kdsoap - gtk3-devel - glib2-devel - libsoup-devel - webkit2gtk + kdsoap - /usr/bin /usr/include - /usr/lib/pkgconfig - /usr/share/doc/webkit-gtk/Web* - /usr/share/doc/webkit2gtk/html - /usr/share/doc/webkit-gtk/JavaScriptCore + /usr/lib/cmake - - 2021-10-01 - 2.34.0 + + 2020-05-11 + 1.9.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + libmicrohttpd + http://www.gnu.org/software/libmicrohttpd + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + library + server.web + A compact API and implementation of HTTP web server + Bir HTTP sunucu uygulama programlama arayüzü (API) ve uygulaması + libmicrohttpd is a small C library that is supposed to make it easy to run an HTTP server as part of another application. + libmicrohttpd, bir HTTP sunucusunun diğer yazılımların parçası olarak çalışmasını kolaylaştıran kitaplıktır. + http://ftp.gnu.org/gnu/libmicrohttpd/libmicrohttpd-0.9.69.tar.gz + + texinfo + gnutls-devel + libgcrypt-devel + libgpg-error-devel + + server/web/libmicrohttpd/pspec.xml + + + libmicrohttpd + + gnutls + libgcrypt + libgpg-error + + + /usr/bin/microspdy2http + /usr/bin/demo + /usr/lib + /usr/share/man + /usr/share/info + /usr/share/doc + + + + libmicrohttpd-devel + Development files for libmicrohttpd + libmicrohttpd için geliştirme dosyaları + + gnutls-devel + + + gnutls-devel + libmicrohttpd + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-01-27 + 0.9.69 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-08-10 + 0.9.59 + Version Bump + Kamil Atlı + suvari@pisilinux.org + - 2021-06-07 - 2.33.1 + 2017-05-09 + 0.9.54 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 0.9.49 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-25 + 0.9.49 + First release + Ali Algul(gulle) + alialgul@pisilinux.org + + + + + + nginx + http://www.nginx.net/ + + Kamil Atlı + suvari@pisilinux.org + + as-is + service + server.web + nginx is an HTTP and reverse proxy server + Küçük, sağlam ve yüksek performanslı http ve ters vekil sunucusu + Nginx is a free, open-source, high-performance HTTP server and reverse proxy, as well as an IMAP/POP3 proxy server. Written by Igor Sysoev in 2005, Nginx now hosts between 1% and 4% of all domains worldwide. Nginx is known for its stability, rich feature set, simple configuration, and low resource consumption. + nginx, özgür, açık kaynaklı, yüksek performanslı bir HTTP, ters vekil (reverse proxy) ve aynı zamanda IMAP/POP3 sunucusudur. + http://nginx.org/download/nginx-1.20.1.tar.gz + + perl + gd-devel + zlib-devel + geoip-devel + libxslt-devel + libpcre-devel + openssl-devel + + server/web/nginx/pspec.xml + + + nginx + + gd + perl + zlib + geoip + libxslt + libpcre + openssl + libxml2 + + + /etc/nginx + /etc/logrotate.d + /usr/sbin + /var/www/nginx + /var/log/nginx + /run + /var/lib/nginx/client_body + /var/lib/nginx/fastcgi + /var/lib/nginx/proxy + /usr/lib + /usr/share/man + /usr/share/doc + + + System.Package + System.Service + + + conf/nginx.conf + conf/ssl.conf + conf/00_default_vhost.conf + nginx.logrotate + default-page/index.html + default-page/index-tr.html + default-page/404.html + default-page/nginx.css + default-page/nginx.gif + default-page/pisi-linux.png + + + + + 2021-08-29 + 1.20.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-02-27 - 2.30.5 - Version bump. + 2020-01-27 + 1.17.8 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2020-01-30 - 2.26.3 + 2019-07-25 + 1.17.2 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + ConsoleKit + https://github.com/Consolekit2 + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + system.auth + A framework for defining and tracking users, login sessions, and seats + Kullanıcıları, giriş oturumlarını ve koltukları takip etmek ve tanımlamak için bir altyapı + ConsoleKit is a system daemon for tracking what users are logged into the system and how they interact with the computer (e.g. which keyboard and mouse they use). + ConsoleKit, sisteme giriş yapmış kullanıcıları ve bu kullanıcıların bilgisayar ile nasıl etkileştiğini izleyen bir sistem hizmetidir. + https://github.com/ConsoleKit2/ConsoleKit2/archive/refs/tags/1.2.4.tar.gz + + xmlto + acl-devel + pam-devel + util-linux + dbus-devel + eudev-devel + zlib-devel + glib2-devel + libX11-devel + libnih-devel + libdrm-devel + libxslt-devel + libevdev-devel + python3-devel + cgmanager-devel + gobject-introspection-devel + polkit-devel + elogind + + + consolekit2-conf.patch + + system/auth/ConsoleKit/pspec.xml + + + ConsoleKit + + acl + pam + dbus + zlib + glib2 + libX11 + libnih + cgmanager + polkit + eudev + + + /etc + /usr/lib/tmpfiles.d/ConsoleKit.conf + /usr/bin + /usr/sbin + /usr/libexec + /lib + /usr/lib + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/gtk-doc + /usr/share/polkit-1/actions + /usr/share/polkit-1/rules.d + /usr/share/man + /usr/share/locale + /usr/share/doc + /var + + + ConsoleKit.conf + 25-consolekit.rules + consolekit.pamd + pam-foreground-compat.ck + + + + ConsoleKit-devel + Development files for ConsoleKit + ConsoleKit için geliştirme dosyaları + + ConsoleKit + glib2-devel + dbus-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-07-05 + 1.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-17 + 1.2.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 1.2.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.2.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-13 + 1.2.1 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-07-23 + 1.2.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-02 + 1.0.2 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 1.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-03-30 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + elogind + https://github.com/elogind + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2.1 + app:console + system.auth + Elogind User, Seat and Session Manager + Elogind; kullanıcı, oturum ve seat Yöneticisi + Elogind is the systemd project's "logind", extracted out to be a standalone daemon. It integrates with PAM to know the set of users that are logged in to a system and whether they are logged in graphically, on the console, or remotely. + Elogind kullanıcıların oturum açma kapama durumlarını denetlerken çoklu oturumlara da izin veren hizmettir. + https://github.com/elogind/elogind/archive/refs/tags/v246.10.tar.gz + + gperf + meson + ninja + libxslt-devel + sysvinit + acl-devel + pam-devel + dbus-devel + audit-devel + docbook-xsl + eudev-devel + glib2-devel + libcap-devel + cgmanager-devel + libevdev-devel + p11-kit-devel + kernel-headers + libpcre2-devel + bash-completion + + system/auth/elogind/pspec.xml + + + elogind + Elogind User, Seat and Session Manager + + acl + pam + audit + eudev + libevdev + dbus + cgmanager + libcap + bash-completion + + + /etc + /lib + /bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/zsh + /usr/bin + /usr/share/dbus-1 + /usr/share/factory + /usr/share/polkit-1 + /usr/share/locale + /usr/share/bash-completion + + + System.Service + System.Package + + + tmpfiles.conf + 25-elogind.rules + 25-elogind.rules + elogind-user + + + + elogind-devel + Development files for elogind + elogind için geliştirme dosyaları + elogind-devel, elogind için geliştirme dosyalarını içerir. + + elogind + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-05-21 + 246.10 + elogind rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 246.10 + elogind rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 246.10 + elogind rebuild + Berk Çakar + berk2238@hotmail.com + + + 2021-05-03 + 246.10 + Version Bump + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + 2021-03-17 + 246.9.2 + First release + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + efibootmgr + https://github.com/vathpela/efibootmgr + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL2 + app:console + system.boot + Tool to modify UEFI Firmware Boot Manager Variables + UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç + a Linux user-space application to modify the Intel Extensible Firmware Interface (EFI) Boot Manager. + UEFI Firmware Yükleme Yöneticisi Değişkenlerini düzenlemek için araç + https://github.com/rhboot/efibootmgr/archive/refs/tags/17.tar.gz + + pciutils-devel + zlib-devel + popt-devel + efivar-devel + + system/boot/efibootmgr/pspec.xml + + + efibootmgr + + efivar + popt + + + /usr/sbin + /usr/share/man + /usr/lib + + + + efibootmgr-devel + + popt-devel + efivar-devel + efibootmgr + + + /usr/include + + + + + 2021-11-29 + 17 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-22 + 17 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-17 + 17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-09 + 16 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-21 + 15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 15 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-09 + 15 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-14 + 14 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 0.12 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-01 + 0.12 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + efitools + http://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app + system.boot + UEFI güvenli önyükleme platformlarını işleme araçları + UEFI güvenli önyükleme platformlarını işleme araçları + Tools for manipulating UEFI secure boot platforms + Tools for manipulating UEFI secure boot platforms + https://git.kernel.org/pub/scm/linux/kernel/git/jejb/efitools.git/snapshot/efitools-1.9.2.tar.gz + + gnu-efi + help2man + sbsigntools + perl-File-Slurp + openssl-devel + + + efitools-1.9.2-wrong_var_name-with-gnu-efi-3.0.11.patch + + system/boot/efitools/pspec.xml + + + efitools + + openssl + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/efitools/efi + /usr/share/doc + + + + + 2020-11-07 + 1.9.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 1.9.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-21 + 1.8.1 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 1.7.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-16 + 1.7.0 First release. Mustafa Cinasal muscnsl@gmail.com @@ -340252,54 +322811,53 @@ cleaner, which will allow to add new features in the future. - neon - http://www.webdav.org/neon/ + efivar + https://github.com/vathpela/efivar - PisiLinux Community - admins@pisilinux.org + Aydın Demirel + aydin.demirel@pisilinux.org - GPLv2 - library - network.misc - Librairie cliente HTTP et WebDAV. - HTTP and WebDAV client library - C arayüzü ile birlikte gelen, Http ve WebDAV için istemci kitaplığı - neon is an HTTP and WebDAV client library with a C interface; providing a high-level interface to HTTP and WebDAV methods along with a low-level interface for HTTP request handling. - neon, C arayüzü sunan bir HTTP ve WebDAV istemci kitaplığıdır. HTTP ve WebDAV metodlarına yüksek seviyeli, HTTP istek değerlendirmesi için de düşük seviyeli bir arayüz sunar. - https://notroj.github.io/neon/neon-0.31.2.tar.gz + LGPL2.1 + app:console + system.boot + Tools and library to manipulate EFI variables + EFI değişkenlerini işlemek için araçlar ve kütüphane + Tools and library to manipulate EFI variables. + EFI değişkenlerini işlemek için araçlar ve kütüphane + https://github.com/rhinstaller/efivar/releases/download/37/efivar-37.tar.bz2 - openssl-devel - expat-devel - zlib-devel - mit-kerberos + popt-devel - fixdocdir.patch - multilib.patch + fedora/0001-util.h-add-unlikely-and-likely-macros.patch + fedora/0002-dp.h-make-format_guid-handle-misaligned-guid-pointer.patch + fedora/0003-linux-pci-root-remove-an-unused-assignment.patch + fedora/0004-Fix-all-the-places-Werror-address-of-packed-member-c.patch + fedora/0005-Get-rid-of-the-arrows-in-our-debug-messages.patch + fedora/0006-Define-strdupa-if-it-is-not-defined.patch + fedora/0007-Android-inital-porting-of-libefivar.patch + fedora/0008-Remove-an-unused-function.patch + fedora/0009-Fix-another-error-of-Werror-address-of-packed-member.patch + fedora/0010-Update-generated-ABI.patch - network/misc/neon/pspec.xml + system/boot/efivar/pspec.xml - neon + efivar - zlib - expat - openssl + popt - /usr/bin /usr/lib - /usr/share/locale - /usr/share/doc /usr/share/man + /usr/bin - neon-devel - Development files for neon - neon için geliştirme dosyaları + efivar-devel - neon + popt-devel + efivar /usr/include @@ -340307,44 +322865,631 @@ cleaner, which will allow to add new features in the future. + + 2021-07-16 + 37 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 37 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-21 + 36 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-13 + 31 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + - 2021-03-11 - 0.31.2 + 2017-12-09 + 31 Version bump - İdris Kalp - idriskalp@gmail.com + Ertuğrul Erata + ertugrulerata@gmail.com - 2020-02-07 - 0.30.2 - Rebuild - İdris Kalp - idriskalp@gmail.com + 2017-01-24 + 26 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-03-29 + 0.23 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + gfxboot + https://github.com/openSUSE/gfxboot + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + Tools to create graphical boot logos + Grafik açılış logosu oluşturma araçları + Set of tools to create graphical boot logos, for grub, lilo and syslinux. It supports arch-specific boot menus, advanced help menus, multiple keymaps, animated images, and more graphical pretty things. + Grub, syslinux ve lilo gibi önyükleyiciler için grafik açılış logoları oluşturma araçları. Mimari bazlı açılış menüsü, gelişmiş yardım menüsü, farklı diller için klavye haritası desteği, hareketli görüntü desteği ve daha pek çok görsel efekt desteği içerir. + gfxboot + https://github.com/openSUSE/gfxboot/archive/4.5.64.tar.gz + + xmlto + freetype-devel + util-linux + libxslt + lynx + + + no-theme-no-git.patch + + system/boot/gfxboot/pspec.xml + + + gfxboot + + perl-HTML-Parser + freetype + + + /usr/sbin + /usr/share/gfxboot/bin + /usr/share/gfxboot + /usr/share/doc + + + + + 2020-11-07 + 4.5.64 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 4.5.64 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-09-02 - 0.30.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2018-08-13 + 4.5.36 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com - 2017-02-24 - 0.30.2 - Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2017-01-25 + 4.5.20 + Version bump. + Stefan Gronewold + groni@pisilinux.org - 2016-06-09 - 0.30.0 + 2016-06-08 + 4.5.12 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-25 - 0.30.0 + 2016-04-04 + 4.5.12 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gfxtheme-pisilinux-install + https://pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + data + system.boot + Pisi Linux gfxboot install theme + Pisi Linux gfxboot teması + Gfxtheme install package for Pisi Linux + Kurulum sistemi ve kurulu sistem için Pisi Linux gfxboot teması. + https://github.com/PisiLinuxNew/gfxtheme-pisilinux-install/archive/v0.2.tar.gz + + gfxboot + fribidi-devel + + system/boot/gfxtheme-pisilinux-install/pspec.xml + + + gfxtheme-pisilinux-install + + /usr/share/gfxtheme/pisilinux/install + + + + + 2020-01-26 + 0.2 + Rebuild for toolchain + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-13 + 0.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-05 + 0.2 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-08 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-08-04 + 0.2 + First release + Serdar Soytetir + kaptan@pisilinux.org + + + + + + memtest86 + http://www.memtest.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + Memory tester + Bellek test edici + Testeur de mémoire pour architecture x86 et x86_64 pour ordinateurs x86 et 64 bit x86 compatibles. Il doit être lancer depuis le menu de démarrage. + Memory tester for x86 and x86_64 devices for x86 and 64bit x86 compatible computers. It should be started from boot menu. + x86 ve 64bit x86 mimarilerindeki bilgisayarın belleklerini test etmeye ve hataları bulmaya yaran bir program. Kullanmak için açılış menüsünden çalıştırmanız gerekmektedir. + http://www.memtest.org/download/5.01/memtest86+-5.01.tar.gz + system/boot/memtest86/pspec.xml + + + memtest86 + + /boot + /usr/share/doc + + + + + 2020-11-07 + 5.01 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 5.01 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 5.01 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-05 + 5.01 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-08 + 5.01 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-27 + 5.01 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + plymouth + http://cgit.freedesktop.org/plymouth + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + library + system.boot + Graphical Boot Animation and Logger + Açılış animasyonu ve oturum açma altyapısı + plymouth provides an attractive graphical boot animation in place of the text messages that normally get shown. Text messages are instead redirected to a log file for viewing after boot. + plymouth, sistemin açılışı esnasında estetik ve ilgi çekici bir grafiksel animasyon altyapısı sunan bir uygulamadır. + http://freedesktop.org/software/plymouth/releases/plymouth-22.02.122.tar.xz + https://sourceforge.net/projects/pisilinux/files/source/plymouth-theme-pisilinux-0.4.tar.xz + + pisilinux/generate-flist.py + + + docbook-xsl + kernel-headers + libdrm-devel + libpng-devel + cairo-devel + pango-devel + graphite2-devel + harfbuzz-devel + glib2-devel + gtk2-devel + gtk3-devel + eudev-devel + libxslt-devel + + + mageia/1002-main-allow-the-device-timeout-to-be-overridden-on-th.patch + pisilinux/pisilinux.patch + + system/boot/plymouth/pspec.xml + + + plymouth + + eudev + libdrm + plymouth-core-libs + plymouth-theme-pisilinux + + + /bin + /sbin + /usr/bin + /usr/sbin + /bin/plymouth + /usr/libexec/plymouth + /etc/plymouth + /etc/logrotate.d/bootlog + /usr/lib + /lib + /usr/lib/plymouth/text.so + /usr/lib/plymouth/details.so + /usr/lib/plymouth/renderers + /usr/share/pixmaps + /usr/share/plymouth + /usr/share/plymouth/themes + /usr/share/plymouth/themes/details + /usr/share/plymouth/themes/text + /usr/share/doc + /usr/share/man + /var/lib/plymouth + /run/plymouth + /var/spool/plymouth + /usr/share/locale + /usr/lib/tmpfiles.d/plymouth.conf + + + System.Package + + + tmpfiles.conf + pisilinux/boot-duration + pisilinux/initramfs.files + pisilinux/images/white-head.png + fedora/charge.plymouth + + + + plymouth-core-libs + Plymouth core libraries + plymouth-core-libs contains the libply and libply-splash-core libraries used by Plymouth. + + /lib/libply-splash-core.so* + /lib/libply.so* + + + + plymouth-graphics-libs + Plymouth graphics libraries + plymouth-graphics-libs contains the libply-splash-graphics library used by graphics Plymouth splashes. + + zlib + libpng + + + /usr/lib/libply-splash-graphics.so* + + + + plymouth-devel + Development headers and files for plymouth + + plymouth + + + /usr/include + /usr/lib/pkgconfig + + + + plymouth-renderer-x11 + An X11 renderer for debugging purposes + + cairo + gtk2 + atk + cairo + pango + gdk-pixbuf + fontconfig + + + /usr/lib/plymouth/renderers/x11* + + + + plymouth-plugin-label + Plymouth label plugin + plymouth-plugin-label contains the label control plugin for Plymouth. It provides the ability to render text on graphical boot splashes using pango and cairo. + + cairo + pango + glib2 + harfbuzz + plymouth-graphics-libs + + + /usr/lib/plymouth/label.so + + + + plymouth-plugin-fade-throbber + Plymouth Fade-Throbber plugin + plymouth-plugin-fade-throbber contains the "Fade-In" boot splash plugin for Plymouth. It features a centered image that fades in and out while other images pulsate around during system boot up. + + plymouth-graphics-libs + + + /usr/lib/plymouth/fade-throbber.so + + + + plymouth-theme-spinner + Spinner theme for Plymouth + plymouth için Spinner teması + plymouth-theme-spinner contains the "Spinner" boot splash theme for Plymouth. It features a simple theme with a small spinner on a dark background. + + plymouth-plugin-two-step + + + /usr/share/plymouth/themes/spinner + + + + plymouth-theme-fade-in + Fade-in theme for Plymouth + plymouth-theme-fade-in contains the "Fade-In" boot splash theme for Plymouth. It features a centered logo that fades in and out while stars twinkle around the logo during system boot up. + + plymouth-plugin-fade-throbber + + + /usr/share/plymouth/themes/fade-in + + + + plymouth-theme-spinfinity + Plymouth Spinfinity theme + plymouth için Spinfinity teması + plymouth-theme-spinfinity contains the "Spinfinity" boot splash theme for Plymouth. It features a centered logo and animated spinner that spins in the shape of an infinity sign. + + /usr/share/plymouth/themes/spinfinity + + + + plymouth-plugin-space-flares + Plymouth space-flares plugin + plymouth-plugin-space-flares contains the "space-flares" boot splash plugin for Plymouth. It features a corner image with animated flares. + + plymouth-plugin-label + plymouth-graphics-libs + + + /usr/lib/plymouth/space-flares.so + + + + plymouth-theme-solar + Plymouth Solar theme + plymouth için Solar teması + plymouth-theme-solar contains the "Solar" boot splash theme for Plymouth. It features a blue flamed sun with animated solar flares. + + plymouth-plugin-space-flares + + + /usr/share/plymouth/themes/solar + + + + plymouth-plugin-two-step + Plymouth Two-Step plugin + plymouth-plugin-two-step contains the "two-step" boot splash plugin for Plymouth. It features a two phased boot process that starts with a progressing animation synced to boot time and finishes with a short, fast one-shot animation. + + plymouth-plugin-label + plymouth-graphics-libs + + + /usr/lib/plymouth/two-step.so + + + + plymouth-theme-charge + Plymouth Charge plugin + plymouth için Charge teması + plymouth-theme-charge This package contains the "charge" boot splash theme for Plymouth. It features the shadowy hull of a Fedora logo charge up and and finally burst into full form. + + plymouth-plugin-two-step + + + /usr/share/plymouth/themes/charge + + + + plymouth-plugin-script + Plymouth script plugin + plymouth-plugin-script contains "script" boot splash plugin for Plymouth. It features an extensible, scriptable boot splash language that simplifies the process of designing custom boot splash themes. + + plymouth-graphics-libs + + + /usr/lib/plymouth/script.so + + + + plymouth-theme-script + Plymouth Script theme + plymouth-theme-script contains the "script" boot splash theme for Plymouth. It it is a simple example theme the uses the "script" plugin. + + plymouth-plugin-script + + + /usr/share/plymouth/themes/script + + + + plymouth-theme-pisilinux + Plymouth Pisi Linux theme + plymouth için Pisi Linux teması + plymouth-theme-pisilinux contains a simple but elegant boot theme for Pisi Linux. + + plymouth-plugin-script + + + /usr/share/plymouth/themes/pisilinux + + + + + 2022-03-25 + 22.02.122 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-25 + 0.9.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 0.8.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 0.8.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-01 + 0.8.8 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-08-25 + 0.8.8 + script fix. + Pisi Linux Community + admin@pisilinux.org + + + 2016-08-22 + 0.8.8 + actions fix + Pisi Linux Community + admin@pisilinux.org + + + 2016-08-21 + 0.8.8 + New theme. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.8.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-21 + 0.8.8 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-21 + 0.8.8 First release Alihan Öztürk alihan@pisilinux.org @@ -340353,38 +323498,1311 @@ cleaner, which will allow to add new features in the future. - clamz - https://code.google.com/archive/p/clamz/ + refind + https://sourceforge.net/projects/refind/ - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + Ergün Salman + poyraz76@pisilinux.org - LGPLv3 + rEFIt library - network.misc - Amazon Downloader - Amazon Downloader - Clamz is a little command-line program to download MP3 files from Amazon.com's music store. It is intended to serve as a substitute for Amazon's official MP3 Downloader, which is not free software (and therefore is only available in binary form for a limited set of platforms.) Clamz can be used to download either individual songs or complete albums that you have purchased from Amazon. - Clamz is a little command-line program to download MP3 files from -Amazon.com's music store. It is intended to serve as a substitute -for Amazon's official MP3 Downloader, which is not free software (and -therefore is only available in binary form for a limited set of -platforms.) Clamz can be used to download either individual songs or -complete albums that you have purchased from Amazon. - https://storage.googleapis.com/google-code-archive-downloads/v2/code.google.com/clamz/clamz-0.5.tar.gz - - curl-devel - libgcrypt-devel - expat-devel - - network/misc/clamz/pspec.xml + system.boot + refind uefi multi boot + refind uefi multi boot + https://sourceforge.net/projects/pisi-source/files/refind-0.10.3.tar.gz + system/boot/refind/pspec.xml - clamz + refind + + /usr/* + /etc/* + + + System.Package + + + + + 2020-11-07 + 0.10.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 0.10.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 0.10.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-20 + 0.10.3 + Relase bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-07-30 + 0.10.3 + Relase Frist + Ergün Salman + poyraz76@pisilinux.org + + + + + + syslinux + http://syslinux.zytor.com/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + system.boot + SysLinux, IsoLinux and PXELinux bootloader + SysLinux, IsoLinux ve PXELinux önyükleyicileri + Lightweight bootloaders for floppy media (SYSLINUX), network booting (PXELINUX), and bootable "El Torito" CD-ROMs (ISOLINUX). The project also includes MEMDISK, a tool to boot legacy operating systems (such as DOS) from nontraditional media; it is usually used in conjunction with PXELINUX and ISOLINUX. + Disket sürücüden (SYSLINUX), ağ üzerinden (PXELINUX) ve açılabilir "El Torito" CD-ROM'lardan (ISOLINUX) açılışı sağlayan hafif önyükleyici araçları. Bu proje ayrıca sık kullanılmayan ya da çok eski işletim sistemlerinin açılışı için genellikle PXELINUX ve ISOLINUX ile ortak kullanılabilen MEMDISK aracını da içermektedir. + https://mirrors.edge.kernel.org/pub/linux/utils/boot/syslinux/Testing/6.04/syslinux-6.04-pre1.tar.xz + + nasm + asciidoc + dosfstools + mtools + efibootmgr-devel + gptfdisk + upx + libutil-linux-devel + util-linux + python-devel + + + syslinux.git-138e850fab106b5235178848b3e0d33e25f4d3a2.patch + 0001-Add-install-all-target-to-top-side-of-HAVE_FIRMWARE.patch + 0002-ext4-64bit-feature.patch + 0003-include-sysmacros-h.patch + 0004-Add-RPMOPTFLAGS-to-CFLAGS-for-some-stuff.patch + 0005-Workaround-multiple-definition-of-symbol-errors.patch + 0006-Replace-builtin-strlen-that-appears-to-get-optimized.patch + + system/boot/syslinux/pspec.xml + + + syslinux + libutil-linux + mtools + efibootmgr + util-linux + dosfstools + gptfdisk + perl-Crypt-PasswdMD5 + perl-Digest-SHA1 + + + /sbin + /usr/bin + /usr/lib/syslinux + /usr/share/doc + /usr/share/man + + + pisi-iso/isolinux.cfg + pisi-iso/background.png + + + + + 2021-07-17 + 6.04 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2020-01-25 + 6.04 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-11-12 + 6.04 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-24 + 6.04 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-13 + 6.03 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-29 + 6.03 + Release Bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-06-08 + 6.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-02 + 6.03 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + Calamares + https://calamares.io/ + + Ergün Salman + Poyraz76@pisilinux.org + + LGPLv2 + system.installer + A distribution independent installer framework + Dağıtım bağımsız sistem yükleyici + Calamares is a distribution-independent system installer, with an advanced partitioning feature for both manual and automated partitioning operations. + Calamares dağıtım bağımsız bir sistem yükleyicidir. + https://github.com/calamares/calamares/archive/v3.2.39.3.tar.gz + + gettext-devel + yaml-cpp + boost-devel + boost-python3 + ki18n-devel + kcoreaddons + solid-devel + parted-devel + qt5-linguist + qt5-svg-devel + udisks2-devel + libyaml-devel + python3-devel + kconfig-devel + qt5-base-devel + polkit-qt-devel + qt5-webkit-devel + qt5-webengine-devel + libatasmart-devel + kcoreaddons-devel + qt5-designer-devel + qt5-assistant-devel + libutil-linux-devel + qt5-declarative-devel + libxkbfile-devel + e2fsprogs-devel + squashfs-tools + efibootmgr-devel + rsync + gptfdisk + extra-cmake-modules + kpmcore-devel + kiconthemes-devel + kio-devel + kservice-devel + kconfig-devel + kparts-devel + plasma-framework-devel + + + pisilocalayar.patch + pisi_set_hostname2.patch + no_fsck_and_pymouth2.patch + + system/installer/Calamares/pspec.xml + + + Calamares + + libgcc + boost + boost-python3 + python3 + kcrash + parted + solid + ki18n + rsync + kconfig + kcoreaddons + qt5-svg + qt5-webkit + libatasmart + qt5-declarative + rsync + ntfs-3g + qt5-base + gptfdisk + e2fsprogs + dmidecode + efibootmgr + libxkbfile + dosfstools + libutil-linux + util-linux + kpmcore + partitionmanager + qt5-webengine + kiconthemes + kio + kservice + kconfig + kparts + kpackage + calamares-theme-pisilinux + + + /usr/bin + /usr/lib + /usr/share/* + /usr/lib/calamares/ + /usr/include/libcalamares/* + /usr/lib/cmake/Calamares/ + /usr/lib/calamares/modules/* + /usr/libexec/ + /etc/locale.conf + + + calamares.desktop + locale.conf + + + + + 2021-10-30 + 3.2.39.3 + Rebuild boost. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-08 + 3.2.39.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-27 + 3.2.32.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 3.2.32.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 3.2.21 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-21 + 3.2.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-27 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-12 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-14 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-24 + 3.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-22 + 3.2.0 + Version Bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-27 + 3.1.11 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-19 + 3.1.10 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-07 + 3.1.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-11-15 + 3.1.7 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-12-13 + 2.4.83 + Version Bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2016-12-13 + 2.4.80 + Version Bump + Ergün Salman + Poyraz76@pisilinux.org + + + 2016-06-08 + 2.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-03 + 2.2 + First Release. + Ergün Salman + Poyraz76@pisilinux.org + + + + + + calamares-theme-pisilinux + https://pisilinux.org + + Pisi Linux Community + admin@pisilinux.org + + GPLv2 + data + system.installer + PiSi Linux theme files for Calamares + Calamares sistem yükleyici için Pisi Linux tema dosyaları + calamares-theme includes PiSi Linux theme files for Calamares(Distribution-independent installer framework). + calamares-theme Calamares (Dağıtım bağımsız sistem yükleyici) projesi için Pisi Linux tema dosyaları içerir. + https://github.com/PisiLinuxNew/calamares-pisilinux/archive/0.4.tar.gz + system/installer/calamares-theme-pisilinux/pspec.xml + + + calamares-theme-pisilinux + + /usr/share/calamares + + + + + 2019-10-31 + 0.3 + Version bump for 2.1.2 Mehmetcik + erkanisik + erkanisik@pisilinux.org + + + 2019-02-15 + 0.3 + Version bump for 2.1.1 Felis-catus + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-13 + 0.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-23 + 0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.1a + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-09 + 0.1a + First release + Pisi Linux Community + admin@pisilinux.org + + + + + + yali + http://www.pisilinux.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + system.installer + Yet Another Linux Installer + YALI: PiSi Linux kurulum yazılımı + YALI: Yet Another Linux Installer (encore un nouvel installateur Linux). + YALI is the graphical installer for PiSi Linux distribution which is written using the Qt framework. + YALI: PiSi Linux kurulum yazılımı. + YALI jest graficznym instalatorem PiSi Linux. + https://github.com/pisilinux/yali/archive/refs/tags/v3.3.7.0.tar.gz + + python-qt5-devel + python-devel + python-pygobject-devel + e2fsprogs-devel + qt5-linguist + qt5-base-devel + + + fix_find_device.patch + + system/installer/yali/pspec.xml + + + yali + + python-qt5 + util-linux + python + e2fsprogs + mdadm + lvm2 + reiserfsprogs + ntfsprogs + dosfstools + xfsprogs + zorg + comar + panda + python-pyaspects + pisilinux-python + pisilinux-python-xorg + syslinux + pyqtermwidget5 + pyparted + python-pyblock + yali-branding-pisilinux + yali-theme-pisilinux + python-udev + pisilinux-desktop-services + rsync + efibootmgr + glibc-locales-nl + glibc-locales-de + glibc-locales-es + glibc-locales-pt + glibc-locales-sv + glibc-locales-fr + glibc-locales-it + glibc-locales-ca + glibc-locales-pl + glibc-locales-ru + glibc-locales-hu + glibc-locales-hr + droid-fonts + + + /usr/bin + /usr/lib + /usr/share + /etc/yali + /lib/udev/rules.d/70-yali.rules + + + Calamares + calamares-theme-pisilinux + + + + + 2022-05-24 + 3.3.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-20 + 3.3.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-21 + 3.3.5.0 + Rebuild stable2. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-13 + 3.3.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-11 + 3.3.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 3.3.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-13 + 3.3.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-12 + 3.2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-11 + 3.2.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-08 + 3.2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-20 + 3.2.0.0 + Version Bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2019-10-17 + 3.0.4.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 3.0.4.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-28 + 3.0.4.3 + Rebuild for 2.0 + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-03-15 + 3.0.4.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-12-25 + 3.0.4.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-11-04 + 3.0.4.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-08-12 + 3.0.4.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-15 + 3.0.4.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-08 + 3.0.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-05 + 3.0.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + yali-branding-pisilinux + http://www.pisilinux.org + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + data + system.installer + Pisi Linux Branding files for YALI + Yali için Pisi Linux dosyaları + yali-branding includes Pisi Linux branding files for YALI(Yet Another Linux Installer). + yalı-branding YALI projesi Pisi Linux dosyalarını içerir. + https://github.com/forYali/yali-branding-pisilinux/archive/0.4.1.tar.gz + + intltool + + system/installer/yali-branding-pisilinux/pspec.xml + + + yali-branding-pisilinux + + /usr/share/doc + /usr/share/yali/branding + + + + + 2018-08-13 + 0.4.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-22 + 0.4.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-05 + 0.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + yali-theme-pisilinux + http://www.pisilinux.org + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + data + system.installer + PiSi Linux theme files for YALI + Yali için Pisi Linux tema dosyaları + yali-branding includes PiSi Linux theme files for YALI(Yet Another Linux Installer). + yalı-theme YALI projesi Pisi Linux tema dosyaları içerir. + https://github.com/forYali/yali-theme-pisilinux/archive/0.4.2.tar.gz + + qt5-base + + system/installer/yali-theme-pisilinux/pspec.xml + + + yali-theme-pisilinux + + /usr/share/doc + /usr/share/yali/theme + + + + + 2021-04-10 + 0.4.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 0.4.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-04 + 0.4.2 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-22 + 0.4.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-15 + 0.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + cgmanager + https://github.com/lxc/cgmanager + + Aydın Demirel + aydin.demirel@pisilinux.org + + GPL + app:console + util.admin + Central cgroup management daemon + Merkezi cgroup yönetimi uygulamacığı + CGManager is a central privileged daemon that manages all your cgroups for you through a simple DBus API. + CGManager basit bir DBUS api üzerinden sizin için tüm cgruplarınızı yöneten merkezi ayrıcalıklı bir uygulamacıktır. + https://github.com/lxc/cgmanager/archive/v0.42.tar.gz + + popt-devel + libnih-devel + pam-devel + help2man + + util/admin/cgmanager/pspec.xml + + + cgmanager + + libnih + pam + popt + dbus + + + /usr/bin + /usr/libexec/cgmanager/cgm-release-agent + /lib/security + /usr/share/man + /usr/share/cgmanager + /usr/lib/libcgmanager* + + + System.Service + + + + cgmanager-devel + + cgmanager + libnih-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-09-01 + 0.42 + fixed "Unknown subsys name 'subsystems'" error + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2020-02-01 + 0.42 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-13 + 0.41 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-15 + 0.41 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-28 + 0.39 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 0.39 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-09-10 + 0.39 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + fwupd + https://fwupd.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + util.admin + Aims to make updating firmware on Linux automatic, safe and reliable + Aims to make updating firmware on Linux automatic, safe and reliable + https://github.com/hughsie/fwupd/archive/1.7.4.tar.gz + + meson + gnu-efi + fwupd-efi + gi-docgen + curl-devel + gcap-devel + libjcat-devel + gpgme-devel + sqlite-devel + polkit-devel + gnutls-devel + libusb-devel + elfutils-devel + libxmlb-devel + libgudev-devel + libgusb-devel + valgrind-devel + python3-pillow + libsmbios-devel + tpm2-tss-devel + bash-completion + elogind-devel + protobuf-c-devel + appstream-glib-devel + python3-pygobject3-devel + efivar-devel + + util/admin/fwupd/pspec.xml + + + fwupd + + gcap + glib2 curl - expat - libgcrypt + libjcat + gpgme + gnutls + polkit + libxmlb + tpm2-tss + json-glib + libgpg-error + efivar + sqlite + libgusb + libsoup + bash-completion + libgudev + elfutils + protobuf-c + libsmbios + libarchive + libutil-linux + appstream-glib + + + /lib + /etc + /usr/bin + /usr/lib + /usr/libexec + /usr/share + /usr/share/man + /usr/share/polkit-1 + /usr/share/dbus-1 + /usr/share/gir-1.0 + /usr/share/fwupd + /usr/share/metainfo + /usr/share/bash-completion + /usr/share/vala + /usr/share/locale + /usr/share/installed-tests + /var + + + org.freedesktop.fwupd.service + + + + fwupd-devel + + fwupd + curl-devel + gcap-devel + glib2-devel + libgusb-devel + libjcat-devel + libxmlb-devel + libgudev-devel + valgrind-devel + json-glib-devel + libarchive-devel + + + /usr/lib/pkgconfig + /usr/include + + + + + 2022-01-14 + 1.7.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-14 + 1.7.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-21 + 1.7.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-05 + 1.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-20 + 1.7.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-02 + 1.3.9 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-28 + 1.1.3 + remove os-release file. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-22 + 1.1.3 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-09-09 + 1.0.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 1.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + fwupd-efi + https://github.com/fwupd/fwupd-efi + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + util.admin + Firmware update EFI binaries + Firmware update EFI binaries + Firmware update EFI binaries + Firmware update EFI binaries + https://people.freedesktop.org/~hughsient/releases/fwupd-efi-1.1.tar.xz + + meson + gnu-efi + + util/admin/fwupd-efi/pspec.xml + + + fwupd-efi + + /usr/libexec + /usr/lib + /usr/share + /usr/share/doc + + + + + 2021-10-20 + 1.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + fwupdate + https://github.com/rhinstaller/fwupdate + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + util.admin + Tools for using the ESRT and UpdateCapsule() to apply firmware updates + Tools for using the ESRT and UpdateCapsule() to apply firmware updates + https://github.com/rhboot/fwupdate/archive/9.tar.gz + + gnu-efi + efivar-devel + popt-devel + libsmbios-devel + + + build.patch + fwupdate-9-objcopy_detection.patch + + util/admin/fwupdate/pspec.xml + + + fwupdate + + popt + efivar + libsmbios + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/bash-completion + /usr/share/locale + + + + fwupdate-devel + + fwupdate + + + /usr/include + /usr/lib/pkgconfig + + + + + 2019-01-20 + 9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-11 + 9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + htop + https://htop.dev/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + app:console + util.admin + Visionneur de processus pour Linux + An interactive process viewer for Linux. + Linux için etkileşimli bir süreç izleyici + htop est un visionneur de processus en mode texte. Il a pour but de surpasser 'top'. + htop is an interactive text-mode process viewer for Linux. It aims to be a better 'top'. + htop, metin kipinde çalışan etkileşimli, 'top' türevi bir süreç izleyicidir. + htop + https://github.com/htop-dev/htop/archive/refs/tags/3.1.1.tar.gz + + python3 + libcap-devel + ncurses-devel + gettext-devel + libunwind-devel + lm_sensors-devel + + util/admin/htop/pspec.xml + + + htop + + libcap + ncurses + libunwind /usr/bin @@ -340394,749 +324812,1595 @@ complete albums that you have purchased from Amazon. - - 2020-03-08 - 0.5 - Rebuild. + + 2021-10-17 + 3.1.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-09-11 + 3.0.1 + Community version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-09-09 + 2.0.2 + Rebuild New T. Mustafa Cinasal - muscnsl@pisilinux.org + muscnsl@gmail.com + + + 2017-01-25 + 2.0.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org - 2018-08-20 - 0.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org + 2016-06-08 + 1.0.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org - 2017-01-07 - 0.5 - First release - Yusuf Aydemir - yusuf.aydemir@pisilinux.org - - - - - - libnet - https://github.com/libnet/libnet - - Blue DeviL - bluedevil@sctzine.com - - BSD - library - app:console - network.misc - Low level network library - Alt seviye ağ kitaplığı - libnet is a library to provide an API for commonly used low-level network functions. - libnet sık kullanılan alt seviye ağ işlevleri için arabirim sunan bir kitaplıktır. - https://github.com/libnet/libnet/archive/v1.2.tar.gz - - doxygen - - network/misc/libnet/pspec.xml - - - libnet - Low level network library - - /usr/lib - /usr/share/man - /usr/share/doc - /usr/bin - - - - libnet-devel - Development files for libnet - libnet için geliştirme dosyaları - libnet-devel, libnet için geliştirme dosyalarını içerir. - - libnet - - - /usr/include - /usr/lib/pkgconfig - - - - - 2019-11-29 - 1.2 - Version bump, moved from contrib. - Blue DeviL - bluedevil@sctzine.com - - - - - - libgssglue - http://www.citi.umich.edu/projects/nfsv4/linux/ - - Marcin Bojara - marcin@pisilinux.org - - BSD - library - network.misc - exports a gssapi interface which calls other random gssapi libraries - Diğer raslantısal gssapi kitaplıklarına çağrı yapan gssapi arayüzünü dışa aktaran kitaplık - libgssglue provides a gssapi interface, but does not implement any gssapi mechanisms itself; instead it calls other gssapi functions (e.g., those provided by MIT Kerberos), depending on the requested mechanism, to do the work. - libgssglue herhangi bir gssapi mekanizma gerçekleştirimi yapmadan istenilen mekanizmaya bakarak diğer gssapi fonsiyonlarına (örn:MIT Kerberos tarafından sağlanan) ulaşabilmek için bir arayüz (API) sunar. - http://www.citi.umich.edu/projects/nfsv4/linux/libgssglue/libgssglue-0.4.tar.gz - - libgssglue-0.1-gssglue.patch - - network/misc/libgssglue/pspec.xml - - - libgssglue - - /usr/lib/libgssglue.so* - /usr/share/doc - - - - libgssglue-devel - libgssglue development files - libgssglue geliştirme dosyaları - - libgssglue - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-03-10 - 0.4 + 2014-06-17 + 1.0.3 First release Kamil Atlı - suvari@pisilinux.org + burakerturk@pisilinux.org - protobuf - https://developers.google.com/protocol-buffers/ + inxi + https://smxi.org/docs/inxi.htm/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPL-3 + app:console + util.admin + script to get system information + A command line system information tool. + script voor het opvragen van systeem informatie + Script para la información del sistema + script to get system information + inxi is a full featured CLI system information tool. + Script voor het opvragen van systeem informatie + Inxi es un completo script que muestra la información del sistema + https://github.com/smxi/inxi/archive/refs/tags/3.3.08-1.tar.gz + util/admin/inxi/pspec.xml + + + inxi + + /usr/bin + /usr/share/kde4/apps/konversation/scripts/inxi + /usr/share/man + /usr/share/doc + + + + + 2021-11-11 + 3.3.08.1 + Version bump. + fury + uglyside@yandex.ru + + + 2020-09-11 + 3.1.06.1 + Version bump. + fury + uglyside@yandex.ru + + + 2018-09-09 + 3.0.20.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-15 + 2.3.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 2.3.8 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-10 + 2.3.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-07-23 + 2.2.19 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + isodumper + https://github.com/papoteur-mga/isodumper + + Alihan Öztürk + alihan@pisilinux.org + + GPLv2 + app:gui + util.admin + A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. + IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. + A tool for writing ISO images on a USB stick. It's a fork of usb-imagewriter. + IsoDumper, bir USB bellek üzerine ISO imaj dosyası yazma aracıdır. + https://sourceforge.net/projects/pisilinux/files/source/isodumper-0.48.tar.xz + + isodumper.svg + isodumper.png + header.png + header.svg + isodumper.desktop.in + tr.po + + + intltool + imagemagick-devel + + util/admin/isodumper/pspec.xml + + + isodumper + + coreutils + pango + polkit + procps + imagemagick + python-gtk + python-cairo + python-pygobject + libglade + python + dbus-python + pyparted + udisks2 + xterm + + + /etc + /usr/bin + /usr/lib + /usr/libexec + /usr/share + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps + /usr/share/isodumper + /usr/share/polkit-1 + /usr/share/locale + /usr/share/doc + + + + + 2021-06-22 + 0.48 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-08-20 + 0.48 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-08-31 + 0.48 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.45 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-22 + 0.45 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-04 + 0.45 + First Release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libtree + https://github.com/haampie/libtree + + fury + uglyside@yandex.ru + + MIT + app + util.admin + ldd as a tree. + A tool that turns ldd into a tree. + https://github.com/haampie/libtree/archive/refs/tags/v3.1.0.tar.gz + + gcc + + util/admin/libtree/pspec.xml + + + libtree + + glibc + + + /usr/bin/libtree + /usr/share/man/man1/libtree.1 + + + + + 2022-04-14 + 3.1.0 + First build. + fury + uglyside@yandex.ru + + + + + + logrotate + https://fedorahosted.org/releases/l/o/logrotate PisiLinux Community admins@pisilinux.org - BSD - library - network.misc - Google's data interchange format - Google'ın veri alış veriş biçimi - Protocol Buffers are a way of encoding structured data in an efficient yet extensible format. Google uses Protocol Buffers for almost all of its internal RPC protocols and file formats. - Protokol Arabellekleri(protobuf) yapılandırılmış veriyi kodlamak için verimli bir biçimdir. Google kendi içindeki bütün RPC protokolleri ve dosya biçimleri için Protokol Arabelleklerini kullanmaktadır. - https://github.com/protocolbuffers/protobuf/archive/v3.18.1.tar.gz + GPLv2 + app:console + util.admin + Rotates, compresses, removes and emails system log files + Sistem günlük (log) dosyalarını yönetmeyi kolaylaştıran bir araç + logrotate is designed to ease administration of systems that generate large numbers of log files. It allows automatic rotation, compression, removal, and emailing of log files. + Logrotate kayıt dosyalarının rotasyonunu, silinmesini veya e-posta ile gönderilmesi gibi işlevleri ile sistem yönetimini kolaylaştırıan bir uygulamadır. + https://github.com/logrotate/logrotate/releases/download/3.15.1/logrotate-3.15.1.tar.xz - python-wheel - python-devel - python3-devel - python-setuptools - python3-setuptools + popt-devel + acl-devel - network/misc/protobuf/pspec.xml + util/admin/logrotate/pspec.xml - protobuf - Google's data interchange format + logrotate - zlib - libgcc + popt + acl + /etc + /usr/sbin /usr/share/doc - /usr/bin - /usr/share/vim - /usr/share/emacs - /usr/lib/libproto* - - - - protobuf-devel - Development files for protobuf - protobuf için geliştirme dosyaları - protobuf-devel, protobuf için geliştime dosyaları içerir. - - protobuf - - - /usr/lib/pkgconfig - /usr/include/google/protobuf - - - - python-protobuf - Python 2 bindings for Google Protocol Buffers - protobuf için geliştirme dosyaları - protobuf-devel, protobuf için geliştime dosyaları içerir. - - python-setuptools - protobuf-devel - - - /usr/lib/python2* - - - - python3-protobuf - Python 3 bindings for Google Protocol Buffers - protobuf için geliştirme dosyaları - protobuf-devel, protobuf için geliştime dosyaları içerir. - - python3 - python3-setuptools - protobuf-devel - - - /usr/lib/python3* + /usr/share/man - - 2021-10-25 - 3.18.1 - Rebuild py3. + + 2020-02-02 + 3.15.1 + Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-08-15 + 3.11.0 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 3.9.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 3.8.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-26 + 3.8.8 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + panda + https://pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.admin + PisiLinux Alternative Driver Administration + PisiLinux Alternatif Sürücü Yönetimi + PANDA is an alternative driver administration for PisiLinux. + Panda, PisiLinux için alternatif sürücü yönetim modülüdür. + https://github.com/forYali/panda/archive/0.2.tar.gz + + add-32bit_packages.diff + remove_module-nvidia-userspace.patch + remove_module-fglrx-userspace.patch + + util/admin/panda/pspec.xml + + + panda + + /usr/libexec + /usr/lib + /usr/share/doc + + + + + 2018-08-31 + 0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-05 + 0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + pgadmin4 + https://www.pgadmin.org/ + + İdris Kalp + idriskalp@gmail.com + + custom + app:gui + util.admin + Comprehensive design and management interface for PostgreSQL + pgAdmin is the most popular and feature rich Open Source administration and development platform for PostgreSQL, the most advanced Open Source database in the world. + https://pgadmin-archive.postgresql.org/pgadmin4/v4.19/source/pgadmin4-4.19.tar.gz + + python3-devel + qt5-base-devel + postgresql-lib + imagemagick-devel + python3-setuptools + python3-sphinx + python3-extras + python3-fixtures + python3-html5lib + python3-pbr + python3-mimeparse + python3-pyrsistent + python3-blinker + python3-flask + python3-flask-login + python3-flask-migrate + python3-flask-sqlalchemy + python3-flask-wtf + python3-passlib + python3-pytz + python3-simplejson + python3-six + python3-speaklater + python3-sqlparse + python3-wtforms + python3-psutil + python3-Jinja2 + python3-paramiko + python3-psycopg2 + python3-cryptography + python3-sqlalchemy + python3-testtools + python3-webencodings + python3-werkzeug + python3-dateutil + python3-flask-gravatar + python3-flask-mail + python3-flask-principal + python3-flask-paranoid + python3-sshtunnel + python3-flask-security + python3-flask-compress + python3-email-validator + + + pgadmin4-python-de-vendor-venv-paths.patch + python-3.8.patch + + util/admin/pgadmin4/pspec.xml + + + pgadmin4 + Comprehensive design and management interface for PostgreSQL + + python3 + qt5-base + postgresql-lib + imagemagick + python3-blinker + python3-flask + python3-flask-login + python3-flask-migrate + python3-flask-sqlalchemy + python3-flask-wtf + python3-passlib + python3-pytz + python3-simplejson + python3-six + python3-speaklater + python3-sqlparse + python3-wtforms + python3-psutil + python3-Jinja2 + python3-paramiko + python3-psycopg2 + python3-cryptography + python3-sqlalchemy + python3-testtools + python3-webencodings + python3-werkzeug + python3-dateutil + python3-flask-gravatar + python3-flask-mail + python3-flask-principal + python3-flask-paranoid + python3-sshtunnel + python3-flask-security + python3-flask-compress + python3-email-validator + + + /usr/bin + /usr/lib + /usr/share + + + pgadmin4 + pgadmin4-server + pgAdmin4.desktop + config_distro.py + + + + pgadmin4-docs + Documentation files for pgadmin4 + + pgadmin4 + + + /usr/share/doc/pgadmin4 + + + + + 2020-03-24 + 4.19 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + pgModeler + http://www.pgmodeler.com.br/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv3 + app:gui + util.admin + PostgreSQL Database Modeler + PostgreSQL Database Modeler: an open source CASE tool for modeling PostgreSQL databases + https://github.com/pgmodeler/pgmodeler/archive/v0.9.1.tar.gz + + libxml2-devel + mesa-devel + shared-mime-info + doxygen + mesa-devel + qt5-base-devel + qt5-svg-devel + qt5-sql-postgresql + postgresql-server + + util/admin/pgModeler/pspec.xml + + + pgModeler + + libgcc + libxml2 + qt5-svg + qt5-base + postgresql-lib + + + /etc/pgmodeler + /usr/bin + /usr/lib + /usr/share + + + pgModeler.desktop + + + + + 2018-09-09 + 0.9.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-06-30 + 0.9.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-11-26 + 0.9.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-10-13 + 0.8.2_p1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + phpldapadmin + http://phpldapadmin.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.admin + phpLDAPadmin (also known as PLA) is a web-based LDAP client + Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. + phpLDAPadmin (also known as PLA) is a web-based LDAP client. It provides easy, anywhere-accessible, multi-language administration for your LDAP server. + Phpldapadmin aynı zamanda PLA olarak bilinen web tabanlı bir LDAP istemcisidir. LDAP sunucunuz için çoklu dil desteği yönetimi, herhangi bir yerden erişilebilirlik ve kolaylık sağlar. + https://github.com/leenooks/phpLDAPadmin/archive/refs/tags/1.2.6.2.tar.gz + util/admin/phpldapadmin/pspec.xml + + + phpldapadmin + + mod_php + openldap-server + openldap-client + apache + + + /usr/share/phpldapadmin + /usr/share/doc + /usr/share/phpldapadmin/config/config.php + /etc/apache2/conf.d/phpldapadmin.conf + + + + + 2021-11-20 + 1.2.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 1.2.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-30 + 1.2.3 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-10 + 1.2.3 + First release + Aydın Demirel + aydin@demirel.web.tr + + + + + + phpmyadmin + http://www.phpmyadmin.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.admin + Browser based MySQL Admin Tool + Tarayıcı tabanlı MySQL Yönetim Aracı + A populer application for managing MySQL Server; add/update data etc. with PHP5 support. + MySQL Sunucusunu yönetmek için PHP5 desteği ile birlikte gelen popüler bir uygulama. + https://files.phpmyadmin.net/phpMyAdmin/5.1.1/phpMyAdmin-5.1.1-all-languages.tar.xz + util/admin/phpmyadmin/pspec.xml + + + phpmyadmin + + mod_php + mariadb-lib + mariadb-client + mariadb-server + + + /usr/share/doc + /usr/share/phpmyadmin + /usr/share/phpmyadmin/config.inc.php + /etc/apache2/conf.d/phpmyadmin.conf + + + System.Package + + + config.inc.php + phpmyadmin.conf + + + + + 2021-11-06 + 5.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-09 + 4.8.2 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-30 + 4.6.6 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-10 + 4.6.2 + First release + Pisi Linux Admins + admins@pisilinux.org + + + + + + pisido + https://pisilinux.org/ + + Harun Gültekin + hrngultekin@gmail.com + + GPLv3+ + app:gui + util.admin + A pisi packager from GUI + Grafik arayüzde çalışan pisi paketçisi. + You can make pisi packages with a GUI. Also, you can import your existing build files. Warning:Alfa version. Ported Qt5. + Grafik arayüzde pisi paketleri yapabilirsiniz. Ayrıca var olan inşa dosyalarınızı içe aktarıp inşa edebilirsiniz.Çoklu paket yapısı eklenmiştir. Hala geliştirilme aşamasındasır. Alfa sürümdür. Qt5 ile hazırlanmıştır. + https://github.com/PisiLinuxNew/pisido/archive/pisido-v2.3.7.tar.gz + + qt5-linguist + qscintilla2-devel + qtermwidget5-devel + + + no-git-folder+fix-docker.patch + + util/admin/pisido/pspec.xml + + + pisido + A pisi packager with GUI + + libgcc + qt5-base + qscintilla2 + qtermwidget5 + + + /usr/bin + /usr/share/doc + /usr/share + + + + + 2021-11-14 + 2.3.7 + Rebuild + Kamil Atlı + suvari@pisilinux.org + + + 2020-12-20 + 2.3.7 + version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-05-11 + 2.3.6 + version bump + Kamil Atlı + suvari@pisilinux.org + - 2021-10-20 - 3.18.1 + 2019-11-30 + 2.3.5 + Rebuild qscintilla2. + Pisi Linux Community + admin@pisilinux.org + + + 2019-02-03 + 2.3.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-12-11 + 2.3.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-10-17 + 2.3.5 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-05-14 + 2.3.5 + add german lang + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-06 + 2.3.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-06-02 + 2.3.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-16 + 2.3.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 2.3.5 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 2.3.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-10-26 + 2.3.3 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pisilinux-dev-tools + https://pisilinux.org + + Marcin Bojara + marcin@pisilinux.org + + GPLv2 + app:console + util.admin + A collection of useful tools that Pisi Linux developers use to make their developing work a lot easier + Pisilinux-dev-tools is a collection of useful tools that Pisilinux developers use to make their developing work a lot easier. Such tools can include packaging preparation, package analysis, etc. + http://source.pisilinux.org/pisilinux-dev-tools/pisilinux-dev-tools-0.0.2.tar.xz + + fix_detect_mesa.patch + spped_up.patch + ignore_glibc-32bit.patch + + util/admin/pisilinux-dev-tools/pspec.xml + + + pisilinux-dev-tools + + chrpath + binutils + + + /usr/bin + /usr/share/doc + + + + + 2020-02-06 + 0.0.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-30 + 0.0.2 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-30 + 0.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.0.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-28 + 0.0.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + pisiyap + https://github.com/Rmys/pisiyap + + Stefan Gronewold + groni@pisilinux.org + + GPLv3+ + CCPL-Attribution-NonCommercial-NoDerivs-3.0 + app:gui + util.admin + A Simple PiSi source file creator + Basit bir PiSi kaynak dosyası üreticisi + PisiYap is a simple graphical user interface for easily creating PiSi source files. + PisiYap, PiSi kaynak dosyaları üretmek için basit bir kullanıcı arayüzüdür. + pisiyap + https://github.com/Rmys/pisiyap/archive/pisiyap.tar.gz + + qt5-base-devel + python-qt5-devel + python-setuptools + qt5-linguist + + util/admin/pisiyap/pspec.xml + + + pisiyap + + python-qt5 + python-sip + xdg-utils + + + /usr/bin + /usr/lib + /usr/share/applications + /usr/share/pisiyap + /usr/share/icons + /usr/share/pixmaps + /usr/share/doc + + + + kde-servicemenu-pisiyap + PiSi related service menus + Paketlemeyle ilgili servis menüleri + PiSiYap servicemenus provides some useful service menus for lazy packagers. + PiSiYap ile gelen servis menüleri, konsol açmaya erinen paketçiler için çeşitli servis menüleri sunar. + + pisiyap + plasma-workspace + + + /usr/share/kservices5/ServiceMenus + + + + + 2020-01-20 + 0.7b + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-03 + 0.7b + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 0.7b + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-16 + 0.7b + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-06-21 + 0.7b + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-05-13 + 0.7b + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + polo + https://github.com/teejee2008/polo + + PisiLinux Community + admins@pisilinux.org + + LGPLv2 + app + util.admin + Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more. + Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası. + Polo is a modern, light-weight file manager for Linux with support for multiple panes and tabs; support for archives, and much more. + Polo birden bölmeler ve sekmeler için destek Linux için modern, hafif dosya yöneticisi; arşiv desteği ve çok daha fazlası. + https://github.com/teejee2008/polo/archive/v18.8-beta.tar.gz + + atk-devel + vte-devel + gtk3-devel + vala-devel + zlib-devel + cairo-devel + glib2-devel + pango-devel + gnutls-devel + libX11-devel + libgee-devel + libxml2-devel + libpcre2-devel + json-glib-devel + gdk-pixbuf-devel + + util/admin/polo/pspec.xml + + + polo + + atk + vte + gtk3 + zlib + cairo + glib2 + p7zip + pango + gnutls + libX11 + libgee + libxml2 + libpcre2 + json-glib + gdk-pixbuf + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + /var/log/polo + + + + + 2019-01-19 + 18.8 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + sudo + https://www.sudo.ws/ + + PisiLinux Community + admins@pisilinux.org + + Sudo + app:console + util.admin + Allows restricted root access for specified users + Yönetici haklarıyla komut çalıştırma uygulaması + sudo allows certain users/groups to run commands with root user privileges. + sudo, belirli kullanıcıların ya da kullanıcı gruplarının komut ve uygulamaları yönetici kullanıcı (root) haklarıyla çalıştırmasına izin veren bir konsol uygulamasıdır. + https://www.sudo.ws/sudo/dist/sudo-1.9.8p2.tar.gz + + nss-devel + pam-devel + zlib-devel + audit-devel + openssl-devel + cyrus-sasl-devel + openldap-client + + util/admin/sudo/pspec.xml + + + sudo + Allows restricted root access for specified users + + nss + pam + zlib + audit + openssl + cyrus-sasl + openldap-client + + + /etc + /run/sudo + /var/db/sudo + /usr/share/doc + /usr/share/man + /usr/include + /usr/bin + /usr/sbin + /usr/libexec + /usr/share/locale + /usr/lib/tmpfiles.d/sudo.conf + + + System.Package + + + sudoers + sudoers + sudo.pamd + sudo.tmpfiles.conf + + + + + 2021-09-22 + 1.9.8_p2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-17 + 1.9.8_p1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-14 + 1.9.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-08 + 1.9.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-05 + 1.9.5 + Sudo rebuild. + Berk Çakar + berk2238@hotmail.com + + + 2021-01-27 + 1.9.5 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2021-03-13 - 3.15.6 - Version bump. - İdris Kalp - idriskalp@gmail.com + 2020-11-07 + 1.9.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com - 2020-08-30 - 3.13.0 + 2020-05-19 + 1.9.0 Minor version bump. Blue Devil bluedevil@sctzine.com - 2020-01-12 - 3.11.3 - Version bump - Blue Devil - bluedevil@sctzine.com + 2020-02-02 + 1.8.31 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2020-01-24 - 3.11.2 - Fix deps and clean - Blue Devil - bluedevil@sctzine.com + 2018-08-10 + 1.8.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2019-12-25 - 3.11.2 - Version bump - Blue Devil - bluedevil@sctzine.com + 2018-03-14 + 1.8.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2016-03-23 - 3.0.0_beta2 - Version bump, rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2015-02-16 - 3.0.0_pre1 + 2017-01-25 + 1.8.19 Version bump. - Vedat Demir - vedat@pisilinux.org - - - 2015-02-03 - 2.6.1 - Version bump. - Stefan Gronewold(groni) + Stefan Gronewold groni@pisilinux.org + + 2016-09-26 + 1.8.18 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-06-15 + 1.8.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + - 2014-02-05 - 2.5.0 - Version Bump. - Alihan Öztürk - alihan@pisilinux.org + 2016-05-16 + 1.8.16 + Version bump. Add sudoers.orig for live user privileges + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - 2012-09-03 - 2.4.1 + 2016-01-10 + 1.8.13 First release - PisiLinux Community - admins@pisilinux.org + Yusuf Aydemir + yusuf.aydemir@pisilinux.org - socat - http://www.dest-unreach.org/socat/ + systemtap + http://sourceware.org/systemtap/ - Ertuğrul Erata - ertugrulerata@gmail.com + PisiLinux Community + admins@pisilinux.org - GPLv2 + GPLv2+ app:console - network.misc - Multipurpose relay - Multipurpose relay - http://www.dest-unreach.org/socat/download/socat-1.7.3.4.tar.bz2 + util.admin + Instrumentation System + Enstrümantasyon sistemi + systemtap is an instrumentation system for systems running Linux 2.6. Developers can write instrumentation to collect data on the operation of the system. + systemtap Linux 2.6 üzerinde çalışan sistemler için tasarlanmış bir enstrümantasyon altyapısıdır. Geliştiriciler, systemtap kullanarak, çalışmakta olan işletim sistemiyle ilgili veri toplamak için özel araçlar yazabilirler. + https://sourceware.org/systemtap/ftp/releases/systemtap-4.2.tar.gz + bzip2 + nss-devel + boost-devel + python-devel + sqlite-devel + json-c-devel + ncurses-devel + libxml2-devel readline-devel - openssl-devel + elfutils-devel + python-setuptools - network/misc/socat/pspec.xml + util/admin/systemtap/pspec.xml - socat + systemtap + elfutils readline - openssl + sqlite + python + libgcc + bzip2 + nspr + nss + /etc /usr/bin + /usr/lib /usr/share/man - - - - - 2020-02-23 - 1.7.3.4 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2018-08-15 - 1.7.3.2 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-13 - 1.7.3.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libnfnetlink - http://www.netfilter.org - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - Low level library for netfilter related kernel/userspace communication - Ağ filtreleme işlemleri ile ilgili çekirdek/uygulama iletişimi için alt seviye bir kitaplık - Niskopoziomowa biblioteka do netfilter - libnfnetlink provides a generic messaging infrastructure for in-kernel netfilter subsystems. - libnfnetlink, çekirdek içi ağ filtreleme alt sistemleri için jenerik bir mesajlaşma altyapısı sunar. - libnfnetlink to niskopoziomowa biblioteka do związanej z netfiltrem komunikacji między jądrem a przestrzenią użytkownika. Udostępnia ogólną infrastrukturę komunikatów dla podsystemów netfiltra w jądrze oraz ich użytkowników i/lub narzędzi zarządzających w przestrzeni użytkownika. - http://www.netfilter.org/projects/libnfnetlink/files/libnfnetlink-1.0.1.tar.bz2 - network/misc/libnfnetlink/pspec.xml - - - libnfnetlink - - /usr/lib - - - - libnfnetlink-devel - Development files for libnfnetlink - libnfnetlink için geliştirme dosyaları - Pliki nagłówkowe do bibliioteki libnfnetlink - - libnfnetlink - - - /usr/include - /usr/lib/pkgconfig/libnfnetlink.pc - - - - - 2020-02-01 - 1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.0.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 1.0.1 - Rebuild. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.0.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-13 - 1.0.1 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - libnl - https://github.com/thom311/libnl - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.misc - A library for applications dealing with netlink sockets - Netlink soketleri erişimi için bir kitaplığı - libnl is a convenience library to simplify the usage of the Linux kernel's netlink sockets interface for network manipulation. - libnl Linux çekirdeğinin netlink soket arayüzünü ağ ile ilgili çeşitli işlemleri kolaylaştırmak için kullanan bir kitaplığıdır. - https://github.com/thom311/libnl/archive/libnl3_5_0.tar.gz - - glibc - flex - bison - pkgconfig - libtool - check - - network/misc/libnl/pspec.xml - - - libnl - - /usr/lib /usr/share/doc - /usr/share/man - /etc/libnl - /usr/sbin - /usr/bin + /run/systemtap + /run/stap-server + /etc/logrotate.d + /var/log/stap-server + /var/cache/systemtap + /usr/share/locale + /usr/share/systemtap/tapset + /usr/share/systemtap/runtime + /usr/libexec/systemtap + /usr/lib/tmpfiles.d/systemtap.conf + /usr/share/systemtap/examples + + + System.Package + + + tmpfiles.conf + + + + systemtap-testsuite + Testsuite allows testing of the entire SystemTap toolchain without having to rebuild from sources + + systemtap + systemtap-sdt-devel + + + /usr/share/systemtap/testsuite - libnl-devel - Development files for libnl - libnl için geliştirme dosyaları + systemtap-sdt-devel + Static probe support tools + systemtap için statik deney desteği araçları - libnl + systemtap + python-devel + sqlite-devel + readline-devel + ncurses-devel + libxml2-devel + json-c-devel + boost-devel + nss-devel + /usr/bin/dtrace /usr/include - /usr/lib/pkgconfig - - 2020-01-14 - 3.5.0 - Rebuild - Blue DeviL - bluedevil@sctzine.com - - - 2019-12-05 - 3.5.0 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - 2018-07-29 - 3.4.0 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-02-02 + 4.2 + Version bump + Kamil Atlı + suvari@pisilinux.org - 2017-02-17 - 3.2.25 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 3.2.25 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-15 - 3.2.25 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - libc-client - http://www.washington.edu/imap/ - - PisiLinux Community - admins@pisilinux.org - - Apache-2.0 - service - network.misc - C-client mail access routines for IMAP and POP protocols - İmap protokolü için kitaplık - The c-client library is a common API for accessing mailboxes developed at the University of Washington. It is used mainly by php - Washington üniversitesi tarafından, POP ve IMAP protokolleri için geliştirilmiş genel kitaplıklar. Temel olarak php tarafından kullanılır. - http://ftp.ntua.gr/pub/net/mail/imap/imap-2007f.tar.gz - - pam-devel - openssl-devel - e2fsprogs-devel - mit-kerberos - - - imap-2007a-linux.diff - imap-2006c1-glibc-2.2.2.diff - imap-2006c1-krbpath.diff - imap-2001a-disable-mbox.patch - imap-2001a-overflow.patch - imap-2004a-doc.patch - imap-2007e-authmd5.patch - imap-2007e-shared.patch - uw-imap-2004c-amd64-so-fix.patch - 1006_openssl1.1_autoverify.patch - - network/misc/libc-client/pspec.xml - - - libc-client - - mit-kerberos - - - /usr/include - /usr/lib - - - - - 2020-02-22 - 2007f + 2018-08-10 + 3.2 Rebuild Pisi Linux Community admin@pisilinux.org - - 2018-09-09 - 2007f - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-11 - 2007f - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - 2016-06-09 - 2007f - Release Bump + 2018-03-22 + 3.2 + Rebuild Pisi Linux Community admin@pisilinux.org - 2016-02-27 - 2007f + 2017-11-24 + 3.2 First release - Stefan Gronewold(groni) - groni@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - protobuf-c - https://github.com/protobuf-c/protobuf-c - - Stefan Gronewold(groni) - groni@pisilinux.org - - BSD - app:console - library - network.misc - Protocol Buffers implementation in C - Google Protokol Arabelleklerinin C Uygulaması - This is protobuf-c, a C implementation of the Google Protocol Buffers data serialization format.Needed for the libgadu Package - protobuf-c, Google Protokol Arabelleklerinin veri serileştirmesi biçimi için bir C Uygulamasıdır. libgadu paketi için gereklidir. - https://github.com/protobuf-c/protobuf-c/archive/v1.4.0.tar.gz - - protobuf-devel - - network/misc/protobuf-c/pspec.xml - - - protobuf-c - Protocol Buffers implementation in C - - protobuf - - - / - /usr/lib - /usr/share/doc - /usr/bin - - - - protobuf-c-devel - Development files for protobuf-c - protobuf-c için geliştirme dosyaları - protobuf-c-devel, protobuf-c için geliştime dosyaları içerir. - - protobuf-c - - - /usr/lib/pkgconfig - /usr/include/protobuf-c - /usr/include/google/protobuf-c - - - - - 2021-10-20 - 1.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-09 - 1.3.3 - *Patch version bump. - *Moved from contrib - Blue Devil - bluedevil@sctzine.com - - - - - - libcddb - http://libcddb.sourceforge.net/ + timeshift + https://github.com/teejee2008/timeshift PisiLinux Community admins@pisilinux.org + LGPLv3 + app:gui + util.admin + Timeshift protects your system by taking incremental snapshots of the file system at regular intervals. These snapshots can be restored at a later date to undo all changes to the system. + Timeshift protects your system by taking incremental snapshots of the file system at regular intervals. These snapshots can be restored at a later date to undo all changes to the system. + Timeshift, düzenli aralıklarla dosya sisteminin artımlı anlık görüntülerini alarak sisteminizi korur. Bu anlık görüntüler, sistemdeki tüm değişiklikleri geri almak için daha sonraki bir tarihte geri yüklenebilir. + Timeshift, düzenli aralıklarla dosya sisteminin artımlı anlık görüntülerini alarak sisteminizi korur. Bu anlık görüntüler, sistemdeki tüm değişiklikleri geri almak için daha sonraki bir tarihte geri yüklenebilir. + https://github.com/teejee2008/timeshift/archive/refs/tags/v20.11.1.tar.gz + + atk-devel + vte-devel + gtk3-devel + zlib-devel + vala-devel + cairo-devel + glib2-devel + pango-devel + gnutls-devel + libX11-devel + libgee-devel + libpcre2-devel + json-glib-devel + gdk-pixbuf-devel + + util/admin/timeshift/pspec.xml + + + timeshift + + atk + vte + gtk3 + zlib + vala + cairo + glib2 + pango + gnutls + libX11 + libgee + libpcre2 + json-glib + gdk-pixbuf + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/doc + + + + + 2021-05-10 + 20.11.1 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + utempter + http://www.redhat.com/ + + PisiLinux Community + admins@pisilinux.org + + MIT LGPLv2.1 - library - network.misc - Une librairie pour accéder aux serveurs CDDB. - A library for accessing a CDDB server - CDDB sunucularına ulaşmak için bir kitaplık - Libcddb is a library that implements the different protocols (CDDBP, HTTP, SMTP) to access data on a CDDB server (e.g http://freedb.org/). - libcddb, CDDB sunucularındaki (freedb.org) verilere erişmek için yazılmış bir C kitaplığıdır. - mirrors://sourceforge/libcddb/libcddb-1.3.2.tar.bz2 - network/misc/libcddb/pspec.xml + app:console + util.admin + Application that allows non-privileged applications to write utmp (login) info + utemper, utmp(oturum açma) bilgilerini yazmak için ayrıcalıksız uygulamalara izin veren bir uygulamadır. + Utempter is a utility that allows non-privileged applications such as terminal emulators to modify the utmp database without having to setuid root. + Utempter, terminal emulatörleri gibi, yetkisiz uygulamalara setuid e ihtiyaç duymadan utmp veritabanına yazma hakkı verir. + ftp://ftp.altlinux.org/pub/people/ldv/utempter/libutempter-1.1.6.tar.bz2 + + libutempter-pierelro.patch + + util/admin/utempter/pspec.xml - libcddb + utempter - /usr/bin + /usr/libexec /usr/lib /usr/share/doc + /usr/share/man + + System.Package + - libcddb-devel - Development files for libcddb - libcddb için geliştirme dosyaları + utempter-devel + Development files for utempter + utempter için geliştirme dosyaları - libcddb + utempter /usr/include - /usr/lib/pkgconfig - - 2020-01-14 - 1.3.2 - Rebuild. - Idris Kalp - idriskalp@gmail.com + + 2020-02-02 + 1.1.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - - 2018-08-07 - 1.3.2 - Rebuild. + + 2018-08-15 + 1.1.6 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2017-03-02 - 1.3.2 + 2017-01-30 + 1.1.6 Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - 2016-06-09 - 1.3.2 + 2016-06-08 + 1.1.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-05-20 - 1.3.2 + 2014-05-25 + 1.1.6 First release Kamil Atlı suvarice@gmail.com @@ -341145,51 +326409,59 @@ complete albums that you have purchased from Amazon. - xdg-dbus-proxy - https://github.com/flatpak/xdg-dbus-proxy + woeusb + https://github.com/slacka/WoeUSB Kamil Atlı suvari@pisilinux.org - GPLv2.1 - app:console - network.misc - a filtering proxy for D-Bus connections - xdg-dbus-proxy, D-Bus bağlantıları için filtreleme proxy'sidir. - xdg-dbus-proxy is a filtering proxy for D-Bus connections. It was originally part of the flatpak project, but it has been broken out as a standalone module to facilitate using it in other contexts. - xdg-dbus-proxy, D-Bus bağlantıları için filtreleme proxy'sidir. Başlangıçta flatpak projesinin bir parçasıydı, ancak başka bağlamlarda kullanılmasını kolaylaştırmak için bağımsız bir modül olarak parçalandı. - https://github.com/flatpak/xdg-dbus-proxy/archive/0.1.2.tar.gz + GPLv3 + app:gui + util.admin + Create a Windows USB stick installer + woeusb ile bir Ms Windows USB bellek yükleyicisi oluşturun + A Linux program to create a Windows USB stick installer from a real Windows DVD or iso image. The important part is that you should format usb stick in NTFS. + Ms Windows DVD veya iso imaj görüntüsünden, Windows USB bellek yükleyicisi oluşturmak için bir Linux programı. İso yazdırılmadan önce, usb bellek, NTFS olarak biçimlendirilmelidir. + https://github.com/slacka/WoeUSB/archive/v3.3.1.tar.gz - dbus-devel - glib2-devel - docbook-xsl - libxslt-devel - autoconf-archive + m4 + wxGTK-devel - network/misc/xdg-dbus-proxy/pspec.xml + util/admin/woeusb/pspec.xml - xdg-dbus-proxy + woeusb - glib2 + wxGTK + libgcc + parted + ntfs-3g + dosfstools /usr/bin - /usr/share/man - /usr/share/doc + /usr/share + /usr/share/doc/woeusb + + 2020-04-07 + 3.3.1 + ver. bump + Erkan IŞIK + erkanisik@pisilinux.org + - 2021-06-14 - 0.1.2 - Version bump - Mustafa Cinasal - muscnsl@gmail.com + 2019-06-04 + 3.3.0 + ver. bump + Kamil Atlı + suvari@pisilinux.org - 2019-09-12 - 0.1.1 + 2018-10-22 + 3.2.10 First release Kamil Atlı suvari@pisilinux.org @@ -341198,664 +326470,136 @@ complete albums that you have purchased from Amazon. - thunderbird - http://www.mozilla.org/projects/thunderbird/ + xrdp + https://xorg.freedesktop.org/ PisiLinux Community admins@pisilinux.org - MPL-1.1 - NPL-1.1 - GPLv2+ - app:gui - network.mail - The Stand-Alone Mozilla Mail Component - Thunderbird eposta istemcisi - Klient pocztowy Thunderbird - Thunderbird is a redesign of the Mozilla Mail Component. It is written using the XUL user interface language and designed to be cross-platform. - Thunderbird, Mozilla e-posta bileşeninin yeniden tasarlanmış halidir. Platform bağımsız olan Thunderbird, XUL kullanıcı arayüzü diliyle geliştirilmiştir. - Thunderbird to darmowy i rozszerzalny klient poczty z wieloma wspaniałymi funkcjami. - thunderbird - http://ftp.mozilla.org/pub/thunderbird/releases/91.8.1/source/thunderbird-91.8.1.source.tar.xz - - pisilinux/mozconfig - + Apache + library + util.admin + xrdp an open source RDP server + xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü + xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü + xrdp açık kaynaklı bir RDP sunucusu. RDP istemcileri FreeRDP, rdesktop, NeutrinoRDP ve Microsoft Uzak Masaüstü + https://github.com/neutrinolabs/xrdp/releases/download/v0.9.16/xrdp-0.9.16.tar.gz - autoconf213 - wget - yasm - bzip2 - nss-devel - gtk2-devel - gtk3-devel - zlib-devel - libXt-devel - libSM-devel - libpng-devel - sqlite-devel - libffi-devel - libXcomposite-devel - alsa-lib-devel - libjpeg-turbo-devel - dbus-devel - pixman-devel - dbus-glib-devel - hunspell-devel - libevent-devel - gconf-devel - libvpx-devel - pulseaudio-libs-devel - startup-notification-devel - cbindgen - rust - llvm - python3-devel - llvm-clang-devel - python3-setuptools - nodejs - libuv-devel - libnotify-devel - - network/mail/thunderbird/pspec.xml - - - thunderbird - - atk - nss - gtk2 - nspr - zlib - bzip2 - cairo - glib2 - libXt - pango - libX11 - pixman - libgcc - gconf - icu4c - hunspell - libvpx - libpng - sqlite - iconcan - libXext - alsa-lib - libevent - freetype - libXfixes - fontconfig - gdk-pixbuf - libXdamage - libXrender - libXcomposite - libjpeg-turbo - startup-notification - dbus - gtk3 - libffi - libxcb - dbus-glib - - - /usr/share/doc - /usr/bin - /usr/share/pixmaps - /usr/lib/thunderbird - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/metainfo - - - vendor.js - thunderbird.desktop - pisilinux/network_mail_thunderbird_files_pisilinux_sound.wav - - - - thunderbird-lang-be - Беларуская мова пакет для Thunderbird - locale:be - system.locale - lang-be - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-be@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-ca - Arxiu d'idioma català del Thunderbird - locale:ca - system.locale - lang-ca - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ca@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-da - Dansk sprogpakke til Thunderbird - locale:da - system.locale - lang-da - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-da@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-de - Deutsch Sprachdatei für Thunderbird - locale:de - system.locale - lang-de - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-de@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-el - Ελληνική γλώσσα pack για τον Thunderbird - locale:el - system.locale - lang-el - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-el@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-en-US - English language pack for Thunderbird - locale:en_US - system.locale - lang-en-US - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-en-US@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-en-GB - English language pack for Thunderbird - locale:en_GB - system.locale - lang-en-GB - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-en-GB@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-es-AR - Paquete de idioma español para Thunderbird - locale:es_AR - system.locale - lang-es-AR - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-es-AR@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-es-ES - Paquete de idioma español para Thunderbird - locale:es - system.locale - lang-es-ES - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-es-ES@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-fi - Suomen kielen pack for Thunderbird - locale:fi - system.locale - lang-fi - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-fi@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-fr - Paquet de langue française pour Thunderbird - locale:fr - system.locale - lang-fr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-fr@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-hr - Hrvatski jezični paket za Thunderbird - locale:hr - system.locale - lang-hr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-hr@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-hu - Magyar nyelvű pack for Thunderbird - locale:hu - system.locale - lang-hu - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-hu@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-it - Language Pack italiano per Thunderbird - locale:it - system.locale - lang-it - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-it@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-lt - Lietuvių kalbos paketas Thunderbird - locale:lt - system.locale - lang-lt - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-lt@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-nl - Nederlands taalpakket voor Thunderbird - locale:nl - system.locale - lang-nl - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-nl@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-pl - Polski pakiet językowy dla programu Thunderbird - locale:pl - system.locale - lang-pl - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pl@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-pt-BR - Pacote de idioma português para o Thunderbird - locale:pt_BR - system.locale - lang-pt-BR - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pt-BR@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-pt-PT - Pacote de idioma português para o Thunderbird - locale:pt - system.locale - lang-pt-PT - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-pt-PT@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-ro - Pachet de limba română pentru Thunderbird - locale:ro - system.locale - lang-ro - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ro@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-ru - Русский языковый пакет для Thunderbird - locale:ru - system.locale - lang-ru - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-ru@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-sr - Паковање српски језик за Фирефок - locale:sr - system.locale - lang-sr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-sr@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-sv-SE - Svenska språkpaket för Thunderbird - locale:sv_SE - system.locale - lang-sv-SE - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-sv-SE@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-tr - Thunderbird için Türkçe dil dosyası - locale:tr - system.locale - lang-tr - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-tr@thunderbird.mozilla.org.xpi - - - - thunderbird-lang-uk - Український мовний пакет для Thunderbird - locale:uk - system.locale - lang-uk - - thunderbird - - - /usr/lib/thunderbird/extensions/langpack-uk@thunderbird.mozilla.org.xpi - - - - - 2022-05-01 - 91.8.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-31 - 91.2.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-29 - 91.2.1 - Version Bump. - Kamil Atlı - suvari@pisilinux.org - - - 2021-04-24 - 78.10.0 - Version Bump. - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - 2018-09-21 - 52.9.0 - Version Bump. - Stefan Gronewold - groni@pisilinux.org - - - 2018-02-04 - 52.6.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-22 - 52.1.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-15 - 45.1.1 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-29 - 38.5.1 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - razor - https://github.com/toddr/Razor2-Client-Agent - - fury - uglyside@yandex.ru - - PerlArtistic - app - network.mail - Razor is a distributed, collaborative, spam detection and filtering network. - Vipul's Razor is a distributed, collaborative, spam detection and filtering network. Through user contribution, Razor establishes a distributed and constantly updating catalogue of spam in propagation that is consulted by email clients to filter out known spam. Detection is done with statistical and randomized signatures that efficiently spot mutating spam content. User input is validated through reputation assignments based on consensus on report and revoke assertions which in turn is used for computing confidence values associated with individual signatures. - https://cpan.metacpan.org/authors/id/T/TO/TODDR/Razor2-Client-Agent-2.86.tar.gz - - perl - - - razor.patch - - network/mail/razor/pspec.xml - - - razor - - perl - perl-URI - perl-Net-DNS - perl-Digest-SHA1 - perl-Digest-Nilsimsa - - - /usr/bin - /usr/lib/perl5 - /usr/share/man - - - - - 2021-12-20 - 2.86 - Rebuild - fury - uglyside@yandex.ru - - - 2021-09-18 - 2.85 - First build - fury - uglyside@yandex.ru - - - - - - claws-mail - https://claws-mail.org/ - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - network.mail - Claws Mail is an email client (and news reader), based on GTK+. - Claws Mail is a lightweight and highly configurable email client and news reader based on the GTK+ GUI toolkit. - https://claws-mail.org/releases/claws-mail-4.1.0.tar.xz - - flex - bison - curl-devel - gtk3-devel - gpgme-devel - libSM-devel - gnutls-devel + nasm openssl-devel - libical-devel - librsvg-devel - python3-devel - gettext-devel - enchant2-devel - libetpan-devel - compface-devel - libnotify-devel - libsocket-devel - openldap-server - libarchive-devel - gumbo-parser-devel - NetworkManager-devel - python3-pygobject3-devel - startup-notification-devel + pam-devel + libjpeg-turbo-devel + fuse-devel + libopus-devel + lame-devel + pixman-devel + libX11-devel + libXfixes-devel + libXrandr-devel - network/mail/claws-mail/pspec.xml + util/admin/xrdp/pspec.xml - claws-mail + xrdp - db - atk - curl - gtk3 - perl - zlib - cairo - expat - glib2 - gpgme - libSM - pango - gnutls - libgcc - libICE - nettle - libical - librsvg + pam + fuse + lame + pixman + mit-kerberos + libX11 + libopus openssl - python3 - freetype - compface - enchant2 - harfbuzz - libetpan - dbus-glib - libassuan - libnotify - cyrus-sasl - gdk-pixbuf - fontconfig - libarchive - gumbo-parser - libgpg-error - openldap-client - startup-notification + libXfixes + libXrandr + libjpeg-turbo + /usr/bin + /usr/sbin + /etc + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + xrdp-devel + Development files for xrdp + + xrdp + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-05-29 + 0.9.16 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + zeitgeist + https://zeitgeist.freedesktop.org/ + + fury + uglyside@yandex.ru + + LGPL-2.1 + library + util.admin + Activity logging framework. + Zeitgeist is a service which logs the users's activities and events (files opened, websites visites, conversations held with other people, etc.) and makes relevant information available to other applications. + https://gitlab.freedesktop.org/zeitgeist/zeitgeist/-/archive/v1.0.4/zeitgeist-v1.0.4.tar.bz2 + + dbus-devel + gtk3-devel + vala-devel + glib2-devel + sqlite-devel + python3-six + python3-devel + python3-rdflib + python3-isodate + json-glib-devel + python3-pyparsing + telepathy-glib-devel + gobject-introspection-devel + + util/admin/zeitgeist/pspec.xml + + + zeitgeist + + gtk3 + glib2 + sqlite + python3 + json-glib + dbus-python3 + telepathy-glib + + + /etc/xdg /usr/bin /usr/lib /usr/share - /usr/share/locale /usr/share/man - /usr/share/doc/clawsmail - claws-mail-devel + zeitgeist-devel - claws-mail - gtk3-devel + zeitgeist glib2-devel - enchant2-devel /usr/include @@ -341864,94 +326608,15 @@ complete albums that you have purchased from Amazon. - 2022-04-14 - 4.1.0 - Version bump. + 2022-01-18 + 1.0.4 + Version bump fury uglyside@yandex.ru - 2021-10-20 - 4.0.0 - First build. - fury - uglyside@yandex.ru - - - - - - spamassassin - https://spamassassin.apache.org/ - - Pisi Linux Community - admins@pisilinux.org - - Apache-2 - server - network.mail - Spam detector and markup engine. - Apache SpamAssassin is the Open Source anti-spam platform giving system administrators a filter to classify email and block spam (unsolicited bulk email). - mirrors://apache/spamassassin/source/Mail-SpamAssassin-3.4.6.tar.bz2 - - re2c - perl - razor - gnupg - perl-DBI - openssl-devel - perl-Mail-DKIM - libsocket-devel - perl-NetAddr-IP - perl-HTML-Parser - - network/mail/spamassassin/pspec.xml - - - spamassassin - - re2c - perl - razor - gnupg - openssl - perl-DBI - libsocket - perl-libwww - perl-Net-DNS - perl-NET-HTTP - perl-Mail-SPF - perl-Mail-DKIM - perl-NetAddr-IP - perl-HTML-Parser - perl-HTTP-Message - perl-IO-Socket-SSL - perl-IO-Socket-INET6 - - - /etc/conf.d/spamd - /etc/mail/spamassassin - /usr/bin - /usr/lib/perl5 - /usr/lib/tmpfiles.d - /usr/share/spamassassin - /run/spamd - /var/lib/spamd - /usr/share/man/man1 - /usr/share/man/man3 - - - System.Package - System.Service - - - spamd-confd - - - - - 2021-09-23 - 3.4.6 + 2021-10-13 + 1.0.3 First build fury uglyside@yandex.ru @@ -341960,3639 +326625,518 @@ complete albums that you have purchased from Amazon. - sylpheed - http://sylpheed.sraoss.jp/en/ + clamav + http://www.clamav.net PisiLinux Community admins@pisilinux.org - GPLv2 - app:gui - network.mail - A lightweight email client and newsreader - Hafif ve hızlı bir e-posta ve haber okuyucu - Szybki klient poczty bazujący na GTK+ - Sylpheed is a simple and lightweight but featureful and easy-to-use e-mail client. - GTK+ tabanlı, X-Window Sistemi üzerinde çalışan bir e-posta ve haber istemcisi. - Szybki klient poczty z przyjaznym, intuicyjnym interfejsem użytkownika. - sylpheed-128x128 - http://sylpheed.sraoss.jp/sylpheed/v3.7/sylpheed-3.7.0.tar.bz2 + GPLv2+ + service + library + app:console + util.antivirus + Clam Antivirus software + Clam antivirüs programı + Clam AntiVirus is a GPL anti-virus toolkit for UNIX. + Clam antivirus Unix sistemler için açık kaynak kodlu antivirus aracıdır. + https://www.clamav.net/downloads/production/clamav-0.103.0.tar.gz - atk-devel - gtk2-devel - gpgme-devel - pango-devel - cairo-devel + libxml2-devel + libpcre2-devel + curl-devel + zlib-devel + json-c-devel + ncurses-devel openssl-devel - enchant-devel - compface-devel - gtkspell-devel - harfbuzz-devel - openldap-client - fontconfig-devel - gdk-pixbuf-devel - shared-mime-info - libgpg-error-devel - - sendmail_accelerator.patch - add-xdg-support.patch - v2-0001-libsylph-ssl.c-Support-SNI-some-servers-imap.gmai.patch - - network/mail/sylpheed/pspec.xml + util/antivirus/clamav/pspec.xml - sylpheed-docs - Documentation files for sylpheed - sylpheed için belgelendirme dosyaları - data:doc + clamav - sylpheed - - - /usr/share/doc/sylpheed - /usr/share/doc/sylpheed/html - - - - sylpheed - - atk - dbus - gtk2 - pango - cairo - glib2 - gpgme - enchant + libxml2 + bzip2 + libgcc + libtool-ltdl + libpcre2 + curl + zlib + json-c + ncurses openssl - freetype - compface - gtkspell - harfbuzz - dbus-glib - fontconfig - gdk-pixbuf - openldap-client - shared-mime-info /usr/bin - /usr/share/locale + /usr/sbin + /etc + /usr/lib/tmpfiles.d/clamav.conf /usr/lib - /usr/share/pixmaps - /usr/share/applications + /lib/udev/rules.d + /var/lib/clamav + /run/clamav + /var/log + /usr/share/doc + /usr/share/man + + System.Package + System.Service + + + clamav.conf + clamd.conf + freshclam.conf + clamav-milter.conf + - sylpheed-devel - Development files for sylpheed - sylpheed için geliştirme dosyaları - Pliki nagłówkowe sylpheed + clamav-devel + Development headers for Clamav + Clam antivirüs programı için başlık dosyaları + clamav-devel Clam antivirüs programı için başlık dosyalarını içerir. library - sylpheed + clamav - /usr/include/sylpheed + /usr/include + /usr/lib/pkgconfig - - 2021-02-06 - 3.7.0 - Version bump. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2017-01-28 - 3.5.1 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - 2015-02-13 - 3.4.2 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org + 2021-01-31 + 0.103.0 + Version Bump + Ali Cengiz Kurt + alicengizkurt@gmail.com - 2014-01-13 - 3.3.0 + 2019-01-13 + 0.101.1 Version Bump - Stefan Gronewold(groni) - groni@pisilinux.org + Ali Cengiz Kurt + alicengizkurt@gmail.com - 2012-09-03 - 3.2.0 - First release - Osman Erkan - osman.erkan@pisilinux.org + 2018-11-30 + 0.100.2 + First rRelease. + Ali Cengiz Kurt + alicengizkurt@gmail.com - iproute2 - https://wiki.linuxfoundation.org/networking/iproute2 + clamav-gui - PisiLinux Community - admins@pisilinux.org + Ali Cengiz Kurt + alicengizkurt@gmail.com - GPLv2 - app:console - network.filter - Kernel routing and traffic control utilities - Çekirdek içinde yer alan ağ trafiği yönlendirme ve trafik kontrol araçları. - Iproute2 is a collection of utilites for controlling TCP/IP networking and traffic control in Linux. - Iproute2 TCP/IP ağları ve trafik kontrolü için araçlar içeren bir koolleksiyondur. - https://git.kernel.org/pub/scm/network/iproute2/iproute2.git/snapshot/iproute2-5.14.0.tar.gz + GPLv3+ + GPL3 + app:gui + util.antivirus + ClamAV-Gui. + ClamAV-Gui is a graphical interface for ClamAV antivirus software + https://sourceforge.net/projects/pisilinux/files/source/ClamAV-GUI-0.4.2.tgz/download - db-devel - zlib-devel - libbsd-devel - libcap-devel - libmnl-devel - elfutils-devel - linux-atm-devel - iptables-devel + clamav-devel + qt5-base-devel - 0001-make-iproute2-fhs-compliant.patch + qt5.patch - network/filter/iproute2/pspec.xml + util/antivirus/clamav-gui/pspec.xml - iproute2 + clamav-gui + clamav-gui - iptables - db - elfutils - libcap - libmnl - libbsd - linux-atm + clamav + qt5-base + libgcc - /etc - /sbin - /usr/lib - /usr/include - /usr/share/tc - /usr/share/man + /usr/bin + /usr/share/icons + /usr/share/applications /usr/share/doc - /usr/share/bash-completion - /var/lib + /usr/share/man + /usr/share/clamav-gui - - 2021-09-02 - 5.14.0 + + 2021-01-31 + 0.4.2 Version bump. Mustafa Cinasal muscnsl@gmail.com + + 2018-12-01 + 0.4.1 + First Release + Ali Cengiz Kurt(alick01) + alicengizkurt@gmail.com + + + + + + areca + http://www.areca-backup.org/ + + Pisi Linux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.archive + Easy to use and reliable backup solution for Linux. + Easy to use and reliable backup solution for Linux. + Areca Backup is very versatile and as simple as possible. + Areca Backup is very versatile and as simple as possible. + areca + mirrors://sourceforge/areca/areca-stable/areca-7.5/areca-7.5-linux-gtk-64.tar.gz + util/archive/areca/pspec.xml + + + areca + + acl + + + /usr/bin/ + /usr/share/applications + /usr/share/pixmaps + /opt/areca/ + /usr + + + areca + areca.desktop + areca.png + + + - 2021-07-02 - 5.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-01-23 - 5.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 5.4.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-04-23 - 4.19.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2018-08-13 - 4.15.0 + 2021-03-10 + 7.5 Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - - 2018-06-09 - 4.14.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-01-29 - 4.9.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-10-19 - 4.8.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 4.4.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-05 - 4.4.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - iptables - http://www.iptables.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.filter - Firewall, NAT and packet mangling tools - Güvenlik duvarı, ağ adres çevrimi ve paket çevrimi aracı - Contains iptables firewall, NAT and packet mangling tools. - Iptables kural tabanlı gelişmiş güvenlik duvarı uygulamasıdır. - https://www.netfilter.org/projects/iptables/files/iptables-1.8.7.tar.bz2 - - libmnl-devel - libpcap-devel - libnfnetlink-devel - - network/filter/iptables/pspec.xml - - - iptables - - libmnl - libpcap - libnfnetlink - - - /usr/bin - /sbin - /lib - /usr/lib - /usr/share/man - /etc - /var - /usr/share/xtables - - - System.Service - Network.Firewall - - - - iptables-devel - Development files for iptables - iptables için geliştirme dosyaları - - iptables - - - /usr/include - /usr/lib/*.a - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2021-07-19 - 1.8.7 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-01 - 1.8.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-19 - 1.6.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-01-29 - 1.6.1 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 1.6.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-20 - 1.6.0 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libotr - http://www.cypherpunks.ca/otr/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.chat - Portable OTR (Off The Record) messaging library - Taşınabilir OTR (Off The Record/Kayıt dışı) mesajlaşma kitaplığı - OTR messaging allows you to have private conversations over instant messaging. - OTR mesajlaşma, hızlı mesajlaşma araçları ile gizli sohbetler yapmanızı sağlar. - https://otr.cypherpunks.ca/libotr-4.1.1.tar.gz - - libgcrypt-devel - - network/chat/libotr/pspec.xml - - - libotr - - libgcrypt - libgpg-error - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - - - - libotr-devel - Development files for libotr - libotr için geliştirme dosyaları - - libotr - - - /usr/include - /usr/lib/pkgconfig - /usr/share/aclocal - /usr/share/doc/libotr/html - - - - - 2018-09-10 - 4.1.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-18 - 4.1.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.1.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 4.1.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - tox-extension-messages - https://github.com/toxext/tox_extension_messages - - fury - uglyside@yandex.ru - - GPL-3 - library - network.chat - pass - pass - https://github.com/toxext/tox_extension_messages/archive/refs/tags/v0.0.3.tar.gz - - cmake - toxext-devel - toxcore-c-devel - - network/chat/tox-extension-messages/pspec.xml - - - tox-extension-messages - - toxext - - - /usr/lib/libtox_extension_messages.a - - - - tox-extension-messages-devel - - tox-extension-messages - - - /usr/include - /usr/lib/cmake/ToxExtensionMessages - - - - - 2022-04-19 - 0.0.3 - First build. - fury - uglyside@yandex.ru - - - - - - pidgin - http://www.pidgin.im - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - network.chat - Instant messaging application previously known as gaim - Eski sürümleri gaim olarak bilinen, hızlı haberleşme aracı - Multi-protocol instant messaging tool for MSN, Yahoo, IRC, Jabber and Gadu-Gadu protocols. - Birçok protokolü (MSN Messenger, Yahoo, IRC, Jabber, Gadu-Gadu gibi) destekleyen hızlı haberleşme aracıdır. - pidgin - mirrors://sourceforge/pidgin/pidgin-2.13.0.tar.bz2 - - intltool - doxygen - nss-devel - atk-devel - tcl-devel - cairo-devel - tcltk-devel - python-devel - gconf-devel - gtk2-devel - glib2-devel - gnutls-devel - libSM-devel - ncurses-devel - libxslt-devel - gettext-devel - gtkspell-devel - sqlite-devel - libxml2-devel - gstreamer-devel - farstream-devel - libidn-devel - avahi-glib-devel - dbus-glib-devel - gdk-pixbuf-devel - cyrus-sasl-devel - libXScrnSaver-devel - NetworkManager-devel - gst-plugins-base-devel - - - pidgin-py3-fixes.patch - pidgin-nm-1.0.patch - pidgin-python-3.8.patch - - network/chat/pidgin/pspec.xml - - - pidgin - app:gui - - atk - dbus - gtk2 - cairo - glib2 - libSM - pango - libICE - sqlite - freetype - gtkspell - dbus-glib - gstreamer - fontconfig - gdk-pixbuf - libXScrnSaver - libpurple - gstreamer - farstream - - - /usr/share/man - /usr/share/doc - /usr/bin - /usr/share/icons - /usr/share/sounds - /usr/share/dbus-1 - /usr/share/purple - /usr/share/pixmaps - /usr/lib/pidgin - /etc/gconf/schemas - /usr/share/appdata/ - /usr/share/locale - /usr/share/applications - - - - pidgin-devel - Development files of pidgin - pidgin paketine ait geliştirme dosyaları - library - - pidgin - libpurple-devel - gtk2-devel - - - /usr/include/pidgin - /usr/bin/dh_pidgin - /usr/share/man/man3/Pidgin* - /usr/lib/pkgconfig/pidgin.pc - - - - finch - Console based instant messaging application - Konsol tabanlı anında mesajlaşma istemcisi - app:console - - glib2 - libX11 - python - libxml2 - ncurses - gstreamer - libpurple - - - /usr/lib/gnt - /usr/lib/finch - /usr/lib/libgnt* - /usr/bin/finch - /usr/share/man/man1/finch* - - - - finch-devel - Development files of finch - finch paketine ait geliştirme dosyaları - library - - finch - libpurple-devel - - - /usr/include/gnt - /usr/include/finch - /usr/lib/pkgconfig/gnt* - /usr/lib/pkgconfig/finch* - - - - libpurple - The core library of pidgin, supports MSN, XMPP, ICQ, Gadu-Gadu and etc. - Pidgin projesine ait, MSN, XMPP, ICQ, Gadu-Gadu gibi protokolleri destekleyen anında mesajlaşma kitaplığı - library - - nss - tcl - dbus - nspr - perl - glib2 - tcltk - gnutls - libidn - libxml2 - dbus-glib - gstreamer - avahi-glib - avahi-libs - cyrus-sasl - gst-plugins-base - - - /usr/lib/purple-2 - /usr/bin/purple* - /usr/lib/libpurple* - - - - libpurple-devel - Development files of libpurple - libpurple paketine ait geliştirme dosyaları - library - - libpurple - - - /usr/share/aclocal - /usr/include/libpurple - /usr/share/man/man3/Purple* - /usr/lib/pkgconfig/purple.pc - - - - - 2020-04-06 - 2.13.0 - rebuild for new Toolchain - Ayhan Yalcinsoy - ayhanyalcinsoy@pisilinux.org - - - 2019-04-26 - 2.13.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 2.12.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-07 - 2.12.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-15 - 2.10.11 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-20 - 2.10.11 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - hexchat - https://hexchat.github.io/ - - PisiLinux Community - admins@pisilinux.org - - GPL-2 - app:gui - network.chat - GTK+ IRC client. - A popular and easy to use graphical IRC client. - https://dl.hexchat.net/hexchat/hexchat-2.16.0.tar.xz - - cmake - meson - gtk2-devel - glib2-devel - luajit-devel - python3-cffi - python3-devel - openssl-devel - enchant-devel - libXext-devel - libproxy-devel - pciutils-devel - dbus-glib-devel - libnotify-devel - iso-codes-devel - python3-pycparser - libcanberra-devel - desktop-file-utils - appstream-glib-devel - - network/chat/hexchat/pspec.xml - - - hexchat - - perl - gtk2 - glib2 - luajit - openssl - python3 - libproxy - pciutils - libnotify - libcanberra - python3-cffi - - - /usr/bin - /etc - /usr/lib - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/info - /usr/share/doc - - - - hexchat-devel - Development files for hexchat - - hexchat - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-11-22 - 2.16.0 - First build - fury - uglyside@yandex.ru - - - - - - telepathy-glib - http://telepathy.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - GLib bindings for the Telepathy D-Bus protocol - Telepathy D-Bus protokolü için GLib bağlayıcıları - Telepathy-glib is the glib binding for the Telepathy unified framework for all forms of real time conversations, including instant messaging, IRC, voice calls and video calls. - Telepathy-glib, anında mesajlaşma, IRC, sesli ve görüntülü görüşmeler dahil her türlü anlık iletişim türlerini destekleyen Telepathy altyapısının GLib bağlayıcılarıdır. - http://telepathy.freedesktop.org/releases/telepathy-glib/telepathy-glib-0.24.1.tar.gz - - gobject-introspection-devel - dbus-devel - dbus-glib-devel - libxslt-devel - vala-devel - python3-devel - - network/chat/telepathy-glib/pspec.xml - - - telepathy-glib - GLib bindings for the Telepathy D-Bus protocol - library - - dbus - glib2 - python3 - dbus-glib - - - /usr/lib - /usr/share/gir-1.0 - /usr/share/doc - - - - telepathy-glib-docs - Help files and API documents of telepathy-glib library - telepathy-glib kitaplığına ait yardım dosyaları ve API belgeleri - data:doc - - telepathy-glib - - - /usr/share/gtk-doc - - - - telepathy-glib-devel - Development files for telepathy-glib - telepathy-glib için geliştirme dosyaları - - telepathy-glib - dbus-devel - glib2-devel - dbus-glib-devel - - - /usr/include - /usr/lib/pkgconfig - /usr/share/vala/vapi - - - - - 2020-05-11 - 0.24.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-10 - 0.24.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2017-04-18 - 0.24.1 - Rebuild with new toolchain - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.24.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.24.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - loudmouth - http://www.loudmouth-project.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - Lightweight C Jabber library - Hafif bir C jabber kitaplığı - Loudmouth is a lightweight and easy-to-use C library for programming with the XMPP protocol. It's designed to be easy to get started with and yet extensible to let you do anything the XMPP protocol allows. - Loudmouth XMPP protokolüyle programlama imkanı sunan hafif ve kullanımı kolay bir C kitaplığı. Programlamada kolay bir başlangıç sunmak ve XMPP protokolü el verdiği ölçüde esnek bir yapıda kalmak için tasarlanmıştır. - https://mcabber.com/files/loudmouth/loudmouth-1.5.3.tar.bz2 - - intltool - glib2-devel - mit-kerberos - gnutls-devel - - network/chat/loudmouth/pspec.xml - - - loudmouth - - glib2 - gnutls - mit-kerberos - - - /usr/lib/libloudmouth* - /usr/share/doc - /usr/share/gtk-doc - - - - loudmouth-devel - Development files for loudmouth - loudmouth için geliştirme dosyaları - - glib2-devel - loudmouth - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-03-08 - 1.5.3 - Rebuild. - Mustafa Cinasal - muscnsl@pisilinux.org - - - 2018-09-16 - 1.5.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - 2017-05-19 - 1.5.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-gabble - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - library - network.chat - A Jabber/XMPP connection manager for Telepathy - Telepathy için Jabber/XMPP bağlantı yöneticisi - telepathy-gabble is a Jabber/XMPP connection manager, that handles single and multi-user chats and voice calls. - telepathy-gabble, tek ve çoklu kullanıcılı sohbet, sesli aramalar gibi özellikler sunan Jabber/XMPP bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-gabble/telepathy-gabble-0.18.4.tar.gz - - libnice-devel - gobject-introspection-devel - glib2-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - libxslt-devel - gnutls-devel - sqlite-devel - libsoup-devel - libnice-devel - cyrus-sasl-devel - - network/chat/telepathy-gabble/pspec.xml - - - telepathy-gabble - - dbus - glib2 - gnutls - sqlite - libnice - libsoup - libxml2 - dbus-glib - telepathy-glib - - - /usr/bin - /usr/libexec - /usr/lib - /usr/share - /usr/share/doc - /usr/share/man - - - - - 2018-09-10 - 0.18.4 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-18 - 0.18.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.18.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-21 - 0.18.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-sunshine - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - GPLv3+ - library - network.chat - Gadu-Gadu connection manager for telepathy - Telepathy için Gadu Gadu bağlantı yöneticisi - Telepathy-sunshine is a Gadu-Gadu network connection manager. It supports the Nowe Gadu Gadu features such as UTF-8 encoding and new statuses. - Telepathy-sunshine Telepathy iletişim altyapısı için Gadu Gadu bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-sunshine/telepathy-sunshine-0.2.0.tar.gz - - dont-compile-py.patch - - network/chat/telepathy-sunshine/pspec.xml - - - telepathy-sunshine - - /usr/libexec - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/man - /usr/share/doc - - - - - 2018-09-10 - 2.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-22 - 2.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 2.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-qt5 - http://telepathy.freedesktop.org - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.chat - Qt based classes for Telepathy communication framework - Telepathy iletişim çatısı için Qt tabanlı sınıflar - The Telepathy project is about building a unified framework for many different kinds of real-time communications. telepathy-qt contains Qt-based base and proxy classes for use in connection managers and clients. - Telepathy projesi çeşitli gerçek zamanlı iletişim türleri için birleşik bir çatı oluşturmayı amaçlar. telepathy-qt bağlantı yöneticileri ve istemcilerde kullanılmak üzere Qt tabanlı temel ve vekil sınıfları içerir. - http://telepathy.freedesktop.org/releases/telepathy-qt/telepathy-qt-0.9.8.tar.gz - - cmake - qt5-doc - python3-devel - qt5-base-devel - qt5-assistant-devel - gobject-introspection-devel - dbus-glib-devel - libxml2-devel - farstream-devel - telepathy-farstream-devel - doxygen - - network/chat/telepathy-qt5/pspec.xml - - - telepathy-qt5 - - glib2 - libgcc - qt5-base - telepathy-glib - telepathy-farstream - doxygen - - - /usr/lib - /usr/share/doc - - - - telepathy-qt5-devel - Development files for telepathy-qt5 - telepathy-qt5 için geliştirme dosyaları - - telepathy-qt5 - qt5-base-devel - telepathy-glib-devel - telepathy-farstream-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-11 - 0.9.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-10 - 0.9.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-20 - 0.9.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.9.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.9.6 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-butterfly - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.chat - MSN connection manager for Telepathy - Telepathy için MSN bağlantı yöneticisi - telepathy-butterfly is an MSN connection manager that handles presence, personal messages and conversations. - telepathy-butterfly MSN için durum bilgisi, kişisel iletiler ve sohbeti destekleyen bir Telepathy eklentisidir. - http://telepathy.freedesktop.org/releases/telepathy-butterfly/telepathy-butterfly-0.5.15.tar.gz - - dont-compile-py.patch - - network/chat/telepathy-butterfly/pspec.xml - - - telepathy-butterfly - - /usr/libexec - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - - - - - 2018-09-10 - 0.5.18 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-18 - 0.5.18 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.5.15 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.5.15 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-farstream - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - Telepathy client to handle media streaming channels - Ortam yayın kanallarıyla anlaşabilmek için gerekli Telepathy istemcisi - Telepathy-farstream is a Telepathy client that uses Farsight and Gstreamer to handle media streaming channels. It's used as a background process by other Telepathy clients, rather than presenting any user interface of its own. - Telepathy-farstream, Farsight ve Gstreamer kitaplıklarını kullanan bir Telepathy istemcisidir. - http://telepathy.freedesktop.org/releases/telepathy-farstream/telepathy-farstream-0.6.2.tar.gz - - gobject-introspection-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - farstream-devel - gstreamer-devel - - network/chat/telepathy-farstream/pspec.xml - - - telepathy-farstream - library - - dbus - glib2 - dbus-glib - farstream - gstreamer - telepathy-glib - - - /usr/lib - /usr/share/doc - /usr/share/gir-1.0 - - - - telepathy-farstream-docs - Help files and API documents of telepathy-farstream library - telepathy-farstream kitaplığına ait yardım dosyaları ve API belgeleri - data:doc - - telepathy-farstream - - - /usr/share/gtk-doc - - - - telepathy-farstream-devel - Development files for telepathy-farstream - telepathy-farstream için geliştirme dosyaları - - telepathy-farstream - glib2-devel - dbus-glib-devel - farstream-devel - gstreamer-devel - telepathy-glib-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-05-11 - 0.6.2 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-10 - 0.6.2 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-18 - 0.6.2 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.6.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.6.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-logger - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - BSD - library - network.chat - Logging utility Telepathy - Telepathy için kayıt tutma aracı. - telepathy-logger is a logging utility for Telepathy communication framework. - telepathy-logger, Telepathy iletişim altyapısı için kayıt tutma aracıdır. - http://telepathy.freedesktop.org/releases/telepathy-logger/telepathy-logger-0.8.2.tar.bz2 - - glib2-devel - intltool - libxslt-devel - dbus-devel - dbus-glib-devel - gobject-introspection-devel - libxml2-devel - sqlite-devel - telepathy-glib-devel - - network/chat/telepathy-logger/pspec.xml - - - telepathy-logger - - dbus - glib2 - sqlite - libxml2 - dbus-glib - telepathy-glib - - - /usr/lib - /usr/share/gir-1.0/ - /usr/share/telepathy - /usr/share/glib-2.0/ - /usr/libexec - /usr/share/dbus-1 - /usr/share/gtk-doc - /usr/share/doc - - - - telepathy-logger-devel - Development files for telepathy-logger - telepathy-logger için geliştirme dosyaları - - telepathy-logger - telepathy-glib-devel - libxml2-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2018-09-10 - 0.8.2 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-20 - 0.8.2 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.8.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 0.8.2 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telegram-desktop - https://desktop.telegram.org/ - - Safa Ariman - safa@ariman.gen.tr - - GPLv3 - app:gui - network.chat - Official Telegram Desktop client - Official Telegram Desktop client - Telegram is a messaging app with a focus on speed and security, it is super-fast, simple and free. You can use Telegram on all your devices at the same time — your messages sync seamlessly across any number of your phones, tablets or computers. - Telegram is a messaging app with a focus on speed and security, it is super-fast, simple and free. You can use Telegram on all your devices at the same time — your messages sync seamlessly across any number of your phones, tablets or computers. - https://github.com/telegramdesktop/tdesktop/releases/download/v3.7.1/tdesktop-3.7.1-full.tar.gz - - cmake - ninja - gtk3-devel - rnnoise-devel - qt5-base-devel - xz-devel - libdbusmenu-qt-devel - expected-devel - ffmpeg-devel - guidelines-support-library-devel - hunspell-devel - minizip-devel - openal-devel - openssl-devel - range-v3-devel - libopus-devel - xxhash-devel - alsa-lib-devel - pulseaudio-libs-devel - lz4-devel - libtg_owt-devel - xcb-util-keysyms-devel - jemalloc-devel - webkit2gtk-devel - glibmm-devel - qt5-svg-devel - llvm-clang-devel - abseil-cpp-devel - pipewire-devel - - - tdesktop.patch - - network/chat/telegram-desktop/pspec.xml - - - telegram-desktop - - xz - lz4 - gtk3 - zlib - glib2 - libX11 - libgcc - libxcb - ffmpeg - openal - xxhash - openssl - libopus - minizip - hunspell - qt5-base - libtg_owt - gdk-pixbuf - libjpeg-turbo - qt5-imageformats - libdbusmenu-qt - xcb-util-keysyms - open-sans-fonts - glibmm - libXext - libXtst - qt5-svg - rnnoise - libXfixes - libXrandr - libsigc++ - libXdamage - libXcomposite - jemalloc - abseil-cpp - pipewire - - - /usr/bin - /usr/share - - - - - 2022-04-22 - 3.7.1 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2022-03-18 - 3.6.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2022-01-09 - 3.4.3 - Version bump. + 2020-02-19 + 7.5 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2021-12-10 - 3.3.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-05 - 3.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-09 - 3.1.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-01 - 3.1.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-01 - 2.5.8 - Version bump. + 2018-08-10 + 7.5 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2020-06-06 - 2.1.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-10 - 2.0.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-17 - 1.9.21 - First release - Safa Ariman - safa@ariman.gen.tr - - - - - - toxext - https://github.com/toxext/toxext - - fury - uglyside@yandex.ru - - GPL-3 - library - network.chat - An extension library for tox. - An extension library with negotiation allows more experimentation with less risk resulting in more features for tox clients. - https://github.com/toxext/toxext/archive/refs/tags/v0.0.3.tar.gz - - cmake - toxcore-c-devel - - network/chat/toxext/pspec.xml - - - toxext - - toxcore-c - - - /usr/lib/libtoxext.a - - - - toxext-devel - - toxext - toxcore-c-devel - - - /usr/include - /usr/lib/cmake/ToxExt - - - - - 2022-04-19 - 0.0.3 - First build. - fury - uglyside@yandex.ru - - - - - - telepathy-mission-control - http://telepathy.freedesktop.org/wiki/Mission_Control - - PisiLinux Community - admins@pisilinux.org - - LGPLv2 - app:console - library - network.chat - Telepathy component managing connection managers - Bağlantı yöneticilerini düzenlemeya yarayan Telepathy bileşeni - telepathy-mission-control, or Mission Control, is a Telepathy component providing a way for end user applications to abstract some of the details of connection managers, to provide a simple way to manipulate a bunch of connection managers at once, and to remove the need to have in each program the account definitions and credentials. - telepathy-mission-control, diğer adıyla Mission Control, bağlantı yöneticilerini düzenlemenin zorluklarını kullanıcıdan soyutlamaya çalışan, basitçe hesap oluşturmanıza olanak tanıyan bir Telepathy bileşenidir. - http://telepathy.freedesktop.org/releases/telepathy-mission-control/telepathy-mission-control-5.16.4.tar.gz - - libxslt-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - gtk-doc - NetworkManager-devel - docbook-xsl - python-six - libaccounts-glib-devel - - network/chat/telepathy-mission-control/pspec.xml - - - telepathy-mission-control - - dbus - glib2 - dbus-glib - NetworkManager - telepathy-glib - libaccounts-glib - - - /usr/bin - /usr/lib/libmission-control-plugins.so.0* - /usr/lib/telepathy/mission-control-5 - /usr/share/man - /usr/share/doc - /usr/share/dbus-1 - /usr/share/glib-2.0 - - - - telepathy-mission-control-devel - Development files for telepathy-mission-control - telepathy-mission-control için geliştirme dosyaları - - telepathy-mission-control - telepathy-glib-devel - - - /usr/include/mission-control-5.5 - /usr/lib/libmission-control-plugins.so - /usr/lib/pkgconfig/mission-control-plugins.pc - /usr/share/gtk-doc/html/mission-control-plugins - - - - - 2018-09-10 - 5.16.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 5.16.4 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-22 - 5.16.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 5.16.3 + 2017-02-02 + 7.5 Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 5.16.3 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-haze - http://developer.pidgin.im/wiki/Telepathy - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.chat - A multi-protocol Libpurple connection manager for Telepathy - Çok protokol destekli, libpurple üzerine kurulu bir Telepathy bağlantı yöneticisi - telepathy-haze is a connection manager built around libpurple, the core of Pidgin, as a Summer of Code project under the Pidgin umbrella. Ultimately, any protocol supported by libpurple will be supported by telepathy-haze; for now, XMPP, MSN and AIM are known to work acceptably, and other will probably work too. - Telepathy-haze Pidgin'in de kullandığı libpurple üzerine kurulu bir bağlantı yöneticisidir. Libpurple tarafından desteklenen tüm protokol teoride telepathy-haze ile de desteklenmektedir. - http://telepathy.freedesktop.org/releases/telepathy-haze/telepathy-haze-0.8.0.tar.gz - - glib2-devel - dbus-devel - dbus-glib-devel - libpurple-devel - telepathy-glib-devel - libxslt-devel - python-devel - - - telepathy-haze-0.8.0-pidgin-2.10.12-compat.patch - - network/chat/telepathy-haze/pspec.xml - - - telepathy-haze - - dbus - glib2 - dbus-glib - libpurple - telepathy-glib - - - /usr/share - /usr/share/doc - /usr/share/man - /usr/lib - - - - - 2018-09-09 - 0.8.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2017-07-07 - 0.8.0 - Release Bump. Kamil Atlı suvari@pisilinux.org - 2016-06-09 - 0.8.0 + 2016-06-08 + 7.5 Release Bump Pisi Linux Community admin@pisilinux.org - 2015-11-21 - 0.8.0 + 2015-11-23 + 7.5 First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-salut - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - Link-local XMPP Telepathy connection manager - XMPP ile yerel-bağlantı iletişimini sağlayan Telepathy bağlantı yöneticisi. - telepathy-salut is Telepathy connection manager for link-local XMPP. Normally, XMPP does no support direct client-to-client interactions, since it requires authentication with a server. This package makes it is possible to establish an XMPP-like communications on a local network using zero-configuration networking. - telepathy-salut, yerel bir ağ üzerinde XMPP benzeri iletişimi mümkün kılan bir Telepathy bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-salut/telepathy-salut-0.8.1.tar.gz - - libxslt-devel - glib2-devel - gobject-introspection-devel - dbus-devel - dbus-glib-devel - telepathy-glib-devel - avahi-devel - avahi-glib-devel - libsoup-devel - openssl-devel - python-devel - sqlite-devel - cyrus-sasl-devel - - - fix_bork_in_tr_locale.patch - - network/chat/telepathy-salut/pspec.xml - - - telepathy-salut - - dbus - glib2 - sqlite - libsoup - libxml2 - openssl - dbus-glib - avahi-glib - avahi-libs - telepathy-glib - - - /usr/bin - /usr/lib - /usr/share/dbus-1 - /usr/share/telepathy - /usr/share/doc - /usr/share/man - - - - - 2018-09-10 - 0.8.1 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-22 - 0.8.1 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.8.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.8.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - telepathy-logger-qt - https://projects.kde.org/projects/extragear/network/telepathy/telepathy-logger-qt - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app - network.chat - Qt bindings for telepathy logger - Qt Wrapper around TpLogger client library. - https://download.kde.org/stable/telepathy-logger-qt/17.08/src/telepathy-logger-qt-17.08.0.tar.xz - - extra-cmake-modules - qt5-base-devel - qt5-assistant-devel - qt5-doc - doxygen - telepathy-qt5-devel - glib2-devel - dbus-devel - dbus-glib-devel - libxml2-devel - telepathy-logger-devel - - network/chat/telepathy-logger-qt/pspec.xml - - - telepathy-logger-qt - Qt bindings for telepathy logger - - glib2 - libgcc - qt5-base - telepathy-qt5 - telepathy-glib - telepathy-logger - - - /usr/lib/libtelepathy-logger-qt.* - /usr/share/doc - - - - telepathy-logger-qt-devel - Development files for telepathy-logger-qt - - telepathy-logger-qt - telepathy-glib-devel - qt5-base-devel - - - /usr/include - /usr/lib/cmake/TelepathyLoggerQt - - - - - 2018-09-10 - 17.08.0 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-10-09 - 17.08.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-22 - 15.04.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 15.04.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-30 - 15.04.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - qtox - https://qtox.github.io/ - - fury - uglyside@yandex.ru - - GPL-3 - app:gui - network.chat - Instant messaging, video conferencing, and more. - qTox is a chat, voice, video, and file transfer instant messaging client using the encrypted peer-to-peer Tox protocol. - https://github.com/qTox/qTox/archive/a3004159833e890c34189944595b71aec1563264.zip - - cmake - ccache - mesa-devel - ffmpeg-devel - openal-devel - qt5-linguist - toxext-devel - libexif-devel - qt5-svg-devel - qt5-base-devel - qrencode-devel - libglvnd-devel - toxcore-c-devel - sqlcipher-devel - libXScrnSaver-devel - tox-extension-messages-devel - - network/chat/qtox/pspec.xml - - - qtox - - libgcc - libX11 - ffmpeg - openal - toxext - libexif - qt5-svg - qt5-base - qrencode - libsodium - toxcore-c - sqlcipher - libXScrnSaver - tox-extension-messages - - - /usr/bin - /usr/share/applications - /usr/share/icons/hicolor - /usr/share/metainfo - - - - - 2022-04-27 - 1.17.6 - First build. - fury - uglyside@yandex.ru - - - - - - gloox - https://camaya.net/gloox - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - library - network.chat - Full-featured Jabber/XMPP client library - Çok işlevli Jabber/XMMP kitaplığı - gloox is a rock-solid, full-featured Jabber/XMPP client library, written in C++. It makes writing spec-compliant clients easy and allows for hassle-free integration of Jabber/XMPP functionality into existing applications. - gloox, Jabber/XMMP istemcileri için C++ ile yazılmış çok işlevli bir kitaplıktır. Mevcut istemcilere kolayca Jabber/XMMP desteği eklenmesini sağlayarak standartlara uygun istemciler yazılmasına olanak verir. - https://camaya.net/download/gloox-1.0.23.tar.bz2 - - gnutls-devel - zlib-devel - - network/chat/gloox/pspec.xml - - - gloox - Full-featured Jabber/XMPP client library - - zlib - libgcc - libidn - gnutls - - - /usr/bin - /usr/lib - /usr/share/doc - - - - gloox-devel - Development files for gloox - gloox için geliştirme dosyaları - gloox-devel, gloox için geliştirme dosyalarını içerir. - - gloox - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-02-27 - 1.0.23 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2019-10-30 - 1.0.20 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - telepathy-idle - http://telepathy.freedesktop.org/wiki - - PisiLinux Community - admins@pisilinux.org - - LGPLv2+ - library - network.chat - IRC connection manager for Telepathy - Telepathy için IRC (Internet Relay Chat) bağlantı yöneticisi - telepathy-idle is a full-featured IRC connection manager for the Telepathy framework. - telepathy-idle Telepathy iletişim altyapısı için IRC (Internet Relay Chat) bağlantı yöneticisidir. - http://telepathy.freedesktop.org/releases/telepathy-idle/telepathy-idle-0.2.0.tar.gz - - telepathy-glib-devel - libxslt-devel - gobject-introspection-devel - glib2-devel - dbus-devel - dbus-glib-devel - - network/chat/telepathy-idle/pspec.xml - - - telepathy-idle - - glib2 - dbus-glib - telepathy-glib - - - /usr/lib - /usr/share/dbus-1 - /usr/share/doc - /usr/share/man - /usr/share/telepathy - - - - - 2018-09-10 - 0.2.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-20 - 0.2.0 - Rebuild with new toolchain - Mustafa Cinasal - muscnsl@gmail.com - - - 2016-06-09 - 0.2.0 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-11-22 - 0.2.0 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - toxcore-c - https://tox.chat/ - - fury - uglyside@yandex.ru - - GPL-3 - app - network.chat - This is an experimental cryptographic network library. - Tox is a peer to peer (serverless) instant messenger aimed at making security and privacy easy to obtain for regular users. It uses NaCl for its encryption and authentication. - https://github.com/TokTok/c-toxcore/archive/refs/tags/v0.2.17.tar.gz - - cmake - libvpx-devel - libopus-devel - libsocket-devel - libconfig-devel - libsodium-devel - msgpack-c-devel - - network/chat/toxcore-c/pspec.xml - - - toxcore-c - - libvpx - libopus - libconfig - libsodium - msgpack-c - - - /etc/tox-bootstrapd.conf - /usr/bin - /usr/lib - /usr/share/bash-completion/completions - - - System.Package - System.Service - - - - toxcore-c-devel - - toxcore-c - libvpx-devel - libopus-devel - libsocket-devel - libsodium-devel - msgpack-c-devel - - - /usr/lib/pkgconfig - /usr/include/tox - - - - - 2022-04-25 - 0.2.17 - First build. - fury - uglyside@yandex.ru - - - - - - net-snmp - http://net-snmp.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - BSD - library - app:console - network.monitor - A collection of SNMP protocol tools and libraries - SNMP protokol araçları ve kitaplıkları - Kolekcja narzędzi do obsługi protokołu SNMP - Simple Network Management Protocol (SNMP) is a widely used protocol for monitoring the health and welfare of network equipment (eg. routers), computer equipment and even devices like UPSs. Net-SNMP is a suite of applications used to implement SNMP v1, SNMP v2c and SNMP v3 using both IPv4 and IPv6. - net-snmp, çeşitli ağ ekipmanlarının sağlığını ve işleyişini izlemek için SNMP protokolünü kullanan araçları içerir. - SNMP (Simple Network Management Protocol) jest protokołem używanym do zarządzania sieciami. Pakiet zawiera narzędzia: rozbudowywalnego agenta, bibliotekę SNMP, narzędzia do odpytywania oraz ustawiania informacji poprzez agentów SNMP, narzędzia do generowania i obsługi pułapek SNMP, wersję komendy netstat używającą SNMP, przeglądarkę mib w Tk/Perl, demona, dokumentację itp. - https://sourceforge.net/projects/net-snmp/files/net-snmp/5.9/net-snmp-5.9.tar.gz/download - - libnl-devel - python-setuptools - openssl-devel - python-devel - perl - pciutils-devel - tcp-wrappers-devel - - network/monitor/net-snmp/pspec.xml - - - net-snmp - - libnl - openssl - python - perl - pciutils - tcp-wrappers - - - /etc/snmp - /usr/bin - /usr/sbin/snmpd - /etc/conf.d/snmpd - /usr/lib - /usr/share/snmp - /var/lib - /usr/share/man - /usr/share/doc - - - System.Service - - - confd-snmpd.conf - net-snmpd.conf - - - - net-snmptrap - - net-snmp - tcp-wrappers - - - /etc/conf.d/snmptrapd - /etc/snmp/snmptrapd.conf - /usr/sbin/snmptrapd - - - System.Service - - - confd-snmptrapd.conf - net-snmptrapd.conf - - - - net-snmp-devel - Development files for net-snmp - net-snmp için geliştirme dosyaları - Pliki naglowkowe do net-snmp - - net-snmp - - - /usr/include - /usr/lib/pkgconfig - /usr/share/man/man3 - - - - - 2021-11-29 - 5.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-27 - 5.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-27 - 5.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-07-31 - 5.7.3 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2017-03-02 - 5.7.3 - Release Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-06-09 - 5.7.3 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-08-02 - 5.7.3 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - vnstat - https://humdi.net/vnstat/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - network.monitor - vnStat is a console-based network traffic monitor for Linux and BSD - vnStat is a console-based network traffic monitor for Linux and BSD that keeps a log of network traffic for the selected interface(s). - https://humdi.net/vnstat/vnstat-2.7.tar.gz - - gd-devel - sqlite-devel - - network/monitor/vnstat/pspec.xml - - - vnstat - vnStat is a console-based network traffic monitor for Linux and BSD - - gd - sqlite - - - / - - - System.Service - - - - - 2021-05-21 - 2.7 - First Release - Ali Cengiz Kurt - alicengizkurt@gmail.com - - - - - - tcpdump - http://www.tcpdump.org/ - - Blue DeviL - bluedevil@sctzine.com - - BSD - app:console - network.monitor - A Tool for network monitoring and data acquisition - Ağı izlemek için kullanılan bir araç - Tcpdump is a tool to print out (or save to file) the contents of packets on a network interface. It also allows limiting the number of packets collected using expressions. - tcpdump bir ağ aygıtı üzerindeki paketlerin içeriğini ekrana basmaya ya da dosyaya yazmaya yarayan bir araçtır. İncelenecek paketleri çeşitli ifadelerle sınırlama desteği de mevcuttur. - https://www.tcpdump.org/release/tcpdump-4.99.1.tar.gz - - libpcap-devel - openssl-devel - - network/monitor/tcpdump/pspec.xml - - - tcpdump - - libpcap - - - /usr/bin - /usr/share/man - /usr/share/doc - - - - - 2021-08-09 - 4.99.1 - Version bump. - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-11-29 - 4.9.3 - Version bump. - Blue DeviL - bluedevil@sctzine.com - - - 2016-02-22 - 4.7.4 - Version bump, built with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2010-10-13 - 4.1.1 - Mass rebuild for Pardus 2011 Beta - Gökcen Eraslan - gokcen@pardus.org.tr - - - 2010-06-07 - 4.1.1 - New upstream release - Enable smi - Don't blow up if a zero-length link-layer address is passed to linkaddr_string() - Fix printing of MAC addresses for VLAN frames with a length field - Add some additional bounds checks and use the EXTRACT_ macros more - Add a -b flag to print the AS number in BGP packets in ASDOT notation rather than ASPLAIN notation - Add ICMPv6 RFC 5006 support - Decode the access flags in NFS access requests - Handle the new DLT_ for memory-mapped USB captures on Linux - Make the default snapshot (-s) the maximum - Print name of device (when -L is used) - Print new TCP flags - Add support for RPL DIO - Add support for TCP User Timeout (UTO) - Add support for non-standard Ethertypes used by 3com PPPoE gear - Add support for 802.11n and 802.11s - Add support for Transparent Ethernet Bridge ethertype in GRE - Add 4 byte AS support for BGP printer - Add support for the MDT SAFI 66 BG printer - Add basic IPv6 support to print-olsr - Add USB printer - Add printer for ForCES - Handle frames with an FCS - Handle 802.11n Control Wrapper, Block Acq Req and Block Ack frames - Fix TCP sequence number printing - Report 802.2 packets as 802.2 instead of 802.3 - Lots of code clean up - Onur Küçük - onur@pardus.org.tr - - - 2009-05-04 - 4.0.0 - Fix linking with pcap - Onur Küçük - onur@pardus.org.tr - - - 2009-05-04 - 4.0.0 - Version bump - Onur Küçük - onur@pardus.org.tr - - - 2007-10-07 - 3.9.8 - Version bump. - Furkan Duman - coderlord@gmail.com - - - 2007-08-10 - 3.9.7 - Stable update - İsmail Dönmez - ismail@pardus.org.tr - - - 2007-07-17 - 3.9.6 - Fix CVE-2007-3798 - İsmail Dönmez - ismail@pardus.org.tr - - - 2007-06-17 - 3.9.6 - Version bump - Furkan Duman - coderlord@gmail.com - - - 2007-02-03 - 3.9.5 - Fix 802.11 denial of service - İsmail Dönmez - ismail@pardus.org.tr - - - 2007-01-16 - 3.9.5 - Stable update - İsmail Dönmez - ismail@pardus.org.tr - - - 2005-11-19 - 3.9.4 - First release - Furkan Duman - coderlord@gmail.com - - - - - - libnids - http://libnids.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.monitor - Network intrusion detection library - Ağ saldırıları yakalama kitaplığı - Libnids is an implementation of an E-component of Network Intrusion Detection System. It emulates the IP stack of Linux 2.0.x. Libnids offers IP defragmentation, TCP stream assembly and TCP port scan detection. - Libnids bir ağ saldırısı yakalama kitaplığıdır. Linux 2 serisi için IP yapısını taklit ederek IP bilgisi birleştirme, TCP yayını inceleme ve port taraması gibi işlemler için altyapı sunar. - https://sourceforge.net/projects/libnids/files/libnids/1.24/libnids-1.24.tar.gz - - glib2-devel - libnet-devel - libpcap-devel - - - libnids-1.24-inline.patch - - network/monitor/libnids/pspec.xml - - - libnids - Network intrusion detection library - - libnet - libpcap - - - /usr/lib - /usr/share/doc/libnids - - - - libnids-devel - Development files for libnids - libnids için geliştirme dosyaları - libnids-devel, libnids için geliştirme dosyalarını içerir. - - libnids - - - /usr/share/man - /usr/include - - - - - 2020-06-08 - 1.24 - Moved from contrib. - Blue DeviL - bluedevil@sctzine.com - - - - - - flashplugin - http://labs.adobe.com/technologies/flashplayer10 - - PisiLinux Community - admins@pisilinux.org - - Macromedia - library - network.plugin - Adobe Flash Player - Adobe Flash Oynatıcı - Adobe (Macromedia) Flash Player is an application to present interactive (and possibly multimedia-containing) content created using Adobe Flash. - Adobe (Macromedia) Flash Oynatıcısı, Adobe Flash ile oluşturulmuş içerikleri görüntülemeye olanak sağlayan bir uygulama. - flash-player-properties - https://fpdownload.adobe.com/get/flashplayer/pdc/32.0.0.465/flash_player_npapi_linux.x86_64.tar.gz - - nss - gtk2 - libXt - libX11 - libXext - libXpm - mesa-devel - - network/plugin/flashplugin/pspec.xml - - - flashplugin - - noDelta - - - mesa - libgcc - atk - nss - gtk2 - nspr - cairo - glib2 - libXt - pango - libX11 - libXext - freetype - fontconfig - gdk-pixbuf - libXcursor - libXrender - - - /usr/share - /usr/lib - /usr/bin - - - - - 2020-12-25 - 32.0.0.465 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-11-12 - 32.0.0.453 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-03-24 - 32.0.0.344 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-12-10 - 32.0.0.303 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2019-11-30 - 32.0.0.293 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-29 - 32.0.0.270 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-03 - 32.0.0.238 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-26 - 32.0.0.223 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 32.0.0.207 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-08 - 32.0.0.171 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-23 - 32.0.0.156 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-30 - 32.0.0.101 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 30.0.0.154 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-16 - 29.0.0.140 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-09 - 28.0.0.161 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-28 - 28.0.0.126 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-08 - 27.0.0.187 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 27.0.0.183 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-27 - 26.0.0.151 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-22 - 25.0.0.148 - Version Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-12-20 - 24.0.0.186 - Version Bump - Stefan Gronewold - groni@pisilinux.org - - - 2016-06-14 - 11.2.202.621 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 11.2.202.569 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-15 - 11.2.202.569 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - pepperflash - http://www.google.com - - Osman Erkan - osman.erkan@pisilinux.org - - custom:chrome - library - network.plugin - Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi. - Google Chrome's Pepper Flash plugin for Chromium. - Google Chrome's Pepper Flash plugin for Chromium (stable version) - Chromium tarayıcısı için Google chrom eklentisi olan Pepper Flash Eklentisi (Kararlı sürüm) - https://fpdownload.adobe.com/pub/flashplayer/pdc/32.0.0.465/flash_player_ppapi_linux.x86_64.tar.gz - network/plugin/pepperflash/pspec.xml - - - pepperflash - - libgcc - - - /etc/chromium-browser - /usr/lib/chromium-browser/ - /usr/lib/chromium-browser/PepperFlash - - - pepperflash-plugin.conf - - - - - 2020-12-25 - 32.0.0.465 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-24 - 32.0.0.344 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-30 - 32.0.0.293 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-29 - 32.0.0.270 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-03 - 32.0.0.238 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-07-26 - 32.0.0.223 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-20 - 32.0.0.207 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-05-08 - 32.0.0.171 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-03-23 - 32.0.0.156 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-30 - 32.0.0.101 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 30.0.0.154 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-18 - 29.0.0.140 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-09 - 28.0.0.161 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-28 - 28.0.0.126 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-08 - 27.0.0.187 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-12 - 27.0.0.183 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-27 - 26.0.0.151 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-19 - 23.0.0.207 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-12-13 - 23.0.0.207 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-30 - 22.0.0.192 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-30 - 22.0.0.192 - Version Bump - Ergün Salman - poyraz76@pisilinux.org - - - 2016-06-09 - 20.0.0.306 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-02-15 - 20.0.0.306 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - freshplayerplugin - https://github.com/i-rinat/freshplayerplugin - - Osman Erkan - osman.erkan@pisilinux.org - - MIT - app:gui - network.plugin - ppapi2npapi compatibility layer - PPAPI-host NPAPI-plugin adapter. - https://github.com/i-rinat/freshplayerplugin/archive/v0.3.11.tar.gz - - cmake - cairo-devel - glib2-devel - icu4c-devel - pango-devel - libX11-devel - openssl-devel - freetype-devel - libXcursor-devel - libXrender-devel - ragel - gtk2-devel - gtk3-devel - libva-devel - libv4l-devel - ffmpeg-devel - openssl-devel - libvdpau-devel - alsa-lib-devel - libevent-devel - libXrandr-devel - libXcursor-devel - pulseaudio-libs-devel - - network/plugin/freshplayerplugin/pspec.xml - - - freshplayerplugin - - mesa - cairo - glib2 - icu4c - pango - libX11 - libgcc - openssl - freetype - libXcursor - libXrender - libva - ffmpeg - libv4l - alsa-lib - libevent - libvdpau - libXrandr - pepperflash - pulseaudio-libs - - - /usr/lib - /usr/share/doc - /usr/share/freshplayerplugin/ - - - - - 2020-03-24 - 0.3.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-08-11 - 0.3.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-12-30 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-19 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-28 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-01-31 - 0.3.9 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-28 - 0.3.9 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-08-27 - 0.3.7 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-04-22 - 0.3.6 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2016-12-20 - 0.3.6 - Version bump. Stefan Gronewold(groni) groni@pisilinux.org - - 2016-06-14 - 0.3.5 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 0.3.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - + + + + + brotli + https://github.com/google/brotli + + Blue Devil + bluedevil@sctzine.com + + MIT + library + app:console + util.archive + Brotli compression format. + Brotli sıkıştırma biçemi. + Brotli is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression. + Brotli, hali hazırda bulanan sıkıştırma biçemleri arasında LZ77 algoritmasının bir türünü, Huffman kodlamasını ve ikinci sıralamalı içerik modellemesini, en iyi sıkıştırma oranıyla kullanan google tarafından geliştirilen bir sıkıştırma aracıdır. + https://github.com/google/brotli/archive/v1.0.7.tar.gz + + python3-setuptools + python3-devel + cmake + + util/archive/brotli/pspec.xml + + + brotli + Brotli compression format. + util.archive + + /usr/bin + /usr/lib + /usr/share/doc/brotli + + + + brotli-devel + Development files for brotli. + brotli için geliştirme dosyaları + brotli-devel, brotli için geliştirme dosyalarını içerir. + util.archive + + brotli + + + /usr/include + /usr/lib/pkgconfig + + + + python3-brotli + Python bindings for brotli compression format. + programming.language.python3 + + python3 + + + /usr/lib/python3* + /usr/share/doc/python3-brotli + + + - 2016-02-15 - 0.3.4 - First release - Osman Erkan - osman.erkan@pisilinux.org + 2020-05-16 + 1.0.7 + First release. + Blue Devil + bluedevil@sctzine.com - farstream - http://www.freedesktop.org/wiki/Software/Farstream + cabextract + https://www.cabextract.org.uk/ - Alihan Öztürk - alihan@pisilinux.org + PisiLinux Community + admins@pisilinux.org - LGPLv2 - library - network.voip - Farstream (formerly Farsight) - Audio/Video Communications Framework - Ses/Video İletişim Çatısı - Farstream (formerly Farsight) - Audio/Video Communications Framework - Farsight projesi, bilinen tüm ses/video konferans protokolleri ile uyum sağlayan bir çatı oluşturulması amacıyla yapılan bir çalışmadır. Bir taraftan, farklı akış protokolleri için eklentiler yazmayı mümkün kılan genel bir API sunarken, diğer taraftan da bu eklentileri kullanacak istemciler için bir API sunmaktadır. - https://freedesktop.org/software/farstream/releases/farstream/farstream-0.2.9.tar.gz - - libnice-devel - valgrind - gobject-introspection-devel - gstreamer-devel - python3-devel - gst-plugins-base-devel - - network/voip/farstream/pspec.xml + GPLv2 + app:console + util.archive + A program to extract from Microsoft Cabinet files + Microsoft Cabinet dosyalarını açan bir program + cabextract is a program to extract files from Microsoft Cabinet files. + cabextract Microsoft Cabinet (.cab) dosyalarından dosya çıkarmaya yarayan bir programdır. + http://www.cabextract.org.uk/cabextract-1.9.1.tar.gz + util/archive/cabextract/pspec.xml - farstream - - glib2 - libnice - python3 - gstreamer - gst-plugins-base - + cabextract - /usr/lib - /usr/lib/farstream-0.2 - /usr/lib/gstreamer-0.1 - /usr/lib/libfarstream-0.2* - /usr/share/doc - /usr/share/farstream - /usr/share/gir-1.0 - /usr/share - - - - farstream-devel - Development files for farstream - farstream için geliştirme dosyaları - - farstream - gstreamer-devel - gst-plugins-base-devel - - - /usr/include - /usr/lib/pkgconfig + /usr/bin + /usr/share/man - 2020-05-11 - 0.2.9 + 2020-02-19 + 1.9.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2018-09-10 - 0.2.8 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2018-08-10 + 1.6 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com - 2017-05-15 - 0.2.8 - Version Bump + 2017-02-02 + 1.6 + Release Bump Kamil Atlı suvari@pisilinux.org - 2016-06-09 - 0.2.7 + 2016-06-08 + 1.6 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-03-30 - 0.2.7 + 2015-11-23 + 1.6 First release - Alihan Öztürk - alihan@pisilinux.org + Stefan Gronewold(groni) + groni@pisilinux.org - zeromq - https://github.com/zeromq/libzmq/ + gcap + https://wiki.gnome.org/msitools - Blue Devil - bluedevil@sctzine.com + Ertuğrul Erata + ertugrulerata@gmail.com - LGPL + LGPL2.1 app:console - library - network.library - ZeroMQ core engine in C++, implements ZMTP/3.1 - ZeroMQ, ZMTP/3.1 uygulayan ve çekirdegi C++ olan bir kitaplıktır. - The ZeroMQ lightweight messaging kernel is a library which extends the standard socket interfaces with features traditionally provided by specialised messaging middleware products. ZeroMQ sockets provide an abstraction of asynchronous message queues, multiple messaging patterns, message filtering (subscriptions), seamless access to multiple transport protocols and more. - ZeroMQ soketleri asenkron mesaj kuyruklarının soyutlanması, çoklu mesaj oruntuleri, mesaj suzme coklu ulaşım protokollerine kesintisiz erişim saglayabilen bir kitaplıktır. - https://github.com/zeromq/libzmq/archive/v4.3.4.tar.gz - https://github.com/zeromq/cppzmq/archive/v4.8.0.tar.gz + util.archive + Library and tool for working with Microsoft Cabinet (CAB) files + Library and tool for working with Microsoft Cabinet (CAB) files + http://ftp.gnome.org/pub/GNOME/sources/gcab/1.4/gcab-1.4.tar.xz - libsodium-devel - openpgm-devel + python-six + glib2-devel + vala-devel + zlib-devel + intltool + gtk-doc + gobject-introspection-devel + meson + docbook-xsl - network/library/zeromq/pspec.xml + util/archive/gcap/pspec.xml - zeromq - ZeroMQ core engine in C++, implements ZMTP/3.1 + gcap - libsodium - openpgm + zlib + glib2 - /usr/bin/curve_keygen + /usr/bin /usr/lib - /usr/share/doc/zeromq + /usr/share/locale + /usr/share/gtk-doc + /usr/share/doc + /usr/share/man + /usr/share/gir-1.0/GCab-1.0.gir + /usr/share/vala - zeromq-devel - Development files for zeromq - zeromq için geliştirme dosyaları - zeromq-devel, zeromq için geliştirme dosyaları sunar. + gcap-devel - zeromq - libsodium-devel - openpgm-devel + gcap + zlib-devel + glib2-devel /usr/include - /usr/include/zeromq /usr/lib/pkgconfig + + 2020-02-02 + 1.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + - 2021-12-06 - 4.3.4 - Version bump. + 2018-08-10 + 0.7 + Rebuild New T. Mustafa Cinasal muscnsl@gmail.com - 2019-12-30 - 4.3.2 - First pisi release - Blue Devil - bluedevil@sctzine.com + 2017-12-10 + 0.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com - libnma - https://wiki.gnome.org/Projects/NetworkManager/ + gnome-autoar + https://gitlab.gnome.org/GNOME/gnome-autoar - PisiLinux Community + Pisi Linux Admins admins@pisilinux.org - GPL - library - network.library - NetworkManager GUI client library - NetworkManager GUI client library - NetworkManager GUI istemci kitaplığı - NetworkManager GUI istemci kitaplığı - https://download.gnome.org/sources/libnma/1.8/libnma-1.8.38.tar.xz + LGPLv2.1 + util.archive + Archive framework for GNOME + gnome-autoar provides functions and widgets for GNOME applications which want to use archives as a method to transfer directories over the Internet. + https://download.gnome.org/sources/gnome-autoar/0.4/gnome-autoar-0.4.3.tar.xz meson gtk-doc - gcr-devel - gtk4-devel gtk3-devel vala-devel - docbook-xsl + libarchive-devel glib2-devel - iso-codes-devel - NetworkManager-devel gobject-introspection-devel - mobile-broadband-provider-info - network/library/libnma/pspec.xml + util/archive/gnome-autoar/pspec.xml - libnma + gnome-autoar - gcr - gtk4 gtk3 - cairo glib2 - NetworkManager + libarchive - /usr/lib - /usr/share - /usr/share/locale + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* /usr/share/doc - libnma-devel - Development files for libnma + gnome-autoar-devel - libnma - NetworkManager-devel + gnome-autoar + gtk3-devel + glib2-devel + libarchive-devel - /usr/include /usr/lib/pkgconfig + /usr/include + /usr/share/gir-1.0 + /usr/share/vala - libnma-docs - Development files for libnma + gnome-autoar-docs + Development files for gnome-autoar - libnma + gnome-autoar /usr/share/gtk-doc @@ -345600,2006 +327144,36 @@ complete albums that you have purchased from Amazon. - 2022-04-07 - 1.8.38 + 2022-02-11 + 0.4.3 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2022-01-21 - 1.8.34 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-21 - 1.8.32 + 2022-01-07 + 0.4.2 Version bump Mustafa Cinasal muscnsl@gmail.com - - 2021-02-25 - 1.8.30 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-03-14 - 1.8.28 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - nodejs - http://nodejs.org/ - - Ertuğrul Erata - ertugrulerata@gmail.com - - MIT - app:console - network.library - Evented I/O for V8 javascript - Olay bazlı V8 Javascript motoru - Node.js is an open-source, cross-platform, JavaScript runtime environment. It executes JavaScript code outside of a browser. - Kolay, hızlı, ölçeklenebilir ağ uygulamaları oluşturmak için Chrome'un JavaScript çalışma üzerine inşa edilmiş bir platform. - https://nodejs.org/dist/v16.11.1/node-v16.11.1.tar.xz - - icu4c-devel - libuv-devel - openssl-devel - python3-devel - libnghttp2-devel - - network/library/nodejs/pspec.xml - - - nodejs - Node.js JavaScript runtime - - icu4c - zlib - libuv - libgcc - openssl - libnghttp2 - - - /usr/lib/node_modules - /usr/share/systemtap - /usr/bin - /usr/include - /usr/share/doc - /usr/share/man - - - - - 2021-10-23 - 16.11.1 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-17 - 16.11.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-09 - 16.4.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-27 - 15.10.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-26 - 15.9.0 - Version bump. - İdris Kalp - idriskalp@gmail.com - - - 2020-04-26 - 14.0.0 - Major version bump. - Blue Devil - bluedevil@sctzine.com - - - 2020-01-17 - 13.6.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2018-07-31 - 9.5.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - 2017-05-02 - 7.9.0 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 4.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-10-10 - 4.1.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - glib-networking - http://git.gnome.org/browse/glib-networking/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - library - network.library - Network-related giomodules for glib - Moduły GIO dotyczące sieci do glib - This package contains various network related extensions for the GIO library. - Pakiet zawiera różne rozszerzenia dotyczące sieci do biblioteki GIO. - mirrors://gnome/glib-networking/2.72/glib-networking-2.72.0.tar.xz - - meson - gnutls-devel - p11-kit-devel - ca-certificates - intltool - glib2-devel - libidn-devel - - network/library/glib-networking/pspec.xml - - - glib-networking - - gnutls - p11-kit - glib2 - ca-certificates - - - /usr/lib/gio/modules - /usr/lib/systemd - /usr/libexec - /usr/share - /usr/share/doc/glib-networking - - - - - 2022-06-01 - 2.72.0 + 2021-10-30 + 0.4.1 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-12-06 - 2.70.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-06 - 2.68.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-05-29 - 2.68.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-19 - 2.62.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 2.54.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-19 - 2.50.0 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 2.38.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-03-30 - 2.38.2 - First release - Marcin Bojara - marcin@pisilinux.org - - - - - - cloud-init - https://cloud-init.io - - Kamil Atlı - suvari@pisilinux.org - - GPLv3 - app:console - network.library - The standard for customising cloud instances - Bulut örneklerini özelleştirme standardı - La norme pour la personnalisation des instances cloud - The standard for customising cloud instances - Bulut örneklerini özelleştirme standardı - https://launchpad.net/cloud-init/trunk/21.4/+download/cloud-init-21.4.tar.gz - - dhclient - python3-devel - python3-Jinja2 - python3-PyYAML - python3-requests - python3-configobj - python3-setuptools - - network/library/cloud-init/pspec.xml - - - cloud-init - - python3 - dhclient - python3-Jinja2 - python3-PyYAML - python-oauthlib - python-netifaces - python-configobj - python3-requests - python3-configobj - python-jsonschema - - - /usr/bin - /etc - /usr/lib/python3.9/site-packages - /usr/lib/cloud-init - /lib/udev/rules.d - /usr/share/bash-completion - /usr/share/doc/cloud-init - - - - - 2022-01-09 - 21.4 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - enet - http://enet.bespin.org/ - - Kamil Atlı - suvari@pisilinux.org - - MIT - library - network.library - UDP network library - UDP ağ kitaplığı - enet is a relatively thin, simple and robust network communication layer on top of UDP. - enet UDP protokolü üzerinden iletişim için kullanılabilecek küçük, kolay kullanımlı ve sağlam bir kitaplıktır. - enet - http://enet.bespin.org/download/enet-1.3.14.tar.gz - - glibc-devel - - network/library/enet/pspec.xml - - - enet - - /usr/lib - /usr/share/doc - - - - enet-devel - Development files for enet - enet için geliştirme dosyaları - - enet - - - /usr/include - /usr/lib/pkgconfig - - - - - 2019-10-30 - 1.3.14 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - flickcurl - http://librdf.org/flickcurl/ - - PisiLinux Community - admin@pisilinux.org - - GPLv2 - app:console - library - network.library - C library for the Flickr API - Flickr API için C Kitaplığı - Flickcurl is a C library for the Flickr API, handling creating the requests, signing, token management, calling the API, marshalling request parameters and decoding responses. - Flickcurl oluşan istekleri taşıma, imzalama, token yönetimi, API çağırma, istenilen parametreleri sıralama ve yanıtları çözme işlemleri için bir C kitaplığıdır. - http://download.dajobe.org/flickcurl/flickcurl-1.26.tar.gz - - curl-devel - raptor2-devel - libxml2-devel - - - a5cc2a5d2fc7074f50fbaa772232b6e0fea7ce89.patch - - network/library/flickcurl/pspec.xml - - - flickcurl - - curl - raptor2 - libxml2 - - - /usr/bin - /usr/lib/ - /usr/share/doc - /usr/share/man - - - - flickcurl-devel - flickurl için geliştirme dosyaları - flickcurl için geliştirme dosyaları - - flickcurl - raptor2-devel - - - /usr/include - /usr/share/gtk-doc - /usr/lib/pkgconfig - - - - - 2020-03-05 - 1.26 - Rebuild. - Kamil Atlı - suvari@pisilinux.org - - - 2018-10-14 - 1.26 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libiscsi - https://github.com/sahlberg/libiscsi - - Kamil Atlı - suvari@pisilinux.org - - custom - library - network.library - Clientside library to implement the iSCSI protocol - iSCSI protokolünü uygulamak için istemci tarafı kitaplığı - Libiscsi is a client-side library to implement the iSCSI protocol that can be used to access the resources of an iSCSI target. - Libiscsi, bir iSCSI hedefinin kaynaklarına erişmek için kullanılabilecek iSCSI protokolünü uygulamaya yönelik bir istemci tarafı kitaplığıdır. - https://github.com/sahlberg/libiscsi/archive/refs/tags/1.19.0.tar.gz - - popt-devel - glibc-devel - libgcrypt-devel - - network/library/libiscsi/pspec.xml - - - libiscsi - - popt - libgcrypt - - - /usr/lib/libiscsi.so* - /usr/bin - /usr/share/man/man1 - /usr/share/doc/libiscsi - - - - libiscsi-devel - Development files for libiscsi - - libiscsi - - - /usr/include - /usr/lib/pkgconfig - - - - - 2022-02-05 - 1.19.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libqmi - http://www.freedesktop.org/wiki/Software/libqmi/ - - Alihan Öztürk - alihan@pisilinux.org - - GPLv2 - app:gui - network.library - QMI modem protocol helper library - libqmi is a glib-based library for talking to WWAN modems and devices which speak the Qualcomm MSM Interface (QMI) protocol. - https://www.freedesktop.org/software/libqmi/libqmi-1.30.2.tar.xz - - help2man - glib2-devel - python3-devel - libgudev-devel - autoconf-archive - gobject-introspection-devel - libmbim-devel - - network/library/libqmi/pspec.xml - - - libqmi - - glib2 - libgudev - libmbim - gobject-introspection - - - /usr/lib - /usr/share/man - /usr/bin - /usr/share/gtk-doc - /usr/share/doc/libqmi/ - /usr/share/gir-1.0/Qmi-1.0.gir - /usr/share/bash-completion - - - - libqmi-devel - Development files for libqmi - - libqmi - glib2-devel - - - /usr/include - /usr/lib/pkgconfig/qmi-glib.pc - - - - - 2021-11-27 - 1.30.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-24 - 1.28.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-03 - 1.28.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-25 - 1.28.0 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-07-10 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-30 - 1.24.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 1.22.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 1.22.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.20.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-19 - 1.16.2 - Version bump - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-11-12 - 1.16.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-09 - 1.12.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.12.6 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - miniupnpc - http://miniupnp.free.fr/ - - Kamil Atlı - suvari@pisilinux.org - - BSD-3-Clause - library - network.library - miniupnpc is a UPnP Control Point. - bir uPnP istemci kütüphanesi - miniupnpc, the client library, enabling applications to access the services provided by an UPnP "Internet Gateway Device" present on the network. In UPnP terminology,miniupnpc is a UPnP Control Point. - bir uPnP istemci kitaplığı;uygulamaların ağdaki mevcut bir UPnP "internet ağgeçidi aygıtı" tarafından sağlanan servislere erişimine olanak verir. - http://miniupnp.free.fr/files/miniupnpc-2.2.3.tar.gz - - cmake - python3-devel - python3-setuptools - - - fix_install_for_headers.patch - fix_install_rules_to_account_for_BUILD_var.patch - - network/library/miniupnpc/pspec.xml - - - miniupnpc - bir uPnP istemci kütüphanesi - - /usr/lib - /usr/share/doc - - - - python3-miniupnpc - - miniupnpc - - - /usr/lib/python3.9 - - - - miniupnpc-devel - miniupnpc için geliştirme dosyaları - - miniupnpc - - - /usr/include/miniupnpc - /usr/lib/pkgconfig - /usr/lib/cmake/miniupnpc - - - - - 2022-04-16 - 2.2.3 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2020-06-04 - 2.1.20191224 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2020-06-04 - 2.1.20190824 - Rebuild - Kamil Atlı - suvari@pisilinux.org - - - 2019-10-30 - 2.1.20190824 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - libuhttpmock - https://gitlab.com/uhttpmock/uhttpmock - - Pisi Linux Admins - admin@pisilinux.org - - LGPLv2.1 - app - network.library - HTTP web service mocking project for projects which use libsoup - HTTP web service mocking project for projects which use libsoup - HTTP web service mocking project for projects which use libsoup - HTTP web service mocking project for projects which use libsoup - https://gitlab.com/uhttpmock/uhttpmock/-/archive/0.5.3/uhttpmock-0.5.3.tar.gz - - gtk-doc - vala-devel - glib2-devel - gettext-devel - libsoup-devel - autoconf-archive - - network/library/libuhttpmock/pspec.xml - - - libuhttpmock - - glib2 - libsoup - - - /usr/lib - /usr/share/vala - /usr/share/doc - - - - libuhttpmock-devel - Development files for libuhttpmock - - libuhttpmock - glib2-devel - libsoup-devel - - - /usr/include - /usr/share/gir-1.0 - /usr/lib/pkgconfig - - - - - 2021-06-02 - 0.5.3 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - libfilezilla - https://lib.filezilla-project.org/doc/index.html - - Kamil Atlı - suvari@pisilinux.org - - LGPLv2 - Libry - network.library - libfilezilla is a small and modern C++ library. - libfilezilla is a free, open source C++ library, offering some basic -functionality to build high-performing, platform-independent programs. - https://download.filezilla-project.org/libfilezilla/libfilezilla-0.26.0.tar.bz2 - - libgcc - gmp-devel - gnutls-devel - nettle-devel - - network/library/libfilezilla/pspec.xml - - - libfilezilla - - libgcc - gnutls - nettle - - - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/locale - - - - libfilezilla-devel - Development files for libfilezilla - - nettle-devel - gnutls-devel - libfilezilla - - - /usr/include - /usr/lib/pkgconfig - - - - - 2020-12-17 - 0.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-06-04 - 0.22.0 - Version bump - Kamil Atlıl - suvari@pisilinux.org - - - 2018-09-01 - 0.12.1 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-07 - 0.12.1 - Version bump. - Stefan Gronewold - groni@pisilinux.org - - - 2018-02-20 - 0.12.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-25 - 0.9.1 - First Release - Kamil Atlı - suvari@pisilinux.org - - - - - - libmnl - https://netfilter.org/projects/libmnl/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - library - network.library - libmnl is a minimalistic user-space library for Netlink developers. - libmnl, Netlink geliştiricileri için minimalistik kulanıcı alanı kütüphanesidir. - libmnl is a minimalistic user-space library for Netlink developers. There are a lot of common tasks involved in parsing, validating, and constructing both the Netlink header and TLVs that are repetitive and easy to get wrong. - libmnl, Netlink geliştiricileri için minimalistik kulanıcı alanı kütüphanesidir. Hem Netlink başlığı hemde TLV'ler gibi tekrarlayıp duran ve kolaylıkla yanlış gidebilecekler de çözümleme, doğrulama ve inşa etme gibi birçok yaygın görevler bulunmaktadır. Bu kütüphanenin amacı kodu yeniden kullanmanızı sağlamak ve tekerleği yeniden icat etmenizi engelleyecek temel yardımcıları sunmaktır. - https://netfilter.org/projects/libmnl/files/libmnl-1.0.4.tar.bz2 - network/library/libmnl/pspec.xml - - - libmnl - libmnl is a minimalistic user-space library for Netlink developers. - - /usr/share/doc/libmnl - /usr/lib/libmnl.so - /usr/lib/libmnl.so.0 - /usr/lib/libmnl.so.0.2.0 - - - - libmnl-devel - Development files for libmnl - libmnl için geliştirme dosyaları - libmnl-devel, libmnl için geliştirme dosyalarını içerir. - - libmnl - - - /usr/include/libmnl - /usr/lib/pkgconfig/libmnl.pc - - - - - 2020-04-10 - 1.0.4 - Patch version bump. - Blue Devil - bluedevil@sctzine.com - - - 2016-03-13 - 1.0.3 - Rebuilt with docker - İbrahim KARAGÜZEL - karaguzelibrahim@gmail.com - - - 2014-03-09 - 1.0.3 - Rebuild. - Kamil Atlı - suvarice@gmail.com - - - 2013-07-28 - 1.0.3 - Move pc files to devel pack, rebuild - Osman Erkan - osman.erkan@pisilinux.org - - - 2012-09-02 - 1.0.3 - First release - Osman Erkan - osman.erkan@pisilinux.org - - - - - - libetpan - https://www.etpan.org/libetpan.html - - fury - uglyside@yandex.ru - - custom - library - network.library - A portable middleware for email access. - The purpose of this mail library is to provide a portable, efficient framework for different kinds of mail access: IMAP, SMTP, POP and NNTP. - https://github.com/dinhvh/libetpan/archive/1.9.4.tar.gz - - db-devel - curl-devel - expat-devel - gnutls-devel - openssl-devel - cyrus-sasl-devel - - - Detect_extra_data_after_STARTTLS_response_and_exit.patch - - network/library/libetpan/pspec.xml - - - libetpan - - db - openssl - cyrus-sasl - - - /usr/lib - - - - libetpan-devel - - libetpan - db-devel - gnutls-devel - openssl-devel - cyrus-sasl-devel - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-13 - 1.9.4 - First build - fury - uglyside@yandex.ru - - - - - - ipaddr - https://pypi.org/project/ipaddr/ - - PisiLinux Community - admins@pisilinux.org - - Apache - library - network.library - An IPv4/IPv6 manipulation library in Python - ipaddr.py is a library for working with IP addresses, both IPv4 and IPv6 - https://files.pythonhosted.org/packages/9d/a7/1b39a16cb90dfe491f57e1cab3103a15d4e8dd9a150872744f531b1106c1/ipaddr-2.2.0.tar.gz - network/library/ipaddr/pspec.xml - - - ipaddr - - /usr/lib - /usr/share/doc - - - - - 2020-06-04 - 2.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - 2019-03-18 - 2.2.0 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - libmbim - http://www.freedesktop.org/wiki/Software/libmbim/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - library - network.library - MBIM modem protocol helper library. - libmbim is a glib-based library for talking to WWAN modems and devices which speak the Mobile Interface Broadband Model (MBIM) protocol. - http://www.freedesktop.org/software/libmbim/libmbim-1.26.2.tar.xz - - gtk-doc - help2man - glib2-devel - python3-devel - libgudev-devel - autoconf-archive - gobject-introspection-devel - - network/library/libmbim/pspec.xml - - - libmbim - - glib2 - libgudev - - - /usr/lib - /usr/share/man - /usr/bin/ - /usr/share/gtk-doc/ - /usr/share/bash-completion - /usr/share/gir-1.0 - /usr/libexec - /usr/share/doc/libmbim - - - - libmbim-devel - libmbim için geliştirme dosyaları - libmbim için geliştirme dosyaları - - libmbim - glib2-devel - libgudev-devel - - - /usr/lib/pkgconfig - /usr/include/libmbim-glib/ - - - - - 2021-11-27 - 1.26.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-24 - 1.24.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-04-03 - 1.24.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-10 - 1.24.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 1.20.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 1.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.16.0 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-18 - 1.14.0 - Rebuild. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-11-12 - 1.14.0 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-09 - 1.12.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.12.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - libsrtp - https://github.com/cisco/libsrtp - - Pisi Linux Admins - admin@pisilinux.org - - BSD - library - network.library - An implementation of the Secure Real-time Transport Protocol (SRTP) - An implementation of the Secure Real-time Transport Protocol (SRTP) - SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü) - SRTP Kitaplığı (Güvenli Gerçek Zamanlı Aktarım Protokolü) - https://github.com/cisco/libsrtp/archive/refs/tags/v2.3.0.tar.gz - - nss-devel - libpcap-devel - openssl-devel - - - libsrtp-2.3.0-rtp-header.patch - fedora/libsrtp-2.3.0-shared-fix.patch - fedora/libsrtp-2.3.0-test-util.patch - fedora/libsrtp-2.3.0-shared-test-fix.patch - - network/library/libsrtp/pspec.xml - - - libsrtp - - openssl - - - /usr/lib - /usr/share - /usr/share/doc - - - - libsrtp-devel - Development files for libsrtp - - libsrtp - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-04-04 - 2.3.0 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - serf - https://serf.apache.org/ - - Osman Erkan - osman.erkan@pisilinux.org - - Apachev2 - library - network.library - High-performance asynchronous HTTP client library. - The serf library is a high performance C-based HTTP client library built upon the Apache Portable Runtime (APR) library. - https://archive.apache.org/dist/serf/serf-1.3.9.tar.bz2 - - db-devel - zlib-devel - expat-devel - openssl-devel - apr-devel - apr-util-devel - scons - - - scons_py3.patch - - network/library/serf/pspec.xml - - - serf - - db - zlib - expat - openssl - apr - apr-util - openldap-client - - - /usr/lib - /usr/share/doc - - - - serf-devel - Development files for serf - serf için geliştirme dosyaları - - serf - - - /usr/include - /usr/lib/pkgconfig - - - - - 2021-10-22 - 1.3.9 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2020-02-26 - 1.3.9 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-01 - 1.3.9 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-21 - 1.3.9 - Version Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-06-09 - 1.3.8 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-03-06 - 1.3.8 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - srt - https://www.srtalliance.org - - Pisi Linux Admins - admin@pisilinux.org - - MPLv2.0 - library - network.library - Secure Reliable Transport protocol tools - Secure Reliable Transport protocol tools - Güvenli Güvenilir Aktarım protokolü araçları - Güvenli Güvenilir Aktarım protokolü araçları - https://github.com/Haivision/srt/archive/refs/tags/v1.4.2.tar.gz - - git - cmake - gnutls-devel - nettle-devel - openssl-devel - - network/library/srt/pspec.xml - - - srt - - gnutls - nettle - - - /usr/bin - /usr/lib - /usr/share/doc - - - - srt-devel - Development files for srt - - srt - gnutls-devel - nettle-devel - openssl-devel - - - /usr/include - /usr/lib/cmake - /usr/lib/pkgconfig - - - - - 2021-04-04 - 1.4.2 - First release - Pisi Linux Admins - admin@pisilinux.org - - - - - - openpgm - https://www.freshports.org/net/openpgm/ - - Blue Devil - bluedevil@sctzine.com - - LGPL2.1 - library - network.library - Implementation of the PGM reliable multicast protocol - Guvenilir coklu yayin protolu PGM'nin uygulamasi - OpenPGM is an open source implementation of the Pragmatic General Multicast (PGM) specification in RFC 3208 available at www.ietf.org. PGM is a reliable and scalable multicast protocol that enables receivers to detect loss, request retransmission of lost data, or notify an application of unrecoverable loss. - OpenPGM, RFC 3208'de belirtilen Pragmatik Genel Coklu Yayın(Pragmatic General Multicast - PGM) uygulamasıdır. - https://github.com/steve-o/openpgm/archive/release-5-2-122.tar.gz - network/library/openpgm/pspec.xml - - - openpgm - Implementation of the PGM reliable multicast protocol - - /usr/lib - /usr/share/doc/libpgm - - - - openpgm-devel - Development files for openpgm - openpgm için geliştirme dosyaları - openpgm-devel, openpgm için geliştirme dosyaları sunar. - - openpgm - - - /usr/include/ - /usr/lib/pkgconfig - - - - - 2019-12-30 - 5.2.122 - First pisi release - Blue Devil - bluedevil@sctzine.com - - - - - - vsftpd - http://vsftpd.beasts.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - network.ftp - Very Secure FTP Daemon written with speed, size and security in mind - Hızlı, küçük ve ileri derecede güvenli bir ftp sunucusu - Vsftpd is a ftp server, mostly focuses on security. - Vsftpd güvenlik odaklı bir ftp sunucu yazılımıdır. - https://security.appspot.com/downloads/vsftpd-3.0.3.tar.gz - - libnsl-devel - - - vsftpd-pisilinux.patch - - network/ftp/vsftpd/pspec.xml - - - vsftpd - - pam - libcap - openssl - - - /etc - /usr/sbin - /home/ftp - /usr/share/doc - /usr/share/man - /usr/share/vsftpd/empty - /var/log/vsftpd - - - System.Package - System.Service - - - ftp-pamd - vsftpd.conf - ftpusers - - - - - 2021-07-02 - 3.0.3 - Rebuild - İdris Kalp - idriskalp@gmail.com - - - 2018-09-02 - 3.0.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-05-25 - 3.0.3 - Rebuild - Kamil Atlı - suvari@pisilinux.org + 2021-08-11 + 0.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2016-11-22 - 3.0.3 - First Release. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - filezilla - https://filezilla-project.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:gui - network.ftp - Simple FTP Client - FTP ve SFTP istemcisi - Easy-to-use FTP Client which also supports SFTP. - Filezilla; dosyalarınızı ftp, sftp, ftps ile göndermenize ve indirmenize yarar - filezilla - https://download.filezilla-project.org/client/FileZilla_3.51.0_src.tar.bz2 - - wxGTK3 - wxGTK-common - cppunit-devel - libidn-devel - dbus-devel - sqlite-devel - gnutls-devel - gtk2-devel - xdg-utils - wxGTK-devel - nettle-devel - libfilezilla-devel - - network/ftp/filezilla/pspec.xml - - - filezilla - - gtk2 - wxGTK - dbus - sqlite - libgcc - glib2 - gnutls - nettle - xdg-utils - libfilezilla - wxGTK3 - wxGTK-common - - - /usr/bin - /usr/lib/libfzclient-private* - /usr/share/applications - /usr/share/filezilla - /usr/share/pixmaps - /usr/share/icons - /usr/share/locale - /usr/share/doc - /usr/share/man - /usr/share/appdata/ - - - - - 2020-12-17 - 3.51.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 20-06-04 - 3.48.1 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2018-09-01 - 3.32.0 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-04-07 - 3.32.0 - Version bump - Stefan Gronewold - groni@pisilinux.org - - - 2018-02-20 - 3.30.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-25 - 3.25.2 - Version Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 3.14.1 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 3.14.1 - First release - Alihan Öztürk - alihan@pisilinux.org - - - - - - minicom - https://salsa.debian.org/minicom-team/minicom - - PisiLinux Community - admins@pisilinux.org - - GPL - app:console - network.ftp - A serial communication program - A serial communication program - Seri iletişim programı - Seri iletişim programı - https://salsa.debian.org/minicom-team/minicom/-/archive/2.8/minicom-2.8.tar.gz - - ncurses-devel - - network/ftp/minicom/pspec.xml - - - minicom - - ncurses - - - /usr/bin - /etc - /usr/share - /usr/share/locale - /usr/share/man - /usr/share/doc - - - - - 2021-08-09 - 2.8 - Version Bump - Erkan IŞIK - erkanisik@pisilinux.org - - - 2019-03-19 - 2.7.1 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - lftp - http://lftp.yar.ru/ - - PisiLinux Community - admins@pisilinux.org - - GPLv3 - app:console - network.ftp - Command line FTP client - Komut satırı FTP istemcisi - LFTP is sophisticated file transfer program with command line interface. It supports FTP, HTTP, FISH, SFTP, HTTPS and FTPS protocols. It has bookmarks, built-in mirror, can transfer several files in parallel. It was designed with reliability in mind. - LFTP komut satırı arayüzüne sahip gelişmiş bir dosya aktarım programıdır. FTP, HTTP, FISH, SFTP, HTTPS ve FTPS protokollerini destekler. Yer imleri, yansılama, paralel olarak birçok dosya transfer etme özellikleri bulunuyor. Güvenirlik esas alınarak tasarlandı. - lftp - http://lftp.tech/ftp/lftp-4.9.2.tar.gz - - gnutls-devel - flex - bison - gcc - gettext-devel - libtool - zlib-devel - ncurses-devel - expat-devel - libidn2-devel - readline-devel - - - config-dns-inet6_before_inet.patch - lftp_sys-stdint-kfreebsd.patch - - network/ftp/lftp/pspec.xml - - - lftp - - zlib - expat - libgcc - gnutls - libidn2 - ncurses - readline - - - /etc - /usr/bin - /usr/lib - /usr/share/doc/lftp - /usr/share/applications/lftp.desktop - /usr/share/icons/hicolor/48x48/apps/lftp-icon.png - /usr/share/man - /usr/share/locale - /usr/share/lftp - /usr/share/pixmaps - - - lftp.png - - - - - 2021-07-02 - 4.9.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-01 - 4.8.3 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-03-03 - 4.8.3 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-25 - 4.7.7 - Version bump. - Kamil Atlı - suvari@pisilinux.org - - - 2016-11-22 - 4.7.4 - Version bump. - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - nextcloud-client - https://nextcloud.com/install - - Pisi Linux Admins - admins@pisilinux.org - - LGPLv2+ - GPLv2 - app:gui - network.share - The Nextcloud Client - Nextcloud istemcisi - Nextcloud-client enables you to connect to your private Nextcloud Server. With it you can create folders in your home directory, and keep the contents of those folders synced with your Nextcloud server. - Nextcloud-client, özel Nextcloud Sunucunuza bağlanmanızı sağlar. Bununla beraber ana dizininizde klasörler oluşturabilir ve bu klasörlerin içeriğini Nextcloud sunucunuzla senkronize halde tutabilirsiniz. - https://github.com/nextcloud/desktop/archive/v3.3.2/desktop-3.3.2.tar.gz - - check-devel - chrpath - cmake - desktop-file-utils - doxygen - libcloudproviders-devel - appstream-devel - appstream-glib-devel - neon-devel - openssl-devel - dbus-devel - python3-sphinx - qt5-keychain-devel - qt5-base-devel - qt5-xmlpatterns-devel - qt5-location-devel - qt5-quickcontrols2-devel - qt5-websockets-devel - qt5-svg-devel - qt5-declarative-devel - qt5-linguist - extra-cmake-modules - inkscape - kcoreaddons-devel - kio-devel - sqlite-devel - libgnome-keyring - - - xcb.patch - require-cmake-3.16.patch - - network/share/nextcloud-client/pspec.xml - - - nextcloud-client - - zlib - libgcc - sqlite - openssl - qt5-svg - qt5-base - qt5-keychain - qt5-websockets - - - /etc/Nextcloud - /usr/bin - /usr/lib/libnextcloudsync.so.0 - /usr/lib/libnextcloudsync.so.3.3.2 - /usr/lib/libnextcloud_csync.so* - /usr/share/appdata - /usr/share/applications - /usr/share/cloud-providers - /usr/share/dbus-1 - /usr/share/doc - /usr/share/icons - /usr/share/mime - /usr/share/nextcloud - - - nextcloud.appdata.xml - - - - nextcloud-client-nautilus - nextcloud-client's Nautilus file manager extension - Nextcloud istemcisinin Nautilus dosya yöneticisi uzantısı - nextcloud-client extension for the Nautilus file manager. - Nautilus dosya yöneticisi için Nextcloud istemcisi uzantısı. - - nextcloud-client - nautilus - nautilus-python - - - /usr/share/nautilus-python/extensions - - - - nextcloud-client-dolphin - nextcloud-client overlay icons for the Dolphin file manager - Dolphin dosya yöneticisi için Nextcloud istemcisi simgeleri - nextcloud-client extension for the Dolphin file manager. - Dolphin dosya yöneticisi için Nextcloud istemcisi uzantısı. - - nextcloud-client - dolphin - kio - kcoreaddons - - - /usr/lib/libnextclouddolphinpluginhelper.so - /usr/lib/qt5/plugins/nextclouddolphinactionplugin.so - /usr/lib/qt5/plugins/kf5/overlayicon/nextclouddolphinoverlayplugin.so - /usr/share/kservices5/nextclouddolphinactionplugin.desktop - - - - nextcloud-client-caja - nextcloud-client overlay icons for the Caja file manager - Caja dosya yöneticisi için Nextcloud istemcisi simgeleri - This package provides overlay icons to visualize the sync state in the Caja file manager. - Bu paket, Caja dosya yöneticisinde eşitleme durumunu görselleştirmek için simgeler sağlar. - - nextcloud-client - caja - python-caja - - - /usr/share/caja-python/extensions - - - - nextcloud-client-devel - Development files for nextcloud-client - nextcloud-client için geliştirme dosyaları - - nextcloud-client - - - /usr/include/nextcloudsync - /usr/lib/libnextcloudsync.so - /usr/lib/nextcloudsync_vfs_suffix.so - /usr/lib/nextcloudsync_vfs_xattr.so - - - - - 2021-09-01 - 3.3.2 + 2021-05-28 + 0.3.2 First release for Pisi Linux Berk Çakar berk2238@hotmail.com @@ -347608,750 +327182,233 @@ functionality to build high-performing, platform-independent programs. - smb4k - http://smb4k.berlios.de/ - - Kamil Atlı - suvari@pisilinux.org - - GPLv2 - app:gui - network.share - An SMB/CIFS Share Browser for KDE - KDE için bir Windows paylaşım tarayıcısı - smb4k est un navigateur graphique KDE de partages SMB/CIFS. - Smb4K is an advanced network neighborhood browser and Samba share mounting utility. - smb4k, KDE üzerinde Windows paylaşımlarını taramak ve içeriklerini kullanmak için kullanışlı bir grafik arayüzü sunar. - smb4k - https://sourceforge.net/projects/smb4k/files/3.0.6/smb4k-3.0.6.tar.xz - - kio-devel - kauth-devel - ki18n-devel - solid-devel - samba-devel - kcrash-devel - kparts-devel - kconfig-devel - kwallet-devel - kxmlgui-devel - qt5-base-devel - kdoctools-devel - kcompletion-devel - kcoreaddons-devel - kdbusaddons-devel - kiconthemes-devel - kjobwidgets-devel - extra-cmake-modules - kwindowsystem-devel - kconfigwidgets-devel - knotifications-devel - kwidgetsaddons-devel - qt5-declarative-devel - plasma-framework-devel - - network/share/smb4k/pspec.xml - - - smb4k - - kio - kauth - ki18n - solid - samba - kcrash - kparts - libgcc - kconfig - kwallet - kxmlgui - qt5-base - kdoctools - kcompletion - kcoreaddons - kdbusaddons - kiconthemes - kjobwidgets - kwindowsystem - kconfigwidgets - knotifications - kwidgetsaddons - qt5-declarative - plasma-framework - extra-cmake-modules - - - /usr/bin - /usr/lib - /usr/share - /etc/dbus-1/system.d - /usr/share/doc - - - - - 2020-06-04 - 3.0.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-01-21 - 2.9.73 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-10 - 2.1.1 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-05-08 - 2.1.0 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - nfs-utils - http://nfs.sourceforge.net/ + libtar + https://directory.fsf.org/wiki/Libtar PisiLinux Community admins@pisilinux.org - GPLv2 - service - app:console - network.share - NFS client and server - NFS istemcisi ve sunucusu - Contains NFS (Network File System) client and server. It is possible to mount a network resource as a file system using the NFS protocol. - nfs-utils, NFS (Ağ dosya sistemi) istemcisi ve sunucusunu içerir. - mirrors://sourceforge/nfs/nfs-utils-2.6.1.tar.bz2 - - sqlite-devel - libcap-devel - libtirpc-devel - libevent-devel - e2fsprogs-devel - libgssglue-devel - mit-kerberos-devel - rpcsvc-proto-devel - tcp-wrappers-devel - device-mapper-devel - libutil-linux-devel - - network/share/nfs-utils/pspec.xml - - - nfs-utils - - libcap - sqlite - rpcbind - nfsidmap - keyutils - libevent - libtirpc - e2fsprogs - libgssglue - mit-kerberos - tcp-wrappers - device-mapper - libutil-linux - openldap-client - - - /etc/exports - /etc/gssapi_mech.conf - /etc/nfsmount.conf - /etc/conf.d/nfs - /usr/sbin - /sbin - /var/lib - /usr/share/man - /usr/share/doc - - - System.Service - System.Service - - - exports - nfs.confd - idmapd.conf - gssapi_mech.conf - - - - nfsidmap - Library to help mapping IDs, mainly for NFSv4 - Kimliklerin eşlenmesine yardımcı olacak kitaplık, özellikle NFSv4 için. - - openldap-client - - - /etc/idmapd.conf - /usr/lib/libnfsidmap* - /usr/share/doc/libnfsidmap - - - - - 2022-03-11 - 2.6.1 - First release - Kamil Atlı - suvari@pisilinux.org - - - - - - librsync - http://librsync.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 + as-is library - app:console - network.share - librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy - Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı - librsync implémente l'algorithme de la somme de contrôle tournante (rolling-checksum) pour la synchronisation rendue populaire par l'utilitaire rsync et utilisée par rproxy. Cet algorithme transfert les différences entre 2 fichiers sans nécessiter la présence des fichiers sur le même système. - librsync implements the rolling-checksum algorithm of remote file synchronization that was popularized by the rsync utility and is used in rproxy. This algorithm transfers the differences between 2 files without needing both files on the same system. - Uzaktaki dosyaların senkronize edilmesi için gerekli olan algoritmayı sağlayan kitaplığı. Bu algoritma iki dosya arasındaki farkları, iki dosyanın aynı sistemde olmasına ihtiyaç duymadan transfer eder. - librsync implementa el cómputo del rolling-checksum de la sincronización de archivos remotos, que fue popularizado por la herramienta rsync y se usa en rproxy. El algoritmo transfiere la diferencia de los 2 archivos sin la necesidad de tener ambos archivos en el mismo sistema. - https://github.com/librsync/librsync/archive/v2.3.1.tar.gz + util.archive + tar file manipulation API + tar dosyalarını işlemek için bir API + libtar is a C library for manipulating POSIX tar files. It handles adding and extracting files to/from a tar archive. + libtar, POSIX tar dosyalarını işlemek için yazılmış bir C kütüphanesidir. + https://github.com/tklauser/libtar/archive/9c2e044833c5e908f5be0a77991b08849021793e.tar.gz - cmake - popt-devel + zlib-devel - network/share/librsync/pspec.xml + util/archive/libtar/pspec.xml - librsync + libtar - popt + zlib /usr/bin /usr/lib + /usr/share/doc /usr/share/man - /usr/share/doc/librsync - librsync-devel - Development files for librsync - librsync için geliştirme dosyaları + libtar-devel + Development files for libtar + libtar için geliştirme dosyaları - librsync + libtar /usr/include - /usr/lib/librsync.so /usr/share/man/man3 - - 2020-12-24 - 2.3.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-02-09 - 2.2.1 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-09-09 - 2.0.2 - Release Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-09 - 0.9.7 - Release Bump - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 0.9.7 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2014-02-01 - 0.9.7 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - rsync - http://rsync.samba.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - app:console - network.share - File transfer program to keep local copies in sync with remote files - Dosya yedekleme ve eşleme uygulaması - rsync is a tool to keep local copies of remote files in sync (i.e. make sure local files are exact copies of remote files). - rsync, uzaktaki dosyaları senkronize tutan bir dosya transfer uygulamasıdır. - https://www.samba.org/ftp/rsync/src/rsync-3.2.3.tar.gz - - acl-devel - attr-devel - popt-devel - lz4-devel - zlib-devel - zstd-devel - openssl-devel - - network/share/rsync/pspec.xml - - - rsync - - acl - attr - lz4 - popt - zlib - zstd - openssl - - - /usr/bin - /usr/share/doc - /usr/share/man - /etc - - - System.Service - - - rsyncd.conf - rsyncd.conf.d - - - - - 2020-11-08 - 3.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-09 - 3.1.3 - Revuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-18 - 3.1.3 - Revuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-12 - 3.1.3 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-09 - 3.1.2 - Rebuild for new toolchain - Kamil Atlı - admin@pisilinux.org - - - 2016-06-09 - 3.1.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-03-24 - 3.1.2 - First release - Stefan Gronewold(groni) - groni@pisilinux.org - - - - - - qbittorrent - https://www.qbittorrent.org/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2+ - app:gui - network.p2p - An open-source software alternative to µTorrent. - µTorrent'e açık kaynaklı bir yazılım alternatifi. - An advanced BitTorrent client programmed in C++, based on Qt toolkit and libtorrent-rasterbar - Qt araç takımı ve libtorrent-rasterbar'a dayalı, C++ ile programlanmış gelişmiş bir BitTorrent istemcisi - qbittorrent - mirrors://sourceforge/qbittorrent/qbittorrent/qbittorrent-4.4.2/qbittorrent-4.4.2.tar.xz - - zlib-devel - boost-devel - geoip-devel - qt5-linguist - python3-devel - qt5-svg-devel - openssl-devel - qt5-base-devel - libtorrent-rasterbar-devel - - network/p2p/qbittorrent/pspec.xml - - - qbittorrent - - boost - zlib - libgcc - openssl - qt5-base - libnotify - libtorrent-rasterbar - - - /usr/bin - /usr/share - /usr/share/applications - /usr/share/icons - /usr/share/pixmaps - /usr/share/appdata - /usr/share/man - /usr/share/doc - - - - - 2022-03-27 - 4.4.2 - Version bump + 2020-02-19 + 1.2.20 + Rebuild. Kamil Atlı suvari@pisilinux.org - - 2021-07-06 - 4.3.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-12 - 4.3.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-12 - 4.2.3 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-09-26 - 4.1.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-02-16 - 4.1.5 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-12-13 - 4.1.4 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-09-03 - 4.1.2 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-05-05 - 4.1.0 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-03-22 - 4.3.4 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - - 2018-02-20 - 4.3.4 - Release bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-12-28 - 4.3.0 - Release bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2017-03-17 - 3.3.7 - Release bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilnux.org + 2018-08-07 + 1.2.20 + Release Bump + Kamil Atlı + suvari@pisilinux.org - 2016-11-12 - 3.3.7 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org + 2017-02-02 + 1.2.20 + Release Bump + Kamil Atlı + suvari@pisilinux.org - 2016-06-09 - 3.3.1 + 2016-06-08 + 1.2.20 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-12 - 3.3.1 + 2014-06-20 + 1.2.20 First release - Stefan Gronewold - groni@pisilinux.org + Kamil Atlı + suvari@pisilinux.org - libtorrent-rasterbar - https://www.rasterbar.com/products/libtorrent/ + libzip + http://www.nih.at/libzip/ PisiLinux Community admins@pisilinux.org BSD library - network.p2p - Full featured torrent client library - Gelişmiş bir torrent kitaplığı - Rasterbar's C++ library that aims to be a good alternative to all the other bittorrent implementations around. It is a library and not a full featured client, although it comes with a working example client. - Libtorrent Rasterbar C++ kitaplığı, diğer bittorrent kitaplıklarına karşı iyi bir alternatifdir. - https://github.com/arvidn/libtorrent/releases/download/v2.0.5/libtorrent-rasterbar-2.0.5.tar.gz + util.archive + A C library for reading, creating, and modifying zip archives + Zip arşivleri yaratmak, okumak ve değiştirmek için C kitaplığı + libzip is a C library for reading, creating and modifying zip archives. Files can be added from data buffers, files or compressed data copied directly from other zip archives. + libzip, zip arşivleri yaratma, okumak ve değiştirmek için kullanılabilecek bir C kitaplığıdır. + https://libzip.org/download/libzip-1.6.1.tar.xz - cmake - ninja - libtool - zlib-devel - geoip-devel - boost-devel openssl-devel - python3-devel - boost-python3 - python3-setuptools + zlib-devel + bzip2 + cmake - network/p2p/libtorrent-rasterbar/pspec.xml + util/archive/libzip/pspec.xml - libtorrent-rasterbar + libzip - boost - geoip - libgcc + zlib + bzip2 openssl - python3 - boost-python3 + /usr/bin /usr/lib - /usr/share/doc/libtorrent-rasterbar + /usr/share/man + /usr/share/doc - libtorrent-rasterbar-devel - Development files for libtorrent-rasterbar - libtorrent-rasterbar için geliştirme dosyaları + libzip-devel + Development files for libzip + libzip için geliştirme dosyaları - libtorrent-rasterbar + zlib-devel + libzip /usr/include /usr/lib/pkgconfig - /usr/share/cmake/Modules/FindLibtorrentRasterbar.cmake - /usr/share/licenses - /usr/share/doc/libtorrent/html + /usr/share/man/man3 - - 2022-03-27 - 2.0.5 - Version bump - Kamil Atlı - suvari@pisilinux.org - - - 2021-10-23 - 2.0.4 - Rebuild boost - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-06 - 2.0.4 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-03-12 - 1.2.11 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-12 - 1.2.5 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-15 - 1.2.3 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-02-16 - 1.1.13 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2019-02-16 - 1.1.12 - Version bump. - Pisi Linux Community - admin@pisilinux.org - - - 2018-11-13 - 1.1.11 - Rebuild. - Pisi Linux Community - admin@pisilinux.org - - 2018-09-03 - 1.1.9 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2020-02-07 + 1.6.1 + Version bump + İdris Kalp + idriskalp@gmail.com - 2018-03-22 - 1.1.6 + 2018-08-09 + 1.5.1 Rebuild. - Pisi Linux Community - admin@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com - 2018-02-20 - 1.1.6 - Release Bump. + 2018-04-25 + 1.5.1 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2017-12-28 - 1.1.5 - Release Bump. + 2017-12-24 + 1.3.2 + Version bump Mustafa Cinasal muscnsl@gmail.com - 2017-03-17 - 1.0.9 - Release Bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + 2017-01-25 + 1.1.3 + Version bump. + Stefan Gronewold + groni@pisilinux.org - 2016-06-14 - 1.0.9 + 2016-06-08 + 1.0.1 Release Bump Pisi Linux Community admin@pisilinux.org - 2016-04-12 - 1.0.9 + 2015-07-28 + 1.0.1 First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + lzip + https://www.nongnu.org/lzip/lzip.html + + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + GPLv2 + app:console + util.archive + Lzip is a lossless data (de)compressor + Veri kayıpsız bir veri sıkıştırma, geri açma aracı + Lzip is a lossless data compressor with a user interface similar to the one of gzip or bzip2. Lzip is about as fast as gzip, compresses most files more than bzip2, and is better than both from a data recovery perspective. + Lzip, gzip ve bzip2 benzeri veri kayıpsız sıkıştırma yapabilen bir araçtır. Lzip gzip kadar hızlı, bzip2'den daha iyi şıkıştırm oranına sahip ve görece her iki uygulamadan daha iyi bir sıkıştırma aracıdır. + http://download.savannah.nongnu.org/releases/lzip/lzip-1.21.tar.gz + util/archive/lzip/pspec.xml + + + lzip + + libgcc + + + /usr/bin + /usr/share/info + /usr/share/doc + /usr/share/man + + + + + 2019-07-04 + 1.21 + Ver. bump + fury + uglyside@yandex.ru + + + 2016-04-23 + 1.17 + First Pisi Release İbrahim KARAGÜZEL karaguzelibrahim@gmail.com @@ -348359,109 +327416,723 @@ functionality to build high-performing, platform-independent programs. - transmission - https://transmissionbt.com/ + lzop + http://www.lzop.org/ PisiLinux Community admins@pisilinux.org - MIT - GPL-2 - service - app:gui - app:console - network.p2p - A fast, easy, and free BitTorrent client. - Hızlı, basit ve özgür BitTorrent istemcisi - Transmission is a free, lightweight Bittorrent client. It features a simple, intuitive interface on top of an efficient backend. This package provides only daemon, web interface and command line client. If you want use Transmission with graphical interface, you should install transmission-gtk or transmission-qt. - Transmission özgür ve hafif BitTorrent istemcisidir. İki değişik kitaplıkla yazılmış basit ve kullanışlı arayüz istemcisi vardır. Qt ile yazılmış arayüz paketinin adı transmission-qt, GTK+ ile yazılmış olanı ise transmission-gtk'dir. Bu pakette sadece servis, komut satırı istemcisi ve Web arayüzü bulunmaktadır. - https://github.com/transmission/transmission-releases/raw/master/transmission-3.00.tar.xz + GPLv3 + library + util.archive + File compressor using lzo lib + File compressor using lzo lib + File compressor using lzo lib + File compressor using lzo lib + http://www.lzop.org/download/lzop-1.04.tar.gz - intltool - curl-devel - gtk3-devel - qt5-linguist - openssl-devel - qt5-base-devel - xfsprogs-devel - libevent-devel - libnotify-devel - miniupnpc-devel + lzo-devel - network/p2p/transmission/pspec.xml + util/archive/lzop/pspec.xml - transmission-cli - Transmission's cli tools, web interface and daemon. - Transmission'un öntanımlı CLI, web ve sunucu bileşenleri - app:console + lzop - zlib - curl - openssl - libevent - miniupnpc + lzo /usr/bin - /etc /usr/share + /usr/share/locale /usr/share/man /usr/share/doc + + + 2020-02-19 + 1.04 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + p7zip + https://github.com/jinfeihan57/p7zip + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app:console + util.archive + Port of 7-Zip archiver for *nix + 7-zip arşivleme programı + p7zip is a port of 7-Zip archiver for Unix. Supports packing-unpacking 7z, ZIP, GZIP, BZIP2 and TAR archives and unpacking RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB and NSIS arhives. + 7-zip arşivleme programı. 7z, ZIP, GZIP, BZIP2 ve TAR arşivleri oluşturabilir ve açabilir; RAR, CAB, ISO, ARJ, LZH, CHM, Z, CPIO, RPM, DEB ve NSIS arşivlerini ise açabilir. + https://github.com/jinfeihan57/p7zip/archive/v17.04.tar.gz + + yasm-devel + + util/archive/p7zip/pspec.xml + - transmission-gtk - Transmission's GTK+ interface (default). - Transmission'un öntanımlı GTK+ arayüz istemcisi - app:gui + p7zip - transmission-cli - zlib - curl - gtk3 - glib2 - pango - openssl - libevent - miniupnpc - libnotify - gdk-pixbuf + libgcc - /usr/bin/transmission-gtk - /usr/share/appdata/transmission-gtk.xml - /usr/share/applications/transmission-gtk.desktop - /usr/share/locale - /usr/share/man/man1/transmission-gtk.1 + /usr/bin + /usr/lib/p7zip + /usr/lib/p7zip/Codecs + /usr/share/doc + /usr/share/man + + + + + 2021-04-26 + 17.04 + Version bump. + fury + uglyside@yandex.ru + + + 2021-03-13 + 17.03 + Version bump. + fury + uglyside@yandex.ru + + + 2020-02-19 + 16.02 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-13 + 16.02 + Rebuild + fury + uglyside@yandex.ru + + + 2018-08-10 + 16.02 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 16.02 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 15.09 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 15.09 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + quazip + https://stachenov.github.io/quazip/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + app:console + util.archive + QuaZIP - Qt/C++ wrapper for Minizip + QuaZIP - Minizip için Qt / C ++ sarıcı + QuaZIP is the C++ wrapper for Gilles Vollant's ZIP/UNZIP package (AKA Minizip) using Trolltech's Qt library. + QuaZIP, Gilles Vollant'ın ZIP / UNZIP paketi (AKA Minizip) için Trolltech'in Qt kütüphanesini kullanan C ++ paketleyicisidir. + https://github.com/stachenov/quazip/archive/v0.8.1.tar.gz + + qt5-base-devel + zlib-devel + cmake + + util/archive/quazip/pspec.xml + + + quazip + + qt5-base + zlib + libgcc + + + /usr/lib + /usr/share/doc + /usr/share/cmake/Modules/FindQuaZip5.cmake - transmission-qt - Transmission's Qt interface. - Transmission'un Qt arayüz istemcisi - app:gui + quazip-devel + Development files for quazip + quazip paketi için geliştirme dosyaları - transmission-cli - zlib - curl - libgcc - openssl - libevent - qt5-base - miniupnpc + quazip - /usr/bin/transmission-qt - /usr/share/applications/transmission-qt.desktop - /usr/share/man/man1/transmission-qt.1 - /usr/share/doc/transmission/README-QT + /usr/include + + + + + 2020-02-12 + 0.8.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-08-10 + 0.7.3 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 0.7.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 0.7.2 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 0.7.2 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-22 + 0.7.2 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + rar + http://www.rarlab.com + + PisiLinux Community + admins@pisilinux.org + + RAR + app:console + util.archive + RAR compressor + RAR sıkıştırıcı + rar is an compressor supporting multiple volume archives and damage protection. It can also create SFX-archives. This program is shareware and you must register it after 40 days of use. + rar, çoklu arşivleri ve hasar korumayı destekleyen bir sıkıştırıcıdır. rar aynı zamanda SFX arşivleri de yaratabilir. Bu uygulama ücretli olup 40 günlük kullanımdan sonra kayıt olunması gerekmektedir. + http://www.rarlab.com/rar/rarlinux-5.8.0.tar.gz + http://www.rarlab.com/rar/rarlinux-x64-5.5.0.tar.gz + util/archive/rar/pspec.xml + + + rar + + libgcc + + + /usr/bin + /opt/rar/bin + /opt/rar/lib + /opt/rar/etc + /usr/share/doc/rar + + + + + 2020-02-19 + 5.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 5.5.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 5.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 5.4.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 5.3.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-01-01 + 5.3.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ucl + http://www.oberhumer.com/opensource/ucl/ + + PisiLinux Community + admins@pisilinux.org + + GPL + library + util.archive + Portable lossless data compression library written in ANSI C. + ANSI C ile yazılmış bir kayıpsız veri sıkıştırma kitaplığı. + UCL implements a number of compression algorithms that achieve an excellent compression ratio while allowing *very* fast decompression. Decompression requires no additional memory. + UCL kitaplığı sıkıştırılmış veriyi çok hızlı çözerken, yüksek oranda veri sıkıştırması da yapabilen birçok sıkıştırma algoritması içerir. Sıkıştırılmış veriyi açmak ek bellek alanı gerektirmemektedir. + http://www.oberhumer.com/opensource/ucl/download/ucl-1.03.tar.gz + util/archive/ucl/pspec.xml + + + ucl + + /usr/lib + /usr/share/doc + + + + ucl-devel + + ucl + + + /usr/include + + + + + 2020-01-10 + 1.03 + Rebuild for the new toolchain + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-10 + 1.03 + Rebuild + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-07 + 1.03 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 1.03 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-03 + 1.03 + First pisi Release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + unrar + http://www.rarsoft.com/rar_add.htm + + PisiLinux Community + admins@pisilinux.org + + unRAR + app:console + util.archive + RAR decompressor + RAR açma uygulaması + unrar is a program to decompress RAR archives. + Unrar, RAR biçimli sıkıştırılmış dosyaları açar. + http://www.rarlab.com/rar/unrarsrc-5.9.1.tar.gz + + unrar-5.5.5-build.patch + unrar-5.5.5-honor-flags.patch + + util/archive/unrar/pspec.xml + + + unrar + + libgcc + + + /usr/bin + /usr/lib + /usr/include + /usr/share/doc + + + + + 2020-02-19 + 5.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 5.5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 5.5.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 5.4.5 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 5.3.4 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 5.3.4 + First release + yusuf Aydemir + yuısuf.aydemir@pisilinux.org + + + + + + upx + http://upx.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPL + app:console + util.archive + Ultimate executable compressor. + UPX (Ultimate executable compressor), bir dosya sıkıştırıcısı + UPX is an advanced executable file compressor. UPX will typically reduce the file size of programs and DLLs by around 50%-70%, thus reducing disk space, network load times, download times and other distribution and storage costs. + UPX ileri düzey bir çalıştırılabilir dosya sıkıştırıcısıdır. UPX genel olarak programların ve kitaplıkların dosya boyutunu %50 ila %70 oranında sıkıştırarak disk kullanım alanını, ağa yüklenme ve indirme süresini düşürür. + http://upx.sourceforge.net/download/upx-3.95-src.tar.xz + http://downloads.sourceforge.net/sevenzip/lzma465.tar.bz2 + + ucl-devel + zlib-devel + + util/archive/upx/pspec.xml + + + upx + Ultimate executable compressor. + + ucl + + + /usr/bin + /usr/share/doc + /usr/share/man/man1 + + + + + 2020-02-19 + 3.95 + Ver. bump + Blue DeviL + bluedevil@sctzine.com + + + 2018-08-10 + 3.94 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 3.94 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 3.91 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 3.91 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-03 + 3.91 + First Pisi Release + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com + + + + + + xarchiver + https://github.com/ib/xarchiver + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.archive + A lightweight GTK+3 archiving/compression tool(continuation of the Xfce master branch). + GTK+3 tabanlı hafif ve sade bir arşiv yöneticisi + GTK+3 frontend to 7z, zip, rar, tar, bzip2, gzip, arj, lha, rpm and deb(open and extract only). Xarchiver allows you to create, add, extract and delete files in the above formats. 7z, zip, rar, arj password protected archives are supported. + Xarchiver, 7z, zip, rar, tar, bzip2, gzip, arj, lha, rpm ve deb için GTK+3 tabanlı bir uygulamadır. Bu formatlarda arşivleme, ekleme, çıkarma ve silme işlemlerini yapabilir. Ayrıca parola korumalı 7z, zip, rar ve arj dosyalarını da destekler. + https://github.com/ib/xarchiver/archive/0.5.4.17.tar.gz + + intltool + gtk3-devel + glib2-devel + pango-devel + docbook-xsl + libxslt-devel + gdk-pixbuf-devel + + util/archive/xarchiver/pspec.xml + + + xarchiver + + rar + gtk3 + lzip + bzip2 + p7zip + unrar + pango + libzip + libxslt + xdg-utils + gdk-pixbuf + libarchive + + + /usr/bin + /usr/lib/xfce4/thunar-archive-plugin/xarchiver.tap + /usr/share/applications + /usr/share/icons + /usr/share/pixmaps/xarchiver + /usr/share/doc/xarchiver/images + /usr/share/locale + /usr/share/man/man1 + /usr/share/doc/xarchiver + + + + + 2021-01-25 + 0.5.4.17 + Version bump + Pisi Linux Admins + admin@pisilinux.org + + + 2020-12-13 + 0.5.4.16 + Version Bump + Pisi Linux Admins + admin@pisilinux.org + + + 2020-06-01 + 0.5.4.15 + Version Bump + Pisi Linux Admins + admin@pisilinux.org + + + 2020-04-28 + 0.5.4.14 + First Release + Pisi Linux Admins + admin@pisilinux.org + + + + + + xorriso + https://www.gnu.org/software/xorriso/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv3 + app:console + util.archive + ISO 9660 image manipulation tool + ISO 9660 imaj manipülasyon aracı + xorriso is a program which maps file objects from POSIX compliant filesystems into Rock Ridge enhanced ISO 9660 filesystems and allows session-wise manipulation of such filesystems. It can load the management information of existing ISO images and it writes the session results to optical media or to filesystem objects. Vice versa xorriso is able to restore file objects from ISO 9660 filesystems. + xorriso, POSIX uyumlu dosya sistemlerini Rock Ridge tarafından geliştirilmişs ISO 9660 dosya sistemlerine haritalar ve oturum boyunca bu tür dosya sistemlerinin manipüle edilmesine/değiştirilmesine izin verir. xorriso ISO 9660 dosya sistemlerinden dosya nesnelerini geri yükleyebilir eski haline getirebilir. + xorriso + http://www.gnu.org/software/xorriso/xorriso-1.5.4.pl02.tar.gz + + acl-devel + attr-devel + zlib-devel + libedit-devel + readline-devel + + util/archive/xorriso/pspec.xml + + + xorriso + + acl + attr + zlib + bzip2 + libedit + readline + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/info + /usr/share/doc + + + + + 2021-08-11 + 1.5.4 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-04-27 + 1.5.2 + First release + Erkan IŞIK + erkanisik@pisilinux.org + + + + + + zopfli + https://github.com/google/zopfli + + fury + uglyside@yandex.ru + + Apache-2 + app:console + util.archive + Compression algorithm. + Zopfli Compression Algorithm is a compression library programmed in C to perform very good, but slow, deflate or zlib compression. + https://github.com/google/zopfli/archive/zopfli-1.0.3.tar.gz + + cmake + + util/archive/zopfli/pspec.xml + + + zopfli + + /usr/bin + /usr/lib/cmake + /usr/lib + /usr/include + /usr/share/doc - 2021-10-14 - 3.00 + 2020-01-01 + 1.0.3 First build. fury uglyside@yandex.ru @@ -348470,1357 +328141,223 @@ functionality to build high-performing, platform-independent programs. - NetworkManager - http://projects.gnome.org/NetworkManager + zstd + https://www.zstd.net/ - Pisi Linux Admins + PisiLinux Community admins@pisilinux.org - GPLv2+ + GPL2 app:console - network.connection - Network connection manager powered by D-Bus and UDEV - D-Bus üzerinden yapılandırmaya izin veren, gelişmiş bir ağ yönetim altyapısı - NetworkManager attempts to keep an active network connection available at all times. - NetworkManager, etkin bir bağlantı kurmak ve onu sürekli ayakta tutmak üzere tasarlanmış, D-Bus ve UDEV teknolojilerini kullanan bir ağ yönetim altyapısıdır. - https://download.gnome.org/sources/NetworkManager/1.32/NetworkManager-1.32.12.tar.xz + util.archive + Zstandard - Fast real-time compression algorithm + Zstandard - Fast real-time compression algorithm + Zstandard - Fast real-time compression algorithm + Zstandard - Fast real-time compression algorithm + https://github.com/facebook/zstd/releases/download/v1.5.0/zstd-1.5.0.tar.gz - meson - curl-devel - intltool - dhclient - dhcpcd - gtk-doc - docbook-xsl - autoconf - gettext-devel - ppp-devel - nss-devel - newt-devel - nspr-devel - libnl-devel - audit-devel - elogind-devel - jansson-devel - libsoup-devel - bluez-libs-devel - iptables-devel - wpa_supplicant - dbus-glib-devel - libndp-devel - libmm-glib-devel - dbus-devel - glib2-devel - polkit-devel - readline-devel - libgudev-devel - libutil-linux-devel - python3-pygobject3-devel - libxslt-devel - vala-devel - dbus-python3 - gnutls-devel - mobile-broadband-provider-info - gobject-introspection-devel + libgcc + xz-devel + zlib-devel - network/connection/NetworkManager/pspec.xml + util/archive/zstd/pspec.xml - NetworkManager + zstd - curl - eudev - dbus - nspr - libpsl - glib2 - audit - polkit - readline - dbus-glib - jansson - libutil-linux - nss - newt - ppp - libnl - libsoup - elogind - libgudev - bluez-libs - iproute2 - iptables - libmm-glib - ModemManager - wpa_supplicant - libndp - mobile-broadband-provider-info + xz + zlib - /etc - /usr/share - /etc/dbus-1 + /usr/bin /usr/lib + /usr/share /usr/share/man /usr/share/doc - /usr/bin - /lib/udev - /usr/sbin - /lib/udev/rules.d - /usr/libexec - /run/NetworkManager - /lib/systemd/system - /usr/share/locale - /var/lib/NetworkManager - /etc/NetworkManager/system-connections - /usr/lib/tmpfiles.d/NetworkManager.conf - /etc/polkit-1/localauthority/10-vendor.d - - System.Service - - - NetworkManager.confd - tmpfiles.conf - NetworkManager.conf - dhcp.conf - migrate-comar-network-profiles - gentoo/01-org.freedesktop.NetworkManager.settings.modify.system.pkla - 01-org.freedesktop.ModemManager1.rules - 01-org.freedesktop.NetworkManager.settings.modify.system.rules - - NetworkManager-devel - Development files for NetworkManager - NetworkManager için geliştirme dosyaları + zstd-devel + Development files for zstd - glib2-devel - dbus-glib-devel - NetworkManager + zstd /usr/include - /usr/lib/pkgconfig/ - - - - NetworkManager-docs - Development files for NetworkManager - - NetworkManager - - - /usr/share/gtk-doc + /usr/lib/pkgconfig - - 2021-10-24 - 1.32.12 + + 2021-10-21 + 1.5.0 Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-09-22 - 1.32.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-19 - 1.32.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-11 - 1.32.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-29 - 1.32.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-21 - 1.32.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-19 - 1.32.2 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-04 - 1.32.2 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-04 - 1.30.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-25 - 1.30.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-10 - 1.22.14 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-30 - 1.22.10 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 1.20.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-27 - 1.20.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-11-16 - 1.20.6 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-17 - 1.20.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-01 - 1.14.6 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - systemRestart - - - - 2018-09-16 - 1.10.10 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - systemRestart - - - - 2017-11-04 - 1.8.4 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - systemRestart - - - - 2017-07-30 - 1.8.2 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - systemRestart - - - - 2017-05-28 - 1.8.0 - Revert version - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilnux.org - - systemRestart - - - - 2017-03-15 - 1.0.10 - Revert version - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilnux.org - - systemRestart - - - - 2016-12-15 - 1.0.10 - Revert version - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - systemRestart - - - - 2016-11-12 - 1.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-15 - 1.0.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-25 - 1.0.10 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - systemRestart - - - - - - - ModemManager - http://projects.gnome.org/NetworkManager - PisiLinux Community admins@pisilinux.org - - LGPLv2.1 - app:console - service - network.connection - A manager framework for mobile broadband modems - Mobil modemler için yönetim katmanı - ModemManager provides a unified high level API for communicating with mobile broadband modems. - ModemManager, 3G ve GSM gibi mobil genişbant modemlerle D-Bus üzerinden iletişimi sağlayan bir sistem hizmetidir. - http://www.freedesktop.org/software/ModemManager/ModemManager-1.18.8.tar.xz - - dbus-devel - glib2-devel - libgudev-devel - libxslt-devel - gobject-introspection-devel - polkit-devel - ppp-devel - libqmi-devel - libmbim-devel - intltool - gtk-doc - docbook-xsl - vala-devel - elogind-devel - autoconf-archive - dbus-python3 - python3-pygobject3-devel - - network/connection/ModemManager/pspec.xml - - - ModemManager - - glib2 - libqmi - polkit - libmbim - libgudev - libmm-glib - - - /etc/ModemManager/fcc-unlock.d - /usr/share/doc - /usr/sbin - /usr/share/icons - /usr/share/locale - /usr/share/dbus-1 - /usr/share/gir-1.0/ModemManager-1.0.gir - /lib/udev/rules.d/ - /etc/dbus-1/system.d/ - /usr/lib/ModemManager - /usr/lib/girepository-1.0/ModemManager-1.0.typelib - /usr/share/man/man8/ModemManager.8 - /usr/share/man/man1/mmcli.1 - /usr/share/polkit-1 - /usr/share/bash-completion - /usr/share/ModemManager/fcc-unlock.available.d - /usr/share/ModemManager/mm-foxconn-carrier-mapping.conf - /usr/share/ModemManager/mm-foxconn-t77w968-carrier-mapping.conf - /usr/share/ModemManager/mm-foxconn-t99w175-carrier-mapping.conf - /usr/share/ModemManager/mm-dell-dw5821e-carrier-mapping.conf - /etc/ModemManager/connection.d - /usr/share/ModemManager/connection.available.d/99-log-event - - - - ModemManager-devel - Development files for ModemManager - ModemManager için geliştirme dosyaları - - ModemManager - - - /usr/include/ModemManager/ - /usr/lib/pkgconfig/ModemManager.pc - - - - libmm-glib - D-Bus service for managing modems - shared libraries - - glib2 - libgudev - - - /usr/bin - /usr/share/vala/vapi/libmm-glib.vapi - /usr/share/vala/vapi/libmm-glib.deps - /usr/lib/libmm-glib.so* - /usr/share/man/man8/mmcli.8 - - - - libmm-glib-devel - Development files for libmm-glib - libmm-glib için geliştirme dosyaları - - libmm-glib - glib2-devel - ModemManager-devel - - - /usr/include/libmm-glib/ - /usr/lib/pkgconfig/mm-glib.pc - - - - ModemManager-docs - Development files for ModemManager - - ModemManager - - - /usr/share/gtk-doc - - - - - 2022-05-29 - 1.18.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-11-27 - 1.18.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-10-24 - 1.16.8 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-04 - 1.16.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-06-24 - 1.14.12 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-25 - 1.14.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-12-15 - 1.14.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-10 - 1.14.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-20 - 1.12.10 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-04-30 - 1.12.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-02-02 - 1.10.8 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-26 - 1.10.4 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 1.6.12 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-02-19 - 1.6.12 - Version bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-19 - 1.6.4 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-11-12 - 1.6.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-09 - 1.4.12 - Release Bump - Pisi Linux Community - admin@pisilinux.org - 2016-01-25 - 1.4.12 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - linux-atm - http://linux-atm.sourceforge.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - app:console - library - network.connection - Tools to support ATM networking under Liunx - ATM ağ bağlantısı desteği için araçlar - linux-atm contains tools for Asynchronous Transfer Mode. Supports raw ATM connections (PVCs and SVCs), IP over ATM, LAN emulation, MPOA, Arequipa, and some others. - linux-atm ATM (Asynchronous Transfer Mode) bağlantısı için gerekli çeşitli araçlar ve kitaplıklarını içerir. - mirrors://sourceforge/project/linux-atm/linux-atm/2.5.2/linux-atm-2.5.2.tar.gz - - flex - - - man-pages.patch - remove-define-hacks.patch - 0001-saaldump-atmdump-Include-linux-sockios.h-for-SIOCGST.patch - - network/connection/linux-atm/pspec.xml - - - linux-atm - - flex - - - /lib/firmware - /usr/sbin - /usr/bin - /etc - /usr/lib - /usr/share/man - /usr/share/doc - - - - linux-atm-devel - Development files for linux-atm - linux-atm için geliştirme dosyaları - - linux-atm - - - /usr/include - - - - - 2021-07-02 - 2.5.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2019-04-23 - 2.5.2 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2017-02-18 - 2.5.2 - Release Bump - Kamil Atlı - suvari@pisilinux.org - - - 2016-06-09 - 2.5.2 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-04-13 - 2.5.2 - First release - Ertuğrul Erata - ertugrulerata@gmail.com - - - - - - wpa_supplicant - http://hostap.epitest.fi/wpa_supplicant/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - BSD - service - network.connection - IEEE 802.1X/WPA supplicant for secure wireless transfers - Güvenli kablosuz erişim için IEEE 802.1X/WPA sağlayıcı - wpa_supplicant is a WPA supplicant with support for WPA and WPA2. - WPA ve WPA2 desteği olan ve Linux, BSD ve Windows ortamları için bir WPA istemcisidir. - https://w1.fi/releases/wpa_supplicant-2.9.tar.gz - - wpa_supplicant.config - - - libnl-devel - openssl-devel - dbus-devel - readline-devel - - - 0001-P2P-Fix-copying-of-secondary-device-types-for-P2P-gr.patch - ubuntu/01_use_pkg-config_for_pcsc-lite_module.patch - wpa_supplicant-1.0-dbus-path-fix.patch - mandriva/wpa_supplicant-0.6.3-WEP232.patch - fedora/wpa_supplicant-openssl-more-algs.patch - fedora/wpa_supplicant-flush-debug-output.patch - fedora/wpa_supplicant-assoc-timeout.patch - suse/wpa_supplicant-errormsg.patch - - network/connection/wpa_supplicant/pspec.xml - - - wpa_supplicant - - libnl - dbus - openssl - readline - - - /etc - /etc/dbus-1 - /usr/sbin - /usr/bin - /usr/lib - /usr/share/doc - /usr/share/man - /usr/share/dbus-1/system-services - /run - - - System.Service - - - wpa_supplicant.conf - wpa_supplicant.confd - wpa_supplicant.logrotate - wpa_supplicant.py - - - - - 2021-07-02 - 2.9 - Rebuild. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-01-22 - 2.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-13 - 2.6 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-02-17 - 2.6 - Version bump. - Ertuğrul Erata - ertugrulerata@gmail.com - - - 2016-06-09 - 2.4 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2015-07-15 - 2.4 - First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - - - - network-manager-applet - http://projects.gnome.org/NetworkManager - - PisiLinux Community - admins@pisilinux.org - - LGPLv2.1 - app:gui - network.connection - Network connection manager GUI interface - NetworkManager için güçlü bir grafik arayüzü - network-manager-applet is a powerful graphical frontend to NetworkManager. - network-manager-applet, NetworkManager için GTK+ arayüz kitaplığı kullanılarak yazılmış güçlü bir arayüzdür. - https://download.gnome.org/sources/network-manager-applet/1.26/network-manager-applet-1.26.0.tar.xz - - gtk-doc - gtk2-devel - gtk3-devel - libsecret-devel - cairo-devel - pango-devel - libnotify-devel - libmm-glib-devel - gdk-pixbuf-devel - at-spi2-core-devel - NetworkManager-devel - iso-codes-devel - dbus-devel - glib2-devel - dbus-glib-devel - atk-devel - libgudev-devel - intltool - python-six - libnma-devel - libappindicator-devel - - network/connection/network-manager-applet/pspec.xml - - - network-manager-applet - - gtk3 - atk - cairo - pango - libnma - libsecret - libnotify - libmm-glib - gdk-pixbuf - NetworkManager - dbus - glib2 - dbus-glib - libgudev - libappindicator - - - /usr/bin - /usr/share/libnm-gtk - /usr/lib/ - /usr/share/icons - /usr/share/applications - /usr/share/nm-applet - /etc/dbus-1 - /usr/share - /usr/libexec - /etc/gconf/schemas - /etc/xdg/autostart - /usr/share/man - /usr/share/doc - /usr/share/locale - - - - - 2022-03-22 - 1.26.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-08-17 - 1.24.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-07-04 - 1.22.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2021-02-25 - 1.20.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-07-10 - 1.18.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2020-05-20 - 1.16.0 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-10-17 - 1.8.24 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2019-06-02 - 1.8.20 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2018-08-14 - 1.8.16 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-11-04 - 1.8.4 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 1.8.2 - Version Bump. - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-07-30 - 1.8.0 - Rebuild - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-05-28 - 1.8.0 - Version Bump - Mustafa Cinasal - muscnsl@gmail.com - - - 2017-03-21 - 1.0.10 - Release down - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org - - - 2017-03-02 + 2020-02-14 1.4.4 - Version bump. - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilnux.org - - - 2016-11-19 - 1.4.2 - Version bump. - Yusuf Aydemir - yusuf.aydemir@pisilnux.org - - - 2016-06-09 - 1.0.10 - Release Bump - Pisi Linux Community - admin@pisilinux.org - - - 2016-01-26 - 1.0.10 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + PisiLinux Community + admins@pisilinux.org - libnfs - https://github.com/sahlberg/libnfs + zziplib + https://github.com/gdraheim/zziplib - Mogyorósi Petra - squeakymouse@protonmail.com + PisiLinux Community + admins@pisilinux.org - LGPLv2.1 - GPLv3 - BSDv2 + LGPLv2 + MPL-1.1 + ZLIB + app:console library - network.connection - NFS client library - LIBNFS is a client library for accessing NFS shares over a network. - A libnfs egy NFS-kezelő könyvtár, ami háromféle módon tud hozzáférést nyújtani az NFS-szolgáltatásokhoz - https://github.com/sahlberg/libnfs/archive/libnfs-4.0.0.tar.gz + util.archive + libZ-based ZIP-access Library. + libZ tabanlı ZIP erişim kitaplığı + The ZZIPlib provides read access on ZIP-archives and unpacked data. It features an additional simplified API following the standard Posix API for file access. + zziplib zip arşivindeki sıkıştırılmış dosyalara, zlib tarafından sunulan özgür algoritmalarla erişim sağlayan bir kitaplıktır. + https://github.com/gdraheim/zziplib/archive/v0.13.72.tar.gz cmake - libxslt + xmlto + ninja + zlib-devel + aalib-devel + docbook-xsl + docbook-xml + python3-six + python3-devel + libxslt-devel + libsdl2-devel - network/connection/libnfs/pspec.xml + util/archive/zziplib/pspec.xml - libnfs - NFS client library + zziplib - glibc + zlib /usr/bin - /usr/lib/libnfs.so - /usr/lib/libnfs.so.11.0.0 - /usr/lib/libnfs.so.2.0.0 - /usr/share/man/* - /usr/share/doc/* + /usr/lib + /usr/share/man/man3 + /usr/share/doc - libnfs-devel - Development files for libnfs - A libnfs fejlécei + zziplib-devel + Development files for zziplib + zziplib için geliştirme dosyaları - libnfs + zziplib + libsdl2-devel + zlib-devel - /usr/include/* - /usr/lib/pkgconfig/* - /usr/lib/cmake/* + /usr/include + /usr/lib/pkgconfig + /usr/share/aclocal - - 2020-12-13 - 4.0.0 + + 2021-01-21 + 0.13.72 Ver. bump fury uglyside@yandex.ru - - 2018-07-03 - 3.0.0 - Latest revision from GitHub - Mogyorósi Petra - squeakymouse@protonmail.com - - - - - - openvpn - https://openvpn.net/ - - PisiLinux Community - admins@pisilinux.org - - GPLv2 - service - network.connection - A full featured SSL VPN solution - Sanal özel ağ çözümü - OpenVPN is a full-featured SSL VPN solution which can accomodate a wide range of configurations, including remote access, site-to-site VPNs, WiFi security, and enterprise-scale remote access solutions with load balancing, failover, and fine-grained access-controls. - OpenVPN uzaktan bağlantı, kablosuz bağlantı güvenliği gibi konularda çok geniş ayarlar içeren bir sanal özel ağ (VPN) çözümüdür. - https://swupdate.openvpn.org/community/releases/openvpn-2.5.2.tar.xz - - openvpn-test.sh - - - git - cmake - iproute2 - pam-devel - lz4-devel - lzo-devel - openssl-devel - p11-kit-devel - - network/connection/openvpn/pspec.xml - - - openvpn - A full featured SSL VPN solution - - lzo - lz4 - pam - openssl - p11-kit - iproute2 - - - /usr/lib - /run/openvpn - /usr/share/man - /usr/share/doc - /etc/openvpn - /usr/include - /usr/sbin - /usr/share/openvpn - /usr/lib/tmpfiles.d/openvpn.conf - - - System.Service - - - tmpfiles.conf - roadwarrior-client.conf - roadwarrior-server.conf - - - - - 2021-05-10 - 2.5.2 - First release - PisiLinux Community - admins@pisilinux.org - - - - - - ppp - http://samba.org/ppp - - PisiLinux Community - admins@pisilinux.org - - BSD - GPLv2 - service - network.connection - Point-to-point protocol - patched for PPPOE - Modem ile internet erişimi için PPP (point to point protocol) noktadan noktaya erişim protokolü - The Point-to-Point Protocol (PPP) provides a standard way to transmit datagrams over a serial link. - PPP protokolü veriyi seri bir bağlantı üzerinden transfer etmek için standart bir yol sağlar. - https://www.samba.org/ftp/ppp/ppp-2.4.9.tar.gz - http://distfiles.gentoo.org/distfiles/ppp-dhcpc.tgz - - libpcap-devel - openssl-devel - pam-devel - - - gentoo/0001-Change-Make-vars-to-work-in-Gentoo-builds.patch - gentoo/0002-Use-internal-implementation-of-logwtmp-function.patch - gentoo/0003-Add-MPLSCP-support.patch - gentoo/0004-smarter-killaddr.patch - gentoo/0005-Improve-waiting-for-children-on-exit.patch - gentoo/0006-Remove-one-of-the-2-pidfiles-pidfilename-or-linkpidf.patch - gentoo/0007-Run-etc-ppp-auth-fail-script-if-exists-and-authentic.patch - gentoo/0008-Try-to-create-dev-ppp-if-not-available.patch - gentoo/0009-passwordfd-read-early.patch - gentoo/0010-Add-option-to-ask-peer-for-WINS-address.patch - gentoo/0011-Log-connect-errors-to-var-log-ppp-connect-errors.patch - gentoo/0012-Don-t-hang-when-starting-pppoe-connection-without-se.patch - gentoo/0013-Add-defaultmetric-as-compatibility-option-name.patch - gentoo/0014-Warn-user-of-deprecated-option-defaultmetric.patch - gentoo/85_all_dhcp-make-vars.patch - gentoo/86_all_dhcp-sys_error_to_strerror.patch - - network/connection/ppp/pspec.xml - - - ppp - - libpcap - pam - openssl - - - /etc - /usr/lib/tmpfiles.d/ppp.conf - /usr/lib - /usr/sbin - /usr/share/doc - /usr/share/man - /run/ppp - - - tmpfiles.conf - options-pptp - options-pppoe - chat-default - ip-up - ip-down - confd.ppp0 - ppp.pamd - ppp.logrotate - - - - ppp-devel - Development files for ppp - ppp için geliştirme dosyaları - - ppp - - - /usr/include - - - - - 2021-02-25 - 2.4.9 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com - - 2020-01-21 - 2.4.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2020-06-23 + 0.13.71 + Ver. bump + fury + uglyside@yandex.ru - 2018-08-13 - 2.4.7 - Rebuild New T. - Mustafa Cinasal - muscnsl@gmail.com + 2019-10-31 + 0.13.68 + Ver. bump + fury + uglyside@yandex.ru - 2017-02-18 - 2.4.7 - Version Bump - Kamil Atlı - suvari@pisilinux.org + 2016-04-04 + 0.13.62 + Rebuilt with docker + İbrahim KARAGÜZEL + karaguzelibrahim@gmail.com - 2016-06-09 - 2.4.6 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2013-01-16 + 0.13.62 + Rebuild for 1.0 + Richard de Bruin + richdb@pisilinux.org - 2016-03-26 - 2.4.6 + 2012-11-03 + 0.13.62 First release - Marcin Bojara - marcin@pisilinux.org + Osman Erkan + osman.erkan@pisilinux.org - openconnect - http://www.infradead.org/openconnect.html + crypto++ + https://www.cryptopp.com PisiLinux Community admins@pisilinux.org - LGPLv2+ - app:console - network.connection - A client for Cisco's AnyConnect VPN, which uses HTTPS and DTLS protocols - Cisco AnyConnect VPN için HTTP ve DTLS protokollerini kullanan istemci - openconnect provides the core HTTP and authentication support from the OpenConnect VPN client, to be used by GUI authentication dialogs for NetworkManager etc. - openconnect, NetworkManager gibi grafik arayüz yoluyla kimlik doğrulama yapan araçlar için OpenConnect VPN kimlik doğrulama desteği sunan bir araç ve kitaplıktır. - https://www.infradead.org/openconnect/download/openconnect-8.10.tar.gz + public-domain + library + util.crypt + Public domain C++ class library of cryptographic schemes + Değişik kripto şemaları içeren kamu malı C++ kitaplığı + Klasa C++ dostarczająca narzędzia do kryptografii + crypto++ is a free C++ class library of cryptographic schemes. One purpose of Crypto++ is to act as a repository of public domain (not copyrighted) source code. Although the library is copyrighted as a compilation, the individual files in it are in the public domain. + crypto++, kriptografik şemalar içeren özgür bir C++ kitaplığıdır. Crypto++ kitaplığının en önemli özelliği kodlarının kamu malı (telif haksız) olmasıdır. Kitaplık, seçki olarak telif haklarına sahip olsa da, dosyalar tek tek kamu malıdır. + crypto++ jest klasą C++ dostarczającą narzędzia do kryptografii. + https://github.com/weidai11/cryptopp/archive/CRYPTOPP_8_2_0.tar.gz + + cryptopp.pc + - libproxy-devel - intltool - lz4-devel - python3-devel - openssl-devel - libxml2-devel - zlib-devel - mit-kerberos - gnutls-devel - p11-kit-devel - e2fsprogs-devel + cmake + dos2unix - network/connection/openconnect/pspec.xml + + cve-2019-14318.patch + + util/crypt/crypto++/pspec.xml - openconnect + crypto++ - lz4 - zlib - libxml2 - openssl - mit-kerberos - gnutls - p11-kit - e2fsprogs - bash-completion - libproxy + libgcc - /usr/bin/openconnect - /usr/libexec/openconnect - /usr/share/man/man8 - /usr/share/doc - /usr/share/locale - /usr/sbin + /usr/bin /usr/lib - /usr/share/bash-completion/completions/openconnect + /usr/share - openconnect-devel - Development files and headers for openconnect - openconnect için geliştirme dosyaları ve başlıkları + crypto++-devel + Development files for crypto++ + crypto++ için geliştirme dosyaları + Pliki nagłówkowe do crypto++. - lz4-devel - zlib-devel - p11-kit-devel - gnutls-devel - openssl-devel - libxml2-devel - libproxy-devel - openconnect + crypto++ /usr/include @@ -349828,120 +328365,814 @@ functionality to build high-performing, platform-independent programs. - - 2021-07-02 - 8.10 + + 2020-11-20 + 8.2.0 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2020-04-08 - 8.05 - Version bump - Pisi Linux Community - admin@pisilinux.org - - 2018-08-15 - 7.08 - Rebuild - Pisi Linux Community - admin@pisilinux.org + 2019-04-23 + 7.0.0 + Version Bump + PisiLinux Community + admins@pisilinux.org - 2017-03-02 - 7.08 + 2018-02-22 + 7.0.0 Version Bump - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + PisiLinux Community + admins@pisilinux.org - 2016-06-09 - 7.06 - Release Bump - Pisi Linux Community - admin@pisilinux.org + 2018-02-22 + 6.0.0 + Version Bump + PisiLinux Community + admins@pisilinux.org - 2015-08-15 - 7.06 + 2017-01-04 + 5.6.5 First release - Ayhan Yalçınsoy - ayhanyalcinsoy@pisilinux.org + Alihan Öztürk + alihan@pisilinux.org - bridge-utils - http://www.linuxfoundation.org/collaborate/workgroups/networking/bridge + gnupg + http://www.gnupg.org/ PisiLinux Community admins@pisilinux.org - GPLv2 + GPLv3+ app:console - network.connection - Linux network bridging utilities - Linux için ağ köprüleme yardımcı uygulamaları - Containts userspace driver for IEEE 802.1d ethernet bridging (plus Spanning Tree protocol) for the linux kernel. - Linux için ağ köprüleme yardımcı uygulamaları. - https://www.kernel.org/pub/linux/utils/net/bridge-utils/bridge-utils-1.7.1.tar.xz + util.crypt + The GNU Privacy Guard, a PGP replacement + GNU Gizlilik Koruması + GnuPG allows to encrypt and sign your data and communication, features a versatile key managment system as well as access modules for all kinds of public key directories. + GnuPG verilerinizin ve iletişimlerinizin şifrelenmesi ve imzalanmmasını sağlar, her tür genel anahtar dizinleri için modullere erişiminde olduğu gibi çok yönlü anahtar yönetim sistemi avantajı vardır. + https://www.gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.27.tar.bz2 + + openldap-client + pinentry + npth-devel + libassuan-devel + libksba-devel + zlib-devel + bzip2 + texinfo + sqlite-devel + gnutls-devel + readline-devel + libgcrypt-devel + libgpg-error-devel + libusb-compat-devel + - bridge-utils-1.0.4-inc.patch + gnupg-2.1.20-gpgscm-Use-shorter-socket-path-lengts-to-improve-tes.patch - network/connection/bridge-utils/pspec.xml + util/crypt/gnupg/pspec.xml - bridge-utils + gnupg + + openldap-client + sqlite + npth + libassuan + pinentry + libksba + zlib + bzip2 + gnutls + readline + libgcrypt + libgpg-error + libusb + libusb-compat + - /usr/include - /usr/lib /usr/bin + /usr/sbin + /usr/libexec /usr/share/doc + /usr/share/doc/html + /usr/share/gnupg + /usr/share/info + /usr/share/locale /usr/share/man + + dirmngr + + + dirmngr + + + System.Package + + + + gnupg-docs + Documentation files for GnuPG + GnuPG paketine ait API dokümantasyonu + + gnupg + + + /usr/share/doc/gnupg/html + /usr/share/gnupg/help.* + /usr/share/doc/gnupg/faq.html + + + 2021-05-28 + 2.2.27 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-09 + 2.2.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 2.2.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 2.2.19 + Version bump. + İdris Kalp + idriskalp@gmail.com + - 2021-07-02 - 1.7.1 + 2019-09-15 + 2.2.17 Version bump. Mustafa Cinasal muscnsl@gmail.com - 2020-03-19 - 1.6 - Rebuild. - Pisi Linux Community + 2018-08-05 + 2.2.4 + Version bump + PisiLinux Community admin@pisilinux.org - 2018-08-19 - 1.6 - Rebuild. - Pisi Linux Community - admin@pisilinux.org + 2017-01-25 + 2.1.18 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2017-03-20 - 1.6 - Version Bump - Thanks to Mustafa Cinasal - admin@pisilinux.org + 2016-12-24 + 2.1.17 + Version bump. + Stefan Gronewold + groni@pisilinux.org - 2016-06-09 - 1.5 + 2016-06-08 + 2.1.7 Release Bump Pisi Linux Community admin@pisilinux.org - 2014-01-19 - 1.5 + 2015-08-21 + 2.1.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gnutls + http://www.gnutls.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + library + util.crypt + GNU TLS Library + GNU TLS Kütüphanesi + Biblioteka GNU TLS (Transport Layer Security) + GnuTLS est un projet dont l'objectif est de développer une librairie fournissant une couche de sécurité au dessus d'une couche de transport fiable. Actuellement la librairie GnuTLS implémente les standards proposés par le groupe de travail TLs de l'IETF. + gnutls is a project that aims to develop a library which provides a secure layer, over a reliable transport layer. Currently the GnuTLS library implements the proposed standards by the IETF's TLS working group. + GnuTLS, erişilebilir bir gönderim katmanı üzerinde güvenli katman oluşturmayı amaçlayan bir projedir. GnuTLS kütüphanesi halen IETF TLS çalışma grubunun öngördüğü standartları uygulamaya geçirmektedir. + GnuTLS es un proyecto que apunta al desarrollo de una librería, que facilite una capa segura, a través de una capa de transporte fiable. Actualmente la librería GnuTLS implementa los estándares propuestos del grupo de trabajo de TLS de IETF. + GnuTLS to projekt mający na celu stworzenie biblioteki udostępniającej powłokę bezpieczeństwa ponad powłoką transportową (np. TCP/IP). Aktualnie biblioteka gnuTLS implementuje standardy proponowane przez grupę roboczą IETF TLS. + https://www.gnupg.org/ftp/gcrypt/gnutls/v3.7/gnutls-3.7.5.tar.xz + + gc-devel + gmp-devel + nettle-devel + autogen-devel + p11-kit-devel + libidn2-devel + libunistring-devel + zlib-devel + zstd-devel + brotli-devel + libtasn1-devel + + util/crypt/gnutls/pspec.xml + + + gnutls + + zlib + zstd + brotli + libidn2 + gmp + nettle + autogen + p11-kit + libgcc + libunistring + libtasn1 + + + /usr/share + /usr/lib + /usr/bin + + + + gnutls-devel + Development files for gnutls + gnutls için geliştirme dosyaları + Pliki nagłówkowe do gnutls. + + nettle-devel + p11-kit-devel + libtasn1-devel + zlib-devel + zstd-devel + brotli-devel + libidn2-devel + gnutls + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/info/gnutls* + /usr/bin/libgnutls*-config + + + libgnutls-config + libgnutls-config + + + + gnutls-32bit + 32-bit shared libraries for gnutls + gnutls için 32-bit paylaşımlı kitaplıklar + 32-bitowe biblioteki GnuTLS. + emul32 + emul32 + + gmp-32bit + zlib-32bit + libidn2-32bit + nettle-32bit + p11-kit-32bit + libtasn1-32bit + + + libgcc + gmp-32bit + zlib-32bit + libidn2-32bit + nettle-32bit + p11-kit-32bit + libtasn1-32bit + + + /usr/lib32 + + + + + 2022-05-15 + 3.7.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-01 + 3.6.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-11 + 3.6.15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 3.6.13 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-07 + 3.6.11.1 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2018-09-16 + 3.6.2 + Rebuild + Mustafa Cianasal + muscnsl@gmail.com + + + 2018-03-03 + 3.6.2 + Rebuild + Mustafa Cianasal + muscnsl@gmail.com + + + 2018-02-21 + 3.6.2 + Version Bump + Mustafa Cianasal + muscnsl@gmail.com + + + 2017-02-18 + 3.5.8 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2017-01-25 + 3.3.26 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 3.3.16 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-25 + 3.3.16 + Release bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-13 + 3.3.16 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + gpgme + http://www.gnupg.org/gpgme.html + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + LGPLv2 + library + util.crypt + GnuPG Made Easy is a library for making GnuPG easier to use + GnuPG Made Easy, GnuPG kullanmayı kolaylaştıran bir kütüphanedir + GPGME est une librairie conçue pour donner aux applications un accès plus facile à GnuPG. Elle fournit une interface de programmation d'application (API) de haut niveau pour la cryptographie permettant de crypter, décrypter, signer, vérifier les signatures et la gestion de clefs. + GPGME is a library designed to make access to GnuPG easier for applications. It provides a high-Level Crypto application programming interface (API) for encryption, decryption, signing, signature verification and key management. + GPGME daha kolay uygulanması amacıyla GnuPG ye erişimi sağlamak için tasarlanmış bir kütüphanedir. Şifreleme, şifre çözme, imzalama, imza kontrolü ve anahtar yönetimi için yüksek düzeyde gizli uygulama programlama arayüzü sağlar. + GPGME es una librería diseñada para simplificar el acceso a GnuPG para aplicaciones. Facilita una interfaz de programación de aplicación (API) de alto nivel para encriptación, decriptación, firmas, verificación de firmas y administración de llaves. + https://www.gnupg.org/ftp/gcrypt/gpgme/gpgme-1.16.0.tar.bz2 + + swig + gnupg + doxygen + python-devel + python3-devel + qt5-base-devel + libassuan-devel + libgpg-error-devel + + util/crypt/gpgme/pspec.xml + + + gpgme + + libgcc + libassuan + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/common-lisp + /usr/share/doc + /usr/share/info + + + + gpgme-devel + Development files for gpgme + gpgme için geliştirme dosyaları + + gpgme + libgpg-error-devel + libassuan-devel + glib2-devel + + + /usr/include + /usr/share/aclocal + /usr/lib/pkgconfig + + + + gpgme-qt5 + Qt5 bindings for gpgme + + gpgme + libgcc + qt5-base + libgpg-error + + + /usr/lib/libqgpgme.so* + /usr/lib/cmake/Qgpgme + + + + gpgme-python + Python bindings for gpgme + + gpgme + python + + + /usr/lib/python2.7/site-packages + + + + gpgme-python3 + Python3 bindings for gpgme + + python3 + gpgme + + + /usr/lib/python3.9/site-packages/ + + + + gpgme-qt5-devel + Development files for gpgme-qt5 + + qt5-base-devel + gpgme + gpgme-qt5 + gpgme-devel + + + /usr/lib/cmake/QGpgme + /usr/include/qgpgme/* + /usr/include/QGpgME/* + + + + + 2021-10-25 + 1.16.0 + Rebuild py3. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-28 + 1.16.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-07 + 1.13.1 + Rebuild. + Mustafa Cinasal + muscnslp@gmail.com + + + 2020-06-03 + 1.13.1 + Rebuild. + Mustafa Cinasal + muscnslp@gmail.com + + + 2020-01-19 + 1.13.1 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2019-11-08 + 1.13.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-15 + 1.13.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 1.10.0 + Rebuild qt5. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-25 + 1.10.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-13 + 1.10.0 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-31 + 1.8.0 + split package. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-07-04 + 1.8.0 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2017-01-02 + 1.7.1 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 1.5.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-21 + 1.5.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libksba + http://www.gnupg.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv3 + library + app:console + util.crypt + rends les certificats X.509 et le CMS facilement accessible aux applications. + Library handling X.509 certificates and CMS data + Çeşitli uygulamaların X.509 sertifikaları ve CMS verilerine kolay erişebilmesini sağlayan bir kitaplık + libksba is a library designed to build software based on the X.509 and CMS protocols. + libksba, X.509 ve CMS protokollerini kullanan yazılımlar üretmek için kullanılan bir kitaplıktır. + https://www.gnupg.org/ftp/gcrypt/libksba/libksba-1.5.1.tar.bz2 + + libgpg-error-devel + + util/crypt/libksba/pspec.xml + + + libksba + + libgpg-error + + + /usr/bin + /usr/lib + /usr/share/info + /usr/share/doc + + + + libksba-devel + Development files for libksba + libksba için geliştirme dosyaları + + libksba + + + /usr/include + /usr/share/aclocal + + + + + 2021-05-28 + 1.5.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-19 + 1.3.5 + Rebuild. + İdris Kalp + idriskalp@gmail.com + + + 2018-08-03 + 1.3.5 + Rebuild. + Mustafa Cinasl + muscnsl@gmail.com + + + 2017-02-19 + 1.3.5 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-12-24 + 1.3.5 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 1.3.3 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-04-12 + 1.3.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libmcrypt + http://mcrypt.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + util.crypt + A thread-safe encryption library + Güvenli şifreleme kütüphanesi. + libmcrypt is a thread-safe encryption library. It allows developers to use a wide range of encryption functions, without making drastic changes to their code. It allows users to encrypt files or data streams without having to be cryptographers. + libmcrypt bir güvenli şifreleme kütüphanesidir. Geliştiricilere kodlarında çok büyük bir değişikliğe gerek duymadan kullanabilecekleri, geniş bir şifreleme fonksiyon kaynağı sunar. Şifreleme uzmanı olmadan dosya ve verileri kolayca şifrelemenizi sağlar. + mirrors://sourceforge/mcrypt/libmcrypt-2.5.8.tar.bz2 + + libmcrypt-2.5.8-nolibltdl.patch + libmcrypt-2.5.8-prototypes.patch + libmcrypt-2.5.8-uninitialized.patch + + util/crypt/libmcrypt/pspec.xml + + + libmcrypt + + /usr/lib + /usr/share/doc/libmcrypt + + + + libmcrypt-devel + Development files for libmcrypt + libmcrypt için geliştirme dosyaları + + libmcrypt + + + /usr/bin + /usr/include + /usr/share/aclocal + /usr/share/man + + + + + 2020-02-22 + 2.5.8 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2018-08-10 + 2.5.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-19 + 2.5.8 + Release Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 2.5.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-01-31 + 2.5.8 First release Stefan Gronewold(groni) groni@pisilinux.org @@ -349950,91 +329181,1267 @@ functionality to build high-performing, platform-independent programs. - mobile-broadband-provider-info - http://live.gnome.org/NetworkManager/MobileBroadband/ServiceProviders + libsodium + https://libsodium.org/ + + Kamil Atlı + suvari@pisilinux.org + + custom:ISC + library + util.crypt + P(ortable|ackageable) NaCl-based crypto library + Modern, taşınabilir, kullanımı kolay bir kripto kitaplığı + Sodium is a modern, easy-to-use software library for encryption, decryption, signatures, password hashing and more. + Modern, taşınabilir, kullanımı kolay bir kripto kitaplığı + https://download.libsodium.org/libsodium/releases/libsodium-1.0.18.tar.gz + + glibc-devel + + util/crypt/libsodium/pspec.xml + + + libsodium + + /usr/lib + /usr/share/doc + + + + libsodium-devel + Development files for libsodium + libsodium için geliştirme dosyaları + + libsodium + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man/man3 + + + + + 2020-01-21 + 1.0.18 + Rebuild + Kamil Atlı + suvari@gmail.com + + + 2019-10-30 + 1.0.18 + First release + Kamil Atlı + suvari@gmail.com + + + + + + libtasn1 + http://www.gnutls.org/ PisiLinux Community admins@pisilinux.org - public-domain - data - network.connection - Service provider specific settings of mobile broadband providers in different countries - Çeşitli ülkelerdeki mobil genişbant servis sağlayıcıları hakkında bilgileri içeren ayar veritabanı - The mobile-broadband-provider-info package contains listings of mobile broadband (3G) providers and associated network and plan information. - mobile-broadband-provider-info paketi, dünya üzerindeki mobil genişbant sağlayıcılarının ve ilgili tarifelerinin listesini tutan bir veritabanıdır. - https://download.gnome.org/sources/mobile-broadband-provider-info/20220511/mobile-broadband-provider-info-20220511.tar.xz - - libxslt-devel - - network/connection/mobile-broadband-provider-info/pspec.xml + GPLv2 + library + util.crypt + ASN.1 library used in GNUTLS + GNUTLS için kullanılan ASN.1 kütüphanesi + libtasn1 is the ASN.1 library which provides ASN.1 structures parsing capabilities for use with GNUTLS. + libtasn1, ASN.1 yapılarının ayrıştırılmasını sağlayan ve GNUTLS içerisinde kullanılan ASN.1 kütüphanesidir. + http://ftp.gnu.org/gnu/libtasn1/libtasn1-4.16.0.tar.gz + util/crypt/libtasn1/pspec.xml - mobile-broadband-provider-info + libtasn1 /usr/share + /usr/lib + /usr/share/man + /usr/share/doc + /usr/bin + + + + libtasn1-devel + Development files for libtasn1 + libtasn1 için geliştirme dosyaları + + libtasn1 + + + /usr/include + /usr/share/man/man3 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libtasn1-32bit + 32-bit shared libraries for libtasn1 + libtasn1 için 32bit kütüphanesi + emul32 + emul32 + + libtasn1 + + + /usr/lib32/ - 2022-05-11 - 20220511 - Version bump. - Mustafa Cinasal - muscnsl@gmail.com + 201-03-01 + 4.16.0 + Version bump + Pisi Linux Community + admin@pisilinux.org - 2021-08-06 - 20210805 + 2020-01-07 + 4.15.0 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 4.13 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-22 + 4.13 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-01-25 + 4.10 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 4.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 4.5 + Release bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-07-13 + 4.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libxcrypt + https://github.com/besser82/libxcrypt/ + + Kamil Atlı + suvari@pisilinux.org + + GPLv2 + app:console + util.crypt + Modern library for one-way hashing of passwords + libxcrypt, şifrelerin tek yönlü hash edilmesi için modern bir kitaplıktır. + libxcrypt is a modern library for one-way hashing of passwords. It supports a wide variety of both modern and historical hashing methods: yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt, md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt, and descrypt. + libxcrypt, şifrelerin tek yönlü hash edilmesi için modern bir kitaplıktır. Çok çeşitli modern ve tarihsel hashing yöntemlerini destekler: yescrypt, gost-yescrypt, scrypt, bcrypt, sha512crypt, sha256crypt, md5crypt, SunMD5, sha1crypt, NT, bsdicrypt, bigcrypt ve descrypt. + https://github.com/besser82/libxcrypt/archive/v4.4.17.tar.gz + + glibc-devel + + util/crypt/libxcrypt/pspec.xml + + + libxcrypt + + /usr/share/doc + /usr/share/man + /usr/lib + + + + libxcrypt-devel + Development files for libxcrypt + + libxcrypt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-01-14 + 4.4.17 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + nss + http://www.mozilla.org/projects/security/pki/nss/ + + Erdinç Gültekin + admins@pisilinux.org + + MPL-2.0 + GPLv2 + LGPLv2.1 + library + util.crypt + Network Security Services + Ağ Güvenlik Servisleri + Network Security Services (NSS) est un ensemble de librairies conçues pour faciliter le développement multi-plateforme d'applications client et serveur sécurisées. Les applications ocnstruite avec NSS peuvent gérer SSL v2 et v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, les certificats X.509 v3 et d'autres standards de sécurité. + Network Security Services (NSS) is a set of libraries designed to support cross-platform development of security-enabled client and server applications. Applications built with NSS can support SSL v2 and v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 certificates, and other security standards. + NSS, platform bağımsız güvenli ağ servisi geliştirme kitaplıklarından oluşur. Bu kitaplık yardımı ile SSL v2 ve v3, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3 sertifikaları ve diğer bir çok güvenlik standardına uygun güvenli sunucu-istemci yazılımları geliştirilebilir. + Network Security Services (NSS) es un conjunto de librerías para desarrollo cross-plataforma de aplicaciones cliente-servidor con facilidad de seguridad. Aplicaciones usando NSS pueden soportar certificados SSL v2 y v3, TLS, PKCS #5, PKCS #7, PKCS #11, PKCS #12, S/MIME, X.509 v3, y otros estándares de seguridad. + https://ftp.mozilla.org/pub/security/nss/releases/NSS_3_78_RTM/src/nss-3.78.tar.gz + + nss.pc.in + nss-config.in + generate-pc-config.sh + + + zlib-devel + sqlite-devel + nspr-devel + + + add_spi+cacert_ca_certs.patch + fedora/add-relro-linker-option.patch + dbm.patch + + util/crypt/nss/pspec.xml + + + nss + + zlib + sqlite + nspr + + + /usr/lib + /usr/bin + /etc + + + ld.so.conf + nssdb/cert8.db + nssdb/key3.db + nssdb/secmod.db + + + + nss-devel + Development files for nss + nss için geliştirme dosyaları + + nspr-devel + nss + + + /usr/bin/nss-config + /usr/include + /usr/lib/pkgconfig + /usr/lib/nss/*.a + + + + + 2022-05-24 + 3.78 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2021-02-25 - 20201225 + + 2022-04-25 + 3.76.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-08 + 3.76 Version bump Kamil Atlı suvari@pisilinux.org - - 2020-02-02 - 20190618 + + 2022-02-14 + 3.75 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2022-01-10 + 3.74 Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2018-08-14 - 20170310 - Rebuild New T. + + 2021-11-11 + 3.72 + Version bump. Mustafa Cinasal muscnsl@gmail.com - - 2017-02-18 - 20170310 + + 2021-10-05 + 3.71 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-05 + 3.69.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-16 + 3.69 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-18 + 3.67 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-31 + 3.66 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 3.63 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2021-02-26 + 3.62 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-12-25 + 3.60 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-12-17 + 3.59 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-10-19 + 3.58 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-24 + 3.56 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-24 + 3.53.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-02 + 3.52.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-05 + 3.52 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-06 + 3.51 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-17 + 3.50 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2020-01-09 + 3.49 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-12-02 + 3.47.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-22 + 3.47 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-04 + 3.46 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-08 + 3.44.1 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-03-28 + 3.42.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-11 + 3.41 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 3.40 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 3.38 + Rebuild for new toolchain. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-08 + 3.38 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-08 + 3.37 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-24 + 3.35 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-26 + 3.33 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-28 + 3.30 Version Bump - Kamil Atlı - suvari@pisilinux.org + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-10 + 3.29 + Release bump. + Stefan Gronewold + groni@pisilinux.org - 2017-02-18 - 20151214 + 2016-06-15 + 3.23 Version Bump - Kamil Atlı - suvari@pisilinux.org + Pisi Linux Community + admin@pisilinux.org - 2016-06-09 - 20120614 + 2016-06-08 + 3.22 Release Bump Pisi Linux Community admin@pisilinux.org - 2012-08-28 - 20120614 + 2016-02-14 + 3.22 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + p11-kit + http://p11-glue.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + BSD + library + util.crypt + Library to work with PKCS#11 modules + Biblioteka i moduł proxy do właściwego wczytywania i współdzielenia modułów PKCS #11 + The p11-kit package Provides a way to load and enumerate PKCS #11 (a Cryptographic Token Interface Standard) modules. + p11-kit zapewnia możliwość ładowania i numeracji modułów PKCS #11 (a Cryptographic Token Interface Standard). + https://github.com/p11-glue/p11-kit/releases/download/0.23.22/p11-kit-0.23.22.tar.xz + + libtasn1-devel + libffi-devel + + util/crypt/p11-kit/pspec.xml + + + p11-kit + + libtasn1 + libffi + + + /usr/bin + /usr/libexec/p11-kit + /usr/share/doc + /usr/share/gtk-doc + /usr/share/p11-kit + /usr/lib + /etc/pkcs11 + + + + p11-kit-devel + p11-kit için geliştirme dosyaları + p11-kit için geliştirme dosyaları. + Pliki nagłówkowe do biplioteki p11-kit. + + p11-kit + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + p11-kit-32bit + 32-bit shared libraries for p11-kit + emul32 + emul32 + + libtasn1-32bit + libffi-32bit + + + p11-kit + libffi-32bit + libtasn1-32bit + + + /usr/lib32 + + + + p11-kit-docs + Development documents for p11-kit + + /usr/share/gtk-doc/html + + + + + 2021-03-01 + 0.23.22 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2020-01-07 + 0.23.18.1 + Version bump + Pisi Linux Community + admin@pisilinux.org + + + 2019-04-01 + 0.23.13 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-23 + 0.23.13 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-31 + 0.23.9 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-02-28 + 0.23.9 + Version Bump. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-17 + 0.23.2 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.23.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-05-27 + 0.23.1 + Release bump + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2015-04-28 + 0.23.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + pinentry + http://www.gnupg.org/aegypten/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + app:console + util.crypt + Collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol + Assuan protokolünün kullanımı için basit PIN veya parola-kelimesi girişi arabirimleri + Pinentry is a collection of simple PIN or passphrase entry dialogs which utilize the Assuan protocol as described by the aegypten project. + Pinetry Aegypten projesi tarafından tanımlanan Assuan protokolünden faydalanan basit PIN veya şifre girme diaologları derlemesidir. + ftp://ftp.gnupg.org/gcrypt/pinentry/pinentry-1.1.0.tar.bz2 + + libsecret-devel + libgpg-error-devel + libassuan-devel + gtk2-devel + pango-devel + libcap-devel + ncurses-devel + glib2-devel + fltk-devel + + util/crypt/pinentry/pspec.xml + + + pinentry + + fltk + libgcc + glib2 + libassuan + libsecret + libgpg-error + libcap + ncurses + + + /usr/bin + /usr/share/info + /usr/share/doc + + + pinentry-wrapper + + + + pinentry-gtk + pinentry for GTK toolkit + GTK+ ile yazılmış pinentry arayüzü + + pinentry + ncurses + libcap + libassuan + libsecret + libgpg-error + glib2 + gtk2 + pango + + + /usr/bin/pinentry-gtk* + + + + + 2020-01-19 + 1.1.0 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2018-08-03 + 1.1.0 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2018-02-22 + 1.1.0 + Version Bump + PisiLinux Community + admins@pisilinux.org + + + 2017-02-17 + 1.0.0 + Version Bump + Kamil Atlı + suvari@pisilinux.org + + + 2016-06-08 + 0.9.5 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-21 + 0.9.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + qca2-qt5 + http://download.kde.org/stable/qca-qt5 + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + util.crypt + Cryptographic Architecture for QT4 + QCA aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. QCA separates the API from the implementation, using plugins known as Providers. QCA2 has been re-written for QT4. + https://download.kde.org/stable/qca/2.3.2/qca-2.3.2.tar.xz + + cmake + gnupg + doxygen + nss-devel + openssl-devel + libgcrypt-devel + cyrus-sasl-devel + qt5-base-devel + + util/crypt/qca2-qt5/pspec.xml + + + qca2-qt5 + + nss + libgcc + openssl + libgcrypt + cyrus-sasl + qt5-base + + + /usr/bin + /usr/qt/4/bin + /usr/lib + /usr/share/doc + /usr/share/man + /usr/share/qca + + + + qca2-qt5-devel + Development files for qca2 + + qca2-qt5 + qt5-base-devel + + + /usr/include/qt5/Qca-qt5/QtCrypto + /usr/lib/cmake/Qca-qt5 + /usr/lib/pkgconfig/qca2-qt5.pc + /usr/lib/qt5/mkspecs/features + + + + + 2021-03-04 + 2.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-07 + 2.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 2.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-02-03 + 2.2.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-07-08 + 2.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-14 + 2.1.3 + Rebuild qt5 + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-25 + 2.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-16 + 2.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-07 + 2.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-22 + 2.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 2.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-19 + 2.1.3 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-15 + 2.1.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-06 + 2.1.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + sbsigntools + https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git/about/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:console + util.crypt + Tools to add signatures to EFI binaries and Drivers + Tools to add signatures to EFI binaries and Drivers + https://git.kernel.org/pub/scm/linux/kernel/git/jejb/sbsigntools.git/snapshot/sbsigntools-0.9.3.tar.gz + https://dev.gentoo.org/~tamiko/distfiles/sbsigntool-0.8-ccan.tar.gz + + openssl-devel + libutil-linux-devel + gnu-efi + help2man + + + sbsigntools-0.9.1-openssl-1.1.0-compat.patch + + util/crypt/sbsigntools/pspec.xml + + + sbsigntools + + openssl + libutil-linux + + + /usr/bin + /usr/share/man + /usr/share/doc + + + + + 2020-11-07 + 0.9.3 + Rebuild + İdris Kalp + idriskalp@gmail.com + + + 2020-01-15 + 0.9.3 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2018-10-21 + 0.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 0.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-14 + 0.8 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + latte-dock + https://www.kde.org/ + + PisiLinux Community + admins@pisilinux.org + + LGPLv3 + library + desktop.kde.addon + Plazma Çerçevelerine dayalı bir platform + Plazma Çerçevelerine dayalı bir platform + Plazma Çerçevelerine dayalı bir platform + Plazma Çerçevelerine dayalı bir platform + https://download.kde.org/stable/latte-dock/latte-dock-0.9.11.tar.xz + + cmake + kconfig-devel + kpackage-devel + kservice-devel + kguiaddons-devel + libksysguard-devel + kactivities-devel + karchive-devel + kcoreaddons-devel + kcrash-devel + kdbusaddons-devel + kdeclarative-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + knewstuff-devel + knotifications-devel + kwayland-devel + kwindowsystem-devel + kxmlgui-devel + plasma-framework-devel + qt5-base-devel + qt5-declarative-devel + qt5-x11extras-devel + qt5-quickcontrols + qt5-graphicaleffects + qt5-quickcontrols2-devel + extra-cmake-modules + libX11-devel + libSM-devel + libxcb-devel + + util/dock/latte-dock/pspec.xml + + + latte-dock + + ki18n + kcrash + libX11 + libgcc + libxcb + kconfig + kxmlgui + karchive + kpackage + kwayland + qt5-base + knewstuff + kservice + kguiaddons + libksysguard + kactivities + kcoreaddons + kdbusaddons + kiconthemes + kdeclarative + kglobalaccel + kwindowsystem + qt5-x11extras + knotifications + qt5-declarative + plasma-framework + + + /usr/bin + /etc/xdg + /usr/lib + /usr/share + /usr/share/dbus-1 + /usr/share/locale + /usr/share/metainfo + /usr/share/doc + + + + + 2020-09-15 + 0.9.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-04 + 0.9.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-20 + 0.9.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-27 + 0.9.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-04 + 0.9.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-09-18 + 0.9.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-08-03 + 0.9.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2019-03-03 + 0.8.7 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-02-16 + 0.8.6 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-02-15 + 0.8.5 + Rebuild. + PisiLinux Community + admins@pisilinux.org + + + 2019-01-27 + 0.8.5 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2019-01-13 + 0.8.4 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-11-25 + 0.8.3 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-11-03 + 0.8.2 First release PisiLinux Community admins@pisilinux.org @@ -350043,89 +330450,114 @@ functionality to build high-performing, platform-independent programs. - networkmanager-openvpn - https://gitlab.gnome.org/GNOME/NetworkManager-openvpn + plank + https://launchpad.net/plank - Kamil Atlı - suvari@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - GPL - service - network.connection - OpenVPN support for NetworkManager - NetworkManager için OpenVPN desteği - OpenVPN support for NetworkManager - NetworkManager için OpenVPN desteği - https://gitlab.gnome.org/GNOME/NetworkManager-openvpn/-/archive/1.8.16/NetworkManager-openvpn-1.8.16.tar.gz + GPLv3 + app + util.dock + An elementary fork of Plank, the stupidly-simple dock. + Elegant, simple, clean dock + Plank is meant to be the simplest dock on the planet. The goal is to provide just what a dock needs and absolutely nothing more. It is, however, a library which can be extended to create other dock programs with more advanced features. + Elegant, simple, clean dock + https://github.com/elementary/dock/archive/05fd6fccdf1a769f6737a0d7e57e092825348660.zip - m4 - git - poxml - gettext intltool - openvpn - atk-devel + gettext-devel + bamf-devel + vala-devel gtk3-devel cairo-devel + glib2-devel + libXi-devel pango-devel - libnma-devel - gettext-devel - python3-devel - harfbuzz-devel - libsecret-devel + libX11-devel + libgee-devel + libwnck3-devel + libXfixes-devel gdk-pixbuf-devel - NetworkManager-devel + gnome-menus-devel + libdbusmenu-devel + libdbusmenu-gtk3 + gobject-introspection-devel + meson + granite-devel - network/connection/networkmanager-openvpn/pspec.xml + util/dock/plank/pspec.xml - networkmanager-openvpn + plank - atk + bamf gtk3 cairo glib2 + libXi pango - libnma - python3 - harfbuzz + libX11 + libgee + granite + libwnck3 + libXfixes gdk-pixbuf - NetworkManager + gnome-menus + libdbusmenu-glib + libdbusmenu-gtk3 - /usr/lib - /usr/share/locale - /usr/share/dbus-1/system.d/nm-openvpn-service.conf + /usr/bin + /etc + /usr/lib/plank + /usr/lib/libplank*.so* + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/metainfo + /usr/share/icons /usr/share/doc - /usr/share/metainfo/network-manager-openvpn.metainfo.xml - networkmanager-openvpn-devel - Development files for networkmanager-openvpn - networkmanager-openvpn için geliştirme başlıkları + plank-devel + Development files for plank - networkmanager-openvpn + plank + bamf-devel + gtk3-devel + cairo-devel + glib2-devel + libgee-devel + gdk-pixbuf-devel /usr/include - /usr/lib/pkgconfig + /usr/lib/pkgconfig + + 2021-07-17 + 20210715 + Switched to eOS plank fork. + Berk Çakar + berk2238@hotmail.com + - 2021-11-28 - 1.8.16 + 2021-03-28 + 0.11.89 First release - Kamil Atlı - suvari@pisilinux.org + Pisi Linux Admins + admin@pisilinux.org - netcf - https://fedorahosted.org/netcf + augeas + http://augeas.net PisiLinux Community admins@pisilinux.org @@ -350133,54 +330565,40 @@ functionality to build high-performing, platform-independent programs.LGPLv2+ app:console library - network.connection - A library for configuring network interfaces - Ağ arayüzlerini yapılandırmak için geliştirilmiş bir kitaplık - netcf is a cross-platform network configuration library for modifying the network configuration of a system. Network configurations are expressed in XML format. - netcf, XML biçiminde tuttuğu ağ arayüz bilgilerini kullanarak platform-bağımsız ağ yapılandırması olanağı sunan bir kitaplıktır. - https://releases.pagure.org/netcf/netcf-0.2.8.tar.gz + util.misc + A library for changing configuration files + Yapılandırma dosyalarını düzenlemek için bir kitaplık + augeas is a library for programmatically editing configuration files. Augeas parses configuration files into a tree structure, which it exposes through its public API. + augeas yapılandırma dosyalarının programlama dilleri üzerinden düzenlenmesini sağlayan bir kitaplıktır. augeas yapılandırma dosyalarını ayıklayıp bir ağaç yapısı şeklinde programcıya sunar. + http://download.augeas.net/augeas-1.12.0.tar.gz - gcc - xz-devel libxml2-devel - libxslt-devel - libnl-devel readline-devel - augeas-devel - network/connection/netcf/pspec.xml + util/misc/augeas/pspec.xml - netcf + augeas - xz - zlib - libnl - augeas libxml2 - libxslt readline - libgcrypt - libgpg-error /usr/bin - /usr/libexec/ - /etc/rc.d/init.d /usr/lib - /usr/share/netcf + /usr/share/augeas + /usr/share/vim/vimfiles /usr/share/doc - /usr/share/man/man1/ncftool.1 + /usr/share/man - netcf-devel - Development files for netcf - netcf için geliştirme dosyaları + augeas-devel + Development files for augeas + augeas için geliştirme dosyaları - augeas-devel - libxslt-devel - netcf + augeas + libxml2-devel /usr/include @@ -350189,43 +330607,20343 @@ functionality to build high-performing, platform-independent programs. + + 2020-01-25 + 1.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + - 2020-03-13 - 0.2.8 - Rebuild - Kamil Atlı - suvari@pisilinux.org + 2018-07-31 + 1.10.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2018-08-31 - 0.2.8 - Release Bump - Kamil Atlı - suvari@pisilinux.org + 2018-01-14 + 1.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com - 2017-04-29 - 0.2.8 - Release Bump - Kamil Atlı - suvari@pisilinux.org + 2017-01-25 + 1.7.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org - 2016-06-09 - 0.2.8 + 2016-06-08 + 1.4.0 Release Bump Pisi Linux Community admin@pisilinux.org 2015-12-31 - 0.2.8 + 1.4.0 First release Ayhan Yalçınsoy ayhanyalcinsoy@pisilinux.org + + + bleachbit + https://www.bleachbit.org/ + + Stefan Gronewold(groni) + groni@pisilinux.org + + GPL-3 + app:gui + util.misc + Deletes unneeded files to free disk space and maintain privacy. + BleachBit quickly frees disk space and tirelessly guards your privacy. Free cache, delete cookies, clear Internet history, shred temporary files, delete logs, and discard junk you didn't know was there. + mirrors://sourceforge/project/bleachbit/bleachbit/4.2.0/bleachbit-4.2.0.tar.bz2 + + gtk3-devel + python3-setuptools + python-pygobject-devel + python3-pygobject3-devel + + util/misc/bleachbit/pspec.xml + + + bleachbit + + gtk3 + python-pygobject + python3-pygobject3 + + + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + + + + + 2021-04-29 + 4.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-09 + 2.0 + Version bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-05-04 + 1.12 + Rebuild with new toolchain + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-12-04 + 1.12 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + ibus + https://github.com/ibus/ibus/wiki + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + app + util.misc + Intelligent Input Bus for Linux / Unix OS + IBus is an Intelligent Input Bus. It is a new input framework for Linux OS. It provides full featured and user friendly input method user interface. + https://github.com/ibus/ibus/releases/download/1.5.25/ibus-1.5.25.tar.gz + + gtk2-devel + gtk3-devel + gtk4-devel + glib2-devel + dconf-devel + vala-devel + libnotify-devel + libxkbcommon-devel + intltool + iso-codes-devel + libxslt + gtk-doc + nodejs + python-six + dbus-python + python3-pygobject3-devel + python3-devel + qt5-base-devel + json-glib-devel + gobject-introspection-devel + docbook-xsl + libXtst-devel + + util/misc/ibus/pspec.xml + + + ibus + + glib2 + libX11 + atk + gtk2 + gtk3 + cairo + json-glib + libXi + iso-codes + pango + dconf + libnotify + gdk-pixbuf + libxkbcommon + gobject-introspection + python3-pygobject3 + wayland-client + + + /etc/bash_completion.d/ + /etc/gconf/schemas/ibus.schemas + /etc/dconf/ + /usr/bin + /usr/lib + /usr/share + + + + ibus-gtk2 + ibus için gtk2 desteği + + ibus + glib2 + gtk2 + pango + + + /usr/lib/gtk-2.0/2.10.0/immodules/ + + + + ibus-gtk3 + ibus için gtk3 desteği + + ibus + glib2 + gtk3 + pango + + + /usr/lib/gtk-3.0/3.0.0/immodules/ + + + + ibus-gtk4 + ibus için gtk4 desteği + + ibus + glib2 + gtk4 + pango + + + /usr/lib/gtk-4.0/4.0.0/immodules/ + + + + ibus-devel + ibus için geliştirme dosyaları + ibus için geliştirme dosyaları + + ibus + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-08-24 + 1.5.25 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-15 + 1.5.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 1.5.21 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2019-10-24 + 1.5.19 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-24 + 1.5.19 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-05 + 1.5.17 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 1.5.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-06 + 1.5.14 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2017-01-25 + 1.5.14 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 1.5.10 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-06-16 + 1.5.10 + First release + Vedat Demir + vedat@pisilinux.org + + + + + + krusader + http://krusader.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + util.misc + Advanced KDE twin-panel(commander-style) file-manager + Krusader is an advanced twin panel (commander style) file manager for KDE and other desktops in the *nix world, similar to Midnight or Total Commander.. + krusader + http://kde.mirrors.omnilance.com/stable/krusader/2.7.1/krusader-2.7.1.tar.xz + + qt5-base-devel + qt5-qdbusviewer + qt5-xmlpatterns-devel + kparts-devel + kwallet-devel + kxmlgui-devel + kguiaddons-devel + zlib-devel + plasma-framework-devel + kdoctools-devel + extra-cmake-modules + karchive-devel + kbookmarks-devel + kcodecs-devel + kcompletion-devel + kcoreaddons-devel + kconfig-devel + ki18n-devel + kiconthemes-devel + kitemviews-devel + kio-devel + knotifications-devel + solid-devel + ktextwidgets-devel + kwidgetsaddons-devel + kwindowsystem-devel + kservice-devel + kjobwidgets-devel + kconfigwidgets-devel + cmake + + util/misc/krusader/pspec.xml + + + krusader + + qt5-base + kparts + kwallet + kguiaddons + kxmlgui + zlib + plasma-framework + kdoctools + karchive + kbookmarks + kcodecs + kcompletion + kcoreaddons + kconfig + ki18n + kiconthemes + kitemviews + kio + knotifications + solid + ktextwidgets + kwidgetsaddons + kwindowsystem + acl + libgcc + kservice + kjobwidgets + kconfigwidgets + p7zip + rar + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/doc + + + + + 2018-09-10 + 2.7.1 + Version Bump + Pisi Linux Community + admin@pisilinux.org + + + 2017-05-16 + 2.6.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 15.08 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-04-10 + 15.08 + First release + Stefan Gronewold + groni@pisilinux.org + + + + + + lf + https://godoc.org/github.com/gokcehan/lf + + fury + uglyside@yandex.ru + + MIT + app:console + util.misc + Terminal file manager. + lf (as in "list files") is a terminal file manager written in Go. It is heavily inspired by ranger with some missing and extra features. + https://github.com/gokcehan/lf/archive/refs/tags/r27.tar.gz + + golang + + util/misc/lf/pspec.xml + + + lf + + /usr/bin + /usr/share/applications + /usr/share/man/man1/lf.1 + /usr/share/doc + + + + + 2022-04-14 + 27 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-01 + 26 + Version bump. + fury + uglyside@yandex.ru + + + 2021-10-13 + 25 + First build + fury + uglyside@yandex.ru + + + + + + lsof + http://people.freebsd.org/~abe/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Lists open files for running Unix processes + Çalışan UNIX süreçleri tarafından açılan dosyaları listeyen bir araç + Lista archivos abiertos por procesos unix en ejecución + lsof is a Unix-specific diagnostic tool. Its name stands for LiSt Open Files, and it does just that. It lists information about any files that are open by processes currently running on the system. It can also list communications open by each process. + lsof sistemde çalışmakta olan UNIX süreçleri tarafından açılmış dosyaları listeleyen kullanışlı bir araçtır. + Lsof es una herramienta de diagnostica específica de Unix. Su nombre quiere decir LiSt Open files (listar archivos abiertos), y hace justamente esto. Genera una lista con información sobre cada archivo abierto por procesos que están activos en el sistema. También puede listar comunicaciones abiertas por cada proceso. + https://sourceforge.net/projects/pisilinux/files/source/lsof_4.91_src.tar/download + util/misc/lsof/pspec.xml + + + lsof + + /usr/sbin + /usr/share/doc + /usr/share/lsof + /usr/share/man + + + + + 2020-01-14 + 4.91 + Version bump. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-25 + 4.84 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2017-04-29 + 4.84 + Rebuild with new toolchain + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 4.84 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-03-09 + 4.84 + First release + Kamil Atlı + suvarice@gmail.com + + + + + + mc + http://www.midnight-commander.org/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + GNU Midnight Commander cli-based file manager + GNU Midnight Commander konsol kip dosya yöneticisi + Contains GNU Midnight Commander cli-based file manager. You can do lots of file management and editing tasks, both in normal terminals and in terminal emulators of X. Also has file transfer capabilities over FTP, SSH, and Samba. + GNU Midnight Commander (mc), komut satırında çalışan metin tabanlı bir dosya yönetim ve düzenleme uygulamasıdır. İki sistem arasında FTP, SSH ve Samba protokollerini kullanarak dosya transferlerine de olanak verir. + http://ftp.midnight-commander.org/mc-4.8.26.tar.xz + + libX11-devel + libXt-devel + unzip + glib2-devel + slang-devel + gpm + + util/misc/mc/pspec.xml + + + mc + + e2fsprogs + glib2 + gpm + libssh2 + slang + which + + + /etc/profile.d + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/locale + /usr/share/man + /usr/share/mc + /etc/mc + + + mc.profile + u7z + mc.ini + + + + + 2021-05-29 + 4.8.26 + Version bump. + Erkan IŞIK + erkanisik@pisilinux.org + + + 2018-08-10 + 4.8.20 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 4.8.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 4.8.18 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 4.8.15 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-09 + 4.8.15 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + neofetch + https://github.com/dylanaraps/neofetch + + Berk Çakar + berk2238@hotmail.com + + MIT + util.misc + A fast, highly customizable system info script. + A version of Neofetch patched for Pisi Linux support. + https://github.com/dylanaraps/neofetch/archive/refs/tags/7.1.0.tar.gz + + bash + + + neofetch.1.patch + neofetch.patch + + util/misc/neofetch/pspec.xml + + + neofetch + Hızlı, özelleştirilebilir sistem bilgisi betiği. + + bash + + + /usr/bin/* + /usr/share/* + + + + + 2021-04-06 + 7.1.0 + Fixed file install paths + Berk Çakar + berk2238@hotmail.com + + + 2021-04-05 + 7.1.0 + Pisi Linux Support + Berkan Şahin + cicektaksi@tutanota.com + + + + + + nnn + https://github.com/jarun/nnn + + fury + uglyside@yandex.ru + + BSD-2-Clause + app:console + util.misc + n³ The unorthodox terminal file manager. + nnn (n³) is a full-featured terminal file manager. It's tiny, nearly 0-config and incredibly fast. + https://github.com/jarun/nnn/releases/download/v4.5/nnn-v4.5.tar.gz + + gcc + ncurses-devel + libpcre-devel + readline-devel + + util/misc/nnn/pspec.xml + + + nnn + + ncurses + readline + + + /usr/bin/nnn + /usr/share/ + /usr/share/man/man1 + + + + + 2022-05-28 + 4.5 + Version bump. + fury + uglyside@yandex.ru + + + 2022-04-14 + 4.1 + First build. + fury + uglyside@yandex.ru + + + + + + patchutils + http://cyberelk.net/tim/patchutils/ + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + library + util.misc + A small collection of programs that operate on patch files + A small collection of programs that operate on patch files + Yama dosyalarında çalışan küçük bir program koleksiyonu + Yama dosyalarında çalışan küçük bir program koleksiyonu + http://cyberelk.net/tim/data/patchutils/stable/patchutils-0.4.2.tar.xz + + xmlto + python3-devel + libpcre2-devel + + util/misc/patchutils/pspec.xml + + + patchutils + + libpcre2 + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2021-11-10 + 0.4.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + pugixml + http://pugixml.org + + Stefan Gronewold + groni@pisilinux.org + + MIT + util.misc + Light-weight, simple and fast XML parser for C++ with XPath support + Light-weight, simple and fast XML parser for C++ with XPath support + https://github.com/zeux/pugixml/archive/v1.11.4.tar.gz + + cmake + + util/misc/pugixml/pspec.xml + + + pugixml + + libgcc + + + /usr/lib + + + + pugixml-devel + Development header for pugixml + + pugixml + + + /usr/include + /usr/lib/cmake + + + + + 2021-03-10 + 1.11.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-05 + 1.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-06 + 1.9 + Version Bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.8.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-12 + 1.7 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + qdirstat + https://github.com/shundhammer/qdirstat + + Stefan Gronewold (groni) + groni@pisilinux.org + + GPLv2 + app:gui + util.misc + QDirStat is a graphical application to show where your disk space has gone and to help you to clean it up. + QDirStat is a graphical application to show where your disk space has gone and to help you to clean it up. + This is a Qt-only port of the old Qt3/KDE3-based KDirStat, now based on the latest Qt 5. It does not need any KDE libs or infrastructure. It runs on every X11-based desktop on Linux. + This is a Qt-only port of the old Qt3/KDE3-based KDirStat, now based on the latest Qt 5. It does not need any KDE libs or infrastructure. It runs on every X11-based desktop on Linux, + https://github.com/shundhammer/qdirstat/archive/1.4.tar.gz + + qt5-base-devel + qt5-assistant-devel + qt5-designer-devel + qt5-linguist + qt5-qdbusviewer + zlib-devel + desktop-file-utils + xdg-utils + + util/misc/qdirstat/pspec.xml + + + qdirstat + + zlib + libgcc + qt5-base + + + /usr/bin + /usr/share + /usr/share/doc + + + + + 2018-08-10 + 1.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 1.2 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-08-04 + 1.0 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + rkrenamer + https://sourceforge.net/projects/ktageditor/ + + Stefan Gronewold + groni@pisilinux.org + + LGPL + util.misc + KTag Editor is an Audio tag editor developed in Qt5 framework. + RKrenamer is application for renaming a large number of files. You can rename a large number of files with one click. Insert text in file name, replace, delete or even change the case of name, or serialize the files in folder. + https://sourceforge.net/projects/rkrenamer/files/Source/0.4.0/rkrenamer.zip/download + + qt5-base-devel + + util/misc/rkrenamer/pspec.xml + + + rkrenamer + Application for renaming large number of files + + libgcc + qt5-base + + + /usr/bin + /usr/share + + + + + 2018-08-10 + 0.4.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-21 + 0.4.0 + First Release + Stefan Gronewold + groni@pisilinux.org + + + + + + screen + http://www.gnu.org/software/screen/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Terminal multiplexer (to have multiple sessions in a single terminal window) + Screen bir terminal(komut penceresi) çoğaltıcıdır. + GNU Screen is a free terminal multiplexer developed by the GNU Project. It allows a user to access multiple separate terminal sessions inside a single terminal window or remote terminal session. + screen tek bir terminal penceresini birden çok parçaya bölerek çalışmanızı sağlayan bir uygulamadır. + http://ftp.gnu.org/gnu/screen/screen-4.6.2.tar.gz + util/misc/screen/pspec.xml + + + screen + + ncurses + + + /run + /etc + /usr/share/man + /usr/share/doc + /usr/bin + /usr/share/info + /usr/share/screen + /usr/share/terminfo + /usr/lib/tmpfiles.d/screen.conf + + + System.Package + + + screenrc + screen.pam.system-auth + tmpfiles.conf + + + + + 2018-08-10 + 4.6.2 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 4.6.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 4.5.0 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 4.3.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-08-07 + 4.3.1 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + strace + https://strace.io/ + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + util.misc + Tracks and displays system calls associated with a running process + Çalışan bir süreç ile ilişkili sistem çağrılarını gösteren bir araç + Herramienta útil para diagnostico, aprendizaje y depuración + strace intercepts and records the system calls called and received by a running process. strace can print a record of each system call, its arguments and its return value. + strace, çalışan bir UNIX süreci tarafından çağırılan ve alınan sistem çağrılarını, bu çağrılara verilen parametreleri ve dönüş değerlerini gösteren bir hata ayıklama aracıdır. + https://strace.io/files/5.15/strace-5.15.tar.xz + + libunwind-devel + + util/misc/strace/pspec.xml + + + strace + + libunwind + + + /usr/bin + /usr/share/doc + /usr/share/man + + + + + 2022-02-04 + 5.15 + Version bump. + Pisilinux Community + admins@pisilinux.org + + + 2021-11-11 + 5.14 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2021-10-17 + 5.10 + Kernel bump. + PisiLinux Community + admins@pisilinux.org + + + 2020-09-11 + 5.8 + Kernel bump. + PisiLinux Community + admins@pisilinux.org + + + 2020-08-13 + 4.21 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 4.21 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 4.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 4.15 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-06-08 + 4.9 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 4.9 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + tidy + http://tidy.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + HTML and XML error checking + HTML ve XML hata denetleme aracı + tidy, as the name suggests, tidies the layout of and corrects errors in HTML and XML documents. + tidy, HTML ve XML belgelerinin düzenini denetleyen ve hatalarını düzelten bir araçtır. + https://github.com/htacg/tidy-html5/archive/5.6.0/tidy-html5-5.6.0.tar.gz + + cmake + libxslt-devel + + util/misc/tidy/pspec.xml + + + tidy + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + tidy-devel + Development files for tidy + tidy için geliştirme dosyaları + + tidy + + + /usr/include + /usr/lib/pkgconfig + + + + + 2019-04-18 + 5.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 20101110 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-01 + 20101110 + Rebuild for new toolchain. + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 20101110 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2012-10-04 + 20101110 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + tmux + https://github.com/tmux/tmux + + PisiLinux Community + admins@pisilinux.org + + BSD + ISC + app:console + util.misc + A terminal multiplexer + Bir terminal çoğaltıcı uygulaması + Tmux is a terminal multiplexer. It's similar to GNU Screen. + tmux bir terminal çoğaltıcısıdır. GNU screen gibi terminal pencerenizi birden fazla parçalara bölerek çalışmanızı sağlar. + https://github.com/tmux/tmux/releases/download/2.8/tmux-2.8.tar.gz + + libevent-devel + ncurses-devel + + util/misc/tmux/pspec.xml + + + tmux + + libevent + ncurses + + + /usr/bin + /etc + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share + + + + + 2019-02-13 + 2.8 + First release. + Hasan Basri + hbasria@pisilinux.org + + + + + + tracker + https://gitlab.gnome.org/GNOME/tracker + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + util.misc + Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. + Tracker is an efficient search engine and triplestore for desktop, embedded and mobile. + https://download.gnome.org/sources/tracker/3.2/tracker-3.2.1.tar.xz + + meson + gettext-devel + glib2-devel + vala-devel + asciidoc + dbus-devel + icu4c-devel + json-glib-devel + libsoup-devel + libsoup3-devel + libxml2-devel + sqlite-devel + NetworkManager-devel + bash-completion + gobject-introspection-devel + libxslt-devel + python3-pygobject3-devel + + + tracker-3.1.1-Fix-asciidoc-manpage.xsl-location.patch + + util/misc/tracker/pspec.xml + + + tracker + + glib2 + icu4c + sqlite + libsoup + libsoup3 + libxml2 + json-glib + + + /usr/bin + /usr/lib/girepository-1.0 + /usr/lib/lib*.so* + /usr/lib/tracker* + /usr/libexec + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/tracker3 + /usr/share/bash-completion + /usr/share/dbus-1 + + + + tracker-devel + + tracker + glib2-devel + icu4c-devel + sqlite-devel + libxml2-devel + libsoup-devel + json-glib-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/gir-1.0 + /usr/share/vala + + + + + 2021-10-31 + 3.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.1.1 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com + + + + + + tracker-miners + https://gitlab.gnome.org/GNOME/tracker-miners + + Pisi Linux Admins + admins@pisilinux.org + + LGPLv2.1 + util.misc + Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes. + Tracker Miners contains the indexer daemon (tracker-miner-fs-3) and tools to extract metadata from many different filetypes. + https://download.gnome.org/sources/tracker-miners/3.3/tracker-miners-3.3.1.tar.xz + + gettext-devel + glib2-devel + meson + intltool + asciidoc + tracker-devel + desktop-file-utils + ffmpeg-devel + exempi-devel + flac-devel + libgexiv2-devel + gstreamer-devel + libcue-devel + libexif-devel + libgsf-devel + libgxps-devel + libiptcdata-devel + libjpeg-turbo-devel + libosinfo-devel + libpng-devel + libseccomp-devel + tiff-devel + libxml2-devel + libvorbis-devel + poppler-glib-devel + taglib-devel + totem-pl-parser-devel + upower-devel + zlib-devel + gst-plugins-base-devel + giflib-devel + NetworkManager-devel + harfbuzz-devel + + util/misc/tracker-miners/pspec.xml + + + tracker-miners + + tiff + glib2 + icu4c + exempi + giflib + libgsf + libpng + upower + libexif + libgxps + libxml2 + tracker + gstreamer + libgexiv2 + libosinfo + libseccomp + libiptcdata + poppler-glib + libjpeg-turbo + NetworkManager + totem-pl-parser + gst-plugins-base + + + /etc/xdg + /usr/bin + /usr/lib + /usr/libexec + /usr/share/locale + /usr/share/man + /usr/share/doc + /usr/share/glib-2.0 + /usr/share/tracker3-miners + /usr/share/bash-completion + /usr/share/dbus-1 + + + + + 2022-06-01 + 3.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-31 + 3.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-18 + 3.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-15 + 3.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-28 + 3.1.1 + First release for Pisi Linux. + Berk Çakar + berk2238@hotmail.com + + + + + + tree + http://mama.indstate.edu/users/ice/tree/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.misc + Recursive directory listing tool + Dizin listeleme aracı + Tree lists directories recursively, and produces an indented listing of files. + Dizinleri özyineli olarak listeler ve dosya listesini girintili olarak gösterir. + https://launchpad.net/ubuntu/+archive/primary/+sourcefiles/tree/1.7.0-5/tree_1.7.0.orig.tar.gz + util/misc/tree/pspec.xml + + + tree + + /usr/bin + /usr/share/bash-completion + /usr/share/doc + /usr/share/man + + + tree.bashcomp + + + + + 2018-08-10 + 1.7.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-20 + 1.7.0 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-06-08 + 1.7.0 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-25 + 1.7.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + zsync + http://zsync.moria.org.uk/ + + PisiLinux Community + admins@pisilinux.org + + Artistic + app:console + util.misc + A file transfer program that's able to connect to rsync servers + A file transfer program that's able to connect to rsync servers + http://zsync.moria.org.uk/download/zsync-0.6.2.tar.bz2 + util/misc/zsync/pspec.xml + + + zsync + + glibc + + + /usr/bin + /usr/share/man/man1 + /usr/share/doc + + + + + 2021-11-18 + 0.6.2 + First release. + Erkan IŞIK + erkanisik@pisilinux.org + + + + + + bash-completion + https://github.com/scop/bash-completion + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.shell + Programmable completion for bash + Bash kabuğu için otomatik tamamlama + A relatively new feature in bash is programmable completion. Since now, users have been able to complete commands, variables and filenames; now it is also possible to complete parameters. + Kabukta çeşitli uygulamalar için otomatik tamamlama özelliği eklenebilmesine olanak sağlayan bir programdır. + https://github.com/scop/bash-completion/releases/download/2.10/bash-completion-2.10.tar.xz + util/shell/bash-completion/pspec.xml + + + bash-completion + + /etc + /usr/share/doc + /usr/share + /var + + + System.Package + + + pisilinux + + + + + 2020-01-11 + 2.10 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2018-07-29 + 2.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 2.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 2.4 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 2.1 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2014-02-23 + 2.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + bashdb + http://bashdb.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + util.shell + A Debugger for Bash + Bash Kabuğu için bir hata ayıklayıcısı + bashdb is a comprehensive source-code debugger for bash. + bashdb, bash için kapsamlı bir kaynak kodu hata ayıklayıcısıdır. + mirrors://sourceforge/bashdb/bashdb/5.0-1.1.2/bashdb-5.0-1.1.2.tar.gz + util/shell/bashdb/pspec.xml + + + bashdb + + /usr/bin + /usr/share/doc + /usr/share/bashdb + /usr/share/info + /usr/share/man + + + + + 2020-01-25 + 1.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-29 + 0.94 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 0.94 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-17 + 0.92 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2016-06-08 + 0.91 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-01-22 + 0.91 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + dash + http://gondor.apana.org.au/~herbert/dash/ + + PisiLinux Community + admins@pisilinux.org + + BSD + app:console + util.shell + Small and fast POSIX-compliant shell + Ufak ve hızlı POSIX uyumlu kabuk + DASH is a POSIX-compliant implementation of /bin/sh that aims to be as small as possible. + DASH, POSIX uyumlu bir /bin/sh gerçeklemesi olup, olabildiğince ufak olmayı hedefleyen bir kabuktur. + http://gondor.apana.org.au/~herbert/dash/files/dash-0.5.10.2.tar.gz + util/shell/dash/pspec.xml + + + dash + + /bin/dash + /usr/share/man + /usr/share/doc + + + + + 2020-01-25 + 0.5.10.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-29 + 0.5.10.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-14 + 0.5.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-25 + 0.5.9 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-06-08 + 0.5.8 + Release Bump + Pisi Linux Community + admin@pisilinux.org + + + 2015-11-21 + 0.5.8 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + zsh + https://www.zsh.org + + PisiLinux Community + admins@pisilinux.org + + as-is + app:console + util.shell + Powerful command line shell + Güçlü bir diğer komut satırı kabuğu + Zsh is a command interpreter (shell) which has command-line editing, built-in spelling correction, programmable command completion, shell functions (with autoloading), a history mechanism, and a lots of other features. + Zsh komut satırı düzenleme, yanlışları düzeltme, programlanabilir komut tamamlama, kabuk fonksiyonları, geçmiş mekanizması ve diğer bir çok özellikleriyle birlikte gelen bir (kabuk) komut yorumlayıcısıdır. + mirrors://sourceforge/zsh/zsh-5.7.1.tar.xz + + libcap-devel + libpcre-devel + ncurses-devel + + util/shell/zsh/pspec.xml + + + zsh + + libcap + libpcre + ncurses + + + /etc + /bin + /usr/lib/zsh + /usr/share/zsh + /usr/share/man + /usr/share/doc/ + + + zprofile + zshrc + zsh_command_not_found + accept-line + + + + + 2020-01-25 + 5.7.1 + Rebuild. + Mustafa Cinasal + muscnsl@pisilinux.org + + + 2019-02-14 + 5.7.1 + First release. + Hasan Basri + hbasria@pisilinux.org + + + + + + xorg-video-cirrus + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org cirrus video driver + X.Org cirrus ekran kartı sürücüsü + xorg-video-cirrus contains the X.Org driver for Cirrus Logic cards. + xorg-video-cirrus, Cirrus Logic ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-cirrus-1.5.3.tar.bz2 + + libpciaccess-devel + xorg-server-devel + util-macros + + x11/driver/xorg-video-cirrus/pspec.xml + + + xorg-video-cirrus + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.5.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.5.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.5.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.5.3 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.5.3 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.5.3 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.5.3 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.5.3 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.5.3 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.5.3 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + libva-intel-driver + http://freedesktop.org/wiki/Software/vaapi + + Osman Erkan + osman.erkan@pisilinux.org + + MIT + driver + x11.driver + VA-API implementation for Intel G45 and HD Graphics family + libva-intel-driver, VA-API implementation for Intel G45 and HD Graphics family. + https://github.com/01org/intel-vaapi-driver/releases/download/2.4.1/intel-vaapi-driver-2.4.1.tar.bz2 + + libdrm-devel + libX11-devel + libva-devel + + x11/driver/libva-intel-driver/pspec.xml + + + libva-intel-driver + + libdrm + libdrm-intel + libva + + + /usr/lib + /usr/share/doc + + + + + 2021-11-12 + 2.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-30 + 2.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 2.4.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 2.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-22 + 2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 2.0.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.7.3 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.7.3 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-03 + 1.7.2 + Version Bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-05-02 + 1.7.0 + Version Bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.5.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + vdpau-video + http://www.splitted-desktop.com/~gbeauchesne/vdpau-video/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + driver + x11.driver + VDPAU backend for VA API + VA API için VDPAU arka ucu + vdpau-video is a backend for the VA API in order to use VDPAU video acceleration drivers available for some NVIDIA and S3 cards. + vdpau-video, bazı NVIDIA ve S3 kartlar için mevcut olan VDPAU video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. + http://www.freedesktop.org/software/vaapi/releases/libva-vdpau-driver/libva-vdpau-driver-0.7.4.tar.bz2 + + libglvnd-devel + libva-devel + libvdpau-devel + libX11-devel + mesa-devel + + + libva-vdpau-driver-0.7.4-glext-missing-definition.patch + libva-vdpau-driver-0.7.4-libvdpau-0.8.patch + libva-vdpau-driver-0.7.4-VAEncH264VUIBufferType.patch + implement-vaquerysurfaceattributes.patch + fallback-x.patch + vdpau_CreateSurfaceFromV4L2Buf-fix.patch + + x11/driver/vdpau-video/pspec.xml + + + vdpau-video + + libglvnd + libva + libvdpau + libX11 + mesa + + + /usr/lib + /usr/share/doc + + + + vdpau-video-32bit + emul32 + emul32 + + libglvnd-32bit + libva-32bit + libvdpau-32bit + libX11-32bit + mesa-32bit + + + vdpau-video + libglvnd-32bit + libva-32bit + libvdpau-32bit + libX11-32bit + mesa-32bit + + + /usr/lib32 + + + + + 2021-11-12 + 0.7.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.7.4 + First release. + İdris Kalp + idriskalp@gmail.com + + + 2018-07-31 + 0.7.4 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-01-13 + 0.7.4 + rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.7.4 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.7.4 + Rebuild for new libvdpau. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.7.4 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.7.4 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-acecad + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org acecad tablet input driver + X.Org acecad tablet giriş aygıtı sürücüsü + xorg-input-acecad contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-acecad, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-acecad-1.5.0.tar.bz2 + + xorg-server-devel + xorg-proto + libmtdev-devel + sysfsutils-devel + util-macros + + + assign-local-private-after-allocating.patch + + x11/driver/xorg-input-acecad/pspec.xml + + + xorg-input-acecad + + sysfsutils + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.5.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.5.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.5.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.5.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.5.0 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.5.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-elographics + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org Elographics TouchScreen input driver + X.Org Elographics dokunmatik ekran sürücüsü + xorg-input-elographics contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-elographics, Linux için Elographics dokunamtik ekran X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-elographics-1.4.2.tar.bz2 + + xorg-server-devel + libmtdev-devel + util-macros + + x11/driver/xorg-input-elographics/pspec.xml + + + xorg-input-elographics + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.4.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.4.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-18 + 1.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.4.1 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.4.1 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.4.1 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.4.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.4.1 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.4.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-evdev + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org evdev input driver + X.Org evdev giriş aygıtı sürücüsü + xorg-input-evdev contains the X.Org driver for Linux's generic event devices. It supports all input devices that the kernel knows about. + xorg-input-evdev, Linux'un genel olay aygıtları için X.Org sürücüsünü içerir. Çekirdek tarafından bilinen tüm giriş aygıtlarını destekler. + mirrors://xorg/individual/driver/xf86-input-evdev-2.10.6.tar.bz2 + + xorg-server-devel + libmtdev-devel + libevdev-devel + util-macros + eudev-devel + xorg-proto + libevdev-devel + + x11/driver/xorg-input-evdev/pspec.xml + + + xorg-input-evdev + + libmtdev + libevdev + eudev + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + /usr/share/X11/xorg.conf.d/10-evdev.conf + + + + xorg-input-evdev-devel + Development files for evdev driver + evdev sürücüsü için geliştirme dosyaları + + xorg-input-evdev + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-01-07 + 2.10.6 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 2.10.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 2.10.6 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 2.10.6 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.10.6 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-06-03 + 2.10.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 2.10.5 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 2.10.5 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-03 + 2.10.4 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 2.10.2 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 2.9.2 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-joystick + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org joystick input driver + X.Org joystick giriş aygıtı sürücüsü + xorg-input-joystick contains the X.Org driver for joysticks. + xorg-input-joystick, oyun çubukları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-joystick-1.6.3.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-joystick/pspec.xml + + + xorg-input-joystick + + /usr/lib/xorg + /usr/share/man + + + + xorg-input-joystick-devel + Development files for xorg-input-joystick + xorg-input-joystick için geliştirme dosyaları + + xorg-input-joystick + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-12 + 1.6.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.6.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 1.6.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.6.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.6.3 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.6.3 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.6.3 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.6.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.6.2 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.6.2 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-kbd + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org kbd input driver + X.Org kbd giriş aygıtı sürücüsü + xorg-input-kbd contains the X.Org driver for keyboards. + xorg-input-kbd, klavyeler için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-keyboard-1.9.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-kbd/pspec.xml + + + xorg-input-kbd + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.9.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 1.9.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.9.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.9.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.9.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.9.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.9.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.8.1 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.8.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-libinput + http://www.x.org + + PisiLinux Community + admin@pisilinux.org + + MIT + driver + x11.driver + Generic input driver for the X.Org server based on libinput + Xorg sunucusu için genel giriş sürücüsü. + Generic input driver for the X.Org server based on libinput + xorg-input-libinput, libinputa dayalı Xorg sunucusu için genel giriş sürücüsüdür. + mirrors://xorg/individual/driver/xf86-input-libinput-1.2.0.tar.bz2 + + libX11-devel + eudev-devel + xorg-server-devel + libinput-devel + util-macros + + x11/driver/xorg-input-libinput/pspec.xml + + + xorg-input-libinput + + libinput + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + /usr/share/X11/xorg.conf.d + + + + xorg-input-libinput-devel + Development files for xorg-input-libinput + + xorg-input-libinput + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-12 + 1.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-04 + 1.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 1.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.30.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 0.29.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-18 + 0.29.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.28.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-03 + 0.28.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 0.28.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.28.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-11 + 0.27.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-24 + 0.26.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.24.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.24.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-03 + 0.22.0 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 0.19.0 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 0.18.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-mouse + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mouse input driver + X.Org mouse giriş aygıtı sürücüsü + xorg-input-mouse contains the X.Org driver for mice. + xorg-input-mouse, fareler için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-mouse-1.9.3.tar.bz2 + + xorg-server-devel + util-macros + + + 0001-Don-t-disable-3-button-emulation-if-third-mouse-butt.patch + + x11/driver/xorg-input-mouse/pspec.xml + + + xorg-input-mouse + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + xorg-input-mouse-devel + Development files for xorg-input-mouse + + xorg-input-mouse + + + /usr/include/xorg/xf86-mouse-properties.h + /usr/lib/pkgconfig/xorg-mouse.pc + + + + + 2021-11-12 + 1.9.3 + rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.9.3 + rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 1.9.3 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.9.3 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-21 + 1.9.3 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-07-31 + 1.9.3 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-03-11 + 1.9.2 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.9.2 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.9.1 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.9.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-synaptics + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org synaptics input driver + X.Org synaptics giriş aygıtı sürücüsü + xorg-input-synaptics contains the X.Org driver for Synaptics touchpad devices. + xorg-input-synaptics, Synaptics dokunmatik aygıtlar için X.Org sürücüsünü içerir. + http://ftp.x.org/pub/individual/driver/xf86-input-synaptics-1.9.1.tar.bz2 + + libXi-devel + libXtst-devel + libmtdev-devel + xorg-server-devel + libevdev-devel + util-macros + + x11/driver/xorg-input-synaptics/pspec.xml + + + xorg-input-synaptics + + libXi + libXtst + libX11 + libevdev + + + /lib/udev + /usr/bin + /usr/lib/xorg + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + 50-synaptics.conf + 70-touchpad-quirks.rules + + + + xorg-input-synaptics-devel + Development files for xorg-input-synaptics + xorg-input-synaptics için geliştirme dosyaları + + xorg-input-synaptics + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-01-07 + 1.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 1.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-06 + 1.9.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.9.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.9.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.9.0 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.9.0 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.8.3 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.8.2 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-vmmouse + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vmmouse input driver + X.Org vmmouse giriş aygıtı sürücüsü + xorg-input-vmmouse contains the X.Org driver for mice in VMware virtual machines. + xorg-input-vmmouse, VMware sanal makinelerinde fare uyumu için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-input-vmmouse-13.1.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-vmmouse/pspec.xml + + + xorg-input-vmmouse + + /lib/udev + /usr/bin + /usr/libexec + /usr/lib/xorg + /usr/share/X11 + /usr/share/man + + + + + 2021-11-12 + 13.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 13.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 13.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 13.1.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 13.1.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 13.1.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-10 + 13.1.0 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 13.1.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 13.1.0 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-05-08 + 13.1.0 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 13.0.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-void + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org void input driver + X.Org void giriş aygıtı sürücüsü + xorg-input-void is a null input driver which allows the X server to operate without a core pointer and/or core keyboard. + xorg-input-void, X sunucusunun herhangi bir ana işaretçi ve/veya ana klavye olmadan çalışabilmesini sağlayan işlevsiz bir giriş aygıtı sürücüsüdür. + mirrors://xorg/individual/driver/xf86-input-void-1.4.1.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-input-void/pspec.xml + + + xorg-input-void + + /usr/lib/xorg + /usr/share/man + + + + + 2021-11-12 + 1.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.4.1 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.4.1 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.4.1 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.4.1 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.4.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.4.1 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.4.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-input-wacom + http://linuxwacom.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2+ + driver + x11.driver + Input driver for Wacom tablets and drawing devices + Wacom tabletleri ve çizim aygıtları için giriş sürücüsü + xorg-input-wacom includes the drivers and tools for Wacom devices. + xorg-input-wacom, Wacom aygıtlarını kullanmak için sürücü ve araçları içerir. + https://github.com/linuxwacom/xf86-input-wacom/releases/download/xf86-input-wacom-0.40.0/xf86-input-wacom-0.40.0.tar.bz2 + + libXi-devel + libXrandr-devel + xorg-server-devel + libXinerama-devel + eudev-devel + libgudev-devel + doxygen + util-macros + + x11/driver/xorg-input-wacom/pspec.xml + + + xorg-input-wacom + + libX11 + libXi + libXrandr + libXinerama + xorg-server + eudev + + + /lib/udev + /usr/bin + /usr/lib/xorg + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + 70-wacom.rules + + + + xorg-input-wacom-devel + Development files for xorg-input-wacom + xorg-input-wacom için geliştirme dosyaları + + xorg-input-wacom + + + /usr/bin/isdv4-serial-debugger + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-12 + 0.40.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 0.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-15 + 0.39.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.34.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-31 + 0.34.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.34.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 0.34.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.34.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.34.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.34.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-16 + 0.33.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.32.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-05-08 + 0.29.0 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + xorg-video-amdgpu + https://www.x.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.org amdgpu video driver + X.org amdgpu video driver + X.org amdgpu video driver + X.org amdgpu video driver + https://www.x.org/archive/individual/driver/xf86-video-amdgpu-21.0.0.tar.bz2 + + libdrm-devel + libpciaccess-devel + mesa-devel + pixman-devel + util-macros + xorg-server-devel + + x11/driver/xorg-video-amdgpu/pspec.xml + + + xorg-video-amdgpu + + mesa + eudev + libdrm-amd + xorg-server + + + /usr/lib + /usr/share/X11/xorg.conf.d + /usr/share/man + /usr/share/doc + + + + + 2021-11-12 + 21.0.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-27 + 21.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 19.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-18 + 19.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-19 + 19.0.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 18.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 18.1.0 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.18.1 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-17 + 1.18.1 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2018-03-07 + 1.18.0 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2017-09-09 + 1.4.0 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + xorg-video-apm + https://www.x.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org apm video driver + X.Org apm ekran kartı sürücüsü + xorg-video-apm contains the X.Org driver for Alliance Promotion cards. + xorg-video-apm, Alliance Promotion ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-apm-1.3.0.tar.bz2 + + xorg-server-devel + util-macros + xorg-proto + + x11/driver/xorg-video-apm/pspec.xml + + + xorg-video-apm + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-20 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.2.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.2.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.2.5 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.2.5 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.2.5 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.2.5 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.2.5 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.2.5 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-dummy + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org dummy video driver + X.Org dummy ekran kartı sürücüsü + xorg-video-dummy is a dummy video driver for X.Org. + xorg-video-dummy, X.Org için sahte bir ekran kartı sürücüsü içerir. + mirrors://xorg/individual/driver/xf86-video-dummy-0.3.8.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-dummy/pspec.xml + + + xorg-video-dummy + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + + + + + 2021-11-12 + 0.3.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.3.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.3.8 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 0.3.8 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.3.8 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 0.3.8 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.3.8 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.3.8 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.3.7 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.3.7 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-fbdev + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org fbdev video driver + X.Org fbdev ekran kartı sürücüsü + xorg-video-fbdev contains the X.Org driver for Linux framebuffer device. + xorg-video-fbdev, Linux framebuffer aygıtı için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-fbdev-0.5.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-fbdev/pspec.xml + + + xorg-video-fbdev + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 0.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 0.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.4.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 0.4.4 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.4.4 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 0.4.4 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.4.4 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.4.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.4.4 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.4.4 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-i128 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org i128 video driver + X.Org i128 ekran kartı sürücüsü + xorg-video-i128 contains the X.Org driver for Number Nine chipsets. + xorg-video-i128, Number Nine ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-i128-1.4.0.tar.bz2 + + xorg-server-devel + util-macros + + + 1600sw-range-hack.patch + + x11/driver/xorg-video-i128/pspec.xml + + + xorg-video-i128 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-14 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.3.6 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.3.6 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.3.6 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.3.6 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.3.6 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.3.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.3.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-i740 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org i740 video driver + X.Org i740 ekran kartı sürücüsü + xorg-video-i740 contains the X.Org driver for Intel i740 cards. + xorg-video-i740, Intel i740 ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-i740-1.4.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-i740/pspec.xml + + + xorg-video-i740 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-14 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.3.6 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.3.6 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.3.6 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.3.6 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.3.6 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.3.5 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.3.4 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-intel + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org intel video driver + X.Org intel ekran kartı sürücüsü + xorg-video-intel contains the X.Org driver for Intel video chipsets. + xorg-video-intel, Intel ekran kartları için X.Org sürücüsünü içerir. + http://anduin.linuxfromscratch.org/BLFS/xf86-video-intel/xf86-video-intel-20210222.tar.xz + + libX11-devel + libxcb-devel + libXv-devel + libdrm-devel + pixman-devel + libXext-devel + libXtst-devel + libXvMC-devel + xcb-util-devel + libXrandr-devel + libXfixes-devel + libXcursor-devel + libXrender-devel + libXdamage-devel + libXinerama-devel + libdrm-intel + eudev-devel + util-macros + libpciaccess-devel + xorg-server-devel + libxshmfence-devel + libXfont-devel + libXfont2-devel + libXScrnSaver-devel + + x11/driver/xorg-video-intel/pspec.xml + + + xorg-video-intel + + libX11 + libxcb + libXv + libdrm + pixman + libXext + libXtst + libXvMC + xcb-util + libXrandr + libXfixes + libXcursor + libXrender + libXdamage + libXinerama + libdrm-intel + libpciaccess + eudev + libxshmfence + libXScrnSaver + + + /usr/bin + /usr/lib + /usr/libexec + /usr/share/doc + /usr/share/man + /usr/share + + + + + 2022-05-25 + 20210222 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-12 + 20210222 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 20210222 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-30 + 20200817 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 20200518 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 20190723 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 20190208 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 20170826 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 20170826 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 20170826 + Rebuild New T. bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-10 + 20170826 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 20160902 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 20160902 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0340718 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 2.99.917 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-mga + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org mga video driver + X.Org mga ekran kartı sürücüsü + xorg-video-mga contains the X.Org driver for Matrox cards. + xorg-video-mga, Matrox ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-mga-2.0.0.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + util-macros + + x11/driver/xorg-video-mga/pspec.xml + + + xorg-video-mga + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 2.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 2.0.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 2.0.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-14 + 2.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.6.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.6.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.6.5 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.6.5 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.6.5 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.6.4 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.6.3 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-neomagic + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org neomagic video driver + X.Org neomagic ekran kartı sürücüsü + xorg-video-neomagic contains the X.Org driver for NeoMagic cards. + xorg-video-neomagic, NeoMagic ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-neomagic-1.3.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-neomagic/pspec.xml + + + xorg-video-neomagic + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-08 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.2.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.2.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.2.9 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.2.9 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.2.9 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.2.9 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.2.9 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-nouveau + http://nouveau.freedesktop.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org nouveau video driver + X.Org nouveau ekran kartı sürücüsü + xorg-video-nouveau contains the X.Org driver for NVIDIA cards. + xorg-video-nouveau, NVIDIA ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-nouveau-1.0.17.tar.bz2 + + libdrm-nouveau + libpciaccess-devel + mesa-devel + eudev-devel + util-macros + pixman-devel + xorg-server-devel + + + xorg-server-21.1.diff + + x11/driver/xorg-video-nouveau/pspec.xml + + + xorg-video-nouveau + + libdrm + eudev + libdrm-nouveau + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.0.17 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 1.0.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.0.16 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.0.16 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.0.15 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.0.15 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.0.15 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.0.13 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.0.13 + Rebuild for new toolchain. + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-02 + 1.0.13 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 1.0.12 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.0.12 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-openchrome + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org openchrome video driver + X.Org openchrome ekran kartı sürücüsü + xorg-video-openchrome contains the X.Org driver for VIA video chipsets. + xorg-video-openchrome, VIA ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-openchrome-0.6.0.tar.bz2 + + libdrm-devel + libXext-devel + libXv-devel + libXvMC-devel + libglvnd-devel + xorg-server-devel + + x11/driver/xorg-video-openchrome/pspec.xml + + + xorg-video-openchrome + + libX11 + libdrm + libXext + libXv + libXvMC + xorg-server + + + /usr/bin + /usr/sbin + /usr/lib + /usr/share/man + /usr/share/doc + + + + + 2021-11-12 + 0.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 0.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.5.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 0.5.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.5.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.5.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.5.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.4.0 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.3.3 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-r128 + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org r128 video driver + X.Org r128 ekran kartı sürücüsü + xorg-video-r128 contains the X.Org driver for ATI Rage128 video cards. + xorg-video-r128, ATI Rage128 ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-r128-6.12.0.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + util-macros + + x11/driver/xorg-video-r128/pspec.xml + + + xorg-video-r128 + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 6.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 6.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 6.12.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 6.12.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 6.11.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 6.10.2 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 6.10.2 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 6.10.2 + Verson bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 6.10.1 + Verson bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 6.10.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-radeon + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org radeon video driver + X.Org radeon ekran kartı sürücüsü + xorg-video-radeon contains the X.Org driver for ATI video chipsets. + xorg-video-radeon, ATI ekran kartları için X.Org sürücüsünü içerir. + https://gitlab.freedesktop.org/xorg/driver/xf86-video-ati/-/archive/5eba006e4129e8015b822f9e1d2f1e613e252cda/5eba006e4129e8015b822f9e1d2f1e613e252cda.tar.gz + + git + libdrm-devel + libpciaccess-devel + mesa-devel + pixman-devel + util-macros + xorg-server-devel + + x11/driver/xorg-video-radeon/pspec.xml + + + xorg-video-radeon + + eudev + libdrm-radeon + libpciaccess + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + /etc/X11 + /usr/share/X11/xorg.conf.d + + + + + 2021-11-12 + 19.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 19.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-18 + 19.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-19 + 19.0.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 18.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 18.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.18.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-17 + 1.18.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-03-07 + 1.18.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-10-19 + 7.10.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 7.9.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 7.8.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 7.8.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 7.7.0 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2016-04-08 + 7.7.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-rendition + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org rendition video driver + X.Org rendition ekran kartı sürücüsü + xorg-video-rendition contains the X.Org driver for Rendition (Micron) cards. + xorg-video-rendition, Rendition (Micron) ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-rendition-4.2.7.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-rendition/pspec.xml + + + xorg-video-rendition + + xorg-server + + + /usr/lib/xorg/modules/drivers + /usr/lib/xorg/modules/*.uc + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 4.2.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 4.2.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 4.2.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 4.2.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 4.2.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-19 + 4.2.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 4.2.6 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 4.2.6 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 4.2.6 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 4.2.6 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 4.2.5 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-s3virge + https://www.x.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org s3virge video driver + X.Org s3virge ekran kartı sürücüsü + xorg-video-s3virge contains the X.Org driver for S3 Virge cards. + xorg-video-s3virge, S3 Virge ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-s3virge-1.11.0.tar.bz2 + + xorg-server-devel + util-macros + + + check-max-value.patch + + x11/driver/xorg-video-s3virge/pspec.xml + + + xorg-video-s3virge + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.11.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.11.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-20 + 1.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.10.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.10.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.10.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.10.7 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.10.7 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.10.7 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.10.7 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 1.10.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-savage + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org savage video driver + X.Org savage ekran kartı sürücüsü + xorg-video-savage contains the X.Org driver for S3 Savage cards. + xorg-video-savage, S3 Savage ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-savage-2.3.9.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + util-macros + + + git-video-savage.patch + + x11/driver/xorg-video-savage/pspec.xml + + + xorg-video-savage + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 2.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 2.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 2.3.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 2.3.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.3.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 2.3.9 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 2.3.9 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 2.3.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 2.3.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 2.3.8 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-siliconmotion + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org siliconmotion video driver + X.Org siliconmotion ekran kartı sürücüsü + xorg-video-siliconmotion contains the X.Org driver for Silicon Motion cards. + xorg-video-siliconmotion, Silicon Motion ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-siliconmotion-1.7.9.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-siliconmotion/pspec.xml + + + xorg-video-siliconmotion + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.7.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.7.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.7.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.7.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.7.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.7.9 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.7.9 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.7.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.7.8 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.7.8 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-sis + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org sis video driver + X.Org sis ekran kartı sürücüsü + xorg-video-sis contains the X.Org driver for SiS cards. + xorg-video-sis, SiS ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-sis-0.12.0.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + util-macros + + x11/driver/xorg-video-sis/pspec.xml + + + xorg-video-sis + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 0.12.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-18 + 0.11.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.10.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 0.10.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.10.9 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 0.10.9 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.10.9 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.10.9 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.10.8 + Version bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.10.7 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-sisusb + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org sisusb video driver + X.Org sisusb ekran kartı sürücüsü + xorg-video-sisusb contains the X.Org driver for SiS video chips connected via a Net2280-based USB dongle. + xorg-video-sisusb, Net2280 tabanlı USB dongle ile bağlı SiS ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-sisusb-0.9.7.tar.bz2 + + util-macros + xorg-server-devel + + x11/driver/xorg-video-sisusb/pspec.xml + + + xorg-video-sisusb + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 0.9.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.9.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.9.7 + Rebuild . + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 0.9.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.9.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.9.7 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.9.7 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.9.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.9.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-tdfx + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org tdfx video driver + X.Org tdfx ekran kartı sürücüsü + xorg-video-tdfx contains the X.Org driver for Voodoo cards. + xorg-video-tdfx, Voodoo ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-tdfx-1.5.0.tar.bz2 + + libdrm-devel + mesa-devel + xorg-server-devel + util-macros + + x11/driver/xorg-video-tdfx/pspec.xml + + + xorg-video-tdfx + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-06 + 1.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.4.7 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.4.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.4.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.4.7 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.4.7 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.4.7 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.4.7 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.4.6 + Release bump. + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.4.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-v4l + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org v4l video driver + X.Org v4l ekran kartı sürücüsü + v4l is an Xorg driver for video4linux cards. It provides a Xvideo extension port for video overlay. + v4l, video4linux kartları için Xorg sürücüsü içerir. Video yerpaylaşımı (overlay) için bir Xvideo kapısı sağlar. + mirrors://xorg/individual/driver/xf86-video-v4l-0.3.0.tar.bz2 + + util-macros + xorg-server-devel + + x11/driver/xorg-video-v4l/pspec.xml + + + xorg-video-v4l + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 0.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 0.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 0.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-03 + 0.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.2.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.2.0 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.2.0 + Release bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.2.0 + Release bump. + Osman Erkan + osman.erkan@pisilinux.org + + + 2015-05-15 + 0.2.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + xorg-video-vesa + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vesa video driver + X.Org vesa ekran kartı sürücüsü + xorg-input-vesa contains the X.Org driver for Generic VESA cards. + xorg-input-vesa, VESA uyumlu ekran kartları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-vesa-2.5.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-vesa/pspec.xml + + + xorg-video-vesa + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2020-11-12 + 2.5.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-04 + 2.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 2.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 2.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 2.4.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 2.4.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-16 + 2.4.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 2.3.4 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 2.3.4 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 2.3.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 2.3.4 + Version bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 2.3.3 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-vmware + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org vmware video driver + X.Org vmware ekran kartı sürücüsü + xorg-video-vmware contains the X.Org driver for VMWare virtual machines. + xorg-video-vmware, VMWare sanal makineleri için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-vmware-13.3.0.tar.bz2 + + xorg-server-devel + util-macros + + x11/driver/xorg-video-vmware/pspec.xml + + + xorg-video-vmware + + mesa + eudev + libdrm + llvm-libs + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 13.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-24 + 13.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 13.3.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 13.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-19 + 13.3.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 13.3.0 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 13.2.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 13.2.1 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 13.2.1 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 13.2.1 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 13.1.0 + Release bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 13.1.0 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-video-voodoo + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + driver + x11.driver + X.Org voodoo video driver + X.Org voodoo ekran kartı sürücüsü + xorg-video-voodoo contains the X.Org driver for Voodoo1 and Voodoo2 video adapters. + xorg-video-voodoo, Voodoo1 ve Voodoo2 video bağdaştırıcıları için X.Org sürücüsünü içerir. + mirrors://xorg/individual/driver/xf86-video-voodoo-1.2.5.tar.bz2 + + xorg-server-devel + util-macros + + + git-fixes.patch + + x11/driver/xorg-video-voodoo/pspec.xml + + + xorg-video-voodoo + + xorg-server + + + /usr/lib/xorg + /usr/share/doc + /usr/share/man + + + + + 2021-11-12 + 1.2.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-07 + 1.2.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.2.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 1.2.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 1.2.5 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 1.2.5 + rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 1.2.5 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 1.2.5 + Release bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.2.5 + Release bump + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.2.5 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xvba-video + http://www.splitted-desktop.com/~gbeauchesne/xvba-video/ + + PisiLinux Community + admins@pisilinux.org + + freedist + driver + x11.driver + XvBA backend for VA API + VA API için XvBA arka ucu + xvba-video is a backend for the VA API in order to use XvBA video acceleration drivers available for some ATI cards. + xvba-video, bazı ATI kartlar için mevcut olan XvBA video hızlandırma sürücülerini kullanmak için bir VA API arka ucudur. + https://sourceforge.net/projects/pisilinux/files/source/xvba-video-0.8.0.i686.tar.gz + https://sourceforge.net/projects/pisilinux/files/source/xvba-video-0.8.0.x86_64.tar.gz + x11/driver/xvba-video/pspec.xml + + + xvba-video + + libva + libXext + mesa + + + /usr/lib + /usr/share/doc + + + + xvba-video-32bit + 32-bit shared libraries for xvba-video + xvba-video için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + libX11-32bit + libXext-32bit + + + mesa-32bit + xvba-video + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2021-01-07 + 0.8.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.7.8 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-11 + 0.7.8 + rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2017-02-16 + 0.7.8 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.7.8 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-08 + 0.7.8 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + scim + http://www.scim-im.org + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + x11.im + Smart Common Input Method - framework for Input Methods + Smart Common Input Method - Girdi Metodları sistemi + Smart Common Input Method – ogólna metoda wprowadzania + Smart Common Input Method (SCIM - Méthode commune intelligente d'entrée) est un framework (cadre de développement) pour méthodes d'entrée. Il s'agit d'une approche modulaire et flexible pour créer ou utiliser des méthodes d'entrée pour la plateforme X11. + Smart Common Input Method (SCIM) is a framework for Input Methods. It is a modular and flexible approach for authoring and using Input Methods for X11 platform. + Smart Common Input Method (SCIM), X11 platformu için Girdi Metodlarının yönetilmesi ve kullanılması için modüler ve esnek Girdi Metodları sistemi + scim to główny pakiet projektu SCIM, udostępniający podstawowe funkcje i typy danych. + https://github.com/scim-im/scim/archive/1.4.18.tar.gz + + scim-system-config + scim-system-global + + + libXt-devel + libX11-devel + intltool + + + scim-1.4.14-compile.patch + scim-1.4.7-support-more-utf8-locales.patch + scim-initial-locale-hotkey-20070922.patch + scim_panel_gtk-emacs-cc-style.patch + scim-add-restart.patch + + x11/im/scim/pspec.xml + + + scim-core + Core of SCIM for users + + libX11 + libgcc + scim-libs + gtk3 + gtk2 + pango + glib2 + gdk-pixbuf + + + /etc + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + /usr/share/locale + + + scim.session + scim.env + + + + scim-libs + Libraries of SCIM + + cairo + libtool-ltdl + + + /usr/lib/libscim-* + /usr/lib/scim-1.0/*/Config + /usr/lib/scim-1.0/*/IMEngine + + + + scim-devel + Includes and pkgconfig for scim development + + scim-core + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 1.4.18 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.4.18 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 1.4.17 + Rebuild. + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-03 + 1.4.17 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 1.4.16 + Version bump + Burak Erturk + burakerturk@pisilinux.org + + + 2014-05-16 + 1.4.14 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXft + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xft de X.Org + X.Org Xft library + X.Org Xft kitaplığı + X.Org Xft Bibliothek + libXft is the X FreeType interface library. + mirrors://xorg/individual/lib/libXft-2.3.4.tar.bz2 + + xorg-proto + util-macros + freetype-devel + expat-devel + fontconfig-devel + libXrender-devel + + x11/library/libXft/pspec.xml + + + libXft + + libX11 + freetype + fontconfig + libXrender + + + /usr/lib + /usr/share/doc + + + + libXft-devel + Development files for libXft + libXft için geliştirme dosyaları + + libXft + xorg-proto + freetype-devel + fontconfig-devel + libXrender-devel + + + /usr/bin + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXft-32bit + 32-bit shared libraries for libXft + libXft için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + freetype-32bit + fontconfig-32bit + libXrender-32bit + zlib-32bit + libX11-32bit + + + libXft + freetype-32bit + fontconfig-32bit + libXrender-32bit + zlib-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2021-10-19 + 2.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 2.3.3 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-25 + 2.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 2.3.2 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 2.3.2 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-30 + 2.3.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-08-31 + 2.3.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + eglexternalplatform + https://github.com/NVIDIA/eglexternalplatform + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + x11.library + EGL External Platform interface + EGL External Platform interface + EGL Harici Platform arayüzü + EGL Harici Platform arayüzü + https://github.com/NVIDIA/eglexternalplatform/archive/refs/tags/1.1.tar.gz + x11/library/eglexternalplatform/pspec.xml + + + eglexternalplatform + + /usr/include + /usr/lib/pkgconfig + /usr/share/doc + + + + + 2021-06-03 + 1.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + freeglut + http://freeglut.sourceforge.net/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + The OpenGL Utility Toolkit (Freeglut) + OpenGL Araç Kiti (Freeglut) + Freeglut est la boîte à outils utilitaire d'OpenGL, une boîte à outils indépendante du système de fenêtrage pour écrire des programmes OpenGL. Il implémente une Interface de Programmation d'Application (API) de fenêtrage pour OpenGL. Freeglut facilite considérablement l'apprentissage et l'exploration de la programmation en OpenGL. + Freeglut is the OpenGL Utility Toolkit, a window system independent toolkit for writing OpenGL programs. It implements a simple windowing application programming interface (API) for OpenGL. Freeglut makes it considerably easier to learn about and explore OpenGL Programming. + Freeglut, OpenGL programlarını yazmak için bağımsız araç kutusu pencere sistemin olan bir OpenGL Hizmeti Araç Takımıdır. OpenGl için basit bir pencere uygulama proglaması arayüzü (API) sağlar. Freeglut, OpenGL Programlamasını keşfetmek öğrenmek isteyenler için kolaylıklar sağlar. + Freeglut es la caja de herramientas de OpenGL, con herramientas para crear programas OpenGL, independientemente del sistema de ventanas. Facilita una simple interfaz de programación de aplicaciones (API) con ventanas para OpanGL. Freeglut facilita considerablemente el aprendizaje y exploración de la programación OpenGL. + mirrors://sourceforge/freeglut/freeglut-3.2.1.tar.gz + + libglvnd-devel + mesa-glu-devel + libX11-devel + libXi-devel + libXxf86vm-devel + libXext-devel + libXrandr-devel + cmake + + x11/library/freeglut/pspec.xml + + + freeglut + + libglvnd + libX11 + libXi + libXxf86vm + libXrandr + + + /usr/lib + /usr/share/doc/freeglut + + + + freeglut-devel + Development files for freeglut + freeglut için geliştirme dosyaları + + freeglut + + + /usr/include + /usr/lib/pkgconfig + + + + freeglut-32bit + 32-bit shared libraries for freeglut + freeglut için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libglvnd-32bit + mesa-glu-32bit + libXi-32bit + libX11-32bit + libXxf86vm-32bit + libXrandr-32bit + + + freeglut + libglvnd-32bit + libXi-32bit + libXxf86vm-32bit + libX11-32bit + libXrandr-32bit + + + /usr/lib32 + + + + + 2021-03-19 + 3.2.1 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2019-10-23 + 3.0.0 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2018-07-27 + 3.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2017-09-20 + 3.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2016-11-03 + 3.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 3.0.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-04-27 + 3.0.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + ftgl + http://ftgl.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Font rendering library for OpenGL + OpenGL için yazı tipi hazırlama kitaplığı + FTGL is a free, open source library to enable developers to use arbitrary fonts in their OpenGL (www.opengl.org) applications. FTGL uses the Freetype (www.freetype.org) font library to open and 'decode' the fonts. + FTGL özgür, açık kaynak kodlu, OpenGL kullanan uygulamalarda çeşitli yazıtiplerini kullanmaya olanak tanıyan bir kitaplıktır. + https://github.com/frankheckenbach/ftgl/archive/v2.4.0.tar.gz + + freeglut-devel + mesa-devel + mesa-glu-devel + freetype-devel + + x11/library/ftgl/pspec.xml + + + ftgl + + mesa + mesa-glu + libgcc + freetype + + + /usr/lib + /usr/share/doc + + + + ftgl-devel + Development files for ftgl + ftgl için geliştirme dosyaları + + ftgl + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-03-19 + 2.4.0 + Version bump + fury + wascheme@tuta.ii + + + 2020-06-29 + 2.1.3_rc5 + First release + Ali Algul(gulle) + aligulle3801@gmail.com + + + + + + glew + http://glew.sourceforge.net + + PisiLinux Community + admins@pisilinux.org + + BSD + GLX + SGI-B + GPLv2 + app:console + library + x11.library + OpenGL Extension Wrangler Library + OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığı + OpenGL Extension Wrangler Library (GLEW) is a cross-platform C/C++ extension loading library. GLEW provides efficient run-time mechanisms for determining which OpenGL extensions are supported on the target platform. OpenGL core and extension functionality is exposed in a single header file. + OpenGL Extension Wrangler Library (GLEW) çok platform destekli, C/C++ genişleme kitaplığıdır. + mirrors://sourceforge/glew/2.1.0/glew-2.1.0.tgz + + mesa-glu-devel + libglvnd-devel + + x11/library/glew/pspec.xml + + + glew + + libglvnd + libX11 + + + /usr/lib + /usr/share/doc + /usr/bin + + + + glew-devel + Development files for glew + glew için geliştirme dosyaları + + mesa-glu-devel + glew + + + /usr/include/GL + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + glew-32bit + 32-bit shared libraries for glew + glew için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libglvnd-32bit + libX11-32bit + + + libglvnd-32bit + libX11-32bit + glew + + + /usr/lib32 + + + + + 2021-03-19 + 2.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-23 + 2.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-23 + 2.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 2.1.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-05-11 + 2.1.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-15 + 2.0.0 + Rebuild for new Mesa + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-02 + 2.0.0 + Release Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-27 + 1.13.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-08-15 + 1.12.0 + First release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libclc + http://libclc.llvm.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Library requirements of the OpenCL C programming language + Library requirements of the OpenCL C programming language + Library requirements of the OpenCL C programming language + Library requirements of the OpenCL C programming language + https://github.com/llvm/llvm-project/releases/download/llvmorg-12.0.0/libclc-12.0.0.src.tar.xz + + clang32 + + + llvm + cmake + spirv-llvm-devel + python-devel + python3-devel + llvm-clang-devel + + x11/library/libclc/pspec.xml + + + libclc + + llvm-polly + + + /usr/lib + /usr/share + /usr/share/doc + + + + libclc-32bit + emul32 + emul32 + + llvm-32bit + spirv-llvm-32bit + + + /usr/lib32 + + + + libclc-devel + Development files for libclc + + libclc + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2021-06-05 + 12.0.0 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2021-02-21 + 11.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-12 + 11.0.0 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2020-03-26 + 10.0.0_20200215 + First release + İdris Kalp + idriskalp@gmail.com + + + + + + libdmx + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie dmx de X.Org + X.Org dmx library + X.Org dmx kitaplığı + X.Org dmx Bibliothek + libdmx is the X Window System DMX (Distributed Multihead X) extension library. + mirrors://xorg/individual/lib/libdmx-1.1.4.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libdmx/pspec.xml + + + libdmx + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libdmx-devel + Development files for libdmx + libdmx için geliştirme dosyaları + + libdmx + libXext-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/share/man + + + + + 2020-01-10 + 1.1.4 + Version Bump + PisiLinux Community + admin@pisilinux.org + + + 2019-10-23 + 1.1.4 + Version Bump + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 1.1.4 + Version Bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-15 + 1.1.3 + Rebuild for new toolchain. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libdrm + http://dri.freedesktop.org/libdrm/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Userspace interface to kernel DRM services + Çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz + libdrm is a library providing the userspace interface to kernel DRM services. + libdrm, çekirdekteki DRM servisleri için kullanıcı düzeyi arayüz sağlayan bir kitaplıktır. + https://dri.freedesktop.org/libdrm/libdrm-2.4.111.tar.xz + + meson + docbook-xsl + util-macros + libxslt-devel + python-docutils + libpciaccess-devel + + x11/library/libdrm/pspec.xml + + + libdrm + + libpciaccess + + + /etc + /usr/lib/libdrm.* + /lib/udev/rules.d + /usr/share/doc + /usr/share/man + /usr/share/libdrm + + + 91-drm-modeset.rules + + + + libdrm-intel + Userspace interface to kernel DRM services for intel + Çekirdekteki intel DRM servisleri için kullanıcı düzeyi arayüz + + libdrm + libpciaccess + + + /usr/lib/libdrm_intel.* + + + + libdrm-nouveau + Userspace interface to kernel DRM services for nouveau + Çekirdekteki nouveau DRM servisleri için kullanıcı düzeyi arayüz + + libdrm + + + /usr/lib/libdrm_nouveau.* + + + + libdrm-radeon + Userspace interface to kernel DRM services for radeon + Çekirdekteki radeon DRM servisleri için kullanıcı düzeyi arayüz + + libdrm + + + /usr/lib/libdrm_radeon.* + + + + libdrm-amd + Userspace interface to kernel DRM services for amdgpu + + libdrm + + + /usr/lib/libdrm_amdgpu.* + + + + libdrm-devel + Development files for libdrm + libdrm için geliştirme dosyaları + + libdrm + libdrm-intel + libdrm-nouveau + libdrm-radeon + libdrm-amd + libpciaccess-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libdrm-32bit + 32-bit shared libraries for libdrm + libdrm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxslt-32bit + libxml2-32bit + libpciaccess-32bit + + + libdrm + libpciaccess-32bit + + + /usr/lib32/libdrm.* + + + + libdrm-intel-32bit + 32-bit shared libraries for libdrm-intel + libdrm-intel için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-intel + libdrm-32bit + libpciaccess-32bit + + + /usr/lib32/libdrm_intel.* + + + + libdrm-nouveau-32bit + 32-bit shared libraries for libdrm-nouveau + libdrm-nouveau için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-nouveau + libdrm-32bit + + + /usr/lib32/libdrm_nouveau.* + + + + libdrm-radeon-32bit + 32-bit shared libraries for libdrm-radeon + libdrm-radeon için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-radeon + libdrm-32bit + + + /usr/lib32/libdrm_radeon.* + + + + libdrm-amd-32bit + 32-bit shared libraries for libdrm-amdgpu + emul32 + emul32 + + libdrm-amd + libdrm-32bit + + + /usr/lib32/libdrm_amdgpu.* + + + + + 2022-06-04 + 2.4.111 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-19 + 2.4.110 + Version bump. + Kamil Atlı + suvari@pisilinux.org + + + 2022-01-12 + 2.4.109 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-19 + 2.4.108 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-19 + 2.4.107 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-05 + 2.4.107 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-03 + 2.4.106 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-08 + 2.4.105 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-30 + 2.4.102 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-08 + 2.4.100 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-20 + 2.4.100 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-10 + 2.4.97 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-01-08 + 2.4.96 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 2.4.92 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-16 + 2.4.89 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 2.4.83 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 2.4.75 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-02 + 2.4.71 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-04-30 + 2.4.67 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-03-27 + 2.4.67 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libepoxy + http://www.kde.org + + Pisi Linux Admins + admins@pisilinux.org + + MIT + library + x11.library + OpenGL function pointer management library + Epoxy is a library for handling OpenGL function pointer management for you. + https://download.gnome.org/sources/libepoxy/1.5/libepoxy-1.5.10.tar.xz + + meson + libX11-devel + libglvnd-devel + util-macros + + x11/library/libepoxy/pspec.xml + + + libepoxy + + /etc/xdg + /usr/bin + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + /usr/share/man + + + + libepoxy-devel + Development files for libepoxy + + libepoxy + libglvnd-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libepoxy-32bit + 32-bit shared libraries for libeproxy + emul32 + emul32 + + libX11-32bit + libglvnd-32bit + + + /lib32 + /usr/lib32 + + + + + 2022-06-01 + 1.5.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-14 + 1.5.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 1.5.4 + Version bump + Idris Kalp + idriskalp@gmail.com + + + 2019-10-23 + 1.5.3 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-02-10 + 1.5.3 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2018-07-27 + 1.5.2 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-15 + 1.4 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.3.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-08 + 1.3.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libevdev + http://www.freedesktop.org/wiki/Software/libevdev/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv1 + library + x11.library + Wrapper library for evdev devices + Wrapper library for evdev devices + Wrapper library for evdev devices + Wrapper library for evdev devices + https://www.freedesktop.org/software/libevdev/libevdev-1.12.0.tar.xz + + doxygen + valgrind + check-devel + python3-devel + + x11/library/libevdev/pspec.xml + + + libevdev + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + libevdev-devel + Development files for libevdev + + libevdev + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-09 + 1.12.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 1.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-24 + 1.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-06 + 1.6.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.5.9 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-20 + 1.5.6 + Version bump + Alihan Öztürkçe + alihan@pisilinux.org + + + 2016-11-02 + 1.5.4 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-02 + 1.4.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-01-25 + 1.3.2 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + libexplain + http://libexplain.sourceforge.net/ + + erdinc gültekin + admins@pisilinux.org + + LGPLv2 + library + x11.library + Explain errno values returned by libc functions + Libc fonksiyonları tarafından döndürülen errno değerleri açıklar + The libexplain package provides a library which may be used to explain Unix and Linux system call errors + Libexplain paketi, Unix ve Linux sistem çağrısı hataları açıklamak için kullanılan bir kütüphane sunar. + http://sourceforge.net/projects/libexplain/files/1.4/libexplain-1.4.tar.gz + + acl-devel + libcap-devel + lsof + libtool + bison + groff + jbigkit-devel + ghostscript-devel + + + 0001-Fix-build-failure-with-GCC10.patch + sanitize-bison.patch + libexplain-1.4-missing-defines.patch + libexplain-1.4-largefile.patch + libexplain-1.4-syscall.patch + + x11/library/libexplain/pspec.xml + + + libexplain + + acl + libcap + ghostscript + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/locale + /usr/share/doc + + + + libexplain-devel + Development files for libexplain. + libexplain için geliştirme dosyaları + + acl-devel + libcap-devel + libexplain + + + /usr/lib/pkgconfig + /usr/include + + + + + 2020-01-14 + 1.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2018-07-31 + 1.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-01-29 + 1.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-01-09 + 1.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + libfakekey + http://matchbox-project.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + x11.library + X virtual keyboard library. + X sanal klavye kütüphanesi. + X sanal klavye kütüphanesi. + http://git.yoctoproject.org/cgit/cgit.cgi/libfakekey/snapshot/libfakekey-0.3.tar.gz + + libXtst-devel + + x11/library/libfakekey/pspec.xml + + + libfakekey + + libXtst + + + /usr/lib + /usr/share/doc + + + + libfakekey-devel + Development files for libfakekey + libfakekey için geliştirme dosyaları + + libfakekey + + + /usr/lib/pkgconfig + /usr/include/fakekey/ + + + + + 2020-01-10 + 0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-24 + 0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-30 + 0.1 + Rebuild. + Osman Erkan + osman.erkan@pisilinux.org + + + 2016-07-07 + 0.1 + First Release + Osman Erkan + osman.erkan@pisilinux.org + + + + + + libfontenc + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie fontenc de X.Org + X.Org fontenc library + X.Org fontenc kitaplığı + X.Org fontenc Bibliothek + libfontenc is the X Window System font encoding library. + mirrors://xorg/individual/lib/libfontenc-1.1.4.tar.bz2 + + zlib-devel + util-macros + font-util + xorg-proto + + x11/library/libfontenc/pspec.xml + + + libfontenc + + zlib + + + /usr/lib + /usr/share/doc + + + + libfontenc-devel + Development files for libfontenc + libfontenc için geliştirme dosyaları + + libfontenc + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2020-01-10 + 1.1.4 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-20 + 1.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.1.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-01-30 + 1.1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.1.3 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libFS + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie FS de X.Org + X.Org FS library + X.Org FS kitaplığı + X.Org FS Bibliothek + libFS is the interface library to the X Font Server. + mirrors://xorg/individual/lib/libFS-1.0.8.tar.bz2 + + util-macros + xorg-proto + xtrans + + x11/library/libFS/pspec.xml + + + libFS + + /usr/lib + /usr/share/doc + + + + libFS-devel + Development files for libFS + libFS için geliştirme dosyaları + + libFS + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2020-01-10 + 1.0.8 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.0.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.0.7 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-01-30 + 1.0.7 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.7 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.0.7 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libglvnd + https://github.com/NVIDIA/libglvnd + + Marcin Bojara + marcin.bojara@gmail.com + + custom:BSD-like + library + x11.library + The GL Vendor-Neutral Dispatch library + libglvnd is a vendor-neutral dispatch layer for arbitrating OpenGL API calls between multiple vendors. It allows multiple drivers from different vendors to coexist on the same filesystem, and determines which vendor to dispatch each API call to at runtime. + https://gitlab.freedesktop.org/glvnd/libglvnd/-/archive/v1.4.0/libglvnd-v1.4.0.tar.gz + + meson + xorg-proto + libX11-devel + libdrm-devel + libxcb-devel + libXext-devel + libXfixes-devel + libXdamage-devel + libXxf86vm-devel + + x11/library/libglvnd/pspec.xml + + + libglvnd + + libX11 + + + /usr/lib + /usr/share/doc + + + mesa + + + + libglvnd-devel + Development files for libglvnd + + libglvnd + libX11-devel + libdrm-devel + libxcb-devel + libXext-devel + libXfixes-devel + libXdamage-devel + libXxf86vm-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libglvnd-32bit + 32-bit shared libraries for libglvnd + emul32 + emul32 + + libXext-32bit + libX11-32bit + + + libX11-32bit + + + /usr/lib32 + + + + + 2022-03-19 + 1.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-30 + 1.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 1.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 1.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-04 + 1.3.0 + First release + Marcin Bojara + marcin.bojara@gmail.com + + + + + + libICE + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org ICE library + X.Org ICE kitaplığı + Utilitaire ICE de X.Org. + libICE is the Inter-Client Exchange library. + libICE, Inter-Client Exchange protokolüne bir arayüz sağlayan X.Org kitaplığıdır. + X.Org ICE Bibliothek + mirrors://xorg/individual/lib/libICE-1.0.10.tar.bz2 + + libbsd-devel + util-macros + xorg-proto + xtrans + libxslt + + x11/library/libICE/pspec.xml + + + libICE + + libbsd + + + /usr/lib + /usr/share/doc + + + + libICE-devel + Development files for libICE + libICE için geliştirme dosyaları + + libICE + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libICE-32bit + 32-bit shared libraries for libICE + libICE için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libICE + + + /usr/lib32 + + + + + 2021-03-14 + 1.0.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 1.0.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.0.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.0.9 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-01-30 + 1.0.9 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-08-31 + 1.0.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libomxil-bellagio + http://omxil.sourceforge.net + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + LGPLv2.1 + library + x11.library + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + An opensource implementation of the OpenMAX Integration Layer API + http://downloads.sourceforge.net/project/omxil/omxil/Bellagio%200.9.3/libomxil-bellagio-0.9.3.tar.gz + + glibc-devel + + + fedora-fixes.patch + libomxil-bellagio-0.9.3-Werror.patch + libomxil-bellagio-0.9.3-gcc46.patch + libomxil-bellagio-0.9.3-memcpy.patch + + x11/library/libomxil-bellagio/pspec.xml + + + libomxil-bellagio + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + libomxil-bellagio-devel + Development files for mesa + + libomxil-bellagio + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-14 + 0.9.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2018-07-24 + 0.9.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 0.9.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.9.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-04-07 + 0.9.3 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + libpciaccess + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org PCI access library + X.Org PCI erişim kitaplığı + libpciaccess is the Xorg library for portable PCI access routines across multiple operating systems. + libpciaccess, değişik işletim sistemleri için taşınabilir PCI erişim rutinleri içeren Xorg kitaplığıdır. + mirrors://xorg/individual/lib/libpciaccess-0.16.tar.bz2 + + util-macros + + x11/library/libpciaccess/pspec.xml + + + libpciaccess + + /usr/lib + /usr/share/doc + + + + libpciaccess-devel + Development files for libpciaccess + libpciaccess için geliştirme dosyaları + + libpciaccess + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libpciaccess-32bit + 32-bit shared libraries for libpciaccess + libpciaccess için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libpciaccess + + + /usr/lib32 + + + + + 2021-11-27 + 0.16 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-06 + 0.16 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 0.15 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.14 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-25 + 0.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-09 + 0.13.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 0.13.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.13.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-05-05 + 0.13.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libSM + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie SM de X.Org. + X.Org SM library + X.Org SM kitaplığı. + X.Org SM Bibliothek + libSM is the X Session Management library. + mirrors://xorg/individual/lib/libSM-1.2.3.tar.bz2 + + libICE-devel + libutil-linux-devel + util-macros + xorg-proto + xtrans + + x11/library/libSM/pspec.xml + + + libSM + + libutil-linux + libICE + + + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libSM-devel + Development files for libSM + libSM için geliştirme dosyaları + + libICE-devel + libSM + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/*.xml + + + + libSM-32bit + 32-bit shared libraries for libSM + libSM için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libICE-32bit + libutil-linux-32bit + + + libICE-32bit + libutil-linux-32bit + libSM + + + /usr/lib32 + + + + + 2021-03-14 + 1.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 1.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-12 + 1.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.2.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.2.2 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.2.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.2.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libtxc-dxtn + http://dri.freedesktop.org/wiki/S3TC + + Marcin Bojara + marcin@pisilinux.org + + custom + BSD + x11.library + Texture compression library for Mesa + S2TC is a patent-free S3TC compatible implementation and provides texture compression to Mesa. + http://people.freedesktop.org/~cbrill/libtxc_dxtn/libtxc_dxtn-1.0.1.tar.bz2 + + mesa-devel + + x11/library/libtxc-dxtn/pspec.xml + + + libtxc-dxtn + + /usr/lib + /usr/share/doc + + + + libtxc-dxtn-devel + + libtxc-dxtn + + + /usr/include + + + + libtxc-dxtn-32bit + emul32 + + /usr/lib32 + + + + + 2020-01-26 + 1.0.1 + Rebuild for toolchain + Kamil Atlı + suvari@pisilinux.org + + + 2019-10-25 + 1.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-07 + 1.0.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 1.0.1 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-06-20 + 1.0.1 + First release. + Marcin Bojara + marcin@pisilinux.org + + + + + + libva + http://www.freedesktop.org/wiki/Software/vaapi + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Video Acceleration (VA) API for Linux + Linux için video hızlandırma API'si + libva is a library providing the VA API video acceleration API. + libva, VA video hızlandırma API'sini sağlayan bir kitaplıktır. + https://github.com/intel/libva/archive/2.13.0.tar.gz + + libdrm-devel + libXext-devel + libXfixes-devel + libglvnd-devel + wayland-devel + wayland-client + + x11/library/libva/pspec.xml + + + libva + + libX11 + libdrm + libXext + libXfixes + libglvnd + wayland-client + + + /usr/bin + /usr/lib + /usr/share/doc + + + + libva-devel + Development files for libva + libva için geliştirme dosyaları + + libva + wayland-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libva-32bit + 32-bit shared libraries for libva + libva için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + libglvnd-32bit + libX11-32bit + + + libva + libdrm-32bit + wayland-32bit + libXext-32bit + libXfixes-32bit + libX11-32bit + libglvnd-32bit + + + /usr/lib32 + + + + + 2022-01-13 + 2.13.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-28 + 2.10.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-01 + 2.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 2.6.0 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-25 + 2.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 2.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-22 + 2.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-15 + 2.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-15 + 1.7.3 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-03 + 1.7.2 + Version bump. + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-27 + 1.7.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-05-10 + 1.5.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + libvdpau + http://freedesktop.org/wiki/Software/VDPAU + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Wrapper library for the Video Decode and Presentation API + Video kodu çözme ve sunma API'si için ara kitaplık + VDPAU is the Video Decode and Presentation API for UNIX. It provides an interface to video decode acceleration and presentation hardware present in modern GPUs. + VDPAU (Video Decode and Presentation API for UNIX), modern grafik işlemcilerde yer alan video kod çözümü hızlandırma ve sunma donanımına bir arayüz sağlar. + https://people.freedesktop.org/~aplattner/vdpau/libvdpau-1.2.tar.bz2 + + libXext-devel + + x11/library/libvdpau/pspec.xml + + + libvdpau + + libXext + + + /etc + /usr/lib + /usr/share/doc + + + + libvdpau-devel + Development files for libvdpau + libvdpau için geliştirme dosyaları + + libvdpau + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libvdpau-32bit + 32-bit shared libraries for libvdpau + libvdpau için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libvdpau + libXext-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 1.1.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-27 + 1.1.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-11-20 + 1.1 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libXaw + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X Athena Widgets Library + X Athena Parçacıkları kitaplığı + Xaw is a widget set based on the X Toolkit Intrinsics (Xt) Library. + mirrors://xorg/individual/lib/libXaw-1.0.13.tar.bz2 + + libXext-devel + libXmu-devel + libXpm-devel + libXt-devel + util-macros + libICE-devel + libSM-devel + libX11-devel + + x11/library/libXaw/pspec.xml + + + libXaw + + libX11 + libXext + libXmu + libXpm + libXt + + + /usr/lib + /usr/share/doc + + + + libXaw-devel + Development files for libXaw + libXaw için geliştirme dosyaları + + libXaw + libXext-devel + libXmu-devel + libXpm-devel + libXt-devel + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXaw-32bit + 32-bit shared libraries for libSM + libXaw için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + + + libXaw + libXext-32bit + libXmu-32bit + libXpm-32bit + libXt-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-01-07 + 1.0.13 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2019-10-23 + 1.0.13 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 1.0.13 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-03-02 + 1.0.13 + Release bump + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-04-30 + 1.0.13 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.0.13 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXcomposite + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie composite X.Org + X.Org composite library + X.Org composite kitaplığı + X.Org composite Bibliothek + libXcomposite is the X Composite library. Compositing allows modification of the window system's base elements like window borders, window buttons and window titlebars. + libXcomposite, X Birleşiklik kitaplığıdır. Birleşiklik, pencerelere ait kenarlar, butonlar ve başlık çubukları gibi pencere sisteminin temel elemanlarını değiştirmeye izin verir. + mirrors://xorg/individual/lib/libXcomposite-0.4.5.tar.bz2 + + xmlto + libX11-devel + libXfixes-devel + util-macros + + x11/library/libXcomposite/pspec.xml + + + libXcomposite + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXcomposite-devel + Development files for libXcomposite + libXcomposite için geliştirme dosyaları + + libXcomposite + libXfixes-devel + xorg-proto + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXcomposite-32bit + 32-bit shared libraries for libXcomposite + libXcomposite için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + + + libXcomposite + libX11-32bit + + + /usr/lib32 + + + + + 2021-09-25 + 0.4.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-03 + 0.4.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 0.4.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 0.4.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 0.4.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 0.4.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.4.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 0.4.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXcursor + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xcursor de X.Org + X.Org Xcursor library + X.Org Xcursor kitaplığı + X.Org Xcursor Bibliothek + libXcursor is the X Cursor management library. It allows using different mouse skins and modifying of the text cursor. + mirrors://xorg/individual/lib/libXcursor-1.2.0.tar.bz2 + + util-macros + libX11-devel + xorg-proto + libXfixes-devel + libXrender-devel + + x11/library/libXcursor/pspec.xml + + + libXcursor + + libX11 + libXfixes + libXrender + + + /usr/lib + /usr/share/doc + + + + libXcursor-devel + Development files for libXcursor + libXcursor için geliştirme dosyaları + + libXcursor + libXfixes-devel + libX11-devel + libXrender-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXcursor-32bit + 32-bit shared libraries for libXcursor + libXcursor için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libXfixes-32bit + libXrender-32bit + + + libXcursor + libX11-32bit + libXfixes-32bit + libXrender-32bit + + + /usr/lib32 + + + + + 2020-01-14 + 1.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.1.15 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.1.15 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2018-02-22 + 1.1.15 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.14 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.14 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.14 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxcvt + https://gitlab.freedesktop.org/xorg/lib/libxcvt + + Pisi Linux Admins + admin@pisilinux.org + + custom + library + x11.library + VESA CVT standard timing modelines generator + VESA CVT standard timing modelines generator + VESA CVT standart zamanlama modelleri üreteci + VESA CVT standart zamanlama modelleri üreteci + https://gitlab.freedesktop.org/xorg/lib/libxcvt/-/archive/libxcvt-0.1.1/libxcvt-libxcvt-0.1.1.tar.bz2 + + meson + + x11/library/libxcvt/pspec.xml + + + libxcvt + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + + libxcvt-devel + Development files for libxcvt + + libxcvt + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-31 + 0.1.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + libXdamage + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie damege de X.Org. + X.Org damage library + X.Org damege kitaplığı. + X.Org damege Bibliothek + LibXdamage provides an X Window System client interface to the DAMAGE extension to the X protocol. The Damage extension provides for notification of when on-screen regions have been 'damaged' (altered). + LibXdamage, X protokolü uzantısı DAMAGE için istemci kitaplığıdır. Damage uzantısı ekranda herhangi bir bölümde bozulma (değişiklik) meydana geldiğinde bildirim yapılmasını sağlar. + mirrors://xorg/individual/lib/libXdamage-1.1.5.tar.bz2 + + libXfixes-devel + util-macros + + x11/library/libXdamage/pspec.xml + + + libXdamage + + libXfixes + libX11 + + + /usr/lib + /usr/share/doc + + + + libXdamage-devel + Development files for libXdamage + libXdamage için geliştirme dosyaları + + libXdamage + libXfixes-devel + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXdamage-32bit + 32-bit shared libraries for libXdamage + libXdamage için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libXfixes-32bit + + + libXdamage + libXfixes-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2021-09-25 + 1.1.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.1.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 1.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.1.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.4 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXext + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xext de X.Org + X.Org Xext library + X.Org Xext kitaplığı + X.Org Xext Bibliothek + LibXext provides an X Window System client interface to several extensions to the X protocol. + LibXext, çeşitli X protokolü uzantıları için X Pencere Sistemi istemci arayüzü sunar. + mirrors://xorg/individual/lib/libXext-1.3.4.tar.bz2 + + xorg-proto + util-macros + libX11-devel + libxslt + + x11/library/libXext/pspec.xml + + + libXext + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXext-devel + Development files for libXext + libXext için geliştirme dosyaları + + libX11-devel + libXext + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXext-32bit + 32-bit shared libraries for libXext + libXext için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + + + libXext + libX11-32bit + + + /usr/lib32 + + + + + 2021-09-25 + 1.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 1.3.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.3.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.3.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-01-29 + 1.3.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.3.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-08-31 + 1.3.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXfixes + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xfixes de X.Org + X.Org Xfixes library + X.Org Xfixes kitaplığı + X.Org Xfixes Bibliothek + libXfixes is a library to provide augmented versions of core protocol requests. + mirrors://xorg/individual/lib/libXfixes-6.0.0.tar.bz2 + + xorg-proto + libX11-devel + util-macros + + x11/library/libXfixes/pspec.xml + + + libXfixes + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXfixes-devel + Development files for libXfixes + libXfixes için geliştirme dosyaları + + libXfixes + libX11-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXfixes-32bit + 32-bit shared libraries for libXfixes + libXfixes için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + + + libXfixes + libX11-32bit + + + /usr/lib32 + + + + + 2021-09-18 + 6.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 5.0.3 + Rebuild. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-20 + 5.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 5.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 5.0.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-01-29 + 5.0.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-11-02 + 5.0.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 5.0.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 5.0.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXfont + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xfont de X.Org + X.Org Xfont library + X.Org Xfont kitaplığı + X.Org Xfont Bibliothek + libXfont is the Xorg library that allows using various types of fonts. + mirrors://xorg/individual/lib/libXfont-1.5.4.tar.bz2 + + libfontenc-devel + util-macros + freetype-devel + xorg-proto + xtrans + xmlto + zlib-devel + + x11/library/libXfont/pspec.xml + + + libXfont + + libfontenc + zlib + freetype + + + /usr/lib + /usr/share/doc + + + + libXfont-devel + Development files for libXfont + libXfont için geliştirme dosyaları + + libXfont + libfontenc-devel + freetype-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2020-01-10 + 1.5.4 + Rebuild. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-20 + 1.5.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.5.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.5.4 + Version bump. + PisiLinux Community + admin@pisilinux.org + + + 2018-02-22 + 1.5.4 + Version bump. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.5.2 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.5.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.5.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXfont2 + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org Xfont library + libXfont is the Xorg library that allows using various types of fonts. + http://xorg.freedesktop.org/archive/individual/lib/libXfont2-2.0.5.tar.bz2 + + libfontenc-devel + util-macros + freetype-devel + xorg-proto + xtrans + xmlto + zlib-devel + libbsd-devel + + x11/library/libXfont2/pspec.xml + + + libXfont2 + + libfontenc + zlib + libbsd + freetype + + + /usr/lib + /usr/share/doc + + + + libXfont2-devel + Development files for libXfont + + libXfont2 + xorg-proto + libfontenc-devel + freetype-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2021-10-19 + 2.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 2.0.4 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-20 + 2.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 2.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 2.0.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2018-02-22 + 2.0.3 + Version bump. + PisiLinux Community + admin@pisilinux.org + + + 2017-03-02 + 2.0.1 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + libXi + https://www.x.org/wiki/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xi de X.Org + X.Org Xi library + X.Org Xi kitaplığı + X.Org Xi Bibliothek + LibXi provides an X Window System client interface to the XINPUT extension to the X protocol. + mirrors://xorg/individual/lib/libXi-1.8.tar.bz2 + + libXext-devel + libXfixes-devel + util-macros + + x11/library/libXi/pspec.xml + + + libXi + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXi-devel + Development files for libXi + libXi için geliştirme dosyaları + + libXi + libXext-devel + libX11-devel + libXfixes-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXi-32bit + 32-bit shared libraries for libXi + libXi için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libX11-32bit + + + libXi + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2021-10-19 + 1.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 1.7.10 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-20 + 1.7.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.7.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.7.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-29 + 1.7.9 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-02 + 1.7.8 + Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-27 + 1.7.6 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-08-31 + 1.7.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXinerama + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + librairie Xinerama de X.Org + X.Org Xinerama library + X.Org Xinerama kitaplığı + X.Org Xinerama Bibliothek + Xorg Xinerama library. Xinerama is an extension to the X Window System which enables applications and window managers to use two (or more) physical displays as one large virtual display. + mirrors://xorg/individual/lib/libXinerama-1.1.4.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXinerama/pspec.xml + + + libXinerama + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXinerama-devel + Development files for libXinerama + libXinerama için geliştirme dosyaları + + libXinerama + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXinerama-32bit + 32-bit shared libraries for libXinerama + libXinerama için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libX11-32bit + + + libXinerama + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.1.4 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2019-10-25 + 1.1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 1.1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxkbcommon + http://xkbcommon.org/ + + Osman Erkan + osman.erkan@pisilinux.org + + GPLv2 + library + x11.library + Library to convert evdev keycodes to keysyms + Evdev keycode'larını keysms türüne çeviren bir kitaplık + Library to convert evdev keycodes to keysyms + Evdev keycode'larını keysms türüne çeviren bir kitaplık + https://github.com/xkbcommon/libxkbcommon/archive/xkbcommon-1.3.0.tar.gz + + meson + xorg-proto + util-macros + libxcb-devel + libxml2-devel + wayland-cursor + wayland-server + wayland-client + wayland-devel + wayland-protocols-devel + xkeyboard-config + + x11/library/libxkbcommon/pspec.xml + + + libxkbcommon + + libxcb + libxml2 + wayland-client + + + /usr/bin + /usr/libexec + /usr/share/doc/libxkbcommon/ + /usr/share/man + /usr/lib/lib*.so* + + + + libxkbcommon-devel + Development files for libxkbcommon + libxkbcommon için geliştirme dosyaları + + libxkbcommon + libxcb-devel + libxml2-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libxkbcommon-32bit + 32-bit shared libraries for libxkbcommon + emul32 + emul32 + + libxcb-32bit + libxml2-32bit + wayland-32bit + + + libxkbcommon + libxcb-32bit + libxml2-32bit + + + /usr/lib32 + + + + + 2021-06-03 + 1.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-03 + 0.9.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 0.9.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 0.9.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 0.8.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-29 + 0.8.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.8.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.8.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 0.7.1 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-27 + 0.6.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2015-03-04 + 0.5.0 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + libxkbfile + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie xkbfile de X.Org + X.Org xkbfile library + X.Org xkbfile kitaplığı + X.Org xkbfile Bibliothek + Libxkbfile provides an interface to read and manipulate description files for XKB, the X11 keyboard configuration extension. + mirrors://xorg/individual/lib/libxkbfile-1.1.0.tar.bz2 + + util-macros + libX11-devel + xorg-proto + + x11/library/libxkbfile/pspec.xml + + + libxkbfile + + libX11 + + + /usr/lib + /usr/share/doc + + + + libxkbfile-devel + Development files for libxkbfile + libxkbfile için geliştirme dosyaları + + libxkbfile + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + + + + + 2020-01-10 + 1.1.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.9 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.0.9 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.0.9 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.0.9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXmu + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xmu de X.Org + X.Org Xmu library + X.Org Xmu kitaplığı + X.Org Xmu Bibliothek + libXmu provides a set of miscellaneous utility convenience functions for X libraries to use. + LibXmu, X kitaplıklarında kullanmak için çeşitli yardımcı fonksiyonlar içerir. + mirrors://xorg/individual/lib/libXmu-1.1.3.tar.bz2 + + util-macros + libXt-devel + libICE-devel + libSM-devel + libXext-devel + + x11/library/libXmu/pspec.xml + + + libXmu + + libXt + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXmu-devel + Development files for libXmu + libXmu için geliştirme dosyaları + + libXmu + libXt-devel + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXmu-32bit + 32-bit shared libraries for libXmu + libXmu için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXt-32bit + libXext-32bit + + + libXmu + libXt-32bit + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2020-01-17 + 1.1.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 1.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.1.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXp + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xp de X.Org. + X.Org Xp library + X.Org Xp kitaplığı. + X.Org Xp Bibliothek + X.Org X11 libXp runtime library + mirrors://xorg/individual/lib/libXp-1.0.3.tar.bz2 + + libXext-devel + xorg-proto + libXau-devel + libX11-devel + util-macros + + x11/library/libXp/pspec.xml + + + libXp + + libXext + libXau + libX11 + + + /usr/lib + /usr/share/doc + /usr/share/man + + + + libXp-devel + Development files for libXp + libXp için geliştirme dosyaları + + libXp + libXext-devel + + + /usr/include/X11 + /usr/lib/libdeprecatedXp.so + /usr/lib32/libdeprecatedXp.so + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXp-32bit + 32-bit shared libraries for libXp + libXp için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXp + libXext-32bit + libXau-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.0.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.0.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-11-13 + 1.0.3 + First release + Stefan Gronewold (groni) + groni@pisilinux.org + + + + + + libXpm + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xpm de X.Org + X.Org Xpm library + X.Org Xpm kitaplığı + X.Org Xpm Bibliothek + LibXpm is the X pixmap library. + mirrors://xorg/individual/lib/libXpm-3.5.13.tar.bz2 + + util-macros + libXext-devel + libXt-devel + + x11/library/libXpm/pspec.xml + + + libXpm + + libXext + libXt + libX11 + + + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + libXpm-devel + Development files for libXpm + libXpm için geliştirme dosyaları + + libXpm + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXpm-32bit + 32-bit shared libraries for libXpm + libXpm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXt-32bit + libX11-32bit + + + libXpm + libXext-32bit + libXt-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-01-07 + 3.5.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 3.5.12 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 3.5.12 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 3.5.12 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 3.5.11 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 3.5.11 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXpresent + https://www.x.org/ + + Ali Cengiz Kurt + admins@pisilinux.org + + MIT + library + x11.library + X.Org Xpm library + X Present Extension library + https://www.x.org/archive/individual/lib/libXpresent-1.0.0.tar.bz2 + + util-macros + xorg-proto + libX11-devel + libXext-devel + libXfixes-devel + libXrandr-devel + + x11/library/libXpresent/pspec.xml + + + libXpresent + + libXfixes + libXrandr + libX11 + + + /usr/lib + /usr/share/doc + /usr/share/man/man3 + /usr/share/licenses + + + + libXpresent-devel + Development files for libXpresent + library + + libXpresent + + + /usr/include/X11/extensions + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + libXpresent-32bit + 32-bit shared libraries for libXpresent + emul32 + emul32 + + libX11-32bit + libXfixes-32bit + libXrandr-32bit + + + libXpresent + libXfixes-32bit + libXrandr-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-11-22 + 1.0.0 + First Release For Beta System. + Ali Cengiz Kurt + alicengizkurt@gmail.com + + + + + + libXrandr + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org Xrandr library + Librairie Xrand de X.Org. + Xrandr is a simple library designed to interface the X Resize and Rotate Extension. This allows clients to change the size and rotation of the root window of a screen, along with the ability to reflect the screen about either axis. + X.Org Xrand kitaplığı. + X.Org Xrand Bibliothek + mirrors://xorg/individual/lib/libXrandr-1.5.2.tar.bz2 + + libXext-devel + libXrender-devel + libX11-devel + util-macros + + x11/library/libXrandr/pspec.xml + + + libXrandr + + libXext + libXrender + libX11 + + + /usr/lib + /usr/share/doc + + + + libXrandr-devel + Development files for libXrandr + libXrandr için geliştirme dosyaları + + libXrandr + libXrender-devel + libXext-devel + libX11-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXrandr-32bit + 32-bit shared libraries for libXrandr + libXrandr için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libXext-32bit + libXrender-32bit + + + libXrandr + libX11-32bit + libXext-32bit + libXrender-32bit + + + /usr/lib32 + + + + + 2020-09-25 + 1.5.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 1.5.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.5.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.5.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.5.1 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.5.1 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-11-02 + 1.5.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.5.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.5.0 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXrender + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xrender de X.Org + X.Org Xrender library + X.Org Xrender kitaplığı + X.Org Xrender Bibliothek + The X Rendering Extension (Render) introduces digital image composition as the foundation of a new rendering model within the X Window System. Rendering geometric figures is accomplished by client-side tesselation into either triangles or trapezoids. + mirrors://xorg/individual/lib/libXrender-0.9.10.tar.bz2 + + libX11-devel + xorg-proto + util-macros + + x11/library/libXrender/pspec.xml + + + libXrender + + libX11 + + + /usr/lib + /usr/share/doc + + + + libXrender-devel + Development files for libXrender + libXrender için geliştirme dosyaları + + libXrender + libX11-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libXrender/libXrender.txt + + + + libXrender-32bit + 32-bit shared libraries for libXrender + libXrender için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + + + libXrender + libX11-32bit + + + /usr/lib32 + + + + + 2021-09-25 + 0.9.10 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-03 + 0.9.10 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 0.9.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 0.9.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 0.9.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 0.9.10 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 0.9.10 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-11-02 + 0.9.10 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.9.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 0.9.9 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXres + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xres de X.Org + X.Org Xres library + X.Org Xres kitaplığı + X.Org Xres Bibliothek + X-Resource is an extension that allows a client to query the X server about its usage of various resources. + mirrors://xorg/individual/lib/libXres-1.2.0.tar.bz2 + + libX11-devel + libXext-devel + util-macros + + x11/library/libXres/pspec.xml + + + libXres + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXres-devel + Development files for libXres + libXres için geliştirme dosyaları + + libXres + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/share/man + + + + + 2020-01-10 + 1.2.0 + Rebuld. + PisiLinux Community + admin@pisilinux.org + + + 2019-10-25 + 1.2.0 + Rebuld. + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 1.2.0 + Version Bump. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.0.7 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.7 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.0.7 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXScrnSaver + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie XScrnSaver de X.Org + X.Org XScrnSaver library + X.Org XScrnSaver kitaplığı + X.Org XScrnSaver Bibliothek + LibXScrnSaver allows using screensavers in X clients. + mirrors://xorg/individual/lib/libXScrnSaver-1.2.3.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXScrnSaver/pspec.xml + + + libXScrnSaver + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXScrnSaver-devel + Development files for libXScrnSaver + libXScrnSaver için geliştirme dosyaları + + libXScrnSaver + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXScrnSaver-32bit + 32-bit shared libraries for libXScrnSaver + libXScrnSaver için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libXext-32bit + + + libXScrnSaver + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2020-01-07 + 1.2.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2019-10-23 + 1.2.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 1.2.3 + Version Bump. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.2.2 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.2.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libxshmfence + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + X.Org libxshmfence library + libxshmfence is the X Window System video extension library. + mirrors://xorg/individual/lib/libxshmfence-1.3.tar.bz2 + + libXext-devel + util-macros + + x11/library/libxshmfence/pspec.xml + + + libxshmfence + + libXext + + + /usr/lib + /usr/share/doc + + + + libxshmfence-devel + Development files for libxshmfence + + libxshmfence + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libxshmfence-32bit + 32-bit shared libraries for libxshmfence + emul32 + emul32 + + libX11-32bit + libXext-32bit + + + libxshmfence + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2019-10-25 + 1.3 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2018-09-16 + 1.3 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-05-05 + 1.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXt + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xt de X.Org + X.Org Xt library + X.Org Xt kitaplığı + X.Org Xt Bibliothek + LibXt provides the X Toolkit Intrinsics, an abstract widget library upon which other toolkits are based. Xt is the basis for many toolkits, including the Athena widgets (Xaw), and LessTif. + mirrors://xorg/individual/lib/libXt-1.2.0.tar.bz2 + + libICE-devel + libSM-devel + xorg-proto + libX11-devel + util-macros + + x11/library/libXt/pspec.xml + + + libXt + + libICE + libSM + libX11 + + + /usr/bin + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libXt-devel + Development files for libXt + libXt için geliştirme dosyaları + + libXt + libICE-devel + libSM-devel + xorg-proto + libX11-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXt-32bit + 32-bit shared libraries for libXt + libXt için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libSM-32bit + + + libXt + libX11-32bit + libSM-32bit + libICE-32bit + + + /usr/lib32 + + + + + 2021-03-14 + 1.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-05 + 1.2.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.1.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.1.5 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.5 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.5 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-15 + 1.1.5 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + libXtst + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xtst de X.Org + X.Org Xtst library + X.Org Xtst kitaplığı + X.Org Xtst Bibliothek + libXtst provides an X Window System client interface to the Record extension to the X protocol. The Record extension allows X clients to synthesise input events, which is useful for automated testing. + mirrors://xorg/individual/lib/libXtst-1.2.3.tar.bz2 + + libXext-devel + libXi-devel + util-macros + + x11/library/libXtst/pspec.xml + + + libXtst + + libXext + libX11 + + + /usr/lib + /usr/share/X11 + /usr/share/doc + + + + libXtst-32bit + 32-bit shared libraries for libXtst + libXtst için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + libXi-32bit + libX11-32bit + + + libX11-32bit + libXext-32bit + libXtst + + + /usr/lib32 + + + + libXtst-devel + Development files for libXtst + libXtst için geliştirme dosyaları + + libXi-devel + libXext-devel + libX11-devel + xorg-proto + libXtst + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/aclocal + /usr/share/doc/*/*.xml + /usr/share/man + + + + + 2021-09-25 + 1.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 1.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.2.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.2.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-01-30 + 1.2.3 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-11-02 + 1.2.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.2.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.2.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXv + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xv de X.Org + X.Org Xv library + X.Org Xv kitaplığı + X.Org Xv Bibliothek + LibXv is the X Window System video extension library. + mirrors://xorg/individual/lib/libXv-1.0.11.tar.bz2 + + libX11-devel + libXext-devel + util-macros + + x11/library/libXv/pspec.xml + + + libXv + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXv-devel + Development files for libXv + libXv için geliştirme dosyaları + + libXv + libXext-devel + libX11-devel + xorg-proto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXv-32bit + 32-bit shared libraries for libXv + libXv için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libX11-32bit + libXext-32bit + + + libXv + libX11-32bit + libXext-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.0.11 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.0.11 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.11 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.0.11 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.0.11 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-11-03 + 1.0.11 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.10 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.0.10 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXvMC + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie XvMC de X.Org + X.Org XvMC library + X.Org XvMC kitaplığı + X.Org XvMC Bibliothek + LibXvMC is the X-Video Motion Compensation Library. + mirrors://xorg/individual/lib/libXvMC-1.0.12.tar.bz2 + + libX11-devel + libXext-devel + libXv-devel + xorg-proto + util-macros + + x11/library/libXvMC/pspec.xml + + + libXvMC + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXvMC-devel + Development files for libXvMC + libXvMC için geliştirme dosyaları + + libXv-devel + libX11-devel + xorg-proto + libXext-devel + libXvMC + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/doc/libXvMC/XvMC_API.txt + + + + libXvMC-32bit + 32-bit shared libraries for libXvMC + libXvMC için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXv-32bit + libX11-32bit + libXext-32bit + + + libX11-32bit + libXext-32bit + libXvMC + + + /usr/lib32 + + + + + 2020-01-10 + 1.0.12 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.0.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.10 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.0.10 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.0.10 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-03 + 1.0.10 + Version Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-27 + 1.0.9 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-16 + 1.0.8 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXxf86dga + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xxf86dga de X.Org + X.Org Xxf86dga library + X.Org Xxf86dga kitaplığı + X.Org Xxf86dga Bibliothek + LibXxf86dga is the client library for the XFree86-DGA extension. + mirrors://xorg/individual/lib/libXxf86dga-1.1.5.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXxf86dga/pspec.xml + + + libXxf86dga + + libXext + libX11 + + + /usr/lib + /usr/share/doc + + + + libXxf86dga-devel + Development files for libXxf86dga + libXxf86dga için geliştirme dosyaları + + libXxf86dga + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86dga-32bit + 32-bit shared libraries for libXxf86dga + libXxf86dga için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86dga + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.1.5 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 1.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.1.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.1.4 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.1.4 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXxf86misc + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie libXxf86misc de X.Org + X.Org Xxf86misc library + X.Org libXxf86misc kitaplığı + X.Org libXxf86misc Bibliothek + LibXxf86misc is the client library for the XFree86-misc extension. + https://www.x.org/archive/individual/lib/libXxf86misc-1.0.4.tar.gz + + libXext-devel + xorg-proto + util-macros + + x11/library/libXxf86misc/pspec.xml + + + libXxf86misc + + libXext + + + /usr/lib + /usr/share/doc + + + + libXxf86misc-devel + Development files for libXxf86misc + libXxf86misc için geliştirme dosyaları + + libXxf86misc + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86misc-32bit + 32-bit shared libraries for libXxf86misc + libXxf86misc için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86misc + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.0.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.0.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.0.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 1.0.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.0.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 1.0.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXxf86miscproto + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie libXxf86miscproto de X.Org + X.Org Xxf86miscproto library + X.Org libXxf86miscproto kitaplığı + X.Org libXxf86miscproto Bibliothek + LibXxf86miscproto is the client library for the XFree86-miscproto extension. + mirrors://xorg/individual/proto/xf86miscproto-0.9.3.tar.bz2 + + util-macros + libXext-devel + xorg-proto + + x11/library/libXxf86miscproto/pspec.xml + + + libXxf86miscproto + + /usr/lib + /usr/share/doc + + + + libXxf86miscproto-devel + Development files for libXxf86miscproto + libXxf86miscproto için geliştirme dosyaları + + libXxf86miscproto + + + /usr/include/X11 + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/man + + + + + 2020-01-10 + 0.9.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 0.9.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 0.9.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 0.9.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.9.3 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.9.3 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 0.9.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + libXxf86vm + http://x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Librairie Xxf86vm de X.Org + X.Org Xxf86vm library + X.Org Xxf86vm kitaplığı + X.Org Xxf86vm Bibliothek + LibXxf86vm is the client library for the XFree86-VidMode X extension. + mirrors://xorg/individual/lib/libXxf86vm-1.1.4.tar.bz2 + + libXext-devel + libX11-devel + util-macros + + x11/library/libXxf86vm/pspec.xml + + + libXxf86vm + + libX11 + libXext + + + /usr/lib + /usr/share/doc + + + + libXxf86vm-devel + Development files for libXxf86vm + libXxf86vm için geliştirme dosyaları + + libXxf86vm + libXext-devel + + + /usr/include/X11 + /usr/lib/pkgconfig/ + /usr/lib32/pkgconfig + /usr/share/man + + + + libXxf86vm-32bit + 32-bit shared libraries for libXxf86vm + libXxf86vm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libXext-32bit + + + libXxf86vm + libXext-32bit + libX11-32bit + + + /usr/lib32 + + + + + 2020-01-10 + 1.1.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2019-10-25 + 1.1.4 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2018-07-25 + 1.1.4 + Rebuild for new toolchain. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-02 + 1.1.4 + Rebuild. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-04-27 + 1.1.4 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-16 + 1.1.3 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + luajit-lgi + https://github.com/lgi-devs/lgi + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + LuaJIT bindings for gnome/gobject using gobject-introspection library + LuaJIT bindings for gnome/gobject using gobject-introspection library + LuaJIT bindings for gnome/gobject using gobject-introspection library + LuaJIT bindings for gnome/gobject using gobject-introspection library + https://github.com/lgi-devs/lgi/archive/refs/tags/0.9.2.tar.gz + + lua-devel + glib2-devel + libffi-devel + gobject-introspection-devel + + x11/library/luajit-lgi/pspec.xml + + + luajit-lgi + + glib2 + libffi + gobject-introspection + + + /usr/lib + /usr/share + /usr/share/lua + /usr/share/doc + + + + + 2022-05-21 + 0.9.2 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + mesa + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + app:console + x11.library + Mesa graphics libraries and utilities + Mesa grafik kitaplıkları ve yardımcı uygulamalar + Mesa biblioteki graficzne i narzędzia + Mesa is an open-source implementation of the OpenGL specification - a system for rendering interactive 3D graphics. + Mesa, OpenGL belirtiminin (etkileşimli 3B grafiklerin gerçeklenmesi için bir sistem) açık kaynaklı bir uyarlamasıdır. + Mesa jest open-source'ową implementacją specyfikacji OpenGL do renderowania trójwymiarowej grafiki. + https://archive.mesa3d.org/mesa-22.0.5.tar.xz + + crossfile.ini + + + meson + valgrind-devel + libva-devel + zstd-devel + zlib-devel + xorg-proto + openssl-devel + expat-devel + libXt-devel + libcap-devel + libdrm-devel + libXext-devel + elfutils-devel + wayland-devel + wayland-server + wayland-client + libvdpau-devel + libXfixes-devel + libtalloc-devel + libXdamage-devel + libomxil-bellagio-devel + libXxf86vm-devel + libXvMC-devel + libXv-devel + eudev-devel + nettle-devel + python3-mako + llvm + compiler-rt + llvm-polly + llvm-clang-devel + libxshmfence-devel + automake + libX11-devel + libdrm-intel + libdrm-radeon + libdrm-amd + libdrm-nouveau + libunwind-devel + wayland-protocols-devel + libXrandr-devel + libglvnd-devel + libclc-devel + vulkan-devel + glslang-devel + lm_sensors-devel + + x11/library/mesa/pspec.xml + + + mesa + + zstd + zlib + expat + eudev + libXv + libX11 + libdrm + libgcc + libxcb + libXext + libXvMC + elfutils + libXfixes + libunwind + libXdamage + libXxf86vm + libdrm-amd + lm_sensors + libdrm-intel + libxshmfence + libdrm-radeon + libdrm-nouveau + wayland-client + wayland-server + libomxil-bellagio + lm_sensors + vulkan + llvm-libs + + + /etc + /usr/share/drirc.d/00-radv-defaults.conf + /usr/bin + /usr/lib + /usr/lib/libGL.so.1.2 + /usr/share/vulkan/icd.d + /usr/share/drirc.d/00-mesa-defaults.conf + /usr/share/glvnd/egl_vendor.d/50_mesa.json + /usr/share/vulkan/implicit_layer.d/VkLayer_MESA_device_select.json + /usr/share/doc + /usr/share/vulkan/explicit_layer.d + + + drirc + + + + mesa-opencl + OpenCL support for AMD/ATI Radeon mesa drivers + + zstd + zlib + expat + libdrm + libgcc + elfutils + llvm-libs + libdrm-amd + llvm-clang + libdrm-radeon + libdrm-nouveau + + + /etc/OpenCL/vendors/mesa.icd + /usr/lib/libMesaOpenCL.so* + /usr/lib/gallium-pipe/pipe*.so + + + + mesa-devel + Development files for mesa + mesa için geliştirme dosyaları + + eudev-devel + libX11-devel + libxcb-devel + libdrm-devel + libXext-devel + wayland-devel + libglvnd-devel + libXfixes-devel + libXdamage-devel + libXxf86vm-devel + libxshmfence-devel + mesa + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mesa-32bit + 32-bit shared libraries for mesa + mesa için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + zlib-32bit + libva-32bit + elfutils-32bit + expat-32bit + libXt-32bit + libXv-32bit + libX11-32bit + libcap-32bit + libdrm-32bit + libXext-32bit + libXvMC-32bit + eudev-32bit + openssl-32bit + wayland-32bit + libvdpau-32bit + libXfixes-32bit + libXdamage-32bit + libXxf86vm-32bit + libdrm-intel-32bit + libdrm-radeon-32bit + libdrm-amd-32bit + libdrm-nouveau-32bit + libxshmfence-32bit + nettle-32bit + libunwind-32bit + llvm-32bit + libXrandr-32bit + libglvnd-32bit + vulkan-32bit + libclc-32bit + + + zlib-32bit + elfutils-32bit + openssl-32bit + libgcc + eudev-32bit + libxcb-32bit + expat-32bit + libX11-32bit + libdrm-32bit + libxcb-32bit + libXext-32bit + libXfixes-32bit + libXdamage-32bit + libXxf86vm-32bit + libXv-32bit + libXvMC-32bit + libdrm-intel-32bit + libxshmfence-32bit + libdrm-radeon-32bit + libdrm-amd-32bit + libdrm-nouveau-32bit + wayland-32bit + vulkan-32bit + opencl-icd-32bit + libglvnd-32bit + libclc-32bit + libunwind-32bit + llvm-clang-32bit + mesa + llvm-32bit + + + /usr/lib32 + /usr/share/vulkan/icd.d/*.i686.json + + + + + 2022-06-03 + 22.0.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-20 + 22.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-07 + 22.0.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-25 + 22.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-04-13 + 22.0.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-19 + 21.3.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-19 + 21.3.7 + Rebuild for libglvnd + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-24 + 21.3.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-11 + 21.3.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-27 + 21.3.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-13 + 21.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-30 + 21.3.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-18 + 21.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-02 + 21.3.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-18 + 21.3.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-28 + 21.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 21.2.4 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-16 + 21.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-30 + 21.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 21.1.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-13 + 21.1.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-29 + 21.1.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-15 + 21.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-07-01 + 21.1.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-20 + 21.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-05 + 21.1.2 + Version bump + İdris Kalp + idriskalp@gmail.com + + + 2021-03-25 + 20.3.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-21 + 20.3.4 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 20.3.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-17 + 20.2.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-10 + 20.2.4 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-24 + 20.2.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-11-12 + 20.2.2 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-10-17 + 20.2.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-10-09 + 20.2.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-24 + 20.1.8 + Rebuild llvm-10.0.1. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-17 + 20.1.8 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-03 + 20.1.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-08-06 + 20.1.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-10 + 20.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-25 + 20.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-12 + 20.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-03 + 20.1.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-16 + 20.0.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-05-09 + 20.0.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-23 + 20.0.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-04-09 + 20.0.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-27 + 20.0.2 + Version bump. + İdris Kalp + idriskalp@gmail.com + + + 2020-01-03 + 19.3.1 + Version bump. + Marcin Bojara + marcin.bojara|@gmail.com + + + 2019-11-15 + 19.2.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-07 + 19.2.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-24 + 19.2.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-05-29 + 18.2.8 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-22 + 18.2.8 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-12-18 + 18.2.5 + Rebuild llvm. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-17 + 18.2.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 18.1.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-29 + 17.3.4 + Rebuild. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-09-16 + 17.3.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-10 + 13.0.4 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-06 + 13.0.4 + Rebuild. + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-23 + 13.0.4 + llvm rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2017-02-02 + 13.0.4 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-02 + 13.0.0 + Release Bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-04-27 + 11.2.1 + Version Bump + Alihan Öztürk + alihan@pisilinux.org + + + 2016-03-28 + 11.2.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + mesa-glu + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Mesa OpenGL Utility library + Mesa implementation of the standard GLU OpenGL utility API. + ftp://ftp.freedesktop.org/pub/mesa/glu/glu-9.0.2.tar.gz + + libglvnd-devel + libgcc + + x11/library/mesa-glu/pspec.xml + + + mesa-glu + + libglvnd + libgcc + + + /usr/lib + + + + mesa-glu-devel + Development files for mesa-glu + mesa-glu için geliştirme dosyaları + + mesa-glu + mesa-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + mesa-glu-32bit + 32-bit shared libraries for mesa-glu + mesa-glu için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libglvnd-32bit + libgcc + + + mesa-glu + libglvnd-32bit + libgcc + + + /usr/lib32 + + + + + 2021-06-25 + 9.0.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-08 + 9.0.1 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-24 + 9.0.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-21 + 9.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2018-07-27 + 9.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2017-02-15 + 9.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2016-11-03 + 9.0.0 + Rebuild for new Mesa + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 9.0.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-01-22 + 9.0.0 + First release + Ergün Salman + Poyraz76@pisilinux.org + + + + + + pixman + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + Pixel manipulation library + Piksel işleme kitaplığı + Pixman contains lowlevel pixel manipulation routines. + Pixman, düşük düzey piksel işleme yordamlarını içerir. + mirrors://xorg/individual/lib/pixman-0.40.0.tar.xz + + libpng-devel + + x11/library/pixman/pspec.xml + + + pixman + + /usr/lib + /usr/share/doc + + + + pixman-devel + Development files for pixman + pixman için geliştirme dosyaları + + pixman + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + pixman-32bit + 32-bit shared libraries for pixman + pixman için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libpng-32bit + + + pixman + + + /usr/lib32 + + + + + 2020-06-06 + 0.40.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-06 + 0.38.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-09 + 0.36.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.34.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-05 + 0.34.0 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 0.34.0 + First release + Alihan Öztürk + alihan@pisilinux.org + + + 2014-08-31 + 0.32.6 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + tslib + https://github.com/kergoth/tslib + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app + x11.library + Dokunmatik Ekran Erişim Kütüphanesi + Dokunmatik Ekran Erişim Kütüphanesi + Touchscreen Access Library + Touchscreen Access Library + https://github.com/libts/tslib/releases/download/1.21/tslib-1.21.tar.bz2 + x11/library/tslib/pspec.xml + + + tslib + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + tslib-devel + Development files for tslib + + tslib + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-10 + 1.21 + Version bump + PisiLinux Community + admins@pisilinux.org + + + 2019-02-01 + 1.18 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + wayland + http://wayland.freedesktop.org/ + + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + GPLv2 + library + x11.library + Wayland Compositor Infrastructure + Wayland is a protocol for a compositor to talk to its clients as well as a C library implementation of that protocol. + https://wayland.freedesktop.org/releases/wayland-1.20.0.tar.xz + + xmlto + meson + docbook-xsl + libffi-devel + expat-devel + libxslt-devel + libxml2-devel + + x11/library/wayland/pspec.xml + + + wayland + + libxml2 + expat + + + /usr/bin + /usr/lib/libwayland-egl* + /usr/share/doc/ + /usr/share/aclocal + /usr/share/wayland + /usr/share/man + + + + wayland-client + Wayland client library + + libffi + wayland + + + /usr/lib/libwayland-client* + + + + wayland-cursor + Wayland cursor library + + wayland + wayland-client + + + /usr/lib/libwayland-cursor* + + + + wayland-server + Wayland server library + + libffi + wayland + + + /usr/lib/libwayland-server* + + + + wayland-devel + Development files for wayland + + expat-devel + libffi-devel + wayland + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/share/pkgconfig + + + + wayland-32bit + 32-bit shared libraries for wayland + emul32 + emul32 + + libffi-32bit + expat-32bit + libxslt-32bit + libxml2-32bit + + + wayland + expat-32bit + libffi-32bit + libxslt-32bit + libxml2-32bit + + + /usr/lib32 + + + + + 2021-12-11 + 1.20.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-27 + 1.19.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-21 + 1.18.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-03 + 1.17.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-07 + 1.17.0 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-10-26 + 1.17.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-03 + 1.16.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.15.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 1.14.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-02 + 1.12.0 + Version bump. + Alihan Öztürk + alihan@pisilnux.org + + + 2016-11-04 + 1.11.1 + Version bump. + Yusuf Aydemir + yusuf.aydemir@pisilnux.org + + + 2016-05-01 + 1.10.0 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-11-05 + 1.9.0 + First release + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + + + + wayland-protocols + http://wayland.freedesktop.org/ + + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + GPLv2 + library + x11.library + Specifications of extended Wayland protocols + Genişletişmiş wayland protocolü tanımlamaları + Specifications of extended Wayland protocols + https://wayland.freedesktop.org/releases/wayland-protocols-1.25.tar.xz + + meson + wayland-client + wayland-server + wayland-cursor + wayland-devel + + x11/library/wayland-protocols/pspec.xml + + + wayland-protocols + + /usr/share/wayland-protocols + /usr/share/doc + + + + wayland-protocols-devel + wayland-protocols için geliştirme dosyaları + + wayland-protocols + + + /usr/share/pkgconfig + + + + + 2022-02-09 + 1.25 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-16 + 1.23 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-09-12 + 1.22 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-12 + 1.21 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-01-20 + 1.20 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 1.18 + Version bump. + Idris Kalp + idriskalp@gmail.com + + + 2019-10-26 + 1.17 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-03 + 1.16 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 1.15 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-15 + 1.12 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 1.7 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + Xaw3d + http://freshmeat.net/projects/xaw3d/ + + PisiLinux Community + admins@pisilinux.org + + X11 + library + x11.library + Replacement of the Xaw widget set that comes with X + XPM imajlarına 3D görüntüsü ve desteği ekleyen bir kütüphanedir + Xaw3d est globalement le remplaçant de la boîte à outils Athena. Il ajoute une apparence 3D ainsi que le support des images XMP. + Xaw3d is a general-purpose replacement for the Athena toolkit that adds a 3D appearance and support for XPM images. + Xaw3d, Athena araçlarının yerini alması amaçlanarak hazırlanmıştır. Ek olarak 3B görünüş sağlar ve XPM resimlerini destekler. + http://xorg.freedesktop.org/archive/individual/lib/libXaw3d-1.6.3.tar.gz + + util-macros + libXt-devel + libXmu-devel + libXpm-devel + + + Xaw3d-1.6.1-3Dlabel.patch + Xaw3d-1.6.1-fontset.patch + Xaw3d-1.6.1-hsbar.patch + + x11/library/Xaw3d/pspec.xml + + + Xaw3d + + libXt + libX11 + libXmu + libXpm + libXext + + + /usr/lib + /usr/share/doc + + + + Xaw3d-devel + Development files for Xaw3d + Xaw3d için geliştirme dosyaları + + Xaw3d + libXt-devel + libX11-devel + libXmu-devel + libXext-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2020-01-10 + 1.6.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-24 + 1.6.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-25 + 1.6.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 1.6.2 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 1.6.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2016-02-21 + 1.6.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xcb-util + https://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-0.4.0.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util/pspec.xml + + + xcb-util + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-devel + Development files for xcb-util + xcb-util için geliştirme dosyaları + + xcb-util + libxcb-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-32bit + 32-bit shared libraries for xcb-util + xcb-util için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + + + xcb-util + libxcb-32bit + + + /usr/lib32 + + + + + 2021-05-22 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-14 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-01 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.4.0 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.4.0 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.4.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-12-13 + 0.4.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + xcb-util-cursor + https://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + XCB cursor library + The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + https://xcb.freedesktop.org/dist/xcb-util-cursor-0.1.3.tar.bz2 + + util-macros + libxcb-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-renderutil-devel + + x11/library/xcb-util-cursor/pspec.xml + + + xcb-util-cursor + + libxcb + xcb-util-image + xcb-util-renderutil + + + /usr/lib + /usr/share/doc + + + + xcb-util-cursor-devel + Development files for xcb-util + + xcb-util-cursor + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-cursor-32bit + 32-bit shared libraries for xcb-util + emul32 + emul32 + + libxcb-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + libxcb-32bit + xcb-util-image-32bit + xcb-util-renderutil-32bit + + + /usr/lib32 + + + + + 2021-05-22 + 0.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 0.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 0.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.1.3 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.1.3 + Version bump + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.1.2 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-08-26 + 0.1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + xcb-util-image + https://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-image module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-image modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-image-0.4.0.tar.bz2 + + util-macros + libxcb-devel + xcb-util-devel + + x11/library/xcb-util-image/pspec.xml + + + xcb-util-image + + xcb-util + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-image-devel + Development files for xcb-util + xcb-util-image için geliştirme dosyaları + + xcb-util-image + libxcb-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-image-32bit + 32-bit shared libraries for xcb-util + xcb-util-image için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + xcb-util-32bit + + + xcb-util-32bit + libxcb-32bit + + + /usr/lib32 + + + + + 2021-05-22 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.4.0 + Rebuild. + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.4.0 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.4.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-12-13 + 0.4.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + xcb-util-keysyms + https://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-keysyms module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-keysyms modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-keysyms-0.4.0.tar.bz2 + + xorg-proto + util-macros + libxcb-devel + + x11/library/xcb-util-keysyms/pspec.xml + + + xcb-util-keysyms + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-keysyms-devel + Development files for xcb-util-keysyms + xcb-util-keysyms için geliştirme dosyaları + + xcb-util-keysyms + libxcb-devel + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-keysyms-32bit + 32-bit shared libraries for xcb-util-keysyms + emul32 + emul32 + + libxcb-32bit + + + xcb-util-keysyms + libxcb-32bit + + + /usr/lib32 + + + + + 2021-05-22 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.4.0 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.4.0 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.4.0 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.4.0 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2015-12-13 + 0.4.0 + First release + Kamil Atlı + suvari@pisilinux.org + + + + + + xcb-util-renderutil + https://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-renderutil module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-renderutil modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-renderutil-0.3.9.tar.bz2 + + xorg-proto + util-macros + libxcb-devel + + x11/library/xcb-util-renderutil/pspec.xml + + + xcb-util-renderutil + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-renderutil-devel + Development files for xcb-util-renderutil + xcb-util-renderutil için geliştirme dosyaları + + xcb-util-renderutil + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-renderutil-32bit + 32-bit shared libraries for xcb-util-renderutil + xcb-util-renderutil için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + + + libxcb-32bit + + + /usr/lib32 + + + + + 2021-03-19 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.3.9 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.3.9 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.3.9 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.3.9 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-09-01 + 0.3.9 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xcb-util-wm + https://xcb.freedesktop.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.library + A number of libraries which sit on top of libxcb + libxcb temelli birtakım kitaplıklar + The xcb-util-wm module provides a number of libraries which sit on top of libxcb, the core X protocol library, and some of the extension libraries. + xcb-util-wm modülü, çekirdek X protokolü ve bazı eklentiler için libxcb temelli kitaplıklar içerir. + http://xcb.freedesktop.org/dist/xcb-util-wm-0.4.1.tar.bz2 + + util-macros + libxcb-devel + + x11/library/xcb-util-wm/pspec.xml + + + xcb-util-wm + + libxcb + + + /usr/lib + /usr/share/doc + + + + xcb-util-wm-devel + Development files for xcb-util-wm + xcb-util-wm için geliştirme dosyaları + + xcb-util-wm + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + xcb-util-wm-32bit + 32-bit shared libraries for xcb-util-wm + xcb-util-wm için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + libxcb-32bit + + + xcb-util-wm + libxcb-32bit + + + /usr/lib32 + + + + + 2021-05-22 + 0.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 0.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 0.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 0.4.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-24 + 0.4.1 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2017-02-05 + 0.4.1 + Rebuild + PisiLinux Community + admin@pisilinux.org + + + 2016-04-30 + 0.4.1 + Release bump + PisiLinux Community + admin@pisilinux.org + + + 2014-05-16 + 0.4.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xcb-util-xrm + https://github.com/Airblader/xcb-util-xrm + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + x11.library + XCB utility functions for the X resource manager + XCB utility functions for the X resource manager + http://distfiles.macports.org/xorg-xcb-util-xrm/xcb-util-xrm-1.3.tar.bz2 + + libxcb-devel + xcb-util-devel + xcb-proto + libX11-devel + util-macros + + x11/library/xcb-util-xrm/pspec.xml + + + xcb-util-xrm + + libxcb + xcb-util + + + /usr/lib + + + + xcb-util-xrm-devel + Development files for xcb-util-xrm + system.devel + + xcb-util-xrm + libxcb-devel + xcb-util-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-05-22 + 1.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-03-19 + 1.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-23 + 1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-20 + 1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-05 + 1.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.3 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-16 + 1.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + argyllcms + https://www.argyllcms.com/ + + PisiLinux Community + osman.erkan@pislinux.org + + GPLv3 + MIT + app:gui + x11.misc + ICC compatible color management system + The Argyll color management system supports accurate ICC profile creation for acquisition devices, CMYK printers, film recorders and calibration and profiling of displays. + https://people.freedesktop.org/~hughsient/releases/hargyllcms-1.9.2.tar.xz + + tiff-devel + libpng-devel + libX11-devel + libXext-devel + libXrandr-devel + libXxf86vm-devel + libXinerama-devel + libjpeg-turbo-devel + libusb-devel + libtool + + x11/misc/argyllcms/pspec.xml + + + argyllcms + + tiff + libpng + libX11 + libXext + libXrandr + libXxf86vm + libXinerama + libjpeg-turbo + + + /usr/lib + /usr/share/doc + /usr/bin + /usr/share/color + + + + + 2020-01-25 + 1.9.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.9.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 1.9.2 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-13 + 1.9.2 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + beignet + https://www.freedesktop.org/wiki/Software/Beignet/ + + Idris Kalp + idriskalp@gmail.com + + GPLv2 + library + x11.misc + Open source implementation of the OpenCL for Intel GPUs + Intel ekran kartları için OpenCL gerçekleştirimi + Open source implementation of the OpenCL for Intel GPUs + Intel ekran kartları için OpenCL gerçekleştirimi + https://sourceforge.net/projects/pisilinux/files/source/beignet-1.3.2_12.tar.xz + + libX11-devel + libXext-devel + libXfixes-devel + llvm-clang-devel + libdrm-devel + llvm + llvm-libs + opencl-icd-devel + cmake + python3-devel + + + llvm8.patch + llvm9.patch + llvm10.patch + + x11/misc/beignet/pspec.xml + + + beignet + + libX11 + libXext + libXfixes + llvm-clang + opencl-icd + libgcc + libdrm + libdrm-intel + llvm + llvm-libs + + + /etc + /usr/lib + /usr/share + /usr/share/doc + + + + + 2020-01-11 + 1.3.2_12 + First Release + Idris Kalp + idriskalp@gmail.com + + + + + + bumblebee + https://bumblebee-project.org + + Idris Kalp + idriskalp@gmail.com + + GPLv3 + app:gui + kernel.drivers + a project aiming to support NVIDIA Optimus technology under Linux. + The Bumblebee Project proudly presents version 3.0 of Bumblebee, a project aiming to support NVIDIA Optimus technology under Linux. After two months of hard work this version has finally been considered stable enough for release. + https://github.com/Bumblebee-Project/Bumblebee/archive/8f3d307b6aabbc2cd8444c6e5a4360f3bf2915ec.tar.gz + + libbsd-devel + libX11-devel + glib2-devel + libkmod-devel + + x11/misc/bumblebee/pspec.xml + + + bumblebee + + glib2 + module-bbswitch + libX11 + libbsd + primus + virtualgl + libkmod + virtualgl-32bit + + + /etc + /usr/lib/tmpfiles.d/bumblebee.conf + /usr/bin + /usr/sbin + /lib/udev/rules.d + /usr/share/man + /usr/share/doc + + + System.Service + System.Package + + + tmpfiles.conf + + + + + 2020-01-25 + 3.2.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 3.2.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 3.2.1 + Rebuild + Idris Kalp + idriskalp@pgmail.com + + + 2016-05-02 + 3.2.1 + Rebuild + Idris Kalp + idriskalp@pgmail.com + + + 2016-04-08 + 3.2.1 + First Release + Idris Kalp + idriskalp@pgmail.com + + + + + + colord + http://www.freedesktop.org/software/colord + + PisiLinux Community + admins@pisilinux.org + + LGPLv2.1 + library + x11.misc + Colord is a system activated daemon that maps devices to color profiles. + Colord, aygıtları renk profillerine eşleyen bir sistem etkinleştirme programıdır. + Usługa systemowa do zarządzania urządzeniami obsługującymi kolory + Colord is a system activated daemon that maps devices to color profiles. It is used by GNOME Color Manager for system integration and use when there are no users logged in. + Colord, giriş ve çıkış aygıtlarını doğru bir şekilde renk yönetimi için renk profilleri yönetmek, yüklemek ve oluşturmak için kolaylaştıran bir sistem hizmetidir. + colord to niskopoziomowa usługa systemowa odwzorowująca urządzenia obsługujące kolory na profile kolorów w kontekście systemu. + https://www.freedesktop.org/software/colord/releases/colord-1.4.6.tar.xz + + meson + valgrind + intltool + argyllcms + vala-devel + lcms2-devel + sane-backends-devel + bash-completion + eudev-devel + libtool + gtk-doc + perl + elogind-devel + gettext-devel + glib2-devel + libgudev-devel + libxslt-devel + icu4c-devel + libgusb-devel + libusb-devel + sqlite-devel + qt5-sql-sqlite + polkit-devel + gobject-introspection-devel + + x11/misc/colord/pspec.xml + + + colord + + lcms2 + libgusb + shared-color-profiles + sane-backends + dbus + sqlite + polkit + eudev + glib2 + libgudev + + + /etc + /lib + /usr/libexec/colord-session + /var/lib/colord/icc/ + /usr/bin + /usr/libexec/colord + /usr/lib + /usr/share/dbus-1 + /usr/share/doc + /usr/share/polkit-1 + /usr/share/locale + /usr/share/man + /var + /usr/share/colord + /usr/share/glib-2.0 + /usr/share/bash-completion + /usr/libexec/colord-sane + /usr/share/gir-1.0 + + + System.Service + + + + colord-devel + Development files for colord + Colord için geliştirme başlıkları + Pliki nagłówkowe colord + + colord + lcms2-devel + libgusb-devel + eudev-devel + glib2-devel + + + /usr/include + /usr/share/vala/vapi/colord.vapi + /usr/lib/pkgconfig + + + + shared-color-profiles + + /usr/share/color + + + + + 2022-05-31 + 1.4.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-05-25 + 1.4.5 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-31 + 1.4.4 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-05 + 1.4.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-24 + 1.4.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-11-08 + 1.4.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 1.4.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 1.3.4 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-11-17 + 1.3.3 + First Release. + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + dmenu + http://tools.suckless.org/dmenu/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + MIT + x11.misc + A dynamic menu for X + Dynamic menu is a generic menu for X, originally designed for dwm. It manages huge amounts (up to 10.000 and more) of user defined menu items efficiently + https://dl.suckless.org/tools/dmenu-4.9.tar.gz + + fontconfig-devel + libX11-devel + libXft-devel + libXinerama-devel + + x11/misc/dmenu/pspec.xml + + + dmenu + + fontconfig + libX11 + libXft + libXinerama + + + /usr/bin + /usr/share/man + + + + + 2020-01-25 + 4.9 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 4.8 + Rebuild for new toolchain. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-16 + 4.8 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + i3status + http://i3wm.org/i3status + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + BSD + x11.misc + A small generator for status bars + a small program (about 1500 SLOC) for generating a status bar for dzen2, xmobar or similar programs + http://i3wm.org/i3status/i3status-2.13.tar.bz2 + + xmlto + asciidoc + libxslt-devel + alsa-lib-devel + pulseaudio-libs-devel + libnl-devel + yajl-devel + libconfuse-devel + + x11/misc/i3status/pspec.xml + + + i3status + + alsa-lib + pulseaudio-libs + libnl + yajl + libconfuse + + + /etc + /usr/bin + /usr/share/man + + + + + 2020-01-25 + 2.13 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 2.12 + Rebuild for new toolchain. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-16 + 2.12 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + mesa-demos + http://www.mesa3d.org + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.misc + Mesa demos + Mesa demoları + The Mesa Demos package contains a large number of OpenGL demonstration and test programs. + Mesa Demos paketi çok sayıda OpenGL gösterimi ve test programları içerir. + https://archive.mesa3d.org/demos/8.5.0/mesa-demos-8.5.0.tar.bz2 + + glew-devel + mesa-devel + libXext-devel + mesa-glu-devel + freeglut-devel + libX11-devel + libglvnd-devel + glibc-devel + wayland-devel + + x11/misc/mesa-demos/pspec.xml + + + mesa-demos + + glew + freeglut + libXext + mesa + libglvnd + mesa-glu + libX11 + wayland + wayland-client + + + /usr/share/mesa-demos + /usr/lib/mesa/demos + /usr/bin/eglinfo + + + + mesa-utils + Mesa utilities + Mesa yardımcı uygulamaları + x11.util + + mesa + libglvnd + libX11 + + + /usr/bin/glxgears + /usr/bin/xeglgears + /usr/bin/glxinfo + + + + mesa-demos-32bit + 32-bit shared libraries for mesa + mesa-demos için 32-bit paylaşımlı kitaplıklar + emul32 + emul32 + + mesa-32bit + glew-32bit + freeglut-32bit + nettle-32bit + mesa-glu-32bit + + + libgcc + glew-32bit + mesa-32bit + libX11-32bit + libXext-32bit + freeglut-32bit + mesa-glu-32bit + wayland-32bit + libglvnd-32bit + mesa-demos + + + /usr/lib32 + /usr/bin/glxinfo32 + /usr/bin/glxgears32 + + + + + 2022-05-30 + 8.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-03-19 + 8.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 8.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 8.4.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 8.3.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2016-03-01 + 8.3.0 + Release bump. + Stefan Gronewold + groni@pisilinux.org + + + 2015-01-20 + 8.2.0 + Release bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2015-01-02 + 8.2.0 + Dep fixed. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-09-24 + 8.2.0 + Version bump. + Serdar Soytetir + kaptan@pisilinux.org + + + 2014-05-16 + 8.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2014-03-08 + 8.1.0 + Release bump. + Yusuf Aydemir + yusuf.aydemir@pisilinux.org + + + 2013-08-25 + 8.1.0 + Release bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-05-29 + 8.1.0 + Fixed configure settings. + Ertan Güven + ertan@pisilinux.org + + + 2013-02-27 + 8.1.0 + Version bump. + Marcin Bojara + marcin@pisilinux.org + + + 2013-02-09 + 8.0.1 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + opencl-icd + https://github.com/OCL-dev/ocl-icd + + Mathias Freire + mathiasfreire45@gmail.com + + BSD-2-Clause + library + x11.misc + OpenCL ICD loader library + OpenCL is a royalty-free standard for cross-platform, parallel programming of modern processors found in personal computers, servers and handheld/embedded devices. + https://github.com/OCL-dev/ocl-icd/archive/v2.2.14.tar.gz + https://github.com/KhronosGroup/OpenCL-Headers/archive/v2020.12.18.tar.gz + + ruby + + x11/misc/opencl-icd/pspec.xml + + + opencl-icd + + /usr/lib + /usr/share/man + /usr/share/doc + + + + opencl-icd-32bit + emul32 + emul32 + + /usr/lib32 + + + + opencl-icd-devel + + opencl-icd + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-01-28 + 2.2.14 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-11-15 + 2.2.12 + First Release + Idris Kalp + idriskalp@gmail.com + + + + + + polybar + https://polybar.github.io/ + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + app:gui + x11.misc + A fast and easy to use tool for creating status bars + Polybar aims to help users build beautiful and highly customizable status bars for their desktop environment, without the need of having a black belt in shell scripting. + https://github.com/jaagr/polybar/releases/download/3.4.2/polybar-3.4.2.tar + + cmake + i3wm-devel + xcb-proto + cairo-devel + curl-devel + xcb-util-xrm-devel + libnl-devel + wireless-tools-devel + alsa-lib-devel + jsoncpp-devel + pulseaudio-libs-devel + + x11/misc/polybar/pspec.xml + + + polybar + + libgcc + cairo + curl + libxcb + freetype + fontconfig + xcb-util-xrm + xcb-util-wm + xcb-util-cursor + libnl + jsoncpp + alsa-lib + pulseaudio-libs + + + /usr/bin + /usr/share/bash-completion + /usr/share/man + /usr/share/doc + /usr/share/zsh + + + + + 2020-01-25 + 3.4.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-04-13 + 3.3.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-30 + 3.2.1 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + primus + https://github.com/amonakov/primus + + Mathias Freire + mathiasfreire45@gmail.com + + ISC + library + x11.misc + Minimalistic and efficient OpenGL offloading for Bumblebee + Primus is a shared library that provides OpenGL and GLX APIs and implements low-overhead local-only client-side OpenGL offloading via GLX forking, similar to VirtualGL. + mirrors://sourceforge/pisilinux/source/primus-20160408.tar.gz + + libX11-devel + mesa-devel + + + primus-nvidia-libs.patch + + x11/misc/primus/pspec.xml + + + primus + + libX11 + mesa + + + /etc + /usr/bin + /usr/lib + /usr/share/doc + /usr/share/man + + + + primus-32bit + + libX11-32bit + mesa-32bit + + + libX11-32bit + mesa-32bit + + + /usr/lib32 + + + + + 2020-01-25 + 2016.05.02 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2018-07-30 + 2016.05.02 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2017-02-16 + 2016.05.02 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2016-05-02 + 2016.05.02 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2016-04-09 + 2016.04.08 + First Release + Idris Kalp + idriskalp@gmail.com + + + + + + rofi + https://github.com/davatorium/rofi + + fury + uglyside@yandex.ru + + MIT + app + x11.misc + rofi + A window switcher, application launcher and dmenu replacement. + https://github.com/davatorium/rofi/releases/download/1.7.3/rofi-1.7.3.tar.xz + + pango-devel + cairo-devel + glib2-devel + check-devel + libxcb-devel + librsvg-devel + xcb-util-devel + xcb-util-wm-devel + xcb-util-xrm-devel + libxkbcommon-devel + libjpeg-turbo-devel + xcb-util-image-devel + xcb-util-cursor-devel + xcb-util-renderutil-devel + startup-notification-devel + + x11/misc/rofi/pspec.xml + + + rofi + + pango + cairo + glib2 + libxcb + librsvg + xcb-util + gdk-pixbuf + xcb-util-wm + xcb-util-xrm + libxkbcommon + libjpeg-turbo + xcb-util-cursor + startup-notification + + + /usr/bin + /usr/share + /usr/lib + /usr/share/doc + + + + rofi-devel + + rofi + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-02-04 + 1.7.3 + Version bump. + fury + uglyside@yandex.ru + + + 2021-11-27 + 1.7.1 + Version bump. + fury + uglyside@yandex.ru + + + 2021-09-15 + 1.7.0 + Version bump. + fury + uglyside@yandex.ru + + + 2020-12-06 + 1.6.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 1.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-25 + 1.5.2 + Rebuild libxkbcommon + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-02 + 1.5.2 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-30 + 1.5.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-10-07 + 1.5 + first pisi pack + fury + uglyside@yandex.ru + + + + + + virtualgl + http://virtualgl.org + + Marcin Bojara + marcin@pisilinux.org + + LGPLv2.1 + library + app:console + x11.misc + A toolkit for displaying OpenGL applications to thin clients + OpenGL uygulamaları ince istemcilerde göstermek için bir kitaplık + Redirects 3D commands from an OpenGL application onto a server-side 3D graphics card. + Bir OpenGL uygulamadan gelen 3D komutlarını sunucu tarafındaki 3D grafik kartına yönlendirir. + https://sourceforge.net/projects/virtualgl/files/2.5.2/VirtualGL-2.5.2.tar.gz + + cmake + fltk-devel + libXv-devel + libXext-devel + mesa-devel + libX11-devel + mesa-glu-devel + libjpeg-turbo-devel + + x11/misc/virtualgl/pspec.xml + + + virtualgl + + fltk + libXv + libXext + mesa + libX11 + mesa-glu + libjpeg-turbo + + + /usr/bin + /usr/lib + /usr/lib/fakelib + /usr/share/doc + + + + virtualgl-32bit + 32 bit shared libraries of VirtualGL + emul32 + emul32 + + fltk-32bit + libX11-32bit + libXv-32bit + libXext-32bit + mesa-32bit + mesa-glu-32bit + libjpeg-turbo-32bit + + + fltk-32bit + libX11-32bit + libXv-32bit + libXext-32bit + mesa-32bit + mesa-glu-32bit + libjpeg-turbo-32bit + + + /usr/bin/glxspheres32 + /usr/lib32 + /usr/lib32/fakelib + + + + virtualgl-devel + Development files for virtualgl + + virtualgl + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2018-07-30 + 2.5.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-22 + 2.5.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 2.5.1 + Rebuild. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-11-02 + 2.5.1 + Version bump. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-02 + 2.5 + Rebuild + Idris KALP + idriskalp@gmail.com + + + 2016-04-08 + 2.5 + Version bump + Idris KALP + idriskalp@gmail.com + + + + + + xapp + https://github.com/linuxmint/xapp + + Pisi Linux Admins + admin@pisilinux.org + + GPLv3 + app + x11.misc + Common library for X-Apps project + Common library for X-Apps project + Common library for X-Apps project + Common library for X-Apps project + https://github.com/linuxmint/xapp/archive/refs/tags/2.2.3.tar.gz + + meson + vala-devel + libdbusmenu-gtk3 + libgnomekbd-devel + libdbusmenu-devel + python3-pygobject3-devel + gobject-introspection-devel + + x11/misc/xapp/pspec.xml + + + xapp + + gtk3 + cairo + glib2 + pango + libX11 + gdk-pixbuf + libgnomekbd + libdbusmenu-gtk3 + + + /usr/bin + /etc + /usr/libexec + /usr/lib + /usr/share + /usr/share/locale + /usr/share/doc + + + + xapp-devel + Development files for xapp + + xapp + gtk3-devel + cairo-devel + glib2-devel + libX11-devel + gdk-pixbuf-devel + libgnomekbd-devel + libxkbfile-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-10-24 + 2.2.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-25 + 2.2.2 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + xbitmaps + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.misc + Utilitaire Xbitmaps de X.Org + X.Org static graphics + X.Org statik grafikleri + X.Org xbitmaps Werkzeug + xbitmaps provides static graphics needed by Xorg applications to draw screen elements. + xbitmaps, ekran öğeleri çizmek için Xorg uygulamaları tarafından ihtiyaç duyulan statik grafikleri içerir. + mirrors://xorg/individual/data/xbitmaps-1.1.2.tar.bz2 + x11/misc/xbitmaps/pspec.xml + + + xbitmaps + + /usr/include/X11/bitmaps + /usr/lib/pkgconfig + /usr/share/pkgconfig + + + + + 2020-01-10 + 1.1.2 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-30 + 1.1.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 1.1.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.1.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-15 + 1.1.1 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + xdm + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + app:gui + x11.misc + X Display Manager + X Görüntü Yöneticisi + X Display Manager provides a login screen, session management, and support for XDMCP. + X Görüntü Yöneticisi, giriş ekranı, oturum yönetimi ve XDMCP desteği sağlar. + xorg + mirrors://xorg/individual/app/xdm-1.1.11.tar.bz2 + + libXt-devel + libICE-devel + libSM-devel + libX11-devel + libXaw-devel + libXft-devel + libXmu-devel + libXpm-devel + libXext-devel + libXinerama-devel + util-macros + pam-devel + xtrans + audit-devel + libbsd-devel + + + xsession.patch + no-xconsole.patch + resources.patch + xdm-1.1.11-arc4random-include.patch + xdm-1.1.11-cve-2013-2179.patch + xdm-1.1.11-setproctitle-include.patch + xdm-consolekit.patch + + x11/misc/xdm/pspec.xml + + + xdm + + pam + libX11 + libXau + libXdmcp + libXt + libbsd + libXft + libXmu + libXpm + libXaw + libXext + libXinerama + xinit + + + /etc + /usr/bin + /usr/lib/X11/xdm + /usr/share/X11 + /usr/share/display-managers + /var/lib/xdm + /usr/share/doc + /usr/share/man + + + System.Service + + + xdm.pam.d + start-dm.sh + xdm.desktop + xorg-safe-fbdev.conf + xorg-safe-vesa.conf + + + + + 2020-01-25 + 1.1.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-10 + 1.1.11 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-09 + 1.1.11 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + xinit + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.misc + X Window System session initializer + X Pencere Sistemi oturum hazırlayıcı + xinit initializes X Window System server and runs the first client application. + xinit, X Pencere Sistemi sunucusunu hazırlar ve ilk istemci uygulamayı başlatır. + mirrors://xorg/individual/app/xinit-1.4.1.tar.bz2 + + util-macros + xorg-proto + libX11-devel + + + 06_move_serverauthfile_into_tmp.diff + fs25361.patch + + x11/misc/xinit/pspec.xml + + + xinit + + libX11 + xorg-app + dbus-x11 + + + /etc/X11/Xresources + /etc/X11/Xdefaults + /etc/X11/xinit + /usr/bin + /usr/lib/X11/xinit + /usr/share/doc + /usr/share/man + + + Xsession + xinitrc + xserverrc + xserverrc + Xresources + Xdefaults + xinitrc.d/localuser.sh + xinitrc.d/xdg-runtime-dir.sh + xinitrc.d/Xresources.sh + xinitrc.d/Xdefaults.sh + xinitrc.d/xkb.sh + xinitrc.d/startup.sh + xinitrc.d/environment.sh + xinitrc.d/dbus.sh + xinitrc.d/ssh-agent.sh + + + + + 2020-12-09 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-24 + 1.4.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 1.4.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.4.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-17 + 1.4.0 + Rebuild xorg prto + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-28 + 1.4.0 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 1.3.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-05-02 + 1.3.4 + Rebuild + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2015-11-30 + 1.3.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + xkeyboard-config + https://freedesktop.org/wiki/Software/XKeyboardConfig + + PisiLinux Community + admin@pisilinux.org + + MIT + data + x11.misc + X keyboard configuration database + X klavye yapılandırma veritabanı + xkeyboard-config aims to provide consistent and well-structured X keyboard configuration data for X Window System implementations. + xkeyboard-config, X Pencere Sistemi için tutarlı ve iyi tasarlanmış X klavye yapılandırma verisi sağlamayı amaçlar. + mirrors://xorg/individual/data/xkeyboard-config/xkeyboard-config-2.36.tar.xz + + meson + intltool + xorg-proto + xorg-app + python3-devel + libxslt-devel + libX11-devel + + x11/misc/xkeyboard-config/pspec.xml + + + xkeyboard-config + + xorg-app + libxslt + libX11 + xterm + + + /etc/X11/xorg.conf.d + /lib/udev/rules.d + /usr/share/X11/xkb + /usr/share/doc + /usr/share/locale + /usr/share/pkgconfig + /usr/share/man + + + 10-keyboard.conf + 95-xkb.rules + + + + + 2022-06-03 + 2.36 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-02-09 + 2.35.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-10 + 2.32 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-15 + 2.28 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 2.27 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-10 + 2.26 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2019-01-07 + 2.24 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-12 + 2.24 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-28 + 2.23.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-02-22 + 2.23.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 2.20 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-04 + 2.19 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 2.17 + Version bump + Hakan Yıldız + hknyldz93@gmail.com + + + 2015-05-14 + 2.14 + First release + Hakan Yıldız + hknyldz93@gmail.com + + + + + + xorg-app + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + app:gui + x11.misc + Applications de X.Org + X.Org applications + X.Org uygulamaları + X.Org Anwendungen + xorg-app contains base Xorg applications. + mirrors://xorg/individual/app/appres-1.0.5.tar.bz2 + mirrors://xorg/individual/app/bdftopcf-1.1.tar.bz2 + mirrors://xorg/individual/app/beforelight-1.0.5.tar.bz2 + mirrors://xorg/individual/app/bitmap-1.0.9.tar.bz2 + mirrors://xorg/individual/app/editres-1.0.7.tar.bz2 + mirrors://xorg/individual/app/fonttosfnt-1.2.2.tar.bz2 + mirrors://xorg/individual/app/fslsfonts-1.0.5.tar.bz2 + mirrors://xorg/individual/app/fstobdf-1.0.6.tar.bz2 + mirrors://xorg/individual/app/iceauth-1.0.8.tar.bz2 + mirrors://xorg/individual/app/ico-1.0.5.tar.bz2 + mirrors://xorg/individual/app/listres-1.0.4.tar.bz2 + mirrors://xorg/individual/app/luit-1.1.1.tar.bz2 + mirrors://xorg/individual/app/mkcomposecache-1.2.1.tar.bz2 + mirrors://xorg/individual/app/mkfontdir-1.0.7.tar.bz2 + mirrors://xorg/individual/app/mkfontscale-1.2.1.tar.bz2 + mirrors://xorg/individual/app/oclock-1.0.4.tar.bz2 + mirrors://xorg/individual/app/rendercheck-1.5.tar.bz2 + mirrors://xorg/individual/app/rgb-1.0.6.tar.bz2 + mirrors://xorg/individual/app/rstart-1.0.5.tar.bz2 + mirrors://xorg/individual/app/scripts-1.0.1.tar.bz2 + mirrors://xorg/individual/app/sessreg-1.1.2.tar.bz2 + mirrors://xorg/individual/app/setxkbmap-1.3.2.tar.bz2 + mirrors://xorg/individual/app/showfont-1.0.5.tar.bz2 + mirrors://xorg/individual/app/smproxy-1.0.6.tar.bz2 + mirrors://xorg/individual/app/twm-1.0.11.tar.xz + mirrors://xorg/individual/app/viewres-1.0.6.tar.bz2 + mirrors://xorg/individual/app/x11perf-1.6.1.tar.bz2 + mirrors://xorg/individual/app/xauth-1.1.tar.bz2 + mirrors://xorg/individual/app/xbacklight-1.2.3.tar.bz2 + mirrors://xorg/individual/app/xbiff-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xcalc-1.1.0.tar.bz2 + mirrors://xorg/individual/app/xclipboard-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xclock-1.0.9.tar.bz2 + mirrors://xorg/individual/app/xcmsdb-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xcompmgr-1.1.8.tar.bz2 + mirrors://xorg/individual/app/xconsole-1.0.7.tar.bz2 + mirrors://xorg/individual/app/xcursorgen-1.0.7.tar.bz2 + mirrors://xorg/individual/app/xdbedizzy-1.1.0.tar.bz2 + mirrors://xorg/individual/app/xditview-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xdpyinfo-1.3.2.tar.bz2 + mirrors://xorg/individual/app/xedit-1.2.2.tar.bz2 + mirrors://xorg/individual/app/xev-1.2.4.tar.bz2 + mirrors://xorg/individual/app/xeyes-1.2.0.tar.bz2 + mirrors://xorg/individual/app/xf86dga-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xfd-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xfindproxy-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xfontsel-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xfs-1.2.0.tar.bz2 + mirrors://xorg/individual/app/xfsinfo-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xfwp-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xgamma-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xgc-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xhost-1.0.8.tar.bz2 + mirrors://xorg/individual/app/xinput-1.6.3.tar.bz2 + mirrors://xorg/individual/app/xkbcomp-1.4.5.tar.bz2 + mirrors://xorg/individual/app/xkbevd-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xkbprint-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xkbutils-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xkill-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xload-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xlogo-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xlsatoms-1.1.3.tar.bz2 + mirrors://xorg/individual/app/xlsclients-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xlsfonts-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xmag-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xman-1.1.5.tar.bz2 + mirrors://xorg/individual/app/xmessage-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xmh-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xmodmap-1.0.10.tar.bz2 + mirrors://xorg/individual/app/xmore-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xpr-1.0.5.tar.bz2 + mirrors://xorg/individual/app/xprop-1.2.5.tar.bz2 + mirrors://xorg/individual/app/xrandr-1.5.1.tar.xz + mirrors://xorg/individual/app/xrdb-1.2.1.tar.bz2 + mirrors://xorg/individual/app/xrefresh-1.0.6.tar.bz2 + mirrors://xorg/individual/app/xset-1.2.4.tar.bz2 + mirrors://xorg/individual/app/xsetmode-1.0.0.tar.bz2 + mirrors://xorg/individual/app/xsetpointer-1.0.1.tar.bz2 + mirrors://xorg/individual/app/xsetroot-1.1.2.tar.bz2 + mirrors://xorg/individual/app/xsm-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xstdcmap-1.0.4.tar.bz2 + mirrors://xorg/individual/app/xvidtune-1.0.3.tar.bz2 + mirrors://xorg/individual/app/xvinfo-1.1.4.tar.bz2 + mirrors://xorg/individual/app/xwd-1.0.8.tar.bz2 + mirrors://xorg/individual/app/xwininfo-1.1.5.tar.bz2 + mirrors://xorg/individual/app/xwud-1.0.5.tar.bz2 + + fontconfig-devel + libdmx-devel + libfontenc-devel + libFS-devel + libICE-devel + libpng-devel + libSM-devel + libXaw-devel + libXcomposite-devel + libXcursor-devel + libXdamage-devel + libXext-devel + libXfixes-devel + libXfont-devel + libXft-devel + libXi-devel + libXinerama-devel + libxkbfile-devel + libXmu-devel + libXrandr-devel + libXfont2-devel + libXrender-devel + libXScrnSaver-devel + libXt-devel + libXtst-devel + libXv-devel + libXxf86dga-devel + libXxf86vm-devel + xbitmaps + xcb-util-devel + libXxf86misc-devel + xorg-proto + util-macros + xtrans + font-util + + x11/misc/xorg-app/pspec.xml + + + xorg-app + + zlib + libX11 + libXau + libpng + libxcb + freetype + libFS + libSM + libXi + libXt + libXv + libdmx + libXmu + libXaw + libICE + libXft + libXtst + libXext + xcb-util + libXfont + libXrandr + libXfixes + libXfont2 + libXrender + fontconfig + libfontenc + libXxf86vm + libXcursor + libXdamage + libxkbfile + libXxf86dga + libXinerama + libXxf86misc + libXcomposite + libXScrnSaver + + + /etc + /usr/bin + /usr/include + /usr/lib + /usr/sbin + /usr/share/X11 + /usr/share/man + + + System.PackageHandler + + + + xorg-app-devel + + xorg-proto + libX11-devel + libxkbfile-devel + xorg-app + + + /usr/lib/pkgconfig + + + + + 2021-08-28 + 7.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-25 + 7.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-10 + 7.7 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-20 + 7.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-03-14 + 7.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-21 + 7.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-05 + 7.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 7.7 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 7.7 + Version bump. + Alihan Öztürk + alihan@pisilinux.org + + + 2015-05-10 + 7.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xorg-font + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + data:font + x11.misc + Fichiers de fontes d'écrans graphiques (X.Org) + X.Org font files + X.Org yazı tipi dosyaları + Grafische Oberfläche (X.Org) Schrift Dateien + xorg-font contains base X.Org fonts. + mirrors://xorg/individual/font/encodings-1.0.5.tar.bz2 + mirrors://xorg/individual/font/font-adobe-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-adobe-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-75dpi-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-100dpi-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-adobe-utopia-type1-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-alias-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-arabic-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-lucidatypewriter-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-lucidatypewriter-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-ttf-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bh-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-75dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-100dpi-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-bitstream-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-cronyx-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-cursor-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-daewoo-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-dec-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-ibm-type1-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-isas-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-jis-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-micro-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-ethiopic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-meltho-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-mutt-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-misc-misc-1.1.2.tar.bz2 + mirrors://xorg/individual/font/font-schumacher-misc-1.1.2.tar.bz2 + mirrors://xorg/individual/font/font-screen-cyrillic-1.0.4.tar.bz2 + mirrors://xorg/individual/font/font-sony-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-sun-misc-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-winitzki-cyrillic-1.0.3.tar.bz2 + mirrors://xorg/individual/font/font-xfree86-type1-1.0.4.tar.bz2 + + font-util + util-macros + xorg-app + fontconfig-devel + + x11/misc/xorg-font/pspec.xml + + + xorg-font + + xorg-app + + + /etc/X11/fontpath.d + /usr/share/fonts + /etc/fonts/conf.avail/42-luxi-mono.conf + /etc/fonts/conf.d/42-luxi-mono.conf + + + + xorg-font-extra + X.Org additional font files + X.Org ek yazı tipi dosyaları + + xorg-app + + + /etc/X11/fontpath.d/75dpi:unscaled + /etc/X11/fontpath.d/100dpi:unscaled + /usr/share/fonts/75dpi + /usr/share/fonts/100dpi + + + + + 2020-01-25 + 7.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-11-08 + 7.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2019-01-08 + 7.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2018-07-27 + 7.6 + Rebuild. + Pisi Linux Community + admin@pisilinux.org + + + 2017-02-16 + 7.6 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 7.6 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-11-17 + 7.6 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + xscreensaver + https://www.jwz.org/xscreensaver/ + + Mogyorósi Petra + squeakymouse@protonmail.com + + custom + x11.misc + Screensaver collection for X11 systems. + XScreenSaver is the standard screen saver collection shipped on most Linux and Unix systems running the X11 Window System. I released the first version in 1992. I ported it to macOS in 2006, to iOS in 2012, and to Android in 2014. On X11 systems, XScreenSaver is two things: it is both a large collection of screen savers; and it is also the framework for blanking and locking the screen. + https://www.jwz.org/xscreensaver/xscreensaver-6.03.tar.gz + + bc + intltool + atk-devel + pam-devel + gtk2-devel + mesa-devel + glib2-devel + glibc-devel + cairo-devel + pango-devel + libXi-devel + pixman-devel + libpng-devel + libXft-devel + libXmu-devel + libICE-devel + libX11-devel + gettext-devel + libxml2-devel + libXext-devel + elogind-devel + freetype-devel + harfbuzz-devel + mesa-glu-devel + libglade-devel + libXrandr-devel + libXrender-devel + libXxf86vm-devel + gdk-pixbuf-devel + libXinerama-devel + libXxf86misc-devel + libjpeg-turbo-devel + gdk-pixbuf-xlib-devel + + x11/misc/xscreensaver/pspec.xml + + + xscreensaver + + atk + pam + gtk2 + mesa + glib2 + glibc + pango + cairo + libXi + libXt + libXft + libpng + libICE + libX11 + pixman + libXmu + libxml2 + gettext + libXext + elogind + libglade + libglvnd + mesa-glu + freetype + harfbuzz + libXrandr + libXrender + gdk-pixbuf + libXxf86vm + libXinerama + libXxf86misc + libjpeg-turbo + gdk-pixbuf-xlib + + + /etc/pam.d + /usr/bin + /usr/libexec + /usr/lib + /usr/share + /usr/share/locale + /usr/share/man + /usr/share/doc + + + + + 2022-04-14 + 6.03 + First build. + fury + uglyside@yandex.ru + + + + + + xorg-server + http://www.x.org + + PisiLinux Community + admins@pisilinux.org + + MIT + x11.server + X.Org X Server + Serveur X X.Org + X.Org X Server + X.Org X Sunucu + X.Org X Serwer + X server is the main application that allows a graphical interface. + X sunucu, grafiksel arayüz için gerekli ana uygulamadır. + X serwer to główna aplikacja, która umożliwia interfejs graficzny. + mirrors://xorg/individual/xserver/xorg-server-21.1.3.tar.xz + + valgrind + xorg-proto + libtirpc-devel + elogind-devel + libbsd-devel + font-util + libjpeg-turbo-devel + libdmx-devel + libdrm-devel + libgcrypt-devel + libpciaccess-devel + libX11-devel + libXaw-devel + libXext-devel + libXfixes-devel + libXfont2-devel + libXi-devel + libxkbfile-devel + libXmu-devel + libXpm-devel + libXrender-devel + libXres-devel + libXt-devel + libXtst-devel + libXv-devel + mesa-devel + pixman-devel + xorg-app + nettle-devel + libepoxy-devel + xcb-util-devel + xcb-util-image-devel + xcb-util-wm-devel + xcb-util-keysyms-devel + xcb-util-renderutil-devel + util-macros + xtrans + eudev-devel + freetype-devel + libunwind-devel + libXau-devel + libICE-devel + libSM-devel + openssl-devel + xorg-app-devel + wayland-devel + wayland-protocols-devel + libglvnd-devel + xkeyboard-config + libxcvt-devel + + + xorg-server-1.12-unloadsubmodule.patch + xorg-server-1.18-support-multiple-Files-sections.patch + 0001-xkb-fix-XkbSetMap-when-changing-a-keysym-without-cha.patch + 0002-xephyr_Dont_check_for_SeatId_anymore.patch + 0003-dix_Correctly_save_replayed_event_into_GrabInfoRec.patch + 0004-present_Check_for_NULL_to_prevent_crash.patch + + x11/server/xorg-server/pspec.xml + + + xorg-server + app:console + + libbsd + libXau + eudev + elogind + libXdmcp + mesa + libxcvt + libdrm + pixman + libglvnd + libXfont2 + libunwind + libpciaccess + libxshmfence + libepoxy + nettle + + + /etc/X11/xorg.conf.d + /etc/sysconfig/createfiles + /usr/bin/X + /usr/bin/Xorg + /usr/bin/cvt + /usr/bin/gtf + /usr/libexec + /usr/lib/xorg + /usr/share/X11/DriversDB + /usr/share/X11/pci + /usr/share/X11/xorg.conf.d + /usr/share/man/man1/Xorg.1 + /usr/share/man/man1/cvt.1 + /usr/share/man/man1/gtf.1 + /usr/share/man/man4/exa.4 + /usr/share/man/man4/modesetting.4 + /usr/share/man/man4/fbdevhw.4 + /usr/share/man/man5/xorg.conf.5 + /usr/share/man/man5/xorg.conf.d.5 + /usr/share/man/man4/inputtestdrv.4 + /usr/share/man/man1/Xorg.wrap.1 + /usr/share/man/man5/Xwrapper.config.5 + /etc/X11/fontpath.d + /usr/share/doc + /var/lib/xkb + /usr/share/man/man1/Xserver.1 + + + xorg-server-common + + + xorg-video-modesetting + glamor-egl + xorg-server-common + + + xorg-save-xkb-config.sh + DriversDB + fedora/10-quirks.conf + + + + xorg-server-xephyr + Nested X Server + Başka bir X ekranında çalışabilen X sunucusu + app:console + + libX11 + libXau + libxcb + libXdmcp + xorg-server + mesa + xcb-util + libunwind + pixman + libXext + libXfont2 + libepoxy + xcb-util-wm + libxshmfence + xcb-util-image + xcb-util-keysyms + xcb-util-renderutil + + + /usr/bin/Xephyr + /usr/share/man/man1/Xephyr.1 + + + + xorg-server-xvfb + Virtual Framebuffer X Server + Sanal framebuffer X sunucusu + app:console + GPLv2 + + libXau + libXdmcp + xorg-server + libXfont2 + pixman + mesa + libunwind + + + /usr/bin/[Xx]vfb* + /usr/share/man/man1/Xvfb.1 + + + xvfb-run.sh + + + + xorg-server-xnest + A nested X server that runs as an X application + + libX11 + libXau + libXdmcp + libXfont2 + libXext + libunwind + pixman + + + /usr/bin/Xnest + /usr/share/man/man1/Xnest.1 + + + + xorg-server-devel + Headers and libraries for X server driver development + X sunucusu için sürücü geliştirmede kullanılan başlık ve kitaplık dosyaları + data + library + + xorg-server + libpciaccess-devel + pixman-devel + mesa-devel + xorg-proto + libxcvt-devel + + + /usr/include/xorg + /usr/lib/libxf86config.a + /usr/lib/pkgconfig + /usr/share/aclocal + + + + + 2022-05-23 + 21.1.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-11 + 21.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-01-03 + 21.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-15 + 21.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-14 + 21.1.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-12 + 21.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-01 + 1.20.13 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-12 + 1.20.11 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-23 + 1.20.10 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-12-09 + 1.20.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-09-08 + 1.20.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-06-04 + 1.20.8 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-26 + 1.20.7 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-03-11 + 1.20.6 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-19 + 1.20.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-02-09 + 1.20.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-30 + 1.19.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-07 + 1.20.3 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-10-31 + 1.20.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 1.19.6 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-12-17 + 1.19.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-04-26 + 1.19.1 + Rebuild for a patch + Kamil Atlı + suvari@pisilinux.org + + + 2017-03-02 + 1.19.1 + Version bump. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-11-04 + 1.18.4 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 1.18.3 + Version bump + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2016-04-08 + 1.17.2 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + rxvt-unicode + http://software.schmorp.de/pkg/rxvt-unicode.html + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + app:gui + x11.terminal + Rxvt clone with XFT and Unicode support. + XFT ve unikod destekli rxvt klonu + Rxvt-unicode, Une implémentation de terminal avec une interface graphique et le support pour XVT et l'unicode. + Rxvt-unicode is a terminal application with graphical user interface having XVT and Unicode support. + Rxvt-unicode, grafiksel arayüzde bir kabuk çalıştırmaya yarayan, XFT ve unikod destekli uçbirim aracıdır. + https://ftp.osuosl.org/pub/blfs/conglomeration/rxvt-unicode/rxvt-unicode-9.30.tar.bz2 + + libXt-devel + libXft-devel + libXmu-devel + libptytty-devel + fontconfig-devel + libXrender-devel + gdk-pixbuf-devel + startup-notification-devel + + + rxvt-unicode-9.06-font-width.patch + gentables.patch + + x11/terminal/rxvt-unicode/pspec.xml + + + rxvt-unicode + + perl + glib2 + libX11 + libXft + libXmu + libgcc + libptytty + perl-Gtk2 + fontconfig + gdk-pixbuf + libXrender + startup-notification + + + /etc + /usr/bin + /usr/lib + /usr/share/terminfo + /usr/share/applications + /usr/share/man + /usr/share/doc + + + System.Package + + + rxvt.desktop + urxvtc.desktop + rxvt-tabbed.desktop + + + + + 2021-12-21 + 9.30 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2021-11-19 + 9.26 + Version bump. + PisiLinux Community + admins@pisilinux.org + + + 2020-01-25 + 0.9.22 + Rebuild + PisiLinux Community + admins@pisilinux.org + + + 2019-04-17 + 0.9.22 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + terminator + https://gnome-terminator.org/ + + PisiLinux Community + admins@pisilinux.org + + GPL-2 + app:gui + x11.terminal + Multiple terminals in one window. + >Tek bir pencerede birden fazla terminal çalıştırabilen uygulama. + In April of 2020 we started moving Terminator to GitHub. A new team wanted to continue the work of the original authors. + Terminator tek pencerede birden çok terminal çalıştırarak masaüstü alanınızı daha rahat kullanmanızı amaçlar. + https://github.com/gnome-terminator/terminator/releases/download/v2.1.1/terminator-2.1.1.tar.gz + + intltool + vte-devel + gtk3-devel + gnutls-devel + dbus-python3 + python3-devel + python3-wheel + gettext-devel + libpcre2-devel + python3-psutil + dbus-glib-devel + keybinder-devel + python3-setuptools + python3-pytest-runner + python3-pygobject3-devel + gsettings-desktop-schemas-devel + + x11/terminal/terminator/pspec.xml + + + terminator + + vte + gtk3 + gnutls + python3 + libpcre2 + keybinder + dbus-glib + python3-six + dbus-python3 + python3-psutil + python3-configobj + python3-pygobject3 + gsettings-desktop-schemas + + + /usr/bin + /usr/lib + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2021-11-04 + 2.1.1 + First build + fury + uglyside@yandex.ru + + + + + + tilda + https://github.com/lanoxx/tilda + + fury + uglyside@yandex.ru + + GPL-2 + app:gui + x11.terminal + A Gtk based drop down terminal for Linux and Unix. + Tilda is a terminal emulator and can be compared with other popular terminal emulators such as gnome-terminal (Gnome), Konsole (KDE), xterm and many others. The specialities of Tilda are that it does not behave like a normal window but instead it can be pulled up and down from the top of the screen with a special hotkey. Additionally Tilda is highly configurable. It is possible to configure the hotkeys for keybindings, change the appearance and many options that affect the behavior of Tilda. + https://github.com/lanoxx/tilda/archive/tilda-1.5.4.tar.gz + + python3 + vte-devel + gtk3-devel + glib2-devel + libX11-devel + gnutls-devel + libpcre2-devel + libconfuse-devel + + x11/terminal/tilda/pspec.xml + + + tilda + + vte + gtk3 + glib2 + pango + libX11 + gdk-pixbuf + libconfuse + + + /usr/bin + /usr/share + /usr/share/locale + /usr/share/doc + + + + + 2021-10-13 + 1.5.4 + First build + fury + uglyside@yandex.ru + + + + + + vte + https://www.gnome.org/ + + Berk Çakar + berk2238@hotmail.com + + LGPLv2 + x11.terminal + Widget terminal utilisant Xft + Xft powered terminal widget + The VTE package contains a termcap file implementation for terminal emulators. + Vte paketi, terminal emülatörleri için termcap uygulama dosyası içerir. + mirrors://gnome/vte/0.68/vte-0.68.0.tar.xz + + atk-devel + cairo-devel + fontconfig-devel + gdk-pixbuf-devel + glib2-devel + gnutls-devel + gobject-introspection-devel + graphite2-devel + gtk-doc + gtk2-devel + gtk3-devel + harfbuzz-devel + intltool + libX11-devel + libglade-devel + libpcre2-devel + ncurses-devel + pango-devel + python-six + meson + vala-devel + + x11/terminal/vte/pspec.xml + + + vte + Development files for vte + library + + atk + icu4c + cairo + gdk-pixbuf + glib2 + gnutls + gobject-introspection + gtk3 + libX11 + libgcc + libpcre2 + ncurses + pango + zlib + fribidi + + + /etc/profile.d + /usr/bin + /usr/lib + /usr/libexec + /usr/share + /usr/share/doc + /usr/share/gir-1.0/Vte-0.0.gir + /usr/share/locale + /usr/share/pygtk + /usr/share/vte + + + + vte-docs + GTK reference documents for vte + data:doc + + /usr/share/gtk-doc + + + + vte-devel + Development files for vte + vte için geliştirme dosyaları + + cairo-devel + glib2-devel + gtk3-devel + libX11-devel + pango-devel + vte + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-03-28 + 0.68.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-08 + 0.66.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-21 + 0.66.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-23 + 0.64.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-02 + 0.64.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-04-06 + 0.63.91 + Version bump + Berk Çakar + berk2238@hotmail.com + + + 2020-01-25 + 0.56.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-01-15 + 0.54.3 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-31 + 0.28.2 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-05-11 + 0.28.2 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-05-02 + 0.28.2 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2014-05-16 + 0.28.2 + First release + Marcin Bojara + marcin@pisilinux.org + + + + + + xterm + http://invisible-island.net/xterm + + PisiLinux Community + admins@pisilinux.org + + MIT + app:gui + x11.terminal + Terminal emulator for the X Window System + X Pencere Sistemi için uçbirim emülatörü + The xterm program is a terminal emulator for the X Window System. It provides DEC VT102 and Tektronix 4014 compatible terminals for programs that can't use the window system directly. + xterm programı, X Pencere Sistemi için bir uçbirim emülatörüdür. Pencere sistemini doğrudan kullanamayan programlar için DEC VT102 ve Tektronix 4014 uyumlu uçbirimler sağlar. + terminal + http://invisible-mirror.net/archives/xterm/xterm-368.tgz + + fontconfig-devel + libICE-devel + libXaw-devel + libXft-devel + libXmu-devel + libXt-devel + utempter-devel + libXinerama-devel + xorg-app + libXpm-devel + ncurses-devel + libX11-devel + libXext-devel + freetype-devel + + + 16colors.txt.diff + defaults.patch + + x11/terminal/xterm/pspec.xml + + + xterm + + fontconfig + libICE + libXext + freetype + libXaw + libXft + libXmu + libXt + libXinerama + utempter + xorg-app + libXpm + ncurses + libX11 + + + /usr/bin + /usr/share/X11 + /usr/share/doc + /usr/share/man + + + + + 2021-06-10 + 368 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 348 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 331 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-02-16 + 327 + Rebuild. + Stefan Gronewold + groni@pisilinux.org + + + 2016-11-04 + 327 + Version bump + Stefan Gronewold + groni@pisilinux.org + + + 2016-05-02 + 324 + Version bump + Alihan Öztürk + alihan@pisilinux.org + + + 2014-05-13 + 304 + First release + Alihan Öztürk + alihan@pisilinux.org + + + + + + yakuake + https://kde.org/applications/system/org.kde.yakuake/ + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:gui + x11.terminal + Very powerful Quake style Konsole for KDE4 + KDE5 için Quake tarzı oldukça güçlü bir Konsole + The name comes from Yet Another Kuake (thus YaKuake). Its behaviour is similar to the console of the Quake game. + İsmi Bir Başka Kuake (Yet Another Kuake - YaKuake) sözcüklerinden gelmektedir. Quake oyunundaki konsola benzer. + yakuake + mirrors://kde/stable/yakuake/3.0.5/src/yakuake-3.0.5.tar.xz + + qt5-base-devel + libX11-devel + qt5-x11extras-devel + knewstuff-devel + kio-devel + kparts-devel + knotifyconfig-devel + karchive-devel + kcoreaddons-devel + kconfig-devel + kcrash-devel + kdbusaddons-devel + kglobalaccel-devel + ki18n-devel + kiconthemes-devel + knewstuff-devel + knotifications-devel + kparts-devel + kwidgetsaddons-devel + kwindowsystem-devel + gettext-devel + extra-cmake-modules + kwayland-devel + + x11/terminal/yakuake/pspec.xml + + + yakuake + + qt5-base + qt5-x11extras + kio + kcrash + ki18n + kparts + kconfig + kxmlgui + karchive + kservice + knewstuff + kwayland + kcoreaddons + kdbusaddons + kiconthemes + kglobalaccel + knotifyconfig + kwindowsystem + kconfigwidgets + knotifications + kwidgetsaddons + libX11 + libgcc + + + /etc/xdg + /usr/bin + /usr/lib + /usr/lib/qt5 + /usr/share + /usr/share/locale + /usr/share/doc + + + yakuake.notifyrc + + + + + 2020-02-08 + 3.0.5 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-08-15 + 3.0.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-04-01 + 3.0.5 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-09-16 + 3.0.4 + Rebuild for new Toolchain. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-02 + 3.0.2 + Rebuild for new Toolchain. + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-05-23 + 3.0.2 + Release bump + Stefan Gronewold(groni) + groni@pisilinux.org + + + 2016-03-07 + 3.0.2 + First release + Stefan Gronewold(groni) + groni@pisilinux.org + + + + + + alternatives + http://git.fedorahosted.org/git/?p=chkconfig.git;a=summary + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + x11.util + Alternative management system + Alternatif yönetim sistemi + alternatives creates, removes, maintains and displays information about the symbolic links comprising the alternatives system. Alternatives system determines the defaults when several programs fulfilling the same or similar functions to be installed on a single system at the same time. + alternatives, alternatives sisteminin parçası olan sembolik bağlantıları oluşturan, silen, yöneten ve bunlar hakkında bilgi gösteren araçtır. Alternatives sistemi, birbirine benzer ya da aynı işlevleri sunan programların aynı anda aynı sisteme kurulduğu zamanlarda öntanımlıları belirler. + https://github.com/fedora-sysv/chkconfig/archive/chkconfig-1.3.63.tar.gz + + popt-devel + newt-devel + + x11/util/alternatives/pspec.xml + + + alternatives + + /etc + /usr/sbin + /usr/share/locale + /usr/share/man + /usr/share/doc + /var + + + + + 2020-01-25 + 1.3.63 + Rebuild for new toolchain. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-28 + 1.3.63 + Rebuild for new toolchain. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-26 + 1.3.63 + Rebuild for new toolchain. + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.3.63 + Rebuild + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2016-03-05 + 1.3.63 + First release + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + font-util + https://www.x.org/ + + PisiLinux Community + admins@pisilinux.org + + MIT + app:console + x11.util + Utilitaires de fontes de X.Org + X.Org font utilities + X.Org font araçları + X.Org Schrift Werkzeuge + font-util package contains core font utilities for the Xorg XWindow system. + mirrors://xorg/individual/font/font-util-1.3.2.tar.bz2 + + zlib-devel + util-macros + + x11/util/font-util/pspec.xml + + + font-util + + /usr/bin + /usr/lib/pkgconfig + /usr/share/fonts + /usr/share/aclocal + /usr/share/doc + /usr/share/man + + + + + 2020-01-10 + 1.3.2 + Rebuild + Idris Kalp + idriskalp@gmail.com + + + 2019-11-08 + 1.3.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-27 + 1.3.1 + Rebuild + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-01-26 + 1.3.1 + Rebuild + Alihan Öztürk + alihan@pisilinux.org + + + 2016-05-02 + 1.3.1 + Rebuild + Burak Ertürk + burakerturk@pisilinux.org + + + 2015-05-10 + 1.3.1 + First release + Burak Ertürk + burakerturk@pisilinux.org + + + + + + zorg + http://www.pisilinux.org + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app:console + x11.util + Çomar'ın X yapılandırma araçları + Çomar's X-Konfigurationtools + Çomar's X configuration tools + outils de configuration de X, fichiers de base de données des écrans et des cartes vidéo. + zorg is a set of X configuration tools and monitor and display adapter database files. + X yapılandırma araçları, monitör ve ekran kartı veritabanları + https://github.com/forYali/zorg/archive/2.0.4.tar.gz + + keyboard-config.patch + + x11/util/zorg/pspec.xml + + + zorg + + /sbin + /usr/bin + /usr/lib + /usr/share/X11 + /usr/share/doc + /var/lib/zorg + + + Xorg.Display + System.Package + + + xorg-safe.conf + + + + + 2020-01-25 + 2.0.4 + Rebuild for new toolchain. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-07-28 + 2.0.4 + Rebuild for new toolchain. + Mustafa Cinasal + muscnsl@gmail.com + + + 2017-03-05 + 2.0.4 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + glslang + https://github.com/KhronosGroup/glslang + + Idris Kalp + idriskalp@gmail.com + + BSD + library + x11.vulkan + OpenGL and OpenGL ES shader front end and validator + OpenGL and OpenGL ES shader front end and validator + https://github.com/KhronosGroup/glslang/archive/11.9.0.tar.gz + + cmake + python3-devel + + x11/vulkan/glslang/pspec.xml + + + glslang + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + glslang-32bit + emul32 + emul32 + + /usr/bin/*32 + /usr/lib32 + + + + glslang-devel + + glslang + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2022-04-21 + 11.9.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 11.7.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 11.6.0 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 11.6.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 11.5.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-06 + 8.13.3743 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 8.13.3559 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + spirv-headers + https://www.khronos.org/registry/spir-v/ + + Mustafa Cinasal + muscnsl@gmail.com + + MIT + library + x11.vulkan + SPIR-V Headers + SPIR-V Headers + https://github.com/KhronosGroup/SPIRV-Headers/archive/refs/tags/sdk-1.3.211.0.tar.gz + + cmake + + x11/vulkan/spirv-headers/pspec.xml + + + spirv-headers + + /usr/include + /usr/lib/cmake + /usr/share/doc + /usr/lib/pkgconfig + + + + + 2022-04-21 + 1.3.211.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 1.5.4 + Git Version. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.5.4 + Git Version. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.5.4 + Git Version. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-28 + 1.5.4 + Git Version. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 1.5.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-06 + 1.5.3 + First release + Mustafa Cinasal + muscnsl@gmail.com + + + + + + spirv-llvm + https://github.com/KhronosGroup/SPIRV-LLVM-Translator + + Pisi Linux Admins + admin@pisilinux.org + + custom + library + x11.vulkan + Tool and a library for bi-directional translation between SPIR-V and LLVM IR + Tool and a library for bi-directional translation between SPIR-V and LLVM IR + Tool and a library for bi-directional translation between SPIR-V and LLVM IR + Tool and a library for bi-directional translation between SPIR-V and LLVM IR + https://github.com/KhronosGroup/SPIRV-LLVM-Translator/archive/refs/tags/v14.0.0.tar.gz + + git + cmake + python3-devel + llvm-mlir + llvm-libs + spirv-tools-devel + libxml2-devel + llvm-clang-devel + python3-setuptools + python3-lit + llvm-polly + spirv-headers + spirv-tools-devel + + x11/vulkan/spirv-llvm/pspec.xml + + + spirv-llvm + + llvm-libs + libgcc + python3-lit + spirv-tools + + + /usr/lib + /usr/share/doc + + + + spirv-llvm-32bit + 32-bit shared libraries for spirv-llvm + emul32 + emul32 + + llvm-32bit + libxml2-32bit + spirv-tools-32bit + + + llvm-32bit + spirv-tools-32bit + + + /usr/lib32 + + + + spirv-llvm-devel + Development files for spirv-llvm + + spirv-llvm + + + /usr/bin + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2022-05-03 + 14.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 13.0.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-28 + 12.0.0 + Rebuild. + Pisi Linux Admins + admin@pisilinux.org + + + 2021-06-05 + 12.0.0 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + spirv-tools + https://www.khronos.org/vulkan/ + + Idris Kalp + idriskalp@gmail.com + + BSD + library + x11.vulkan + API and commands for processing SPIR-V modules + API and commands for processing SPIR-V modules + https://github.com/KhronosGroup/SPIRV-Tools/archive/v2022.2.tar.gz + + cmake + spirv-headers + python3-devel + + x11/vulkan/spirv-tools/pspec.xml + + + spirv-tools + + /usr/bin + /usr/lib/libSPIRV-Tools* + /usr/share + /usr/share/doc + + + + spirv-tools-32bit + emul32 + emul32 + + /usr/lib32 + + + + spirv-tools-devel + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + /usr/lib/cmake + + + + + 2022-04-21 + 2022.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 2021.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 2021.3 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 2021.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 2021.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 2020.6 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-06 + 2020.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 2019.4 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + vulkan + https://github.com/KhronosGroup + + Idris Kalp + idriskalp@gmail.com + + GPLv2 + library + x11.vulkan + Vulkan headers, loaders and validations layers + Vulkan headers, loaders and validations layers + https://github.com/KhronosGroup/Vulkan-Loader/archive/refs/tags/sdk-1.3.211.0.tar.gz + https://github.com/KhronosGroup/Vulkan-ValidationLayers/archive/refs/tags/sdk-1.3.211.0.tar.gz + + python3-lxml + libX11-devel + libXrandr-devel + wayland-devel + vulkan-headers + cmake + git + spirv-tools + spirv-headers + glslang-devel + wayland-server + wayland-client + wayland-cursor + spirv-tools-devel + + x11/vulkan/vulkan/pspec.xml + + + vulkan + + libX11 + libXrandr + wayland + spirv-tools + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + vulkan-32bit + emul32 + _emul32 + + libX11-32bit + libXrandr-32bit + wayland-32bit + glslang-32bit + spirv-tools-32bit + + + libX11-32bit + libXrandr-32bit + wayland-32bit + spirv-tools-32bit + + + /usr/bin/*32 + /usr/lib32 + + + + vulkan-devel + + vulkan + + + /usr/include + /usr/lib/pkgconfig + /usr/lib32/pkgconfig + + + + + 2022-04-21 + 1.3.211.0 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 1.2.201 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.2.196 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.2.189 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 1.2.182 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 1.2.166 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-13 + 1.2.146 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 1.1.130 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + vulkan-headers + https://github.com/KhronosGroup + + Idris Kalp + idriskalp@gmail.com + + GPLv2 + library + x11.vulkan + Vulkan headers + Vulkan headers + https://github.com/KhronosGroup/Vulkan-Headers/archive/v1.3.211.tar.gz + + cmake + python3-devel + + x11/vulkan/vulkan-headers/pspec.xml + + + vulkan-headers + + /usr/include + /usr/share/vulkan + /usr/share/doc + + + + + 2022-04-21 + 1.3.211 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 1.2.201 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.2.196 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.2.189 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-27 + 1.2.182 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 1.2.168 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-04 + 1.2.146 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-11 + 1.1.130 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + vulkan-lunarg-tools + http://lunarg.com/ + + Idris Kalp + idriskalp@gmail.com + + Custom + app:console + x11.vulkan + Extra Vulkan tools from LunarG + This project provides vktrace capture/replay tool, the Layer Factory, and other layer tools and driver tests. + https://sourceforge.net/projects/pisilinux/files/source/VulkanTools-1.1.130.0.tar.xz + + libX11-devel + libxcb-devel + libXrandr-devel + wayland-devel + vulkan-headers + vulkan-devel + qt5-svg-devel + qt5-webengine-devel + xcb-util-keysyms-devel + xcb-util-wm-devel + git + cmake + + x11/vulkan/vulkan-lunarg-tools/pspec.xml + + + vulkan-trace + + libX11 + libxcb + libXrandr + wayland + vulkan + qt5-base + qt5-svg + qt5-webengine + xcb-util-wm + wayland-client + xcb-util-keysyms + + + /etc/vulkan/explicit_layer.d/VkLayer_vktrace_layer.json + /usr/bin + /usr/lib/libVkLayer_vktrace_layer.so + /usr/lib/libvkdisplay_*.so + /usr/share/doc/vulkan-trace + + + + vulkan-extra-layers + + vulkan + + + /etc/vulkan/explicit_layer.d + /usr/lib + /usr/share + /usr/share/doc/vulkan-extra-layers + + + + + 2019-11-15 + 1.1.130.0 + First release + Idris Kalp + idriskalp@gmail.com + + + + + + vulkan-tools + https://www.khronos.org/vulkan/ + + Idris Kalp + idriskalp@gmail.com + + BSD + app:console + x11.vulkan + Vulkan Utilities and Tools + This project provides Khronos official Vulkan Tools and Utilities for Linux + https://github.com/KhronosGroup/Vulkan-Tools/archive/refs/tags/v1.3.211.tar.gz + + libX11-devel + libxcb-devel + libXrandr-devel + wayland-devel + vulkan-headers + vulkan-devel + python3-devel + cmake + git + glslang-devel + wayland-server + wayland-client + wayland-cursor + wayland-protocols-devel + + x11/vulkan/vulkan-tools/pspec.xml + + + vulkan-tools + + libgcc + libX11 + libxcb + libXrandr + wayland + wayland-client + vulkan + + + /usr/bin + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-04-21 + 1.3.212 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-17 + 1.2.201 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-24 + 1.2.196 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-29 + 1.2.189 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-28 + 1.2.182 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-02-01 + 1.2.166 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-07-04 + 1.2.146 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-14 + 1.1.130 + First release + İdris Kalp + idriskalp@gmail.com + + + + + + egl-wayland + https://github.com/NVIDIA/egl-wayland + + Pisi Linux Admins + admin@pisilinux.org + + MIT + library + x11.wayland + Wayland EGL External Platform library + Wayland EGL External Platform library + Wayland EGL Harici Platform kitaplığı + Wayland EGL Harici Platform kitaplığı + https://github.com/NVIDIA/egl-wayland/archive/refs/tags/1.1.9.tar.gz + + meson + libffi-devel + libglvnd-devel + wayland-devel + wayland-client + wayland-server + eglexternalplatform + wayland-protocols-devel + + x11/wayland/egl-wayland/pspec.xml + + + egl-wayland + + wayland-client + wayland-server + + + /usr/lib + /usr/share/wayland-eglstream + /usr/share/doc + + + + egl-wayland-devel + Development files for egl-wayland + + egl-wayland + eglexternalplatform + + + /usr/lib/pkgconfig + /usr/share/pkgconfig + + + + + 2021-12-13 + 1.1.9 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-03 + 1.1.7 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + wayland-utils + https://gitlab.freedesktop.org/wayland/wayland-utils + + PisiLinux Community + admins@pisilinux.org + + MIT + library + x11.wayland + Wayland tools to display information about current compositor + Wayland tools to display information about current compositor + Wayland tools to display information about current compositor + Wayland tools to display information about current compositor + https://gitlab.freedesktop.org/wayland/wayland-utils/-/archive/wayland-utils-1.0.0/wayland-utils-wayland-utils-1.0.0.tar.bz2 + + meson + wayland-devel + wayland-client + wayland-server + wayland-cursor + wayland-protocols-devel + + x11/wayland/wayland-utils/pspec.xml + + + wayland-utils + + wayland-client + + + /usr/bin + /usr/share + /usr/share/man + /usr/share/doc + + + + + 2021-10-20 + 1.0.0 + First release. + PisiLinux Community + admins@pisilinux.org + + + + + + xorg-xwayland + https://xorg.freedesktop.org + + Pisi Linux Admins + admin@pisilinux.org + + custom + library + x11.wayland + Run X clients under wayland + Run X clients under wayland + Run X clients under wayland + Run X clients under wayland + https://xorg.freedesktop.org/archive/individual/xserver/xwayland-22.1.2.tar.xz + + meson + xtrans + font-util + mesa-devel + audit-devel + libxcvt-devel + libXau-devel + libbsd-devel + libdrm-devel + nettle-devel + pixman-devel + wayland-client + libepoxy-devel + libglvnd-devel + libtirpc-devel + libXfont2-devel + xorg-app-devel + libXdmcp-devel + egl-wayland-devel + libxshmfence-devel + wayland-protocols-devel + + x11/wayland/xorg-xwayland/pspec.xml + + + xorg-xwayland + + mesa + libXau + libbsd + libdrm + nettle + pixman + libxcvt + libXdmcp + libepoxy + libglvnd + libtirpc + libXfont2 + libxshmfence + wayland-client + + + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + + + xorg-server-xwayland + xorg-server-common + + + + xorg-xwayland-devel + Development files for xorg-xwayland + + xorg-xwayland + + + /usr/include + /usr/lib/pkgconfig + + + xorg-server-common + + + + + 2022-05-25 + 22.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2022-05-22 + 22.1.1 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-12-15 + 21.1.4 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-12 + 21.1.3 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-11-03 + 21.1.2.901 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-10-06 + 21.1.2 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-08-07 + 21.1.2 + Version bump. + Mustafa Cinasal + muscnsl@gmail.com + + + 2021-06-16 + 21.1.1 + First release + Pisi Linux Admins + admin@pisilinux.org + + + + + + awesome + https://github.com/awesomeWM/awesome + + PisiLinux Community + admins@pisilinux.org + + GPLv2 + app + x11.wm + Awesome is a highly configurable, next generation framework window manager for X. + Awesome is a highly configurable, next generation framework window manager for X. + Awesome, X için son derece yapılandırılabilir, yeni nesil bir çerçeve penceresi yöneticisidir. + Awesome, X için son derece yapılandırılabilir, yeni nesil bir çerçeve penceresi yöneticisidir. + https://github.com/awesomeWM/awesome/archive/refs/tags/v4.3.tar.gz + + git + cmake + gzip + xmlto + pango-devel + luajit-lgi + imagemagick-devel + docbook-xsl + xcb-util-renderutil-devel + doxygen + lua-devel + dbus-devel + cairo-devel + glib2-devel + libX11-devel + libxcb-devel + xcb-util-devel + gdk-pixbuf-devel + xcb-util-wm-devel + xcb-util-image-devel + libxkbcommon-devel + xcb-util-xrm-devel + libxdg-basedir-devel + xcb-util-cursor-devel + xcb-util-keysyms-devel + startup-notification-devel + + x11/wm/awesome/pspec.xml + + + awesome + + lua + dbus + cairo + glib2 + libX11 + libxcb + xcb-util + gdk-pixbuf + xcb-util-wm + libxkbcommon + xcb-util-xrm + libxdg-basedir + xcb-util-cursor + xcb-util-keysyms + startup-notification + + + /usr/bin + /etc + /usr/lib + /usr/share + /usr/share/doc + + + + + 2022-05-21 + 4.3 + First release + PisiLinux Community + admins@pisilinux.org + + + + + + i3wm + https://i3wm.org + + Ertuğrul Erata + ertugrulerata@gmail.com + + GPLv2 + x11.wm + A tiling window manager, completely written from scratch + An improved dynamic tiling window manager + https://i3wm.org/downloads/i3-4.20.1.tar.xz + + meson + libev-devel + startup-notification-devel + libxcb-devel + xcb-util-devel + xcb-util-cursor-devel + xcb-util-renderutil-devel + xcb-util-image-devel + xcb-util-keysyms-devel + xcb-util-wm-devel + xcb-util-xrm-devel + libxkbcommon-devel + yajl-devel + libpcre-devel + pango-devel + cairo-devel + xcb-proto + util-linux + libxslt-devel + util-macros + asciidoc + desktop-file-utils + xmlto + perl-AnyEvent-I3 + perl-JSON-XS + + x11/wm/i3wm/pspec.xml + + + i3wm + + yajl + glib2 + libev + pango + cairo + libxcb + libpcre + i3status + xcb-util + xcb-util-wm + xcb-util-xrm + libxkbcommon + perl-JSON-XS + xcb-util-cursor + xcb-util-keysyms + perl-AnyEvent-I3 + startup-notification + + dmenu + rofi + + + + /etc + /usr/bin + /usr/lib + /usr/share/man + /usr/share/doc + /usr/share/applications + /usr/share/xsessions + + + + i3wm-devel + Development files for i3wm + system.devel + + i3wm + libev-devel + startup-notification-devel + libxcb-devel + xcb-util-devel + xcb-util-cursor-devel + xcb-util-renderutil-devel + xcb-util-image-devel + xcb-util-keysyms-devel + xcb-util-wm-devel + xcb-util-xrm-devel + libxkbcommon-devel + yajl-devel + libpcre-devel + pango-devel + cairo-devel + glib2-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2021-11-26 + 4.20.1 + Version bump + Kamil Atlı + suvari@pisilinux.org + + + 2020-01-25 + 4.17.1 + Version bump + Mustafa Cinasal + muscnsl@gmail.com + + + 2019-10-26 + 4.16.1 + Rebuild libxkbcommon + Mustafa Cinasal + mcnsl@gmail.com + + + 2019-06-23 + 4.16.1 + add new runtime dependencies + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2019-02-02 + 4.16.1 + Version bump. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-11-06 + 4.16 + Version bump, add anyDependency rofi or dmenu + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-08-10 + 4.15 + Rebuild for new toolchain.. + Ertuğrul Erata + ertugrulerata@gmail.com + + + 2018-05-16 + 4.15 + First release + Ertuğrul Erata + ertugrulerata@gmail.com + + + + + + openbox + http://openbox.org + + Pisi Linux Admins + admins@pisilinux.org + + GPLv2 + app:gui + x11.wm + A standarts compliant, fast, lightweight window manager + Standartlara uygun, hızlı, hafif bir pencere yöneticisi + Openbox is a window manager for the X11 windowing system. + Openbox, X11 pencere sistemi için pencere yöneticisidir. + http://openbox.org/dist/openbox/openbox-3.6.1.tar.gz + + pango-devel + libXft-devel + libICE-devel + imlib2-devel + libxml2-devel + libSM-devel + libgcc + libXrandr-devel + libXcursor-devel + libXinerama-devel + startup-notification-devel + dbus-devel + librsvg-devel + + + openbox-3.5.0-which-2.20.patch + openbox-3.5.0-title-matching.patch + openbox-default-theme.patch + openbox-3.5.2-gnome-session.patch + openbox-3.6.1-py3-xdg.patch + openbox-kde-paths.patch + debian-887908.patch + + x11/wm/openbox/pspec.xml + + + openbox + + cairo + glib2 + pango + libSM + libXft + libICE + libX11 + imlib2 + libXext + libxml2 + librsvg + libXrandr + libXcursor + libXinerama + startup-notification + + + /usr/bin/obmenu-generator + /usr/bin/obxprop + /usr/bin/openbox + /usr/bin/openbox-session + /usr/lib/openbox + /etc/xdg/openbox + /etc/xdg/obmenu-generator + /usr/lib/libobrender* + /usr/lib/libobt* + /usr/share/openbox + /usr/share/themes + /usr/share/xsessions/openbox.desktop + /usr/share/applications + /usr/share/pixmaps + /usr/share/locale + /usr/share/man/man1/obxprop.1 + /usr/share/man/man1/openbox.1 + /usr/share/man/man1/openbox-session.1 + /usr/share/doc + + + obmenu-generator + schema.pl + menu.xml + kedicik.png + xdg-menu + terminals.menu + + + + openbox-kde + The openbox-kde package contains the files needed for using openbox inside a +KDE session. + + openbox + + + /usr/bin/openbox-kde-session + /usr/share/xsessions/openbox-kde.desktop + /usr/share/man/man1/openbox-kde-session.1 + + + + openbox-gnome + The openbox-gnome package contains the files needed for using openbox inside a +Gnome session. + + openbox + + + /usr/share/gnome/wm-properties + + + + openbox-devel + Development headers for openbox + Openbox için geliştirme başlıkları + + openbox + pango-devel + glib2-devel + libxml2-devel + libXft-devel + imlib2-devel + librsvg-devel + + + /usr/include + /usr/lib/pkgconfig + + + + + 2022-04-27 + 3.6.1 + splited kde/gnome packages and added some patch + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + 2021-12-13 + 3.6.1 + Rebuild. + Mustafa Cinasal + muscnsl@gmail.com + + + 2020-01-25 + 3.6.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2018-09-16 + 3.6.1 + Rebuild New T. + Mustafa Cinasal + muscnsl@gmail.com + + + 2015-07-24 + 3.6.1 + First release. + Ayhan Yalçınsoy + ayhanyalcinsoy@pisilinux.org + + + + + + pekwm + https://www.pekwm.se/ + + fury + uglyside@yandex.ru + + GPL-2 + app + x11.wm + Pek X window manager. + The Pekwm Window Manager is written by Claes Nästén. The code is based on the aewm++ window manager, but it has evolved enough that it no longer resembles aewm++ at all. It also has an expanded feature-set, including window grouping (similar to ion, pwm, or fluxbox), auto properties, xinerama and keygrabber that supports keychains, and much more. + https://github.com/pekwm/pekwm/archive/3ad1dc8e71dffbe7a74d64fd19b8e591818869bb.zip + + cmake + zlib-devel + libSM-devel + libICE-devel + libX11-devel + libXpm-devel + libXft-devel + libpng-devel + libXrandr-devel + libXinerama-devel + libxkbcommon-devel + libjpeg-turbo-devel + + x11/wm/pekwm/pspec.xml + + + pekwm + + libX11 + libXft + libXpm + libgcc + libpng + libXext + libXrandr + libXinerama + libjpeg-turbo + + + /etc + /usr/bin + /usr/share/pekwm + /usr/share/man + /usr/share/doc/pekwm + + + + + 2022-06-10 + 0.2.1 + First build. + fury + uglyside@yandex.ru + + + system FIXME diff --git a/pisi-index.xml.sha1sum b/pisi-index.xml.sha1sum index 848b6653a1..dcbb8fdae4 100644 --- a/pisi-index.xml.sha1sum +++ b/pisi-index.xml.sha1sum @@ -1 +1 @@ -1e4f8df4643f361e294cd07762b54d775356fe1b \ No newline at end of file +08b0392cb0cb1464f7b851e0581958a61b606c70 \ No newline at end of file diff --git a/pisi-index.xml.xz b/pisi-index.xml.xz index 5b0e90eceff55253fc9f29e1c806f1070172d19a..e5f86216a79502e1d3b1b55e410c9a024a6f9c96 100644 GIT binary patch literal 875736 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 z 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 z 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

Bm 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

TJYBWftEBDuBNRw6B<3c-5%Zg=kW=( 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�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%0D6MQ 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 T8a8^{o8wVH0{{R300CKA^@3s2 literal 878696 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ξ`^h~rv;#aL98!;>uqc-9 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 z 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

-{Ia7<6aDR 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

LRpsS#kitL)k{Bm(?^ER8D9F@zQDv} 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

F3L%n+;ZOtUm}SZf4no7QG)B>QPToTCBD3QqvQ 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

$Y`+d6X12*2vwM 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]pmyI-J-fNS}44xu`_QNC89BM%<;}wbjZQUfTy| zVT$u=q*xAZY%MKQVA-*Jb^HvUntH0S?uqVz?EQf(9iSZwc&}b&;VA>FCopPNo@#M< zbbT;xH?!Dd%Wv98Sm|dfcxzC9zAzQ}XMORcGeCgkX9Gl=n2}%0&m==}OqL^eoTiT0 zQMjCQL^yWjWG?}D&H8g#E0L++Vz^nvcgBg56aMn}PsE;|gnR>lxLk!tvL$ zLbC1SVUwju(0il!lOewNM4lpw_G@jpib1> zstX3z21|Vda-_5r#!``ZS16w+9Hm$2!P!9tE=8>nN~X#7GT184!7*Pv#`G$Uy{ypnIR?;0%?Q&#y$Zt(MpI^QXS0!Lcg+i&LIOF4x# zDwr1%{~uX%;dPHcAKKh$8mzu|H(P< zt5pdLG)#ZL-y|^SELe#=$8vbBQ;#vKzf@hwu5Pa%Q|xtk4c9Rsx5FXGuL_AXSSrZR zCR^ioovRVVFdL-4**}78)?K$3WYc>0A>fy|*0@eAHFPP>NwZeQ;`N#6d(Phdfr(6F zSQbEFuD~+pczg-)1lRTR#m7`xyTcfg9C&W8&;3}L!fm-P8f~BU>^Y9gPs2Cng-0Tn zjfkY1B~L}Yp^z2}9-pqN*I1Yn@CBIYEK_Yo4MvMrlQ&FrFVNv_WI9IR?eh4>G}l8K zz%%sSBlI^T@B5bSZ_*NH@5YH+JScVp_P+9e+PWT6{JIcGZcE1bcy;$$c|?eJ_F;%{a>~p3a)6@ z<#g}uB-S`utRJ5`UOPbiwh+)P*rx8pKQK>ZEVulNMoT~f1%?m~l9WV{&nzua2y)k(`BC6nW6UfU`iE$p2W$QOEx>B@e)_b)KQ zFMIgJIZ(16#Buv?aS@a*l}8yZc#DE~Xfi&$u9`ue`#jk4Dl6JdlGOX>lx|GqMfn(8 z?6YZOH4OQZ(m`cyOzn?BP63OYD`yy0gp+5(ca7L$GSHn0AF-f$5rJ7e+a{Qu}lAI&F%;~EP>Pf#TD{Uzo#EBU^a@ZX} zjZj=q0{#k4kQV4-&UEe<^d6B)Fq9|9qdMbty({EJ4`4jTzGkSa_w2mb$L#rw< z%IKy@U|WHKhzagKSl4fh9=LLL2<-~(&#&LAi{;=%i*JY#FjdF#WuFmK%$jqIb0qYW z=pl^AWTgqdXHq%HdPS_fzT!cFu%muK4#8dGHM4v&loQ-hgIZ1&{T&#qgvF(+EaF{*mg_Y7a`M67*IX zN070ALsz7Ic19CvA@ZWLMJV&?mM2C0wNN`nY{blh>NgP(x^Y~YxA`l=(eZbdD)Ry% zC2y6+;s4?`C(_$Ds9~?--&W4~CLMr?v_Xlc3nP)-Z6R6DW<`J4sL4T zw&cCMpyL`7IB)VQ%+{W2r(56b2Ra7Qc_l38Fx}>kKH~zn8vw_&Avc-s9t21*yXyp0 zxBL+u+BBr((I@-z743lmD(Fzi9jh=<1#WQnNO&W_*N;ztn^6vrOMs~KDc{JIYs{;m zrR{v!PDj z@ZDJFg(k8Xslg3}QM-V!RI*yosOnb36{>-}@j%ASf?f+DOf zQP70GA_A}56J8Gd4u;9V;-J4DpO90Q?8Y0=j8E$6lEb;|Cm0i6kWW;Zo|Le9iu42` z_WxxDo#44M0t=JDMqz^CXM*{=TksIJsn@aQk~rS3ios~@$eDG;p&$H5fSC~Wz>7L! z3t2&Y#Ru1V-_DA6xJeW@1S%}lEGO!G0MmVFJz0%e33Pc&j9o1ZL@(gXKt=p+c*J^2 zRkb&EiBE-}gigmEHdSVFCudh$JfbQ10isYc6&IIUJamH05+W4<)g(MoM;|J1ZwFd} zSUud{16R;|qbcYM@Ig3jz&mo>A@5?Anyc9Q5V4@?901sh5GtSkF`E^R{$e9VHz;s-+N@UdH z6DcJ_I|o39ERW7HMd02QNn1a_bOmUx_MY^J9*;|BASP{gdv(-zXCPHo91g^I`6j3) zPd(n}zGyGc91j(sBD8wzr^qWrh%i+qq>zt-Wk*Gm8BxZu8lrxvcY8-cjNBGGm8-#J z&~FCS3VQnyJNnK-^9>7JE7t2gn#pQWr4pA9!AJP(<7sUKK)k?}KlJPMQWPi0D(y>~UzJ(L>M^O}^ z`glz@a$T~OI`3f^Lc_o;5KNkE<&~m&LR&wL=*G#Z!X?dO>d2_h>g?#@BThufMZKVi z9mqI4>_H%|_J+8m6^{J@KradDeQG@k99+g7SF;N%**P^9YHlnmB5NDE=$SITWAPx}2QpK- zl`%3$|D7RjNUh z$xA+$)|0!CQQQPw4o|htXKGi^N1c2d;C}X}4gscPt`f!&Kkuk>0>#rfdP|8bptI0T zhWhk_&Tp`3RZPFWD}@Q8AEjm2^R$#;LZl4$t%DyFQ!10M-En&#pfI=X2HDy)Kna-#INK{3tHkDZ*X3)ETqqt5@T&n=GwjG zzueybo*9^#MxO0JQ}MkyDs|eRDXD=JhH`J4Do=vxLz1=34ttN7a{*}g=5O_A0-%7q zw9t~Me`sNtH1UEj~<_tugrk3yVRS5J7RP!y}LUjNuURZ@CS%p7x8s)^%UoWDG`VFPaVhe zCN|k!0;>P~SB7eV+V{P5O8L>asB3{hj+S{lJK zzvn*FsKPm|Qg0N)@6%vF`Z@=9diP>g`%`{i=l-zMC$Il8bqSJvMw}G|;MQYPw=C>C zQM%S~n24vqA#*s@Nf}$rRNe3;Zd0kX6px8U%ZmPAE_T>ux;w@JP3 zdG0%e(Qb2p3rjk-0LL6~F+sHK43CF3!D&uNrNM9Fc-Hm(h@wDAHsj3Zyb7t4F>(8= zaVnz~M48rz!B(SKT<+r}_rK<;e|B5(eRN%qr*w{Q1T*9}7Mhczbn!#} zx!DWzZ_wH}Dw;10fovHJ)=V3w?HT>tgRcRQaN9F0{An{@b3chjgJ;NoQ-R8=3|s3B z&6$P~kyc+7YD5}?&RNBcJRQLUw3CNcbPD2AEP>#9pY4?W^)4#S!&0JwyV+G+AL&{$ zG1R%$Iak5_Uqje68uK0^XNy&9me$h)ZTN~!c^@i{0<3c8A91@6fQ;7~(R8T=@UM=~ z`g*^`T4Jq3gQ2S~b|3l5uNaiJ=rNxhNd%y^T!B;^25sw^XY-aRY{!>lrj=&TK!l44 zKmb5YU>nHxRg57_4Z<2~@5pcl2nYM+|z(==}Ibb7DU3V{x$>1rz<e*Kc zh5ZOqH%1Z`dEn*4i@5=dw`+rZb}dX0cUTCqgC&3;u4)O#i7@y``MnbyTw7k{(#Fyo zTy_95=*(cl^ZW6l5c{5$6KAIs?f<6$V>~;I=ZValg?|69-SE~h~pF^rEUt=C{NhTVQ_^rM^$|-i^E=yL%dg)-# z&C|e#U$b-6J2LauJtT!xIUd`*96}K|$~!>=Xy{QqJ-P?;!aoHs`V-2NTo1tpe?86^-=V^GH{JQFD#J>JQj_xI(W#V}eBF$&jWXeLi4I zpKLJBA*z7Xm}=hei!@(11553-{7b*!ji_p4ukhyy6?eRiu5Fjw0M=Xc}^}j(a(f>x_5MDWv%xJ00p&L zJYCzFwEo1YktfP0Ukq~6m`ME5hFXhFd+U~*<~tKKUoCQ^yV?H*w6URO&gPzAa_tr& z9mf>^&d0Y5Tygd#n|?{Uhzx+IRQnAD(<8klXdN!hTfNjOmpGgy9)8QL(BW%=IbbG{ zst7LwKETt%S`9g5MByjlU!xUmoRVDvsm_#~F#q%aDUU@&#xs1KC(_7Szb8(%NtlgV zEPUArTMWN*cB=`=rii+3YC2)5_gJ;&7D6rjnPyKs^tENDI3Efk`JAgeZ0Y38pnjH1Qc-s|W&{pFQB)`UTgbMwcJoUG~_T@P}A$@@}N3H|@ z0@4svyN6BTZm7-(W1#Gv91WyZ!q14fNMrX~fGt4Z`Y(<@GiPf#hC@8;2 z@+SvzgQoa>geD6Bb|&>BL=f?VSV`uOw_1Z-1M6S-*tLTi{gT~qTR@Bqp*e)$mKix; zNC6cAdCy)^iO@16>#XM7JAd};tFup?zFeC_%r)J?@y^`B8L%7uqaWeZQBg*u)laVY z0x77%Hxx&F@N#WA>xzn3W@5{IoQ&0^t*`(U)rRCCpek^2DK;cLvhu!Nb<4T{t5_7C zNWU+`sy61j=ugaR0|70ZNcZYrI*KwiQex*`HlrYO4!kWp_`Z}QXy&+|*_xwX348g1 z=av!dO+GYIP^7*q1bS`2wDpf~X3F@NBzItt2FmjhVB5dg1iS0n!u3Q~5Bv0{p_R8P z)Gy&6UII(?K63yD*q1aa|mn;yI z;-n4#VyEC(mx~qbMk)y3%=&z9?v}5nZPJFq%f`(n)CUa`hWQf3CVv zr|upTNt3z^3F-+-P0fDiWE0)?(7AR6HlpTu|FR%`IIEOub65A&S8 z$JBO@r9=jTW5SN(U3b)bKG=`*Cl)!cZC1kQ^CH9lUNXoa?rO(B3MJj2e2LW$bsg|IRrtLP%LQani1eoM-nPK1qf|5Qz~34sK#w_QXyLaH{ z2$m^r8qJID*3IHkg`!d%dwPfG&oQ*-wV>`8P6I!K+o^*SnAtPAA)c2FgGW-I%dLqr zI^7kis1w?&9DW%x)=xUf&d9Q7=O~$BLbav;uFsdPOTo@mlIw{0J!e8PE@9>0VQ zWBz6TD>RA_0dTOC?tIWtx~=>Z8l6pgb?hN!St2)aS!QLT&^=I^R9pzNX2u8A+L!F` z)O_QSRpYCd(c;iX-dwpMV@kd$S|1@wW!o3&=!d*}vE~gYp3PWop_<|`y4r%We>fDW z9D9SaON`QN7?G|rAw|$coR9>&G8)#%%$cm7LuLy2>qt@n^N;%90r1TUjvv$u{}my+0* zHKUf(Jr@V9Pi>9VT}Ny{j1yoJ5`Ro`uJ?3P&LRF9OWItnJ1MAkJG9smYRB+PmhDdqY&bPA zi@KEXKZeE9w(tqh<*{Qq8i?S1Ko9!e@>sIDN`-JQn zrd}THF^uU@#tX*aY*X0^dJYl=+OH_GAv&+77#a0^lbPbi)VPJqQR%0c8rxte+q9ye8 zku{M3JN8~`lI48c=@BWN!8W)@iRol)A(}6YvKQ?`!|8MpP46M;R>Rc6XJu9(Y>$Qh zShG_X1|C#P2Xl^ccVA5!23xkowBJF1OCj2=YSBsdE@~MfT7{#;m2B&hFbUJoI$~dA z^=Q^hQKRbBEE9+4)#nfH=^R-znuC-FYc?c5k!vQt&-aDu@LAldkgQE;=%oF9U_ue1 zuORhJjeOe+H>r)!VvPM2Jq4WxqWl4J`vU$Wi z9}#5!@F4ymo3_c@h1Jc*4w4_OYU|%_`;l#gRhc^jl+O1y8g=bYP+&K&zYg9bR948| z*@5**fJxSa#8uU(K570wnizmwWhs=@M}n!w+3k`9ezj=U{hN^JA`zmoGrYz*PknAH zg#=$0dEFi=PqH93TsMmz?PY# zZ%hw$$2hb19*jTcbWo$LUQ8!PItNxU7%$cihn_z2!2(jo%fn(E0#A^i$ql}Uc-&Q0^tcQ-MMxAa6N%t{5@B0FvLF}v7G?HG3GAk@`59X$Y{*ak*zzJ=H@ zU#@dt`8g=f4#)~;EKh8MKi|vYo%FswJLmlwxlJ#gN~K9j+tKlE;j>Hfkj1zu54${x z&_Rf-6cp&5{>$K3sLAS%hD`Pxy}qQYM(6V+fkT!ITjhL2o7Cr0X>reFLuLa?6NN@r zhhv1-N!@V%P-Nyb20N0L_1`n@yBNxIFX7B#+X>g^jtTv3{w2}eD&1`$(H;titsuWj z2cN2638q&h0GE^p?V48T$L)Y(3dbWmL~t`tdwzu!tim*-7yS8@{P-t0V~gtxoj|Z! zNM$%C?d$!?=J@>itzkz0Z0`@P-=Gt&Bs(#tAO9+WgBMEy&@ki1El@?`)oD3V@Qcl2 zLA304A&`Et!sE;q7PW6hD<;%{trK}ZA0e}lm;Ey5-^h&m$aOHpnEK`9NS?wE#~14* zI%5rH3(~C*9{rxI;VKfh`H<-5xv)}eD+P{k|B z>vTLE_J;32oru=swC=SoC#BTP1j z-AYflnL}E{4c-jK@DhbRE}b3M7S2Sb4mo5nCX?yoKRWv*QYsqd4q3!LSJdlED}ZA6 zU_?6}sKLKTX>M|Y+{e-^_|DQ1n7fIjhWTd)LZYVQXmY$e-J*KnI~?D@QYX^hXJ7Z8!-t-QRR~?aSY>OweL^79kyg2U9PzpWXRg64W>JNfC^qWc#Ch-c1 zYQx_IF%hKXH(f{!AOweZrkH0dZ8?H!26!6Gx~^w5UH3%gm)%NHnDh11n$`iTpS(Q- zbK0+-@N3K^E&Z+gvGW9v78k7w&MeuzA017h)PWyQ`$a@whoRig#6+Q}RtO!+xDJCZ zqD(+l`Ty#TH=b-)(HmaQO!)6qt)$Qtpn_9ZPvVYU%!5LlPZdl9qg@fe25KJp%cJ2# z2P795dg<*nnY{*zeK$(PUtA#)qi94c6S@^8 zJZA$7?(p9XJ>|I;o|Z?*$k%ch*9;y%ewbENbXmsM%6iA&3k?Xz6;k)@s-6c<){5**7iz)C7X2|oR-OYjFF zJ?&GtfUcEVvaw-n1b4o2J0C!xF3$Lg6pKIUGtCx^g7UZJeO^#W=8=E$igx+_Ozc#Zq^k$?YX5=wxCtb z`xX=lQ3gxGwPv#zc7mOH%6J(botCte$8IF!a^SY2%UDtX27m@}**t|%Ztd3E1g263 z+v@*cSLur_#X>|{CV(QAd{fhEGA#bD;iP&pB}JDHOXhF&Z@^m5;r9HxJa>n-)V-*uR@!z1VRD zDUD4(JrYW?N?cBaB~3$QI5H}j#en3o{<}n-I&wAte>~f8Ff#a3z98hQhO{alKsH&v>4)`L%T>AC0|&IngUcfv|2ZJ{UZ_@lScD!3c%>oTu&d z76=4u#%9?C;$QR9PKyVdj}CUWxMQ~>zT+p}o=RLbtm+X53%Qtlu%h8Iz8$l5YRZj}*{Ga%>EPSS{_|R9P+r{-U zb19Q&|3yDK-6KS$4cgi-+uSgiR6iEc-p~WP#Ok`HB?@@2_z|!IGvs;m0Sy+s-}v-> zjGk&3^GnlY_(Gup06mc)(7NrGXr2eSy=Wpunw}DtgvoH17ezR)k2kz+`4JG_ zZ{^Pk-<%u|3YQV?l6@;1F-k5lt)@p5LX?{UX!#EtOJ^4%?7|~DuG@OcM1p)m6@c*` zMG^kAIOs6xl0Cdtk`h0|*rvL2^jlL;M=)TKffH=r%Nl&0v>4-Lie})Q4&PRlHS$^v zOfyO>rXV%OLd#>!8BPR7}66+i^fGC0E1XuRAiLeEIJhpF_10@r5j?8M`~ND z=NJ6b>iq-To#qL#`EEjVNWyj6X2AIS_EbU!E6TmtuRt7fat7q^>C}z{*de-a?@gYI zh&ZO9%%3;+iY9@&P`^NvS+alYXEm}rmrRhAU0=j!VnmMK4qN#oQV~-ks|4`T+$_+4 zDY$I)Zs0Fc@Mbf0X0f}7X1ne&R7Tv6w}4OV{mmgxVe~T>1R6eNRd#2(;3tl({p)}$ zwn1Zg`O)&JXUgf~o)_~F=c{?KG0P`&Tn={~Kea*nG}6A96ma}2##8Wl2$77TjvX3Q z=oCPYLIG1)(yF@+h$=>xatq&%lXaO|zK(^ptiL&ruYZ*rG}nhdOMBwvyO5tAf^+F` z{Qu4XQ*@<8)PvvK$$ltfmm@ZMWd>gD`klD{KDEWMFT)v~({SA?}F4 z?NmNyLaTAI;@(6n?vq46V&jB3kFX}bse}TiI$r)C;5sBVzmqAgjD~mXyfT;f$g4yy zIC8a?gwMBjV2Bd%WFkIL_>^yC#JbJ*W5?Ylx969E7Zt4riM&2w4D0>qw`4x|-LD`u z{S^Zv;6Po1Dk#Mad20zUvb5qC2)^9r3->u4yB{t0lA-l70n21vbM}ifpRO(RIf_n{ z??h`)2HWF!=xtqxrlLv#;*i_+FqVs1{H=%}17N-!lg#)$@phfj*Cc|KH`~6)fk7@m~sZ%c2;BF+B-^iU}n%h~t zEwNs-MVXdIK7KLVL+LhB#zW`vC{mcpoh3{+yB<(b8!<9mJAgV)!DvR3h=S#aN2bY3%6f(ZJuIndE(xyM*J|04?(WYKFCW*B5x2Jx|iW#n`*P{#~+}Ry4 zqmd}$WnOD|#;HDe%W(GXMW4>+zD8m2o~}N_>JFJNepuE%!mr>S-^!h=*wd{>G7N~o z*8q1=ZlZO0N4S=w0yS@|*g1&l zD$qq2V+Vv&T3VPLGw6&PtKjPB!?DkizCKf**tgpixb&E%>nVx7O{qT>Kbz)wQVt_j z+uf|qDRs8GeXi4IYE zMqWiCK|cYVTaT<`l>h+ZkgbM|AyJe)9S${Isz+gx@Jm?LPp2wcBSxsnK}8ygmEz`v zgJdzCm!(d^M6i&ecL-)i$q1RNlGIPaO6eIaP!mq3qE2DXMoSGe!Vv&W?m^Kwal}rA z41nSAQpba zJj43Am_*0+An3)hL#$awcdoC!Md;ME1g$d)A1i{u8hGajTcPlEJ^oLB zWVHdks0drtC2+?%yj?D9T`^kUuw~Z@na3w>ujna|yW;@=Db$dN{(+nK4GwIZqUPIV zCxZlVk^)0hHsaO`4vegX`zjDvprbB2x=! z?Q)9aGwN1hPBDtDaWFNBMjw0qMc6$UFwpf?Pa9LqZsm0M1V4i1u`Z~y;dR(n`F+3I zU-JpbglO~IG-+-J01S@qSzbjim8Cqm8CE#ltjV#aSskDN;_G(#B~5pqrfZO6FB4!9 z7~Ngd>qm&ZgsxL3e(f`|BJ6T8#oJ9}ZURQweGT!3|X6k<4p4Nl)#s z>66612c>gN_#L*FeFR~V+%PF-ySf_NF87j2Asz^N#PcucIescWHiKW_AMvhwZg|^ zG!5LXbJ~!KbJW%aU$C~M*s98k>RIQgmxnV7cSPYf-yG}}=wfQ+vyop-QZ|nN7&|vA z$; zK>`w@kfv|W_6CXPEwIVK5E$@r-iUNqo*xk0N}E{TVPz1(qj~_mH8%2#IQ7yd@=_%G z7VvDs+G>#@`Py!ag8qd4m+d+IcX}ISC;Hu4J`;1j0&IaYoz_CMN8Q2h4pv-5l6ZKLIE2~o4&hUA$#%ekJI*JhC z?6g>3HyY{Ahx4RyKwi^(z;%GVs_4E9IsK7LwPSQ zD1WnALjHh?;<^~!1BPy966CZku2#JM3<18d%&pz~9jf}q?~reGt~daJPDZ3vWT{hn}qM3DRjbF{S&Mt1WV9p`Q z{K2Ad6+>etaC+Ch$)uG_x@C`?T7Ma~$iRYd=BiXJjZyy*87LCB1ZV7Ogh-@BIe#o< zh{*P#JPt_d8`*LA{XH?ShK{O~b8{(&a@9vM+DuOl+V}-S-f$bc#=Q#I(|KL6YJ2DO z&Vv@e6OBz>fsP4uL+`$Z5Zh|v{W}caBVKU@jaI;6vzzzC_ks5*R~5QE>E)ZqSy`y( zBY+lg8wJ%l&I*{$y}4bqdcl-Y@?aFn;RQ7~?^~;djHT!krpE@oqk1cIBw7QSd1%We zOaH&#FiP!LCc3ih<&{cHdoybWF@6%Ybb`FJV}#iG35`FS-nO_gS2UbT%Z4|6|BaYQ z`*DK9^FI+!={Y)rV*j5r(E>wnpRUti7f~cGmPWRek5p>kNENh!{owAFhQViqEf#?M zvc%~vrx|{O-d7|)SVBccpt)cH7ng3o?{N(3CA{^33O2eyh)yYQ+Zt~*^*Tb-NH7sW^H=oRS zInl`EgM1{YqwjF z5J2zh;Ez-t`b~_7C7(R8&oo$f0zNr@GRun_DA6o7k(gE2jGv2BOZS}Q<%bIWuJ+Co z>hestAdKIyifgEd3K8*gb4r2n>m_%8?4K5NaNMD$kM_$q<-gZTFLbgFnto&!!a;6@5kbGA;s^ECq<83}Rlb`_g)hWpt z1>HGL&ak$wMwkFYfNTCQWB>6CE6GdQC%8ubMzGTwFb8n6@}AJUuZe9yW&^al6XI#4 zGq(y0FaTc>i(S)gX6KDrYALn`0J?Q0Of)19;#uzDG9RQbCnyl?)3W%7H~Yx=;qmcH zf%9vqhL-vIWm}2_6M&Cx0B>7p`7P@cqFMZi&f?0#w7&t_@=oBU{k2Z9SeD#VXn-Nb z$Xp9qBysTNn7eqML#I&5J3zC{bxTwP9Jd)gHt`ISdXCnqlrC^lR9wq)N!wJi@{K7H zSAD-rf;C4rGbySrf?p9~`ZA;dML@d0@^Qd@d}Q#}YrPKHY))I4NKSC7QZucuR(I)4 z88ZL|kiGH?+}EYJ^-m^01EY@SyUgn{pyu6-s=ozu%}#A@n+%M6AhV^Djc@}tlP6W3FG4i70nVR5Xq;$AZ_fm&OX|$&ZtYav8>mjEFW)T{F^Ot<$ze)#SA?! zpc`dN?L&vkB5QzdTo2sh-!WBVIdq}DNKP36GabhJ^7i(M;`ppy=G4lh@Q}#>k}6;h z(B%3aD#6Mn4@|xqm&Fv&=lSPR4Ar)3@jsTfF(p)&G;)5iuiraipqa?3Xj&S^alK_? zvA+3?oSbLSr({W8E7Rs!6me#T%A>Lbq2jW@Qg11&azgaz2ftyE0HA*>*t~u?q9v_` zU-X*2tmWWCQPT?P?w7PY#cLbk?@1mr)roU^yffJhFD!fXy_#7?z^p@+nT4G_jcaxX zZs>&EUS#GO%}SjH0UU-10uw* zjnd+vuRPF<5G@{xEt~lkM1@A^y>Q7lUEYs z-0ikn-^cw!*9=O=VxB>sp1I&P+FD&3rx;&$7D9jA#PmG8JdR?P&ilPe&zkww2%9;G zE4uxC9i3q++VZkU6;pf9ByESC5#zHSnlrb^w`m=Lc9IG{VXH}{b&EF$vA3xhKg0}VXQouvq60-!9sZZl;IS^w%8*4YqAESSfzroQkFTh~rBimWIiz9L>IW)V z)@_p}!!AO_yI)-)HAF}GXbO8j*b(N8&js7?PR5>Z*`6&dR#&~>XSME(Wu_N$=f;ie z7D6UT6v5SfsSLWs<#|%HNab3|;Vh|<%O#P7a{upHSPjZ#(PpU~ycn)zX2?=C315BP zPes1@*`75T25v0e1e}~&DrISptXiR+!VySXtOEp2Uzvnh!jxFT@Sm}*motoEsmXVS zS|!R`>E~+j!;c2)* zQ`a!R1#gSV9LCBurnmXMxOQ=ALgq#b@|P{`>_(-vAtB-luu& z2w1P)2CTOf(^U*s}fWyiLlEM3XX%sAsgyk*g}Vg-FWZg1%h zYv8OVy|d5N7QVc%?jotjK1RR!*q|RU*XW`}TuZ(Hbc(x7gJeQP zKUuCa&wGJf62_O~d4g(D9!un7gfwY3Jt&av7dOQm?X+$J{)MLWvnRNOPEo3M2wghP zVoAC-q`i6zu_q_Wr4h!ub#6D&m>`{K=`L+XOd_W>>OXE&O1uKQy zRkNE0yGY){Hu8%R;=U{1O^m9VG->H5S>c0eSF>Q-LU?_gKf>HH`wOX#ES)>tPOi8T z9CHqKN^?X;K0eeZARn26XuXh_F=FeW#{%68ucxp!A64Z&n(%*?DpBg^sd6LEKL=Uz zL4Ty^1I~zrG4uiK=kc?UdJ8&YP1Tp@yE?s=ov`VDW)GQ!*ch*~yi=svYkApD6;!fr zdELiAjW{cHqvjOl=TvaC9=M)1GM;>j*1#@jquri$(EzrEs*f+mR7?KyLU`dGEMcC6 zuFVj$EXY7PD>aM3BZ%-1c{=S5)f@$aTtbU4g)9OV#PDb-Ag(LE(j0%=kE7c|aoqvjxAmM&Dg9crTHssNKIba}&lHJrPp{-+F`Z7Vt zItQo`0SSei0tq+67*|kZcNQoRsI@96JYLtorW8VFxZE?5VQKIu({NL7*c~iBXh$38 zSf47(-x;l>Pc%Z_&d&ew$eZ0c9LJWhP=YC`3EjbXzLbd!d+z8#>7$Ai1OMd8mz1Hw zSE*unC^=C3CNRQpS|0)ea?YHv*tG2R^qPi48=UVer&S8sn3H>kEBl``6+(gnWIc|% z`=33sQ|yio%^6k=UZ7U}I$zn@%;LU{Bv-B(-Zg*$s;iHMo}J%P=JeZ?!0fy&TcqWD zi6(3s%DPXjjMC+n9W%gZEZn{RCG!gG*}Nv^5)p*v{WcEkU1Axqf?eGa1kNV$&G+lO zL|KvwC}91BogZ3CQY&Si@rEmEzb^iXec_8~l1KHxck?>y!ZZ9bkg2F7s(Wh7f?iq^ze!E#2Nr zEH~%J^p`(IK*d)c!6m|~pLyGgB(+CFtxi1AsFE#JwL@ipEHSyiztE8LO??dvY#b!+yZPsOEwR zddww4$Rhq%^ZacY792#`34P+enEubgPasdJAZv(5i+cEJPAS^dKw|+mPDRS++^E^- zK3~5y)5(v2jiO-1==7QJA-8`;eWMUDR)TG;#mFv<#~^w2JY=tCx~GJt{`_vWoEVFW zL=QilQd7s8YSg?Mh{4!I#g#7(=o>6 zW)Sa*a#^m4?$;06<}4<>YoSJgM-gLBtjlcKw(C!-;IbIC0 zkR{PTvd|}=_k?_X*(6w-cua%MX?NkaM~b58v`5`U#Rfib$oWXYXq-IR{JZBo@-$ry z@lpAu1YX3KN<@l_9EGj$RaEiu?M{rLq|Rxf4lvLZy1pKdNVcfOoxkj9DFk%bQNe== zW|@jci-zzahv>v@Cf*bGp1#LYbTu?)Ce0p-3(F81AB1M78>RyBHw406JODZt6)?OO zK-=4UB-WlHHh|wHtpI-8L-hnf&>BpQyp!9lX{CA-DD^2-jU{ybHaid2DyQFXmJ#kc zJNVMiy~J(_cT=DXcUe4)EW`J$kM9-S_+~%dt0K;($Qv^43(b@5N>5fWUxlv2GaE9@ zGP8XvIwF(iS=OC?h%!p>SJw9TXcp7~3%oTujUW12QPYH#i`(>CJmr7%^0AM6qP~-s z)fsdNGVjc*ou~l(GAy^hZs(9|vZ+UKH)1!A6A;<<2uc_w5Bfpeve7b0&IrS{@GL-Jl5^Dn{;kTcY=*k!5ufNl+h}4dHZkdAfxoc2yJiU|~Xq#$Caq!Gpa zIub-Zr0~*t{;8Se34o$h#)`v0!rm%Bf482gUmj3yqMiFZ=a`ikf(}=nBJ5c*0}!KR zl~*K2E};}GebR2i@@Rq=1fnslwB(h5cr;XwU4lr@wjYO4ZKiStp z;^Jki8+FzffkIu{+4l$$-5fwe9BG$iln13 z7yohMm-PB~g>9<3?$XMONgGJYK;dNMCW~4g?tc58t*QfN}Qh~Z4zLr`hi zLzCNyQoLRzUX&D`RU`u=A9x$7xCx=(uio|fa#I#wNtQNtr*uOUmd~Wmu00@F%M6&q2snogG z!r-1K2$Ow3VyJ`I(5|uMa{Eryl;{-+o8xS)vs#-4-4q?|Lp*AJQ+$6e7KQ_0MpyJ`~dW%=ttl!fwY4ShaU>cd9?0c>th>>Dvbp{J1XXC3H=> zUmgi=#@UY^xM*U^NK~bMD_AQ^9#|GAt`T8UF9ru0SGV;*h;Zu^nK|J>gVzOaCO>@i zYY%1E?$uk_>8Qu3Um?L;tS=c;TfQNc@?iF>9b}aFalOJT_%@d3!iym`d2J@Xpj)C?@LFu~TJ{k9gH8`+k@P+G6%`Tn-$Q z33O}H5?L*JoApqjgZW=E7a$tIMQcugvcIS`=viE@x&(?uFnsy|1g=PP35On2NX#R3 zkUu8=luEZN8D+j8*d(k@_b)!d1Oe|B!;)>Bw)LHV{rr+(RNTt~5UjP%wJH8T1YYk9@JM#5Wyd%R#72oY*UA)%o0yj>e zk(=JJaCP3@N8<69%>hj9e@i4=rF(wqB{F=HS}Sdw|du1(zKG4dI#Z1 zZ(&&@Zd>;u7=K?4iYT_cl(T?;P z2fu*C1M;dp{mFK0rL&Obj%w?F%_=N#q$xdjO7~epMYfSX-hSw4({B?^kF5+a=q#kq zpjgjMI!DmJ@;+Yi#y=OZ`25)9jTG3{S%@+U2xW`z0F?An59}p!3GJWf{M>LjSo?Jv zRg1umL~dtr!WkYQJ%oVC;CyK{A6|=Uk{Kya-}BTza5v#&6+lMd9O+nf;+8#ocU@LO$t=!l26F@jABrpi^BXpiQNAR0kL(* z%H}-nb8Zf!HIt+BJ4M$_4^GJL#%30by;V6;DdGQJfDsQO4#Gy9=tS$XH#YM3d35{&1om_<1ZEp?F5I@>x|CzEC zn@|05;X6J*i}!wW%mv6N2aI}ThS>HL)_wJ3uoW~He)X#6&|t!`Us8c~7Jl{@Cbuhp z-EwO8yJ^J3B`WL0q93UC`}j297DSK~KjU)>>Tp262Q@PJKQqAAZ5hG;R*xS%bjZFs^& z>FMFY;Pwc0R; zM=I{-5~o^Q#U(C(w4y=<{NG2P3Qz3rTFkMQ zsVtsOssHnOAxF~(H}$mdJv&lr*UGp3d9D6IYqbn)z|9+t7|xjv-sX2yN3Ql)6?T_N zIb)D8{6N1F_GyV)xRIb;?Sfh3gx|^jCFSfbHqlB-ksn-GH+>2`wH(Rv%UbqvEH@g_ zzQH{){=bI!eXUU_r9zFH$nrKA0IsKt`9zQTv*(|EcB2o=qtxA}H40-LKbd?C?;$9&%O!%hi&GcyPP%ly&@f%w z@bKAxxyz-US-~Bz!!({lM0fhSgG*#pB&Cv=q&txjej)NUK(b&p=THPURWTzHQdsk@ zZEo=U^#D1^|D9I!voe84-GxDB-gU`))&6VB8^HDnm?_&Vp6BTg0YtKMUHa^&;gP7D zxnVzEKsjf`lsw0M#+wQgkE_%-_5d0AYw{ta1X!Ny@mdv5(T5c}8n+mjpvgZmazZz2 z9OWbNy=REBo*Td#aHieYC~RoY%7{jxGRAnzDs^;SFI0uTu}^MULj@;&Y+ygxzWQ98 z=#yw8gTI`w^RvQ+fp>-+wl7^A6d;cQlXZHlgneArS_zb^wC3W!=QMSC7w+leKos+$ z@e&HcP-`n!e%h5rAX`&v!^&^^o3b~fYy3i8XS7{}7MiqgM{u)0HV*v>>^od7xa3%_ zgwZMjvdlk_X0Q_BD#S64W`6A1nSXtmO#z86Az0tCe4xtr5!&Md(VZXzN(s+=L38H`5M zG}FXqcrGbCHFWvc*!LdEc4f>sMI*gt6K?4Qfdjbqh5$Hi-EnO7PqvuOwCAWddAO>7 z7F4D;=4tCICjy^6S+gM}pccI-L4nC9Dx^>E^AvddkI#if_5xO>U)>)}-2SEkXWLmm zs6fQpkCA7jHtFL(r06>VMBIoJ^k*AM0Qwxv`4k#)c-@AegTb_F;bUB&%TNartc0%Q z@=Q+K-jt!`Rr~Frx<>+2$S;||a3a#KyedB|(fz5USYiauij%`{WnkyjF~fxc_95#W zJTNnjUdrf2e$&O4>mRgkm|q5u_+Nu) zU~v)rnliNvJpnK_@x2k6@F>0>K4{ODlfVqe4hU^FJzY5JI>HH;@ZJBvZr0rO!jwR4 zb|j26`_9;12A92$F_Kr>Ucy(B#@-lyy|ywrSsznCpE3(R6&z5jXr{Wbt%%g zI95Bc8qv-Ow@pJtPzGn$J93>;(+rHl=N($Tf?#Vgg6le z4hZ2I9R{oa5a(Bgnscw*0!t;;A`~vjI*mTWZoVdpi<|8LzPUHQ05)OjMcrL>nHYLK z=Co>v1_(1cIQI@+i5j>ojx3kqJzEZ)7F1n^NbxUrv)o<;zaL(zVo05T9Y)L^|Y&vil-64s|LM;C3ATgn111aAWYedUy4vp*QHcO z$R8GK(I$|L<{8Wnc7Zj)57@Zs*ulJW!v@ax_?6)wQxJ9BCd^g?0tW$2cZ>Mr0UGg) zMLp_#0#FkM+Z(MlCrjvCV)y;rv0e|DcFy!s17(NPeGk>!J^SzL;?izM%O>v@5D0cX zB`f^rKeJ04(KaI*+2j>ci8uQqnxPglubFj|i*Ju=aV1PUZt_n#sc+!*$@_{4)VNQ5 z@I1I9^^EpZ8s$LpT2{AkW^c~(Q$o1apPG!luY^3Q6s;ewKZZtoq_o^kLOvZ73#-GP zuDX`+J4m07rOJ}o9%PGLR;RwMqIwLF+$OSdQxCOxe1gEXVU=>f>F#2Yxw0V=4JY%9 ziuD<0jrU9@`tUzR{!WHKKb|I`cnRYkN}PYWJ(Z2%GEd07I2KECG|X`#h_=%cgtWh= z6Ytv!5D(n$e99F^?DE1j01lu6KT0!XWQ*gr7!S&6dfNNM|J#?D&~rI1zFQ&D7t?)S zBpD1KQz7`Wogh;a+Y16e!^a3A7kC0F4da&DaP4*Uprc_#K~h(sU$7SE*_pzv!qr>) z!;rQDhrg7AIfRv`3yo7`uXikFv~a}Y%v&kKhpVAB2PqSo-0M~kdKLd;p2_QA7N!%Y z0kt?O(f3&zCC%4pJQNy8A{yrMIlVFO{{}5>E%06sxEN{O^ccT@Co@G>RecJexJl13 zak)NblZIVytDk}{{%9o?MkbE(cpzQiB9iSfz&UWT>wx889ZKpSYdOli=?vF$iv&+N zE4@owWr$Irsc9-W^KTq&GDA(am^zxgIti`8dw+PpUV!F~2yxTF`kJ~LqS8m!EFvqr zyW~aC^kti8^|I`e#+*7dEyej{G60wWw#}xyrP#AMmAirKpt%2p3uas9^&bBtT&N-G z8k9xIBDCO^dKduBnGnUJif8J(6w-EL_&(|F>itv=svBhvn$SKFJrm-n7^Gh=PNUc7 zgNs$Ao9L4aYWk#H?9!j+hSn#uYl$==rJ*@kHP;HkKZ+C8{n-!&Gb0}XQ|oNoz`a2_ zMiN)$(3k1cKffN{wHm&Y4C)M6c%I$Z@>lRmf;Rp!@qikEj5?LaDV%NVsW*8U4VqwG zfsm0Q1NLLi0iwU5$>A?-a&;iedGZQC9ROO!6GOZIz~touxcvx8N^8f7HUi51;+g_X zreUpQ;@{8ug6>jBuOSOnt7~05!hJqog{rFj4=eGqWxT5*=QDgKEMIhRRjODZ9zCUj zQ;5E|9=>8kfrqIVh`{<3%x){okn+e@WHFs3R-!%kZ1b(3!;n(T7LuodVtNn>H;bj} zt&xcz*OHUoyfhcYeGg+yN=M47>*dN~&+X^dGF6}`$8O0NNSSmeOm40`-=~8(%n3hC z^emMmaYUc5uFq^Ar7)^fK#&9=mIra3C7;N5gKp$s69JkZczCu%3s6qEvujyOA=cQf zVG>ydJqpIt$bA_@ieYTgA6#ElB-R~e+rRdThD-*pKNpF1t?UVg-+|ESFLgg@b`@YaQzmy)J(7upY!Q%2nu3a zs8NzFg(l{RQe6pzuDM})G}<$k^`xK=4esM>fI^t;fNcfUO_x}A1M_h-pc$Q@6o5{l>FNrdp?~6N*!n|_yF!{qsX{ajQ2`SfA%QLCNLc+-Va@Z`F zF%^bRLdrL7i!&U{>a)+aEJ5`2{vwOZ zWdvr&?@qzKKtE9xj#UmWqpA-!^JIe`v=`jwhrVz5rZ4Q54bI7_X%sBNXe&@vvw#v+ zO+#dV-U^4JH{64oSV=M2=}_QBsKMJd!dAs+=WmOV=5BIpibT70XfGKDd1gx)QBAkK zB(Z_^-{pE((u)KOvBYhu`;2pTPIS>UgF&$|xexW2Mp7q z*f&w)t<(pKEAbFdL_<~OVWiOS&6Iu$7WXdpmv%mgYLgo~{*%n1+kDlr2=Tkpbjr&X zb*vJCii<|3A=0%HLOV5gXO(Ldpdo3|+oCkqLhnKb7}V$PYv$QzZ_K2O`jQldio1_n zUsSvqjI2$r&P-P!o9e@^41Z_h|F%ZKrq3kwYJrp=q_&$tJ;1;4%kOOBN`DfL|7%IC zYSrozpaJ9?-?`QuI$s2@MOiw+fwYk!CU4Bpn0DoPRbjb{N22(+UY{B&&ea~)bJ-S9 z^Ud92AAe|{C5oUiAtz_4al}9V?Zq0LFBu;iK4>mq)A8lCiLcnsT~=n?XR%wJT_gL; z1dbCR?dg<)UT1bnAiedTE@F&|)cY8KFkJEI1sK^cwOKWtkUrpH6!MjSV8gwmuBZx* zYpnR(f&ts$K(0$LIx!!?U94|Mgn0d|Dl^?YL0&b z(ne6@S$!?bC$wou2~pjco#7nzi=qT}Z|x2R#O{;RAshKYOeHPbj28cDB?#v0=#d`B zgTgS`gRcNgcmj+$Q4sa_zte@DIiulYsNPh1_}2jCrsu(abQ!>C5$`erHS_-?cc2B9 z#kzJoXnpFf1guCkF@Ya5>yvU6sNWF>FBt$NC%7huyhepKm?iRL3|BbR&>q09kb`qe zZ0u|L=n_C?54X+r0O0b@1*!D?VqLvL+8PsnmAHjRR$7Hg!F3RrybqqlHn@eEbOE*q z2iga>vLdn+5(sv2vE%BOY<|N#sEoy6PfQQ_)RbkN;JLnMR>f|nLFQpO@K5ngt zmV)BosXF9*!O#76iI8DA~Owm;c_YbLw z73`g-@x7KV52gzq^B|#o!QLGk%dGEmjdlHbB{EOHLx2T|#SpS>(zzacjxg$WXD$=8 zGk|79fQh=H0yR?jRMrKu)O#t_bi|mV(L?tb^jcjjAe2FtiCSJw z2BC2S`ibxy{w=-6F}TI%8{tyL#nUUSI9n(_Le}^2uuiA0&+WOB&RF3wRz6E6|D*tL z_HpB*eI;koLYB_*6$I52auf#bFpK960Q{e4@`l}RPT-u#AyDj4gtUn*jwqC5<2GDj zeW+j~F1UXFN6u0wlMUAC>?3y)3&>JRs653fi&T$0w30Ra5%!3IacQx{$#)1MXj@f8 zI7fjwLTs}QlIB;Mhi63zOOSeiUHw$~2%@AufylJXCEgWeO}C3SB1i%{$&u*# zAO2)sm8tR}FE=r4I?u&H$2$Wmy&h}i-P&))=8)!TTB}nU0H1pX3eJIGXN>n4DbR>@ z-+_Jrr=q6_$uqUvGz#+@uIKrS4g?{|_WQ4bN)jrD5S75LBI<^e^O1#K?rKL58VBsD zCoZnNm}1JsK-M4I)~^HArZHd=)(WnE#-cAwy;!_~D-63(Xrmmyz^MW8qr6}q^~=yA zH5VS3;m0-#rSpcV-+$j^6?88`wd82y`(Osv_GDSrkC3%eJU2oud79Z=3fDm>2}%JM zGT#>V7p96`udLKNGgalrcd0=x@VG_TgTT*VwN}$&o^gOj`I6KV9KIZX?oxKY z(};8gZ1kw@1NgJe%0nTSC-%Q>@6i&aFt;=lfvmEkMIk)l!r9Ie{4c;x4mG`48~PfD zjBj0uLbG3ByJ!-J8L{k*R9@Cy#YfQ!df4FA?uD!v_k5eA$g z*I{cr=KB=gf=sAv+;CzS0qnj0d<)exma^KuegqUDbUoTCL0yU^u@I;dR=bkQ>&vMs zW!b%j&vh&H4RZjCcgsEgXok0*nekZ~Sj5k1CJ4Q@HHzPjBR6SifvN8~7-IrD3Ai?x za_9<3-vN~{EE?Wt%LYzax_eecJf-D2s4WJ1>(HDdEpS}O>@#Qia&$N;`Kp?$?k)9T zuOoWDjOw3DAcIL~0&M>3OFzO4xqhcyS#Ly?^~x|7?#sJqZfG1v^7*!RWrkdy;(>EN z^{c#B4%2(07W@WLyBD~jZi~R-ai{HtgBy-3FmGT zk1Ev?juulAgm>&An6qZC(O9<8FL9&rFCHmEeYv60mL7&pXb}SkDg2OX{#VWwxB9IG z=TO`JlDaFjs|lrmsAS1VZax(UlZI(beaJe}<(v73HY+SUoISYM6S?FM{9s*UFJt$W zf1%?HyWl||F^X5C$GybK1*MZq{8!JW9V@K-@#nnm9*fF3Xd=R^TXAfCYYDKJ^}=dR z7Nb)I(%2Qq8gWLHo`1yM&6+HdaAXAi<6y8VQ*#MXV)w=bPk+BXlaLQ_I>=R_uuWH;qChDKdSYOA@%*m*hJfDK+;Iapio){k1vLd?KXc3F(4mnoh4`-D;q&QMJOc#-E}9`dshU6;S76~~0r>Nx|2rNKC+Q+YT9b&ug>uRt zhxstTt>Z_wVFnt??Gzr0JjW1xi2XHo&^b7>y$(I0FZ(7Fj^;Gs8aog_X{cbAs1Qpr{!p9m$H=He0A6XuOebqku#%%W*9QVUlij zr9xW8+C^+g+3Lj2Ueh3yKL=}MF@wDxQpz2;eokLlW={oUo69ATO(^YJT`4hmL~20r zxjsURgi-b`-s{)m6)Hk;hdN8JgEuY`Mf5}J@2!Lg_G2r1ZzL7XN;yhF>B!Oe0h27& zXwZ8l-jlMx34>Ok^0iP%RDJxqSqp<`K-MJYfd-azcqF9$iv2!_lfKYp`&#$dL{mf4 zF+ypeg>F`)h5!S9UT7Mq@psLC#<{?W@S1x$pC*GDM=oYB*?@%NFJUOY)#I#Y{wL)f4eVT=*lM1HQnj!Oj;%7*gm z%=$!NMR8aR`HJlm%gh(zTS7|C**w8T7Z?2@4|{|r#3g_EqNt~>xi;$+(m77P6n%vb zDRerVw5zTXP5m19Md;D%#@}umuzAC0a&k0-oe+4nUV_UkMVyZx(`fHQ^@0%zSm>P! zL;(;(QfzA==iR&)cL?Hg7!&{axgdgsRaRTh4l`bq;}sUo$>z_Iv{2U?!OXeP)o^j? zA^zy>ybQWNU&_@@&@Kl89-A5GstE<(gNKjQ>|Xi-=(AeGruc|Ze4?Ac!-7iUK*P2b zscnss&|}>!X_}eD7!{EgYRYT2l4rFlJZ@AlwRAO3bUdutWNT(9&w^U@HML=_s%utW z35z5ss_Ucb!pbDJ5FTqt-Maf7M^HTuu z34ojrfU>GakMPrj1C>8|a36;ywcbXuGz%*qkS5&kkSO}Oy>cHop+m}`BZkG^?+CraZVEFu0$Q{jc_hsnl zS=jWj5P4`6PROe2)(**4d2Q(NF+7*rU}9qWxiCvtt0xL=1S54b44Lp^#o^3QIcQT3 zMIJT5d=al8;b<8vb$F;>!dZ)0iZAXVG+s=5bL=(8;BDKGlfIg|UVGz9jiAp#n+yw* z&h-FB6gJ?%5D`vsF*}91UqxK9r>B>unn9S2Q$RFLio5N+wK-9$re z9h|UST9!#99ZyHZ@zCiv&MqExXgJmC&^11MlN9VYI5mEY6`xw*Viaj#DNBD)k)C@k z;URRsQ;`4!$Jvpfn((`~H;}Bj{3(`$k+ZK6NAno}!Xu##bFV^qud8JVdh?mIe@Dwq z1p$>5PY!yVbn&e;jRW6X%`ZIl$x5zGNpR!g-cV=SWc4E0_i^uu7iRb8340{7>B|$P z&Wb8J791-V=Y%Fj1D)}iMB01Dj?yG|toU_)peY6RVEf5S8na%Pv?}qEv>pfDH35CW zyqu41$7Tg#GI6ku2O=n_42*(BE>zSCZ$JA=JX}G}NjB>>E2*89@MKSNFRKv2*H%qz}5y-aIrH<~lPhy@fFK?6JiY2>Sb zyYgbNbGEA?jC9F^3Din4ME8yB{BY}QeYa8ySDWmq(d=F5o|F(WLP4WrDVb(LhIiC| zvzAhXwIlrFDMAm*GB=x~=#ftSK2lhMtA_?eM-&zD2ci3&VKcVMpuxt@qUsbkBt|=A z0@VA2s93!}z!WUpsz6sx8n|Q)ca{aA`~%yj@|o)TT!EO6oK{h_uJhE%+e$g21WKflAOO2aTsAPAJvPZ=YX!7; z2^)G*y4B7j?Z!8ueLMgdAV#27t3REj3i;43a?lQf%TDkcms30KM*Q!@>AE{hov}Tq z&?Xhy_&0#zMi8RaY5@)SL&Iu6TuV{S0jbH;GS{_3K%{n?bcD}-9`S+b6KXWOv<|HB zZApX<;FcaQ$+&Y%^C5^vfzu8HJQS?d=44)Xqiwbzvx+&qjIPV#q+;D4eGE0#bPjqD zWLvN~&wu%yeP+~Uy14rWVp`eAwn8PP9Js>#9zP>80{fAZ@oGHWlNQ#w)5w@`Y2Oc4 z>=&>!MznG3MVFX!*~O3(a9rxqry>yWR;^lQM39%Rc-^bKfHTs!wqCm!=XD0Fr|Qhf zUl8W-z4<3gy~1$ud~!jVCth^sxj`Q(OM-#N;S?DLa)@4Tu0@`Ac!dRfqF6RL5lf;X z%3e%ywmH{~wpD31lre;=P0E>`ftT)5PbMh$!7nyq*1iz~$D8AztNO;Se?1CyQ7i3{gUn5=KLh)&cOj0)%ig@VTzo&Nu89WSNhxzUiQ`q!8AHxG7w8^{Zah{ zc~yWckxD;@5V%8Q&h@WZ3Q;CCO4>Ie4-g0kjo((tm_Y0P05K{sqv{7NMN$2GcRqxuyh{`&_DEffP zll9)tY?)f=tj#4c3eQ={F%YVY8Xa4eu-u*A0#%@6HQAa}0JDmil0z_i^>+>|rqTVj z{2!g}iC|R32A6*Y5Vblm4>7#UkA10T$3rG-n0c__J*%ycMD>GE7)q^$wGEB3j|;n~ z#1x+=7$> zw84?m!Y}+{eS#gp0jS~kD@T~v#9v55zHgVen{LrYnd)M|dBn8gm|%d^&X#3T^BD18$$YGt>UCYNwExfdfA->@!n2?)U5+lqBKgYxIj-)kjkm=}>A1??YYbIM zdP|#kmiwxyaJ~ldimvCl`!T3`wKD<2R-I(L={QV|pl0UZTCoSXmR2r-#O})g7&a0qRajQiO0s9`rWgy zY@fate&%1tGj^%7XyWR{yaLuW)cfL`1J-nV%2uFS47w=mPuJd6q=sha~aFJV`z!Kek-!s0ctoe>*8 z@;D-zfB8bAhjg}+2Q6_!y1UC%jnro*4#&0xHRyrhNMztO=$f#{o@B(KBHJ2IJEv~A zj0Tb7?wj;uEYFq6Y^Q&7y<_o(-cKSjhZJ_$Ph-56bXqPYl=|+Dsqw=V?F( z2jLL!U|y4%V%2vK;)=7#J{m+8p9BT8#rR}nAXKdliGc0k7E@N7j?VKIUF7>&MXXZ$j3-nl+GVE)EuDhFDCW9n)27t9|H9tdaQ!Ar@6A87XB$QXXkVatVo-(G6Fx#|NtdOC|8ti&4nZjgYc%G8MQ4EG|A$aHOtfC3O zx#jXXe?$kbDGpf}62PjgM~gwTf3ieWsCtLEp3?zLVkte`qfvY{C@J)x9 zmt_ExfWH+K+g2d)y{n~E`_Y1*{66hmU;aC26sIjI7JrBpPO#^JLBG&$C}ebsBtT8f zMXRrB)^8maN`X(X0V;qdk+cp{R0G4W?-*9w)PKwrCoR9kw|;CBE9{q?k&1x&-7=&| zO&~5E>?)$%Ox6nAP<3uRJC&#oQAsRIjOP^B!URqPj1`6C_R&7VoI3Xwn!3jhv+CAy z2b8EH?hO_E1ENhvk}8w!X97hLwFCfx^t%C1&ut`uUl1W)sLO4m-g&7IjmA89;#nc+ zKOrU=#uUnLbY7|C<75#rJ4mWs;o#8Prxhou<=BzrANc)Vbh;$jN_G5($~;1EDpT7X zPFva9A!U=*k>I`?euWIxZa2x#37!dUeam-EDwgYBmm`Mrfh-^16i%X zO(*O?x4cnjN^&XzlaJa!OGmJ{$J8aG88mW=G7D9>o51_=V~br2+$te9Dn zwL{)<9KMG)WTGpbJ@pe;=!J+#4>UQL6OhXcbU?shRj{@Jb6NxI@f0`)yOW5hAlm1~ z^&!;AIu$KceGPQWnB)Gix^h&v6~3DO`ao8!`IiA z=`!^~%;}1(y#+Rb6RuK1g%#h^FdJ#-;@)JLd5Z0ePDxJu^e1MV&@Zvy7+YrI8O*cd zzU8thE8-!yRC9}m&kR==FtMNJSUtt_l5po1b7zoD?@k;RVntsjlSz=Q-`@fLPv<0- z`dhkfiD%RrtK-1}?uVYd8{=Sf94n+tpRztN=7tXqlKz9Ldku=KwCYGx!l^fwvy~4o zv##=9?tN{SahxLdGFN{Lfl@F(G0%H8Pw5--vI3evT5?>>o;(nom%8IDfZPgD2X=K*u%W?H}gwRAvZb5J&_ML!kDyG1MY zaTbol4hw2Ujr&imd&Q1rt&Wue>i<}ry@e>P8)Y{eE2wug4jepg`0dkKFo`S7gReBP zyB#oz6SRU(z3XDrW9T9yewzn*h;&CwId>JoiggjJMbxLfjsQk-ew860Xct936 z;ANE|0A{W(bMiT1{_)e8Wd$6ZdaAo@fa@zT9@-&XnL+wX=R!dwFCP1$_yHCoE*Kin zBD2I^Qe3>j3>d{=r(@;SVf1}!-}AH=36kI9+!{mW7SN6Q(*9qIm_wU-E@wQ+s*_fj zg(QfKA+Y{32X2|WIk*u>R2lMeUsrl}I9uBD5St_C^2s6(~eobT3;WQzMP>63#0G zUXZ?xsi^=a^hk+=aIR^tn&^w#>H{G@=v)_CWvjYYrJY*~%Rf-!ki^DcV2UnDpDpYi z^euw6&JtkE?fVV`4J$m+=TMs{Lh zZH(}_Z~ho9IqE!eZW>Zpi2DK;#i$Z;AKi|!FyIRGg!^Jk_)?Cvw9X=tdbMRP?4}(R zR5v?_3MaQ?Blbv52wZhfxm2+ohgj*PH{ulx&72^sLPIff{Q#KuPhE||32*tj}1Q;o(vZ_11RD=fo#zYKO5weH!t>XRXld}aX!Krl z2lr+1EcL~`oor+WsjJ^xnuh}q)}Q)lBsM-u2a4;Ff5_A&m)PhY=mF4pPZTiyu;|1D z+$x#-iaQ*1K2p|v;B+cRo9yc?Iav{|I4@chJtlz!%*4c`q%Jnw=BVb_aKUD?q?~@3 z(74E)O##su+Pm^uoVI3UG0#14HdvmNE5vm=g@-qa!pQ&*M0-~R( zO_wqMP>`7stbpFDcjjwZS?qi64Bjf^kv>DCRKkZ14uGW@jOj(xl85%#DK*f)KjOo(_bdu{*T z#>$nu{8tDM!u)kc2X`ywKvtHuga^LUt$rI=mf;r1;osWC=4kz;Wm1rN(Qfo515v9% zL=k@sA}xYEG8JJMbptiE8~&|Ge#vZ^4M)bKhwTpk!wxoZ(#`kwLn~jw(w%?DuUHib zQ4;KvcR|bj7!x)H)exeaFBtxgcD0;7HA-4WqFw%nQi4fHGKl@^kkTZ9GQwL=7?(cq zSxB8bgleqD6cEroFG%7JqxR?LAv&+h1j7=ulqbE>cpKPupvT<^dEF?eJ?&CsT`(lKc>7m%JUw9Wqmpj9kPh(aSEF( z;Ee7$&ARb!)<{obMB@Bv1-BmfP6uHd+POWq^n>7B(W)OPrSsrCnO=%eGtpho3%(bS zls@_XlmE#^TUY%VN`mRcRF?dz3jgwfn$PiyIQxHuA#tX}UM{--h;{MX2KJ<;k2C{kW1eL6bWmV zaVf3T$_KVS*$JVwd<>x>H?8b`XGx6tcM|&uay%KSJr8{Br+!mIo9AAk+Bq*-exxmL z61oEGUy^{uZP#>wSkn4N0Tj26BQPG0HsfLy2LSrtOXt&pP5iL_6s$|k+L-Vh+tuoe zhDZsF!maXp1JAMn=t|Dqfra`<@lEDm_Pb(X<8DJB@D7b3>vRlF`Jh`W#{Sx2(Fb~y z_-+Gq)o|!J8`^Dwcz9}wa6jf~^XbktlYEgT+a-OBhUaFGXZ?pqmwb0BL_3J4dQlLo zD5oERy}}>Fp3qHV@ss?=4SW-WkSUN`-ee6V(FmTjG3;&G0@Z|%qlOlve;XEsE$PFE za2z;g91-)La@F;oJXOP1jWF0e+d64Sq|XZh;{*#n&k=T&w^&n zQ---2p)LJAAcpusOMrz0;APs3j+b|=9be*Rsp`b3C5ZZ(T5uY|Q{Ma>7+^kXlR(b` zURl+_k`gL+zVHpjxL7v|k$Fm7j+S{c%k#j`y`TOoXz8H)rcl6YoJeZE@ezQd-6P}x zZVgd7_gJ7ahl%j5;@wRvukb*Yyv#KY2Ou*N#cs-v3S2}IH-2I2d+6mK5I!%hiVN6n ze$Wz;d>H4)?0q_GeTgMqOyUxvR_N*QKoQX{B@YmJMR&t7dU2$M-fK!HYHUHnu{fNt zqQg5w#{i2}Y(J*8eS*1;tTqNVT~a1S>vhIfAY+2(Um(mOyL5E!orlQnw+TYMPJ==o zB=G024#O#gnoUS+#8}a(i51Bi-4Ru#JC!YT)}dyuiNPr56Hur{2LEe zcnCFCdhRbT0CFlY=5oklKy(q|8q?+9F`~QsassIAp6G03*c1q9dha#ehL$1nNbAr# z|Lu;P3gG4?@v3AiQj%;k#<+Pac+)6fEJ#E`oHZcb&4GVxbAc?0)VVYbj(_Eo!o?Jl zS^-YFc|jP9xO`igQ+)u;8jYtaBi`j*jXQZNke!lIUom)>l1L@h!dg$@MH9wm=w8TuFVY4oB6}=`3u>J{NC4 zN@6BRZK3NHgv+CmUpXA4uUXfmS`Ql$)2o~0QT0_0iBpn0Sl;|rHynF zgnR;P661XN*m?$x4CPgcn%D_2lWs&kR%vaZs`mzX6*N{t;=fd4j$&0}x#&gQqTfAf z(=Kp@vDv=PvRNHW#xJhWYC_sad-22H#)L%>*o_ZByDJkGR?6=71me**C1R*K9`8$L zupQe0wuPfy=^DCg)RCqFvz-^e)oKV0=;xb~cH2wKCTx@IlJ8y4k4K`!J^P255~q2> z#fQyl^YlNK5^dlMAgBS>XAu?JqYej9x0fwWs2E=S#JT-(WbZNycQ?n+V^zQYYZnL) zIHwNa2gs+v4+VfFg6dF^n^7w9FQRBY;#E>~DHCeD$wjm&~_yGrC;WmNX(E?D|k7_zJ%{ z$f=#I-Cdcx8#cJVrDo9*CxjyiUuys(^YsIwFl!g+i z?V@KOp^Q7D=@9Cpcf{=ap)K|z*WaXw1*~b_XdnnECbvPvHK0)CR$_KjQQmts#zlQ5 z82yz^<2_p>snOPlxqU3G63m;-hEZ~HEW1lK5*A$*3z@n4BX|AA0>M_lH@M{kVf%Bj zBMp_e%dGQQ*I`(Z=Scx75~ z?6@XRslrX+*l;&UD)u~;^9Q#ZG&&|z+-Swfp=;zvT+b-iv(&z51GNUlu@|BN`;`vw z=%egqL-;3YJ7gHg@^i9~i-=r!k+e`4xXaExjkU2bND`b~euBm;)2`sXOkS`UR{l0E zb*+5C-Zhp0c5~{S3K|F7$Rt|t4=V|67YQgB&Dsszb}swCF%r4EKTPVm`A&Js7|MXO zh&-&EBCbS3CW>JUtBz)Nmb)%v3Jk<65dH+WD&=pswS{TPJL|8QyZ^Zjd*75w4+-2f zy0a*N&c$w4Y%b~{ZX$xQ%;B1 z|8i);)eQrJc8Te?)*t@W;`E zU+^aS*GCxD42d&Cg@J=B5g-x=J1HOBac-=HwY8>kC4jot50y;HHp%O51LF+^He)PK zJfdf!=Ow(Wu;~n#&ucc4E0x(%%sQ#Io1dD{-Y|hNM1y6-imT zTKsQRjt7w0p_L>Xc~7Fn_ZxXRbwBs)vs4~~d`%3k7stL02$XF$+o~?$=ow3h7+;bc z{L|Ro0CV)*ECY`_c-C96B)=KK3A%ELH|eF=pV$l%8L#!(oLL121UxA?P$IT&age^T z{MB1DA$!I}=Lp#K=>IZziW>o?SK1t<{y<2JmTGf&RBAB%00F;*dx%)rN1q-;EBi)2 z80OfaL~m$G2z>2VscO#*VOwn9oFs+y!BxLtd>+d5RbGHuY9`Mc*RIC(}XGF-z3K9$OO z#yK(h8LL@|J!64kL3L1WF(uG{462-Gqc7EO9Pc2!u#+4BtsN;&IC3gHw9C^0+SxK# zDqlrY$w_BwKp)1dgn^9#e&NaI9jzA~G(A2Ch{@^-E%%aVO&y@}{Um%uNmeZ{0Y|yq z<5Rwjm)h_>4H6-&Q#wLymDJm9M30W;(uw~5d2V}vjwtX@cF8=c3g!wm3x<}I2w&yX zgAHtV19q4%v~YyestpZyx7E1%_Z=LB;N}V2EtcJM9J)@)v@Dii5_@6@8Y8KN7mau$O4tvaoo&UC3}p*S9Lvta~Z z8|Whk)Bl^sEu6U$PXxw>;1$8jQ)ps{Pl%iN=8%*Cfk`Zif+foy0LmjsAv|IS%RmO& zqg~4igRj66i7Qh5=WbTQ)V>9N{<}l4znEW{VB&6+R61N~Q|6I$d18@KTmAR8GZQjX#G05;Rm-zsef|i@?4s3?`M^*bu zk^c5?A9g%}F^jeXEeMZmM5$!g6Z0UR;g%~)($!)f4x~YNy~KEu@;GAYNS>ORvP(TMn<*)eVM7j3^@Q7>de+C_stpbks zrbN8f+9WZ8cG#t{snIzcMs{|;wx-W0Z5xt(S>_l8 za?mtn?ef<*6tE0efI;cDYRxXRvrv|Q--59dKHY+;V(R&Z0nmjm^xI!xqrnv78k4Pn zmyJT*%#k@KU=!Hr?AR-n1h?&h`t`??2;EQ(%2Jf6RX_Y@r?N46`>5RT;Hm5-3Y;{< zgTod38f`$lw=&SN6DEf0SD}$r(NLEho*4%>#d(cml`g5HuxB9yHe&ik6hy6_`kAgU z`{Kup`Ms{r)p@j`136bzRor3>V2}H9K39h}>`2`&SU$CBiYWY5rb$w;6SVfXS|~T+ zu6ev)qRYLaxrR&}l3@u~KZF~I37lT?_^>5Z zL(zoSpr}RO>eSDp=pKMP{gP1JNNi!6r!yLzIn0utlNxXKJJF^Rwv@E_HzqM%S9}q9y?SS*O!MKVfQOuN6DUc+F+LRzCb; zUJIy0MceW+I`mNR@P+m-p1DSIFT?^rO~8JpG}^9^{EF&nA%sLH*;}3eLh2&!XFve- ze;?QA5Ie&Qo9FCWPBwqK3+)vJy`oW~$bNltI>Zi3fege&;w5{WMMq*SNQeNLA@5L` z2O;1pgUgk*yOZC5o!Q8cAKE2wq91#!K#x7)S}L97L)Yafv9Gon2Q}IhLc03SY{=j% zmo!#){M|}O{%-^&kLibnxM96`wmOU`DU>@&yGW|og&}OC*WNu-wV^m2XSbH(!08eu z6jZWkyt@)BI28s(?-B_Obo|cAxO}=A38)>zp@|>G<>u;o&g0(m5?9} zQ#Oyc&F2HYDTiY2vf%9VVY%{HbZJq#;}S z&xu!O-&v`9=}q`|#1slU3By&hXIN!vM{=eJAY|Ac85DzdpCDZ9 zIN=aJKiUoFPldpVFH;_loZ{G=Pfm@i$#QctZZ{9Ip1b<`5)diL!3v)AYEphy4Un`ef#ql}G55`>#WYWkp`ehT|8tl&`{t}ua6iXJe_+29JE->4(H{QH*!1EMz#Rs{!-PYMMZ(iL^f_8#2 zf=(3TGfZ1eHr=m@Nw+7xHlH1D+D^5BQ_<9lo6#w6#Q&?JaT-X=Ndh+$ZpG1Oy&81) zgy{W|`T)Po8Rt|6#KrhFdV$>N^P@-9lV=a2UQlT(fqF%7DELSVeifXy2v#CT5&!T4 z)>9s*f#OP9^iw{0WRN+KkM1JGq@MPQN_lnXISw2^cdpknCML*?A*?P8-v$3jc5qMd zC)uXzRiRUF`}$tTEpGIAVMHr)9kFbUr0?~;w_nTsErgFfc&TXeDH*^1&;CUI=mFv% zED^Hii0DuH$-j^av;mvr+F0O`mf11;^!gZEw7td9X*KELX(HG2D?uadB6ec*k$`#& zq-W6+rayPH2{=uZD!+d142H^b*X(p)s>985ckfx}cohb}Pa|@C7;EG%4y}sJ*rQ5- zE(sQ02GzjGJ1F8K(|SqkijX7oLCf2!Biy`e#eha&KG*!DZoN+dGa!p z7tVeW>~HEXF>|WjA|X8%G&aKNWoy3FJfdSx^pRbNq^w)+qF3z#Ue&`7%vf1;A6mQ$s_H+yZU-NEi-b|h&J^+=cL^`dap8I-K_(dpGDQ!7yGMW&hCN^5F;)R8fxgQw&8cPD3zzKs{XHWuD3NStS4Z)vuNL=#_jfCbX{12t|LWNzU*HDF4d7GV>hqR~kcKQ0{EXIw{1 z!q;Wcq1&4Gg=;{=&aRF68?M!QG7{RCD5=BDA)xM$UBzm}isU+3J~li0uCn&7GB#O< z;EC|T^FJJI=#csab-OUcKqd;3f<%cl1}6_L^xL3C$M<$v z5D<-CYuL7U+M6Aze`Y*lVy>A)M;6Gv!&$j~QL~aYpZ(0lLTKX3*1t7iWS;UIN3rC{ zLXeb`*5akdy3F|XSt3&%Y)q`uvA-8&z?s-&Wx?u72R@|D--m`9BS;>0(!Q9R~gJ=E9sMo~>S5UTMXZCJCDm^D|*V>k1m|&CQ)K>$) zx|ztOituiW-D9s=mK?+{xfyd03X8tX1;UxS7zrJzaIV!O?vh1U`k&)#LXJ1x;HigL zI*oP7IV}7bQL%MmSNO9)o6l5Q1%`5t1#LQdmW>h?^)xhQZpuE7S^b?-ovr?O|m{0gl)j(Jo*nIjIKURkc z>P=wwYRe0{@$2`O=o|$haE5H#$n|)WeTCDvT$F}o?~X@~BQl}(S~nmQnCC)m@bHww zKEdw0Byu-_bvkkQ51J^mJB}@xoi87hL!5kC%#%vPSbZ%n%c5f`Qucu`$k#&$ zfWt*lFr$U*oP*ZK-vtO(SPq6OaWKwbFhhy3k1zQmWGDIi)_$v2JBbLZ_rd_Ky5NnH zJ-FvQt<%%Jx$xi>)Sa)rXU()|=4@FAH?X$^VkOCjc~k zhd9W5HYr3Y3?%qtIaG!hKEffG-COkgL9y<+*C1f2TnliD1~(}`Jr$QRc?xAiH5?vyQ-9s! z%?2fJ(VO@kf8OfVDX;TY$TumJTr6%WIkx!>NUU4+MJ6!35TN*{^iIHr50?j6&<~$! zY5=>z8!$NQwz4g+{Y2*ktC?MoCnK63o1Y@5o|RmMzZTObEsfd|xUtK{YDh-StVV#o zfKfycqj$tXU9NUvo~1Aqr0!izar250IEl(z71E+6|E?+O-HXcMv%_f~%N`TM#G4WM@sZvEW&MS65+=k}AC} zU0}EZwi6ihT3?_wS^C~n^nAl?FFdJ(CXgaU48$b()y6jNXn>ewAg~gjpbA*p3~rZ{ ziNA&!a=uv(oqKk-bc5Zs3*ay-fV`cIdp%zy4 z+G$qpvZIB>8(Tbbyz?5{tQ4e^2cvVU@XWk7KVaM>KQy)RZKn>AO23_yB?%K3L`F#M zscu2wpfJP$eDV%@bPAh5#wPUUse~* z4DC0fJ`U3-j|?sj`!Fs*bKcmO9!-TBJ^EKNx*a}JZFw&{y{Vp-6AOpTk~bWWu)<>u zz3aN;bQDtmM8S|XOA%^+{FM_b1$+Wkl1NL)M2f>UvG9bg>di>e;=gCBRX=S@N z|E=j99`qpyt2-Kc_PM+bDADd9sh6Snf8?1#kOVnmKQ`A${-F0F16{bwW980gz0fpo zs6#( z;sbx-ViBd4a$X~cL*f}4r!_pUP&s;uD?WU@yUZV84_FM7z|LkEgNq^FcQ94;7X>Fy zDqdT6_OO)L8W`sBhHoQsH|z-vEX>?7@Mo#LG#*?A=v7h z`EZ?fz`XKVXDFRc%h$(LHT|P6?rVve>rgOeaNut%I#^9fYdvY4=+&&1=$PvjwjwI&2J3YwB5DFkT@py|V*&l4)iy&rh-NGh|h@5=U2YuEc^ z%UkcvjJ3)U25sZ2MgRJ|e0s(wQ_qwg3+ptRXc}8>5Dp}9dM8~PMg@tUjw|jo4mQb= z6l5PJ7Nn20H0SaX(^r$Wp(#Ebu_z*&CS0$rr*|rL1p1?V5OO%B7pXi!mYRN-r*WZ& z1-utt3OGwdN|5K^?G`2Icsgeg8%Wz3lCaSoZ!`UV!_c5OT;S0Z^0o05xJ8k^_3NuH z{I_x++2Igyq#JvJHQE{uu^Q;+;A{2j4F`FFw9|O}ko^|#Lqt(px#9LWCQi^r-VUbu z^{y1_qJ_uxEHTZ=tMeL51GbvCQHZflGNfl`;7KKBW!7RxyP>hCcrFP2iUJQEV%_C& z#enhb@5OcZYPN=gWr)++`PJM;uTW7iccc^yI|t3dB&AWx^-9~PxFI?=thwhB+N(4d z3`4OKF(bs+_$O^+e$iVb>v=wl#@ZZP<9n8Hl1Kxd(PSYN$SSh6@o~18ujAFY@$EVD(_u^&EsPN1bszsC0~#c(4Evzk*qYCff%s=ZS0+-S+8BJjpsFt( z-|5x@qrW>x0+TP!@Vcd#U${5eUi`dIQldxjMm!4p=hjrwX?hpT=9S`5b9`P5r`f5| zMkqYxlG=uMQU(9H&Mj5t4w5-b!qt*1KSMZF(87k-QnWfc2)t>{1bLY4tnE_ALiVR) zNk?K;kmp=sC?R?iVG|Kh>tu5qa&@2_l&-+aXz{qqW4DjVk8>DIodc|*v#p9YZtM~X zI#yjP_K*X(2~C zAz6gOsQbF>sMR%=q+s|Qoc))=BC!}XKGd?xKh!3-6mpCiElr6X;E9R*F7^ZX(Yw79 z$i1usZRZER>GcR!gW|J!Z$g>*4<~AB!}`Dcn|0pBGau)B*4am+9kSmUX~2cGxuEK1 zDjqN0woRO+#~yd0Q7|hFYgy>GqN(BMm~LCBdNEF5`5j(!R+4OCIza{=SH3;60~}J+ zG0)}AqJ`LYd!KLrFWg>2wkG^y3F-k^?#2E2OPd74NOc0%?{4+r61}`h!k)@C>^r~P z7+n{qFXYdo9m*;zrEv~rNkoiBjdh?#;~cl`TTmS%Z!)kNI_iPtb-~1z9j%h5G=bh# zONjIhZ%jyA&|O=Rv{Vc{RU?kv+Fz#&IOwEr;9UY@5CpMLiZR+i@7hbP`;ve=rU=@% zDe-g@5Df_({-n`CNzFC~tA$n_L`n)bV37LFqxoOh290gw^L%sLwr1GE_&yQ|btX`P zPH~>xcn}e9Gl~}Fqwijtq5u-yrDN4vGFh%cKk765%7hyl?(5~;ordIO5ftjflhBc( z!8D)#iqC#~%SH6Io`)!-|2$Z9#b0k!KuG-e5#4axT$*240J%1-@Md&(h#YnE{;Dy3 zIIzcLByRO2|CE=s71YJ&S}!PgMh&yUjCaHQbkFL#g_@n~9Mkef3PtM^-(ILyl$b{r zpk$2$P~rlp^^vERV$Y;j z(u`&*#Xv9Q9mOnUD`wNGdz6iyEiMOR<xgSo4(n{xoXNb&~H2hCI?+sh%o~ z%AUb@(gT@O3kw+%tgRonJ}$TD9f|oekhaBvz`n!kYEj`j8{>n&->))G8SakGUJEV+ zk3_yt5kQOs!n^`Xv8OEbcCLIK0M&(OOc4Rf~T-V+iXFwEppDdA*=-SH*EaWf53=+G>5H0%k z&on7p%lX9S9eIGk&l`&mR*h~f}oL>p?QPFHS{o)x_A_prF0nz6Z z48vlUfP(29;hxSFw5q|~yFtIUcJt2ww$8}CMFDYcHJiy8HReM^pTVUXT9Z|WR_{lDshM^;K-VoTpV0{xx;q9xsZdw;OjsItivA!NNVfn&GPBzrdzP) zj)*?1!)$5J{p0x!R~{40N2Z~9-`r<%lb~XekW=`;w_~NvUs{S0^8Atxk3N-6dbwD?X&m(P^y|WooLuE+2&&HJ72*1T;snzCd5R44*3le)&ZduV(i0nL@mvizy}#Z(DXENag#c3A%0VHVc5 z`l0RmIkGnSIO8xjfU>YKzySxfTZ=1#bK#h;e)M5kI|CJlpzk={5*oc(Z2NLtsxg1t zYz!Y+NE0h_rmaD&YXbyEJUmQ3+kO&OhFsA~1e8eDK`69VFLW8z1~NeQ zq;gqYCzJef03;v&Bf!?Q9M3%KB(5nxwsQQ`XO6xPOa0D5+b>_g0*pKUX#}K2IjSN< zm_{JmY)edgx#F9@zi}~0y?BDB!u1qOt*3h6iLZyeyrLsocx&)Tk;>ZH@yrsuxP#_6 z==oBlS39eS(@^!=TssECGk~{~LMY7B2d2!?fs&>^`Zt||{78J!jhiKv+&K0)P|#?s zdG5-Y!GGc1TK*n(?qVMwKvpw2!azT7nNbNJ6;VW2Go8| z#I8q0kcQnw=k|&*?zvfKWEGGwX6fP_!~`m{QH>ym@0kq4U^+3s%{0>KG(mTUy;Q@V z%myl4f{oW7^~u$EB5N&~BXEcB_>cpvau=&;Roj~)>6lQOXqmZR2CTL5c+~r+@1K=+ zbysZPam3?qByD#6CqsGu$SU$8WU8pA6Xd}a&;>N+_S&qrQBwVh6W-{j?pDU=4RyWJ z_7Klr4ec|w?%atqm-RJ?(Hhhg*en`vuYd=L^2%^bt=j_2QwJ z+xt?#(@#W7)8Rxta3a1NH*+PPke_$&}e=`VLTbZL)T7s=KIHT zBs!9O#Aaq#&qQ4v5r`bsH?US1AyOdMq+satP3BAGOaxCZeG;OZ_VZK&N&-d%D-6*D zw!d8Kuw)h_X91L2ljH7&NZGGg19z{@2<{2m036un!1Em2aB6<7v0YA$Fr3pcpX94> z4*`;V3>o*dqykw)E098au*S}N)c>c=RNLW?{o_kMU`l2~>01G)9Iu(iEfsrci6E+vQk)IzN|xl1oF(1OHcfi{j|4zWoCt)M@khJA3To2Z( zU%iMT{{fp*b%DB^8k%L=BDDr*3Anw{>~}m`i`)J<>{Ee0swMlDQ0H1 z3^7)dV?z>^7msN0P?-u`S9pswEq`56P1=jMP%Wf^tbME)Dcqvdbkvi{5!x)yk?kyC zWvwA>hxsxG716xG?&tZ3DPkGx>&|uMMoGH$H%x#(B59y0?&ITqr|w+`HfT=Uj^`3< z_mtbk^w)nS-PcoKZgpQY&gs(p2|4mmqPK>6aesJ*4bZ4pb(_?$++-jJ#oB-u@R_Na zP@M^%0u=(mb_^)Yk@A-Ye3a zf-#=2rr$B2dB9aP7o7^_g3P z4PvQN>iSFW4`~<9(sk41&-4jvij*6Zw3RT?cM{}Gf`nxB^#_N6 zvuwxekfIs8H$o9TzM3_L>3n9QS0QxQp9uv$s=G1$YD&N3B-#c;$554Kf4NLxf&@fM zCCacj1o*elS#5j8FwLyDL~vzLEYmz(%0hif`l{6>Ykeh6) z>*rz2yRjx}fo>U)eEPmyn-oBDQ1NY7ERj@_T4B>A68c>7$}!f}_a$-eAsZB~rW-g> z;}g&+uh9lhqJnO#y01b4cE3tl0iIBtj-^`^zTVgrtNPyP151%<8nVzl2Z)yZX7v(5 z!Ev9s!48-S8#GrLta=S(QHVLw#H1D^Kyl)- zb9tlxTTfwAre@ex1q_ef`=&L0|6Elw}4<<%<`RETP^8{^xML`PRbaL%3B|w+%qzHMa7H4b!oa+ zm1qCsJJ*R(a))rK&whFJ)a`e91Y<+ihsh)GlVpQKly1a?N7+QPs@4MZS zD^>jR)A`(&+aW{ufdYU*QS}>{fMIr-mg4IgDb{8P*wOQd32_qt>`>NLNRinmQuv0)@hHA zHg_UU!#NAh-y@JSNFs|e;^v^04~x+MU(^jYh%!GkV{wk#+`S;J2#XBd_osTX%uCJ! zSNwUZ%}ima0&2*o!tuqU;}9)??4i+}~+Y`0k`WO1&6>Ly6ixmRC7 zj1ZlCwmx&U{jlwporH)r4+e1RLLNdPtW10@q@HB3*~qV4X?Rst{W*nb-k#DGDX?!DB`xXJr}crKT^@ zghTF=7n-pvhGgT7jq~*SeRM^=)3tILA|aBez|I%H$u3*dqB_Ry+l+0|mtsI9$Nk!A zb{|NuxI}I|Hr+OxO&BqBp!~yo4sl8bh#fy2^ZtU%uzJvZ2mxfC^9x}$s1UI7 zD4PF>Pj3{I&xRL}Z(w`T`M5dLNhEu5^L3HeIeoRi8ZZlUsA?jA6iAYus7CPP{A1NY z`pl3}iIouzL?hF5v3(q}qI)ruJ(tosx;YrD-az{Y##+7(hvmssi@Lcy#{NqeV*QhE z05eWpgAUYyTSVGXRkwBXKscT8HBwu^WC&_s3it@;{QYCU24cYJ4`smUX=~-~@8nDE z3}EtjNNzajWoSXWhjhdn3HNyD&`x({@br5jQ(G}|YW~)E-kY?oeb7W>*LSQ9Oj_4_ zW-F+haTxPOPN`RjC7_l3(V`Fnyvf*u~(5{i?I{T+7jSzrVWqck(8Lz69OegctZ9Wnta1b^q zNIi5Q^$>00jsu&Rw$la7S19{Zn>LPRlW#Bq*O_fA?cmnFfw4xKpI^F4G$Qg+ru6A0 zh>VT)mNRV%OW3Zjay~f6%^@K)QKnJnd!rPC`WDl$_A|E*s~iy>Ej9cT;=HyfmC4S^ zE9Jr{s|e=UZ?e%2J)J zg(dlvO?T{6l$$T}1QLaBDW^mYO&cA8EbETzyx0lwq&G2lxG9+D6n6Pv^O7D9{c3iF z9;%E7pnrz+9PmToNs`BVSaiuCtk0)ejXN*g$Qc)R^s9+5cC&H8`jVq1t<3SK`D{o# zU?{#|^O`IOEkeEDMUT#6f=N&Icwm3#SM0Q}-I;K~_oKe!o$m?fEa28!p7R=+ntgOw zs^*a;dXA`9|3HQU$#-`%#NpX==Iza)=RlGdxkEyEE-GNNy zjYf3F6=;yhA>il@^UjA5s@5&Sz0|cyU+=gm8g^d)yi@X*iGdpiNYVw;fX;w@zi1!U zUt6JGuk&!CeqhT9tg#a&2hxeR$oK$xgttoAVshIB4s!vr^&6J@ z0hAQE#yx+~k^j&WNCvSzm>1}gWNTd|ghlONR(=l8!>OVYO~=5mU8O?uK@}Tb6GL+L z7o%ZE$-GZ)g*hTBFeWR(VQndV%6MY!4w>P8LBXxx1SmhWX&_prIw zL1>!kjFl>tZff}f<|B|aAW*Ey*+r?e?JOtl{;i01QG?Ctqup2m{;XzO z>*`u_tfPikAuaVy&#V&lv;H8Eeqy$CXAEk_X_902Zf$F#;~b^Reob6oYVNb6;Sz`W zi(?o4lVCp1pK?solYinqs{ASv;?!7thC$i#vJ)9Ml=8S(r>RGiW8|l9HPVO*I}1OO zmRQ=d=vU5UFYxQu(r@6eDrl-eUhdKgfqw9yM5s$l43vy<&jV3c6Fj!3NWLzI+YEyd zwN%u%QnK<9dvN3u=7C%3@^ALXXBlghqsapRFF?@0V+jIxd~_luC}B2@m^XZBVhijD z-_up^n6smCHz&I2C62K#i)hR^;94-pU^M}oUSQxJs8dN?O+OHVuCBUW?i9z`p0#7) zm=8e*;z85L)RtDuoAx~t`~1*j9oEdIY`D_XrjTnrdgFm5?~^x=)I265<~7OIKJ8Lf zlKHH))4!8GYo~W|jTBqVTB2V zR2YG|o)5{jL7P_KjX;8itM#65bwHDB%6ZFyVT^DS_=` zVaeN9Qc%lGiA%TQF!wceciLL|_`#e8tCohXaS~FWZzS-tp(V?s7?G%X(%jwSA{Hlo z-~+>e!taKmDQ2mi1<`i`H9=pSxM2E1G+YWicfPbv!DDKrZwd`U=q znUoK}`PK?$P9H7EFQoT#0pc#Q=ml;Od@Ju@<)5aE4iyU3{F9Q=sI)(PDZMv$eF)_N zCw^jXA+cZ+KSCHte`kK5TPyC3KH%^E0PWZfw>{lYZrHq!UBJ8l2W+B&2W)z`0b^G@ ziBsc}eE5F{x&%j61&vqo=IT%u6E2#rh$+_KAoSLTU3|gY7r<{D%AX4U$?~(gKsT>|9fn3R^S42Y`D!MOU zw7Zn9Wda_7eu-@2Ypr%Th41hQL*H_fY@CVOq08(6+1FV1sgy7ezcN+@VL3^|~T*+pH%3!EI9jbBJUwA;8BaX2?zg7}uG+6u^yAXY^4oN=i`&|B zyPALZmQ`=~Jm&NaryNDv_z0m0*Cap9dxIB}{NUCknHb1SGulKg-(ld!x8#Ozc4+Y* zA}B!&Fhf+7AY5q|RA0=}|s8U}Z>E91Rnno7aErCSUE*wp4RDg!P5 zCac1}VM^IskRLh8ZZaIk;e)gldcFZ?Ry42a9~*~2WHGRRQz-=mDLSyGqs3A zaE`f@0u5pINB;R-9Pf5Ui7&&>(Fum%NgaWLmlrviHVMWW?+j)q69r&M4 zQ4E!q;Olaa6#~7Iaj)hpGA_QQ&7SN@k}~9`sF>8_v&!;rr%z329{l!5Jh5?in$3fP)Dlc z|E>;m>v`JmEo356f_LUWRD8g)0Mt60?VUJ1TQ;ndL&)fVh#-&HhFgJqx%gngNyiLe zhUk%q5GAbVeg!Pl;vKf+)yhg^oP^w6W9v(<0;T@lDEav10$Gu*FuK&y-wN3!P$&iE zHV;>*HA4gH9xW&vgAa?LUcPwgJ&7y?3X*>hOYUO$qC{l^FS^X9R0E@U6MNRICe%X? zNIciR__jA{9W-koGm zIxx6edGB1#vW?>LIZB1*&E1hxq3g719e!a!whPiLQ%xSeS&DzdVGxE@Pv*$k00Z-&NvLTg(|4bipJ;K%UCgEEoLm%xZ*4wslHExS_1L!VGZu z5U2pzK=Yi?lOrT9Btzbd30T_R=;#p)WodNKg2an5#!J=GM#vj{J3upINf--xPpv!~ z3iVGMsYbh=@vl|5Y8xtFQ(y;o3Az%&C3Fro2QP$(zSR`_gWOMsWiyYoiLTJkTe=AV zf0c!xb(BH1NtYZR@Hz-mm8E_ zL{te&rFjsLv=;SJa5&vmb6wZCWu`=*P$cRGlkOjx(qoH?oi6%C$6 zq5;TF%WG4z#;ffnp9c73p%0hLq-KIKpVd|Z&~>@F}^AwcWG-eHZvEEZ9(^F_Ij zFH~h43T)c+^f>#G{Q=B8<;3pzr@aw6NX{q3#d~_)M8~v+3wT;rDu~dZ%Ie^ZX}t`@ zIQ2@iRSGiM4mxOT0yI`K`1*uAOM&YxK+qP}rvLTWBMdn?g}WIWjFweLQ3y*bqBQdP zDmch6^?>n1sKD)dwAJjLtU_u?JxuEsh-${XfwIZ!jlcS;A+nj$WX5s0b{22aTpL&y zm_D9WjfRb&xSNxkjvGyjN*s{$2tdCJHBTxY&z>gGtiZNhNUqhYmB~p*iPgFA*EC?Z(0R))(n1?6f=1E1B;$ z$oE#P(MCq%g7?31Z@Tf{4UJUVi9^+|uqwX6>E@{6Y&+B&$7fp#5;kY3QSVhKdmp6k zzCKKp{`ahq!;6?mxs|oOs}?6+l*%sMQ8f8Msz*wsa==nLmc8ng%>!4^d#eOil^i%z z92Be?>#+CdY^6g5t*^C;V{9-eBj0kMp(Q5p?XsZFwp7GDueQL`%rq2n`Q$%S zO^A&h^wPa~!fIVv)dfDpAL8G!uDH;@a0j&Vke#2JGd~NN##Y)<$X{ zW9Vt3G8(a?08r%6PeSyKl%_n8o8WO3Sy$k@oQ-=WZqU66{X}Q8dHWLLtMe0GEH<>m zeIZMs!}c_vqy(`QU@B~fl?TF|)V>9Tb2)%%J}S!#u(0 zKD~DSzSJk!DL(wI2hwQ5X=(?AR)XMU_EtymhOfhV}#ft>1OdAZvGVT3;HI$6B*-0EzHySr$6< zXT#Dsx;_A&s_*Ox*|)!?sKd%AFl<8j9P_GWp%=LJW(0q-is^L`YC8UzTy@! zF_d(4K*g~6_L=JSZ!F2p>v}k*EHkw@0=tN4pwt>WXMGg>b|(7E7O_)jG@Q1RuRj5& zcy|1Nl;o}Of@ACaUcLN9d5j#2WLpAL$Q<#xo{np;OBF=QRsKr4EM+&R(?fF1`cuQp zVI+wsdsXH0`ZaHQu*7z=d_|axngSvW3i22CzlKK^D_H;{v`r%o+s$y7d^y|>3D^f^ zuvPcwkkdlZ#pdan{*yqRMXDYazVNfh?z|uF;;PIF3Yc(mcO30FD`Y>e%OZhW+ovHN z*Lnyj>4sU;vZj*obZ=@4P2@)sN2CLhLtZ_;c6AG2fO7vcr4JN(w}lssd-4`@K4m^@ z75`@iQ<>b*;=0oEAlLn)uy{QD%LGO@|64pXKR^)u{TU_{^8j@#VBl3aec83L&!N`j*LRwn8y56Y#`LiCo@2{b?00z&>04KQBBaHrWsEV5xr(@i;;2SSe&FDUL18giB+?=q7WehO!c@Bpt9?ABfBSWaY0~~=Xnzr8{C*p>X z)4GMnkhTTk_nN`q_T7F`O8poIAM9t({oq=+<~g2gI#I~6c~oTc@|Zc$Qf0Doe$sS8 zv!_2a8wyQA$lAhXkos-bEij&+Q>}b^GUPQ@%9lzoWSDtK^bmfoy}k5R2IfUY0lx?; zqH5EzQ~iT;=H8A#j7;2~VsSyVpOZ=tdqE3)-?w{btKQdiEfw?%M2J!JqJ%|*(EM>Y z(JL{&>$i6C9H-A^Of|hI>WxL~| z*=6#nWK0!99&0&5?$|p*GH6D95I7ZKnCG$qf0;SU1JRim#a#XrRcj&u;AW0x`+B%i z6{PC__cjgqlb_+Q7-c3D*p-+{<59pWaGTu}7&imGTGq@LILIq9kbd^}JRfFi3v@`3 zG`si%PFX3G?o>spCES=6m#(o1TVb(1Rkvf?=t0)bKl_!zbi(hTz z=4)fEhiR!J`(~`^r-~tNvwyPgn0+o<-D^!TXB<(-wASx(2!2L=Y8Cc_n%!Q`d*O|m z#5={&Z1OWgKAF$rVXh%&rJ$PwxHRnU1*J%Z|HT?;xcXDtNB|EzP{TphFjuaiui_=1 z5zc2R;B~AN-iScoKb2r=q7<?_1GOOf@R324~gM=v+^o_GL`o?@NW4 zcGFyqB2z|^8}yEhWFqT1p;w^6OnUpX~hXaHL$8S zV&h_=(}iw;REHq?hRziHk(M&fDQJ5PpOx}A7*!;!K)DGxeu8sE#aQqBJRl&Sc|rR6 z=YgG_bgjVDki~Juby#-rB-#_1JcN4_>Z{;OJ^lR5ufH%&{a?{T1-MsHX&qSlWQWTO zc4CN26pNk!C0hmA*4F8+h-~a6P-a4sjHGN`)O|^m~CQ*z(L~H z&RVo=^3XH|?eX@g5pO`XwX8w2D`5Fu<<_VS-WY=YBJI&@iAP+&+2Wz8p-zq?0zoh@ zP~03-427SGgiPM1XJ$hsRASxWehCMoqr|sTaO?qG4y_69SOx-}W1{(SE5p3}*g$4w z3Tuyr({8GR%j%#9518zJ1w@cT#fusgg&rO~$TGn^P$K#(KU(YSw8at@2~t7(kCl5^ zC2Bb>YB0pFCkK%9pn4qpo_RfW%FrY167C2DM%$z6o)oZsHt$rYQIkwL&*J94}<5k5K!N!%940XRPQwNBY@zh5q>K<0!KiP7@7r&So24PWr35h z{t@8QbW`yUCBb{|rv?jK#dNn2Le%i63Exf_w)Bvd-hH#I}o z9CzMkDi2S}eoAKWNdY0TbcPOBx8?R?(9f4VEH(4sR1~lcu1ZtuPE(J)kd~D#gDnPH zB!Yj%)XWCyAR|hVaT=TJtbTv_ctO;PEUzh!@>lgB6K|v7vv(!;d074kTAv~~vYq9c z{QRdvnH92;U7sSHy(Ao5eQP;T;}JU%u!~sP$>!?|{qwVDmHo_RBr^$0A6ElT-htbp z68UVndSNAUdRwLESAj@z4-R%G9(DTN~QniB1fYQKMZS~fLr*Ms} z%X0T}j8yY^nmoK{;szlj$%wFamZIZ@JIhbEZmI)3O)mEi*K3*=r^#Q>`K_3JU;{hN zz*A>K6!&SZ4W8qu;fVbTf2fT z1LWWFAC1^@6g1*H9y?dppfGEZZv6L-(BfqkxKeGLSeg~~wf~}^?0wB=3IM`q8z_bU zNmu!q6aOT(`rARPH$%nKvXSLxaWQ`-My!O6Q{ugo&O-qTY)ggSIDI7a{b++aj(0?|FlQit*7!s)kG+%*LhS`)U z2;714n5R|xiQ+0+C#hU4qH5z+{x%z2IZNUzG9yh#$XSb6t^UwJllrWK{C{l_a7Y|A zaV#5|`FHC4=#`2!iI@Y}VmJL>>Bfv9vaJvNNL9$2v_IV+zKoH=*_Wr_Qw)@8Isw9olpp89L-uip+#IaSlj?V+JBcZ*)WSb{B7aSEbq04w=1OT7ajfDG zCQI7}+4>Mg2+!K=R3C#bu|81(lQ(^>YNHLfB=Ov3889QN z!$$gxa5)@XuGvv^${%s9f?{_W-=u(BqmESU3W&WDDtW=V*|V`}D`~_C4GBXlFai24 zMiTjPmzybZ7=d!kK8hWGB&fuLHx9n;U$1_rXn4MDai#eq$;6egSD&kR&m2FkdX@Z! z1uH0dewNS7O=>I+AEbxGR| zm+$O~qu{^qHsmP8@Wl3tpdCsMCxfY~^ZIFXzuua&q^ow#{K?xj7CH)7YLeVa8|Ls3 z8}4z+ZC{|7cyY|SyySh+%;M|?rh&|AWE(j%V=_YQ9yp6D2q%vIVGFtPX@dx2* z2`bEAAOU@^gxkeY1G6lnOsjoWKB#RkYdp0{8k|%5((r>jM*BettFA555IrUmo>QRbMMrY#7K|1&Fy%ppD%*8HcvFoz<>2-&bt8XCDJ?~PJgAA)Oi z`lc6y^};XXU7?ZGf6__Jia#r?o_~;iF|^%wkQTm!nTP4;1~a)8qEdU^w5d!YbIW%$ zm*sn_*Bg_3+^W4*Ip4OD0}jfXa+n*nv6ff7LKiW;@l}COI>;VHdM`7#GJgxNL5%SAg`V#dTdE@G->k| zQA7E}F4O^tD(#O+gby8g_{I^yd@A5;rM8TjGspurdQCIuJ1E<<{L-E^L=Gyrxj=8% z*ARI+vz|bBVQ_$<&@zIPJ-vF$vaVKt?48$NuPCj>d4;BB*tUXs)y=q$2=RF3;6)mG z_Xf8xt4XW*Ees;v9?fUVrSs zP3zswt9XXhevLHtN*P|7!j$>a7n-qLV(gsdJxt9C-)}oAGnSQk+x8XH92g*_4VDH; z3nlq=cWTH~!MR5ZaKvXn=igqVaybOfpp}o%`K5x> zuh2%leAZU2Utkc4)nuwuNoG4t8kyFQ#3<&lz*(n>Zs=Mu#0rWX8340((W z)F?~I5fbe^T@rVFRH|aTgmNTgC5G-sm%tI#%Mq{%Nqn@ZdXA15n5q7$?wsgQZ~XqK z!CJIWo?O3tqr(tSMZDW!{GG9#dfn88@aPU_#GL(SaN{h-bmANB8^VqAGr>Tka({x@ zBelOO^u6jHZaeP(Zj<>gjJHz~CoSHEEpHbw&cpXH%lI81i@Q*&oVWQA@;^+0+^648 z!oIdl{)f(1fd6`lYnix;CfwcIkhKCxY^2nmMsQAcs`Wo*q;^|}YZLCcJE<0-6FY}Y z8bw!yR`)(-ocAVGI>)2J7Gz;E#?Kq4b?A|NHeGcZ|Y&aM^Mw&oEvoGZ8VGx(`aU=>zk zB!A=LVjN#dJMi96iEcnjZ0xLuo*_-jXM{H_Z% zk79>Slps;Iz=-2RMWhI7?cO7b1P~`yTu1~*Z=Tm=L$E;TEuRN4M@vorsts;^Dr-Vv z%*WZ}VlR3Lo6FF34(9wUy?$@^Fox=U zvAm@+r7d&5nwvY8b10pr2!?1Q`KgA4cZU{9_%7G~tJ+Xx1r?7-7G(;@3S4wM6rx~6 zXA(w={Y+rt$86*d^PL^3mHtK6(oj3%@~1wW|ANQ*=fgXlg?&ugw6S`$JYpjDqv<~Y zbjmlRnb!{};?SW>vnT-QNZ5gTueiLP1TtneTh8p>vDrwMZLu&)B&#h@0NXoPOge_4 zxd5Wu3KKUurY?dd#31yZi!Sumr|pY~$V;$)=jIvPxdzdme0x`c_r>BOmEV#@eQlnL zt2g8(*!@}JU_?d!wELv8n4Aib6Y@FT@7!)U`$QJHkiulbv-|As675VZzD{23IPlq- ze*ZTSJ-oKn=(Por6^7)s4%HtPpb_T*XY#4#rVvDCZ!gue1u{iSVIbb?ohH*BVhG8Z zwCkMN@_u0;kBqD%Pz{C-SPI*VLw*KsH9C!{Z%R}LA5P^^9e7sEmc7bsIVk0^X(gPU zMhUj+EiWD{y?{>{-MWLLuv{^%OR-G%I;T8JhN&dg{E!hMILl#ptHEBoIi~)uOLO7m zssSCqG(qhILnb|Ofk^LeuuyMs zI>ZfhVfCBKO#T?NvMv;dn7v%1wTW>H|gP4<8 zL$%e7WOLErYjKpJgy~L@e;G+KJ*xv5z-apgtEs|lYy#nS*^~b(h6FJuG8>t#wPS>E|$wFZ9>w@k3&ey{AMoh9!gVGJn zO{o*|CN>ZX_?)8tILw9(iF?@Hnhhg26>XnKMLwVxew(+V4*D}@Y|hc@z1oCV95y=v z7b1x5+mx0@pA%;Fs2IL01+E&cg4ido`;r}Mat3^O^r=6~=Seig4}m_YOGU?oxxAUR z3r*X$2g4ZCr2Q~p-%D0$;j_7ED-H5}?7?`S8g1kYAFHi%jfA3+GXMd`T8NFpe zaCiBEICij=dqdk(H?zQ#9~vug5VDc6ZG_ysnI10QMerB+x3~x{rW}BEWNyZ&g_|22 zev}yJC%l7SKx(|7XKy|&z|OF~0El_WR|W`8yH(^&@*L{!UIR)$ZqpAqdzN-urgh;H z-U-m?Be!{jt+op%Vngkvuom zN*&@bv?GmFqP~79)dO`MxgyGgK)Pzf`l`n|B>Y6k->paw!*bt;vi-yG{8yj_$bQ>~ zmf>EM*2EXKO8L=4?rPAz>eRNdcG|qE-}g%1B9)DY42e&by`2s7m4id0ijsH>FT%zs zM)_{`gIXHpq!pb{WB!I`K(kf5lj} zzshg7AX7YcXoCO}b?l6t(*K5bltW|*O)}XxFiHe%i9rz|0j-d#bX5;)16sVE-g#`w zQym%^Z^Z_V!??)RPez$8e3FZLtK$;~$>x5~KIQa(IuJFLb(!PNJHoQwPqY{6AstQW z8t45YtQSXA+n@`()Ae|??c3m|>;17}%`FcTfBBF-7gkcwXBsaqaNw~Q^4YV7}r$TgK$t6a2_Zm!amASfH%4C z;yI0G7;3iI9bxLb@fYJl*-2waw?T2t)@a%~F_iAAzUnzyG9U&SInY6jqW=gAp<2e( zR!rhkXB&BRg|rUjiv59Iw`6{B4pgFZ*&+y&GIUUz9h~W2PaT~}6v=2LnGn=CO*%oj#=Oei*S1r|@Nj~~OdCo{B1VBT-UYI{r5x)HNzOo>UQNf)>s1yx$wPmS z#z)UGypO3q5nOi05-Og@(o6Qv5h}ITmZwvss{?<+cGz~pDT(3K%uq+SjurV)3uOeW z*RxxIcN9O+yD9{?V4ZVCqH#S@V`p9R%nVspZlW=vJ&hr?{VdW6D%$wJI57#vW)-di zZX*{IYBF%*p{tYQkz6?A-E&+^GO?H8MLh65MM&fEd7QN1F8frlMOSK4GdTl)z!7OS zDJkcl+@tkZt}2w@RK1AYMAngLk@++FpZ z`eqVnMy#QKqmn_H0#63cjU|h%|MpPJT_>~6B@`GMYq;APyUy3;*hg*%AzvI$+UvfR z6X7DNp+x&1EFl^H1TG0+4qnoDO>CNp4cX+!S4tI;nw)`A-uD$&5$7dK|L`AotvOlk zuM3gd7*Cz_e&n2-JjI9ag^b&lqy&vdOgWI~YmJn!@(?`Xj;t47KQ zxK_It38cVdK{p9c4ynhur|7!|an3mPg%`hdBW`y_3G^vsomj9>f?>o01<1>^3sZQ~ zt}>2uzS#p=lkHgT#PzF1s$28K6?y!EIz<(ROW0(!`nf6!6zFdTWQ>^?g8}(D=1Ic{ z4QRAaxHay7%#G?9nJSlwBj`$KTJ=d@X|T1D6@ay3D4;^WLaBAcZe9y}C1F?lRk>D{ufL6i+M%arxW7FjRJDWX zM?Sv~+-kZ{hzIF(18une@cb!71u7m}2XZ`p6zz}vxk|^dbR0(87K$;&fJ2FgGv$Cm zvn$rNm0snD1o`lw#GrSIuO>-H9V)Nkk>J^Rktv?0&gp+7qCx6&Hwq;g6tfvXPQVIB zH6IPJcF+=qnso?b)Tf4of;41X=Z6_SHoN^VhtV!OdbJ!)tieogP2EDJm~y8pOLyEt zNH)6ZC9OW2*PIxqm&m?B_Y5lpsn_7I%#!!Oacrk4@_;YCC+Sst;xN-PVU8k4c62(r z;JM<)v6>-$$(6QI_5%s9v!TkSGU!>jb`@`@V2uqdhupRe>SEl^ZY&hnz9+ePD@Fu! z?c?|IP!r^{eB;FkhQp-XFq`^T1<98L3*FwSC~1s}n`7a$52x1EESDt2p9@#jeCy9= zEsJifU_^NGDg%{O$|c1{AR?l%P_MZ@@`6h9N(M!}4ehtRTB*#t`E_8Cwlhp@V^COQ zKkTgJ-_-A%?Uefv!}C1J@zlZCC;jeY3Nf)=Wv*C%9*CK~xiaSc;r{juLQ&f|9asJB zz-3vLT0yQ%`KSRvzBL`Y()x`H{{Q&XO{7S8O6h+nb-L#K)m9<$e3oU~vJTkRyTUxZ z6@}8Rzw8sgpw#f`FEA$OTvELJ{MY<7$EvlFd*VXF(O0X@Y7<)>ssF^|OAIY9o;Mm4 zjHDgHs{o{zE-~UWqT-K}S+-WtQVrZ0_1N1B*2T~TRlQ#q<{oCuf_>lqj=fwKPLYCh zbUqQRYv_fbZme9Q%NW)<=F(`((mj#NXpm#QJ|nWEU}TGn(QVk5-gLEpB43z;^&cgS z8w<)zXsRZNilVrPAbq#5k+MSka%R#@} z5;z1nEM3YBt`p17>?G^Crq3O%rm(vd+?ctwGXM8~+-}u~$hJWG8Z>kbc3hpPp1@Yb zmy$1%c9SYca|;t&vt%kk8g_W9M*lzCORSS)TW`fC%sU!q=z3Aj}t{SN4U#^zil6jR%4!O&H2D(*AiGa z&+DWcQCw9iJ;Lgc2PUsc)Enj`&(%1^vrk1QdU6-VoNNrMR7f*;Y94Tn zI(A=J&2h94D(!Zu@w71luDhA<3#yA}4tobFTcmAEbRNtT}=wdFI`S?L`2<=sH`xUy=(@Q((MVa{rC77qG87KIWt^X3i?am5+$i(GI} zD(8X}q8Vgh%Rpn+oE7pYyfp*|C4n-u7r!xAZ2_*J1LrMPc4k}sT{j8oBlOWqSsC0e2bSCGn^E0-CGUWbBh-! zAEvyK?O84vbf&dC4tYE5QwN6#wOa`+>|kG;A49{=xfc7K8A1``DN{xxu`7J`zqRI- z9-Ih>o~LXo=&`Q#oy`}8MZx#`)2vRN~Mcz z?=>u({Ca-W1Me-n=A!Lf7*e4X^0Nt+giV?!6idy7$8|NC0;b)+E6xTAx^bta`uO$z zXmJEBZLdpe6cP!SC|{ZQ<3yGXE}@5yLKNTIeXwckcaV|H#`V|xyb=D<>X=ddU(tP> zs--j?@?%;V%SFJ@Bf_mIlS+2?E#IkPVA?VT1r3?ZQ?V1^qFx9%)7{uu<{Yd30EI1t zS{d*IPS=}6!w80Kd^ga#*pV14ER3KZ$-g<9>uNqQ;at85dp2KHnL+{io}7am!iCl< z#xAURJ5l}cT?H>W+ffIYa(=uf+j@W=Q5utAlf_ImIpl5ABsk`cucx$mKg#u|ZyJvb zmbg>tdt2p{4@#Rh7E+q964 zF0!A>Ux4C-7qz27x6hVjti^h?DS$3~LRA0O6-A(Ww}aIx^iqyz)qtvN$YfRqE@^JW z8?J>4{)@4jwC6!MWk(71*%po9M@u{f0!vnHn&l=z&~X)uA_CZHh4=J4$gFR6`Sxaq zvk`>nI6*_RZM&X-&xPcev8GphASg6&j~MAs zq#3-#lcnhi^GS0#CAgT+V1yPM=7aYo2Vr_hqcXN$A{uvvNy`E7-QR0LX-*TQT zx8jpLG&2CD7DACn&X>JF?gh zY7G7&%8|sCd32R9jBiU>Z;O*h90==ocC( zvCca8kAZs95lKUld*oUDGSU$@KL-$ZpD*aSqq5lvXcsOk$NRFMH9A$fFa7p@IaBB5 ztCtUs`YXSWxr9+(Gy=8*t`Fq_-G7ZJXFgcl7@e{owW-fnr@9`EHORRv|5Zk#FKNd` z$vS`=V{w=YdVVvE0ZMEH<=VNU30bu*gtxg6YvK_C)sw7~b(wzvw%Q4)2&X;?%v3iO zKH9h`=Q$6TRa}_9{GWXSNSdv~l)S5yVOd+RdZfjRWunHVjYer;@KjZQW9n!IL0@Nh z=DkOYqVJW*W%iyoUHP!YAb$^>cYK4{uh2acc>1d(p(u%x>IgjLX~0Xbafq3{OrT92 z%;1!#`b|WzVp>;=#MC=wDk}~CxOI~@xd;(1CCdsL{$f`>?lS zJtD8bmXUi)(2K1FYLne=z@KPZ1B;Zh*U!4ilsJ|_mswO49pJI_irNWbxdeV6$0}XVwy}(w9XXe=kILrX zc)E)6zZ$dbn?Y5*ijjWgr@jms2BX@64FAQ#oLY7adeL5Jjn7goFaayqhao_N;t>&V1iHf$AGN4Iy_kO>G|aT-+7w$Z?f zm|@K?YHdd4ti5V&jo8t3d4oG6D>6`}J@`NVuaZp8WsT8Wm>tNepN-?HbK0?fhhpX_ z^KYRt4Qs!GZ`EhRyggum&`#*#w1Eiho`laM444t$RKE|jH^ z!l>E!dh(RJ@PIKD+Ah}^7kAn_d^2kJ7&{D6Q_`c@0OqI+RGyeWAwI{Nm{6Xw{-z6X zmus(ZWqq24uH5PsMvXKN#`xML8^Fc;5K8y=FRM8dP-Fg2#^My&qabEi@GIfL2aRgf; zH9lNP169yA3g=ugB)1gd6fYOg&oc)#Y;&xMESNe4ydnIy2TE9V`&De>y(y)3BL->G z@;}oLA!?!PPG9uBrD3=VYsjUo?sxnr2Y{IHZPs`fRjnVuCt(`=$lV0f3?Y-AH%n+r zhgmvc?1fi`M0)Kcn?aYm{ke+IrtuK2?`vc79E~5_3h#|N z6j3tdv&K~3GCUoX1|57ZqIcv72L*Mn?jyCV-WYarIC7rF5+H91Naa4o?2|T=o;Z}8 z8!J9NH7G%@$M{bAK|uK?FSr_{r5aIvFo0+s9Fg7Mp)m|Hfx3EavjSY-OAuepz5?L1s-0}|qhVPDenAkL+Vn)*f{6rc8~6IQmj z(A@G@R2V_?N=bVdIkFrB81wFJzlHFc8-&(Y!gOX6thDDeY_gi@myCsK8jouS^UiQ3 znxk=nmoqdesUurIE&q{niK!N;A-*{vWEuK&YPrrqN^v5?pm4))VS(`S07_&ejstb? zt_Lo=`p2Jx#lO%0_)Jy@I@m{j32EYBuek!liGjpaiyG9K0YuwS(QJIaYDo|}Fp?fn z@?_m}gOb^xCq!)AukQSLbOWf#Z&t)djT<{US8G$*f32#$wN1T$G@}u%pbm0(v`uh{ zKf~3VVdk3LVT7c*rrQiyMfr;;qgIXxNZ_c1LMVj~eJ@JM7@P)Lz%o+o)Hul;M!?9R z>5lXw$-J06Z>VC~^YI`zztjY;F|uMb3Q)&b*2M59a68m+52JQDu^DC^86vS8*GSe! z+z0e!9`h+c)*rTw<0(C_ zC(rR*bmz_&CbtY0iM?RMEjwcFnOSMKt=-c}< z2y9M%6!j8?OIxqsp4c<0o)vdvgc$vYC~EKB<6pXzF|jwf_bH$;uD3s!(q!RW$J#2ZBXgqi{L~@VTq+@mKwNL$_ExM)P z-`9wrIr(9oibDR9gSjBSzWZVHpS}3kl57QQ1_QMgO85gt`0)3tZhNju%a03D1`jwN{6u# zJ7Qw;XKU`U)Y}7~opYkxXY(4;mUlwhu2t|7z4{<4kizvCelJ*9l_`#=wpW8>C_}-0 z3Q!$=#z*C{R-%?Gv!45H=0n}r(=pgi9GJU&&87jm#1|KiCuccXrZ^sSRUM zM|>^rdh5Yg+(_(V_52@eGxxx97|xfD<=@x)@G6C%b?!IZ+a=c~^4*zN_cGvG1#z-l827nos zopRQ4UZrB-<=~L*(iNq?(A<%(iM+%D-TC+%5FhxnCK3)6Zza_N)1lE$MfKzsZP>SU zoAEE#reP~*(l?xDPZVlPD~Qm7B4(Bf^QpoQ5ON63BgtJ~Mr%bQCYiyfEUyjR;)mDx z^4}Ig;HUnpy!v}c+HFRG-&zn3yp(_>y&~piD0rKtCR$9K%A%y9nsJ?}PE^_#FQ(t? zM(1<`X$gO5ABk=P7IiQnS_+NI68Z|$PL4H7IZ2hd1Kcca0CQmx`VqXFJb}9t1$~B_ zW^P3b@4t6LW06`9t<*BQleG}^d?`huGSWidxPxhl@7cEexP~;zBFgsutcIt_;aJA% zP8ID}FaD*RFK^)At8yhSXnNcnRo*^EzfUGGQc$S?ML@d0OOy1^1MG;SUfBwtiB^0o zu$~;?T*9%M_eVxAJZ*tVWC7Sq!!6h<#i44f^ee{ve7Mrs#_( zQ?QTJaqr+Ix~3QT#1muGsFtoGi(qHYk7<0lBxG zc&+knrO~jY(T0UyF2;tt#U9P%k3An@T_8?#9-0r&#w`UUuM#iwTsv^)eB}nZE0do{ zIoJ&84*kDxse_rlo(|g^eJUXfcPsCC84n}z{h( zlVAW%OTF?-U>S|M=z_bs!4NN>%vYj?oy2OTru>>`9N5fa_S9-BALVHvC;c(}IPLv% z9qsjt72z+gs)A`OcB{!Iw-Ys`K6 z<<5mkze;ROY)E>nME)e%33Tu<-Apn^BGaqKW1U%o^=?j4=nDEzXL6_raHSLjA)c)Z zp+&e%KL zcEAqAG}-|Zd8bjej=^T@tnq;3BM1gGd}=)wb~6O5jr@q0+ofsJkqe6iMg?Ltw^^S! zNu*9dnhMF^?nflnAmyqoJfr0$q(4==Q1RV~SzsT|&{k;0T;9e<>nrHKlzV2auT#9r zzOj;(_NNFbiEV~im0iUd%eR!?W-nVhM>1>I25zd9Wi%j&!`;2iQlnJ!F4TPBZ{|Y{ z%e25R3N9l0S_4}qp}Bb<+m6rn9rw#Wi^&&xKGMMv(;yI57h8ymYRUJVB`w|O)yjjF z2-w4-g=ZuCm4?%cKTSX@&Nr||XcErHfg_u;bvy&)DI`HM+%lKKJXj)YOC}<;DnClJ ztei9uh@Qn_kU*E8)>Phs@x@Hg7KEd#NF*AK1Y5L?jQ0<5*KMmQlWQ_tdM${4hG^H* zpv|Ee2Of&v`^3rtXAl#(mcb0|p0in#t?q$JwB-9CgeD}J78w?R@^Wc{gW5F}JpZW{ zPJuf2SrRVc``~l&dKOS`hqgNz4zmZa^Wi(RO;I9+Zw*zrK%~2T#ma_4GGZoeAK*mo zS>)udvWN2H?^~Z)uxNvbCm85W*yO3eX=}pYh*-dciW=#9dUvA2R!uLg=OX!Z2zs)> z2Hj(ITPIwnWSruqO*m8h;7&&^3x6|7>O$;NgT4R6xa%UK67Dx?ar56*nwwf6+x>@L z+JRL!0bGVXq@%c3V@eg))d!ELW@KrEp&0PN3kmx=bwU!OpfFM|sg9pb>$}EwjCE_A z8E1}7TPoElf6whx;+6SbJ7zzj(zS42V4Uw(uBC7Zs#Ltzgxv&_KzL!Y`EsA& zsbWr5ZzBpfUVL<)1UC&d_t=Wb&p*JqWZPTou6zT8?W7mbl9Fpc;`1~>mCR6!!dYls zosYG5tS9iS4cmTyo1=oqEO>L%FwWbb^OJlQOq3}1vdpiR2?i?%^zZwC3@+sp?1`VQ|wy4op#cR}lZ!Z`^p$eVT~mtG19E4Ol-~ zE|~(-Rr?wvX?z07Y)#-2#Htj*0jX%W>hx3gJ_ zgKK5KTfISP7xUM{(!Ex|`-1Ygw$1d|?^@IV?B|^ExOCS$cW=6~)@d2H!DL^y`=+5Q z%0nh@a&Qkt8>FGJ4B#-AdCRz^nq24Tc8xk`Hg<}caNk8^YlBsH&6+Z%VQ`x3@=A|l9>taZ48TM zI>D1y8!&TiKRY0xiB8}?(5dfa(9ZPQTHKv*w0EmBVb*Q({6s!15a&kp9DO!Q1d4ha z#beEH{w^qirMkses2dLWFC{x9tgOI1;-?t+to=GF_N{NhcOC4%Ve?dy<6P|=pmC19 zcm&Dl_MO0vqy+I3ac;o8Eh!L)Bt;#tk?Q$AodsV=MeTDf6l!pc{{#rh^j;|_nD|Jy zH@;LAwSSB=;h&PgOG?g9(I%*^@a9*Vu_`8L`{CbrV~FTSaXF*vI*qdTr}QrQkdcvu zBPoFAp`XUFX(W_?Bh}e@3(b7RLmZIcw%|g$kRcD{O{w3Bt$*Sdw{`rI9Zm(B9EI*;Qm}eo#+OH2!-so zm&O}9kU@}nx7P24tHR;>nu52m;Z6zU{dN_ahcgPA?4v{q_*>43?nu!u|LGKk5u+@` z0C0RUSO=W_V)+ru;m%wT&HH=<9m^uYTDjV;Q>B&mJWN6Rrz?aAj->lT1XSX5gKwOv zfk?_fq|;^KXA#2$qu6S7pBUS0X9*h;_m-Is6lpm5!Pft8{tF;&6;zRlAm%OONzIMR z238W1qMigA)Kw6jx+va+&@o3&cwN~)zMwTV{IQmp?k2*1%~;mplRHvQ^c`gQd~B@L{1(v}!E zxM!mWgP4O%ue<7ZRTsm8*tphAUT3wciogjEl-i=`ab4C3D+)ZT<{lv6yw`z7q#Dex zo7JAVw27yi$~NfGtE=2CAUcKUKRlxQld{3E$l;^nId<-k{8ht^_f-5XZx#(-?>DIS ziF$6MpV~m(bX;7Zq~JlmG-V6ewo{dJBRhLKGnsKB#QMnQyUdXg0;Oyf4soytXGD=# zmNQOzE_6|IqOI<}amufHNm5b@-)^wfp9n;VP5*ceF@G;o#txFqbZlW*_fenfUuTgW z*mqW|g87bl5|2~mT(d=bafX3$Is)zghLU6Sq}3>pA-#(Yv-m2eG3>!nfB7`7rGnjO zuq5~-g%Z(YUHWDYvz?8#C$dftJf0JWj>=z{SPGlY{d~W#gQBMpK?^qm0^#WdjFf%D z!ynY4>S6_z2~zWnk-kA)Oz?A#OdpdJ zdm+E7Xd6@}D%PYFE?oO zTcqD&@1V8P4<4HpW-7VOMOo zJYC`0cAkf)`j?c6vKLFsEjQ?#99sc{q}9%GhGq3>NSN?k*vZj3*n@Epvud3*Jg6FM z;0XxgJ%3n;gSf=DyJ_yetdAULR+~%BQ!!lS`>zBR<1{%prKjCO=^NCX8rez%md*>4 z9h(a0mRd9?nP=aJpbF4*tb*!=b@Pns@BnP%qC`eLP~p0b2}tx!{D05K%zKvg7aPb1 z6C{4!Zfkiha=9hImxqFs#?8q8r&6+{%LCU)51cC!VRBr$>G36qbZrgWAbA)?ylF2? zC(XP?G*!UC&{4?uLJ??sD1q&?fCMtkpZxMQK@hgY+4lg1n=f_(Uu<{InmT=E<8btbI?rQp)nY=B!Uu3AH` z`Un|0kc%#t>!yRjK*_^E)C5I2wA$kT3T!o4o!Pmx0SE>{*WMZ}Ad8FEc&jA>MosER z!`%o{`qR_xRsUtZm3*tXae2uPxvJ8ytx|!}U5?BfpmNa}l!$G#?ule1>XaFe5(R4ynnwf*@PXGvRR4b?gc^0^Iz#w@Cl6m|S-Mh##yy~GRtn_P$P;={L>AnL zT&*#w>UtaB%GjZC2WyLt-h+(Cxot9ANxW?u_kg zx9;cVs#{-3*b#dB+%_zSPZ1T|aZN=lmNuK&7o=&Eyx?UWacMdSdL-z{_wO7yd_u9d zgEau(tbQ1}pR^O;O@o=X*IR(GlEhw-#p{)C?4J|{Ul~yPx{Ke*hJx*BXdI42u*q48AxOKx zO{44kBpZoajIbV|f`VTO=@U0BFwE+%ed2aAf#(t-muXheqiOymmgp9IH)z z8)W($GeGku%NyPG^J6TsfLO56F-cw~hR-=8{==|Tg-V>5u>!x@B8XhRv8Oj5xeDSl zM!^Z?WO=sugZd*fL8p?kz0R;EX6~Oap+wuIV5a)s<>WrSvpr;|4qQ0i!e1bs*z1m= zpz_5Z3U}15GKqD$;SuL*%W~{Z;LqlX^>Ch&k%m z35|jsI6I7%RDw?941b?}wl&p`oqcD9{G?FNtAQMhaS8n}y+Z5+e*=PR&(oF+J~uoPf^3b)XAaKJv0oShrAaqUKBv7 z_dTumW|b1LF#38-Zp3Z;fGO0Wc5;T$joTfhZ`u1CsF=IUO;uubEsW0$xWt2(e z`9v=NufcQ2CF7>C)jM73QFpu?0atwmT4oI953jzkE$ih+F+a#7;K2u+o`oxNTgs+ zo(&exFxv_SSzsWsC_TQrfC4q+hXF%K`E$`hI2I=|A351y$ikQY2OtG9a!lxzGrYzH z*UcuB2(Ad)o|heBQ|e?JlwJt`ndb zzirPnKNCcBd1hUlu*D}ftQJ)BI-YD?r~kdx0bWVW4uXCB*O7QkdM$NCH1yedG6kfL zn#P5&Y(X(_Z0XDCF?AxYGHXq+pf*$#;g+PX?n4`&i&3! zEK()p3>$Dtda*InJb4=yUbeNm2IIjVAmE1qw48x zRa&lGcy4r8B7g1Yrj+AeAx;SZcyo39%A%a?P*8tAPjJqNH8-_EAZtl6m@d;rV_L8$ zyz={;ou)RtZ2;fm@3G|O@Oduj>mmX$NmMyLa4Dv8i+{94pI0hln71_G@SyVLoIb_n zMusbReQO_yI%WyKIho~zQIu4TRx#C&R@i-pi3a8-wcqyfw2s)1e|NgLTI3ylX@Wr6 z7<5h0FohxQi6S)0pd^jqSWqs2?-NVx$$@GgV%wdr1L zw9{2ng7I~PXrAwHTLu(=sKXTmYrW!cK|oef6*fyj!P}*h&uVLq%&l;j)d$s7nn@$6 zFrngZ+$sqevkw1$DD&#CZFqy)Ya-RimJ{M%OG`*!{Woncn0=%;Eh3cls%v>aYK34# z+A`v@#xMsHVa;%htN}itIpe6G6|&9vycIdWhnwuIOvlhcK3|*7vxbq|#mtRmvs7mr)c6gQMTK5)#JD z>=U^rn}87FjYti(`d#a*d3)tYeIfTCkbj~^mZezgj~DDHhPmq{3!%s2U#uvSrXoSL z%@>b>A&ljF0CkAz*xd*7C?Sc{otrrQlx6UM$$R~wm7yW*>y}*BZ0(`Qhr{DbrG(Z& zPBWz*?j{sxw^SLq7y2q6IVg@ra7DZ1|Dv+wlOe**x7XmThx*}TZ62xVrN?YlFjFu@Wh(@zuRJrT!=0gT(6U3L zh@UV?NsMVRrUnJZF2K!X!ll6PH$|HGEuix081St&`Yx{KM9KGa!)lebA|rjEim1Xj z8=7CY7r~@$G(jIIza4P3MDOQ_iY zVrbL2<#3{S zcO|;|Dx(|Ivr8d35oS-=iF6WG4`>1yq`CPf8WG>2pazYkyry-+*V!}!8^4q5HyEVr z;G6Nc5%d<<3I}>sD=Cdz>Oqvd8XC7pjS)%+at5Zw7Ce1$%b3T+1Z--CgdC8D!zfhs zPM0biq75nMMfbASS_W-{zh^w9Q}_I-aloQRYgBKrzZf*j&^fGiK6Zr(P@Z{wlP)ny zpZT0)vqi$WS&YHuYv|SD@+Cg8yj@z9#?e_17JvkQli5&3c?N7q2U?3*r;4+qP|PyT z_}Jh-QqA@J8ml;i-h8Q&qx$zEZoQ!DRgGbe6s*`rG*(H+Y-@!_F?EM`7b}x$F4(Fy zVgi+Vkv${&R~qEF3XC*^f!Ib3P?fx@G5gC=hA<5=x_2n}r>6xGKh%;-3IBOF@Y~42 zy}pgV8}g}wB5Ta8y(75sKF-4-->>_xSr}iXLZk1R+y4yVoxK{OC@r=(W(_dS5-sSi zqhMKs;}PYrOYUwyM|fg}32+wPrPTf&ciHJ?{H~n`90ytHc2Q5NBXaA{=kEDAS)aW@ zG~ZRI%w)M#G$M_sqFQl#_T%%QC&DzUCFxmzSTECU+w+<-V5#c!FaobK{nb(*@D8y! z)S1+KbeHBI_41Z3BDKdcY z-x1{OsR(H$V4mQ1V)f9Oz^1)|fxJfkUpbYD1tKfxiVeW{C_`*r*C5o}L%?EK7RxK| z!|=F&DIkqwHxZ6b?RoX#l|SRVxPoWppi`W#r~|k0iU+`_$6i;;S&@#k$&1*|Iu)Kq zS8i|2P;hpoTb}<8g}ZIwOzZ-;!IJTf`6QAupIVnIFyd{18&~{$PL$S%W$cKE`fa7( zg!CU;ZT?sQ(@jcG9{XB7Y=q?S&WiodR%)VwxTqnDWvAq*&SNLyfs`fiGUK9_ggQ7m zMXos6{x^n(&*^gGDrt&lQ5yBmyUG2w@Y>v{Vhf#&1*x9hj+6;ib}3n795qzbd3JLr|9o z=qR@RBE{rqew;G9{V9IVmLy<&TCy(2_|gHD`1!+(XZ?8tej0#*2QQSGRY|4LzZ$eE zQ~^AbXSL@xyU=Q)XHb~5&Xm67_~^>#XDT70u;rSodsI1xfH1s|z|NyxwGnn43iLQH zx%>;qO>yaxyaaMa;ckh#FB?$xGJE=DlEO>mp5#;b1LFXZ5OeW$Z{Ail6R}WtQ}(3_IY{&9A*%Qt zg8|taNWv1_H$(;uFRVo_QPAQg+hH8#&l;j(ANW{?o^n@%f7w6yuh*hLh$dVLa|qZoq33@XM$A|qCA z0YEA<3NUlVaC$J}H7b!DaZO(oNc)6Srqfb3kZYP{frf}7`aBD}3zi}Hi9dM?LryMQ zK>S?7?YDOBIQmxGyzpHNjOF&w>*u`>ei!itfQCwo^xqAjnC}A(V z4nQpHs7GJV8ljKlVwe^Ke4eTJ4UerYCI8B#hj_snE2J*0Hoi$yi&!k>zl9vf7ud?} z6z7&Tt+yM)JO}vYI${}5UCa7s4LN!>9Co!AtnDX(dynQS@f z4P`LcLYI5v`3M~;zRYp5L1J5*W-G$A=}e1cy=fKKVFjrsbDo5VtC;@OK&%6nUyJ7f zQSN{>0f;$fj}i3&V+LZb ziRmlM0E9LiOCDysHcgHf$TcKkw7&<69OXwCR_n^Op0)OtjGm`mVWzx+8Z;l%1aV!m zZ$M)yMW#Q}&Oa5`FCsD%spEdllwi5PDzu@69Q25=_%^MoR2L81D4920%5 z;0Of}%W$*EDMzAvst{$KniQ4j#M`SQohV0WL=@5HFC84TfwR)t5$sWZ)a^Fe*Z~Mh z+thdR?8&+q{aIb>yo^53kdAOev5H|_y*1Fj`& zM|F_9v59kBWCnk|@_r$JGQQ>MxFLT}8|3TINxtKqWyh1!X?nG?l|U&aD$ zCJ7)^jhi7c`WjE{qjSMMWF?tV*|kCCj;NYgxZvir=EZDKz&2aumEM44|MxlxLW`9s!tsa`LK0% zynf~NT_QD#InR0Iix822gxkQe;i}V zEb^LgPj*dV?t9$ko(A&YC>rYpZLbNhO$KH&BO9AXjFvc)^iOpq#}9%U&ikgX>rBOv z%lDxSn?udFSc(oV^LPOkD>6F#AXf%CjD=Grx0}!`PZR1~<4cf?5&1G3eAW6q^*Ab& zYcdJ_kd47BsQY3=B%h+d5Y2n1H1NZsElYWRl+-O*smJyZVmy$Dogoc&=83zFBZ=$q+k!l;)g{Ke zLj*t?3jC>wpA5`5lO#^v0P<#8Jv^Rx#6z*i#vZWRgs3hkwe$om?Y93dq)vr!M+9$^lW-#K!D3+^frvZAScgg#@qV; z=C9e9X4{ZVP7D_NRYJc@6U-m@Ri*xBD2o%=|Zr+ zkJNpiG;Nt@e*L?xpVXQtqD!zeCiG8i8BvSaOOQScCHn$?ebsWsO+z*~fuzduSy^1+gNzp;%3m^t_f#L? zjf23fMuaA5AFC;B2{C7x)OyX%U~<@qBT%_mGJU~+0R5{W{|dD~?gX*CWm=_BE)mc| z|1PGjG#&2?dFJ2UcvNzn4G*wIOQ@XGMR3`3rd(@FN`2}qJhg=2GeZzyk8c4BE9{MI z!-kQYFjsxA-Dvu6JY~gY1*K;cnK1=jS!m^E%4e-4QOxHUz_OS)R31+%<<5eu8*U08zKDl z_}S#t!N$SvUPS*Y%C-EFaO6AVHLn(Aei};Spw!JiiTn6bAO2_7hV#vO6*0;I)C!xx zA=&a|w9~E=VT-63(vAGFvOcYXO(0(+;zL@L&L&3^1DG*qkM(iuGGo*$zZyYRzV}~A zn4W@M1PrxG9_ba!HB6QJYQt$Q#Xi+Ddez6hwwB%dAl$0_c$lo1s#wk}Db10SC{4(& zES1>O`GA1r*sn{2F1E;(A<&;zK|Y|CN`~#0RaC=j1k)vnEUg(zF)EuluR$>w%o?F^g1>Vk0=CLk8xSarjF0Lc?>F)j;; zBq(T)=ZSRvi_q~id%K~YAQL4iaK8bhWV(D%{5lZvgS+Pw#9@T#pXAytplQK2Y^?OZ ze&qP;L!H8iQ!rbDR4hV8HZ2F7xRJv$6ffteJUJ9iB8YaW_D7L`Ip@Bnddem2_cK^Ge!0zij0jY5 zFMdyLhTCtD7Sye+#W$q?@M>ymDbWZY8rH?ycp02$gw7v*c5_R`m5{_SpY{84@;$p3 zxyd20qF*G73vbspxRw^F#yrd{#=yu5<^#NXoM?GZVg&tkVN1hDTWDZ4vD?dO?JIQy zlB(@TlVSYPJqai73;^VanT)if5%M}`^L3?{Jd)^6$|#gKYKVWlux|S|7eXuwm0*x9 z3_)yul}nm^7F6W#RG}#79SECk^?~3<&{|H)dVtvX8v5zv%J=(q`%Ya98cJ&UHdgsJ znwjX{N|>@<{JGm$-W%j!*0uIB6FgerE>PYgt4^!u;QQO`QXp+$P%so{4MsKEO1q;J zW-%VW4Vp@9-9Pz^wQ2#sLw&x8ZDx4&j&DOG*gBMW#V0F4+!y8lw~_QWY*N&96R-4e zx7I}6PV-&c){BZJgH=KU6za|Q>eN7)qQLV;3&DuSSN+^RKT){%B{jvBIC2qOQ@pfL zjxr~D)7_U5wCh%^FMEsr-;^pg+E`7?4^r?~@W z=K28j!DN?)VmoB{f1+sPq5yqI_>9`b6Ep)RmSc}v2&3m<$3Pp-OLlSFV?XH>kZyT7 zZgmXVji(!na+^#}V*C4LEqU=jDy|aCtNp-20za_A3(f?7v7r^-$Cq__4l{Rx9`RZs zh$gD&js=}8OHZ!VtF=$KIi`gL1^21=r3`BjVY5TVoGQK|t$2eFrYBq77FM58! z`vqR8$7a0Y8ktzA>P8H=Pb-PD%7pZz86TMk8EKu@x@`@9&i?RgWx%XNyL)?NIu~Iv z?+mnLpjEl=qQUEWs#Rrh!ziW`x1tLFf5v0LZg(&7uW1+a7X@gk*Od$b!?)Gqa)caX zti^kS`K~P4J)*umVBIZfl51UCa?zHiJ1~72*&q5U0l0Q4V?|Gj3y3hnDnB053rQia zjOSGI6m!0i+RkF#Gb8d)n*Z<@MMIZMpu8}AAX9uODdAU|@p;J0ngq)$?jh3GVYXrT zsu5IxdiWjBh8HtD$4GUmZZ2!dE}o3-e{wnG@U&~maw=lIlYfE7unTE8qSv6;FLX#; zEWpeQS*6HfT*bt#TFmUphA^7u2ws;7_|0b&6t67ED1Z2eaFHHQ6QQcir7ABO$!`|f zI;-Tv{tu{#s(@7LQ#&f7X)QeMrFA46$51z8de3})fRO~a1HkrKh^RPu8`)(&30^fy zp0-lOyO!wOQ%4>$Fv?Ltn}))z5icVfH#C7}T{3u1%*g!Ya_@E#g2&2$x!RD?`Y|<$ zCl?%$%Esy^tBm`H@{E~`$w^M}W4L=vK$)BLftI)e$M#cGJ7!j}`u&wV_)`Qq^&)w) zPdXdaD99Rc=Dou9=K=BK^J#N8gjEKQ4%XDv6yMxqH?mC;}h``k#OBJ>bKYaUyg(L_Y}Is7ajR zKL3RcRtv-3Y|vxo@{bRdWs(xTjVU%xQWr*NgF0krze0c>_dm{g!Wtlj?NX^nXM%dCgM?u2~KS{J+5g2l; zypZph%*dBr9Yy=JGaE2Hb2A?LX-L}vNI<0zY-W;riq0ZZJ9DKrn=jIu1Q%xoC#-N^ z+Na<2ZsQo_=621dbmeDl2~oA&z|blAX^?>SPwp$D(DjOVbO;o+X2Rf3#@@(#{m?gU zE&98pUh_Azja~bg{XWYOI6C#{0gW;GkD2D7)ive<1=(EceE)pJ#dCe??2~7*g`{(BcvXH_#758L zEL%QbPb%|1jImr%HD1%ldo4eBY#Fvbjo8!kT#CxzOdOnXMP4m)U`MbQVr9?S2}OWD zk-wc+0|I{h3s>x$>SC9trrrL9vbFhDgtBosG4yut54>X9#Ek5neQ{IPIHg=OQX95|ZK_ z@!4OEzs_yD!?pOXabLh(0`HU)%+dGz7;ol@vlA+$gL|=e5P~VR!@(18bA8fN4^959D}cwUAt9t?qVf(Hqq}4tGE{aS(P9U z(dAauzbo(P5jiQ5>mR?O;g|ce`~GFnA&>?q1{LJ(gTLgmbfi$_sudDWN#R!Stwg&G0wNC(|^^pL@8)f0afEteJzq+h zL>ZftgS`kEs9|Ew7IFV{R9k?rqz(ynL~#q+=nu2!g*|~Q3-^38rq3~S!8Gvzo$`Uf zCx|H6geSPoRAXcpE77y)4OiN}p$G-$$KlInG5Rx*ny1}|n!5BNm#*X?8bXT-Dz=_i z)VT7~Lu#ikcdu#vHr|PNFUz^pg;$f3aR~!R+QFI>>`A%y7RlOlA(a-eQ`?>X8FZjhl;FK%%UVZdbn&z%WMk_*EbL%s0?-}knppwenF`{y zxu#3lZa;ctyEf1=>8DNIHW7?{K+tv30A%_ic##EmQ1}0@n&_N|tGLUXTvB}|)_)+j z9sqkeWxOjZ7c=RBnFGTBMFDKakWVc7^_uHGKi;r-RnbUq6xOCO!Tz-J;8;_q+u zJuJVtg2t2f*t<+p1E9+%ohSbF#)5Bm4wS!m5&v5BXi(t4lTj{9{wK35QV$pHc*r3e zs&@wrJuWNE&>iHM4AwlXk>tvYX`}01AhR(+1h>WnTVfLa>+CX?CgU)0^M6!pPGYF5 zdp=-?J;;&IApuJTM*iP?Zs@}or$t0jrE?T4aCuM7oPm|%yy}AvO}q~NU2hd{KKyIb zGn}j>^F^D=xyz^AfDERoR{ z?uRgmkDnsvq5wVIk@)F4P;`$!lVBtm6ih4AHKaqMgN8seP82c#(b_n|4|@V2qI2Io z1l5fHD5W1h9{0B)(Pn{9|7oUvmG@bYNKw4b8ZLGH*ZEDN@q$e@U;jN3dfgBzhs!}0 z|583xUk+9qalSj;0@rXynU~E7x3EP2t>#wDw+P&e2b9Y{7rEpI8(ZNv3}$5;JOpX| z9s-8K;`YxNifiMG(7~u8v>YUaA#UWi?5vI{x-;*?^0JEI z1^dNn648rIx#bX7SXS%qyNpsMcgIwei#Kc%~i$mkNfwWv6Bi5|U3? zUFEk7@;^HEk)+fDApsNtrw7^Qf+3IlS7}?4xB;Jf*Y3oJ;8Cou{`-hFpN2R(j_-$daM@7%-p(lj!Oq=lYA#*Tm#8k)-~u9*djnwy8;-bo;^De3CNss$?j;p+?c;$-#KES{;ZI*VJ9yLZ3VL=4|~f z7i0$sa2qo?45bMf8?fKP3?S}H>Vw_JFgu3O`o(f@6hZoQsTsdU`2<@%dS zuXy}o@GFxA{EQsR@YA;qpBKF*1|gnstK+bDGEz46Uys%0%q^*2bb7irQ^Y`3?rTS( z%~iszI*TAUc|;*;^lnKd;5K48n5ZBS#jyLAWnp1b@V)vGQ1uo~?)nWZ^pDx;afa)m z=q)*#6LmLfuooU1IF)jOa_SvaA~^iNKCsnek~Q|ZDg3i9|I-1fSQgDKX$2t_TO?U3 zHVz?~H`QQ|?`P0bg)*B9%I=_Kvg4%q5VSLi47=1%viH=w7)(f*;5X599XjDmwSQbEq4610#DZ`51E_?eIm-2)S+%=G*nC59| z#-KXza!*?)3o&8&?d?~lG3`e8d$o^xSybmiX4DyG)(~=dIqV=)2GY;?mawVjjdbQX zI1SpUBfz3Q(#_NNppE8t5a7ulR_aBA&IoUU{dTp}7-|HbfM>b2I$dqKw=_(}<98kK z5XN}MU4IZCMqW+;*z6hYtTu{makY>f|6A{l=XXmtHlK0UCYWJ3%)P3Ew;S?QM@hG`av_#Q3^v4Zd7lv!OP7{N5wk-oW|I46PtrV8R1Q zvMbH5h=y#y-B6~ zp~(JuPGNO^cam9Ed;_iKD|jKEowvmzRQ8sn3{wMB>w@YxZBsZt>#2u-M-7t z8B5IWKnbalos~s<2@dUSNW3EppnF0u%4Y^Sn&{4Gl_s~M7e9=F>PVw*nI8~g7J(hG zFJ_YrWp*6NhKg?xUbO1Jx1ablL>w0*99hqbOAo{MB*y!tFy<=S_|!UXf9}$n%F{x^ zN))&<^8PTY%_W=-E9!U;z&Pzsk2mHQ6}TGsI0Xq;;M75V-ISpymuLimBVtgAWS)XB zx*GWHoY*DCF5%bUrC*Md<4$y?0@9-i}!rltWD2_#Ak#L zOk|(Qh22i2b@fN>W@F|Sud7zwN)X~CZ~E|o0sz=Kg|BQ6dQQrh_P?$SQR64-7>07I zPOoKT{y_>!hjnP!v4q{93smC)@{q<3%zU`a8r3#90e@?DBg_2SY~ppE^)k>!Bov;i zWuBnIFq9iCE6%%y+Sw(O@Ha9Qh8GFt*h1UortATf?N8S`=W1J9r&8q0LY%VFKTnCU zO8%IFZ$X?5uKRpI$o(9(m`N&TSG8_?5 z(QL}$gNJy`AJBf|;c*$yIJmI$ldKR<2-r2>{N;zIOx(=msm_PzeW5D+;pa6QboPvJDH%aZp>!i(&A!OSOywzCJnMoT6asTzQw zjXTal*b-c_%(12MfqF3%UjWAzpj(lI{UZE8!$bjs{R4*2!w& z+eXiO>yjL?1%nIq}ySZO8n?4ca9I)iqD zQtVD{<(w`_dWhap{!T3*kVL%hYM@q^C;(gkb_!ifg)v+f|Nm# z*jpml+f3QhK|E1S17CAV6HNPUSVH5K-085<|Cag0JQ2!m;pgSO`OP*4R-f+%g1;(NNMuznMoT48?5MI{Pwr|6P$t7`%F0$qS|shaBeJx9(% zc{8=MVO!9UDpj-tJ>IDc_03fsSX5z(;-j*B3<#*Zc#x?eSH{eN7|P^wX0BYkoW0s{ z!aC}>@N58A;y?X8Xz2*hnlQ0$A{Jv?t|&EH$JQ0Vds*-)cJM!{krCy62@TP28g$pD z-5&k>YDy_H{`}GZ?nUL4x1#J#RvFB9f)31QEnhjQeQ+IODh43%KUYBe8tT2TJ|;%a zOv9@Ye81Yd)Y)I|s3su{`s=gM8&U7Y%N*DSY-WkadOAL;&Ko#>8t`Yz4ca1F2lpu? zb$M@0jxVI!l09zmX0{d$eR5uoyDj^;aI_=1+&`)*D2jzMrJ{qLF~2^d(cXeSF1&| z?=)`Rz}<_CRw9e3BnB@t3> zUgz;vophCO&m5z)hqD3hZC}PfSF(hkzh~n*6ZPjLsDVx8ya4!+H+n)Tx}s2>SS_ z>_0V7k^nbA$iK^hkx_#@_(VMJ$WeWN#%2(3&s?UdevK-k(Me3cGWICFc)X(2IJ`h? zf_%SXs@}w%zFl+wdvm#dTXRUMD;ENK>mrE$r@9I$WPO&Oj3XJpqqQW4iIL5C?nf@J z5)!K(GQ77et0V@*oDQYQ(N?yRl|_1s6yLvE(BPVTtAXyRs-!t!a=T~Hv52yhlJG0O~n$;auQsZ0Tg_%n%>MFInR zzQIRy@T5sp2^(5W0LgtQ^3YoyJ(1empv0xBWxOd>tCsZXO|Gf^;XPFl9|$3RK6|;( zlFbmc=r^>;XCWb7AFlDAwfvJMzgei+u7cv^s5YG>4pN!MUW{;Kyb|IhivOWIy4QNjK3 z?%Ax{$Zm@}v==p_>8fl*46d7@;#8`Nj)oqw*vu-!3E*CcKaE)Vwbe7IMr)4b0nOT zq=&Uf7A8zLdHc6n(B60(ay7F=N#NcP#r%<|w%+Q$N+fVs5P!~Pnyfs+?zp>K&}o{T zT#@=rrIGk9lctXic@PS%2`#%rpQxu@Do959VOeYb=)2Uek=rgFMvPS>XIAL2*nQ~R z<~jc7n8;3A4-;u7I_-uX>}QWc*BPJ3Vyj(#tcE@@$M=GGpx8heT1xAhU8eWmMqSm8 zS?~vR7b)g?6^C)styo=X9IFb1$*LH*vYC>D1 z3UOVpVi|>I>xR2b$9g=-)|40J%}OEmjkS41QQvM4(HK6v`xXO;CzV$A-|Q1)xw^CY zD^Mxp&9|>{dQFhr<2$sqj_h#XNeWX{g{^TNJg!>N(s{4*`^uiEIYt#2?fdj`mljL9 z@;E8ig6-j!Dut%P3`9@_f{Qop|Hwh)4Gt!4mwNuJ`J39>8|6z?I5vCkyW6avyHZJS ze4kkanH>E5!~0Es5rXdLU<%*;X`E7gH?SFH`S*znCh&=X%?__qI;sM)iPUX3R;I1a zI1_ns%oh-iFrie$E98ET!zWv`6Hz=A=5MB9=Q#_sSwDtE8RrO7;d^8lfkg?9F04Gh8a9Fq=>I9&Ag|9hosAixdcH-=zkQW~8GrBl6YR)SNUJvAO=ohS`LGIY z@Bji?%qEM5K0ztAEp+Q$E}a2>m`^wBOxH|A&}o>gkXXcvVbYNss$SqPR(U|px(QB> z(`U6jN$>69IMZ*&Lphu6^85GrbFEh1pmX(9xvM9D?Kp~}#IaE_!G_%bNU-Qkuqq}Z z^IINd8p#PN4J9JPL{L;V|7WW zR|`NZhB7{ak@sm;Z+A;HvCMuO^PH9qks;neES(Udox1ukXGyZh314f!ymY^9pUAs+ z@iz4`ZJw`2_n}^PpmuKqC82)J8zGSDVO>nr|3zGQdt2iIV7z{LYvH8o_{MV!q}ap% zQ{vPsEvoBuW~XoKdGS6)aZK1aAdwsS2J#|4p(2f$+eFN*=M2BD*&9EvEO47Ch?boV zuP;czxaDb#`?3?G#mW}}s?}~T`Qu*i=2F1}fRgZ6dM!CCq_Mu%;qNwJIUiD&0z{yN z!1qyd>vCLG*IwugoFid&7?IIOl?5@|M+OUYSh7lmV50BMg4>k3eL;{oj2U)kDKzyJ z6t4=FJXtO!5kKr$okJ*$M1;40@_nJa7(Y{^WyY`v6;bjFmv3nyI1;wgFHJ3bf21+( z!S)l+Oi&x#5eO*n=*|7*vFZ$w@t5}S+fl1zVN_Z@uWi$)R%o*Uvb}2@4zv+@TNP}D z?F?jchW^$X?z6&cQwDXG{iJ#x8{X+~JQMzVjk^J)Q|pwSF50%HgFyAAey!-$p?}Tb z)5-Vk)dG^O=hQA}WgR{xK4#M^Jo@q(^6$cvw-&bYOM6fNS`^AbDp`)<&24@LL^WG$ z-fmDikP$S_!aIS*o)*SWcS@&Dn`s>h7jEN9n{*(e1=MGvk?fAjj2nmCS6;X9@ts0z z1bkFzb=Hhbnt875AfOA-J&79w`nkj)4wQd z5T3oUI@_+uUbq7rCU$FIskB*vZ|2g~W$G#xI(~DTYaGr`s1gI#7Smv~=mo|KDOErf z53rc5>^e)3lfTy+_>s92q1lX+xB2<%qL?4BI(ch&)=@ehb*~b6CWMq(nnqMKn$nwH z`J*3Q%1X!8oanbIpQX7?)PFRoNzY^UfV;u{B}`{;z9+ zF0`q_wEfIvFT^1=e|^2Kd6-i2X!e%3Gw_1s>;PXf2Yf)c5MM#Sq2qKTGYOwfgk;wB z+4u!e3`?If!-`s@hZzrn&z7=&m);gg(E;}!eFmD>Yk2d_?odh+BL0{CkOy%qeWDpG*@z}X4uJ(VPze?uiYqld31!{ek z{|`mQU#tZ7P;#BVwBpS(-w9oGiF zYlaTGel7aDM6Q7)M9sy#y8M@1QFM=E$>R?>?SR1fLXplecw6`t3b9>W zujHX%T|_WPPBhbj&kZ0AWrVgld?vWHOQ$DtaZLwz05aAvYCX2?&SlF~85Q{-A0BTN zLX&Sve6)7^H0UMxN^b}9Ki+}pCh#R%gTkHFx;GrU*u=yAK~$N&@OMT1Bawj6FnW8{ zVKW4=N>^pQq4OaGIUK;smhd}qtgbB%ok2BlGxC|>8WbkU(h+NO={!Td!rQ; zxgpsDHPQHao~t8eCyFHb+n6%&STP5V|&;Dce^18U_3l&Thppa&{auOH#IKQI;EI0OZ%D@P7%cgc!t zX!zJ9g%pvD;D>f)k{@{oyAZS~)b|VQGsYX{d4f!y7P;v_wY<3 z_Nb*=(UW)PCuKD`R4(fLmawLE3P^UcR7UzZy=uNL!g)`aXptR~pp4`Ar3t=Y#cpp}(x~=`FYk-!KW|QHp5mU?q576rhtGgtVN{%Xy4zVrJpI*+D zl!Kxs6rud^dnGl-7{OHBWDodoqC77~0f!`p5Uu&Dl9eY{pwNqQ$aQO!;-VCX1)8Cl zNuS^2fP#-|^tk6lz*pzfAMy-rR*TFG~p_RLHcsxhE`$K4|RMWGb;v_&qGN{tXOue z14X%pS8NbB3vN-WVYB=81qg9N;+4YT-*93+^ER?Ve~g2IIdq(Ue;y|%&XBK5{Z47v z7b+ziWI5^Zo8@Jk&eHi14lHvVS!3Db@rEB*_zH_ttcN80wZu}PPNT3V5b1!T*10Aj zEWbFfgs-D%JTw|m>7Qmpw<{nstoHv+5sU4Ad8yL1aw~YOjYET$i=I!vF@HLQk>TCP zF70k*)bhUQDxr8b3yS|8{}WP!|CmRxx>6ddXN!19o#ezT-*tDo-2yDKabQr+g3;GCY$ z>srj@{q-a;g$2JU&A<38_rv@X|H^&-tTWk>?|~iHRJ~AnD(PK9O#7L-`fUd!M5E9&Ouwn_YMOc4@sF`bv&uTial8EX9zNx1D4oe z4xRt`u+X4d_JHp6utb34ChDsY|p=aT8zyr&nZk#LZk?@$8=p1nN%Y-BPt? zJ`88WpVrvRNTXiLG~DhLEL5lEUGnPgMkv+=uubE)=<(hk&%O}tKUs1+;LH2vcP+*X;B@9s|9BN=j{4N5OkCROa{N;BD;-)Z#8i#PLWlDalu(V zT1kzo*^?TASlE18+j99@lzr_W(gCa`TC#H>(Tjs-_uD7H)FuPJ zQCjgdtDkMRpB|HiCrswQIgztn})A^8eAetsd>YlyMEq|W7brAjz|6LV+;gx#qN ze>rNK6YdENTB~y=g&HQ>x+Az>aRc$c0E(81J1FE8x2*tTYD&d>5+lgxDrZc*&HL0> zRD5@;XGP@Q=!Ljzj=|%!V|M#b6RKy^Db+~dS`q81Y0-*5>MI-4oOnxJ72|QvQUwvsU}o-_=dn=6Rl?AIvE_1ac*GfkD|tni^=B6T0KnV zcmvJlNm2U$${rp$G@K%TW+9>-LIuC&J02*xGI1&d%y6&xfkd>Otm2fOOLT#q6tBZF zSwWkPFi#tdw7h>{*g*TaEzG}XpCd#aeoaFPs!L!D9@7%9z6DRg1<6hz*;I&t*=HhYZw#)3>7t|LX%W}d!_#I!TQcq@46F$Pj4<1~3=(}+%f|&j3J1h~zl^|C zJ-R}ZNS;ON;9Ex2%*`ZpfuRakpyG8F=c0L`OAjOZ#PW16!$?qJ#NkE5{n7(OgW4Rd z7U~0SFZJUPqMIZ@ihv8~-U2SgFY&Qnmtg^IeR)+nmzzz3B>Iso%J0!fennn$5RRyr zNnNX<@SlvB66TU<;x=%;masw3@V4g=wDJnL>61d+dQ2rf}7Dqllz={Dls{avb!`;!Q{v!=Su-2OhaS09M7`@_OSPQgc=qXs)&LUignWeXFeX z(WyU+{zR?{q02Ye3V2PeE3>iI;224lGY&2kQcuBEk7Fi0i%Jzer?NU3wA_oCjWJEl_Ga`+(#_QcAEXE5A%ou-P9S27*>@U6e8R^uA zL||}Ex6%>Ff+V(Jo?)P@bsDnhT-Os~L!+64d;Et7kPwNz`6S%5x)P%fv4Hw^Pp@Cp z?CYp<4$wS`1j10CfxqO)NTvb2D`2GmP<$n7{R&v<1(L zxLl4m6+6iD)Kga(c-NQ>&~LCUu^AQ}wVrXf2wN8FMr7`2^@heKx7 z%3d;@r~^|>Pnfx6LB0yVRECmFWRitw^fIVjL0@iXU;9ldHr@TA$iIe?;(jhi0oab; zhgP--t5<{gQ=2Byn`U9Ox88Fc6imccA6cYH+^n7#Y$;}<=McM$)1n`0|HAdlGWxT0 zUR#5gb!6wJPLGSFJUEB-&9o!mWo;D=F!I!Sz9C@AeB+1xL%9;+@{THqZ#9t+l?B60 z<^FJAms5k(G%x4$LjJif#yS%npAI9T)peLtY>hhhMeFZb%w&qP=;gr4bNi2wd<+)w0XP2S|M`1e);ne#>EfX}wKBMxnSnoB_(wVV) zoMg~08Fqzx?6DC*?IagiKmcFjc_Z&EsT(Po4htoxyXs54m=F$?2hW80{GJxg=1;iKROK6l>|tRFTK%nYjpW@s5? zG_EMlBzf=#nM)Spg})`{UcCCRg9E z$FCpX7hu?q;*PbV`eEc&RZGiECcFc?p(CCO2OG;9kf|oKQ`BF#k}?=1wdy~*e5T%d zQDWoo(k{L1$}-@_wXQ|%~!-dXUKk`t1>(f;fHiPc+<|Y9`b~v zr}KJY5{a#pJfmMycU_$-BYg!%5fRBfG=cmQlWQBlZuMgGJND{tVij-(dx5?ZNlLzs_3FVU{^*p`7|}{3*PejcS-UGt{oP*#p~H zo@5F}omY8$s)?bvj1kpMco1Rr2=Ap#a(D>77UBd3heU4LfZ}@{lU!}k3jna;EgCP* zK%rh=(avT5c~rE#6oXI&8J`Y~Xkl_t!Lr(t)!TTjT|hg)*tKE=N}F}y%fB-yd28By zksske2XC3!RoYAL={F4adv@w5llw-YpXH49?%e;nC_R;Hzu{&T_kZa43Vz~Bs?RXS zVwr1KWe0D+0j`)K4}b@1!qGb`@Aw_sTB<;+p85l9{lPhMfuT`J7vC$v5P*E12pJjV zG7Zk6EE%u-8(0+eH>rs)9(k{su03idh#%b>|J@L+x^(TQ$0|8+4Q9d3upzMn@Hw7yfyX6 zOyG>gDS;?`xu=3+3{4D-husNkt=fjK?X|b>LpIOlehgYZXN!FZh9Fb53QSHOue_SK zX-A9rU1bJ_ANaa}B9&5(4P!G%pBXMtcOCTXKw@n~t|kM0f55IRZMaS*tOET^f>TV) zVJNo`rS)f|`$#uP&3mBIk!HFqfWcY6<~T&0{^0?u2@|b2r^Wz03GXpDxbl7I_y+Y= z1M@eHJ1r2AIpDRg_gZyrA~FH~8D3%gJBKm!IDDt+R8Pn-sHcM_oN@kT;C42%y=p35 zs4)A!Ld#ziGY@d<%TA!Jhog3KNW;GR!=5?Xf}%~njU0e32$a$P5$X$gI^5RV*bVN( zD&~+XTMvp@ZU49A&cO=%7z?2URB8cOiG|j`8w$D7lh(0a!tAL0ZqTJvjJCl@f_Qwc z>FGh3Ab?~YpjO4lR<$a_Z9pM2?*ypAhRG@ZcotZRXb)Y8uY0SU&a)3q*NUM!^HNF z|6*X%jC+3dJUFxh4g)GA19u~$YA4?$S277C8(*7voJj0Wh7hJaqy?voAK+~SukTWYi0$CyuYzwYe5QkEAnX4X1zNd4-+NZ z_5I5CGCf~~93DI;%hFTAAVO$qxF6~8B*a;qqu?zD>|NV|pJvsWG6-ax+)dP!Gu^QR+4`ifCHy&L;2ni6NdBysGEMygc3+;9--L(XK)~8rW7Q4-W3mE zjOzRpo&?({owlcj(32-4{FDd)-AfQJS9ZqQ*;~%N3xGkCf|)Xm+u8vhe3m!Ae%BSh zv{o=c4WFSFM0YY`Yt*AJUX=H(_wK>esc)d#=#;PuJM6qpK$ltC~w`ZIDqegg^O z{yUmy8L@I#+)Hmdiws+p)svuwpW=+H7G~J)NllQA=I_QQpoX$$2U9*`z1ul=?8_G6 z;O3gXR@vd+LZH@Z;BMu*zC@RAAqSl01ZZzP(1P0r(?@m5H@hRRMQU4A%_psMw87x5 zcKN+0qBI6B-}3)+?=OfD>iI3E2IiXj4#cNQY-bWwVsJN`T9+F)k|SmyHFx`S+10)_ zqS+KQpo|-oqIbPs+OR+0q^sv5gU94$y`bss|K1MyZ+%&_R<%e&BGk2=3@syd#yK@5 zeWFvWY1~SJmdA<)hg}HgPYr+&w7+C>9~&nP{L73F`9Z$@st`K&>`9)fC~ohK@8I#t zBL2wmEY|QrMz|}R%$o7T>}bR{^}MARf#tLQeIY_qd^E<|I+|qkX1XY0_RI%csqtu<#eHba^sn zTPr!06*~!$u44%u5hBi8RVashlr96lm}IOhsLzGAZXN4aqb@BvHU^a0m~Ke9wG1Ne z99S7o`V_uwyz~Qrd(Svs<5PI+xoX(QC|r!Oqk8+1Gk8T8beQL6%_?m3O|zIQ5gB^> z`X5-uR)1LI=+0aV{1Bz1j+}TD+)l`t^F9?92iwf3wp0f41W^HC(wz(%L0I!c;x4k- zJi#f>2-E+h?Q||$XcJH`<>{taiUH#B8w?tF2E#o{%`3;1FpRKfV6|w4e32}sq`2~C zb;h*2k2q@p64LT1LTdVw5UmVvPgxPQj#Q7yIiV@!Dh_G8KmmlM+wk305f&4GbvZ;qd#tg;TKu$Iy~&L3ZzveeLU zV}AcY7m3qa@EmK30PyUDNa3@N8Gv{-0_r7G01os6)ojsaCZwSPF_W;k7L;ZNKM9MDO#C z54w)^@& z3)+1wtwZ?8I_^-Qo4OxFa6Z9!DJb_;KM}c8tW|WF&i+C&DFI z&_fy`C{Lt70c_dII%YD=f>Nh{f#put*o=$NbnFpSW7B(@W%t2534FgWqc2j3OKyDe z0gONWk#@ZP20C(p=udIdNEl?}Iq>EG2i*|QF`z4~whSCS8OrCjO`2SX67?&Ik8zPnlwgyR(#6^S+Vj?WqIX~&5w=0ekj_wZ1g?J2z zd{=!xT6)5@;{!Vcqrt7dnu-^D1H%RbeDi?=Yqv<3h7O8wK%R5qfbQHUn6G9mT0iy?FV>F?==1Xn;laXt~7}Xm1Fg#{9F-LvcDg ztb6S=<<_O>B77fFV#M_IraN19$mdz_>68>BbCJ=wu8U6_?mons@Z6o$ z!Uz|AU$VFKcUHb6)3jShxAXK)l?2rdbxrs?<^zs96lCMfLb#mkKOTk*Kia?qvH_ln z9L}ZRkkh9m92(mG>XVgp^JS?ciqR(8KTOD~R_E+7!-*Wk+OUPBCI1(0Q*#}m*p_wT z81rX3pHlZCY3!By6_*($I^*7Ip*E@`95XM(V-H^h!t2pJvFkTuY#HgFQM=l1&={Bv z9?5g_#&{}^cIg^F;}$Z3%N(I%8Z5d;mC(yT&P1hFZfA*zJ#DwaUK9kq zTxR(r6}az2>{sw~BCpTLt83gWu$oJ*>@OX;$3M@QVUki$1p4b61LE@%`y@Q>o)bKV zx==&!-lk)hQv9H_cS@mjF?N1J{gruLdR(-FER=Oq?j&p(Rdh{u_6V=u+9dBL4q)aC zjR_hYGPM`@zP_HB5Nqj*9ts2}@GSF^FR*eQH1sNPggI`O^<$NUPZUSXSJvKT>K0od zaxSL3Ovuur9*ZG=TP?fh>^wjOxRXFNw2#87+`Vf1wjv~bjCb+*mIVANlB=!}@>O%)97r`E^lA!Km& zx%{TS4L6)lUeD`D>8q9v+P-m|AOB&Wz&b1;Ncc0|em^|)tCWA9qFwHVkUD1SrTJ&{ zQxL99@Y~YF%>QHiWzr+(nRbFWP_xQ@t4Nw+(~#jxC&s(FQWq(c5sckt@GIo(Kh?#d z5C>YJUS6?p?6KgA2b=?QC;nCwv^Z}pMYkC20>bAqXG`WxPFd%`nTCENy#`4sb{1St zC#%(`P6b=ubsK$8jQ^dR8|(NCa9(0BnPj6A6Gq8`#`EO@S;JMGj4sHUnn>pa;>AUa zvdIXSUDwHo`IjtvLgb{nP;Xn6Fw63gD3BoTLG$zb%rez)Fb&g@hp~nSf^9fuVDagZ z^S`fy=EYMSh8VUaz`c0s|F|Rcz@yaJCe7p!h<(mqHiq^oM4UxcH^b8!hb z={5Xv&{0(OK#uhia-`{bK*}_ zL%`37NS%jYD8S&WK&R;yOJy_l@GpA#uBF3^CcxAja3nCk=JnDM9zU@HQ7=zo z>6gCJUC8(q0a8M>viJva1c~ zt<*918eqFEum(<;dhx8e^K*XXpHz>nz*2X|esct@luW-3hl=id!A`#z9Qs2=?-2)@ zz~l{OsF#|jwbE0UxP$Qd6I_YlBwPXnZe`PyJ4SR+jzg**j@coxa$*^hG+Ee z3Dx zY0+CUA58+Ot&m|~E#kYzZfVrbDqch#7|I(pxS;qb%x42HVzM$uh+}r1&!$B&R#zN} z>uLw?&-Ha}-dgJ1sS5I}Fr0(+9E=;MER5k=wb`T72Aj+Y+tZ9gbx?2^lJx{57=HEZ zCX)4m5CygUC`TE}Ws9*83(Ec<#Cvq;x-pD=Xd$`|UWaT8CXsY^!RrA~@wt%v8K$?S z*IF!f1YMrb!z?+YjZ3Q}oYgb`G@&+9Nn>kjy{s>WhO~-GZKTdir;CXU68tJvJp-&% zg_8nkwP!4KkB5+u=|!a=a2|!Y-OZ)Y(MB?xt=uV z$LCB4rYXos6M@Y+BO3Gs3P4Q0WG3U;Xo?>4RjN;QS*cs#*iqw;NEV5I~z^{)OARNA;Z z^XGvqCoZ-Yw-WWZW3c*KZhDguytPh7t$4OBq$C<>%*?LiZ;!wHkxV^7D}X?9!oJ(_ zuz@&O8=WkZfG)Fva`mP|Zey>9Owl{bVc1c;XMx_g+t{$D2c9mtzL}$*>mR?@2*J1fbr1 zpcvbh=5aDWc0mED@6(Kb{oHU!377M69`&_VP}Cgg3(SQX_|P$6k^IcabN>xdKsi+4 z8aeiLW}hf{PV(zE=iM)i)!Eh?=m+otFFq%hm%sEZ5yjQj2$a*oqy-0T<=DMb5>$_& z&#T`_t7^uIj_c}%--Cf+j5#(<+_LbkYGcW~IYyb`U;$i%yuZy6mOIzeoe*n#RE()WkMNr_0Q2sZvyMwN(&5ak*VgjT}hYdbrG|f zI}p!VInXxDbudWDo&ZvK?xfPi%qe1r=29qfP`6d2_@}MU;x76r9?Q~#;8FHp$7Ms- zBH}DYafsvs!{8Rohte5*cGkeW9*#)$D0EDfE5a>XcdwCCnY3<3jl3Pd9{ro@JWS9# z@(D9J1~wNH2buqrzJQPnOdrk^NGhEV+~DZd^U4g3LFi-y*rA2$gyHGwU{y>DQ+y|!L1h;d6S3I6iMWUv~2X8XfDy;%Gi>W;8c|18+% zu0W5{cpV)(yD%^o+}B=d7-3#ov-^AQ6_lS~owE3zGna|2qB@*vY(SNVoW;h3nl)^P zs^lq|@<#MbbGglronE0Kf*>G?UF*A%dtVw`!3G{7X_1{@$07Z&y#wx=F{>P-7ydQ_ zW|~sY&rl*X1r6mAW*k^v`4M_ekGiDKZ8p|U3wbRnKor3A^yS|XK=E9D8aJuJ8&pq9gSZoZkUIgU?Ajv8yTKTWX?evrzIN zZe^(z0c_Ft!vaB$-0V}H$ACt|@h-Ci6RqGM9uK*U@h$2RXc}?-88YI59J=APPJ}Sw zp7Xrebe&09D7S=Z69i8)2Smi&o@>RJ#_}}yJa2@9kchqu-A9-E?bawK!Ia_2J&riS zPk4KXRk4L=gyOa&YyP__kqM+BLZ$Vpcu8y66W;rZ50Yeao-C+W2#;dnUmQr zV7) zjM>=^4i`EbV1v8!dpMGF#@--`+CZ{t9|jXdV~ z%coIKcJ4gdEzO4X?}WbqiQaU@!30-&e|ggU46al*%DI=UUhSj*&wprF{(Tz>n5D*zAMZ7oS9sXtW*;u)qUdp0w6(r& z{efAp9Dcv-nI_?kr$*3cx~}LXjJ%%TGU~doo#7iL4RNtPy8MA@&GS8wS+uC-p1mY2 zLi|7hi`_wNAsSfxY`|TGY-M4C5v|33$2R_ZcLvBfS2o5qOr)2BYK`xVq&nd1bs8br zY-wIscEy9ftCE)t`w)(>#3m^~W9e2d4oom=^vvvghP^EBTDekKy-}&ZIAiyv7C9)i z#Vc&`?lba#_(1^hf;AuF??Ra=)lN$Ct)@-w`)w-SVH}sAb{H&z=6MZ5f8{6CzO@5y zq*G~pYBm#T&IJkyp-hO%qZU_t$w> z{Hww0*ybzC@(laTsqa%a90j$>tmC_$S;9q!q@mqoz7U@(B;FRX~5qFrfw6yO~YZm`FZk)^@MLTYT47H`a&E#`;k;(V|P0( z4A6jo_C)taA^)&M8T!ym&IQ&uc&LwN?}@d?ah#Vj&fx#Z>YbC!`9p{sWf&!K1R>#= zum1kqsj$NdJLMgKpmRn-twrf`I%L4u^4J}2)zY3i7Of!;oSHI<_YZV+ZNoAC2p-R@ zva-mY_^Q+|i&k^o9(2s{gC^5#1C1~dgF>v7E8JE<|3rJR6|YZtRffUQXk-GYo;(T& zRBLd(uhA%$Ml{2OPzxPQ=;{fdLP!FMpcmJ0Isg-M_o;5ZOlHp6#TrbiC#iGblOi_C z@+-ieh&O+DqTVZB?%d2K$ov$purOcJc#GrkKid0>F8QTbzUKhudGmr0^-)=Eh}U&% zgn#R5%a%WMflL@ z&2J>770=u;Qr5j?9I&IeKAR@e2K+|+_jGQp6y*+`6lN#_cd-MDIOWh?3yxfX5zc=XMXUTqwDv0Ym)*XI ztHh>tY2!Ly^iyDbseXI^v(Ds97crjBR~PktKb{9fjcf}Fg9l340WYH$7`1L!)N#Im z6j3}Umu1{NtM!d7-@z=3rTHxJ3V+5#lIvlk-3RWm>-lR9n5zliyUi5n#%AW&N?glI zOZYNXQqUtwS?fFNL(d+l;07rm3ahVh;W`)5Ulg5ERB&A4h#6VTEvTNIS7Q`tA3WnG zp7iW@s)q%`YLZm3YTcN{b+S?JYqLNNV>Y44`RYido}wu6!%WvZKEsVjQn=-tY<}2M zitb?GpnQE5H2m3S@}#YVgu7ND?;7#mKd%R!gNqV*eV9(|nqr-9@NoG-U>1LYo-7a; z`+SOh2jk5jgL$Y+?JK;}{;CgYR5mW6kgf zYY=3X4IAB4^M2**l`s6fpwwA2wjoHZoHwEIXl+Q51~ThB+|NFwPpHS~Aogd#8G|&w ziPKvOAQ4{Ovr)v?BTq#syi&-$CdPJ*J-P+*$*f?tkvXCtW>VAyuS_gJYW3s>PQ{QC z*yr=nu-7BNkU2MdYeYxd7FOQVg0OFc5SK`StQ@5TlW8dXc8d#tQk5yHlS$6LBbo_@ zmGWn`X7Pujx-M^Gpm99t&1!=F4wAxCj`p!zq8Q(T3-fP@rBJKOL=?wq&4-%=B%nV7 z2W|rg5xz-ys2DkXH=DHmePc*9yNsnkLE73mKWc#4a}3eLOO<42c5>&q0_oeQ3xL~v zq0}`gx|K_S83<9djUEww4oJ3Wq^dKvpM7b1;P;=8?BuIR@dfb}zmr+*BH#Ye!!Rq+ ziU&`)=Vx3U*!8oYbObHy!6hFIB99zaJkEawC z_Eij{dN{o$zGC04hPJd&U~vxe0j(ssOcbE7&3v6N|2A8?YHp7*kd`kma z3oT5(Hr3*t2>&Hj89aPaXJ{|~(|_-nanUsg@v*}1(9%^F7qH+;7}WzLbj~Fo11*~l z>pq2MyH1td?WejLAHq*xc_PL}A5tZZP9th+4Ym{oA`(WHN7>%i-myygpoB5g(*-iI zvfIPg(orQ^1l*WwrtmaZ_8qGBFX$`%XIT}OgoEp$E$V^l$*j1BVnZQlCy3c@CE$=I zxo-Li)MY)4rEJ`b@_YT@z$NtHc@KBpiLl8=!c87r7AuVKuxvN@Mq~f( zbqA&_Xs_>nBZG$o7EK9%K{Rjzg@fGv;!sxI2VJ>VwbkQng_#A`>O!kw4}sb?4PTjT zc-QyMgtPDA&2ldaduj{Fza*{hiW=3tn%plMmJh^^3sfmLZl#KRW^U9m0rKt$tVcn> zT8zQrEJi6Lg!o6~uwL+DLtHdG=xnLMP1WM2sbeCfY%OLf*ui|y3@>aZVa~kT<(1xC zZB-)_u7gP?x^731(Hqfjj|rh7G*4Va1ZnpDjF`+;pNrQ@PA51pAW2~zTJ4fhRIgJn z<9sIl0O_&u5sszH74sq6AF;3Yq#ChoQCPcBvW=;^LuzM1${APUWOP|7w58bTpZoLQG@{%ff9P0XR;XvWbQU zA{23KtFYnWHOUtQGW7!>eFV-)wH1Q%6Po-`79l(Je-7a;X~-5K>fLsI+>p+p_$sxx zE}u1u4a)x=`#Yh2D_SJ3ZDWMwSKKD*SPkJCmP&~Mj2rfmtN)z;X-yVc5MXf)k`VEW2ol(OlT}c^Ap9jKp-{TZKcO(qB zV7uXI8jTmGsX5-Q_qMh@_1N|u%itq3i(Pl1M_t*S2<%KUBDdcDJ(Kmjm{Nz?c&s+U ziz&AW%mT~LWOw9Dpc+6oE-D>ZY4cm1#T!7y)R?6&PXy8`nLM6Sai^qKUc-L(!POl1 zQ*s07+vI{YZN=e=Toh$G3L994FGe&l+f+}fAOwRPR0q5^=UO^CTj=MGfP-KfA&&3mg|94AbdwGmBBr4NKuCI zuz;XmHMvRXaZLHZKo}m_-S?LW4Tv$Z1Fd9E&nGF~oz+T#>t$h!C1*mTO??Yo*tY({ z!`RtuIt`ug+wZF=(JHx-r1~MTpD8k=(z2k4iH6{aXFbdB*(}`yf;vWo8CU4G?${?% z=XrR_~m(2fsp=#kmvg06D#|H-4?%`{v96MsigPNN;MOChHL z&mILh8!{@bxBo=TnQwdNLo;8^_1m-HHOBU1`mbHQ%@K1Y8{CPYI%dKpM1k31?q^G? z(&}1GG==V$d5q)TcC}bp3JAYR&9GhhCF0PZ7~$=_VX(iOP&(s8HMCF8E@7neydja; ztK9rk)3e@=h*10woZ9Nx9rbVu$h-U@VFoe(jZCOhfdg_3XyXjC(LJ|7S55FPD*>2` zYR(VtDlx*8%bJLGCURvgF90t<(7*F-z9^*)?oT5BNuGIv;0Jvoby z#?vbfqsb=SoOhlqRm?#gx@Md2_dUq8RYdo(0$E0BxEuC{4k#~lr>x1H!;`e zku$$#JWPLi`rwQR25Y)a7&V$$?$SX;p^VRJX3$EdZ5~y=d9iXnBTIT!-WlLZ##DaV z)e5qu6Bc=-)r>A&G8I$7hSx6!dgFWYnaT3CZ~ z;b7)JpW-cPaWsFv3*a>w^Yyn&qyk;_t#%Y++@+dyE3A`d1u)8rU`t>~eF_ZW7nS&76bm@e*qm79eEx=f--zglF9 z$lI&GJ2n~7dKswzVl{MjhsaK`;!=de`yfM3hcbq>A``>7>sMVCH8kQi*H4WP?-~z( z!(Er#9W#mbZs9YB)>k_l*9W~OqRtouMJgh<>a2xnf_((IH}%;GNykWl2YS+>4c|d} z$gVThbaC9s|L%d#PYpLSdv+x=4cs4zFrP(k?ch79SC~a`5MG^^V3a}5aaUKpP8sh& zGz73|(sN`5?9ki`7JqLtl=e0vd()yPlS$I+{Ob(&HBd~SzQ)nY{`mV%78Oc7qedY> zO-6rS+j)3;MouKTnQQ{=Q)lU!XbWDbQLgEoik&JC1J?K-*a6ry?#oM!sr4>1db zlw(Cx_vq1>^r1oXem`MRm5#&h9#lWGN+haeGy>RkxvbS_lRp9mf8oI44D@*)23vEv z71~C{_&s=ty;-2EL}q}KjYDgK?fhUv18`q71Zv@{fOAvb0kW!O>fkVWXaF9i zl3BFnCc;AFC7W3@MvFcUNF2Y7E~FAerPz|qauT#C^p-=`s%xne%>&OVa8(1A3A5+Q z9wi7ss3E8`J;Y0MybAyz#VEi90arvGiTQgsn}~BfUUb+L5M)@s7SFrHt6W2TPx~|N zH>zEulE+pVJrhO{#kx0W))W0DuPtw|L`x^WoWM!iXzsX@0T0TvVgE$K!r+|=1;T^0 z=4Dw-Iywd61@u#%SFH1=^YjEwbYi#BlwI9O@?>kh#~~FmtgaQOEIeL8^LjB21ve%S z`FqBZwl)1I+sM<-FqD8*r-2bWF>Vz9tk7bztyg5CO~UM=1C%OPhl!UZO3mwE_T&zi zo6smg8+2QeD&M!k<8&|o*7H2WBnNq&um13CWFo@x>SJt(Wl!fr+)z54s0gd~K~$ov zyg`iP$sihM4m!|)Bp5JYKxomGg`j>zmqY|jKNjq1l3VZ+Vn6!k>1#uDenDl|_) zbE9hIto+C~376{10)Ew`907?h-D?^GgfC)p(}<_4(UcSWICe*%cS6@P(ayazo%@w~ zkdww;Cwj6A_CAGXXfCA!;L$S{%OmY;Ps+x@^*>ClxN)S|@}aD2epxD8vbYvd&QdCV z-{~7QDNh}ylQDXVio%IRp^_R7cpD}emjEl=I*0|SKFbT3U?ZE_DQQqtdDv zzb^r~Je4@%{*VCsEYWLkk#~FU(!JHST8rbjfvOds_&YyeNQhXm1UcJ&NGX~$B}Gb& zNyQ&*iqYC<2K%XWd3=12Yzd%$-N8&b)LQ$kY8&b(=Mfuju%;VJ#BU6Y(J(iA&n!}- z3)h~aWA4c1KK|8UCCweE;ICllVdt&G0GIk0S>qq_y?5g>(xPW^Es+J}|^cn!z5ZK}O3H-qMV~Fxc;PPqT<6H;X zvgq{NP#*6l$+5XV*D9s|XgtuN->dNUp5wg4l0?L6%HIqBN_&7af_kDWbIGAbU*vzh z6zsZjybuS58>7~A9zU9@)-(OdQy3V|dLBKt)1N_{V)T%Eub+b{(83tviMGM5+yKuECVcm$Fp`3S98OjdVpW z0j&qfO;|fVws>|HygIm+uLq3q@)uL{rm)WCAfp2}!l7&FEkz{?)GS*eex|9}s^f0W zhl=R;Dz^_*=ZbJg&VRv+A+plww(%KzeQ_evcuP-9?1)ct*j;r@?FbL~$-4oOymh)` zZwDi+|JSJV5RFOC=H7xxG8Hy?45vMTNth_ssrwm-(!c~m<$i#9`(tM9UJ`d>iJK|{ zXzzk)VG}?RJf}BvL6BiCJf@G(O3`g6b>_w}8}yjZPEC#LBwFy^=$g@Ro^N=5pBuBB z&+JO@GkQ)UwnC(gm-*H$xa(<%-NX9mN+5(nIJ!-7v858tCiCd|a(uP;S#Bh&{ZO1_ zk{5ZkgKH#*(Pfhy{ugk43J_b-ZBe=(0&JG-@0sn~V;OM7L3M?eqXJ{Z%mb~rbQgOP zfi@143CUjmu=2uw`F33%2d)jDlqf*n(M5SVQ&4IC#RYl$JLiEU4E$7@JMK!Ssvg*1 z>ADIi4;@}LJsvn^-VT4s#-~U2@MkAhb$=|YoHAjV=7M@S_$QS6{Xh7I8PfHEY~&B>z~|uFt3fmY`k%}pq$-=yIq$5 zy+3hg=~c?Ptnh?7xZTFZNQ=a!1|VDF z$QzM{u01_cy9u!D>n2M3J!)YA(W7nDS2`ZZ!(w9g*^XtZO+a|HF}6)*%6eG}o7jT$ zH{Gq)<60@7w}`|6I~WQ-8R8Iq=a%DR1>q4bQ4uDrGg{%V-&G&J$OE0F!-C<*(bkLa zRR(26@Yc~X#vY%uSla(wmaz|fnazICo|K+-arv7zn^EZGZYD zOGzyT@=Oxn0Oj^o?X>bvUdd*d_3|{2cg4&cb-anq}7)sfP1sAJ>bE>AtX2Cqti z3&I>(u4Kk>Jl=3hZ-xV#DN@)57lt$*Jh|bZ0*UR2+%?D1dE*qR1Q=mZoJ@X=BTxH< zbvn5*%L%%_W^30klK4&WtxYo=c_L?(2TAn6P%B}Q%O5O*y&75xLhK4LdYWMMk%Jwy zM&87*f{a5C+7PF}`;fL?QD0p+K>2@m4KK(0P2R~4i`@VLVo-_wFCaYHj(kebJMX6m z;8k#5;n6VT?*gW6O$nNPq6rWb#71Hen*Kf|4tmjf3?*;r;_NxmB;DILe#>pK)Uold zy~S|3UEw-Xz+l9>*&n@LY%SWBNrRNeG~=687HNfgwldDZ14z<_^U^u1+M=0^i3m=- z_4Y&AX$^JzCLa4OmUxWE&ZQ3RLUxuu2pj!6+_cdm&|%EAL%`7SzF-$$m+eXB7X|Cl zr>0MOwe%WjslvMoq=;GBx-!8U9%9!DFc@W zJc6x$=5lMojRn}FyMm%4)iWqDxg>jR`^F>ChtMOA(1g6UTZ4QWAxMM?sz%J_-Pivx z_zK+Yf;4WXKz=tXnnV6C6K~Q+5dSu)SobJfl>o{5<-V3Yp!zR_0S8a&-*N?AssHnCbN|FNGM06fU42EVeyZ zc-h-kQ{4Zfa>30hc4iJb$Nrx3?nPRGF6kIuGwjDLf2J^CVKsIU5(kJxIS4N%4aSOBgJ=#`OWMR+zYM#-ZkV$48?>m*2@@zbz`QK{H*LC&6PMpFh9tHSDgB>+ z&(#JhYOBnB&19-YM*wl-6H^jatCfUd#Xgql8E({1=n+GRx;x^vX~3q^%2;pWz}!(o zoEk0ZTX4y}fsXI#k%)!0Vu7UYO?nkWIodb7eDN%DA|PSHtk7wK+UFOHCpPc{oRQcf zw0VIN(Gb=S-{IJWoJ+tn{8V=_IS61sbO&`Q2}cJv_WV~leFx7`eAUE>ye(MFs11it zDVjpJuxFyrvk%1P%(0>8H?5X>_jSLG^?&-Yhb+5mH-n#8*Fn6z0AMw&NHnxk_h6}J zzjw5sX%gQO&e|f8jp^SXZ~`S-5?|HZ8S7GIQ*}`?pUhIFssar2eSwIUNX>Yb0AoW# zlR4N~S+U;7)h5C9i#XOruDY%TA*6kDF{xgq*Zd=Dc`ZdtpK$6)A1-s>}b$B+| zD0Ft_o-$L-AviRnVO?rO*=EH_-aBWadEXP|@YUsEqcdfvj#s5~s%i@wqk?YFqSIz; zDhKHP$aGQ8_ax;dEBq#+Vgxhcs4^4}C-)2X%tQU10$~+O&sID#!3g978bIzt-nH*Q z&YX>P)4FsRp*M$(US0M9!TBEv$luPeaJQsxG{kY{Dii%>2lK+@;QA&?( z*8bvEUZ-BSMZ3Dvm#5ZwRCy9$&!L2FfiHV5FW%tN*GNbQXiSpF6&6*Y>FblONOEH$RAe#pnq=K9leu)S&TOD#rCQy5lny?PGIu^ro#yM303eh3*Ww?j)N+%%l+c63YF?Q^_l(h8^yAMAm{{LfG#usnTx&UEiJFG3tV6po1*$@uRubCEn#&bVFZkXE9?#)xQQ99B_9R=r}+K#Gl zOy0|HZ=@J=2cJ;^ptHZA`h7RxCKjI62=c8CBNyM@a8KXY0!uE{Y6o{jPqJ?6n$%^W zn?V{XAGNN4J{0^OPb(_3D}2NbheFa?&t&qDK1XZwyo| zZ=i3U?643coG|Y6$!oe6*JU_IHC7eJune2orh}1^4U!EDb`$eusr)lTEQr!~aXa${ zKc{M_tjdcHA|Z-!bhc0Dl_5q{3#y|Jei>x5sf0$MpqrTvJ1R4|R%gFd!&Z;tGIKr^ zqDb=QiPjWC-%{j-gvjBWdAVsbZi}4N)@utuvRZ1z5V)ff|JU+ZR}-`2d}2K)1^Gc}b8edB7e^r}!;U%NkT=&f}~#Tg!Xir<{6T zKC(I<%>siW5$@_{o?|_R1rsW853D6kE?%4@z3g*f_zCG~j$-8s%wiFx;J5R;zuB^} zj{Xp`&gAVP+cf2L6t42y_8)r;5e3<0CNjpv&wT6?H*oQO>K7vicTw*9?+8o-yl$4) zm1wQw1LDVK$@%f0+m%|4#mZ4&0hM}=G;=$*T+!Pedx{7s z8UWZn!P@?<-F4Lql{`wy-ABZUxiE@&AXjR4nmgfBCq8t}4))_Fj~&8lNbbS? znfe9o)Jok4X=zRFYIe&fhqE7iEA0G5Mi5xQb0~t0_St|f*6!snLRYEdmNaNFq`yK@ z5^U?AS-IJO4b$6J)jUWmk#Rkg1L%Z=ZeAu9z7ZFBZL!6ERN1Y(>$@!fNChnp5< zLIY=QNgsLd85M~t($SWHiE8DRADYL3O3&y;zc6+(l)s+h8hA=e-AO>eMQU|!Bu-g( zvpRh;+y_Yz)s;D1nNnP(=c}yZFU?TJ$TYOA&uUL9r5}twhR4=Li{TUvV#9~7LR}#W7CCbe!6pzBPY58DyZ%m4FMtD@loEfj5%_3BaJ@dsh zyAZ2EoP3b4J?B_~iOd=FTHF9qbUc-e4+BrQyehP;B*wYtWx7%^Tlfh|U7Uo^GyzVuD(K`EZ+#6zMg#X5B6V`}C=4Mr`q%Bp<%X5;5(IhBdy3*@P z&AWegMXrcK!M-CSXDx2NQ=^G-lCc`%tNlp-CfGb|z5cqNm)UqVS(w=e=u`P@=Qkj= z^oaoO7$IXev-hlRC+G~P8QB%3;rq4IE4Y{f;C4chuXbE6*zSHA`TRQQ| z0<-5OeW||tMy78WR^wSo(8iBK+L7hv6$m;$l%7JH68BkQ20OXx+?r9r<>EZWas;ON z&?7H_HK>b|`X3*hhFgJ4*Vb$<~?g}He!RP1U-l=s{!X-$A2iF{PM*jh^AuMU;QyNnpV~Z9uJ`LNzVjHu)cGA zFOj*{WHK`Gm*I;6f{#SO`FKq%aR<})<{*DZ_7Jq@TVJk(aQz_U$+wj6t`46Xoyc@+ zTf8Iu8MFXeYEtWi_i%9+fCcQ>8QwUmfBvl1ZHb-EJ$pTuOw}m%m`NUTS9OvL5{_>% zhuo&DU9~vGWY1t`7^?0*jX>uDW1VkZRYZUw*d}7wN`YJ!nXpinxIG_+#RP$z1_o|m zAyYfjkC1!cc_RP8Fg(p=_*&47jUTmGyBDQRG3@i1JJ626uFMTcc?KF=zy$Z(htcQM zyGrt1$YgqEECsRM0ZmxUsS?2tJcl5RA5e$YItlDS=~Y879M=L3nxd*}xl>8R#Z(6T zfli8|k!Y5;?Q}9BZS6PW8@7~@VD!IJn>@sR(YSPQKprGpMRj93$-H#saPFGyG32o| z?$3_aEchv}{mg!wMX^(>-;jbA*+Uog$+NfXWL>526+CgI*@lu38z~DWfiH;hdeNRT zEnVX#`7mriA)2Y|{Tz@Jo+Ox^b5L=(Quv}@R^=+@d5prNZ_i&opxYCmAX5TL$m$GW z3nso2{errB=p52?oD4{_5YFZ*{*fVRF}zhCF2cVh?+wD9jnP;-kT$jZf06}Bk%V9> zO=|Z4%WCUQ5POJVz#>?+%&z=ts->RRpe7w`o@OjZBbLi5f}2aBp(8_DbvFpQNk|i6 z3r=))C8$va;z$6Q0R%_Vlee65X`$gdNf{D!cgPnGV zKW(8AaQla34(g#iRbCq3&k(Y9GCj&gGEaSi*2jka27@_Q6K9KW5YMIWnv7D03P)Dm zy;iPxqf-7!S~oPt#aWk<8;jv4#WGy|BxCpcI-L_XoOX)b{MTn>dhR&))hvBEm4`xP4&Is&ajhe4ns@rxnyMR zeDrKMaMF9fj>&MYq~h%~cbK!yA_^)Q>$COHXk#~J<&M_ETJ9fvduvlYRtNsX({~jk zkHD)w$e*<2JTr?9f}+2CEKDU^fMfb8fEdXSG(edi2AvO-id-S|_wmP^&Q5G4mWmg$ z(CFRw%BGH5RpcV$U9RM!*FS3CU?!HDuB)9{8mnAREUzlFuz_>*b<3!yY-JyA0AKrJ zF+)DHQmZRmIh7C?U5nNNFWpP~t6W9*&oo{(_R{P>6sxXPqtbNsrKzlP-ScqSv}YIZ zxKpv|^_FaReVy4W;3I8+Xv1ox?)Jr)oL36V1-EXn_B!UGm?57L3)*w$KR}hu89D>`SriBspye-M< z=dUkIQa3-o9~s;GzEk%Y1>Hy+T)iKZdO!y4>iduOCxatA^x+_dqKBsM+eUd3q zGC+epZ-YFG`{D^-QDV;Wy$POD-=~WF%y|XmRCnHl5-)R;pXaN_L=hAU|F%od*}+AW z1i9W?I($`r@OQ^Tc}OoN`0kSq>-Ago4|7S$qBX9Ug92n}s#O(-b)^)5911m#XEgcb z!ZDt_ahn!kj3$f74Aasv0}uRqU9A!RmmiBWszeBDZHDyFT-2!tchN1xE4aByNyp|P z#r&=+7xlvYG^j}Z&1cBFAz9Ah1eK_dDYUN+0eC}rDc-0wVuz5xX*MHmdHS(PAj?`5mRM_~JbZr!e)&!^dy&Ph zr>fr!FoWqIz0tN(en4zTDzKR(UrABkdEtYM@i2``>B~W|x9P0)?0uH$0E7CS6N3Kx zS??6VW$iKZ8^?bf^0g*M(3HxjVR?WJ^byN zqr z454ti_BmJ`=OeJ16UlKB*ZzcG#eVT*@ELn(+0=BVt99Xh$P{ly@IY{?SH~w{HoQ+C zh=+T|EW4>^ZWY-rg%lt{J$0XHk?wS5Cu8KO4nTP(8@xg|`uP*Jq6INEnzxARYizcN z543bwIEppZB`~3q&0u{vNX27L_0tsyzAIvpep#s`D=?iYWn+_|x9J4xZiVH-ylk;s z?HBd+B~S(ymzE3X!~Ls*_(j%J_HI8#GoK@KG-em#Ydmv5C14cpJ3VQ7@p2 z01U=d{(RyIqJ0U6ixDXte;;<=l`(vmn1+*VOKh;m1-%Wd=084 zkdEe>Hu!Pq6y~Nl_q_pt?w4)|S}GvbU>k)VI*e@;R3L@KNl8Bhb^AoUapg4Xl|5H3T4K(78&oHhM{njY}WW2IRPx zkiof0Dgz5C^Z&bmJ@OLw*j_kO-^`kS{uS9A5#m{?jeW?9dQ-ltn(iR27T~)?_ZlXl zSvgkI?$gXUgY4fD(O*h{ir8atR^1-ruq`3Rp?T`k-z!W5gC?Nn7*a6$3r>w=XY1*J zw~ZZG-NO^4jEXEfbp?Y%&DJL*c$Sy>OBfQdk`dyA=!KiaOy|ZsvrK>G=vKa>EV=?2 zRy0(6fR_&YcsVjp#A3;nAFSCSD~OmNEoN>K4e%;SMqg(Nq+fpc(iQ1YT5%IT<;-oGNu=6eQW?MO&vl(ILNI3?QkG9&moX1gAZ;W zH~lCR7<)J=bqQ0f%_tzkGW>-!)@~esogt@OJPYF>n*5lOqu>>ki6&6%;|>=byfL-^ z9mpn7eKaYEGEV(@r9+U1Ui!CpErrPmc7X^z)-vs66VbKU5y!(RZ@d{D3nZ*~#m4tz zighSNd4n8Wwc@*g(OB~1y>zisbf|OzSOeG`7dSLCtFgdgtqpCiW~;k}0Dw@y9d)Hx z@5`D2u4IdKFleq~tz%q$@s==Y5grW(S?;Y;a&#SS^lunH|NcsLVvyv4fp{cubWS^p z%58p?{e5A<&^qy)vTA;16s>`lqMBnQBqJw9JLgq3sK@AL=rmnGQr1^ls8AZg?zGin zia(J|&P_xEo%(_VDF~8SlM;CgH?(HFZL?D8YP4jlj*^+3KwzVnJ=p;x>0=s-NlWVd z;AenrfOT%mzGS$>imbgL4*vb`6%bd$W>dOmmtzmP(U$`W2anbgToZb8&&HQj?kTt1 z2z9?#Vn~}12GX8|WIj5yeckujFHXxkV3&FSFoYf?O@Y{_iRle})nCL+lTI?P^Vsb> z9N&(Ca|~#+Fvt%x_`)782z#!e%MWo944}&p z-XP&Iw4#TEC1q2mIq{IG)kt*CwW+GnUzGg-c0mBjxY+IN=ZIJ5Au*sD7co}N^&NQR zOwp!Z;{{a{_#nRajmP{t`<7Hb99skYvh6q`7K%+{bt!LdxIFv}<2a{0-w1m6bvijj z$ilf$5s5=2W;ziP0XEUfwcPje%aTx9uT+SN3a!!6!RTb$%MW{#derzS%!Vqu6IJ)O zgZzL=v{80%Fz>+O24Pm)l;2>9S%wN- z30Y(S=F>y^%E$*X+4ty9Bea$)B*l@lcMV?GY2RCn{$A(3n6j@SdG6UL9~vJI+~!^@ zftQ9s?n;q=9>a}zfM^~DzB*85JjiX?v*FYB22A9V&e9VPI-qNt zj?W_l5$e&3lnJCBsl1@7=VXcLG&Ob zoY6LY0uQ$t-(oR$d`+*|Bur**d@!ghxE{G@v7C+>Ys+p9xLCEpGl9PJ&2OmC3G~Hg zalAZ3m)WKqzP-7Tlgq**@&jjZoX+ju%UL{D^x+7Mg?<--2|60D5KD}6!85nl7DN;! zF>5DdRGRNoaGWRB30F7(_weW^G?g~WkF`D zn#8)miD4EO5|4ZOzcJxBj(;Lct(!joZ+??926h>A=R zqvs8VPbmuxoC|$$5H*MIse&3a&tY>QW)iDC)PT!7#U;?q9xQYjK<($B`N51&CdX7O z7U*Aux#YsqQ&2)2z+d`!VP#)ARcVWMRxYdlfE(o)T%1Kvk(s{bLqhj1`;W+h${JIX z<|#INg=Fl?4$I!ElX=$#1)5c+egHP+u<_k?O}wrje!@}u1NqMy?dA?ARn>6!^DZif z!YT^(`SSvREmA>o(VkC-FHg1H6+F`Cb2l*)V9kBnMz~^>0M*KVy9ng0p zu)DFYYwrNWilAX?O)o8wBkZcY5&Eu9aciHpkE}eR?7;Mq83+Li)PJ=&_2S&=Qq25C zq1w&(YQr~1zJXA$C`qVkQTBlfns=9gI^P*IBlbO(%rps1S)MN*4y}O%4yO^`rs^G_ z?gKe&DI}3UGK!$}L&mf$K@OMcOUtf0C;mA2`ISn%@aMFF>4LK99R+iBL<4LELEA=R zJGarU!YOf{_o(CWuY5L4d6r!rM2B5LpIY8-0LtbWd99O``vM$)uBPV$Npl4|2cKr_ zDExK>6Y-R`-5PG~Mnj~4ivHHuyhAQ*|0c5qjk(#|j|WS(Ig6enzIP2ikkyQ)+|nM+ z1feweKl37)=db6H5EXKo_Pwa4hNrH~@K^Hza0f7UONoB%ca&0UI8SN`5q(yNmTIWC z3U1X{JQrpLzWze?WHim`CkRXibr3-W>>dFM8A0oH$?_~E1X5>zi@ngHbg*vvhn&{Y z(cVW^KCN@CNiCL~a1^{uQ!1gV@1fUe+Not3@%Kp^TiHKzIPrx`A8zU^V{U%09PAA7 zoFtj=uK8PsUup#Iby5g?jt#16vCS7Az&bhmt_rHxNB%yP&xPVTP;JjH($}M}W`=Ws z`^8R5p-XQG#*bdXIX;q!F3#OGMo@2;8uKwLa-U|_W~-mEc8Tqy5~`)mk81}`v?5IY zRDI@TRx{c$-xDe*fIB~y{+X{?dR(I^Me{*P_b%qhbWjqBQ>j<2i^&nbW zEr|HCGV1}3HNqQwu;>|=wg>RFe7Iz!T&H7&5TFu^`LPBnPJ&a3ugjVC?%=G z!ZCs#>fLBNfh*Rpums`Eu&c0U-JS`kTP0HZk(YN$sG6zE{g+SZOP*)h(kWIS%(%2# zc(pxY&i%B#1ZWNtn?y-W5xnki%^^c7XLHe020dVPkU);G3=+eQWB(T(0HRq!4tgAM zKxV(|k}O@>W9!(v%3YVu=g-+E$WG5iCl{tT($QUNQ`l`YmVD6X>)OaSz2|_!iXmv* zeAgc%NGYQ^R(d$g=}{^$zd(TdJ6E*7R`N z3SmD@L;Zz7vozHT1CZ`Q>vh&RM7GZ-|1z$@|z9crJY=NS11D| z;>e1d9MF*)t!uyO*X^I-w@(c=5aNjfP4TY&4KX~6Ot7#O!qkJ8-{J=)#)%{axp)s{ z(gt$a^gB6ER2wd=z&aPd44NbuVi;k5HfxuN>01^xm!JvGCw)pfEkShMDt;0F-@BPv z#@z@>&p^qTpaw3NK6D&o!N)R zemwJQ>zETVhf?Vc{b_)y6mEScbh2dTC6NviF}qQ%AxCxTi)(3S)5 zLRSQv7Jd<+^Vcp+wRG<>Yu$iB-dXb{S*W>_jjD-@1ren5G!jMP_s6A);IJoLkgPkg zs)S-%{2nlSX6X-h5+a*?#aW~Ov=m4diU3B;O4n_kRKTvpH%!)RHl-BBx<(+JOUzMnutd!EhyzK&yyTq*k>E1JU|^{on{yDP zJ$aPm>R+UIN&OujD<+JANbmjtFyHxM?chmZQk$LD<7{^-*Zf4=j5H{((wFSG%HFQLX212!MCC)LA@t)p6_YpVP=Er0`x~sw0i`{GUB1G~FlYlGw9i zk}2GzPJL_U^43M}!UnVAOHb=+zAw?E_$e26TzId2I(ssn$b&6ge^*mO*HN~0(Mfrm z=9;JO^T?3jzLy4W5 zUlF4KJT50~MG4#>C>|MyNRkFu9O_@RzOq6?>_>Gj-mN7rw3@FnOf*^q>B` z(&M(^Uj`5b1k<_osXL%Toiwh3%op50Y;Y+Ur%>>Ti*m5v@!g2n;S?|;gj&qAOotJy zXxcq4@@BZGndO@8wMw~tocz?f8Qrx3VHzwhf?69c)n?nb*$I+s;lpi5xC7s?SCYWe zB;1jNObzZ$MV;3I9=fl&`3anhCq!X25WPGc-inam(qy>_jDWiAGRnQqemg8##Klor zJAgte*twNUGY|0Ev)@NN*9wemjE`f~_H zk)amSe=aZ(B8>-EP)ld&tH+5V9XRWOQ1D3pS$Ky_S_x`n#w4*M(AB8J_$V{{O}~5G z!7lzMpf53-hVyp*MJ$_<#Rp3t;bWdjCp!PpKm$2=cJpA)i)V$UFi7cTy|F+1t7i@MFj;CBaIgu<8Z&bS83Kl z#3y3_|NTfZg-_9-@Fs9v->(|-v=ic1?$0X}OdxzM79S?CE`8;uGQnorCdt z5=dwmJFBdiGF=A^-4&6-Fyp6)_90hyghex3&u5hE$+*QY|4I1pt0<9mzhZOQhIl;Y z>x!+{^VZy^3GyY`q_rqSOP>8K5+#{q(v%BTsEVgfC%mOlbkNKegH<=^RyKscG1v+G>Z$DrpbRW$-G{81?~gpxNNC{h%(u z1m$eQ`_U+%mT$}v zK)D%F)H*G_>#%<+Nv{;1J^j)^d*nk7Y*nJQAzN!@p5gyxlXtcp1NVy#2a^|k^nAmH z-blpCFA+>1*G;(}(d(0H^sB1kKDuQ#4Lz%{8x2$;WGh#|+pb)#=MEWVb3mug$(mh2d zL9{R6?1&Wd>QzA{N3E3&>esNGR4!cup#NY=letSn!Cf>>Nj+b|x(=g3p%G$_f@SK% zouDJKPX!WHzn~fwT+qqw_xYX9llf>aB+K2;DGns03kbC(TSPwJH)Yb=dsn5X&h;4d zZ-0Ivll@z6(5(^_dH^3oY-FGq*yLwb8j*CvzL-mF(7c3fo{9&B{8lCD7G;O9uqgETi$?GC0EY#p|^luTsN(O$~vp`b?$(5;q58610mK&NLNZ@Q{U#5E&4zmENf$>?+ ztJv8wd|lq^)Dg;Eje=4yJrGXE2wa>;H+y6wr&j3`;Z=&1U!(qz zmchNvSf_Y~KD&K5EZP`3n}pMSgp0IMYLPN3rl8MX0chg82{(j(_aD2@C*Mkkr>)Xx z@20l1Na;q^kc-gF!|ULFW9XZx3-A2z2dx{XvimS#Z4hiw-*^`>{9Em*kQoPsdzf=4 ztxz_i*aW+UKjsI{AZD^~2>thn7HjRLCtHZ@;T{_85u1NIel<|aDg$BIWa(Y+z~#=& z;m1ikfx?JYXN9j?FCkk2KOr5Lw9&0>bbE$b6>Fl-lLXN zEU(~l&~N9H=-6ui_-rj6(QMASL5t}rqcZ5AD>obaICLZan$0 zui035x8WPgv48g`pdm}cs&`P!X0c+LisFs?kLQMG7&na` zf{a41u4?(U72)#?l>HhHI+DUcwt z^yL`ca9>*DTSox)|NFhWC|q7Ggq54^*L-irT&sl#Pgj?CAf{SQv|ltAC8|Y&db5)D z+5Jq|OA1QF*bbAtu?rJtC-G9Rx{F zvXzOtn*VKwJh9XdtNmZg-;zUoj;r?}NEuzOtUG18{BVjwQLKzkL1?VfJS-UaWW}ZF zQ(maXL#MUT(4QDK4bg@mGa|Z?(3DecYZ(wKm-qJjyhAmJm$WE2ErZkL&@ma?!E>W- zWQy*2o#vFei?suQ0&s|BWU5FQ?e-yG(mp_@uF@9Obvo}g#l7WG5#e4&CBIT6S}mIy zyuMu@ePh?E=wq1GGYO~x{&mD}EeXShJ?DgkfZ2w%4TVh3WpAOI7*W0E{EP5n{}xYA zG0V~sT~B{Vm!magf{5cw*w5r4x040CYQEg8`6ZDNXWF8H{8y67(P4!2wNb})@sRTBNZANjeM_&ju@tExRAM7ml%OtB+3=n$}yObtKoxH^OmDt?=H!_4RcaqZ0t^3h5AUCd9 z38=~ge}jHJjt9LT6ULDx{S0(j$(STbxO97`RcOcHH?_Y)9Gwnl06hLPtol4|z1qdy zu{}2PcExZO$6nBsSPq82B0`bj#h188WM4gZ0@C@1PuzTahmDs~B;JQ1emtv~2$F5^ z&JtRr-bjj0Ux?4=42wXPEOZ7g_8xB_;_sJ=1vIyK;JL}%xq7sgm-J>bIdIz_=k5sR zsIgX3BPovYN=1+`>Fz9rHel>b7{7yi^K#0=oCEB{DSf-E(hH^3QWvhXJrt$;_S;+j z!>888n(ksX0{V`}DfOTU^;YDo&WS0~{#CGvi{Gq7K3gQE;&^SFb#iiGI*^)4jTqE3 za%de<#E87boEq!Sz8R1>U59YTumCea%)dFgHYdlUpc;K1&ZYB(WoDF)x4@~@^WsMK z8qIYAB)fpy$fIueLU~(nzvl;=s|*tiyBJ@U2^(^#JggZ`QHbBtb~#zm-qGK$^X7_F z#~`5u#Lva&!T6>}Q^<+QqNy=Ra_=Aa{oLfaDDs*0MBK~Et}G`GtYG)!NIHaz-~F&s zJHZiT$PQ!^p*tF!E}^Z!07IZD6&mc)aHF4W$7QJ<$hMOJ3S{NM>g&=U&+aaa`{p6b zQXYOv9bT1%Qw|386==96y|=xT!7o2^@A=EgTI z#135zC_`Vr?!G)JfW|{7x zX}qZ^d&zW|9WMA5inq0cO!S|o?*bhw5|1k;HaY*xT>*D(w)fMk;^h!;+u zyQ>S2SeE+<%diSnzKg!Bq5M$>K0_J*B~@E-I|v?8n3;JVRm+l!POvsaEZwBEj}IN%gbQuYQiSz%>V(GB!@ zDhW@LW7H|jXXsxexc$zbWn?#c(5>(1-88?X*dW6dzO^VeFUEA@dp5`Nuu??r6%AKl z>-D*Y1rvguh@#RiFoX_I2xYZ@)Oj0a)rOMHJsUeC#FWcL{GS4Ma+zcHK%!ji=ArkX z2ds5kIkEHQrUUczO=rk1>$$Ea=7rj$X6Gyzc*od(wN(A?58<hf`e3$Cw?xjK7 zrNJ%rack+cDyz1k+Eed7MB^{eCNcZP%UjqYsVmD$iT7Y3HfMRt*-qTvTej9j_izKoF)btYRIaT2^|jcWK!IL}Z^I;P4OSv{n@_NO@#Duy|4)AHB7fv{kbp388 z+fm44zegPKDed4=@}{oVwfzjq{=^NU1#5Dj(cK3g>A7R0 zhnBGwhZz}W%9Hj}JnH3XjJq?9b99gq+gEcY-D#+EyHN`?PWuz3Ra-6!P+{exqWbHE z=|hN6Yv?517g2s^*$o?6N{G-?J`WWGyFpvv+%kRzb}*F*a=#9p3_arpf*Clj zGNRUiR{89hh7zX-Um_fBp0aW3R4U-{^t1kv-_@(k)G#qReFC51Q+m8XJx z{(#QZlIXnmhk%xi3P1EWD7+?brLl3Cn*j%Zp4zU&IA#HtgzD+ZB=aSFDHPn}1&_S@ z6EtH33(-;rF98te6mOUr6uC7ql(>PiX=olJsl`ZFJydXIqc_pT%Cd~uDrgM9{ko-3 zniHq+PB{B7A<-05)Z6A~e3Ed9C+RNiI8radaorL>;kpG%^lOE-)ZYL3Y^GAf=qC$p zumj~8%wJVpdqTdpoOe#8_3U8P>K62`AaN1>#sI5uo9II^HLyk2P$@o3N-6uMErltq z)=DBfeHp)f=2LyF@#T-TaDI0iX=kRKi#I%y<1J!}C3G*eRw9WEdLORtI$8bPFI7>( z3Lto&;8FN#x`|q~dJLao6EJsEL_bs*7JgRTGJ%K^H9A&^-__&`c3qF~Zs-T_CE{=H zA<%k~Njmhs+;Ea)d?OCbKJvKsA&pR8jt2@}imSyLJ06Y>Ab+ESmh}j>i!ffP0|twL zl1BjDhBT-Rd|(yr4P0XDnSif?xgUp}(rQmjtv)`4QXYQXc}kiFg9?Wmug40R9kn$N zakDRVv{?8c7futWI0Q*Tv#s0Vu`reheIGf#9}7KF?hSOUDIlu3sE{eoHK<}*ryY_* zPSqi&SC;+FgsCL%0HVjKm<1P{T^PluV!>7#Bw_(oL6gP{C~a3>-x2G@tJ*r)D>@;Z zoDLtxBRPw;^%gk7;;R6Lu$sne++E2hE6AipJYSdrI)Va|b}kP`iScax=;HBVlrNBj zsMK;)X0@%n`oc;JdZ$-2xQVmUBmsp#CLXa)W;;K!b z;^3XL8Vv<`1%DE z=SY|z37ItK9W%W#p-A^<0p#>G&e&C0xCiP%^Xc%zceOBB7t;*VRBzhnmKIt41!zqH zscvRdqLS@dK0oK~~}JK8bM9Z$1JlJ^^Z+>}(XS(Y#lN zvz1$eUQ@4UezXu=BNADHb90pqKRm>I$UuR)#+P?w^{UqTJP zBy_seZj`XV?%@o!+l-LjXZp5ag3NaBb}jb zLwG~f=+d`H!VajjgV%g1orKgWqS*4M9U3EX?aP7~px7zOo-TYxbw!6+x6sDz3N@Rc zg?PaaKOQ{7v;c2Ji(lU3M^A94Jw!APQExEGsD-?D7>Brac^K1O5Zb&RwucRBFfZxL}TV@)--De z%aTg*@YbOp8lZD1kEK4x_^GY~t(F9CWqsHtXO(n+2&h3U4QQr~RIODC2gqqKpGh<5 zO`Rc!*i(qVRnIilFEn{L0(N-m5aguuOvf07$%a2&Cn@AjyE^3Tel*~0@}ZIFfCfLU zp1)n=u%Qf%rY4-%fj)4K419H-5IXsn8{mBYZsrUUB+K6KS;MIQJ zY{{;FE(`hCfWmU4sG2kh-ympbJ~Je>H!z3B-9Ro!HO{n4-xNX@fh-D@*keo}ajCte zR#L5mwVeFWid=-K(dUcy-RO_sYyw8DTjl!#9uWDhqgFgyF zHoW`~t$W)Dg6W11R!88u&5^5dY%Ic8>1JeQx|Ymz2*YLCULUGkJA)4b!SkEd%sY;I zgu#Qfn8v%={OOm?LtAQ4E|^YN$Sa=|+~3`Bx7{6N2>S}nhs09ISk>iu(^u-)I9 z#6(IWwtTsh<+VD4t#3m+ceVmIm|#o+P3Q_<(yEJeoegQ*+Jicl@6?JvL@}3l z^(@FLQa(!vtwJPtuSBA0Pg@+FaqHh-t~J5>^{-stEh65JQ^@LcEnr{C_S<=w(6a3( zQj8ft3WM17ra|$00{^eqotbfTfOT>Md>R2f#x6mr*In0wWI{Sabw}JZR8t+6_A`x*t_zsohz83WUgkq>ygT>sLNT6?~W`wduHcp`BH%HOh)B z6EtBdy?W-dh|Ui1$i((QUfokb5!@wsJ%LT_iu}Qz*9iQGA8EPIOce4C7ei$za=gcj zTh1DB>vLI}W64y1raDCfKSTE+=JP!Zh0Amqs#4Cw{}0R0iYh*>P7Tlmeub&IKe=if z;ZmbY(9fq_BT+!)(!d5SHjHS^e;d2_Keg#p>#i!sCk&naezVWa&aF1#O$2T95jtxB z%o2m%iaCs;hds-e9lk%=L6t)gp$`}}SSPnW>$TEs>T$D0@_NWtA#-upT8axoEP^yq zhsLxuLQm~YG3j)OY0UkAlMu34|Gx5u%9Qi9r?uV}>8^uFY2&qGH)vqxV6vZ&W}|Dr z&KWPrnVE)Yvgt^{ET&xM;vI~C@O-@FRXiVls+u8pf+ql7Gm7l)hRkcIbCmt8 zZHg7ec`Gb}ACB-=W>6$;g>ME&?KO-to`dwpl_F>_A|0AP?-a%P^Kpq<#T6?m@fotm zh!u=LK8&uFL$~ym6nhW>X%;}QhJ&EEjdV0IZvg zoUq>^kSPd^&P4#Wi{f~?E}v9u<>W;nOGQ^&S&W@ez%-Wt)tneyLgB+K4$or;RNa5C z28;h3zKAO7;%8kCr&jqeja^{WuvEBNY zf<$j6_XCO{DFmG$0C&V>_P{wlp)he0)gzf z2E4ji?&cP12X^l8w0EV~V_EwZyNeLbriL6i9pX$~o3EehZ}USqD@zcUWt|`hDi`c` zL-0#qE1Dkv(wDX*gcC|qj{U{kLIEK-aADBK#Z3>x13&~*iwBah+5@gaXGPoG z58+~y7|pLA{g4;>ZmT2*JRW(cW!0SkYW=^J7$TdgcS}LDn->r}S2pDgqJxQSd}+}s zo)`I}dvFWSPAleV$t82SH*Jr~oeebtSD&6=$RTbR;d~S@H)>6&^KB-b<`Bmozp_2l zroff|EN%)hO;|^U+cVJ{Qyh}?Q$H(z#YaT~;O-@%Goox~>G3cT3b6Q-9ed$mZpl?Y zR9_t&0f)}-#^mmEyKo+TQg%CrZL(9unG=Gim*D6-qwHbCZ|uRb`dl~Bzd9=n&Ny_o z1sbljR#jR;;e%Ih<0VNeT0EFB*h4IlqP?_u- zo#-p4NAF3#N4N9_&x&qc5`YxTP|Iu_ zK&Ez(Tg1!_zzv5J3>hA>W3hb1W^>u50wUcfM8{J$gvS?4WN*wQbUI;vAS2#8=)?x@s0LTh6_`QA@*Ezl_zp zCFN@6MPyx;F6w%-cgD~cGighzRr%62r?o=NsY60EnNYN_I~Cmp*V9HYlCTi*l|4u{ zS+W{(?1wO9M|@Ab;+Zou<7R1KY3@_{*PoLP3xQT4t5PxTP!3OR>B8{{!$pNDLcr6XiecMSd}>c3_FUD?-(e9Cf9GCdO@3 z3;08OQ))J$i6X{egf0T2FjGELWhniG_C?MQ0on^-?!2Pxlc%9n?U#iEr{%hGJ%?Cv z4348>NuK67O8X0wh>m+Z57CK3Rcm;$TfN1L3^(JkblKBUr)ssGG!N*}AH{xyt?F{y z*IO3^K?r+6Vo0!Amz4i(<_LYeI0$Yqe>RHwR!4I{27P(0wvy?Uq{!?-;^fni*$^|% zRxEbnjGUQtFc$A!6*=LU2+?|i@tXqkkZUDemUR4=j+6FxRbI-U~Xhp^O`!S;O-l&K&<)qKbVNEQ=W)hTAn+igI<^oJQggLyQTjNT9%C`0{ zv@o61!(Qcgu|cg(&=82)$A4QlU_d4xB-F?Yr4I^tcC^;5=f-b|Sojx!<8>vYxgB;! zJFmGKs__=A#=#GpWf~Ow)XdpV-W1@iK#Tl{8{w}Y+EE5qt4c{+v(9+1@I1cPhNsI|Gv>>yL#J1^_#!h@wI0ZPy~Cu;uCp@ ztHIC&^`c9x1IO(4%m|2pn@&$B5Mg?Ps7K!eJ8FZ7+w%BSbGaN0z#%mG`R^6|Kup#>SuQl!RB zFKKxofQ}2g4Ef-YX>JvmIHa;2i9$^D>(sP`V#C8r#f97cD~5QG0C-$|(haSW&7O%`q~ac;Z=dL``QiF%=r;y;@nyX^$YpY*h)to~zhj zb>jS#FON(oWO@c*V&5fvda)EBkj108ISmpkK&zaT@Ng#%Wgn7aj^-}s?K#hV3A=8o zl?NH5zcjcCdc}00D+9^Y&@A53j$kLVw{JBnH6NhCz!aFBM^_KuiwDEt3&yHU+M|iiREdCR) z^k1M4dS==b*JA&qe&KGK!+?MZ9a&=E?_u9Pxy(%e$W|}=Ymg~lJZ|~0GSK`#EtJmG zQFat5WR&YdMq$M%*YyLUD?y9r&WMc3#>#*^ATMBTC>W!Hb4j!|)tlAw(kOV@g2+#n zYMgSPe9Tp^X3LZ zBkC)rtbZ0DmX0{rsQv;A6q2zEdiI`Ub!ngpo5eHaqyCV(_X*Ir3 ze%We%xv&U(>O5EB83tSCN39&W8De*9>(EbNIEFHc+gnFWd{#SIm?PVgZ_#CY2EHkYiTnsu-2T#ckmkb-vozpx!u-MepzQ*dH^-y03fBL`- z&p<$qlmcwdA>I|C>UA5#|0@JPgc{AOXgcEwL}9p#!}JB-21Y8=!qFg-bO0}i#OMSmN zC|<zK!4wB_V_Y|Jw_#e0v3SNTsga$1DsQpAW#_ zhIQ5KJe+ei%B@PWri>?}cnXj>gb#ajlAh2<7Me;c83a{-j73!ejIwwIeFjj-3tYM$ ztu3D2JhdAyMA};bav1{eYfKpzR(M=-q$dN?A{Bg3c$L{HP3ftQ9Rqqw?ZXDF^=;9B6pmM9zED7=j+p?nxxPSd=HrfqqKWl%z|^A_vCEFplDy zP_K1w`YW0^)EYft~+CQ%7wG#R|QPm-RQ43|VQ_BG1u{3o|~s-orH) zM3<9RTnToNakpBSM0KIQ(^L-B-d+d`PmYd93!qRK)S^A422tvFBGi=>><8Hq!gRED zg4Q}T!gGecc7)^ty_E-!uM$_H3ar;6JphYKI3em2y4a*=r=((Y$luOFinh^~kB+4$ z9kD+!3+?xjgyJHid8GEVSHL7h8@WKcfbe1eJgP1MHfYUG9{WYt#|fa6AdbA)x$63p z33I~Zj>4_pY^D?%tIq5`VJ(7um_iN2e*aLcrp* zDGC}#f{NwTIe3uwo1h;=1kR|$r**|@nGaoYg?e|h>!@Ii)LYrt`*oo_a3(WbsB;Of z`jhe|RM%ICqQQc8sZ8|WHa53$yM`;rVl{Qz(c&pI@Fx4uAju-&3HV>ky3rmGhl4(- zxi%HBx!DQvTq$Pz?IS<_ZG4{X!EY3oJu$-Fo&?_b_c8U94>gG&8b8o^lSSQiD5Zms z(g8ifN6R2iFUG6lrUGQ8Ne@FIR?*D2IM1-~_W6-kL5e&N?o)0w$_#Lm8qbZ_QZF{Ef*n-Gk!C63k_Go`)r1=`RTbV3l`4A2s z3%;;{E(dF6`we4;8SToBp?6$vY*~3pa(q;;LFahGVEwrQl2%)(aoGg~s-Hh{VAFzV ztSRxwy02G1uzrdpug)xVR&L?9HJi-~eWNZFyblz+{^|0TUZXksBsq;h9Pgxj>>Wk) z#_rigB0kdVfquAiS4lh$+zh3ny!dbP3fxqXm7TOoY|WHIW%dF3t0Y1|eCnV$Y*r4< z%ylUlbd;(#>KOH; zFx6sn1Z>aLf{DO0{~zU}@^LF=<iXa|HdUoW5Q_j2x-f$cyJXc% z*;3-#Hj1)nbtPoid8X#a)y!ou56s+o3K) z8ff|F{5p%yd#n`*Q7gBi*h%01&N3@%io}I11A>jQ!+)G*?el|@EmF?T)VXl8g_WeA zZMlnqGJc{)vt&W=X{R zs+?tq0VuFo0wYp8kHJ^xCA%gZc

_9Z6q#F6w|}3?B;Xz;cev=OIhh36e0?9<<2D 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

plQ9>IjWbRqrhtQ7eeXc18Vfk zXRxb}B9~ zkEn^kO(uLa6OuprTwA2Hs_wC_juP~mSWU`zF9NN><&N9U6H`gsX<^Kgp(u@lqeVdW zQY`iKU${PzzyCjP;OXzp1)2wq<~2YSyP`iSFC2e!^6E%dpbp>}a+FV9w4|vWa7#7M zzW5FpSsf>Cs_!1rYnc~BU#(+s6U)!49@8ELa8eK5WQ??4i8Sp+FvssSC`8oCmg7rP zTIDx>U3#ffs4Sm5Bya|h>7<@aVmb`&uG-**d zlz;@1+Zb!Ggtv6R=WY?=j^=Cr^Li=D+7jh+7`Om&HsN))4lxl&df|2jMKqm-C5iU7 z=jS;23gx2(U#}6{DTUjft%H*CeV$!Nuz^wxRN!85aRh@YSa>6;-)aN_cYWyu`@HY0 z-!en~w5Jl-jh$ZnUWo2TbdX`P$DI{cE__Cd2t1<``99A}c_dAF>cULoDUdLbDB}9n zCaTb(mI>1u+v>T}rCb~j_$y`ZHegx5l&_O_Kyp_hJaE{r&i}}WlTh&)c7lM9#@ojv z$vpKT>afgIp)(>8)khB9#u7?+^=cm_zngbjB@8gf%r}ua`|86M68=|n%h$Rldsf5S z#)dyZR?nU!di5fPPgNu8Z(Rfx*nh2MJs#>P(Z*Cf{! z;|m+y(b+0IWQdzniPWx07U`2@2aW4m+>o{P=id#w|JntvduBY(A5-$*tmncpP8p>K z+f@w?dDH!4UHuKvwYKUa;IN_vhZ2Ic9K?M);lS>0{9Fby=s6avdKR~&Of7@7Qis=x z5Q12sGipJ+bu&0UAnsmyhWpXeAn<1&Ojdo?ZU5vV9x#jqEW`kS)tr>49x?P69q|8Z zf|VJ>^^YkT;wMkV+h zPFcVA*Pz($Q3Aq+M(jITJa!@Pm#nbE)dlcuV6A?D4b;~OzsnL|s(}6V9^63~j|(E; zUH?HD+YhQH zIrb`6f{#_QJ#sF+LCkSyYR#>7Qft6&>4^P^gRu+|0R)PsoxMtS)+eie?QW$yrYA54 zO(xA0KzcFru?$(0Qs_)xCPa@`t9hcyS-Jso8>j^1f%ty$ISNTFb*=(TvB_!@zG^?o zJ>R{0q8%Xl%yyyMr%t0s$?*LvG`+}*>8!JcE+^6vh=-uwJ;s3^92HG2ghdxruNWEe zJ))hY4O)-qLVS<$m#Hj+5?$MstE1lO?^UUxP8vN52NBk#a)BsqU#uvVM@G3IsYh|U z-Aa~M$$Wmy?)4AfSeWgNbPMMr0|0#*6wL4<#!&WiPVCytgyn_SdOsbASsW|%&zR8~I)L<^F2N`!ua**jgE+ z_za8Y<4alc`E?4KUL9yoRmIq&)`3xF`n{|JNS^Doq!Qv)V}*R^FbLeNH~x^jDE^(t zqUVkdjKWRjAT_g+`QmQ9w_o{uO-XQfQ7!KSS`*pHa#`qCka;{zoI3L|Yjk4qjEhja z!)!h8vPx}}C2n-7&S(Q3&!~Gb#nhRQ+t{BDL43|TeR+E)IC8cb%*%ptQj1RLT^b>F z&oq3zT{ld8UvraSuqJZ97f*u*G-$I7O0s>~h0KXg3w|oGI5-!0YsgfZ2&HX7TATqg z@14AyO)WWTJz7_Di7R!{;c)GhD~;>0Mb!^SR;DOaekZT=GY)&;^|IS{9C-5u~9XfAv%*? zO=PQ0xYYft?zkN`@RR`6LqUB1?LOB7as%LefNuP;@(VOyJr3-Z(}W*YK%ZMX&esmn zMq*5@LX@QtgMO|R%=lf2OhCY#(N&2hukmf;(UESJo&8*-n;;|r%^21$3zb4F?iuE= zw7@X_E=a+pEUXO`>bN9ic?v*B8y*+TV<%P~Z*#^;A)XffAy17TljGARcUtgD=S3n} zsJJ{KXXyc8HCE2V_ILWDfb8*qjyMr_Pze$^vdnX&L7sul*j z4*BL>#q^OF1QEf7f2z)T1Y473$6>hw%E$}^2-*FkJY3&oCfg&^rR~+5sB5?Le-p*C zWk3`yUf&3f_q1TZfE*kBTY%CjtS&6R9JrExSuPiR;ckjV_t8XmEZE)~;Kz%yic<#1 zmaFdiuync3*Z5MFGOda~a=1D07~q<2gkW&OA}X{H`La3|ql4&T+%(PF%&vHwY(Z8W zjA(-&`h>6K-lUsb(+{%}-7_tmQ0R|n{tUE$y^m>Ym|41TEY7l(zaR1UdMeL+S85#t z2Y67~10|p-uieUj)&{qSe~XY|-5R?hJ>3t~B`~%dkWuuG==YU*!I&)$mhjkU15jLh=e2jk6b;&iK3UoDRvryZja)jvk7F9DuTJUk7}!z-kvC5 z@v*r3sRi#qj*#_@?}R0XyLs(vlY8aCq}A(eBif0WsO$om9gCsxUv}q~t04Ao9sWeo zPAY{y2F3%W?$~2I4l*KhZKnXbBDUBlUUPm;m?sW-%Oo&eSh9MG7NM1Cd*u;rP#Pa# zLpnOV1O*t|0`#19qR+=Tw?Fnh;9vvW)5}{uzwK6(J%BtWHCepQAal+(^*bbLod_!W zI=a|nVr==wohtX2HS`YOKUDkuItJ;;!ypn1VLVf)B2jN*i+oqYyOR3D1TUQ&bj&tT z)GX=X-;n1lr$0@VWC5f>5zZeo^IFvZTd@--xG|w5ToZwX{+arg92d0?gmuFJnmR{d zK_L^`kl|x~@PYeADf_@b$p-6g)EXcxmf#SLQ+gS%kTt^>cKrRKHr4_;&-;ug_QB;3v+n3#DB+hoS&6e*&L6AF4@v4g&!Y3n$PG*uT};7cd5LQJ8R2z(APk zF@nGHKrmt=u{p2hFFrrO2ZdPw!mlnJl2h!UjPiEe1(4_Das1kz*2+s&PH^S|l?|YX zIgs1Znzp`;RWspD1`$R!ywkKfRd({&ExwgYN@I_l$UrYswdeM_Id|3gW*XfbT{A?x zBL1vmUV-qCV}qeR4JVgCGjOFtI45mLUg9C%rd0t2l+y%=v-e{Rw|y+ItR-37v znf_^=Xq?SqE5So6VDfX^ghZl!To1+L5rY!KV6-pQ-@7qdkh|l8?{H!GA)j-r?P$Q< zxIelp*tm4t6_;OTgZ$wwCH%XsHA++S>r(~nQhUG}ua8yGfXRNx9a@oc*`%$RdCy9* z5F_ZL+D&H{_suJH#wZJ^;lkV8X6M|N{nlYYQ5M%{c{YV>@x^r49Dn-m$~Ci_-9K{e zcm{hMlF2mt3&EqlZNV1e89B>y@lhqaWcmxh!3){a?ds5KPTg>uM^ZC6$t2oT>K$9_ zr+dUc$0TL`$7_oYK&d-*5t4OOJK|(cOr{DgzcIdz6^9Q;mg#%_|^^NWL^FJ)e09C7~jl~jSo+3=gRBN z+T-=>w|C+l|9MUqN;uVHobH@w-0sk(Q@4FHI*6GLh_vjy8{eS1(>jK!Y=krM>TMdW z!GDcsYM^5-k|-?<2Z!K6eU6l1>-7HtoaNIQG_p-l{{kh`@fxr)Ae@DoQ{vD&!xt{S z#O9P{Z{;NkVAH30z8-J8?@Yj+O8K(^|Jp{CsCV7CCT%2@n;w0i=rrk zlpMC1T?a=E#Ekmi#})T!2+Hk3dNoGPeMdb22EAH-0L<33p(NQ*ML{8d_Xo!mRzGhu zQ^-I^cPRIE70}#hVXP<5yPEF3Yq^Q-A?RVf)4Xt7=NKTY#>a*&5-%+A zqT_S#-qJ5*-vZ9IAjMstd9qZZ7i*KG`rIrh+~R%7=2R!bsPc%l3_}SIYLh%>YK|-H zB8?+Dd+I$+97}-ZetFa@MIeHAQjW@?=c`AEV64TPX0w<+{R5>e;ZnCMWQJv7Kz09g zj5VN_-Ihh9LxiB1B_3-ct}XAVMSxBYHPZR(kv0%M8Q372@S$3JpZaX(CtPph zk<<_bP))$`PmJ}2frHv1Q+b=nM5D)ganvw@ZmS2Xn8UPw*?@N$>6YN^+W^KB|ZD$nNKMVV+C`vKT$Fd4)%dz1)pTgTu z6{0F}a+ru%AxjcVB>&E~7{EXLRnb;q%*sX6^No$LrzrC3i#KX-mwNE8erV3D#>Mde zd0M3|rA%^wR8&|IB$cQL3F?KQ3xqWINzjsH`JeI)x~ua#Xc25%KL4=roL_+ie$sYj zziuAJZ-kSFL?2Jr0gSz*;YWA~-xrx9+n}w;f*gsh>|Pm}bX{4ATZg%=hH>$kF$23w zyU^k4O@lrvD9y$c<2j&TQVJPR#cJJyBZqdfE-`s^WC9c1gvG;O?M{m0~7a2|A6iEVyb@Ty21DQY|@}fnWkua<-o?3`qmWD`XL; zot=~S*mFKEp4Un*mv%;ueKyHnKB4&|gx-~x;u{9l{-*Nx5=fZV~@G7GE-SLiP8R%l{KB)GoN)!W~+w&AZAxTNcZ9blm9 zRu1gn(V4XDMR#EuID(#cSo7o#>u0h&;PtAFw!Bg5p;$2G`>dfCXF^SJtItnAXlJFC zFGyT^<(;Ee)l2069lm3;+&?92gjCeI*{uiw<2hW!vCgf}i@yAJ+SS5DM#!xDOlKA2 zLeYOOFWl<}KBPsr&buvLFF4~hzg&uXFdClJ%yRC-x+e|9_-e&mfq9r8E>YmOkxuE} z3f(L8tktDLJBSc94e)KNA-<)uE{To}N390FLelP_zM^DabwcsDBYm=ZYQ;lyc&6i= z|8uviK=+B@3~qhz@=VX*f!OA@T^0rX8z>SHYLbN`y>i3bMtVf5bLa++5g zpEibCqfjMHS)9fAk0^cL!MgfB@!@Mc09loe>I`NJ?K>R&ozk>$87SGqBxb&Tin9OP3SrfC9bIO<4)y4s~8LudNDT}e&c!Yf{ z(4P@slf;|THr})2OcIuNAR-iJX>24JZVvE<$~-&$`4coy~ z9uwe;lp>u`Q}`J+ajPj9Yhq8tb~v;K&6dTJAROPwRwbZug&YojkfnUYR>w|~400Bb zMo;oQO5^a4V0nO;D!rLPL0L?%I^!HtDTaK}Sb~&ajth3h;RwExieWZmqOQ{c;DR0! zpsN}5#F?Wt235Xm#gd95u$^q%uL+v{cHX)4F8}ShC)d=86~`_GY`MG zJ7_HB4*J9_F{YtBiffVgcn}B207hu>SB};8HaPLlPOzrY-QkN>3E8bt<$6Q?*Z-5Ephak9ptB)2sjfYurqb>dCuTF~gGOezfA&lv8MW1yAL!vKus z8AJU|t;UmKjVRowjC?Wfx|Nt71dW?DIBAVySgg>4O|iNXcR2av8i`2{((*?^ajm#4o}JzlYrE;B@R#NUpXq=Z7I>ZRWd66s zv4%KYBYQzpzB;FZ=AUwEDf*4b37WUDhDWrWjIr&i<)$^#b0pc+1oons5+?%_onQxd z7@Vb>*M?PZG_EVnmSDoX5v4uYn>NXh;m2znb@lvC)+4g!iG3-dnm+z%`gF$9pNXA* z?g!O#_nJ?T38>401uUtl#_qm!bmjn(PI&h{&6+ySv&h_R?+?l_j%g}g{K_j^Ac@4m zMIX1BzKnWVn7l4x1;L4jnCnB0Mf8h)Xr01bLbJRO8`)U#V4w!FCk!{Ndq4iXAO9BI z8Mi5$FtD=H9E}&&YadH8*ZDHb@L`J&+)CT@y35v>ceUP<_p|lAD`9kHlK-BwqhK9o z8+Y)zcM{bT#Xy<{OuDX9Jnp<%N~is6Ud~3dpqZP3ZCLk2@RY`t9v)E%gpxLL0i~nr$Qd5}Vm^=6WVcThsa7C6rBA`` zvt)oT2NnB^8Ce)9d`S$9W~NQ2%YsqrMH4-(d988H#Wk0}Tjsx)9a z2qq4fpFeC0BdANLWhEP;J|?=TqS9We1}ZjzdIw6tC~U+*A)4nX;XYc#K4Q76>3_wP zY3TGuw&mJG5jW*ObXdELPlPQQ4Z0brQLy$KzURLWKbMIh1<#QcQgc%rGAfGRyH6M7 zBs#y*5}}U%(D1kN3LIxm>WOAKfU~m^LFQwclX5zN6eV2|mYubrZ@6^}^9LFDyNk1- z9j{q0=G-c9f&2vuarc|zX_XD(%Dt~GYkh6tFQvUKk}#H!Y>IXeS%LZ^`zf|-p<(>T z-wN~$L3dfWs1IP!&@KRXxASl#$n6C`rREi1)V=6AUIVp;i2Hv_BaeXl%>GM~u#$XT zEFQX=^5f*6$^s)n%;Up)3j%d0N~EvN$H2b2TKV0j>m)WA6Hm%$|fh=R9Ws&WdrrqL^Jo&JI)sue6+ zI#Rq)76Z3u6}6DT%b>e&B-!9LR8E`)3T_n#^&VyCluNrx+kSQ3sWH{6THHV`9x@L6 z{96HUDyXqAXVVe@2iN>NkUi?F-DJC^Ek_ZA3PL7$6?-qao-XRCbIVzC2Q5x@RDzU) zvUwOyH)%DQhw&BX6E;_b0%lhM`L5M;ai3_WG60a5&Da-^d22SFwB&y zvY5%WsGU0RMaY8o{LBQ@ZtoIlmWvbMM)()y5);g2(Q?{UI61qAMK(TrlYDP+OO z0KxEEV6F(R`DEoqm*JJhifbG8S%Qa}(ScjreT`yA?=Kv}w_-gvUpsY3zi583V0eB5 zwJY>Ri8Ld&(v2GcsBkEh2TKN{NyIlEx3 zGr0fhRx-If#p)Rd-y0XC-pNo;jciR#VqTy;_uiCeXG!3#-(&`Pc#yNV7Y=lvR+Ykf zp&Mn)oh-dOn5KS{7vwKZgr9A=c(AE!2UMUz%yBAp*5^D#wLRwV3hzM{8a5BD0`F1 z3G6yj1OAb&wW~XWKTTAgIyXJOtW~gs(?xZlY`>LdBH#p!(ZG+GD6u8*{k>=U-_)ZA zEEEI?XsVJ99}QtulPvyDP-bmF%x#>8a`UMu9%c!L>-c#=kVYX;qQPd|wpqnFJNEEM zWW>sK(!_t$8YBe^@g0fRFFxszl4|5KYKC`CfYM3j@SPHBX`A-#F<=xt}WdoQsBT%?ww#tk5=pIYYT-m~V= z@{>8}@`Z&o%>stgVELnkEt*ffa$%3A$#w2?sv_P86jdOZ=x+zhfuF$na(w-3-Y=8n zf$3wOwEchTPw)H!O4L;n=(no~0QI3?(C}|+7be*lD}^KbG|yhA+YyZlp+XJ1qvvmbg>QMAo!Bvj^BcciZh>O|sf-rsGLpyR@S^*p$?) zS8^bYAEE?pgnFZk63GDL2usKvQpFp1h1$Rx-_ho%;A-yBXx0Dc5aU@v^YwveOwo90 za%w4q=bZApW1D(Z1yEfyZ9Pru*}t&QgPlUl zVoxqvjPS_ulozm7+m0HIUVCr+?fOqHH?-L%HZSvyf#23;qgN9(tJj_9HX5NlLSpfw zkpr%7r(~3>H@LI`gZOG1`D?-=0}+;fPV1SLts?a<Lu*~yg;2OMhQ;d>m8W6yg#!L-&xggK|eH+@6cM1akgUPs)3-~2x?F|fVof? zEA41x(>?;uzjpXGX?tM|6e7RYIx6xpC9r`QwVJMC6I|;+9g0LGzqtUsU>oAaqx?gLc*2 zwcwD{1HooTPzVE&HGTRbkCH@l^M}6-jsnJ;=vpJfpe(WVE>4@|S`x8Po-{XS9Yvc< z;=-y#LWW(Je!%{Ze04{eZEwfs=fPu59JMi@wnnP8Znq=`sCi4yIh;Wfz>T}Bslw{K zn}bbv5ZeKF20Ox-B2f2-Mr-zdf3QVb47zVsMlH_kc>aAA3PHz*s_sFuC8&cr7CE=q zCoiFjO?hdrDQDUWp!;Ozyq_z*8-qPQ-3sq3hKT9*rs<&EP3pZziRvsU;w28FXx$p?^=88thQ$MS&z?xa$A z%t=5CcJ73A#4C(sInVdT?a{`r=7uH@>{+r<_#_1@URi=Ua>)^i1&v)Ec~;4FWI&aGz57x16igGw1=#S=0P-IT z7oX0o9mL4_1({zJV?1O#4_2YB4XN~@ViH@MzJ%jCr4I`{3R*x`U<)wbnUtNi7ap{D z@>evvht_X(-1kQdp%aNR@({7GDl58G38q%<9GTM_*Gp$|m9^5pXHyUL90okR!}KR= z89<4DI=IOH5Goy|X4L1I{%GEEfKKR-QuFx6`ap8kLen2__--O8M)lvoY|>!~in;|( zAE>aG@$t}?Ae8iD-orbINdtb~IRXy2dFI^_ zW4f4-_PmSC9+wRIpDLIQF;bAaOICDG+7^F<^w@US{r^K1A2udEAM4)RL}^wNK3{gG zUrB0MxyI1@Yotsdpf^^6Y1?N=v>n5mXs|>TB^mitih{5GP#maAfomS3(&7~!Gq_pj zdFmO1HQW8^w`{&6;vc1Z@kG9Wut0C`O5b=!zZjEhZJltS3CMvLY^bu{rRRF*>$w(D z$NUp)j{Hro6=E+Xi6VWh%W)v`zs_0_g4V*6Vi%~1ve?S zZAe1X0J=S?*l}Vqmy@z#lV=9-R3J&<&FXA;`55R8tLGL(b_76epDLsrxr_`d2}Q3f z=H#O)poc6_|5jrcAJamQ*hvx$RD^~erYX`0(`1ro5*WrVBb{#%=q*k(AS@-9&%6R5 zKwU-cvXSzd8B{`q4{iKl9gWq8+q^PHNp2jFENcb4ziVVi1OCQRg_QO{l(iz*Ry(hO zx}+;}N~g=(Q2@fkEJ57AVB1fdowZtP>$pDE9d2%D!ObGd|H4=rb_q<6+iHPXIVYen zn5~B>S60~^iA{%Pv||7xy{sQjG1@ZFHr=T2S{mt}Lr{BRc0ur_(P2>jE5#7zvRBa% zYM9T+fPpe7ODhKun#!hO)(}lF5_AsEyja6C`kgVFr!#0U8p8eeCy@;JOn(u(BSBEP zQY@WTPMix*bIptVt3pKSQx6oi)gY1&q`x<6aig^ zYG`twC3j8|yi`^S|KQitA`3b-51%0pHtc6id193dG`y(pSjO<-{&y{!OPKdC;qAEU zOi;xD{UvwK6cW0D(@%pN&fDy}1zW6nG~1u+zUF`?^70;0|7k;ZEbtl0s~x+kI* zP|0PbkA2ln5C7F7cY~3wDvT}A;$HWXnz0(OpCgV)bbA)k+bqbtkoq-kh?=Ni|0vBY z+3*FI#Hs4;Pf`)QDfqJ41b~VP843vOz)*m0`w21KflC~~_Fb1tO+}?oR{i;q#cN~Q zd7wWVOpcr3aRkNzs8Rj-7i_P^R1Dx-kWkd}vK9P5*Y|%2$2Heg{qU&D!+m*BKv*YM81C~Fk}MG$ zx*4y$sFWS^4=9Qp39tTZj`FmqwM*sRHS`MGK0H#&M6F=pc%0rRrlV+A*gD;$4AqS; z?0~2he#WpLjITi`7LfK7A$9b}>_K|zU1~vRGt_>A#UucRyg(fc6RFd>poSFsntRkl z=p2oI0IYK6Bx0%`MO6?xgUJL=RGjJY5J6gUJtW#Z)DmC;L;Wect#4sYvUY{_DF-(Nga+{^|`I*3FrQ9 zBM2!aMYjLvnPcf%UV+P77JmhgN3q>z(QK9#NWQTazAS5nu{4n0R-@418rSGkqf?pt zitI0+_`rx`Xze86;IZ`%$&L`kPA)krV6l%X#|Z@?*aB`XSYNEOF*>0 zVz?XV7~0s1T%1MK>=9!KM&ND}pkD0!%m;!v5|8y+ZVKNxLSY9fJEEKS)ofht2oB)h zH*+1<(~tJa;Haz}jC&ANO)|8?askiG{hJU9xIG+C4vWlzc(EYQKA7 zOHGUeCu*XZzZV(os)z$0kIK1qBNEN+2twjMRHk#=uDD75-e#Upgy=tWw>I0tpP$+$ zMLc>Vla;TEOk#{M8f%=Dcg$lUt@&zX7oxoRKc`s2zPnZoUdU8yqJ=-hsU--t)dJ1p zOS|n{nJVIFu15{{$8A&h2*}(8%Dw4Vi_oz?I{v2fe5s+)h#S2QwHg#d;g;wMmTn2M zf+%fd?{aED4?1e)rM)X4b9cS@bQ~SwXNH zX*`mHqo(PJWP?RYVtJ^fWg~Fs7^hxr5S!tZPpUbe!Jxn2$NUtUAB>m}8$E=uyZ^ER zr@)IjiY4syPL#ZZ0RLe6(KF_CTGV2uY^VS#vpg;~4Pv%|wQ}2er=n&&A`Ruh5K2Bx zl3~mxQ7T{wXoUWzcy;mS|5H6lQyXZK%U*7ep59fP-@|RvR}JOFH3G)32$Tg8VQiap zcGjK0Ie+??ZE?zGfR?iaQZ-O8e1Ow}pYQv4y*xN543bPRnns&2`*He6qOaXCP%|T| zpcC=NMJ{7(H(@XHItyszq4>|lnh6_HTAq+6OFb$|b-w)Ar?r^gH*#T8E3&@%L!9wj zC8DEmsO>S#braf41(s!M9Bc!WF}Fm)SBav$4dzsA(}6TOfcwsubo}g|^}UeX-jPq8 z2};04rpIk_V&$TYC}pht4cniBlrBz3p-|zV=A0G(V(8Ln#7eI2Ml4B=`fYd%tx&L$ z_+h8c?hHDTiN=EtN3pmB>SJfUjOLHbqopW@K$#PQ{09Z+={SI5RSja_N^eWN%|Jv= z$hX*GqnCZGWua&_ma*9nW^!CH_R;-o;(u~4wMc(kne9Zwg0;uU|4XPri2QMI`65E* z)bUaP+a%2cnF`?%E5#OiOK)>SCaTOCkLqN7 zx|I!L9b213Qtquv4JH7}$9Z8jwSc9@BdnB z`S$WJFbG|)lvIFNRPynJb;+1!?G^(s@N;w5goWaa41lrIRE^QvYUFsZ6fKK1zM$4efUrTG_+*2A3XVBTK~>Wk-9O%*IH`D5lx(z`90V9 zuUWW^#8|L?&UvNEz30vfzN-ePgwQH0!?fqyl|I5!18&LMGhb>t`N$fL$+A6hkd+ed&j&w;Xj<%(Vl@T$5= zU>;<%r;_sDSp5(A9!W#>Q~QQqo*(rYP@Y=zI{9Fwac=pb;<85;Z&7fZfz z;FhDPBs0<&;*;r)?R+AeEeqQtmh{C|Of)QHi<1T|(47`LSN=49dvP(+n})kXH*T!V zm8p)`>MU*=a$+1kG*4mYnp`_ExIIJ-erSw<3r=a*o8INua&GMNhKJ_k6TE6)8|lkO zT8r(@sg>JFbpwi`W}==1{Kpq*8r^aAE>?uvg|tEGsTyS5%V7@PTJc57P`JF!JQm95 z!waRC$-NS)AaKtSj$lVgY-?a|!$f-CRwzfk@g8H(De0TSLN`}KqT?6gtI|qLOY5=# zsMo1srtabpRJR11FQ#edSlLti{27yZz$`_S$y@{s6&B)VcTN1H@4p&WocVg(y#c9~ zOff1Bl$Oj{4eMjlwcpmVBuc=-7|Mr8q#k`O677Jd~Ri1sBK)Yr`fwds>-ySsIc2v9$^`=4>;o^dCs74tKqkqVZ5V@ z>$l4cjs?*!>Zt7LsXn+I(#SjVPZyP-@|Rt09MOiplE@^khN9`XtjqOC#Y>vHwx2;hrZ+ zDaS>y74j52GS=H~>VXaWfM{ak`1z^+J<&~>!>s7_w+Hq`wZ%G~q_xfzr~kRIh^E=T znebnmQVaT3muK3TGjeOGRi3&c(tr-%@O9AXYq5B|8*>hr#@#_JzDRn;Lwe(8{P52P=B%uLt+0GJOQ(6-%-{9n+1@f-N>5VM!~mS<*cm7F>vd547lO_Q>i& zSWJ*f%UjuE@tOIU_5n{3qxQtaQ`}i`L1yJsNJ*&sM`oUorLUE_>>|Um*FX2lcE=jZ zX!tsAp#cfGN{5!HfKu`bc@E{fXuLv{C*Kz2e%`WroNZ!E-d=a_ z0KAS!r5Eo<`aamA51m{{+;>!o_;xtHlF{k_t%&``dz7h&**?r`HZWqgD8~&ZPPa`g z>y(d&q+m#_29MBfxdZ~r8Va=(VCp2cN>yH%z!A-*Zh`iEgrt=Hn`1Ju`>kcGe+Rj- zz1;;vCX}GS@g4eDvw${}AGnPc#z>mDK{$B$l8@BM?XM|?2l=VF3z+{(ze;U8p3tdKAJj&E}^x&m9@t@qF(blcMY7Ql0*bU|2TXEus zjosHkt4%QzaXY2+ec%7WKm?8`NQj#)GVVxVgX0$(7idu!>JKA9x7PED;y_G59oUw~ z__)dS;dYk+bV&f*J$mcJXh@|GD8ltKB)r6W#d9x{Mn?&JOTp?<9=ZqO)X%=+6c)YjdhA#c_MeE z?1Ayv#&<$>;3VXpZ2S5;O59EL5Kl<)f_aW6y=(J)s3;fQo8@0FEeeHY{y;cgX$1lo zp^!cjI+s8Bm<)ErNX(~bcwwMv$n&qH?=EB#qbXS$e%KofPx-z|hqYnO8h%42i4*q} z!k|*jcwP3dK2|=wv$@8?uAPG+>){|=>Y(5D$I@qepl1gyQ+({}3J0kSm8 z!HLLm0$U*-W5gzN%vzz!nZ(CR{*0f^82*AkRofq~p^_v-cHH`9pT$JAR;Gm03qbP@ z{nj9lU3L>eTzB!Tk`R$Cy!f=2LDm(jYqWmqjQ2_cC{145-==vOwRD-{xFN4jy7Q2r z!++msrM*PA3xBdtg;8!3zSm7TfEJyk2n*>!9jQ(^x5%NbSAJE{(=Zr;uwd+VsJb|c zyU=&b$%(xmxNkR<$0i%q{w>LkBQr5BnBQSSn_;>*1Wwn_=&U7W|6PL%a?D^vZWC4O z-I`Kpza1Z|&DJT*17FZ|t&XmC0}CzI>K56|W!P%(%AsXEnP20BT%$?xUnlNffNdb+ zB|@xFRmD!%rF?`X3+1@p%IKj6eNi>&S`LuG3CVY6*bVZII>!B%^Xn~t752WZ=aobB z6k!yOHS$LOiSo2G^hSIG9JmpXG%%xNl)z=hWe@bm5czN@@y`%VE*#9!9@s>7G=zUe z0LgbgbXE41$1-vJH``NnqEdY!%D6;!;54L}+!gE7>OX#G{>P2L%u;2kRwVxhfltm# znHR3kB!H31@T$#)w}>WM_owYI(UN*J{1W2wtGnEPwQ9ledH{g#yV8JYL3xO3)q`yI zaT>2c;^;h~dRCP$*kWP6q&hOtf1;T(!WfX{n)DZu)&0xHrfgjr4E5H?UV9M|K7+!Z8mXmRQsbc1C+iT3w7E zS@*Skn2U|pM+qOxv-se3tt}VgX;D|RuU*}^l!kkdEEVIVI99CU;ft^{a0QEPVW;=2 z!^g$)X2tL8n=|f!2!Rd~C2f}+3*VpfLrw!+q7nre;EcTgjqs2;zQv)MFMBN45ic-) zw4107JhCl@&XO*7W=0LesY0YXPi53qYSnWMVmF|(+C~z)TzBD`fd;h>JveP;qKD7` zMP`1zR7v5L-HEqsqt2HcfZaxtoKg?8mx_wHD&N@vOPpE1nJ!nxLz1#3P4O+(Z zS8@*3dQF3$h#0BieE;t3ksDhMO0i7z$^)P3Kji_WHP+-wRab(6qF|~8HBe3{@>N!r^AGtBkC#!?Lz?F*N^Tm2v zy2_J_WYjV|!ZG)eV70*yOV;}V*nKj{dm zhP$|2q>pty<_XGuB`boarBLLmI?bYCm?d=Q4s*;FxekYNUfhej)7;B*#`%FfPInq# zWg~i|ZS_^Wt9Tf2S>8^2m0oQ5=kTqE-#zh$oSpD$c8T2Nl9fXm5HSEY7$WvfWH6Z3 zGgXA5`W28=1`d^`DTH$0o~U&Be2i2DjQ4MQi}a_2FNy zKbWU?gO)*QNp+~Yi1RiO7F@TO!7rD-zD#{##K@tPOMD~q4zO0jQdsmp$tfJxv{)g^ zrfSpaz-_)$JGY+$r($VRjWWVKZuZm-*>OQEthoSo{-;1a)yAvwb)K&8 zqw~Wq?=BhR~IV=5vKh^8jLTVT;i@DacAN8=#~T>#w30J%I>X6ihZ?ZL>){8vxAv-d2ae~;4fuSUQ%v=LX=aSLfylwb&b z#OQ!AR!u_YSlT)^5=%w0Lc+02%{zkdX>PH`C28;t0Zm&)KpEC^c1@W*Z}AXrKv>pv zdI|-N)8o+IN@^jnje2E=nXSu5Xh`C-zD)@I+7QKumCHqyMQ9;qk;9X{LYLEh-aP1} z#sO@H!A$Z;n-AfySqF=Lr~k`aRiZw?Zb~QuRD{F`dgU+kC*_F7w2`!%_08^@JKiTb zI*MLe{@)tfWqW4uw&j2%at-@+KUT!G0e!g7%PRWUHo6Y97$r{NLF0=TGm4r9V9me= zXw;A5Y!9I~q#|9j`VMxM$NXb%3El#br_^JFob|yh=pf03`1-h^wbyy~v?Du((P4qa z4+?Ty7PiSxHNfEW090u>+!MA5@~g_@$}^05lIq7|P9c79g!EJJ6lJd-9YNs6DW2Hm zzOPigJEU=F8YVjKv?!R~`A(J-T#+A;3-^WYNaCA?NR~n&Wu1f0uhq?3 z4Jf18HD`n7df=b^p?UgBjuMIUMgfC@nntJ~;?9SuDgsbj6`AhuXk+>Xw9_~3?F@2H z7UT$c-+=Ox#e(<#l=Vm>_sLjL?1;F}0_tlo&IC0&Fr)wU^KcSo<|JI1&f{Gip@Ylq z7_h6uRwd#D&pSTmr7d-$JqHrh1ys2>BSlpFo^nL7sgL^_!uCpwbS*m$Y+1GeIzY^X z-Xn=!)zFBQk=&s_vB}bB&3Z_tElg8=pFN&uscm;=%zp$ZQAgc#uG0KLN6YlhBsN~D z=v^|Cmx`mq8O$E{Nua+8LPv*wBOc>p5^L@Gv=v?r5wcei@@e>%p8zZ)Dez7&JrFzC=b@CH}1%@q?n!1@A6ngn3{EO+7nZ2d zjuIbjF^*Ksd&|{}78S=j*dWoYgVK>ZjUcXG^gE13mCFws{OYN*xC67bg(j$(4@0Hh zr8g+uxkrG9j+FJ&8>dJQU;Hhj7y=w!r2ay>8b+ zmr*z#-`4#vYKPr-|Jm6;Wq=Fv5Tp-l|L}q0BMM6Uk2!YGp~Q*HEi>acTdb}R-RF5! zSntnjYE?P&r;$OP>-W4uhY^`u0!=)WPA)08nsE`tAB%m5yNokj?Z2;Sz{}}B4xISW z&3gaIMyfdUV+OITorMB<+rrSUYX_AAuR<*JuM$~F3CddZbZ_AORr42uXXMpNXzo{+ zif(pWMrB_nD_rght;%?XxSfYrox_^ZXjN>$_Fcs+`SX>kyMTH{hh^A^J?iH$CgG!h{gPRe|k$@_9>2$A6R)|zIegB#rK zdeZYV)=pwc!IioqXohQn^i50pAaHt6b&UPQNKvZPCdA(8>F%wskzKL4P7RT8^`&k7MDmzetJ*5jJIAAk5%bk|(c(wrk)xr08;5meFj zkQ(bkSK2 zL1g}A_;``5KMkhk0~it~H=3=$LP;nr5NcQqc@nUVjY5JKb#w$^80ZZwsQNw5If9P8 z+Qi($$Up(CwEy$86GO(bD&+u|ChO)JX;Z;KDxl3mL4tEGd2DI?2NEP(o>)ImW0hFA z#$5N%>!(Y_*{HbItB-;%Ka&>Zd)L=a?SayaDS%XDS0{q-q%jK~dk+=zv5{z7RcN^3X_y7+DNRKUzBu{0R{xz~yBaeQVrT6oXivZ2IHl zHc|!EK6G~t4x=AgNdQBz9)Joismf-i7QYvgy=B<`T0}BCKb&rpE`y`TWG^MzSd!{u zWN#Mbwdp$kM;@$ZD09<|Gl%hW>wb{!5dGEL@5Ph#q6QAutSNd)6z1$6@y{z$ez)!xB!Pc?5iE;M%P;A#A#g z*pL_fosMF4Ig3DJzL!@3p+~Vo!YxcEi3hzPPO=~e3W81(80x<|{|MI4g)8_o;xuhH z-9?X%K4`%pbKmi1LpfBC?8vT|i-YA$IfTx!HewXHSGQxz6!9t#9l0dE-;I2aLnDj< zoj_tE|BgklbX)_pz*wm;s|iKWOfkECC*|@TcTP$Qe8!*F7B>WLU-PR>&bb;3<7j)! zi2yEjQ|1#P0Ws_ZOMy!Uw~GYuE5XQIH~x44DUe2dx>N z2;_Mg?EN)*6rx4uxG`W4mW?nGN&<_x=uLVeG>xQ$FgDe@w+-fF(ywF|G?A|m7N2KI zd*t7p=C*kGVEFd)2bZj;vBfzyWoovZ?l2(2bt!z!q_8Nt<42;Ii6i~q_laxig)Yl#`MDTT<--;(tj5h# z-tn!seyu5^s2F6eY+*6U(QfWQ*PE+IcslVa+F-b_T@t&#d7Yql{iV#2ClB`dv4X4~ z@2fjWP~C-)S8J(UKNf#+*mczo;MG^8VE_>@E-#_T+DZ?x}y2B=MSS$1|o9oE}>F=O2N|2-)>daP4eV9jKTfhrIWEtNO-l{U|H%gt*asH>GeVvcPI z?faC6@H|_a86W!Qfs$iWi3vQ1>sE7Cr~y?YpbNdQ4o~iDybw-rY2)h=|1;)H;y&cV z1L&+^`aVo$r8F%90GwrM5lHri1s)3#YttLa)F?A9aHw{##8)3N2i29-65w+t0uCe{{ZxD~)?2oTI zb;Z}oeE1m-nW&zyxmYxu1nxef9-eDus4Ells0)gV6v1dVHbO#)w%p)6%`_uEM8$)v zVV?C2O>B^wNg^||%uH3x<;WCmKe1{{L6TYL>7yC{|BC5tIHxo?n_90d+xUh&cN3d4BZo^`oL-H5^7rV6^ z?|?xj%-aj@@{-#!7A7`^H%ND48hOpPy9J+bF*bbM@s%qQYj4FKz?2ph)BVkcCKP3$ zR{SmwUUzP|W+Eb#&YJi7P8kID)k=o&Exu*zfO(ZhOrs2-4zDNP=w}RQeYeu&6Sp(W zg)idtAL0trWlVd)9ZdEz|Ke#gcU@Y3V;)<~YIArhS>-fkkSi<06uDjgciFrw{o2q^u)^!oDbW21wS%)u!v;A1Y8ADgZuIt`v_I!AqB2Y<*@m}rt z$X!w00w#bFgtq*ia_vw+7Scmx&GRL?rs zq%%q`ClwgLK}@|q^gFN3!nCjDH%#wnt;A_fk)>!#beT{c9>%!WK-w_B;Su+0NPtsr zrW%~ZM8fNi5?7PpQk2@IQC+<8%puM&alRTnRxsh=s;t%SLi$nUMl@pW$r=IrY zH+?H{160G{vMc>(PF8!wk%Oh=;J`_(y&euQ`*+D^Mo^jsge&}QWq4X?WtYgox#cs7?c_7xUTH2yre(J71MQfN1c zM(0#M7iq&c>qi`N{jl1E(f}zC2HhsQv)6SgMcc-LSN2z0K3+{)&`g}O%THQqlfA9c{%a`~#`Dh%+Ot39^X+UEp{&8?)aUx~9oK}oWT~vsWGMe| ztYGq`S3nGY8_(*r{7kue!|JIK)T(&61f!@a*JRrq@+#IpFF^nW#1G9oOHx?%ua*hQ zDN)Rl4mA&$B`4$1v(~Wp^7@cNMI#v->ld*V?kwVd&yg%d3IF;A1k~#fdk)nP5F@Pq zk=uu*yMbg~AB888G>3TYC2l)c-?PDoR0L8VoJHCEvtNjtCMJJ+xw;?JnaWf^6P45S zl@lzpKqcpi@gtZxB110<>d;V>_TS$@RE}P`fyQY=>5j&t=?~0oT_=6<>75{C06@05 z9ba&k%eDgd-mR70>b+R9O&pXiymb$RIwU=^kLYW#5NW9JIxw9RgRGSSJ|n(_oh=36 z)Y<-uY<4e#Bm}g;Dod1zC?tYK?qJEnl_BOQI$RgRpK-)UsS~TsIaWkOsY)4fN{}owtVNWBOKwg8rKr==T z1}us6nj7Ri%4?tBbeBMZOvX@QxU?c!tHR3d8W`-%{I@YAf&CPQ?OcNCo5Q4YU2Lf0 zywt-bp%i13*>S+J|IMrGVYx&s8Zl=W$X{9q$VfazaUw-Sfz7?%wM~s}81?mb-ZJ*o z6(Oa{(!m>A#GIp*=f(Eg_x1kP#HH86yDA~8Xx8x3qx-ak#>_j|y#~+uckNklglXz= zG~VhNb$S+dNQ)y+>Y(wE17phLFq7LKG0Yc~N~Sb}TMO_)HK?bs5r^Ux%YMkl- zCjlvMji^Vq3bxZ8)}svRRzIW^d*EbuL17J67DD(wN98%dQ^CTq1VL6An0E6yZeM0m z2a1iqNQNmMkDowJ^QTD!_O1p*b)H(cOTl+AOfi@@!kM3rGt0UIa$d?g5#SWg{Gtz< zs*sq|Ce~@87mJRelFd2E8HjfCoG!I&1m(T-3|KViIQ@-}@^lF8faDpG)L0VbOWTB) z9I~f$_qUAL*6@#wxZ`M4ehjXxNcBj#Gm(<+u$HEyKh}3t31Oq0L#kq$e)4Jy+rlV( zVq#;WJR>*n!rPGgy%}lb7TFn0M~+?wq7lM=asA?Q1a#4R298hG7^b%>{{V!cMwVZ^ zwX(1Rz`6m>kT5**$DVYt?6+9WU2moU^~&ZJG?{5*qvsj5tLUt!%k>jc|8pw{!fhzY zg?U_1&Z+165t@U^4W%p$xb`ZF5$4h4Z;{;$a#IvA1Ir2jPL&WJQp9T3>eN_UV9r85 zJ-$ma8O|$4j+NGG>Ld?cMLA@FyHx3idH4>qDm5z|u?cAR{R2vx1ZB!u;E@0{xpNt; z7y^GDqw7|%m0oR)Qs6Y1UN5c*Yam=@*ORuq`@v9lcwPG%tGdL`AcHG9HE(FL61ExE z=rW3r2)RSDnd$ThS?_G#X10q+p(0fq%7E2@IdOb#qHHWkEBrkLe;c0io6$>!nItGr z?$?$5mX$l)6rQ<{Z9Y962uvv>_TA}ra>6F4t}>EXr*O2R8a+49^-6n*P?^_?I}!&7 z{VSGWg;_M~_)r00&CYG5vfM2SrC|Dk+WnBI@nZbTC()@OTI19*rH;33_``A0L8BP) zhnaz$dpa66OFg-O<1L7AeZBz3iB9t9iY<}^k&TMjlE2~-FQ@!_Z!42^1j9T58jCBz z#KDee{|*yyQ+|LgtemoP(6DD5KW+ze9P3>@r~M;cGc&#wM)WGc;H6I3I03C?8(-Nr zx88Y7p3V#Q^0DYw-pk)D;FZ($7J*eGFE78q6nmE-wWWNkf1m3eJT?2lYHYKa+yGca z^kiRr4o51-`}gCgRWAn)LW{%-UU{`gJ;f?u<7HRm-ZWSq6LBRmz7&8A2HG=6<1D^A zE5|CNu+z->#Us%8j~iisra5-FMw|PRxU4P)B>~@@cRl+1SDgkr1z1+=2QTPa zX*t2zb!`6fp`)*R$NaA^R4WsB&p0OSn2bW|@UJx$Bf=fFt!;Zwic?;F_WJ-YY!mzv z+EY{ic(One&5C41{&nbz?5h1h-aIqROZqZsCR{+imu#B8A!Clg|1PJ|Bz({DCcBP` zDOvF*51vDm_tc;DDUi1k+3YLS9<5Dv+^|1r8gAHqvnaJrJyS()V+V&8!eX?^pp_O9 zp+Zu@A+r^hgMB6S@D-_>61W^|VM(1Nlik9!_|9Rf;wVI%&5hZ*tjpWN_#gJm6)W9+ zoxP12$jpnR5ul?v{5o33DhKi5O}_$lKoA3d!bZMrE{S1z`Wt3)v`kSDcSIVxC(dDw z5gKgUwZLP&4_;*Ia~t46m_Ka8%Z5kyc6d*8*K48KcwtqAVwqdM42|76`gAtVLYR+ zQpa|(dp@?XWG|Aq4r>qisEzzB;y9Dz53PoPurCk-yMCyAB#-kow|`aB(wY_FB6!u!jhJJpLOlFutE@$`{&D~hj)ov~vodw`Gw9u97#o&)NQ1nM%LJ)c!n zZ(ObXspt9?gsY#?lMTowFB|u(UaV;;4#3ybd@)(<=C21HStfK&wjzGNUwHkr7#5VH>Z~r!>wW9j*K5o-C z)@Ur*_R?&`b;yc%f@HeEN&kHAO6Xf{K&*mQY_-ig4&eyS(Vfa-qMhBuKV0uxx412p zRUD&FTWNkGLH<%JA_3fk**PB9glj)CJHv!e-CH#PW&JjX@RvC)$)$9eC3@2gPL~Mc zA%$845#V~^ZVHXoC7G}E0Xs!tx%`me5O?ff<0!2F>qdMMgpt{=RbvO{C6E6g+#9(# zovGgP|1t9dDu<4(|Hv%Zl?{|JOkaHF);fgLjwbkqvD8;Ryx#ovcrQXM9T@H8hACAy z%-6W#I(paE_0*sgCm8>R!%N?b@{9s7FH1av+4w`5NKYG|o>m)AocpIZ3@!3sB+ueL z*OQP^)Z{SMfh4BhHEy6CFG#}J%Gh5bqctHalz)@Vol;VFvs3`2J>X#aDsY@9CBw=? z^7&G0jq7rcD(n+zhjF+Qvm9%%MDq&3h8Bc>jW&IZ;*Dh3-nr zp;lV;=!1udQ;Uy%)kIfJA&~YOZo|Y=-YWge+powEG-iRq)e!-2zvf0P)KLk;FI#+T zVTvbH45!I=e$RefxwUsX;*RLFX(qNIi)-yplYJlt>&IA@FYrS`uCzlTUv_bx6(d{b zf7XDj)UygYbq{Ehu)x9lbU@!IbuR&Lq(5gqI(W8gb}u=K_>WJBkmSCIF|bu^I7Sb6 z4TX2bkmG=S^e0zhPLxk6HxGRPFeh(wF>cVKRs5w<@f)K^c?fvGDuxNLIvQUm%8u}M z|Ct}9?Fs?_Knd2>a%j{tSniHLN5y$Id0vUBsUx#C?d%in8=&}71Bu>&`g?i8P3TuC z#C88B=x{%M3mE}eSYeuo4tBx`q{-OGPyIqro>Z3fG6zopGob|-F;f%ty4~)uH6QJD zp`mB8V!5|aZU;<&HuUVWYC>?p?(0eQ0Z%amf9MwZWm|a@{(PWQWmp~5G(jfJ?o*uq z3tb0dUDwYr+gP}v9HlGrD5v=Qy3K@H8IrNj!==r3Zch)z93gmHi1Hk37_EeAIN3?W z`1lyerWs!&Rz$`GHR8m>^2vX89vptnkwvV_aeyk=h~1ts*$%^g^4!|~}oP_#(m*!x>JX8MA5_I(G$JWK2@Dw=h^;D%xS3|35?`njp5H#%Iw13(B& zz6n-zBjXLQSSSVW*U<=j8E${~_Nenp2uv!#kt-7TCUG1nkwofVrtgW$hglE&LB!0^ zksUL8_VYrX{FJ{sv*{i3d{Fl!!x?qu1*45PjvU2}M> zT)&Zbj~DN2iQv~*_PmYkOH%llrVec|{(l#HI3uvafmwP}w+loEi|5(COFvRzVPEZp zz^biOzlm%7qx@w$>mxo1$#>S@v5e>Ol=Z0kcgjJsDCh9>c7+7@a$p3~NRWB5A%326 zt5|ONm<5pwWW(Td%WQ*fK+MGRUDwhzTJbP)vA4}U53~CNG@aJ*_`WG!umVdz<))p~ z*8aKaqM!oUPCm$)!V4BUvI|s#c6-5SC0Ayb{NW*ZL?yU}xqM=Jg~NKP>I@f~f2g!$ zd=I+k{Z{m%Pfp;B`g|8i*ZeV_eLpu1WzmUC*yRuX+iA=$S)+^Nl@ea~Y?U-9^*abL z$;v5B5tc3TKPbw5zBng!u&U<@_2-ls+-__Md%RNW4Z&RaB%q%qh^1j~M#maO7O<@b zzeVI$`@AV3#y|yfqJjWRh58LIp9qt34ltp-X?OoB@9Z7gkLjeklQ_;T(UD6gz1^jr||?t5|) zu|HAbe*uB)F)<*##*ax(%9e{n#&TGW9z0O>FWP*8aCHNZ zec2au2fty!<*;e*sP6ysbkH3{65+;*6&a3HdG^p_ z=2MGnDimR86QuHWCI8me_RXogcoh-}KSZ}JEX~rO)0mG*3~F(QbNBfSYeLE(4#im1<(KjJjBkLK+DHSm;u^EeB$bWxs1q#84{pe# zCkbH}0-`L(^CQm+FP8c2Qx=rW9)DFrO)E!KKB8mBup0Lhm``as{e(X~w~n)?02X zi!%A+=-wo(vB1`u|7jd14T28SUY|aEHbaW9Xr<`Rm{h;es12U z0kONuA+wQ`6QP;5cCcADdu24BQc%cxDgPTnY^X)KQ!xa^N%3jd5C17Zu3bX*p?not zc!-p(E((@MU-R%0LCuq%W()kv_`vCs=?uS-7vcm+%Z^r-Cr#>&>SUK7bFRz!dBpqErLOM$gp_)l*ba#XGVW zz`dyg_k_OhY%iI*gs#iryNoLlRbSwQ?rAY4srV#g1axQ7uHiVNOvvLCr*I*MtW}_j zV39(58^fTyjlr~W-?@b|iA6Dyiy!OluCG_ipw~exth-}-|I8jwDDX>=PQ~-b32g0e zLPBQX?H4VodR$Ev&OJ?P!p{>vQK6gsk)j{n*K~=W_1X(f4v{hbIL+Tks;wt*1_3Sw zg6ho}FfPH{nob`M=I{AHSc7k%GcV~?Q2UKwYucp3hxCecnK7#%kgm6gl(7OKoQ-kt z2anUoZiI_g{*}ydx|)p1nSoD$amOktS$p#sjieUQ90^t7o)6 z+mgWwQD(B)E5)&(!;zP(HTu1~;JV%(m88M!W%!DI_qp=0eF5yq~U2TVNPeQrD*g2XcasNG~+G|UNI9I0s2u4qI=A6jU+CMD{pW?rV2e{ z-mtn@G&#peb8d(%Xwr0UttRjZeo($ld%%E(~b~{~v-j1pl{;ZRBuRWHK&`PnN%pT`gYoD~-wwLT@5AdyA2fTgmXx5Alid8#RNju*yXpp85HLFG=UZhehphfcw0QOU_RIJQ}I#5)#G{ot-)mD!zwVDbS;Za-aK2K8av zkE~7Hj64m!U0jWnHH*5^6$p6-o=vFxu*}3kfhGcRrD?bPoK?LO#ZNK%lkWxRro;_2 z%?>&VL0}^sf#{QjA+m1EUN5_8G`iB7468i039G6vBAduj43m}vRhuDr;w<4{B5%rc z8Ar%RHkbhWRp%uVG`H}^n6}$9+huV-E}`MA47F=CM-T|8QqbJ;Q)>ulvOw8OSwnYnINX&b>ZNT zq2(eB#)0(bM%MH}vDbY1f@AxvqAH8&N;v#P2tijeyM04JotL?Fd6DrI&^?X1)&-Ex zY+cp;cT)h*8~07?ElAnY$6pU;3sf%oW_o2Ac(+@u9EUps`Fo5#7+8LrVQvW%oGXqg zuifc%9iZoMzge$3%rG0J(zp8;0{&e*JB#d*#X=+2F>+ad$I#KAZh}P!ufd&+Ld%G@ ztoA~Eyf5c%MP7RbYfy^d#K$84X%8#aW(Rnyodw_D96ivozr*^|TDG(N1o;}&01 zfi8w5&n(&U&FrMaBd-#tj88-AJ)`s2*BSGMq850z?(B&(BZEv=ZCVHOL1eSMfKk3P zHc|pXnig!aGietdUicQhtW;N#tG9xN_^D3>XyNW??a53pP}xvsOW5$GFKGBhIhcdA-VTENKxqhy`_OE`Mh8JHx{B2pUczT! zazS>)cmH6CpPVAUfSbN$y1&&0G!rq7x0YlIDTyYWfOzX>Epa9BuW}Kpnu=QyeNXuH zt#<1Vx)KOQJLZA#6>khMxaX*1a6_7-8_iSQOlqxfK1K}I&ZI!(9G=apbM02G=zG;k=TW=V5H>|cMMJ0-k(m=vgPr$AO|by( zUEbsy=I<)#YM>o{4*NukDgIAzrZkE`_aJYW*fX^%a)?&*2bvLhn6=H*7~O~9C6<2p zr2Qd+0mxVd@|AV)u=<=Sus)<~nUAj9(<~)R|bGQNKIeA4QWEIzQWhT>9goYJ>zv|z@v1cAJRTv zWc~!?v4CBPT2@r4{nwQL!?0^6j~MrbdVNGLH*2{&M`K-Q^!}ut{b=Ka-3J>;AHVA> zC&!+NZ$l@$!sK^iP_=k8-cnxyIA37^*P(*5YFGVZZPzl|M}U>buKFo&CYS z+yG1761MN?>wGqcqY7Pfp4F6i5k`&;3SN~?X#2qZA=m|_p7V&Q*b{z`*2P&r(`Fe# zGKO_^)CmZ>B@qhK|iDJJ)xr_;E<&tMu zi{j2bi>9A>edeHFp=a%aWRMmjGcgNHPyqZk^}NNrs9^T=Yi@=`)q7V}V3Z`MQRSb~ zBgPJ#Yeo&xW?hFxsKv54#{jEgLqkP-D66#3N+Gd}SCk%=fO=+1Mhc?RpAlnoIQwIuW#Oi8<0c%l5E2)giqLhLoE}j66O}LoI!qF*ptnvdV7IZ4nfj_ zDdwNp46x#`oRl^;y)&X{q3>>tcr?$+ZK*^2Z$|SoJ3A41_DVqhPVfjw+ndbEKm$v? zPHaW2AY$DDQ0E@I+wy~6I?$m8Va7udQ!d%CQUpSp8u&}4hPiJ?=>ogXV)w1Y;9pha zcxP@Uhd$%xgQF>YGG+^SSJy{r=%n_d`c#Ulc{@=pr;@*W*EqC+jBfGs4dJ3YQEv>Q@sq4eF!0KBOZN%@k|}o=4B`- z%{Ib{uX#A+n8WV%T66|MMU!GF)+KXHVG}BLBQzPZsNt_T15axx`aeueGgco3Fi1VE z&}}bJlVI}Y+*LP3exbZ6%f-cv&@00@bBV41GC%{ilq~zry3n(SN*H?TRpB?{jokRCTQ% zaS1Xl6FqW*NuH@!6m+%W4-3zK`vg$&$8(Dj`~8lmBf!y(b_jERMRxlDc)4#ybim-| zal_qA$HRLXglL=o(*p)^hl5Ie_|pX&9RCLb&0DKb%!J)-nU>%iNEwjyjyL8_0_3qB zX@RR(*omtLK773pLpiCwuZ(_Y8AUg^X6u>PvNMx^i|V-+G-n%5NYWNh^qpwEH8O=J z%n(GTzyDdKST%_4w}bPJ=~n6kD{pzt!+r(Rhx!MlDc*AxmV6gYk~*K2;ma{JGt68K z!3Kw70t>AX80d_Xy5jHRYld>fo3xkA$!**O!Wt%*B=8PzuqUWl^;OLN({HhY!<0k@ z)cpfVN0nyF_8HWJ8`Uv6iR~4}=Iz7fTVM3HX`XA#pz(|(GwiN{To`#7MI{8`_%iqm zAgR=?6=-`Fk*9QSQTeSYD;43jAh-soth6{U>Y)dra)px&+o`jZr``E)4#l~Ijiffp zDV5ETv(w1yA?;6{pt1|d$}D6|AG)R!GG@TG7It?f;meZV3Hki1K46Su5GmRJ@9ER! zUg$d+*}PNi1!XB_ws-i#KLab>a;`lrax=$)c@_a5ga9qMttDZ8}6 z1HhYZ;gUmfx(ptV*YR=8bpl?b8@y_#+dSza_E`_py&f=b(PA4Cy&e^v2iO)!65saW zZf+Q`!m)`R0R8`Ppj>5fMZoXE*fjh!FLXIZT}x^Jo_^m^wPMgQM-1R9mHEH!F^b3B z$d6{4vTqf~7D}6_hETQ3n6g0!Wjz?{kK`nr$cI>0xS7ZMC1_Er#~^ob_;l z(b3T&1)nZdZOqL5F~>N&$lV#EHr;S`J^xR9vt*ga>zzUGwIQ3nAvDp#WqZQ0?tHy7 zfRJ!=-O@&Y_~JaX2pKYfIh7FrW1R9Pt0A<)da(6NN#9Vr@j^Z;`dsZOSN z?EcWdFTi*Y&Dr@8l`B-l;RU2KAA(vY$^h~EOf;R8091!>uQ>oopAZ{O-pMo@W+!Dp zU4V*~@X^N7MJBv8Iux3MUh+LHI9GZ%%3|0ityRTcbH$2hVu4*`3s?jDZI9y!*G<+ zm2S*Nm^-^oP>OX4Niy*wC}L<5pc0S(t^Efr^*OR*_Hv&z?H0P0q+Ln{No4>!1YW!I z-ppL)y!V-SGD2^27ealfxAyZbNQ`lWDIH>AZyrPS+;%CqcjS)K#nBP>{3~~p!$Wxb zy)Hq<{A@VH-xOPI-RCht%T9zlY<^`LCx0;8(vQ>*{YU_BU@tdS%I}%To!a3DNi&z-O=rZYLNS`-$^)|{b08*Re8jF@ zIH@1#*ob^4hVfJ1(eg=*9ij9OIH_n74sEZEe>OB+&RnCv0Y-V|kIl`1SN!Z1-pOu~A+sa@hIEc{whs+G_##mmS3}6H zByrZ>@*Cwr#}OEph;=XX6b!J-2|HJsbLEu4FC4##ZtmEWDQvf`bKUZH5`jA1UjwgqgnO045@p)u2Mqli+% zpdz0a5i#qh7!2`XSwirwm`xX9P4g}aWD9E^dti?Cxjq|uBQv7YX1 zo+bW6+2-Pjd`PY#jxe)9?tRnR#rhFoq)c#pqC}G}4iS;8f;Hf=mL z0DkH}i`5M~L}_J-F<+d@Txu z>!WO;9Xiy)mOsLmAPGS0fM4&b`uQ_B08%mBB=98drvvObPnDV^Gt63nPj9_pf8(+i zB6JxZ`t9L!q<8trs#lXw=2lf>W`iaZc{@HjFVvu4D< zuI1KCbRUU}dg?a=FT;?NtrH4bYu#h*i^7>I-xDZJXc8l%>^)Y$Qt6<=PM`Ki4Mq40 zz|SS4&DG=4N{?ryjYwxd-+-uYqGet0NTKZv`5n^*=V=aDtc0!Wv-AtYfO1G= z1r3*Amo|%ln7OIRc1hT7XYm$ckWqRutk>N|(nAzikJ|d-qLHcru5^|x10XISg1@$5 zs_84vY2-}7jrf z6T{@tl>LT65Q@L#lmBw`3=lLeoW74y7cafBMFRF^A0(pGo%Vx-8}F2US{4h{E~epC zlg4S362fittWn&HFruH>#J3ktdC(_xnNe|W`3-&>l&7rqEG0j@q_YqYWvj~igW#c2 zb($9$q11Brt&r<=QdC`gFp&Q8Vq4Ce7*z^*w1@(39ru7!Qj%K9CRnx7v$ z#YdyHu|ovC*fYdNPUrz`lol+r_|r_Is;gEf9)3|< z3i3l&`IT^`ahYWi6P5G_N!T+=#%S@V)J4z_mn2Jj`5N>-MuB*f*4)u%x5?Oke(A>J zdSvpsW}eS$lTKWiLLBKLG97!ACBmfi<@ng)Nd$Jkl|LDGJ&`L53tFU5b=O&D8>FG1 z_0dybQey++`|s$pDoIaO8>^pt{NwQub78T``R*wq%=jX!b4wnA>FXSOUug--Y*0Uu zq8PhCEiL9(oH*qGc%TT!lrf4~Lo$sOvL)}52capdq~s2Vi43FwY2{a;9t|3iZ#E8BisF-+^x!tqX8Tes=~ zPHKZ3(1ahm>~8DAj@mT)a?z!DmT|Z!U9$7j;5uQ!7dA{BuSD@lg;1Y7 zvt^_etN~w8Z|MLL8O{>m^8htLya1pM|LVGX4uqMkBQEbvLDBYBjhEW^Df~MLy3DG5 z0;E4#LMgbcg0x}r!)3~^;(=el{|OJdciL59H1p`f;T0u~t;}gGw^MgI;aU4;0HQrm zGX#Ky+{XQKsRunAA=Gh}Dag2>XvjV4mr^4ACq^1Tm=|jtW3!0E08s33v1W>AFLS2_ zv+<7QZ~-o`pJ_x*=H_0?ZLBZ7EN;H zcf$C;*&9V9-q~LxM10Z8s2WQU^(OZNj~Y^f;JKQ{u<9MW_Px?Hkh4i*p^E!ONA+DR z`7Jlx5A%meX)I2ejLl0(qq?wFaP?zTfs8sW1=&}`?u8Cru7@2&osX2s9Y^Si_fza< zef_DY$pX@lFlcLsx#k*-1TYs6R0GOx5#&Yq(tc|IP@G))S*f|jwm5fR5;w({8$OAs zX>kZNjuAri$h`IY3mKj8xUkbtNX)J?So#-$p=HK9#h)#uX;KS`gAEcz2UOPEwc(O|qk{O^%v`chijjq-e3HbN{<@~-iU z2@{Ba92hZSP25Om=+qD;?!aBPXtL>Jx&f#cIE7cBBS81VT7ZxTP zL1&$97%u0+LwDV%FCku~KB3`*`yOAS<4tE#PKfBGD7JE5qN&?R1jgYVz zOA@&W@6LJS(6X?DfuO+WE|g|v!#bQ3h-yov5IBqqhOr`+b?|l!NJa?Yhz2;vOedkG z3#?QN?J+mL2*L!d2*l1b&F&R0b`P6=`{K9AiQ=j$qz_cOIGq~_tNxvq`0INnmg=Wl zsMdcIZ|l~ascq=9qW;NrfhKNRs#wtpzM?_*K9{+4FaRl7ZH;!^&>6Io$wCY z@N=gQnkK$#j%N4m6{KYb=5BvuuMmRed;H7SbM)TOZr7>jMbv?on`}0;R5SE*5N!(4 zBq1$-NDT3P*vX9w6kDJRunG6kSpd-T&_aM^&+D{I5$zhK1VQX3; ztlCdQt&Kvk#Sx7$E)*LMN*EOXxo+8xJBeEtvybWua%wqt_4z#T)tTX z2{k@i{}|QAMvNdNy?kS$bcdQuzSWMdJ-A)Fmhfi0Rml6{6-#b#+ejMqMx(m!2QhqY zi3;A|V*?pz`Vdz5KPzR@d-0@C8b#|@k$a%p)q>s<(9z{7y%^M+v z0J}~2N*6OI-1x`ee{Hm-f6*Lgv3mQTXPcJnO=0;~5-X=JsB>_IJdE&(mm|XMBLp~l zm~(uu#w(s_HgJnue+H5uy-1i9eMf1U1kmF>{R6^TRf@SAtzI6uVIR)`Q?8Zjk6ld^U~- z)gFF|4pU9oQT*Z4rbVE5*c}=}a|~$bGOefdS7p4oG^ggj`U$N zCZd)MCnJf5UW3|7J5bHB;$8E^>86yQcnSo}%#yq@8cXHyky2+aaNe*k?RV_nj@50UMF9$hHvyx zix**v`k0toc(V3-;=TxFnKqCl?TvCyit279i38PDB~hrroi?5c>b0Yx;P%gG!s!-J z`!44dm)Y)>DX!uL;=g???US|G)g~tAb}4!g3N6Hx)aq9=ZPqHQNO$}I!y4mg=80ms zM_iWDD7EPajJH601wqmfB|y_(JKU8mS0lcIT6J5ejP5~X1g^(ibKHiy+@z3H27GFW zgj}95Vikye_2kECNgdKw=xwK_oj8QaZq<(VGhW(Bva3lM_3fQ2^!BJnt;GP6#wpV{ zX|5MpbFPXbyn-aolMzW$nAS13z4hZDO!DI&`n_`g^@6jmdv%ec77UNJSRuAVrfuZ- zyQnfULu0p#^9OJ2Z$p7D4!T%hY}nW#{=Zo@>Cj>qCmL4*3; z-whX0S91kn91MNraP0OvvzeG{KGe=DX15q2uC4XJaD3M_hyu$U1*2eUIc#$zChhi?mRQC}S$z!R zdvD=FW;Q7*x-2^9QZ}VS!A|>jXB;3(eGn4*={s)YNog4sD{OV@67jR93o(T_Zr06) zhxzj!{?T9fR~oaMEF!AypT1+mx4mK`*SX436V%`ZdIENuXTU_^tI|p+?xFY~=b{HO zrxP7H#Y6#nXKx$8oz|i0%5Q>G zCj(#s5x8kZiP#N{tlkWZ@sJi_d%m~tn-8{ zb!@17FE79aUFlist|$gwmpg=ZX@K(z?^V(Aga5MGQH#O=_~%mMPRH!2PiutD%|ZRY zj3R`YaX^=@X1$4DL=_W48I38Kf|7%`GjgK)r7J&tk(kA>qUcy10Ctr)72Ag8lo$pV zt?KWmiqhL2eUi=xD&?{|fDJ#zZX8$vC1~dQJECVU4t|!1vefdI4pj$V;EU8Tvob;* z+#pXIZgN!uTk`cK8ThI9TlyhgC=S4@Ihx{e*vh`PA$+p9YbSHr^Oaf`vN5Ytr<%8~ zIeX(U+3~<4M;|!l=xi1$6@Y*Ik?8f(`(ESj6g9fF84`U!LPu3*M_Xd<7$tK54JtsY6oEic;epoT}0+w_w8NWkOW%g@5jsMU^C&u<6aCE}V--UO5rS?}-)G3j3N}|?YYe%b!mJL5HO%d| zFggZHHRA5p9MYL`IL!HkcDa?Hvgu+VCE~KAxm)KWVe%VVGa0h zP=l-^;BA03#B~yy6=o#5!*xD2djI27LX(hhj1vup)m4#c`KAU$%ULSMi96mu@er5! z&)4?~Od1x(xbbHWFEPiQIJiFz77swuB;+8=5p!z{{o|m5KNu5WM54$10g|dz8qYeg zSIAMohKf0lk{7BH)cr{7S_w?N+vP+Xoy9MT;>=!>WRkQq=*Lq%-7%FBxg62F%URF&ivLcOMPCa zM&3*B4svYCjM2Bqie~vmVTn5au6FnJb5;nZxdc`#>ub>?`*;z;R##eRAA#?EJB?M5 zd5zJmRYi6yxyRghA~HWGC%y_nWBu3;We`%%prT>PPPc?OLyLOoE#|5eR-9xlmNO}N zygDh;pyjiCG`gj9@L}aoIP1!Pv5Iql5kZ4)*vAfr=2n-v1haQ#gYhS~b_a*}Y^;!$ z5g4(U_7md5PYCnMfg75)*1aDQDC(NaoCC3%7){D$Zop-CM3Y^N+NpdG1ABM5&)TFq z4F&)~hEPMNEcu!RA~E~AVg&7(mPMABRQ>e(CRGhWm?=idkB&|Mv@y<80lq$>CjN_S zM3YalLiB#vot9z(Ezp=UqT~C>U-d-C3f7Fdy`#f3C+?_`#Ll<^l;n*CQnpT%3O$kk z01!7GXuFE~u%oQw`ob?Hs)gOM(}NdqA|qNM;3iC zc$} z#Xhj0y|g4h=XZ49A2Jw-o~|uZFz>wTT*1oklJAlb=7QSf+#gT@zC1w%jUv4T26LetX8(qN7RG zGXk)_M-#~=Ioknmm8fK^Bq(G~<|ntc*h`$o4TD%@rr*|N4nwaYBw+F|r_?*xFo!km zL1*IeCRvRbX8%_NFx$0IBVDlatn7cXU<4x+21hE`)VO z;eK%(T`cR@cKxTpZML9)i^n4*E!C&h`90{8aP}&9c>L)?GZU=Rv^k!k_rXy}QL!lP zDvtw&g(SGCKFOiDGW?a1Evv1rIq4xsTC|jDa8(DDI_Sd8v^Sk-`;Kflkb|l8ZI?77 z0{dYoJTN|Yc&Ss-VJ1t*_#@a(?b~40>HN;xtM*a=8M2b*HPjjWMWVdX`hWE3<}{=K z3)K?zM2qDbr{6)CgupOPM#@!I9_DXC+C)oZOQkY$rKN5#94poKdc@4{LUe984uUmIeCxwhNU_A?roV2 zE<$WX4a9v>J4H+FSTGF>dpxqEsTWMa_R6<^4U#%VV8cefL@}ma=Z4Z+q47)~*$Ws= z&sg2qCE`uY>>mrEY9Oc{`?0nJix?!#XKdo7+WF6=5wTn8shqoGgOp`>I%bcA4x1|? znD|87#6xaC_n2k|gljX4I)%&AX6X`+L(=*o3yuR*u1c>}F;=JgS~Ke;wXFg615m?L z9g=gwuCOh%Xt4)S(3J0CPFu3h%%H?zpM=|&b0ASQXi<^LUT<&&BSO84L>9Et^Kz<)=@6 zLf@uLfWv(IwL;^Ch7ydpBv}S-a4Xc>6e>K_8~I%31Dc~zBM)fO$hEL3}z-fRprlsB{FymHJPdrXk*ILvQlgOqyjxhN6+evU*+;=3L3L!(1 z>B(0v_7C9$UytOyAtkvyRi6?d;+Hq-^H_H7s#sA5C=H-2d_dXJDUxHNo;?$)*|@qn zZYgccfypV<2S(VmMQ4DvPB4cN4NoGNqZ#s#YEd#~<&t?Xl+3<2GFl=S7<60-s}$;A zsG97pNs@DKn6|v%Fq^KMR4>AZqytQC5;Ez__j(SUxuoMTb>WunNg@jp4_>w+GF3>G2bT<% z7CMhOO<`KzRlXowJQ;RcGM2|z>T594UK_4&Q@i5HI6Q_c%%&9#IU#N58BE~h+oB|{?aq+tQ6oG=i(k^}YY6W=oVgi9d*}?PP6A~SVIl9o#mvD4`}6;GNjxJJ z-e4aA-G?KmG3R1T2T_iT@;=>^7F~sDoXmF&(P) zrOMVViJbZxeMR};k!YimxWrGvj!RWb7$^*t0BqaoJr#%1didjW7=Yo@-VIz2g0=XS z=xY(O^(l4Pn^vsC0SV_+=@g!<-2jilW$tQH`A#cHmXwn2zu<+6=F-^HCwZ%N; zM`3g4&wI#3m7MgZRBZc$6ndc!v5n;#%_VqST42bYkezZ|1>b-Er7jsS66+SBK;5x( zCN%i!an;m8HQAFWGk!2TdXe{!wIC-E?4%bQ9}$~Vz2}X)0yj-vWG0MXl?Oh>UAvO! zWbs*m-)_(csBa89jfX7lNlDZrFJlKj(ko@@Rt_>F%~1rwkv3I$m2AAw7*uq!U&_DO z>dcIxo$tyHl}g=*wpSw_JG8Yg=h2ITGmQ9`b4_i7I#=HwE!}!TDweeK7$rKhwj^ivo0u%xDU;P89%8wNpH$tVqNri6IDb#~`w-1t0eX zK+UqY(0zU%@SW2brv9GaG=x+`NAnNiwhwP)r&C(wdFLlP^$P1K&xF8~MeR6Uv3@Lc zKX``7i3vkmxqG=))iIE91H+_uzbW{DeLt1|EQV#f6cPMNu2Ls;8 zp1D&rP-+-G*3JWgKO?4JelXx1LFLNH7|#g8TP3@I>l0Ah81qzCml6UgsW;)*hVqRT zQaw&{ELuXF^!;4vxD1D>?5WR#JnQn@jO5ULu>Ag@I_q;5F^5(C(jg3D)Jm#jW{EKB zH9SW}Kk|xgZQXfXrNt=~3v;ozevoZv(7gcos8CdbH0UKcrUm4eUTG6;il6wgP zGaYRIBeInCze zwLmbGRH4jOABMc+RQ*HVw0qUW{3LaE36H_II>(zpejmib{tRilMvHjuccqpN0L8Wf zIKqZ`b0yfzqgG<-bmeb?h%7igqg5p41U#HMVt++CS`&68AZp~DQP4AZF^2f%wjvS)~pQr=C-wLPGn{T1qTB?Yh2<*hN+d51<)*<^Q< z;R{Lh7Sjlxhpw!U6e3ob9pg@Ee{EhW(jB6@GV9h3BIClm!o zAi-sznDYK@s9dP+1^<92434Fx9VrVV-}1S`OscRI-L;Uc=!8( zm~Q|8OpKz$l=DLjz2M#dNmpZY!+UKVJP_Ip#eC!5H6!sK#aR{5cic2Z(s(!l$}+_Z z7syV(^DY?`4k3#ywn%DEtuz#-AGy{(8lFlb|4u$Y)-n`5s40uw=;zQS9ASB zrgsR!cZ{jo2~qU%yM0K}EwK!GppAx(7vt|jNb0Z~AINA=aF)PesQHgNvHgA3k7NAW zvb^1Au(@47SFUG0GR4FIHC)Q2Sfw>sQ!LI|h9U}x8ts(;lU&YZ;+MBly6SCloy0__ z8P2o!Z16kvUEG%qpy%phvooSWFoQOWo1}|hJ>!X0`4f4F@_b65;Yb=?u#6&=zTaWN ze-x@-CeG9~g=7T4;95ByD|%my!ShgG#^IAfYIW|Rd-#_4-WTG{uUgVH>q%Zz27KLI zEZn?*eQ>SnWdB2GKJ}h+zj?JesdU2AsC%Kp8tq4(Wbk}D4quufB(q~mcZM^lZb}Q@ z@(0FKguHam6Wi8-cTH4}NdSD$z7_%VHY!Yov|fE{!{Y<`5{HfA%I*()YKM!nfme_W zvyBP0H*2x5RTW*p#xbv@%Py!;twl9%=tpJ>qOqbgtk0nP5vO%q1iXzj5TrONU!2HE zA{@o8mJERUq+h(kD;mjN!wIhg`YLE1Ut2V(LPn(HwY{QKZlwxH@c7N=hVf484ppvm zJZ_~@_b5!{^sDMALuse3&~npjk9R!>ee(z?s}#Dp^Nnl{U+pvy5uOVtj*eXJ>f1iY*ouU_TH6ZVV) z(8xAOvZRt}8UHKnJ=@<9iu$9a<^x}UO{J4z%N$kuU#QT-l%RT<~ z#WuPfBmDRd(0ue^GB%e0zCCERN4i-!A8~)fm7!`3F`xs}o}}lZgiUQaq6L4)95Q$z z9VIh{m60tKmCStajrfmaSskkJwewC9a4Kx9UQ;s8OBHQsBkaN(6wU?Wj{fjnX4nR4 zxvD$bSlFn}3a_DV>WY;L>riXhgO<|vrAF+0!=~v{%Ncf!^Mk+}h+2QqO8rSJA$!)igmBV^Hpzu{Q&IVYb4hQU8yQp zK^Utc0}TVZc08H5Bh~P5H||@Rq4C8jP&LU-o(4c+E?barY%`GLIqgt)thv71RAl`2 z1u4GpSuj=`3)(MH*G!+>eXFXj^28Yw@+67NSO8{)Y8y=g;Hln)*u1JUzxk_FAMq;x z5QvsO-aC>VP0Xu8j{PGcQNRQbkhV|wg`Yx39_X$phsPtdrEEC8)!9m}d9nV)K!Xh) zwF-UahgR{A_BXWb3N z|7Mn+F{AcVhKd!6JTtEt46bPCC&CfUT5el{gX_*u#{17P(It0x^+UPO9nW?W4(0zq zyFNXlen-ae>W}V1KJRmvI^nCKCfnrP(jC@=^U9Jv?CZ$dRwv7FWeciS(O3DT(^1+C zgmCG8Z|+k6p>?t%C)}%_W0iwYRfL{uC1SFPOFdUZ!`C!NU6M#fRQng9ms6>)aEBI{H7BPFv# zuPD_^xoim`^lO9-Vm>)2G^fpgz*I>BHksiJy2f3 zWeTvUmKVh6#~;l-7Pr)t?R4b##{q!}t=YbGpq(iGiWaq!l%A^n2;nOmH(wP(7icj` z94n^;r&uQXmrgCl;Qb-xt4<_y{O9V5B8&oYX@uy65TC>mdA2u^L4KE;25ld4_epYK z)2d~v^vQoCw?7T)^rhQiu%WyliF(n7)*JXnI7h0%oHfBBPuW&uz>K}H&h z8BCr`vpZP80J7VHK8i3x5<=^nktvZVS9_vX0(DBnFxv{%WTsFJv;s~vaEb=JYN&ks zf(U?gWmDWq3*xtZ5+D+}N;lAtOQM*DS@v0#jb52_+N(^_ljR*N?{A9(RCuB#>aS5F$~I!M>_pfYWR{&Q!FP{47a|8odSu(0e~Zx{iRp(QUEJ zFkM$YDyu|E1PV4w)z@4#yfBGn7$f#EG$d#SP3qdaA_ z^D@d4D@wo8sn_BFou<)t{Qv*f8<4?u2oZS!&(H{M-2c%zZH@EzEma~E1&_#i*O!)JU2Edy z1!q?w59nMoDdb-q;f_Y!nS64rEd)sZuzg=iD+o*z3IGh^|^xL!Ln(R{=%$iAn90 zh-G)1G>+-5GzI)6RCgw0!EDgezkM!g{Jh38^zn#iF1S`U<#8>r24RKvM^2wMEWNR} zi`ySc?s)g4*Jz{vxolA!d(sH+g~8bJK5NT8pA8%1(B{hIWg4K~7*4e1O78t8aDRG($;Pxbw|snHeQg# zm{bZ;Pfk_z>N~skmOIsoucEvMFM@yp6O9(%+*~d0@V}=94#X7-fkfn(ZN)&?|mmJrzC(R5$HQXe$ zW;+Ecuiv63y@D(2TaITO%ggET^tv52nFt~aZZc@0g>x6m&~4KET9Rxr&EB2y29%Ou zZ@@ib>tlT|i%wtg^FC;s=#24Rpg~K3T72AX84Hpk(?+#4yLme9}$GNFk8HbXzVyw<2c3kJ`-773#ri3WE|I3rYZ zE3kKveeCGSE&uTGw*3mnIOL%q-!gk4Hno!=@qVcY!gtY=N7O^)Cq9_6pn)JQM@?VV z4|TMgGEeBejK{Eiy_2Bvy+%f&iO6}mPdncQA7fwlDNPAU2Y?6ULy$h8n6`Xko_SMV zir?{^D&fhj973D)#({{;wlUMg4#s{GE9vU4jT3fymtOYzo{!xNKW7%5Qh=X&Avr3c zxorrW+be&A5lDdRwui|{k;7@-pz&KMp(a8J0<4S$CuTno6H3gbQ+mWLMG3E?$oUI8 z8Y|+$EKA2w7poA;%KGM0jbn=GJLn9WH z2Zlr*le0^m>#TNP8+dd^9@UhKnB|YfZ9?Z1@@i16;t+)9aSV_9NM~96M_IkrhRGbK zrmf+nwAMPFbYSvnPW;dZ?}Ugch0|ALc^(TCil#d;#}0xl8~`_&Ms>;pzmEZ?3I`{9*okAF0;PG zj&QhPgky@Qt{B#rJ3wvr_AS^fDRp2mC=W&l)He(5f&pE|Q=>P_BgtJfyA0kge-4<7 zU&PnwNQgHg{8N%JXz`r&U=;4j zmMv}zdQ~5{%{D$ZcsM){7kKg=c(a;4@wNBq=Ixco4=7>UNS;koc8KyWIm=9KUh%KZyVyN&G%hao0yGNq^2 zh_-98K6N)}_IwtJ!twA`#hW5V;u5NTVmN|qNqM;HoXqO;+VbS60nvW0fQf?B>O7|P z`Rn}_@%6=I+PHSXa!M~w>}t2mVC!~xcRRx>Ci35o1kVP^5Czv-0`LZ7?moCCW|gSv zYlZKBNd|c?JWm=UXmFuS8vbjPgn!#yScBH9k&b6KmiXzp&Fau0I2waCt++l11AtGX z5W*g75CmCa2GK$%GJHxZLIVqb^F&D}Pd81oK+&5Ri6;;goT;yKClxvL2K9ur4jtr;JE)T8BMzAg>yq6mskd<=?vOS6G`~OY7J!YQ+ST@uOFXVEni=D z$Uw>n^VJD1cGt;VVFsQhs>+@}a!ar86-NHclDJ;hxoGuFFNpOsSNZcL% zUR!fHFvBzV#_Uh;Rj}VJx$qVPW!@=10 zu~|VWU}AKlH#g*@u#4JqRL=Yo&qNPBXGKf5>{cC4E2&uGjkzie41}Rx0*7$_8;kAb ze32GKJIlVzsBJ!e*OP^uPbp-zxpzSuuhBf@Lx6lS^FAh^We2JRZxm!jgWuX_z!Fo4M*g!mH??-pj*wakVg4JJ&<_&U7$!_E1>I`oDgq}olkEB07l zBvGB6-1rdjk6_Yk&f?qRP)vQa!Ae+jn~g1TV6R1W*koSX3ON| zUKxr_ok^WY;WbUTj0tIM+-n-)n^N)orFep(`xDHiMmCIcAiylBLGsPc0)P8nhC~!J zl5nW2WfDQBNTYA)79X3s;-JtI^u5MKVdXo^S|EUq1DZ)_kJ*a_<9hqZhrG$@ro&Z?M z!YZZtf|L{Q&nkMr@;_DRZ|R~ZgfrI;@_zDaK8lr*kCXdb1-G%eU(Mf;O&){fjwsz2 zX-M31oeuj2s}xcEE_TRIjnP`fS9e!*^a3KRGow0lRKe6ZAfcv;WK%%k zG_*@)^5xB+Bf5M;wtkbwA>C_7TIIKy3VW*nYG3mWz8oHo8_-aB#tX%&!Y^u$PGAO$d27ebDBl!&PM30uH24a%@aiOPc z0%!n22Y~jj>+~&F2P*Dt>2jh7#eV~?;`i%mDjhQe=7^@#fKNSF%@+rLrN7n_|aYEs&K$HZGYFHd>4jLd|r- zuH+;mC}dk`(b7C2*I_Ghia*xfYx2fD8p_=MBeN!5&bO^z9w=p<5PkZ|n%XH2OOn>V zJFj&z4of`H?r?2`wsi2apJ6K06U+g2N z4KB0`_Exf9jf{~PNsWI-oOqJ{x$$qwLMaJ$cYv=+$aEEo3sQ@ zZvdjq23Yk=TdvJDwxP?$UXO6r(vHE(1964*{4)CUuHC9rNHrMWFgFEqDuF!Ncjdhe z`{Keq5^KEfbNd}KYp!p*^4q0=SxRMlNKb7pLt+0QN_dgnF*e&dq6uRzq3pz;wnAp@ zyQH{o7#>mB1f=PX*WUcWT%Idc3kXYVD7m#7rB9cdB6nW{juCp_1|}VwEk!^fYPA7a z=l>mF?Gn&0;suwspBy^*70NPCM6i+D1ICs@gRA$WzzFBU& z%e=}N4goS=(hV4YC0mg%i}8En!jJY5v$a=`l+vdj2%zn#7iJ13`wP_q4+rxK+78HY z?CHtLK&@W$8Ozo3$t;6EwaQ%eopfOa+W`23ivmhwj8O;gxt|Q}jc{U*(ctMIS-t~YG;(y7zRtP_(vHup7)(^DYZE3| zI`ta>i@$O5k%Tk-=q`#l$gx%JnhFy`2Am6v2$w_O^y)j+1q#zyi$-p$T2yiHNxP$6ML#%w8BJ#J=3#WWYQN;0#=HX4FKYXFDh6Rw@p5(0NK>^ifZPkuCmTsMZ>l(^eW^lW)W8;m9kL^vE;kU|5QjwRA*EJcfHX~H(W>dvOajVJbn#XjAuT(|65dl zy!%z+`c@su;7|Ae^F9JBk?W!+oAhJy=gN3lj>BqkW)6|1)KW%ZL`P$BIlY=!k~7OD zAk+ev|IK+G^ud$a;2s5CM|Exp87jdxDbS086;da774c2bzD}AX7yM5_`Rno|DJ#BO zJ|}lq_cHNx`aKIjJA$iEKRRs}}~I__klWA~Xp3e#G0ZE5T4 z@2lAZ5eDYK$B8LFAxe1TGWxw&h8N6S>5eIR(^b({Wt&VCi{HTC7R7n8GQ3I!Ms);iOE>HR`R_*FwHVD4 zVF_Q_a@(Ajs>pdYpVaQ>_!&#gn0M+QN)S+HJp(OeyYs;|AUz{r=2KniULVfE0)tR0 z)~FPIj*-Ajl`G=uLm_hr4H#4ik?wBJk^O5DDe|+fQQaWl3Q<2^_mUZ?Fu4z~ZN4<} z@b+jKX`@IlYXy zN@J>bf5RFOv|VTU5E5O1G^bq!p9Wp4QPrzSo*u$JcvbkrSU!?CEsPLn+>a=V6~GeM z0z4>}yexbUcU!6qYg7ts;%uA@HSMlSr(oxb16gG-vDtoS>e_M5!Sl0Zf^(HbfPDyJ znTwCz!2O_@H4@IpSx0seWH?R156X6Mn?k1Y+*wPTZ01hWin#-)W!U3~Vu>C3h9UWs z7Y+7`dP0{Y+hY5UOC8|_LuIGDVw>M>HF*=pcz)k*;wxZgT%pGap#)PiEG{N!8DchW z+?IPn@-w2Fa8+p4kcdbjYn;lP`RD2P2S3Dz7OOvtag>Ip6#TMk48$Cot9nAVO^14R zw}un`*CmdpUUc*qtLA&5VOM5(Vup@#D8O0P2GJHyJr+;5l)ftGN0;>-`Vm@KR z-ww>C%7yJ?7EuXKUA&Fyjd1I0nxkDAtl`fuef4uDbouy9pVo{@vq65&ONArHowxev zA4N~{?0>bj5jure*av$HXW`AX2Z!KKkmlH6|>IA2^m`LK;6Db+;=pT zNpC{Xzziu4+1q_qog4y@s{4Q_;gdQh-y`_{(-}}vZQ-VAcXjW$%l92P188#OOG)P- z1-E+mun$*R)zgKyB_~}Q1Z2_;shhR|E`(6~OD6zd+=XA_e^Cs`qu)L2YVwYfClm|| zw2V-?wsPn6+Wz%S!&1m;@_W9lRT#%q`HIZ53r_w#Ak`3$aXe1QI|M#OSB@m<_FTL| z86MKx)R#wB*4qN#frjD+@U65D&AZg!N2Crs37^WV4HZF3da)rj?O`&{{k>DSZaUGe zMo~wEHD%UE9smlzu)|Y|O~Vs~f)6YMW(Qa|R>ZlTq9c{vpl7ylA8cpKws*+XQt$$? zpR&k;^IHZPxhS}4FYmd9{A_!F6Pa%t>H#)~GIR3SV9OQ~^413Z*mN*6Jx`f~MYxyq zVdG1`E+?S%%{{sfUJRz%`~V|6md~}F9paXE@%uF;!dAq2v^F;Jrdk$4%#=%=)D7gP z;SJ)fF&yM(wSYg|u24!a!`0A}KSuE=R`Z|~R&Zs3qJdKz>fzEWc_AvnH`X5rQ;r`( zcIeXsol0HVa~r@^`88U}qrgEei2r_3QTb75EY_1OpaDOn;=1^Wh+O7ntXDN^%h$fW z3keCa+s4NG$F_bO-Qz1dNUjZW_I$jPR3FClOU0Tn1 zi-zCZ)sb{DyAwYB;O`L_b#E?$f1M%Xcl)}G`lY#w3GI*2-uaQEyiY)^5GEAC2aEnmH%N789w7|8w*wtld4QjsMG}=2z4cn=-x(CSX(ljQ4 zLbR|Gq?l!AmDp}nqj@dLQ$bgu?W?Cs11RgX+W120g(Pr{&e#c%JMeFi;ed`4YJFgV z;UfW?P_8S!s^2`1gGe#A-c4Jfo0>0$qX_U+jc>0z=S8v}=ecU6z>4*2s2>0A6kEW& z5jOnyE{q|pvV8{dCK!%xA!Tz9ofBQ8r?t zFR6!Af7xw@hTtO9SG~4xMJ%m|o|oYx!MJ3z_G=1xCjsYFn6afb6EV#2eiK|8dLr|? z!#@7n3!-r)HT-flWh$L1#P>@NE^PdwP}YUKFsN>9Thhe|aJ{Xu`_W=AY!Sol7j=l1 zVN)a8grFG{iYvtXesOl%ro*}Zz1q%`yMZ0?re2A-K5H+;y3hR{7RwK1ypg(mq#cqS zs9yL-CUS<+J{GOdS?GreFJLxryVEVZl{6xmo7|D0z0w>lwBcvTshOp&uB#gkaHb=p z{XYBw6@|h%Ap9m-QaJl(3XVFuO}LBaVmigLtm<6^CWptF0F-9%JOj7dn1#GdtIuG7 zbbs@~q;YZA3)W6=bDRfo0^dZuT+jD5#`XAA_lGK5gOpDuuYiuzY9@fziL8m);}ER6(Wo=&aY^R_tO>&ibsS(Rb9YP-$@ZjIkNKj#6D<5FSX@M;F zC7TEsjf2RPvo&9nyuEIBjW4hLB#`&$S7Zzvp2M%pH54stcYmv9j|KslQ`KzRDr+6B6c&ZyZ(#c~_AA zzF6rxsqIAz#8H}0{f`GAl^Qh>5Ee2p9LNEYFI&NmxI#>MXMW@F?q4 zP#&K9w6uq)$#Y(NBcj*0e#t0>gC(V#boq~Gkox%UllR}NIrZcxV1?QA=Yo*saXDq-5h*_` zF3EKd6Bxiar&UYoS^Mp+7afmGT{B-Wg4ebH*cv8oPto9WQW9& zdQgHN+w6VSx$Bj4P9s$U36P$Inod&`Q|M?-v*`2iJ!8yWFy24*f53Zj(^zyG_275( z$3=yF(2ITDqDO#V1{?jJ&KA7`CP2H9W-4yCROE_6eR*CsNUAdgrR>Z=fdbzK-XgbdGtUhd21?ucB{6t7;#%to7!?#+l?j;jS1g(Z3 z3;Eq8x`6D68$L|m#CnKsZ>Auo`)|N&E>ERa0V!&*J2Qe(DC$#OUK(ZZ!5hKe{BQ4M zwBgD_RZGESfma6L%qB9H3))#d6I54tq_nNlX$%%tMj2EDq>~HDSGo;f)IT^rFwA;e z+HVZDA9{sTHi$vYX*Z_-o&W|U3K-5!CWF?TqWsSBB9dORqD7+~SqDQk4CUB1i*P#S z@A6vss56TM!z?l}Wp2q_Aw})DNn8qJ8qP5w>e!r%^u^hRrg!m3l*4@wpC8i{>1EPJ zl=gm2^aNsxW1RYk_!pv+VWN8A?70TlV7;65S)F>PsdUFTW=|7I^WYNoq#hCqosNQ@ zSl6u^=B`^=pnEvV^UsUW)r_-JU!&P4)di8^kC}*w(5FPF^5s1*3mQ#ZxGT=ZJSB`M z&4myof5Cvk`_p2(Ek7dTi56G$XzAJP$Y#yAUZG1I1w_Q5Nx_Ev3=Y2MH?n=et?|3VX!gbf}?DWL$w@23^E0QHG60V5rj{`S>z& zd|uaFM{bS03SfoNo~A9Kse4#t2oj7YU0Q?Z$bN`in71F@j;63g?dt~iGGb!U#V_L9 zZvk1zI~Y?XV3~X7$29<-3^9h%Y$a70rmHxN@#FC@wT5}3JxwY4Bl>Sl90NG**rCJW zHNm6zJ}@R4r|BN&gp397l))Mu%tiK-e8}gS#7^cW`*iuOIHSZ>EIC(`6)N^t6jC-t z_{72Uc{_g2U?wqXLSSFQ6VtXFktj&N1Rp^Zbr^a!Zn&*W@~d9$ppSh7_|+pWiLpP)d=mk;TUT&+nuUoy!c zmA?#n-(=;;SR6FvU#XFxbSA-UC9v*9!J!`H_=C5*KgrJ;NG9SwV4B_BGS9Nsb$3LZ zj%e-4BE!AQLTyt)%46r9WO&|HtTO)QM@;(G4cd@mooF_11DAp<&P9cs@9G2_%HKt+qye!T#6}m#O1Tt9xPih6B@X%C^X!^{IW*-HRAH_~ zK8im?_A*YB)gIC*j}TaGwz?ZdPyrr;|3=l%%vi$HfXKFQC#VETj$OrEPuZY7O%bLw z_r2U<>uFh~3T7h{?}p8b{SCPhJhqHmmtNkzekE}-^@h<_bI{mBs6_D-(VtE`OHr}e zwt$OGEM_us=-zm?3rN60%tTQ}ffIB@d;(=EY@8K2yqT?d;Hp33M7TR(FCemsHqtca`;o7Ln?IDHVJ zM+DWsB$e<8RKd&Cm{v#W$djB>X@Ip&)qw%H_3Kok-{{V5npxF-I%K!gW``>=`y>R= zj!ORgSxDk}uPo%+PSj=hNYDyM6U$I#N4J0LfX&_$XDyuttW6_i35P1iHl8Y>z>kx% zETkcRraRc9wX!uVNR3l!Em z%m+#y_RE625%bJj`XnYh;9av+Bt%Gm{>kTNbsE^~EXiS_@G9wyx|mw=AE)EnBv@7W zNl)3?V8bU%I2$2Oi`nOY)icnxuPb~Si${OUa89cr&fw!1dl6InN{LRaaXJTQb(OepS zg#aS-X28-JGNI=-zUPTanvTh$fKqLk=F9sUX+8=mcU(DL4t=ms7KsVXGtCXT3 zuVVi~x!$P@r;K^21v@(yUfvGh?G^@%SLA?)ex}_Q&R9Ucrc1AOFGqswUW1sAl;laD z?s(u>i^L&EwbVeOwT!>%yzk5%VBa{>;+UbBMSAeFq945FW1BcXCyr9egsy3v-3qhv2rk)%-F|Y{afeq?#vs<%A zOx^(Y@hWB`V}+sXKSQdS^{9NX57S&$u#x=?W*h z)|=xvI}e(0^tyY!cBvxup?D)5b=_3@N6z`p z{*KQdv0c|eVck2fP2JbCSQh6JA}^lDl2i*#i;X4@w(CZTKS#L{+Cj-hT5bU7d%$-) z(35R8%jR8<*1R}hD-SUKM!N)UPXxCHa3a((p}qni)DH4&CixiO8IaPXs&Q~5I)j!O zUGJr-ckv9^r1LvBaA8UE&MmdK181x$J*_tlxsks83fN4uSRl)lcHdhXxis=PFYTPckx zFQ84%>?EONGYlUo)fEHSupvLRzon~W?N4*!^kdf>!r+1=aP0E&kp#0Rv*>@FG399K z{@eZP2ne=Aszt_{cAn}M77&|?);TGR%box2qLs4G&{l!&74KU(n2xUO@A1tW%`h!x z@6E=}3>4eXXE2kD@8aD?T31rAHfU6Hy!yI(9x}LBGKI)N*r#fiXZrdptD0hS%{V|j z0ZftHr0YGf)ksu(G5I#<<;j1Fsb?;8@a7+mwrj<&D}BGS+GLl@v>_b51{Xe40Be#z zw;{%7J3U}G3R}b)Ai>>op(akqOe_Z)D&JOdkeIFm_fncKKldg`FYi$JLf{GC-Fo-E(yszxLV@+DZSDE>HrT{pYslV>x6yw4q!D|e+m zwP$Ip{DB2Q0eqF{@Qvo>q_8Jt0&>uf6RTS$kZUkC+Iow>^d4^R(8B8w7H_9}uU-qq zjhJb#A(Z#4aY3*eGH6|@bNuYB)@^7jBF@tkB&Qku42Ua?`A+mC5v?pu6;e<3sR>Q? zrc-suNDEB~{a28)11#$oC7<1dA`@JaT1j#;;V1e+X#Z14IU!)CVnn9X^j(OUUO-qP z0xkQ`fW9I6cavW{X|Z-@MzItBCF5$gxKsZi=!*7UsY_g=Ti?T3v;kn@6uLD?F%UPA zN$XDV^d z{a#$rqBe~GU@N#%Pd46EEQ7nJbK=h>+50riF6)hSo+TJ z`63=)q6*mh1&27MAZHHMHmS0GAB?T_4GtPOBDQQCP4?$O4iXjS<>p9Oh8E5s-QC_= zcH$r2^eIoM!<698EL<1O0`K8wGR|)1|O_UGQBJXFL<-l zDU8Bz|BtvIljkzczT>r%D+Z?#!arbk!r4Ub-ms(S_K8RIk;~RQmF&-aaQP z^h8NS;>}~Chu{sKDkj%_khMJ6Al_n?v(83Ec9_ncv>_!Ns!8kCU{@}oFg2u5A>)6b z7Pur2Qyn2FEZ(CB70qYTjCWs2Q=N`P#_#q=ytZ3LG3xW6zvZzuv()h^YfYJz+P`<| zsU%TgP5^qt^V|K;LONv8DI3i+ReC&eujWqAhCE*g$5w{vb!8>Da|?pyN_*z4t!%$` z=wnO^Xa(nUf}Xu6QcP2((uRFt)nqB4tfv-~0UD$2u^)Od4~1r4iKTb(+3R#16A2Z9 z6*+gPP8Dz!bZQ#%geu={xvO)Yh& zB!;gHS#+uvcp?^m`YF)R8E`-QDIe1q4hb?GStRabILth=XjZ8sC(`|O$_!(7xKi)KSNSF$-T?4Ed)lw+nDU+D!CErYvp+~cn%n$WqTgVDTt zJc1>*x8Rr|XRN1r+R__Z{>Zs2dFwJLRj+Q|Y1!18n>=jeFtsqT76YmNEE-ZjG><}J zO1nk57<}d@!%sCa%UE=Oh$4RIK3Ow^o1}0lx-F#HI{O3tT{MzugBDH#3H0#|mmjl6 zqj+MoJGT6xd;ocX>K#Oph?T6NIE&Rk8t-cfih9n108P?U$H;XY3L6#zs9GoLTgJ~b zffb)euTwLWpBgy3sYZH0h_qOX6WA2xD--?uO*Z7lh50XtXvx38YerQI7`+wSz_uMf z=sn^9PVLNRceWjTFP?(5yiQ|LnULh(lioIrKByYE8i^d|92>P-JCC+)vm_;sl8}OV z(0)9o)Or|5689lmSx3SVuRiiSks0mrzBjQo!wFuxpM40zad6a`!6CK&Rp{~MY0SN zEE>J~l9PG~AQ&6LZKEHK6Kss$ZP9|ntNt%0vMdN4W zj5&%#)j0tJvb#@qmCSY`9#0I=mu zyuKX)tU`W~1&I=s@U2W~8wZs5RL3LBV;P3E5+wiju7_(uvHG%-Pt}ZOL>NL?-_XAc zvYGs*r!-)}XAT+9_TbbNQAS8|Wq}~|YjDsqsbE>|PU~Mw7Wl074~VLfrSLY zbmkD#zE-lUl$#(bQj?-6Q_3O_5^iW2ZZ={h%;RA`tmiL6rp@)gasJ_I`c0fdXSUl% zFGDnrI3Dlq7Pk4{=up`k&{;DXFFmW*$87~HN+)$ywYNHs3p=78puw@~l{yErt^vsr zMSNvrgiKEJwtm7#s@mQmVC8N^)^{Debb>3))uu)oFIvQ>rN=B517H_d`a>18P}kx&1)(rX^0qd`6|WLrq~Bxq%Kd*)!=9dTiAplBc~KZw8H4;ipF zHg)ipoFy8q!Ad^~h{}vR?hk+aXpFx<$-t_vf_l?JTWbn`#9qX91$a!!J@wj&Q7@Ow zZp0YrZ~dXZQSucm(R@xzdO$n$F6y(_B3{%0ak?s^-y(~zpDO;rdoEj|IYcDV9W!Qf zkU!?YPiozyEa4|+n#=6DUR8FZJzNp9-4QK(1LAPIIJY7z`f9ksHSMYHBe3zrj8k!3 z0iB6xO(;AtZ3F46Sp`s|O{`uxKVh!O1I-i>!S7F_#l zY7435qTP6piB^3phNN){$>^vn9j=FO#0+;HDvr~ldP^yOVj0{a+aVO|WUUR^9y1bA zO9i%+KHB;iRx%ZJ`m(9kZy3OlI4Zsk@%Hy<1ZyN9$LHw%39qx_%b|$+h|O6rdWJMA z4r!jx40h)sZ%$4rpieTijw%DYqGKr>g$c|FX@?U1ms8xnSR`B~-PUlC-T*KS197PP zX)(oLjM|;@>{6p4XD`u>5O$%&zXa zlx<04a)i#kdCpu}TF#MUA`Utu0c@-as(E!sg~Ez8EnV!;mpX`Yn(N9NA1CL3th7VQ zOqbv650;>cHKW_%l+8Kujjw)BZzR&AL968Ju&KZg*RLkjkY_>_n*=|T{7**OjnbGcjk*x$MV}l-Y;;NUYiGU~Sikz5gT-;%S*- zr_peh(o+?Hvs*)Pg7ux^TzxP#$yMHDg=6YLmmxHctMiUhMaMbwDu}Dv1rX5mTbQHU z7;;3f{N#$&J7v`ueDbEn4FoBh%0Hnxuk$tnDjhB5G6ssM-}SMp4qUybZ+_|mw*t?@ zhUh+2&4s#Qz-xF&@}*0)pwW%x=L0laYPyj{s7bL2MK)N+CFelg7XOEc`(?fp`&Hnh z;-^HR2%pvw zxGhHgOuc;X4v@D|qKN@#=yTnmF6{rdJPos&~xo`$g3nS47G zjLSlTT&>aQ`h<<2=%Q9% z{g_;lX;v@WhdTXz*eRmeznX(9j~mHhWHrv6D)f`$X;xhn&=xhh1xmRbzqG4zbC;Tg zMe4t)43`|D#VtejS1_v@O--~f#s*az2J5GHq*+)w)(<(z;@oht2izz*Ss}!#ZT0X< zs6^qpNC|VnwG+tL?CjTqqUy9SMT_tEQSDfv-}GMp!yxdO;Zh-#j8&71VMRdz15+`@ z->FpnSu*g^!ZDR#js+9EfEq7pmGWbQ>W%VkUYp-$KU&k7e}L`M$NScE*2UKWKM}Uu z1ca(!dI*fO?js*W1mnc`ojyT~iDPdNzDnZeSlBL51W^A#UD*>Tu|y&C()Ho6$b*)XHe2RYmRPKMv8E4BT#0gqf5WvWd&aoeV-hIT z4KMJJLX#8GgKJr;TQ<*NoNI*~A#sZ!&&E(3{dq}g*R?Px=pRYBh)%zK-15Xxt7A2C zvv!9#!U3+*bxb_qNP7v&2hl7LFz_uYdeZ~7jYp&Wx%foc>14e27cVWGW^@6(Tv48b zh#5nTtz`sdG#Vz+QY>8Dx;wqRn2=6}g6}}G;x0{tO93fRmBGabK(Z-HGvah{wZ0wr ze_N7%aRF52$$m`ND*@eJ4yvwrXvT@qsKuSC$PuD8ts`jyIm*g!K=w4bEXKBB;8&rX z83}AFDwXq5<_v0+60IWq@V6RAuu>y|V%8yKd%^RqCGv?Z&8l2_77jsELXs7-{;y&# z4EnP^u%SuXyH{m~Q6F!}IBB=B|G7K>ON~twrjEummk1|o;gTJ35ls|!`woD!*TG%n zq@?t}n!fuKyYv}CdH8AoIAVFf3fb6hRTjh3atG4Ao{P|>7cXhIH)_MB zb3gSO-C|?rB^(V73n<92QNE|^zP0QPsN-y@D^n>g5rvVJ09tdOK02Ihy4#={X`}E& z1=>VQ_DlQ$v^x3eDjq$21fBg3Z;|IvtBc-8hJCD82RXmK@cN^_P4mEAJc`W`|yF>p{J#mO8`nCFYFNyVOa$9 z+SVM%-Jj0htL%@jS8VCv5Vw%5wneR1rC!IW*1IdF{D0t)IU2($J^Q|`(rbBjj@d)# zmurE`1(1jiY+p%pCQP0Caz|YRGmv)8Q15qpx@E@x{RCJnw{SEx$dprfcAQ)vgT1HK z`VZw6^SJ?pnqqy&9b@R_N-5#S(0k&D#uC}a47*;W45s;iC?T4P^Ym#*XQ^D6FCp2R zKZiNOZ%zEm+vfJYcjm|Ohd_y-pp8y=@sqGVQ98LSM31?xuLbfipF+!9CNv|AAb1X& z$LCNrj1Xr3uu>t2v^c{ar16)^j0<6FlsgqD{2IM8E4#p0(oro$`_9M8e%1*w6Q`c8 zPow?@QF)0=(@o(v6ra#~H`2(-HBCR^Ofn4i1=K2{=*BTWXbSpt^v~fFJ;ozLY z_=YOUK!jE|yM+y6PsRvW(xikSf8E}q{OzV9r882#rT-Y;_WHtV_<{xM-r|$CE zH`p5myg$&Y#dfbS+#zXB9 zYD$Gt^`O1I^j%;+^5dmI*&=uSXzyOS*0T-__#zQ@dVE}47h!SrGa2R@0$Zxtfw24E zG#Kx+hF09{QvatLtvgTk@uXBy^b!G|>gnUhhJ{pV?cuVmm|Wqw@SO5vV&R(CJp|^| zU;R&C&(e9+!PQ1B4fACL;?+rs61Lp(*EG4iP#KU&NvamJf$tJLY)?_==NRWyXCmRj zi32PkMzH5JG3cB1;fqb&5s_Wvwq|HHANFCX4(G7Upd0XXTO>t|QM?&DTLY+Y2}aWL z9Z;~V*g^#mtodp@s@&)xBpekX^?z6xvB zb(b_h{*7AVGMw6Rsn(%Bx~1#-NHj3QFjVz8SicF-Mt&r~>^QW6mcH0xeu&oc?Z;?y^lb-Q-E{sWs#BU!(;}aT8v>zrzB4VCUYG!5n9ogL3;}9- z@I(6Ni~WF&N(BLRDr+{k(odv2=O!QI?f0jky}FeZsDS*3ZBBohrTgv@6nk8_g8sfm_*?lv{C-|5?qt_a1TGqfkk@SDY_Z zd4V5+D)v{WcMI%Mz%CBLTU4nz1V?N8H^yvs$q@)z3!4kaAKULiH}rS4snZjscaX=L z){0E-Krf%=OS_*t{ZNmMgyfYwC+e1rHZNisX#tz6unvfb=o@&3sQa@bYxr*=$rrNI zuQk+{rlW!&n8mX#wOxxl0F7}HH?kvCf0j_~A(4J3GrIn2f#t%93aVDxWizM^gg6UPOYJo! zi;!qoZ5#%qj)`a~wGKQ(L!%SM!HmBT;PO|m$qTeb=WrV=D8e2ppTO&N6M@1g!PtTI zErBa9pA+&Le_JDM#3Znq#WW^iTt<)Z<#;WUo-kQD7DrnlNedSNoxnOFgy(9n9cdkU_u8^0P5q2gZJ>;#vj6RtVhLEe1m@ z@WP0En|3##iS-N&bi64?)&nLhDvrt+xP%dp&RnDC18G=)=#fVpR!Q9~C|M;zM~=FEv!4p=V3(wl zp<=@3u`$ulOnm}W3$oK5?-0M9hgMer);n@J07_?aivkQip~Sf3i${-kIkIZEyo+3T z)jo+dDCqK8Kq8*waO|Hr^QpZH+}Yz!%v!0=7_0hr!GXjI*loG(gWSts&aFN6GvR(J zco{UTQZa$4UwlwACnlMe=s6N1@oVch`NgRnXB`cxT}=cvV}`!lC!0dS|KgSXIDuAy z{M*DkxVWQ`apdW$*!0>>L2@E$5#yA1HQxublSpTaAXW&v33V`9SQ zC5wKyqEF>99&FM%V@Jc~HB5e!HIeCqa^a+JYV#=EA)6)rh#Zoaa*o$O;cB=sBtsaz zWdqa_)Fw`lSsefQC0x>^|H7o7@HWv=(VQR7x=RgpUlk|*_RUBd3wNwPRJbjV@ld$^ zcoZ5C#yvh_3{TP~E!-lj%>Xv&!hpiS=ybX4FVJrGlyqW++vbMKNcFRC=AVf;T=Dyx@WsW^?P`kp{4R#SZhL$k- zF7&uB@ugivyURy|6jKil4-M|C_hXRh4Q4Jp*TJoxibicd8iCA+UVUVColT>c0KmD6 zZo!RVfn@5xf6Zgz0oj2wU5k!k@aKZHKzru;f^M06brCy>O%`176SGj*+;K%H6J^D& z@TCw^grX0*5BD#kzGuBQgsOYE%aOIjY5CcsM-!x>G~Y6DyGW*zgyK{}Nx>CMBzKuL zhoIR9<)uZWvTYa=(JhmVxKj_?)T~=1%f8ds3qlR<=SgzvQJFT9o;ahJo`Y`vCzdYI zL#^@T6;LwPrWDg*N%Qech#igILO*8;j=JY#o^|plLx64+&KzF$3g#q9%%Ik(t|?G= zxFrKSS*bH01>T^0E2JTey$~BZ!%O>;WA?panZ={TO0c*kIQFn}4k*TFRc1^`3kwZk zFOPjXx+fXLX?bc{NuyOf520p%GIpc#ad@{drehG1!$xv;9-^)WJ)|-?mXfARxft0+ zDWltcsk=Nqh(hk~!x^jr)p z+y3YINs#3{F=u-Q37T@5hyW0;&r=vTabo!x6oA96J%GS%v-EIT0ncE>j*PFjksj8z zj7`S_c8}<=`Pabd5dIIv<+mX>S5Bx)5;@0Sf9<29S}8EeMy=EY&%r;*S#*(yP30_? z@rbznEse9G#Fc{y1?o+OQT%jMIMty{+&kY#ZW1H0TkjZnL6-Oci}X4tmCqN7Jh=N^ z;ah%at(JmFd0z}OJdtBs7A>N$#K>eL#Qw9I&zivOkOj3PFCOKw5l6%haC33P8FBU`*?#8W zcP^s?ChFn4_?q-OC;&Rk_)N3$)dUF`l5>T-Z0<*B>&8c z{k1)2ZY&|FRSOhTl=KQu7OMf0 zmPv)l{ItWvzsECA&?R}fC~0F3)sDu(oUJ6{5LK>;&W#Da-)t^#2<*aFD?@QthfuNaU@Ay%o!c?EyJZV?{P znA$+nzXvqmtbp_0`kRALmrjtwOmk&nq)Nptng8Z0eFP5D`cMVzSmg=>qW!DG{{8#`-K)AoayaP!} zKq7f*eu;pU^)xDF;BHLf>8 zEVaKc?EDH z%R6v48Z&dd7m49(_P)9$2@HZ8S0Q2lUpQzM(C5p&8tb!BGjm9M;#VhkPEbt+8uqg% zbsvSq%^aI;?-lx?ZE`28rAvOx)9P3!&efSwcw`f56B{X1EhMUtJgX&a47+o_VdXiN zv)}fxS$c$X6T;MverKk@jiR_yx@c770tvdIISR;~vNU32^@Z=;hgA)w$F9YZIV~HM zCFQp4oX%93DLgn;Bzfz6oETY6m8K^y5|aE{U!kO(l7e=nT}bPeiN!w{M%8aGW99hB zTD0R3v!L^>S}_1C0nX$4L*y^94YWx%)LX%^$kog|XU7WG0X%5P`KO9zV%2?k z@>!S1IS6O-vz6_~L&wMLo1~?3_9JqalZP6=52N`;IH z6UJUs`o{HN49sGc;vi3%2}MY3&j>C~wDy-!%`K@s&0e@Dk5(y&a&Av$oT>~%P2Y2| z-kWNh7;Mt(?NiR3V{C5Y0MX&^LD^sNSNDoT7S95KRY+c@=QVubmE0o7#3~xg!ISvP z5&7l343nQ}FBOoDwR0;iHQlatz+Eh+$Z-JRJ2T^*|0Kx;Educc0~C39$lgnPYB8eW zWwAjwv^f3o*PU^hRKH(Bx=5xt6EvtApbFt*Wj&B|#|@#Dqo-lyaPEIj$P48_RnKgx zQ)hL+tAm+|FpF9&FWu$&HDMtILzD|_=lcc)?$^V7gzb#c3&nY-GRY$8_H6(6+s(w= zbv)1eg>%$~jtK)x5V~1meTzX;LSAx}nDk?>$Qytwt-Avr;8IR>W_}2<|12Zz9O7Dhwh~U**?}h#xoD1dVi|y zwx3&rYi*PzslL9@VxiRY*(WO7CD!qEv+GClqtgjFOJDK4K7X8)K`_Gq*9xl7Hv^;} zU>c{h<_i)YjY*8waxv{c>R+Ag@hGIbiG>1-#(M21o$QvZKnNA55qlSHn~`)BJq2gl zjDJcm|7%dAg~Fx3Gy9A>f4S2SXK`R8vgDX`N3nLihhqpUI0vSF&=LXkDZdwUML7uj z7WmQheOmfF;nK|UiIfoO!1+-Dn#)fNRxE{4VwHBs!l&n%pw92@^x*D}q5?@HQ$}MC z*`ODTr)6%zflhP&@QT3y!2Sg>u<+(yt0foWn3s{rbcCHiWaK|vBmn#1Ze3K^H};pj58F072cu8+jSXO2J=+y^A&YsTrOoUJFL0`o}A&M&t+Qd$L#vyPf^#lsuPC58r zye5g#prPvba<;&@1HqLi&{kcPol<6gPB*ES5PiH zwRIg}*xVGL%l~9dqtPpMXN9Jvp&L~(UVfpz^UGQ@}8AvIz3;ioqM#lfd5FI+#rz!dvA*g074**w_o z*8$=+_m~pK5u5<9MCU{-vls?_xvt3(pWaP(PCz z#)Qd6N8B1cC;A7y<;bz=c5XkaV^JO~25j zt$ebPESzUWR8F-@!?)tb=zGugEQZNG=TMy4@jCC`QS@?0Ir?Y}98Be{HEj~YQ$L$i5|j%9z2Vz? zEr%(&E#-j2oQyU}2chTawDJ$xrJLE%w3v|e9s2G!8~H}*asmqDa6Mlue9iP`Ov6%dN8HULQ5m4qA}kjN$?6#X!jy*ZkL z`GM7G`DU;R@0GA9`rkRlh~hFUIR3eM{`e=!_9x!Jc-354qRMtn znXf;FfRqKp0C`nOj9MKEy0CCe48zdpN+wf-K`t$qp#uLOy(=IHCo;yJ@lFH|DE5X= zc8ghCvV!SudNq*ZNdb_ssLq1xs0#v5bN!3AC}NP_*bFOhWp;i^JK=>^nLss}=AETk za~-Gd@d2)YB}7O-O@5a(s5UiPy>4us2MZnO&<5fxJ6mtvdXjq27U%J@=qEH^PWKKH z`g0am4lda+JJ`&~ZHB+brsaG0?VC3?gr_vX_A~2uvm0Sez#kh4xDa324#@i+?y0- z&dlw%t*R+xZ6KCwh%eGaS_@9>3X8vtbxEL*5RM8%&ufdCUGZp_Q>%NS!uCIsP)sLA zW7fGV#!u>WwnO;Qxq|vMY%3Lip`LdZ>hD2mVoa8hup^cm+7a<-7mUAvc$?m=%lrR%MU~`hX*d%(tqxr zLe@r%ADK)1I-c=yHx644em_;Pupy0TY+yj*H8Gx|)ViuNysQ1dk#N6I*`udqBQvNdE(@OZG4Oo~BhON+zkQv~p+&oOyr(3&VTI0hps z{xzCYoY0qDh!{$!hTf$OqL;#+Nqn>xD3q@dF3klAGFw8pRngYb%XuPDPcQR<;i+Uy z0S^tnT%viK%k;)pMfDI~T2=k$?))qtU_%`9V3R|?d|tG`k0)tF^REeQ{vw(=+WpG- z>?cup$cNN^BSSSkgzP%$6vo(Y3Vs!K(84-i5N}$_ixu^|qxS&Y>XSJ(IPse;y??aM&U|291W z_g7weUSvh4Z;pp~3~&47;j1Y#gA%qXNN<0(6Gy9~&AvKV+2?f=E_(Uup~;}aS{-oW zNvEbTt$sCz8l+OE3yA17YRTSW6@}nhM46*mpde$f@jZo^blEyuVa4m>R zRQ7S68jzH+czRUFo1^=Ti>gc*L$O#YVWH6I0J*CU!g)~#cyVlug3V(89d;0~ri#+> zxkE4KsM#C}M`{+Z5$9L+h}1Z*H3ta`Tw8+y`A}KV@Hz!hX^}PFoB&*Bscmz`1d%EO90uV`jT11d#PW2%MYUw|2b070bMJStX-21&^ed+E z>j^EcWIc_WTu|Fd4wCldGgGCKz%-2nrN!R^XIZwMP7@*S8jRM;1}oFrxR8>U?RDdN z3IL_`oyK=~L}u|>x;sBB7FE1J&gicYONQSYj~yor^VuJ};&w+W)>q&oq;$@(;xMPa z73{)fP0z;`CT>z1H3oO)eB(827&MstxXYdiwVKu`&xGc5v~irF5R#@tAu@FcggMtI z%O=^`cI#;+W0Wwpdt&)(d1RgysKIs5IpF|-VkfmPrNeQ?%EGF$8box5N}@$$Qg0(M8XND1yvZbTuH(7Lh4cQAR4l}Dl}z~!PA)scWhiDFZO1k_0!nB zCe@Q>-WU^!PusFa7Ghf}(~SVAxZT z3>IBhxDq%demb6msn77{IZnXoq{p$%HKN0l`K(D>6$)y_NmB3Kpj6{QTbQcOXmeTB z@6AA!ie1I$`FAcvt9koxtY0tEh@xO8=xSZt&mm>{LS~yEWdm@Y^}m z1&oTSn>Tr6oAU;9w3LacqNOoHa@_7G7p~G#!uaAx2}EXdhuYnRaER_);W+awe(Y^; zLaYFue`!j7{oUZSjMq2pU)tyiF$0utuhYDu(?L1Dx7thC)3q!aMh*6V2}(QGx#T52 z`3ngD18^OzS+mx5{IG(gx8ZKDT)rw7{O8r?|G-~mSzB=4q;`uDk-O+>v4q0^6P2MbM5{YI^G?N#nTi zW6`}~4zE*emxpr(Ps8*^BcY8<2rbx8Bo*{*A*;xOe{?{C&|z16!2|k!& z=SY;9_)*z9+z>+;S4DYWlW{WJ-jUvPM^Xak@iKF8)#8Tf%J6)aph=I=&Ef#kAP;M^ zh7+(`fxVB^5T;Yd4L1lB_0gfq2W<+0xxM8wPfNT&_%Fv^;CjGMPDnS@Nz>W@cGD={ z90*jPa-80E;MlcQXS$?(S|RuDA3vr3tRh3MEQbBplV%))9vN4-0wz2qF0+Y!XoOaY zM_1x4$NDF@ri?QLF%bhy)DDeLo9K5KyPSZ?XTLU0RUejO?63d*P2L7ct@z^5r=Y$* z0JjaFLs0o?pxXYkEcJ2tH0-n8ts@{YMPgZPH&x)K_2ok^W2>Xhr%Z2XOxDYjA302k zahm&pu%P3BwB4bSDce9`b2l%bM8afKzUrfyX6NU^?_7s8_E2L;_Z1mpG3%PF=Evsh zX9%$k1gObqCZQ?*#^m}GwNIvjoD==EyTdLHD?F5C`}{xCoV#7=dlK(tG5QG9CD{=v=bdoHqv1!(%Ef=md{+N5-NL zQ*Eu7`dg09lo?27Ir~>KW$)-(ha35>?R>{Sa7E8)#0?M4pJxE9i+T6-#`-I9-1K7~ zks4*{hZh}R5GTCEK!xY;cbg!oaTEhEP$+{VAfC4t0}__U4c6-Q6zxTRZ37o;cS0w; zi(XD<$o#F3gpW$Bz(J92=M;?$;B%I~-%xnr|0(_Dh|>@REI+xKCky_%duO|Lz%D`V zd$rzO;H^pJsW1~`6F~C-$Bt?NR3HByR6p#>t2PC-tFQLHb=xcLZmF-t;x^nF)njJ) z<)GxGkp?XkK0t#hYX_vP0g}MC@#@a^LBkhB)y;CR9g0(&Jfnt%lT^F86`t1)x0q@X z1SBETev)Ij+rO3lp%QN}mdIsy3^(o1&sl2p@7;=3BHu~e$ccB2mCR&{06Ek~3uO07 zAe2&J{N2AA=qdgcP})?|Q0Oo~QK1a)l>TXfs8fX4;zxc&VRpCQ!p~6)RvJqyS4-Vi zc!IiI3dvX$ZG?fim|frn_(saRu+bd*SqydgbkhiZdBnKMhT3?(=}!?TS6*FF6%W^H zAi%@Dzbh{EIp70-D8lBOk9%!q08zdmTHZ~~O=zA0QM=**(%JyL)VtDg*IV@G_uj?7 z(-qWW>2yo@vLF-g@n(>MqseC& zn|{xFRwf`{+Z0J(li@a)mId zhr*a2Er1WXL2sKCa$?NgZdFz3x8jAM{{4PNDm^%>6vG%{Ozl`NyP@C<6n1PQ*V3Mx zz&AgusP2i%kJaj-+&eLsNud^lH3CZ5Ad;oHUW(tJ1h3-h+Aaz^@$f6g4!&id|}*;xykoW7INL%6T@&Im6C0mhtEr``NG|u#^iWNyLMEf zcOE`|qBgH_aR?|sNI%=h{F!u)P8nagUZ=S=+P7=!l88}h#1v`^W+7p`D9v<|m5WabFFU4qlar+w@X!LW} z*3aa8jMRelUQu>~07v7uv40Enz@NjC(5P+)7(2NHo1y%K3wE0bnZ~SRLr?PnD#o2k zoVCAC52WwCNHJqj6}ccf3%{1nFmG~iM1LG?m+#Ld9HkSWwzL!DMaMyxd3Z563{)y(z(!l4b%8aG=Y#frV~%Pu@@F;Lw}-j6@RR0b(W6Jn|S zwqVD`7r(wHlPf+fdjJF&eyonee`NvPC!YOeIrC?5D$|gt7XA6Xo`QO~dC)AB0 z07ZL)tn!y6;jDm|Ima!6*-Ep%8{W)5Ssokcab#Nkx0 zG{iCYenN;zuA-R^pJn`#W|i!EcEdI07Q<#7e6130j2V=H>(~B;jOScnTp|tuiQg6r zD5_e`rb6?pZYCgX2r$XcO|ZOpoa)mhG(b}S=*|K#2C;Hm0P*N zASpDdBjL`R#thXrL|TIfHU;6#qpMvF<}xG7pH7BpBvVeunx6FWck3keCN@u2T$P(MFRog{}vX! zZ9}^>aloW-;BO@c=rH)Mygo6Jn{1S%7P}Mi=MyRHL8!O zKibW!g=iQ5Pq3_i25sMg?-V>HYYM7O%AS_=mUso&j20D8&HgUeB@c_{M>9~a5-Rra zSC5@z^J0Z`ya5YoQ;1D(XnM|Gc145Zo>t=g*eIZVe8 z0ajtug}B;6iY-arDuvJ^P)%p!jOIUCXnEe=6bN`2hu-Sy2jKeoCK3ebpGURY3S-TT z^uGolyJm$YaMFvp>}Dil$<>WP+DYWCB1~UYZymOfAO-ao_NCisDzZ@_17_gR2x3Ia zTi4#Js94BgTQ{Gcfz5$ybq&th(UHWeDG5^d)HRup$hFp z|Buq(Lh!dp20Ga78^fz@7`_w%5JpJp;e=iW)zPqcp2M|EhJ%5d8L&O+<3U4tvjD%0 zGIRrVs9^n!`~jm%=!qMyt9#xWQ&}obqpVW;uE$5^1S=E~ zzD^)C605*svd@_;5|k8!ahx!o6QY!|o7hp%OombLRe7;5n~RQR&#lPiVUvJ-3N-ph zL6$?`XQ4fd-XO)di*Gy?54qo{()!UOSPuRkT@xBNQ~y{@%5mEr^ihH4VQzzv^9q73 zA51sdw`UlNQLgrz&m)NqYZb~E-v5Sr!Eb&@S+Y?l3z-F@D6 z#BrzbyqKAk0u@tyW+ZOX;i`N@LXlkOOX%p1#Kdj6o1TIa?QMMOTC~dB@;w(z60H1s zy_SurBCU_+2h-YFO(}7n4CVM1+bmR=fwl$??uy>#Xd6tgAS1c}DJ`Jibb>8RQ)M^s zAG^S0pw&W&K?erMOjDN8P<1T}xm$2Tum zf>T9}4+45(SP(1wJ4?oyI%Wvv(RXTTXKP31Ta_a_Ql|xeKQfW8l>QWMS3XNi^1R$O zg0dPSih;&^-j)v)Mx5A=j9+Gm`3f1&PRqh`6c>D4jlGkNveqC6Lunm}r85BC_##%- z%bd>)I#p%$D{oa|JlfqO!}4FNQ7{gr#L3@G0z8vP9U+dG1Th7tmYweeX zF|9&~0hYa9LSh)s$&HHur8vI9uL3`Oclnn%9hOtC5F=nIrqhM{7^pijQ_vsyq`a+o}$hmYtcOl$EO4{29NOL&oWznNXQQR>tdmJxg~ zstN^OF>wy+&err&tg^M}Sk)~C*HY5AY|X$8V#}oW8#G!7>^SLrqh;TMh6auPb_jub zq%36xSU^-)j}~`V!nfCgjGZab2GsS@;gqwaYEv=(vi5-h4ltV7-gz`OLDMeXsG7@W z*|cS&0*N`L^d32M=40Y8I}cAFB}_CJc@G8pZ2%g5vRz$%Zj}cREj81zpRPQ831w7r zTQ2vSXy>WuraaaO)muV4V1OZ;L0}>qXBe4^#JAl!%pZ~xt?0uG6j}w5^c`-P*)aoa zX922D5YC62_np%wS#2C+^>t|oL)D9&bt zZsdY{M>uu0!fKv9?Z1-dlbcwuV`qWpD$uB6t%@#3Xrqnn;1%2m-IB$jyg@UYjcR1z zt6fbtu`&96h=zYZp8-pRfL$l+z5lbKBTBtt)I70Z4LA*fO_Xd~WCrcPh=8T@d91eU zz}g8h<~Dpl+1RG;3Ek$NTNb(Zexo;FtTuo&bR$-(eKu!PimtOX#bG7!nDKT29)rFE zc4E?+aV{+Gg;}}9!X}=6ypht=+eXCd%ZxLe-a}n6R<8}AR%|^-%c)II)UqpANY`dv z`t*18Q4ok)UM|K_gt2_q__~`)w+*4SRUl*U=vU5I$DCev-Io=j|9UJ_CDU6|98OLS zrx>*%-XhhB#SckOIx5csYSi#?G4B1j1!B~9`Ny9O%m~@E&I9SJIoe~J;)6ipSd>Ek zR8YQy_#6Glm}Hom4;sS?&qE&D!CSWC+taX0GS@wHT}=|0y0vH1VZqo;Q|m4(#osT9 z*cCWv)c7(D#srI6iwqrEgOcsn|L_W;o#bH2R2kmj*&_n$()^GEHDe+d%0F3Ut1M+f znCEns;8S#ee3zOi>uJc5V7yKrVJB`E!2Ji8_f zgqg%+=?|{3YHri!#9QipX|Mg_CMutC9_{)_QzoFvBs1bD)+QDbv7rO80?pgw zo%-X3w_LfnADoGom7!MDKF%&C4<;>Yo6K3$FSzB7j*cnD9AH_uH`iIYJ$S~u;^V&D z_+uqkAITsgEjIRml=kZ;&&P>@D5}Ugav{y-&kqT?zx!cl$0;pk{s`KeP{aV>v$HLWlk|c zp{lR=w_L<*C%6#*;hNQo(_27e-L91Tvrl8YyoR!r@t7kV)mQx;*gcis&uPo6h*B*C zbTKBkE$?>0s#_wJ%?l2VBS7d^dZZq&9zbxI5+6o$XLkW~;f})9_TZT@MhZ_o$_@PHS4}0h zXN)ys5(ifRNBbfTUv=%Wz4ovUiKMW%)!ah0`mEda#8^#Q4(3phbIdl=jz14|AjJbc zE0AKIbyp)Qv-0f4#{^DI*86!mzY<5k+%n5ZAn!^j%SA7MpJcXVW1LFP>dM9ydRACQUnDQt^b+omz`I3@8c?f~SSbq#uHjYmvnkd*u$b5xw7>OI{3SLFk#^`=If$+YYD-x8h@!}& z;Eu|L;orqJPWMS5vuc0fuc0{;`sd66AROY^iAx5Zj4B5(ug5A8RiCjW26oTIhpr{}eez}vhTI;d3+bEl;0#Ok6|LSia^W~RzC z(6NArbE$m8YSbsBG-F;1(i4~V*1;Y)G7(dXFqsD1-=akdUs=X&+I_Y!^cC(2dH!oV zNfZnk=lwR^F^<#gR+{i)&7<=w)1o>)K?w>LX$Fj$xd|kg_F|Em${~7Lrfga}Qx9J` zijJx)JNfm;q0`0nU*|?eA}%QCt*GiP(s&*J`-_AFDq2JGpBhXo6oP09!htI>vQq0* zG~s_?6yWHnuqG`{H+v+Q{P5AYI(5O$Xv&TF4o`Mklm%Zl{IyezgV7+;b=*P~OHtk!`{PXu{H*06imwZ#*T`-tv|@xvCMli0+Uk)CJWh$Ql0cc}s}XzS+3d8sxnx2jt< z6kR_{=^0wKIQhHCj|0{iO$Z}b;MO^mTf*K%7J?R2Z~`GAhrfbgfVWh?{S%c}1u}KN zH8}bBJ29c6swgIr9(9)qJ?R4IlC3NvD(Y&KEwfrS$PR!l(Qen3HfV`zjSb$i36S53 z-3^UCATq;zzfW2djz!Zo*;Fy80M&ia?#>PJ{m_U?k6Nmd9aO9Cg7X1gK^SUr%UX~V zGtIYmM$?A_pk7*0snV`#?9o)r2+dkF9Zu zs*MFAi)EM5o}1M}U=fy?xN%Q;4GT`1+9AqxI``qosP%=is#RfiC`^-VwY`iiC^!X6 z_^AD98u^=PHo}Q=_55s_ym(5EVTc@-%)BQpu!aLOn1{w)x$BC9PuS|5CKU^xd!AZI zR4ZZ$MA93?1@UGSg9@V6&~<8LLSJ``g@#KXDX@L40x^nJw+PG)ZmWwkGrzD179Dbz zD$L$LEQp=`n=9wV>d5-5^==!Q^Vj`9P@xfSd5Ib63^L7Uc1-4?w`QDtz9ihRgz~IJ z6@x@?raj~r?s`cxCGr{XeGwx;7{d`?(*e!8av6_&`wekfy&1?85EoUfeUSs(;abs%e1g(E;uJk3GOZxJ8Tn;e^Q zd7vHq+M8BmL`6MZL!3CHtjQ5VoeX*b(Y(#)t@ujd`nF%cL7g8WQB|g%w?mc#lBe*u5=}9j*J}t%jE6aBmH;%ck0pA9_;gsH7Z2xT zmh9+Mr%I&&UGX^wqlsAx8mfrBR@IS6_9Jb#j;~r)z0MI~ksM588SCN~+&B}1&px?tz`w=5``GW-woYn0|og$fA zlAAn-EfaXcz{$~X4^TioAyj!#X?up))c z5U+(=O}YwtBlXk3q8ocSUJ5(qO6}_#GFA$XGGx7BI@1D-eOIxa4W=wT3qJY>2R@HOhefqSV?Q<}WUc2=V!b(eKi-_(X5?1RS>X%rS5?V;>Krw&fx zIJjB(@`wnOCDw&!RAL?#S^I948aMDBb2S$e(}Ik%rzSEludqON4b%~#S|QorU8hMw z3$5ArHyAf>8Vir%0>9QqlqwLc>QdodwqqZPwqG%1#Szjq4>%fJe$qid9~tyX%N9>( zzbxkG6GNsC2vG;p^KB#B0(-SH-D`Z_p2T&GiJfg#_CbM2wP=gsJ)6O>LSY~V#S<@jS7BIZ4+;Un%y&fglVw@okxny9I zkNz{m!(#EMZZ8&Hs3|82E9|`{Dp*FY|I(=UwB*iaSQ%Vo5bq`0Me1qZfWD4g{)iRe z&kwzn)Wl8+s}Fqkkj$4Y^Dq=J<^@ntzujKRyAx`0==hO;V5S5;TPL2gify!AP6&69 zL`W&kSGqwdKSrQ?e$qAd`#@zZagw>UMh9pxVp8R!wCiX|pAxo{#U(@JZgqK;%H-4n zO;Z*J?R$@@h(w?!`M~K-eB_Jl1-ot!)U!ahXO07W=<)XUk$$X;f~;3v0&j`QGGjZX zlQ)-Q%C@3}ra0{KY<67ESEQJI1X1&=#(LYD78bch4ZX{qs{_83SE!r5Iy|Ul`R1|E zv%_s5>E4JXpCy@Qrfl<@XK`Eep_OrGop0-lZd-N9K0_8KoiFvKwtc&tyy z^%muftm9ZnBj;V-Itt8Ga6^kHj`f=jMEMQeBY#p>H@*Co1P2eC;}vEAaM_!wYLxW( zGz?6i=|F2V5eA<%kj#;9<->L31jrR{1itz9gxeXm8lC6>Vz(gv5KvRsRl32-70cLw zU)5in=gnpc+38qLGm%*TE%DJ5==6p`9CkW@23~lz9xUB7h#XMRagW=lRyo|S>7qh^ z#}pcXt?`+tpJH?w1Y>^*uelX3sp)7GIn2;8l7OT`BRtW=Ejl*K)VBWVK2b-T!fD8&0mBn=dJ?Nda-?@-37yd+kN7GOwOI zD^;WdqY?}gTGwAuQmxKOo-b4bzcul3DRXY43Iwh%?OE!aI0(Dzi!{Sp7~>M_)#=*q zN(PA|vl%|Q$1Ex~*{~F<(R|7|gzoQj#JF!dn*zOWsqU)i2;RugS4Bb$jX^y55e+R#90U}qG zn(OA|1)iwt&TKT#CB@LHfPdD8Ra~CS#W-ImP}?GL_SM6n*vI-dJI}MY$~Zw}fmqv& zMiE3vtXt~uyw$5rm-@wzWeIpMvZBX0N0jw7U)jK;GJ2lFc;%PB-56_(zuZv?_KvKW z^sAe{!%Nl(_+VBgaL3Jc@pYKw<*lb)Il1vEH*Cah^ux?iFW;#{eGDH@PkW?xX zQNPYQ#`{D!az_9U4<>b_jec{Nbpa#|r!~dU*3HEz&h{#}Y0V4A-7f~|Ci$p)4TNU6 z>ow_$Y*8x55Vf4pm&F>yb31bjJT1+yEl>W3$!b8lnxx~;xb(dzkY-V+ zOenJib37e%X$}S(Mgip|Q_!kuN`HpqT4dqG|qIOWNhsz#s}8 z$@^&ncf#etN5jP0wKPVQ@M*dxs(abU55%?J|53#LmfIr^O#<@+Q4F6M4#>-b6P#;- zw)WJSSEKy8jX4_C0o+>Hjc}Vd3$a3MegM=75&VISG|RlImfmAgu$Q}M@`*^XJb(o$ z-{MH%2!8jJRo%J4du5Y{KY%SvwTSSN>9_l}6NprpJw?Yr6}PRZ!~Rp${RW3r_r|u% z*&>c-KdU2IMtj!RBQQ!wtFBaI$sx{UrwrH>u5=C%g)Dq521L(s+Y+jeiXN)7L%qp= zy80m&mBE8C?MG2CrA4>qXAz2!XNrxW?mRUPlaK4=>*+453Si-d?~*N}w0{*6=$()A z~EOLPksRKW`n89NKb{-_E-lh@^= zyu=_m1F$c4t#|L?JJeKpV^KtAFAsD{pBdfFapkW^$b zMiKdoogAc54ZzELm5yVz$jknrV#;|70gHKcYgtu)>TJn$xwG#ji0x?}8EQg6BSpxV z{6H1ZNfCJQ(D<0h>vNo;2=ZzHM%n@hno1&_7)5B;b!tOmhHnz%4|~A?mx8Ybm%&u- z=*&0Z0t?z)E%iTQZ>i~J!JKty%nD=evzbd#_1Q0VA_>_X$ve*%uCG?H+Perwd7})O zDG`tw0v~)ic&9rzqeW!Ao}EObscQZH&mIE~803rXc`J26=KutQwKrt%%&h;56L8k) z^wA!6nobc8VkdKE3p?kmBq4GlZxi&(31y8trm(G&0`Q7VgK6bBKIR4)dqSzA=`$gB zT4|?jC?W2q_M|p;?flPjqiwnJmBQX9A0x=@QW(%@jOWhp9uS?ln$vf@&VN|zk5!3i zC}=?GFt@&OBDp>I7G?wd<*iEp1oSy`qMJ;C8P*=$9(&hS{(W(|Y{_&{r_&FBsE;igV*8YdG?nsW?@VlYx4cf% zBh!?qWqXw=uM zT^1TM`dB{-1-yCAOkMY*$>AUwCv@!T`9e*rX#dE~I!-;0X`!_a?=^#Q*92C~5 zOLGb?`NLz-9|?(w^C^x=o#KYjXwq@51XW&IGG0PM{So~+3r(}cmG?g^C@7QD8&3Sy zy}?sBYPMNvMr4GLLNZfXpLq6f!R8%cCZQ=d8z)iulDkWDRus=9xW`$q3C>aoLliLL z(0}qIje0k*?&DXVJTs2KjnAb`=P>>y&9E#_T{VQrjb72dqmag2qr^^+KH8_&EEGeu zHS?-vGV4swXd-I{gKpuIy%Y-NIVia?M9wajQod+@EzDu0iMj{896(_C-r5zN1=wI3 zS(kOlr%i6n_eOZ*e(}56eR8SqL!R}KnU{jDrr6)u^*^+I5F})YnOh+#R3q4pUBk7A zuA9yK4PWvsJwahl+a`noN1Ae4+)p4O;`#VLk-W1qX=)l@y__wGxVu|82x;*5KXN$R zTK!AK0|Y>q1jQHEh(@niS7^(WO?&MEe(U(W0lHY;UvOeH20xP_wH7rS3vx1FU5mZ#PC7`jWiha}WadH)M z!s-OE2}>OG_64CTZ-cCAB{)YzFqZ_cRvG>~-vqwncQji?1d6Q|OE?#hrlR-%ImXu9 zGm|`3AG0G?sx$E{n3vE`cRwrg*2Ytny6SqxM-xDL1Hz(rG@Xea@##Kby`Cey<|s4x zp&mVjsaRCzgVi4(<<>Fva;jH>Du%V*3N2*1LMtB*mP>G>Ky6%MOVorHq8D1I=3{O} z7N8R6rY5?$6Mgyr+E>kNUu#^`GWoTwWA*}b@{W*}Ijp+l$_WAd7LN^=M=f=^A}GhI z=1N#*(v(oGJ_UkB49}?gg0qvW4WJZ9istrwr1{!!`hmm#U@DOJ?y!U5*vRvY0!K9~ z_A_GI-mJDQ6_7`;D7klVLhOfQKtLR~^Yjcnf5{n~z$#MErH=p2XD0xJIxB7b&{Lyw z4l8dgCtK5ROiv3|kU03wm(>70K*GPGj#d_HoG+xpL6zJCmEAh-)7hWgrEp^=6XHOy zlVZ1G?l8chwC$}dCl9`YN>D;X!kq+w9}p7~gS_6Fk!C-Ufx`X#>;!>ej52zYN7rsz$;gQZ~ zw3M%)Em!?k`oZc12XNv2`ZtLr!RG6!h((Zbb={uoW$Z?wF@YX5d8Fsuml?L)nmxz? zId&)uBneL|TcQq57efb$yN_}f&*OlE&Q-wF6qpUldaH{LldF%bL z5PiS$fJYCG)F}wjdZV1NITMp$jBo0=?Fib2QW9bR=o*^uX)+}-Ed<-cV6%0(WVBCG5wH-eMd49oJAoGyQ6F#*mcTT9~w>$Y5U0wg)cw(z_^ zOtDSp`QpL$yXunRk~b7GOpbL$pW=xT&hJu~7fe4!>RH(I0a5o?e#8=GUGdIVI#hMg z%^XG249IY++J;UutZ!)7*%E?cqKr?7;Uv|je*50#^--A*TVa#uA+GbIbrhZ8zP#oc z0z)B+D)GLO;Y`i*4MWqOkA#ejc9aQ?=Q;~p59-Q4qM4TN=0$md`(?3QO?UKNFri+8 zldp!WEYstSmTNgx?cU|qZjpJ*nbaMfo=`_Abka0AG7h~0Rjotzg=+$zfhgFTO{Sr{ z7b4WQRg~t{b-nlD2iTgr$2gpK8l&)w#7UM1d?qT(|C{nuwEwJM#YoxkDoCuVmyuapp80SyPBUSF%plFdyjtHf)5Pw#{nYw|6LOmgiqs z55+={4~I;ZoJwb=_jlqcp7O|vm2O!9)?G>K>5oXMkyVyhXxm!@W$zIxYSn1vO6O?A(_7z%B z(a4>tgR!uZ!{nwLW}_SW1;x*0YZ^SgFWU$BVBIdBMIKS>H6{n~S<8nzIw~X`{A9LU zp4e~1#V>k3aPlnvP<^vK9o{s2cu|WZdK1;sw8MUaL8gRdLrH4GhQUB zz)-GkaPKomc|VXQI~_)xV~K7->zJaIfbP;23(@VvOffYyi|8%8QwCU%bVR@q%gfM} z3B$t@ESke^l`t3+#s3#AvEV0A#HoL@Z4cgUG9f!J-5;iCGOdXl^iYc<;naY_&2?R_ z6_&w}`ALS0U)YPJi71S_^YA{x?{Tb=-XkHiUw<~}Ui6EYloVt^jH?47@?y~;1L$eB+ zvUhdJpgP{UkIIN&2((+5kDH2w`oaOgpyyLD{r6+dH$x^Hv&Ru4Vh~G~E6_3>HQn)w zU#msR3f@r(qqH&q%H)qfO{1kLAdo*C=qK}C+wGN)gS0KC=~otU1Nnnt2tNF0aEu*R zrD2;2j zIls!ic|c{tIMbw{U$7nODd#EF!A2lVP^XCffWf;6u9rwW2S4IsVWu!X8WA`2b04V= ze7fIA<1@J|;a8ixe3`+VgXt?1E`!il1K)2yKjYXKm4saX&>8iNuGul&g zeQk@Kb13UQ$1u7GjkTlRhWiOuD15?@2^S?j*d<5WYBl~4{fXV|DJY#4kZa>>ko^W1 zHNat(BLJ87p&&FcYzF*|m`mec+tE372Z$2$wh`w5?^26=n3uQ2nI<1MN--Y0&;8r( z_O6kLHRsv)!V75@yYLs>pOiP})UV6FQv{E_%RDfnY_P$rp03%6yQe;lXzjAklQ`v! zHG&B}g^TjmiFDTOIPvt6o<2`XVXzR}>4`V&J|^F%Jb-PzwQU9%jB1=T4P;UI2;b*Z z+Ay6&qt=QjNr$L5M#Wq#OKG+U5Y&M8$28qr@D|9|d^ARU8CIUc!grYe$%G-&9$xJ; zNcTo<$C3qD0BZ=Q0~8N&qDLnF`JYYyN7P)ZC#l@;jK-r$Vz}5E$Rg`J6Xg3%Jk%;EFwE(O>4JDP@d%a-I4Z zii|qYky5lFKyNi|mS05UIsncfoS~K#BBA_CyKbdi+e8z3;5s6Mnc#uJKN@+Uz~Tqt zuiSqL!<)U|U9kO6qrNIB;QmG)IOxzdca?1`u;fzFmsaMNW-$^kLH<(zq>O|(BMC9ob31yh*o$&Hii%eS}hjgg>5tcpX=(v0Fm zP6!y#S?j$g>0pDaASsx>n>-}HUu$hdEIryDWq`tIi+)AYJr8OexEdJvEh26jM|w8d zyJPlO1D||moo{a)*BdW#sGi;T`&mWkaBPuSSa329&78NhyZ7}fQvGpS^gAM8t}9&O zV`VK3FF}1C5vyWt0u^7dDL=lVA!Ng1=ChWU7$BL-zOENdN^%~A41#tnXfpg&lRj8N z5QPw0bB@DB25`wc^L!?+;+z?$VrRkPU1oR96a+U)Ltt?ir(O2K7Md20%zb*VD6aIo zwiq_Rcoj5|kLxpAGo)1%0{2u*%mBpSUk!IsSFZ;jahjYe9$r=X38q+yZ5nZ|vjGKsKlUWu3Fz3&neXC*&5oTE?`h4#gK|hHrA)8&rvHgxuxT|q zy6dCmOC^+uy;KEz*e*zi+v;dwP=?jd^W?sJJNcm%_3NB4(%qq|z3Ta~6`e@PZs?rw z86+jNXw6l0`SK_|b`8S(3{T|rCSF4#fUiqT7ivcAdDg~20wejJ>#p^8irrJ2d|fpfKy4j%l-uJ1%l89??kud1Cb^=2-RQSg9;rhj z;aUKblUl(P9rRgD7vOP5(rUv2Tz}{UX7{2#xtUh&sUCVd!*ccz$H;+^Z;baeE&Emx z{^6~zp(n!0hI5cL9kvG1}#tg|@8hY|~#ygQ~iu$y>$XY1nK zGaX!DB@#n)8+G)IHrl41_h(j~DRr<~Bi+d~5lvWjBikaeYIoLVcVO^kBZ}U&ZC5`0 z%ahje@}l_+@`gAFWs(@z>8UA_O%pbuW)^P@Tu<=5Ea2(idY;;DwAILRSZ<*N$JV?DrR~tdi!@VY5xu(tEzjH=@Ri)P{k2# zckj!7CQ5c)d#++pha0q*^94!frN?(lR@fp>+6KH@$hw)i2{Iav_VqP+N25&n0qj_W z?|38ymh%hnE-v%UEp!>gCwcm0UTY%?5c;e_^N}btmg8zz3*3}+{fP3(3K?^sH2g#( zp3v5DFubq28btSmT?TP1l2-*em5N^BK)v_&8#o*Un82(Dj zw$ah&V5TXitDcCpklqmdica&)fKH|JML z0@}Dol-5_~mw@~5Z^#c{$9Ns&hL<8{C#G=^g=(-l$|WCWzWXB`2U~R@7O`Sl_8C-C z+LQE!R$HRPX4d&1O+WRv(9b<}+138;yTnO`(3#Ykp)v5?QQxcAq>z$}zq<7O>5T+( zEPtb)<0^`U4U1EL&;~Y10HF&*IZ+o*qcjVRT<3ERfRR48O+L8iPCZOSYd!DtuR)Zq z-+oHtqW4jkD5vyn83WCH)awt-$jmY%ib#^kM)VcT?zj5$$#Bem2!FIex6u*gfjdLH z4*%Vt3ZS3rj0#?YccDC#*!c8Y{{;+pg^)+5RTYmX0u(m#znZ`487h9lxhzhTC|HiM zr63?|x~CKUZ|^RJHSEgsyp)4j%-6*T74o2>eQPa;Le$9N zuO05#&N8F8r7JxMd08OmM`Pd31A#e@i*@UdH=qtiEh2@nlf`UlBEisfsX6)od7)dx zW8&*KR*vx`E$I$D5~Zcns3$qF(YQSbGXi@?xTsYVzL-3h38|fvM5LJ+x>Xn-^`dDJ zN)tmG*hNoXYsQ1*SNl*$X;`gu9hA^n+unuM3HFujyqxR{FkFT9ZiqP;y4S_){ra(1 zq#5#+;!af1N@A{Q1~~&KBz@%~8j!QoA;Kz7U+5p!SEU+WuIDo$ngbQFVL_}o zSUFSZw4yJ=8xUFj~)NYeB48?UP_N;NUoZF+m^u>dQEkI9Tl8^a5W^J zfWeF!67x-0ddjA!WT3rvV~x7AalW5lRx5uIfhO1CRd)ZrCq*cr`r#4tTonE9WUY+% zFSP2jG{%An5ZV2R2aP{Xut+^t+iG|Ad zrn=&w1cm#AOW_{x*Or7$uH5es>Kh{kun7piy{nvGdL4BG>g9cVbVP=mVOSD1;|-sG zKGW-sF>nE0vga@$8dA*3=w{nQgLho6+|gQFEGw}jD;6XII_5bURQATvg{a++f}O{j z#P?1iKNsMUxXww4t7iM{oij>@0X^dm{4Aev7W@2Ig^VK$Za6k^g~zM@qmkC39g8LD(tGG7@2eeEu$y5a=aUul6$NiWc?Kb?+A8 zaD~#+((WjVFr7|h`g{-M0ow{!@L}_z9@lN+Bh$UBeVTq<$m_^>uIt&Vi5BsE;)eDc zcpWVH(;{4d{Actyj8`*WsD;IG(v}5WROdDY>suLuPvs z@Zp~n!#G$>K(%!|k%3;e&lZ_YVS*9`kCJg_w6Te;j1(2(2cV8p@Jmaei?G{rCp`b% zq76K3n(vLYY$qLv-CA}Uw9JkB#NKn{*D;b2U`TB(hV!se{G5Rav$(3XR}x3%JH0)3 zf<^yWHOv9d!au7g*k@iGTc1+gL=Bo}OnQ#GE9X`r+~3L>0#TI@9Fwf?K26;^##pIH z#5ob}yS-LZDt9)M6SyvlHS+?&MSK=zLh4m;>S&v7SrR#zsj_gW7VB=z+*7L!`!N~g zlLIP)w!l?6tdPxzn890J&VxM5*?ZInc4akhLnSjv!KLy2Z=dav4Km^XOF#A-cKVf7=S_La7iTQ#+7iC7n3u z#3IBab#g^rKfl<_ES#(dt^9KYr1Q>`1_!1Pf1UJK@1c++8rFRJo?GW&YG~aBW!wk0lFuPrbbCrt=k@G(8b~mQeB^m`0E>U7Wy8DR(LYS zwv#9^6iJg3i4QdaTAJU|`V6I~f^B6{Uki8^}-&_zwv*addwJ?o+(@>1F~ z>&>xk3dx(%XSEL(7))GP4wXBQR3$rQ=Hf@krNk5(`?Z?xAtdaE)X0(~m}x!$@Pd<9 z4u`Rp31A+18R|YnEFMQ)Jc^dz>HB5qP1!U~OrJ+B5gRGi$7vx04=yUwXG}NR><)Z(&G-j~WA8ZC13q{$^d(TpRB{+MuVdUOp5)Y_4urr8^5rBG1!cx+= z{L%ulNek=Rleq?M`{d`iaRB6g&M%#F_)bx}(aFyJRcUIQ1o{FDwvuuI#9McdTTG1} z7T?KdQ(pvDlwxxlm};@uM}rCazrH&t-(*c$YN5=AjoNF1^v}p34}paiQKi`ohkc7! z@vS&_yOLQ%UDK2!HKzwJ^4QsYR^%-1h~k0-fYm-PvHb>|0Uosg~D+ODlS#8|1(mN3v5VmS{ zI~@d>f+ddCNj_^Z0xCVF8yF$`tk|&TD!oH()hSn*5-HB%pN6W3lx~!9z?ea;QxOS< zhTvfDK7h;No*JzC0#nAD)Bg(nlgGKrgy%E7M-+4JqzYD-8KY$Cs)Va<^OC2~_&*(b`8`q|9&INT`u0EXGff=)Y9%0$q{twpY@o` z`)n(>&Z2n>(t70I+=}HdXxg14$|(ZX8P4|(%4=rPFrei_ROXiVXDz7J%GlOdJ5hdv zZ^eB_uMIb9@%S&pAiPBl^Es>npHjjTH3pUovyzFRajz2*!d(n&0_l?x&Uen!zMA&5 zS>pq*YY5H-xe5yuidp1379{L&yHhNtdpSM zZ^(#(ZEK4=moLs%Y|{~{+O-ufa(Se%=u>j`v~3e2eMOhV#fJvyE^M(LzX9?_sTfpA|$b+I^fn)}D1jymc6d5RnzzDHfIj_47k1VHjXX?!%;zNh9<>Cq85(mS;b~ z5b)n_?wNcRRo^SR@a+u_#rQLX3)fvdXfmO!@J6@q!K$B6bD4(NWYLsN)S_QMmq*WD z(}ogk^oT`bR(MY-IK?Kokx~ih;X0|QD806Y!!Y@k1V&o zISbbpfMGw>8(Z|oVXn0Whv!kP6VR@v_u1(FNa~nuCJ^M1oHK|D8`esEi)HvF_fvtG zw4=EnJP3g%2ocirlu_6`zXeo+QJ|oj^+lBZ_G@;cRfQqzAgQi_?HJ*rdRrSne4coM ziK=z-Sa~LG^}Emm#Au7ei_w*#OGumhnoou^H`W=ymLp;X}i}QVvs{@^t^j#Q@@3q;C|F6%c0_hg7qVY(uHZrAHczh&bKP5Bk^j#FQRi4h2BgkUvccw@r*>|&NkNC^p8>kJ-p0( zX46IUsF-)IWT%$mPU&_ad}5kH97s(*sp#y$G@FE{lq&XT%f@c*c6c{8DVBuSrj7On;7FM%nhuY z*_k$k?SZ9+(y(YbQOMXu^w~>#EB{mLSHdCW5&i6&{+ZcqB7Ga?v@T0xi{WtgS>%{r zBbm&7u$c#1<2NaKo()~h3#vr&or@8R4mF^_Y{4}2^whVEb&(Tr4JVyuk^?Ufvc^K` zL;QIdclt~0l2UK|t9DkA8MVC~PLody0og&%0??s9K`FDlqx z2M;#UJYct05)(-~Yej3%s!pp)OStodzd4?5`8M_#6^;_)PZ*&EJ9X6?zgd7>1k!Wu zjYE5v&K*hCJg?k|wq!~p?3-vxmZ**+*Y{zjIepig4!dVJt;koKtPT7kFl4CymjWL51qhd}d=Q;@Q4TMq$Ux2+jwQ5A( z1o7~i9Na;%58aa!#c8vI!k9m_NLUdKK={f`Oej!rY8e(d=h1kZ2}%8OGsA&e8o4M*4Ij2-e9R>byWF-{?FLdh3ed1Vojq7%sGae% z-b`3b``$gd7Cai(gCl&eNveT8O|vt(7B6N~cRP&(xM+>uQ}zJqzgVt{1RZTt$#{~e z*O}W3u71Wk@b=}uOvs7Gkw7*TemjIS@J)~zd>F~{1`LGv36xZ)f@(z=aFCb-7*jh) zUu0>*ymw5G!Nay(`D-;A<@Mt)D-bMq70w9i)=}}ciNIQYHEinpVMxg?B)2;PX$;d{ z_n@o!Ft}NFm6uJ}&DYAvi>C#Jnkn&NF1E7YjnJ{(YvV#6cjyYY7dZXJqkUN1A6LBS zl2AQO{5N{+u(5pY%kM;dD83=5hO7t-1j)mGeuWGjk}+k_+{Lge@1T-J*OEZw)LNoO z$0XDC(8F=G>w1Nhy`c$U&H$uUHx&t9n`upGoNS@C>n@Y#{mr^)gq<*e>f9cUOMwc|&VhMAPxvR$r$U{Ie{yF*&Wl0cr8(ufIjT*2I*Uv346Fm-cTU)U|9&10%4ID__oX!|@|-B= z;09iw4aTW)Ai|7+=`HPJFZ{avty*n|=8UtR6W6eum|St078)(99-}NgmqH?8ot~+2OB_AfBAE97!Z)C8$guHc(;d>`E9) zpOyYL7wacdMgv^!K5TpK3=PKwum7==v3tdMI*T2v!T;Z;xXNXk=$?+aJ+Wxs+H@f_ z+j-oIk$qZd(o$pa@58^9A)oMjElcd0X-e9~FsJV} z;dP{W7lG&%Gi)P60%V1bCM#ttGn~YkdqLFP%6jUaMR05^Ac2d3yVnc1_*o(qRj*I8 zHKqdmm<8BKc|=|+9M2Dy!=Z<+cmu6!hpo>aCPXy`XN_F^ zS=z+>^qatFTZWTb!JY?NBUH5uVU>XWxL1%EiWtuy9_{aEJ1D&-6hS*9Tm`WXjkDWY z5b-DO9^RKuSRiBJ9wt;#s`0DyfFKGKX$;-c*GO~TTYk3D1^&|YQ_$XDz3BKyk>;R_ zO%I6Ii2*|%-|Q{$=!a%#UU%%A2oGKZCIXr={Q@n6nE)vCUYWP>1BIA{32468QyALJ zGGAYVc*#$Mq(}pcmt1fi@swd!I2Xs7oMxwidpfpIAW|&qtdGd3>S-R9O&_C7hyZ(L z0cZ8j*5Au`CiC}D`-R44$UfTdGDlC%;ln>cPD`vUpm*pmWfZ7~sSL5H_Sw(OP@Q)Q zr~*6Cg@$@*A1uR$O}-7jX~$dz@I-S3?epopb|O;Kl(Wd+Wm#F}0mspAV#-K5Od*3{ z%Gw(^&wM+7ehjxswhSn(l?{)}8mQN!dk^Gq=^JlQDC?3|wU^`Vu>GYJ9K$980y!af z@jC!qtbyT;1c8p#IOM%Y_|?z>*^3-<{*AO5KDMchTEhnAv38HW6zanCmEoax!e~C2 z^-kM57nZ|%>Rs-xv#?y-*j*UhW;;XzD^ofzK1`d%FpR=Do+4$WS-{D)F9@C8V6Iwq z=KS2ooTliqcj{(s?DlWDP7UF&p3h6oJ?Ipk1&!@RrO9--v!=K zDqsu$Ls9h7EWon7v#<~UeelXxEeL!-F2_O&K?oOk;qj5o{6+t@(6fL;lEY!yz@8`4 z%j!Q>k3xAv>NX=KVeg+`L%jNf7@`w2e5|JlYdQUd@Rsc{qNbnW-odKt?+0DOCG;D@ zn&Nl~DR|uVEV0LT=OH>Tpp!mrrb%L}v;Py`bCe$z&jqn?dW;DnuIX87*6LTEj95(Z z!gCHSeIBO!|Jj(CcG~VI(;le?&~kJ$Ci((RXUv-vpH%_|^nWG{A%Q0{uz~$UL>Qq% z{{<(_n(HF;K{T{h9!zPqo6sslu$2?EdHBfM9|V*;7A?K@YTX9F)_tkGs;JzA4+`)H z9X;@%npi6ZmDjdx^+_7=o}T^-cy_!;_7|yI^pIHNt)--U%DQ+ijoFHZxqU8GEFcNE zz{%O^!I~mOph1#OnsTIhI=XbI9m9s#6uO0-MgsLcfIn4@n!-CKY2lKbJiRTAb91ZN zKI>Js}2d$$#sOn@~4W>UzW+nP_}Ai27a1r zB}eIj)~Iuf!geTlb?CR2WGilpj`!Pr2{&QCf;hxY@C$=;y&7^k&)+r}hok#o+AR~n zU8r;aJ&T=L`c7d%ijzqvL*#A6F~}vW@1BEzsE#b)O7?1~u%q+fJyrX#la|x-U3rXo z48YDNYJ;!6!dn!e$KaV2rA^UE-%xl@$+v4rvI=paX_m@LjOdf-#QJ><9p&FqL6Cqn z^#=-AYuAho#5*ybpdmY#hQ6&?kc$*XTl>w$z@I_i2li+iV|ss{^zx|qs7fBu65dsb zj-~{n|6|T=nRoKY57h}~cM~g49nDV)B&3rSY6DRpJ!F2)nwQDU1K8X@MUY@iy{gK6 z(#Niz2U8kHU*HI#i-9juxV3P$_KNLbHl-eEicSR_+zUvsSyFEe?r`QB29nAk$mB^s zW`Qo=t}MvwmXUl|TcAX!Z&2<~mYc)aAE^n>(h%v)VSF1zWWala{?Db(WgR!{-$Uz> z_ytJo)H{yuC_6A2>Q!A&(7#b*0!14*G)|hWYC%3Q)2)%U1E+yw^O`BlTBZ})QK8b9 zICGR9jqehocygN&Ie2$a(r2!nQw^3a*TYmz2V+lWsG#>`MP(NTsFJ0Jk($=hTrkBZQ%Ov46BN}7S zFwbLAiruPLvaMz80y3foRIjMfG{+U=SgjLT!BlS;Ykl|5(OXt$yF&-N02w=xZ99pY z)xn|4w^6Fo$&##(jbpLiKx=75@wDa>3+bkMM@f!Z7cvmMD|N&4CeTD4J*_5iOmijB zf*Ytz@KvIJRyp&`24(gYbVIi@+8vpVQCfEJ?3b)&PNxmmD$rK@cH{M;FGRjV9w%>r zTgiHCBE_6$0(W$!hQrEYFE1hpyT##6x7wlZmV@ATGVl9f7EYMBRaaObKegXC7}ib8 z!D#GxfASn{CY-7}&m*ua+enI*9wVR}B6UMz>y6CxV#U9DAH%k#9LxsD04wJ?^mY*% z%#R6EVNq~mTkQKzGY$40!e+wT8K**9ao=4N1Db?}%||Ma0Zd|9&d`o{G7uRseh zhv#Wh|2hRayHv7p0Y%z5^6p*_Q5cp(81cw0%%xJaMkKf2PDR+*GWP)-ML8z0t9dh( zs#d@RmEb)xIBVNy+$H1bHBk5KHgBm(V7^+s;Q=~@%|k@Qz7F3UG$vKm`*(sUxqmUc zinLA_L1%KchYTll4FcR^)IhZ(d+k7VK=ShE(s$$=^-}@)BV4u-@=kHA3Pdxin1c6r z-I}Z2s5roLYqjaIa8x_OKyN2fd_q4hZV!OX_nt zq)LC|tgXYnA3L|-3sD{@7-M8Yeoaq$J%k?3nl(h#7 zq=ZY=`o{%jY}KFexD}-$QH^WqZ&)WYH^o5^gkaab8e(&><57x2*%tQ*XM{M#L8<9{PdyF#AmFMo zF?3@^>3PNRW@4Nk9`Q3c^p~Ekv0~kI`(-gUyg^5zk$HcBNdG6%Z(;GPPh-y0ZwzyZ zIYM>qJvVA_aA8npbx^8ZTehArDdu%Eg{X0jT>BaU^nKOd2rer~jBxGmC-xC{2uqgW zi2S!6eKGVq!0$qCB$)ebE5^wt{n2P|CR-~?lns)8*e!RBp6A#tsTjsIW=R6YkdvMPe}yD5I!Jt|C3{RD1>>K39hYN0?A-jH3Ctr$O}^1GOJ z7*N3?%^NobF!Ooud5J-IrmC_oaK=#D>|~wO8qQHgn->H?)!0TKX-jti=m3Rq)IVgZr@q*q`%)2 z{+GT`q$S?)nJEs>8}S?ak#t!DB!cIa8LT!jyiUiN-7QKas4}M7@y4kgbR2Bs@J)73 z%y(Tk`CHFn`s;O6nQW1nL6Sv~w43B7H=K*sABnFmJJM9qz{}`O14r6+TRqHRBobog zt%+5rW)t<5c_xnPP zN@YMZk-`Ml2(m@S95(c;&iBKMq^DYiHKMI*2=eF>xNg4GK`DubJv?3f=*v+t9K>ND zLM68&gE2bB0D>m`Hp`eZX?zL!Iszyc&_w$wa%y;rNp=aAd%eC8ZF_O}WvagD7n~R7 zs*0W%<)**p=Lut$g+06$ysJ6KnY5j8 zy5;labByg@4kKmCd7QzbsKml-FM~qYBc8;)Dq7LBDfMbC=OKDtVw59+nB)s!`v3AS zXPl&5COgU9J7(j`@eVRu-eIcZ><;d-W{9kWQLHi?4r}1KGBtl<4+|WDc+3hPZBqNA zmskThbSY2#8zdp}fDeSXDs>Sa^G)Lz6C#U`SGBwseoM7UkOBWV>(PHThr+_xSuvu2 zE(|nq<~Lzj)q)|^FrhM-Pdkc?ylww1X|ylT&?E~WhG;^=5sM@JbKHjDk~wJP8|cqO z5+FyNw4YwGXoY74bxfm^Mfi>Vw)(rw_v<)^lvDlQ@&KQK3D7e{bM=Oh9LM0lJLbEa zs&$NjG#}hmUPuRZkeo<0!fhUBOU#>V3oS}ZDulJh`bK`iJrQO2p28gcD{^Gl+H;Kq zH-)Xo>TDEGR(oBN*BMStJW^Zp$%GwMYk*^k)OyAYub;~I3&)oOqM=jB99UQ^N=qWeSWdTh6_zifm1JN1gQMwia(EOd^e zKkpbhPRwiGQjq*TIQ4GJ|6-I;;iiCz`a`w-=t;Z?h+q8`};4}ZOwT}EDh z{(eM#Inv57U8}r1ZwmDVZcy3c#oT&((6IGGjWRs2;*JC1^hQ5r+%Pmp^(tHttsCxB zPU)(h`j#jo)HAAZriBNsatt#t3<*!cejw-!GB?KiN$9@dFidI;akmCS6P+hucky4L zV`ju@o_w(rK$dS;vy=Cw@ebFQHnY}+PN20NSX=8m74B8pjFhCZAKbTE5K)`QR0dBW z?*@u3X`en#t6HmP9(kE_mJ`%-rA(G1fkiZh`>WU+X2dcLZbHOiid0tUFA&MPj18(G zw+dc?$BaTirA5@lC2rmFn3#ipu*(QYsugA+_*a;OG{+W$K(nck?AF2r2z(vEpee0J zu3?%(O$j^r?tR!NS{i`Vz74CL=%Y@zRPs5iMKPGc`ziB^-cNgCU)l8cYL*dx<(}f$ zWHoBH$cQl7`lI*Up`Du3nXnzofK9`?uEvKz2gu<}j)#jNzNf_1AiSrR#{dEQimhv7 zCMi!?zuo3HUq|*E-N-m>V35 zMl#|Mpfu!MbEgw53`l{}0pF(O|GOjX@-vY+&E5WSOZMG-D>*Up zFu2M|mrwi}gCO@G34pJ)Ot^Ei7bK9E--mPmjgjz|9hePJj%@7G?)m4_p(P6TBWdvw z#%%ivE*{FFS~b{%R}Q2Byvb1JtI(D}PU`2pGjXGuACZ)e0^)$MQ~jy1U>NUxrpb;ru7n@313rZH{{}5{Z+eNC{NZ&u(_ocyXBA$2z z^XSi-Hy=j*+`bu5Lvg3hmY{DD2;*y@_JI>R{zyTj0yEu9!L|IU{+1_#uX_L_7p88w zq#uk4$SUTL9`RQa%W{N08&|RIlfWI1*XT*J9hyImWNRB{CQOPIB_czAZP7G zT*9Ht#M5Sds(>hXkA$O{$9Yg9kHKrrhf4WkD|D-bkesby?KQDzAffw0*Gk7Oa|x_0=N zjk}noPt8e?L`P(x<2lAnj4+uEUcdJ6NK38qH@jqG%xxvVU0EUHP*iSzlklRRj=|GZ zKmc>ArM#sx|4{Z(ya0rB^KP}!={kb7vC?nw`ApVJPOd#p`iX<;D?4=6+X<3R0jtd;tN`Bo60!My>SqWfw=_tJEKvcs*!p@ zhRifNGM+#c*gp4VYotPJ4o!DggmAFYv4Esq>|+~cPg4GK6hKam83qq_&)mK4z69$A z&jOzFE8RYI;YSRa7_H;}bH=^HmGS9F{6<=E@20U=oc_iw_1Hi$I~QAsr?#hvdQv?S z2W$nnrnlwnYZR$zhtfe{O&O-;{W*mg!GEDkgkH0>eCXhZEgnNsHkrK{xNgLkey6$K zN63i3U!<$V5~){TQj}1Ft;olRpzVdh!2^otx%bFilkW`SIHky#d^a{v=T{M$=fd3# zYUmZ-|Ljv*6MKbfc?;5vXyUGQEiVeebWwiK3#Yvsnd}sl8S0y3cyK}rHv@9akLZc^ z-6J13rjWsZy_>D~90f?eHLH`g4>BZrG0Z?%2bK|Xz^>LKtYwKySth0x9h!~f`gSQV z3>MHxa6qFGAb}mic%ak?KomX1-c$O~6Y_`;%`gZh)B=3c@!%%#K6AvlSsTW|6B~MtDzrFCmzn~`pdCNPsm3SCC{6t$ zMmAAp6aFfRvpIP0OF6@0gD19x&%CYMsove~SSa3+Q228QE=tTXr;DLWA|($QmG!CF z_i;RI?K3gkpU)#67=Z z*@>NliO{H1&vuA^0B|edgi@pXHN8a^wy5)wfWl!ChUvOGy^*3*RugV9dvTQ3V1p=d z;VqNV#g&@hBPj$lyMxCb4eg2r!&wG$<^5Y8#6@~+4fXmZ`#?)|oUP`im#(GMY~M+* zLEFuDhjuSHT=^p`Ax9*`#Q5C=f2h`voLtNFij1fpdgkM!#7dgM2H}F%d<8$WeBWN7 z^r%IoS$Dp7z-X)rX!tx#0X*Zo!jO*}0Pha0#uU?ir=?EV+*;R_9j$(P2=il`oWt}2_7S6dp2el%mCd)E##TJIc|{~B z{Gh$R&OGbc5;B4w%)8l zT#5^b7si-0!M5{ct*FjO4WxPEHRSL}@{qR%MMQH#KO^f`yej=JBpt=|N)b0f2TW}8>oA;uBRruWrKbQZ}7R%4^GcUwbutgvg>cw#*>Qev| zHcJZlw|Fwt!U&SdWmt3hw*ISG9E(!}LmdhPc_|tZVy3#Y@x}~KPm4Qb;v zZ9zxbdjnojiSP*p3Pd^_X}U+k{qG@hjeWwE!XP;A!z>|rE*b!|UbjM+o)Eoyc}v6g zRxZBPfPfMJ2s!P?%x^{UI}8@#g-n9qap?4IarPM*3oyuXK)9BM0dTZ+7HH)VtgUqJ z;x1@RJP~iguM3QdsCA8-a(DsFO|5T4?54zif9u&uNHCErj-`iXUlQtmb1zjK89lY(}_w&-0kt1UHQUlFr_2mrY$W$s8# z;#(`l$EC{N=l2iz>p|LXKp0A} z?*0UXwoGG)%b(nY0FeijJYBR@Ged|8w&;ru~QNWeqK4HgueLI zvTs;VZdDj!4u(6L?S4_{!tOn?RDzU=}Szv=CaDI{H7}5S_Ntwrr$GXV=>TEV1i2E zM-vHfo@l!5aZM5i(z3c9t}VjrC45rkJMF+qw;umQyFewBK?*Uifxq<>JlnwjIumHA zfUoM)5S_B8mTC3jI|sXp!6CPMh!05@jGJbz)~Z#rY&6bRm)Ac4LTaU=TKwD^*+Tcj zV?{ElDL4LGXr=;-FA5x~mvmiYYB6-`$-h*QW{HpIq#&DRmn>aeRh8ey+-qR>`VU3hXQw9*;qOTQKgD6H4bPwI&*u+T0aZD7q@jR8 zi7eGZyR+f2-JSA4VNQ}L!MnwD4%+B=x#%t7+##bBIU}T~=j+4{kMd?ooJABH=2(_q zCA&%@egzzF7xl)u%GlzRrHv*GS`s%r8kLL4+9@?7%D#)7$B88bHxZX!=YCma=5*n~@^Su4cg6U+QBBnm@RcnVzK!WO3H%A8 zVX_q;#IJcw26lnxRYq~l!gu^`?K?|2w0f}^bDZz~S$Sh!12OlkBnOqOObZ^4RwG_i z<$-=lDFM24yJI@8{RyJ>!Z&GcApd}g})W`E$Z$ll}$~7yY^d*=qcm_-FB=)3go9*U~G2S2r`}j zB|S@{=X_la>HT-bS+X8fkB4c6F5h(R{a%$g{Fy+n6d}u->QyLgex$V3TGeK> zzWwep@h`E1RLpk5O7vhNl}?gW?%m3@_%Z9liE*8k!Q`*14k8CLTQng9LH`BOh{{2( zL%G4N!_a;g1_3EF#?lf@-SlH5iD`RAwNk6)kPwXxH?D}Kve zX^j>b7D*39nF%i7-+I3Jj%ZYSb7CHjD10$uz70yK*`hczA( z9)MG=9IWqWE`w=Mu8PduiI~=ttoZDNfx41$@JH3;KKHOGV^@Oz;f}oOZh>3J_viy> zFmh{OK>oFb(N}W5dPv%Zr~&l&i!pf%i7tO!In>=Rg#~o2vhz--V`NSCY^6Sp)<~%O zstxRCA^kD?KC?d$Me`KD#%ZkiqZ)m?|Jqmh^tTM=ZRcB94n^dG!J4*cmt2z{cU|ZR z!QP1}la_p-t@RMsf0Uq!y`pZOuW7rL^lV!9%`Rw8W6>a!Fbf;8Z@Tx7YGH%?u!3-F zj|Ic3n$Rl-Hl_;pNk#j;o81Kn0Gn;v2gG#-EhP__G)&n-&U!QM!)jOgwQ z6bRT0WWP~->SUFH5^kU?oER8K;cG@Md?K3VD{R)jp94yBWLf`;!FXQnui7!AKQhyI zseqqpg$aM$-h*<#Yq{|#69`<2kIc~-EiNDOfBdx*4@;n$WS`p?&X=zZ#pb?SUJ_%r zljr^g>S);FKu_iNFXRoL^R0|qcSnMkF$bqCY%Tgs7o)n!;}|^)X34PRZ-;90yGZX) z%hL=+j-1AjQJ%35mnP)2N$5&WZJUfuwU31CD`HSmpkT2(ijN9NyB#pTr@`?;xd<;B zm3)2+%kQ@@!?mBx~^w-@S;e&fdgPJpHT}>*B z3G-COZWs9>G?5NQECbsg*WD(><<>^*!+Zhxc;!CkL{49`rXuwiI#P#iGn+;~@hVo) z#0JXQzQe2H_yT9piMCSN%HGh%iQC#{Ja;=fY!JTUJ*v9z4m*fQmto6kHu8}TuM-F& z&wR3l1V6DycHc1j)=V^Y(ASNy1p`&z5j6e^OEY+kxF424ot0i<(*w-lhIDwP@;#Bp zFyyqMi|`)ZnZH8N3PoQ?-wq|_q0H4X#esL?rz69#Wh6|C-{Gk0czWaKiu*MW9q6*Z zdTLe?W!K}y{4T@Z!;4!yE$B)FENVFn1S~>^kX@Le_()^FJjFC*X5mpKpZ76k@&~&F zez7YPxG4>S^SUdEx$c|>G+PqUxHK;jK9z|5{c)lo7ZdVXMnn?J&23EwZv3UnSa6q| zj9Qd;nzg`I>QSmDylown6^$aR`avvu3&K0J;hmt)d8+JlC$00)sj-d!b|SBxien4I zC}NYky(CVVHKVycJowJC3*b;MG^$n!&(d*A1J%5v*Pb;A9lR%+{7 z;SB|`&f$3NhUgJOTN(7Z=5KW#wEru%f?b*vbjzGcH%`&J_v=l&Og@Z>%EExTEdVtq z+JbArOgG1e0v^WC8Oqb%bK?}513|^c0+HpWb8Qx2w$r4JAR9g-A7*4PISxSSRieK8 z%gYArnW0+z@Iug17~k{PTr#5U0lZ%M90EGqA@vx4Han+vQ`QAm`X4<8uE$4D^5TSB zcRq)8Bl6-$=9@i%>j#qusWM@76mH|8LW%L}3r@VjgA};9)9d@V=yGS!i>`#L{zjPUiV=@53Y@nPOzGi&BT}|(stR!`9EJrqUE&J3 zR9*mG2LL7VTVHOhWb9&Ng}+lLO@8T3xCP*vuO02UpYh6d@y%vLGA-JKA!_Q=h#-kP zGP#0|E*b$^t)J8!+6kgVt>8gKW4VvZ*z|wiU5k$LHTtSLHiqvNJ9o1A&l(R@It#np z2$z9Ofl$_%HcPb7j}YI;o7YA!y}2icO!mWTL#FzzZ6^<_8kH~u;ja)aY9N>w5#TeU zR4ZD!Ou60NrLYJkH&P-Jj^_JL9X0E!yNi?Cla(q$ZCnlMiJaq11_Zn6EaJ5oV}*Q- z=d~?Wpi!ir8TZDDu0*Y_>o-&Z$ZPa*r0XVF0b#e{Yrt1}NyM_WY^Y4Z2UvMB5M!Q_ zY!)$g^WzihNcb!TECf2{&H!LiIlQUeqoKotc9~c=e%RTuR)03a=Sf&I&eJeuw}8Wz zQ_;ZOe*LYvGljDPzUs`tz^+xEYZeX^TXPS~8)d)gy>@}k-28QE6-vyW60@Fs?r#=Y zW&a`>*7y*K;VyP85FTg08ltg&d7YS}E@N#$f~^^v*#kP}YAtWc52x1ZJ``5lB)sP6 zNbxp{&(N^Ed&a`_n*j^s*sw&nbWCam>*vR_?c7b_$-SM}!9^nC!6$mEO@Q7aAgAP= zMm-i6M>R-}*o2lb*QXaVNL;pHlP9W+dtxtS?6RSM8;`^0eFk<}vMTK|fmA4pFqZQ! zIkj_*?y$&M5-z`KAM4N-y)SR-m_-EJl;rd}RWLFM{%jTj+qxpe1sX%Oo88|OOmqo? z4UlM92t@$YWOQ)R!rP$`^nxbEJr2J&$+2`5>KfB)D!x0cvRj?Xb|?$pzY*sqD;%o3 zo2RgSw~j3TZ&%v$pv2LS!kf?;Q4u$_osvrDf=B$3H*g&=cJEEDpFl6CQYpK zs&tlVa+4CSijXa;KIcjN{y|G<_HUpg;Xfz$bvZO#&ewZAflk_s&)RdfN>ZECn(uFN zhq0+4`V{94=y8O{BwV$J*<$wUk=1A=+1!#f*Y}v|Hy;kRX5&2!xw); zefe>F%4K28x+;Be{46-Vk1ETmn0X8EL#_zKV;KrC>=Qw$K+mXT;Or)t@YktXLMP7i zK|AMg1SeIH+Pf4J^R0eU6+gNxdW>9_#C2cylpLt&`^=CjMi2m~Abs9xW`dAA?v(*q zZ@?(>W4mA?ELh~t(;Mk--JyO3+9R{@?a`g*{sqVaHs}BUceb>M0UsI@@jy@w8JI}s z*j~Y8{hRL5HI+d|L)AB0Qni=wn!k(r$-?;1UlBCtry5b)P~VwLR2)TcOPVGW#d~p= zHVtauHfSp*CvqM5hGSyHCcXaYL#B`usK=2y9i_UyON`J7erqSN4D3?fE4vSG0fKkM z9or3_;n-~NHU-_Oc+4saC6;JeHVg;Z9GjVNs1t(KsI7!rs3ei0m{}=R+4)>{Gly|= z5J;?0?>B&*0ZgaFK%V3(E_d(^AOkr~M?iUJF*f=C_ntcAQHQi*$=ex^f-7<5$j3$} z(B*BP!-~?6EJKuZsM`k0fQ##CK*onzHrNSZ0+p zYsI(SJw3#Eo-&^3YpN8DvDCZCwgS|LM*gjTdDr{yEAtY&2IgGyw3=z@;9KgvXowd6 zIosyaQ=>R)x0~J#>G2FVe zj9C)-{A1N={f68Dvlqqr`MjS3mY_YYX~~4>$Ox#}cJHSp z#)dMWbSz8tkko+fC%k_g6ZLp@k%+LpmEfO0_C^4lS$pu^1qqmELo2dX1YF{L4mM%< zU=s6ql5nZ;*C#w=k?tJ%BOFT&7B2H086c!Pt6*oK&^swPye5HbX#sad378+D#gsVR z{8npx@RGU3yz2EIwYMW+$cBKAd48^le}1M#zuk|l!ae+5H&pZ2YtC~3CtX}<_=*E* zmhOQ`S57MVSXTCjG<`(-XjTv0g=jm)?H;Lev}=Vxm?toI8s{i}@@TX^1Bw4%{fbVJ z67SvP&HY=Y5XX7zFk%-k(xIIVi0B&Dnm|aKu`o)^1@hpDtA3-8P5){1XE;w{fC!$r$s4fFV z?(*+*MM{-|64_L42WDb;!IhX%Yhna@cwKq1^48`o(M5pQj%jvS_$Aj=sf znxnMDFBlI0L#&I9-E2u(zqNLJn%zRCp%)sD2bs3zGh!rbH~}}9xzo!;>X-zY?C|EE8`OrPT~3Z5$R_u=Q^gf%`vk8Z+NwjtuAG? zAwV`K@@soka2H(l$i|`Duhl1ulCKUso{Lfd5MxOeRo-b~+DA~s?|45Pn4 zh_)g|8@5{Rb|nrK{645+JG*p4Fb%GNxRf62>04+%gj9X7+^9Y4u}xoW&*0R;@9QuL zT11|c4ylD7D}Wz6q7H^)NmKs(MQ8c+16GvgC)}nY5wvi1~z#;Ogy+RS6ql5v7 zaHH+y`a>`2eltm#H{~k>({`?%74^P-AqH;lcyTD>ikvCC0x$u0%n&{3zxO(il3qPx zh1wGZ+!5JQJCEyk8VI0oQ=AR2wpjm$@D;XN1HSiGs;YhnA$ zQ8`s~R{gZneXRkl!b1l>PdA7oeVH{Pn})S8%3=Q+SF$%JG1nXvuO+AId7*=%80fRg zK8HEuBq*leX&8WLBjL?RVq)hi(yrv!TIOpBW0o!_>K}L_S2GApX$OWOV&xYt4Suxb z`sKz`$eP=???A4;$Bn|Q^?2~o>!L#N!0Lo5HA6xYPjW3qsGmC=;BaO{N5;ak0}BxR zac^>+XHr9b8L(_AdpFB+gq2McXJcFVE+F=y zq~X#^CWHtVS~L2Ghai|~4_&plVH|%6=2X3Cd`%Ly``)drqi`dUsR+=OZ%>&3{2<+h zm9ebKZ}ca2#tZPj$`61FadTm#mRMWxu^Yhf{~$!Z@Y3wC!4pQ~=J*5Zw;?S)o<6MM zM>)SO6h8doZQGQ@hm{%(wFWXY@!DKa_aoefrLS}i?xL08_A|2av=DF^8L9VlgY0F5 zr3zik<%}hBA}y$s`;w=^pRlQ3;mPU}YeUkbQj)8OfGhID2!8$Lw&=dWr?TLccMaFf z+I!WYBMSrl5qL+~&l>}NFoI(KYwPH__fmdTl1AQIzJV(-?BlKhTna%Q zCfX$d^v-=Z`#>4Kq_MjQO$JpV|k5kUd4WM)thdf2?V*R@XAXyy%?S`eB{FB*jx(6xpx;7-IAvFqyq z*Xqq-OL4!+NDxC@%g7!4^ln!ir82G{2l2BBio;rR-MWe4=H)U38OD*atZ18nXAeV0Q>wqso6XNsl#pA&h$XoKuO@g zf=bn&kSn@G%0^={a~X^V&%_}NFTOP7Ll;^!Gxv{yg`elGBUYZ;hN*R!LVfx)LN?`K z5{?3X^{~>G(%_`TVc4DTmWj^9|3F>Q1S$^&&V zpJ(w0>-EgwTZ$GnKDekv8uT0)9@af+>2$?eLy^G9sbCp)^ zwOzQFP2x_3pm&}G13q*~@?+FA*1Hl<16PFdgTVqzxAR_^_^d1jQ&rb6nBiLEGByQm7JEgY zutf5cLnF6v>@RJ^QST$-o*B;_alzk}RXP;xYj`3uPnZY7WStxnBnUcSDs@+E9mP&% zh4<@H$=1xXqO|RVOAG1qYcm7ee^UYMKBm#400000m`ITNK diff --git a/pisi-index.xml.xz.sha1sum b/pisi-index.xml.xz.sha1sum index 80860997d5..e9983c7dc5 100644 --- a/pisi-index.xml.xz.sha1sum +++ b/pisi-index.xml.xz.sha1sum @@ -1 +1 @@ -5ba0d5e597b6a5bddae17800906502619f9809a9 \ No newline at end of file +7fcf71f531d84c4a2c85783f7cb0bcef2e878fd4 \ No newline at end of file diff --git a/programming/tool/benchmark/actions.py b/programming/tool/benchmark/actions.py new file mode 100644 index 0000000000..be5527517f --- /dev/null +++ b/programming/tool/benchmark/actions.py @@ -0,0 +1,28 @@ +#!/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 cmaketools +from pisi.actionsapi import get + +def setup(): + shelltools.makedirs("build") + shelltools.cd("build") + + cmaketools.configure("-DCMAKE_BUILD_TYPE=None \ + -DCMAKE_INSTALL_PREFIX=/usr \ + -DCMAKE_INSTALL_LIBDIR=lib \ + -DBUILD_SHARED_LIBS=ON \ + -DBENCHMARK_ENABLE_LTO=ON \ + -DBENCHMARK_ENABLE_GTEST_TESTS=OFF", sourceDir="..") + +def build(): + cmaketools.make("-C build") + +def install(): + shelltools.cd("build") + cmaketools.rawInstall("DESTDIR=%s" % get.installDIR()) + #pisitools.dodoc("LICENSE", "README.md") diff --git a/programming/tool/benchmark/pspec.xml b/programming/tool/benchmark/pspec.xml new file mode 100644 index 0000000000..fab6515ddc --- /dev/null +++ b/programming/tool/benchmark/pspec.xml @@ -0,0 +1,55 @@ + + + + + benchmark + https://github.com/google/benchmark + + Kamil Atlı + suvari@pisilinux.org + + Apache + library +

A microbenchmark support library + A library to benchmark code snippets, similar to unit tests. + https://github.com/google/benchmark/archive/refs/tags/v1.6.1.tar.gz + + git + cmake + + + + + benchmark + + libgcc + + + /usr/lib/libbenchmark.so* + /usr/lib/libbenchmark_main.so* + /usr/share/doc/benchmark + + + + + benchmark-devel + + benchmark + + + /usr/lib/cmake + /usr/lib/pkgconfig + /usr/include + + + + + + 2022-06-11 + 1.6.1 + First release + Kamil Atlı + suvari@pisilinux.org + + + diff --git a/programming/tool/benchmark/translations.xml b/programming/tool/benchmark/translations.xml new file mode 100644 index 0000000000..60e7d893a3 --- /dev/null +++ b/programming/tool/benchmark/translations.xml @@ -0,0 +1,8 @@ + + + + benchmark + Bir mikro kıyaslama destek kitaplığı + Birim testlerine benzer şekilde kod parçacıklarını karşılaştırmak için bir kitaplık. + +

;g-3R#3<%E>w3r&X+&o@~I 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 z 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%0A& zUCLzn?>RVNmibRVWl;iKfQMDHx=u3SsHcZfA|PaLcNn)NbEFiN3l@|ad8)P7mM`tp za;;QzC5ilfQIUvlSfpRXMaBRKMh>gNl$9$0rl&I6$>j;Lv;pHq>@_h*ARjZ0K9wGH z>O=6Hz!Og=%v%-nLz7yL`cc-@gU+Z)k^k9r=D9{>v!NF1mC%5P4MR;;isn)cGy2LC zbIQYIYs3$L5ujTS3BbszUa6kG=8lmFi674Bl$USV$QlyD!@e5OWec7vBGs7)L{-)- zO}8txbspe`B<$b9oEgL0=9gG=0%wm>EEKzC$agUuz%x z2V57I0VWBgTa9RuT|_ZSx)q|upLf~&24NW{K%)&x+ef%tGGW)-+~->e>+qfxJu%^F z47u!!#EIf#?W&y_XI*;*o0(!4!Z#zPr943HPo4q`p=|(5Scv2?mX*dwYRp7>&Eus)0CCoJCNgDHKvt$yF2&)c+0bO z{yG~*q0ga~njFdj#3N_S0-=tlwuS?)P=99VNuOmk4N2h4E$AoO{{5IVxr57~03(pD z%RR=S-r%JxKODg3AUNr4aG)Ae1Igja)2n@>(W?wv z>fPJ?_0X8_^Op-*K35AGnWDkVSX{P!6St9jC}vJ$H7fBPGUW7}bAH zcS$>8HI}zvFc*vHssr`7xrn%x@MMW2*&%-uxw_W}dP{Ev*C(p5XcMifa@eo|CF><{ zBdo-qgVAQ%*182V9coa3#3~Qr_D`VxeX>d~RtbyDNWjN?>$xx4P5&S+Ov~I2J+uzR z#M~FhK&eGKT4hVgR=q&9*_>#Z!-_Ly%KnyxN~kkqA1fU8P95j^OH_2VFU z2)^&!5n!cR@1?07{-l^%wJ6kFX*&ubC6XRm*?Aco1fx2U|jFYc%D^ z4xU<@|I;)18PTu&NWL)8+ILv~yiT8YJyWT$={o3#-bxsUTT`alXO?!ZiPBwbR~Der zLAT$iqd)zG{~h{3ZG*Bn`BlRvaAN{hHcBQpn-Yv74G>70*uBW!!_=W0utm{Wz?m7Q z5!I3-HW>`ZU`Yx6Qh4Tr&CYGELJ4Dr{r?V+cs93y984`P^pL?LQpH3dB6XO>QeO4fy8raJv$g!S*3@>xFs=0hhE+n`umyfvj^FU~q*`z%1 zhOS6(83yawi?*(F_eaHO8v;yFuzcH?x115=bD`h^C+G5(Mq6NCNz5J4%k0x+H@rcg zgN?WHYE0#W$jKUX0UblgB+ryuL(4u#%r?zyrBpnzM$f--*rNm+8-*}PP8{bKCb